diff --git a/Demos/COM.WECHAT.LED/MICOAppDefine.h b/Demos/COM.WECHAT.LED/MICOAppDefine.h new file mode 100644 index 00000000..b6e485d8 --- /dev/null +++ b/Demos/COM.WECHAT.LED/MICOAppDefine.h @@ -0,0 +1,69 @@ +/** + ****************************************************************************** + * @file MICOAppDefine.h + * @author William Xu + * @version V1.0.0 + * @date 05-May-2014 + * @brief This file create a TCP listener thread, accept every TCP client + * connection and create thread for them. + ****************************************************************************** + * @attention + * + * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS + * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE + * TIME. AS A RESULT, MXCHIP Inc. SHALL NOT BE HELD LIABLE FOR ANY + * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING + * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE + * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. + * + *

© COPYRIGHT 2014 MXCHIP Inc.

+ ****************************************************************************** + */ + + +#ifndef __MICOAPPDEFINE_H +#define __MICOAPPDEFINE_H + +#include "Common.h" +#include "MicoVirtualDeviceDef.h" + + +#define APP_INFO "mxchipWNet Wechat Demo based on MICO OS" + +#define FIRMWARE_REVISION "MICO_WECHAT_LED_1_0" +#define MANUFACTURER "MXCHIP Inc." +#define SERIAL_NUMBER "20150305" +#define PROTOCOL "com.wechat.led" + + +/* Wi-Fi configuration mode */ +//#define MICO_CONFIG_MODE CONFIG_MODE_EASYLINK_PLUS +#define MICO_CONFIG_MODE CONFIG_MODE_AIRKISS + +/*User provided configurations*/ +#define CONFIGURATION_VERSION 0x00000003 // if default configuration is changed, update this number +#define LOCAL_PORT 8080 +#define BONJOUR_SERVICE "_easylink._tcp.local." + +/* product type */ +#define DEFAULT_PRODUCT_ID "f2889664" +#define DEFAULT_PRODUCT_KEY "fc7773f7-9199-4999-8bac-803ec949c61f" +#define DEFAULT_ROM_VERSION "v0.0.1" + +/*Application's configuration stores in flash*/ +typedef struct +{ + uint32_t configDataVer; // config param update number + uint32_t localServerPort; // for bonjour service port + + virtual_device_config_t virtualDevConfig; //virtual device settings +} application_config_t; + +/*Running status*/ +typedef struct _current_app_status_t { + virtual_device_status_t virtualDevStatus; //virtual device status +} current_app_status_t; + + +#endif + diff --git a/Demos/COM.WECHAT.LED/MICOAppEntrance.c b/Demos/COM.WECHAT.LED/MICOAppEntrance.c new file mode 100644 index 00000000..f67cf45d --- /dev/null +++ b/Demos/COM.WECHAT.LED/MICOAppEntrance.c @@ -0,0 +1,59 @@ +/** + ****************************************************************************** + * @file MICOAppEntrance.c + * @author William Xu + * @version V1.0.0 + * @date 05-May-2014 + * @brief Mico application entrance, addd user application functons and threads. + ****************************************************************************** + * @attention + * + * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS + * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE + * TIME. AS A RESULT, MXCHIP Inc. SHALL NOT BE HELD LIABLE FOR ANY + * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING + * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE + * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. + * + *

© COPYRIGHT 2014 MXCHIP Inc.

+ ****************************************************************************** + */ + +#include "MICODefine.h" +#include "MICOAppDefine.h" +#include "MicoPlatform.h" + +#include "MicoVirtualDevice.h" + +#define app_log(M, ...) custom_log("APP", M, ##__VA_ARGS__) +#define app_log_trace() custom_log_trace("APP") + + +/* MICO system callback: Restore default configuration provided by application */ +void appRestoreDefault_callback(mico_Context_t *inContext) +{ + inContext->flashContentInRam.appConfig.configDataVer = CONFIGURATION_VERSION; + inContext->flashContentInRam.appConfig.localServerPort = LOCAL_PORT; + + // restore virtual device config + MVDRestoreDefault(inContext); +} + +OSStatus MICOStartApplication( mico_Context_t * const inContext ) +{ + app_log_trace(); + OSStatus err = kNoErr; + + require_action(inContext, exit, err = kParamErr); + + /*Bonjour for service searching*/ + if(inContext->flashContentInRam.micoSystemConfig.bonjourEnable == true) + MICOStartBonjourService( Station, inContext ); + + /* start virtual device for communication (usart <==> cloud)*/ + err = MVDInit(inContext); + require_noerr_action( err, exit, app_log("ERROR: virtual device start failed!") ); + +exit: + return err; +} diff --git a/Demos/COM.WECHAT.LED/MICOBonjour.c b/Demos/COM.WECHAT.LED/MICOBonjour.c new file mode 100644 index 00000000..3390ae48 --- /dev/null +++ b/Demos/COM.WECHAT.LED/MICOBonjour.c @@ -0,0 +1,136 @@ +/** + ****************************************************************************** + * @file MICOBonjour.c + * @author William Xu + * @version V1.0.0 + * @date 05-May-2014 + * @brief Zero-configuration protocol compatiable with Bonjour from Apple + ****************************************************************************** + * @attention + * + * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS + * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE + * TIME. AS A RESULT, MXCHIP Inc. SHALL NOT BE HELD LIABLE FOR ANY + * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING + * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE + * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. + * + *

© COPYRIGHT 2014 MXCHIP Inc.

+ ****************************************************************************** + */ + +#include "MicoDefine.h" +#include "platform.h" +#include "MICONotificationCenter.h" + +#include "MDNSUtils.h" +#include "StringUtils.h" + +static int _bonjourStarted = false; + +void BonjourNotify_WifiStatusHandler( WiFiEvent event, mico_Context_t * const inContext ) +{ + (void)inContext; + switch (event) { + case NOTIFY_STATION_UP: + suspend_bonjour_service(false); + break; + case NOTIFY_STATION_DOWN: + break; + default: + break; + } + return; +} + +void BonjourNotify_SYSWillPoerOffHandler( mico_Context_t * const inContext) +{ + (void)inContext; + if(_bonjourStarted == true){ + suspend_bonjour_service(true); + } +} + +OSStatus MICOStartBonjourService( WiFi_Interface interface, mico_Context_t * const inContext ) +{ + char *temp_txt= NULL; + char *temp_txt2; + OSStatus err; + net_para_st para; + bonjour_init_t init; + + temp_txt = malloc(500); + require_action(temp_txt, exit, err = kNoMemoryErr); + + memset(&init, 0x0, sizeof(bonjour_init_t)); + + micoWlanGetIPStatus(¶, Station); + + init.service_name = BONJOUR_SERVICE; + + /* name#xxxxxx.local. */ + snprintf( temp_txt, 100, "%s#%c%c%c%c%c%c.local.", inContext->flashContentInRam.micoSystemConfig.name, + inContext->micoStatus.mac[9], inContext->micoStatus.mac[10], \ + inContext->micoStatus.mac[12], inContext->micoStatus.mac[13], \ + inContext->micoStatus.mac[15], inContext->micoStatus.mac[16] ); + init.host_name = (char*)__strdup(temp_txt); + + /* name#xxxxxx. */ + snprintf( temp_txt, 100, "%s#%c%c%c%c%c%c", inContext->flashContentInRam.micoSystemConfig.name, + inContext->micoStatus.mac[9], inContext->micoStatus.mac[10], \ + inContext->micoStatus.mac[12], inContext->micoStatus.mac[13], \ + inContext->micoStatus.mac[15], inContext->micoStatus.mac[16] ); + init.instance_name = (char*)__strdup(temp_txt); + + init.service_port = inContext->flashContentInRam.appConfig.localServerPort; + init.interface = interface; + + temp_txt2 = __strdup_trans_dot(inContext->micoStatus.mac); + sprintf(temp_txt, "MAC=%s.", temp_txt2); + free(temp_txt2); + + temp_txt2 = __strdup_trans_dot(FIRMWARE_REVISION); + sprintf(temp_txt, "%sFirmware Rev=%s.", temp_txt, temp_txt2); + free(temp_txt2); + + temp_txt2 = __strdup_trans_dot(HARDWARE_REVISION); + sprintf(temp_txt, "%sHardware Rev=%s.", temp_txt, temp_txt2); + free(temp_txt2); + + temp_txt2 = __strdup_trans_dot(MicoGetVer()); + sprintf(temp_txt, "%sMICO OS Rev=%s.", temp_txt, temp_txt2); + free(temp_txt2); + + temp_txt2 = __strdup_trans_dot(MODEL); + sprintf(temp_txt, "%sModel=%s.", temp_txt, temp_txt2); + free(temp_txt2); + + temp_txt2 = __strdup_trans_dot(PROTOCOL); + sprintf(temp_txt, "%sProtocol=%s.", temp_txt, temp_txt2); + free(temp_txt2); + + temp_txt2 = __strdup_trans_dot(MANUFACTURER); + sprintf(temp_txt, "%sManufacturer=%s.", temp_txt, temp_txt2); + free(temp_txt2); + + sprintf(temp_txt, "%sSeed=%u.", temp_txt, inContext->flashContentInRam.micoSystemConfig.seed); + init.txt_record = (char*)__strdup(temp_txt); + + bonjour_service_init(init); + + free(init.host_name); + free(init.instance_name); + free(init.txt_record); + + err = MICOAddNotification( mico_notify_WIFI_STATUS_CHANGED, (void *)BonjourNotify_WifiStatusHandler ); + require_noerr( err, exit ); + err = MICOAddNotification( mico_notify_SYS_WILL_POWER_OFF, (void *)BonjourNotify_SYSWillPoerOffHandler ); + require_noerr( err, exit ); + + start_bonjour_service(); + _bonjourStarted = true; + +exit: + if(temp_txt) free(temp_txt); + return err; +} diff --git a/Demos/COM.WECHAT.LED/MICOConfigDelegate.c b/Demos/COM.WECHAT.LED/MICOConfigDelegate.c new file mode 100644 index 00000000..c84cd42a --- /dev/null +++ b/Demos/COM.WECHAT.LED/MICOConfigDelegate.c @@ -0,0 +1,449 @@ +/** + ****************************************************************************** + * @file MICOConfigDelegate.c + * @author William Xu + * @version V1.0.0 + * @date 05-May-2014 + * @brief This file provide delegate functons from Easylink function and FTC + * server. + ****************************************************************************** + * @attention + * + * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS + * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE + * TIME. AS A RESULT, MXCHIP Inc. SHALL NOT BE HELD LIABLE FOR ANY + * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING + * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE + * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. + * + *

© COPYRIGHT 2014 MXCHIP Inc.

+ ****************************************************************************** + */ + +#include "Common.h" +#include "debug.h" +#include "MicoPlatform.h" +#include "Platform.h" +#include "Platform_common_config.h" + +#include "EasyLink/EasyLink.h" +#include "JSON-C/json.h" +#include "MICO.h" +#include "MICODefine.h" +#include "MICOAppDefine.h" +#include "MICOConfigMenu.h" +#include "StringUtils.h" + +#include "MicoVirtualDevice.h" +#include "MVDMsgProtocol.h" + +#define SYS_LED_TRIGGER_INTERVAL 100 +#define SYS_LED_TRIGGER_INTERVAL_AFTER_EASYLINK 500 + +#define config_delegate_log(M, ...) custom_log("Config Delegate", M, ##__VA_ARGS__) +#define config_delegate_log_trace() custom_log_trace("Config Delegate") + + +static mico_timer_t _Led_EL_timer = NULL; + +static void _led_EL_Timeout_handler( void* arg ) +{ + (void)(arg); + MicoGpioOutputTrigger((mico_gpio_t)MICO_SYS_LED); +} + +void ConfigWillStart( mico_Context_t * const inContext ) +{ + config_delegate_log_trace(); + (void)(inContext); + /*Led trigger*/ + mico_init_timer(&_Led_EL_timer, SYS_LED_TRIGGER_INTERVAL, _led_EL_Timeout_handler, NULL); + mico_start_timer(&_Led_EL_timer); + + // set LED to red means airkiss config mode + // data: on/off,H,S,B + LedControlMsgHandler("1,0,100,100", strlen("1,0,100,100")); + return; +} + +void ConfigWillStop( mico_Context_t * const inContext ) +{ + (void)(inContext); + config_delegate_log_trace(); + + mico_stop_timer(&_Led_EL_timer); + mico_deinit_timer( &_Led_EL_timer ); + MicoGpioOutputHigh((mico_gpio_t)MICO_SYS_LED); + return; +} + +void ConfigAirkissIsSuccess( mico_Context_t * const inContext ) +{ + (void)(inContext); + config_delegate_log_trace(); + + mico_stop_timer(&_Led_EL_timer); + mico_deinit_timer( &_Led_EL_timer ); + mico_init_timer(&_Led_EL_timer, SYS_LED_TRIGGER_INTERVAL_AFTER_EASYLINK, _led_EL_Timeout_handler, NULL); + mico_start_timer(&_Led_EL_timer); + + // set LED to light green means Airkiss config ok + // data: on/off,H,S,B + LedControlMsgHandler("1,120,100,10", strlen("1,120,100,10")); + return; +} + +void ConfigEasyLinkIsSuccess( mico_Context_t * const inContext ) +{ + (void)(inContext); + config_delegate_log_trace(); + + mico_stop_timer(&_Led_EL_timer); + mico_deinit_timer( &_Led_EL_timer ); + mico_init_timer(&_Led_EL_timer, SYS_LED_TRIGGER_INTERVAL_AFTER_EASYLINK, _led_EL_Timeout_handler, NULL); + mico_start_timer(&_Led_EL_timer); + return; +} + +void ConfigSoftApWillStart(mico_Context_t * const inContext ) +{ + //OSStatus err; + //mico_uart_config_t uart_config; + + mico_stop_timer(&_Led_EL_timer); + mico_deinit_timer( &_Led_EL_timer ); + mico_init_timer(&_Led_EL_timer, SYS_LED_TRIGGER_INTERVAL_AFTER_EASYLINK, _led_EL_Timeout_handler, NULL); + mico_start_timer(&_Led_EL_timer); + +// sppProtocolInit(inContext); +// +// /*UART receive thread*/ +// uart_config.baud_rate = inContext->flashContentInRam.appConfig.USART_BaudRate; +// uart_config.data_width = DATA_WIDTH_8BIT; +// uart_config.parity = NO_PARITY; +// uart_config.stop_bits = STOP_BITS_1; +// uart_config.flow_control = FLOW_CONTROL_DISABLED; +// ring_buffer_init ( (ring_buffer_t *)&rx_buffer, (uint8_t *)rx_data, UART_BUFFER_LENGTH ); +// MicoUartInitialize( UART_FOR_APP, &uart_config, (ring_buffer_t *)&rx_buffer ); +// err = mico_rtos_create_thread(NULL, MICO_APPLICATION_PRIORITY, "UART Recv", uartRecv_thread, STACK_SIZE_UART_RECV_THREAD, (void*)inContext ); +// require_noerr_action( err, exit, config_delegate_log("ERROR: Unable to start the uart recv thread.") ); +// +// if(inContext->flashContentInRam.appConfig.localServerEnable == true){ +// err = mico_rtos_create_thread(NULL, MICO_APPLICATION_PRIORITY, "Local Server", localTcpServer_thread, STACK_SIZE_LOCAL_TCP_SERVER_THREAD, (void*)inContext ); +// require_noerr_action( err, exit, config_delegate_log("ERROR: Unable to start the local server thread.") ); +// } + +//exit: + return; +} + +OSStatus ConfigELRecvAuthData(char * anthData, mico_Context_t * const inContext ) +{ + config_delegate_log_trace(); + (void)(inContext); + (void)(anthData); + return kNoErr; +} + +json_object* ConfigCreateReportJsonMessage( mico_Context_t * const inContext ) +{ + OSStatus err = kNoErr; + config_delegate_log_trace(); + char name[50], *tempString; + OTA_Versions_t versions; + char rfVersion[50]; + char *rfVer = NULL, *rfVerTemp = NULL; + json_object *sectors, *sector, *subMenuSectors, *subMenuSector, *mainObject = NULL; + + MicoGetRfVer( rfVersion, 50 ); + rfVer = strstr(rfVersion, "version "); + if(rfVer) rfVer = rfVer + strlen("version "); + rfVerTemp = rfVer; + + for(rfVerTemp = rfVer; *rfVerTemp != ' '; rfVerTemp++); + *rfVerTemp = 0x0; + + config_delegate_log("RF version=%s", rfVersion); + + if(inContext->flashContentInRam.micoSystemConfig.configured == wLanUnConfigured){ + /*You can upload a specific menu*/ + } + + mico_rtos_lock_mutex(&inContext->flashContentInRam_mutex); + snprintf(name, 50, "%s(%c%c%c%c%c%c)",MODEL, + inContext->micoStatus.mac[9], inContext->micoStatus.mac[10], + inContext->micoStatus.mac[12], inContext->micoStatus.mac[13], + inContext->micoStatus.mac[15], inContext->micoStatus.mac[16]); + + versions.fwVersion = FIRMWARE_REVISION; + versions.hdVersion = HARDWARE_REVISION; + versions.protocol = PROTOCOL; + versions.rfVersion = NULL; + + sectors = json_object_new_array(); + require( sectors, exit ); + + err = MICOAddTopMenu(&mainObject, name, sectors, versions); + require_noerr(err, exit); + + /*Sector 1*/ + sector = json_object_new_array(); + require( sector, exit ); + err = MICOAddSector(sectors, "MICO SYSTEM", sector); + require_noerr(err, exit); + + /*name cell*/ + err = MICOAddStringCellToSector(sector, "Device Name", inContext->flashContentInRam.micoSystemConfig.name, "RW", NULL); + require_noerr(err, exit); + + //Bonjour switcher cell + err = MICOAddSwitchCellToSector(sector, "Bonjour", inContext->flashContentInRam.micoSystemConfig.bonjourEnable, "RW"); + require_noerr(err, exit); + + //RF power save switcher cell + err = MICOAddSwitchCellToSector(sector, "RF power save", inContext->flashContentInRam.micoSystemConfig.rfPowerSaveEnable, "RW"); + require_noerr(err, exit); + + //MCU power save switcher cell + err = MICOAddSwitchCellToSector(sector, "MCU power save", inContext->flashContentInRam.micoSystemConfig.mcuPowerSaveEnable, "RW"); + require_noerr(err, exit); + + /*sub menu*/ + subMenuSectors = json_object_new_array(); + require( subMenuSectors, exit ); + err = MICOAddMenuCellToSector(sector, "Detail", subMenuSectors); + require_noerr(err, exit); + + subMenuSector = json_object_new_array(); + require( subMenuSector, exit ); + err = MICOAddSector(subMenuSectors, "", subMenuSector); + require_noerr(err, exit); + + err = MICOAddStringCellToSector(subMenuSector, "Firmware Rev.", FIRMWARE_REVISION, "RO", NULL); + require_noerr(err, exit); + err = MICOAddStringCellToSector(subMenuSector, "Hardware Rev.", HARDWARE_REVISION, "RO", NULL); + require_noerr(err, exit); + err = MICOAddStringCellToSector(subMenuSector, "MICO OS Rev.", MicoGetVer(), "RO", NULL); + require_noerr(err, exit); + err = MICOAddStringCellToSector(subMenuSector, "RF Driver Rev.", rfVer, "RO", NULL); + require_noerr(err, exit); + err = MICOAddStringCellToSector(subMenuSector, "Model", MODEL, "RO", NULL); + require_noerr(err, exit); + err = MICOAddStringCellToSector(subMenuSector, "Manufacturer", MANUFACTURER, "RO", NULL); + require_noerr(err, exit); + err = MICOAddStringCellToSector(subMenuSector, "Protocol", PROTOCOL, "RO", NULL); + require_noerr(err, exit); + + subMenuSector = json_object_new_array(); + err = MICOAddSector(subMenuSectors, "WLAN", subMenuSector); + require_noerr(err, exit); + + tempString = DataToHexStringWithColons( (uint8_t *)inContext->flashContentInRam.micoSystemConfig.bssid, 6 ); + err = MICOAddStringCellToSector(subMenuSector, "BSSID", tempString, "RO", NULL); + require_noerr(err, exit); + free(tempString); + + err = MICOAddNumberCellToSector(subMenuSector, "Channel", inContext->flashContentInRam.micoSystemConfig.channel, "RO", NULL); + require_noerr(err, exit); + + switch(inContext->flashContentInRam.micoSystemConfig.security){ + case SECURITY_TYPE_NONE: + err = MICOAddStringCellToSector(subMenuSector, "Security", "Open system", "RO", NULL); + break; + case SECURITY_TYPE_WEP: + err = MICOAddStringCellToSector(subMenuSector, "Security", "WEP", "RO", NULL); + break; + case SECURITY_TYPE_WPA_TKIP: + err = MICOAddStringCellToSector(subMenuSector, "Security", "WPA TKIP", "RO", NULL); + break; + case SECURITY_TYPE_WPA_AES: + err = MICOAddStringCellToSector(subMenuSector, "Security", "WPA AES", "RO", NULL); + break; + case SECURITY_TYPE_WPA2_TKIP: + err = MICOAddStringCellToSector(subMenuSector, "Security", "WPA2 TKIP", "RO", NULL); + break; + case SECURITY_TYPE_WPA2_AES: + err = MICOAddStringCellToSector(subMenuSector, "Security", "WPA2 AES", "RO", NULL); + break; + case SECURITY_TYPE_WPA2_MIXED: + err = MICOAddStringCellToSector(subMenuSector, "Security", "WPA2 MIXED", "RO", NULL); + break; + default: + err = MICOAddStringCellToSector(subMenuSector, "Security", "Auto", "RO", NULL); + break; + } + require_noerr(err, exit); + + if(inContext->flashContentInRam.micoSystemConfig.keyLength == maxKeyLen){ /*This is a PMK key, generated by user key in WPA security type*/ + tempString = calloc(maxKeyLen+1, 1); + require_action(tempString, exit, err=kNoMemoryErr); + memcpy(tempString, inContext->flashContentInRam.micoSystemConfig.key, maxKeyLen); + err = MICOAddStringCellToSector(subMenuSector, "PMK", tempString, "RO", NULL); + require_noerr(err, exit); + free(tempString); + } + else{ + err = MICOAddStringCellToSector(subMenuSector, "KEY", inContext->flashContentInRam.micoSystemConfig.user_key, "RO", NULL); + require_noerr(err, exit); + } + + /*Sector 3*/ + sector = json_object_new_array(); + require( sector, exit ); + err = MICOAddSector(sectors, "WLAN", sector); + require_noerr(err, exit); + /*SSID cell*/ + err = MICOAddStringCellToSector(sector, "Wi-Fi", inContext->flashContentInRam.micoSystemConfig.ssid, "RW", NULL); + require_noerr(err, exit); + /*PASSWORD cell*/ + err = MICOAddStringCellToSector(sector, "Password", inContext->flashContentInRam.micoSystemConfig.user_key, "RW", NULL); + require_noerr(err, exit); + /*DHCP cell*/ + err = MICOAddSwitchCellToSector(sector, "DHCP", inContext->flashContentInRam.micoSystemConfig.dhcpEnable, "RW"); + require_noerr(err, exit); + /*Local cell*/ + err = MICOAddStringCellToSector(sector, "IP address", inContext->micoStatus.localIp, "RW", NULL); + require_noerr(err, exit); + /*Netmask cell*/ + err = MICOAddStringCellToSector(sector, "Net Mask", inContext->micoStatus.netMask, "RW", NULL); + require_noerr(err, exit); + /*Gateway cell*/ + err = MICOAddStringCellToSector(sector, "Gateway", inContext->micoStatus.gateWay, "RW", NULL); + require_noerr(err, exit); + /*DNS server cell*/ + err = MICOAddStringCellToSector(sector, "DNS Server", inContext->micoStatus.dnsServer, "RW", NULL); + require_noerr(err, exit); + + /*Sector 4*/ + + /*Sector 5*/ + sector = json_object_new_array(); + require( sector, exit ); + err = MICOAddSector(sectors, "MCU IOs", sector); + require_noerr(err, exit); + + /*UART Baurdrate cell*/ + json_object *selectArray; + selectArray = json_object_new_array(); + require( selectArray, exit ); + json_object_array_add(selectArray, json_object_new_int(9600)); + json_object_array_add(selectArray, json_object_new_int(19200)); + json_object_array_add(selectArray, json_object_new_int(38400)); + json_object_array_add(selectArray, json_object_new_int(57600)); + json_object_array_add(selectArray, json_object_new_int(115200)); + //err = MICOAddNumberCellToSector(sector, "Baurdrate", 115200, "RW", selectArray); + err = MICOAddNumberCellToSector(sector, "Baurdrate", + inContext->flashContentInRam.appConfig.virtualDevConfig.USART_BaudRate, + "RW", selectArray); + require_noerr(err, exit); + + /*Sector 6: cloud settings*/ + sector = json_object_new_array(); + require( sector, exit ); + err = MICOAddSector(sectors, "Cloud info", sector); + require_noerr(err, exit); + + // device activate status + err = MICOAddSwitchCellToSector(sector, "activated", + inContext->flashContentInRam.appConfig.virtualDevConfig.isActivated, + "RO"); + require_noerr(err, exit); + // cloud connect status + err = MICOAddSwitchCellToSector(sector, "connected", + inContext->appStatus.virtualDevStatus.isCloudConnected, + "RO"); + require_noerr(err, exit); + // rom version cell + err = MICOAddStringCellToSector(sector, "rom version", + inContext->flashContentInRam.appConfig.virtualDevConfig.romVersion, + "RO", NULL); + require_noerr(err, exit); + // device_id cell, is RO in fact, we set RW is convenient for read full string. + err = MICOAddStringCellToSector(sector, "device_id", + inContext->flashContentInRam.appConfig.virtualDevConfig.deviceId, + "RW", NULL); + /*sub menu - cloud setting */ +/* subMenuSectors = json_object_new_array(); + require( subMenuSectors, exit ); + err = MICOAddMenuCellToSector(sector, "Cloud settings", subMenuSectors); + require_noerr(err, exit); + + subMenuSector = json_object_new_array(); + require( subMenuSector, exit ); + err = MICOAddSector(subMenuSectors, "Authentication", subMenuSector); + require_noerr(err, exit); + + err = MICOAddStringCellToSector(subMenuSector, "login_id", + inContext->flashContentInRam.appConfig.virtualDevConfig.loginId, + "RW", NULL); + err = MICOAddStringCellToSector(subMenuSector, "devPasswd", + inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd, + "RW", NULL); +*/ + mico_rtos_unlock_mutex(&inContext->flashContentInRam_mutex); + +exit: + if(err != kNoErr && mainObject){ + json_object_put(mainObject); + mainObject = NULL; + } + return mainObject; +} + +OSStatus ConfigIncommingJsonMessage( const char *input, mico_Context_t * const inContext ) +{ + OSStatus err = kNoErr; + json_object *new_obj; + config_delegate_log_trace(); + + new_obj = json_tokener_parse(input); + require_action(new_obj, exit, err = kUnknownErr); + config_delegate_log("Recv config object=%s", json_object_to_json_string(new_obj)); + mico_rtos_lock_mutex(&inContext->flashContentInRam_mutex); + json_object_object_foreach(new_obj, key, val) { + if(!strcmp(key, "Device Name")){ + strncpy(inContext->flashContentInRam.micoSystemConfig.name, json_object_get_string(val), maxNameLen); + }else if(!strcmp(key, "RF power save")){ + inContext->flashContentInRam.micoSystemConfig.rfPowerSaveEnable = json_object_get_boolean(val); + }else if(!strcmp(key, "MCU power save")){ + inContext->flashContentInRam.micoSystemConfig.mcuPowerSaveEnable = json_object_get_boolean(val); + }else if(!strcmp(key, "Bonjour")){ + inContext->flashContentInRam.micoSystemConfig.bonjourEnable = json_object_get_boolean(val); + }else if(!strcmp(key, "Wi-Fi")){ + strncpy(inContext->flashContentInRam.micoSystemConfig.ssid, json_object_get_string(val), maxSsidLen); + inContext->flashContentInRam.micoSystemConfig.channel = 0; + memset(inContext->flashContentInRam.micoSystemConfig.bssid, 0x0, 6); + inContext->flashContentInRam.micoSystemConfig.security = SECURITY_TYPE_AUTO; + memcpy(inContext->flashContentInRam.micoSystemConfig.key, inContext->flashContentInRam.micoSystemConfig.user_key, maxKeyLen); + inContext->flashContentInRam.micoSystemConfig.keyLength = inContext->flashContentInRam.micoSystemConfig.user_keyLength; + }else if(!strcmp(key, "Password")){ + inContext->flashContentInRam.micoSystemConfig.security = SECURITY_TYPE_AUTO; + strncpy(inContext->flashContentInRam.micoSystemConfig.key, json_object_get_string(val), maxKeyLen); + strncpy(inContext->flashContentInRam.micoSystemConfig.user_key, json_object_get_string(val), maxKeyLen); + inContext->flashContentInRam.micoSystemConfig.keyLength = strlen(inContext->flashContentInRam.micoSystemConfig.key); + inContext->flashContentInRam.micoSystemConfig.user_keyLength = strlen(inContext->flashContentInRam.micoSystemConfig.key); + }else if(!strcmp(key, "DHCP")){ + inContext->flashContentInRam.micoSystemConfig.dhcpEnable = json_object_get_boolean(val); + }else if(!strcmp(key, "IP address")){ + strncpy(inContext->flashContentInRam.micoSystemConfig.localIp, json_object_get_string(val), maxIpLen); + }else if(!strcmp(key, "Net Mask")){ + strncpy(inContext->flashContentInRam.micoSystemConfig.netMask, json_object_get_string(val), maxIpLen); + }else if(!strcmp(key, "Gateway")){ + strncpy(inContext->flashContentInRam.micoSystemConfig.gateWay, json_object_get_string(val), maxIpLen); + }else if(!strcmp(key, "DNS Server")){ + strncpy(inContext->flashContentInRam.micoSystemConfig.dnsServer, json_object_get_string(val), maxIpLen); + }else if(!strcmp(key, "Baurdrate")){ + inContext->flashContentInRam.appConfig.virtualDevConfig.USART_BaudRate = json_object_get_int(val); + }/*else if(!strcmp(key, "login_id")){ + strncpy(inContext->flashContentInRam.appConfig.virtualDevConfig.loginId, json_object_get_string(val), MAX_SIZE_LOGIN_ID); + } else if(!strcmp(key, "devPasswd")){ + strncpy(inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd, json_object_get_string(val), MAX_SIZE_DEV_PASSWD); + }*/else{ + } + } + json_object_put(new_obj); + mico_rtos_unlock_mutex(&inContext->flashContentInRam_mutex); + +exit: + return err; +} \ No newline at end of file diff --git a/Demos/COM.WECHAT.LED/MVDCloudInterfaces.c b/Demos/COM.WECHAT.LED/MVDCloudInterfaces.c new file mode 100644 index 00000000..8f1310a5 --- /dev/null +++ b/Demos/COM.WECHAT.LED/MVDCloudInterfaces.c @@ -0,0 +1,443 @@ +/** +****************************************************************************** +* @file MVDCloudInterfaces.c +* @author Eshen Wang +* @version V0.2.0 +* @date 21-Nov-2014 +* @brief This file contains the implementations of cloud service interfaces +* for MICO virtual device. + operation +****************************************************************************** +* @attention +* +* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS +* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE +* TIME. AS A RESULT, MXCHIP Inc. SHALL NOT BE HELD LIABLE FOR ANY +* DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING +* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE +* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. +* +*

© COPYRIGHT 2014 MXCHIP Inc.

+****************************************************************************** +*/ + +#include "MICODefine.h" + +#include "MVDCloudInterfaces.h" +#include "EasyCloudService.h" +#include "MicoVirtualDevice.h" +#include "MVDMsgProtocol.h" + + +#define cloud_if_log(M, ...) custom_log("MVD_CLOUD_IF", M, ##__VA_ARGS__) +#define cloud_if_log_trace() custom_log_trace("MVD_CLOUD_IF") + + +static easycloud_service_context_t easyCloudContext; + + +/******************************************************************************* + * cloud service callbacks + ******************************************************************************/ + +//cloud message recived handler +void cloudMsgArrivedHandler(void* context, + const char* topic, const unsigned int topicLen, + unsigned char *msg, unsigned int msgLen) +{ + mico_Context_t *inContext = (mico_Context_t*)context; + + //note: get data just for length=len is valid, because Msg is just a buf pionter. + cloud_if_log("Cloud[%.*s] => MVD: [%d]=%.*s", topicLen, topic, msgLen, msgLen, msg); + + MVDCloudMsgProcess(inContext, topic, topicLen, msg, msgLen); +} + +//cloud service status changed handler +void cloudServiceStatusChangedHandler(void* context, easycloud_service_status_t serviceStateInfo) +{ + mico_Context_t *inContext = (mico_Context_t*)context; + + if (EASYCLOUD_CONNECTED == serviceStateInfo.state){ + cloud_if_log("cloud service connected!"); + inContext->appStatus.virtualDevStatus.isCloudConnected = true; + } + else{ + cloud_if_log("cloud service disconnected!"); + inContext->appStatus.virtualDevStatus.isCloudConnected = false; + } +} + +OSStatus MVDCloudInterfacePrintVersion(void) +{ + //OSStatus err = kUnknownErr; + int cloudServiceLibVersion = 0; + cloud_if_log("MVDCloudInterfacePrintVersion"); + + cloudServiceLibVersion = EasyCloudServiceVersion(&easyCloudContext); + cloud_if_log("EasyCloud library version: v%d.%d.%d", + (cloudServiceLibVersion & 0x00FF0000) >> 16, + (cloudServiceLibVersion & 0x0000FF00) >> 8, + (cloudServiceLibVersion & 0x000000FF)); + + return kNoErr; +} + +OSStatus MVDCloudInterfaceInit(mico_Context_t* const inContext) +{ + OSStatus err = kUnknownErr; + int cloudServiceLibVersion = 0; + + // set cloud service config + strncpy(easyCloudContext.service_config_info.bssid, + inContext->micoStatus.mac, MAX_SIZE_BSSID); + strncpy(easyCloudContext.service_config_info.productId, + (char*)DEFAULT_PRODUCT_ID, strlen((char*)DEFAULT_PRODUCT_ID)); + strncpy(easyCloudContext.service_config_info.productKey, + (char*)DEFAULT_PRODUCT_KEY, strlen((char*)DEFAULT_PRODUCT_KEY)); + easyCloudContext.service_config_info.msgRecvhandler = cloudMsgArrivedHandler; + easyCloudContext.service_config_info.statusNotify = cloudServiceStatusChangedHandler; + easyCloudContext.service_config_info.context = (void*)inContext; + + // set cloud status + memset((void*)&(easyCloudContext.service_status), '\0', sizeof(easyCloudContext.service_status)); + easyCloudContext.service_status.isActivated = inContext->flashContentInRam.appConfig.virtualDevConfig.isActivated; + strncpy(easyCloudContext.service_status.deviceId, + inContext->flashContentInRam.appConfig.virtualDevConfig.deviceId, MAX_SIZE_DEVICE_ID); + strncpy(easyCloudContext.service_status.masterDeviceKey, + inContext->flashContentInRam.appConfig.virtualDevConfig.masterDeviceKey, MAX_SIZE_DEVICE_KEY); + + cloudServiceLibVersion = EasyCloudServiceVersion(&easyCloudContext); + cloud_if_log("EasyCloud library version: %d.%d.%d", + (cloudServiceLibVersion & 0x00FF0000) >> 16, + (cloudServiceLibVersion & 0x0000FF00) >> 8, + (cloudServiceLibVersion & 0x000000FF)); + + err = EasyCloudServiceInit(&easyCloudContext); + require_noerr_action( err, exit, cloud_if_log("ERROR: EasyCloud service init failed.") ); + return kNoErr; + +exit: + return err; +} + + +OSStatus MVDCloudInterfaceStart(mico_Context_t* const inContext) +{ + OSStatus err = kUnknownErr; + + if(NULL == inContext){ + return kParamErr; + } + + // start cloud service + err = EasyCloudServiceStart(&easyCloudContext); + require_noerr_action( err, exit, cloud_if_log("ERROR: EasyCloud service start failed.") ); + return kNoErr; + +exit: + return err; +} + +easycloud_service_state_t MVDCloudInterfaceGetState(void) +{ + easycloud_service_state_t service_running_state = EASYCLOUD_STOPPED; + + cloud_if_log("MVDCloudInterfaceGetState"); + service_running_state = EasyCloudServiceState(&easyCloudContext); + return service_running_state; +} + +OSStatus MVDCloudInterfaceSend(unsigned char *inBuf, unsigned int inBufLen) +{ + cloud_if_log_trace(); + OSStatus err = kUnknownErr; + + cloud_if_log("MVD => Cloud[publish]:[%d]=%.*s", inBufLen, inBufLen, inBuf); + err = EasyCloudPublish(&easyCloudContext, inBuf, inBufLen); + require_noerr_action( err, exit, cloud_if_log("ERROR: MVDCloudInterfaceSend failed! err=%d", err) ); + return kNoErr; + +exit: + return err; +} + +OSStatus MVDCloudInterfaceSendto(const char* topic, unsigned char *inBuf, unsigned int inBufLen) +{ + cloud_if_log_trace(); + OSStatus err = kUnknownErr; + + cloud_if_log("MVD => Cloud[%s]:[%d]=%.*s", topic, inBufLen, inBufLen, inBuf); + err = EasyCloudPublishto(&easyCloudContext, topic, inBuf, inBufLen); + require_noerr_action( err, exit, cloud_if_log("ERROR: MVDCloudInterfaceSendto failed! err=%d", err) ); + return kNoErr; + +exit: + return err; +} + +OSStatus MVDCloudInterfaceSendtoChannel(const char* channel, unsigned char *inBuf, unsigned int inBufLen) +{ + cloud_if_log_trace(); + OSStatus err = kUnknownErr; + + cloud_if_log("MVD => Cloud[%s]:[%d]=%.*s", channel, inBufLen, inBufLen, inBuf); + err = EasyCloudPublishtoChannel(&easyCloudContext, channel, inBuf, inBufLen); + require_noerr_action( err, exit, cloud_if_log("ERROR: MVDCloudInterfaceSendtoChannel failed! err=%d", err) ); + return kNoErr; + +exit: + return err; +} + +OSStatus MVDCloudInterfaceDevActivate(mico_Context_t* const inContext, + MVDActivateRequestData_t devActivateRequestData) +{ + cloud_if_log_trace(); + OSStatus err = kUnknownErr; + + cloud_if_log("Device activate..."); + + // login_id/dev_passwd set(not default value) ? + if((0 != strncmp((char*)DEFAULT_LOGIN_ID, + inContext->flashContentInRam.appConfig.virtualDevConfig.loginId, + strlen((char*)DEFAULT_LOGIN_ID))) || + (0 != strncmp((char*)DEFAULT_DEV_PASSWD, + inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd, + strlen((char*)DEFAULT_DEV_PASSWD)))) + { + // login_id/dev_passwd ok ? + if((0 != strncmp(inContext->flashContentInRam.appConfig.virtualDevConfig.loginId, + devActivateRequestData.loginId, + strlen(inContext->flashContentInRam.appConfig.virtualDevConfig.loginId))) || + (0 != strncmp(inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd, + devActivateRequestData.devPasswd, + strlen(inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd)))) + { + // devPass err + cloud_if_log("ERROR: MVDCloudInterfaceDevActivate: loginId/devPasswd mismatch!"); + return kMismatchErr; + } + } + cloud_if_log("MVDCloudInterfaceDevActivate: loginId/devPasswd ok!"); + + //ok, set cloud context + strncpy(easyCloudContext.service_config_info.loginId, + devActivateRequestData.loginId, MAX_SIZE_LOGIN_ID); + strncpy(easyCloudContext.service_config_info.devPasswd, + devActivateRequestData.devPasswd, MAX_SIZE_DEV_PASSWD); + strncpy(easyCloudContext.service_config_info.userToken, + devActivateRequestData.user_token, MAX_SIZE_USER_TOKEN); + + // activate request + err = EasyCloudActivate(&easyCloudContext); + require_noerr_action(err, exit, + cloud_if_log("ERROR: MVDCloudInterfaceDevActivate failed! err=%d", err) ); + + // write activate data back to flash + mico_rtos_lock_mutex(&inContext->flashContentInRam_mutex); + inContext->flashContentInRam.appConfig.virtualDevConfig.isActivated = true; + strncpy(inContext->flashContentInRam.appConfig.virtualDevConfig.deviceId, + easyCloudContext.service_status.deviceId, MAX_SIZE_DEVICE_ID); + strncpy(inContext->flashContentInRam.appConfig.virtualDevConfig.masterDeviceKey, + easyCloudContext.service_status.masterDeviceKey, MAX_SIZE_DEVICE_KEY); + + strncpy(inContext->flashContentInRam.appConfig.virtualDevConfig.loginId, + easyCloudContext.service_config_info.loginId, MAX_SIZE_LOGIN_ID); + strncpy(inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd, + easyCloudContext.service_config_info.devPasswd, MAX_SIZE_DEV_PASSWD); + + err = MICOUpdateConfiguration(inContext); + mico_rtos_unlock_mutex(&inContext->flashContentInRam_mutex); + require_noerr_action(err, exit, + cloud_if_log("ERROR: activate write flash failed! err=%d", err) ); + + return kNoErr; + +exit: + return err; +} + +OSStatus MVDCloudInterfaceDevAuthorize(mico_Context_t* const inContext, + MVDAuthorizeRequestData_t devAuthorizeReqData) +{ + cloud_if_log_trace(); + OSStatus err = kUnknownErr; + easycloud_service_state_t cloudServiceState = EASYCLOUD_STOPPED; + + cloud_if_log("Device authorize..."); + + cloudServiceState = EasyCloudServiceState(&easyCloudContext); + if (EASYCLOUD_STOPPED == cloudServiceState){ + return kStateErr; + } + + // dev_passwd ok ? + if(0 != strncmp(inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd, + devAuthorizeReqData.devPasswd, + strlen(inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd))) + { + // devPass err + cloud_if_log("ERROR: MVDCloudInterfaceDevAuthorize: devPasswd mismatch!"); + return kMismatchErr; + } + cloud_if_log("MVDCloudInterfaceDevAuthorize: devPasswd ok!"); + + //ok, set cloud context + strncpy(easyCloudContext.service_config_info.loginId, + devAuthorizeReqData.loginId, MAX_SIZE_LOGIN_ID); + strncpy(easyCloudContext.service_config_info.devPasswd, + devAuthorizeReqData.devPasswd, MAX_SIZE_DEV_PASSWD); + strncpy(easyCloudContext.service_config_info.userToken, + devAuthorizeReqData.user_token, MAX_SIZE_USER_TOKEN); + + err = EasyCloudAuthorize(&easyCloudContext); + require_noerr_action( err, exit, cloud_if_log("ERROR: authorize failed! err=%d", err) ); + return kNoErr; + +exit: + return err; +} + +OSStatus MVDCloudInterfaceDevFirmwareUpdate(mico_Context_t* const inContext, + MVDOTARequestData_t devOTARequestData) +{ + cloud_if_log_trace(); + OSStatus err = kUnknownErr; + ecs_ota_flash_params_t ota_flash_params = { + MICO_FLASH_FOR_UPDATE, + UPDATE_START_ADDRESS, + UPDATE_END_ADDRESS, + UPDATE_FLASH_SIZE + }; + + cloud_if_log("MVDCloudInterfaceDevFirmwareUpdate: start ..."); + + // login_id/dev_passwd ok ? + if((0 != strncmp(inContext->flashContentInRam.appConfig.virtualDevConfig.loginId, + devOTARequestData.loginId, + strlen(inContext->flashContentInRam.appConfig.virtualDevConfig.loginId))) || + (0 != strncmp(inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd, + devOTARequestData.devPasswd, + strlen(inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd)))) + { + // devPass err + cloud_if_log("ERROR: MVDCloudInterfaceDevFirmwareUpdate: loginId/devPasswd mismatch!"); + return kMismatchErr; + } + cloud_if_log("MVDCloudInterfaceDevFirmwareUpdate: loginId/devPasswd ok!"); + + //get latest rom version, file_path, md5 + cloud_if_log("MVDCloudInterfaceDevFirmwareUpdate: get latest rom version from server ..."); + err = EasyCloudGetLatestRomVersion(&easyCloudContext); + require_noerr_action( err, exit, cloud_if_log("ERROR: EasyCloudGetLatestRomVersion failed! err=%d", err) ); + + //FW version compare + cloud_if_log("currnt_version=%s", inContext->flashContentInRam.appConfig.virtualDevConfig.romVersion); + cloud_if_log("latestRomVersion=%s", easyCloudContext.service_status.latestRomVersion); + cloud_if_log("bin_file=%s", easyCloudContext.service_status.bin_file); + cloud_if_log("bin_md5=%s", easyCloudContext.service_status.bin_md5); + + if(0 == strncmp(inContext->flashContentInRam.appConfig.virtualDevConfig.romVersion, + easyCloudContext.service_status.latestRomVersion, + strlen(inContext->flashContentInRam.appConfig.virtualDevConfig.romVersion))){ + cloud_if_log("the current firmware version[%s] is up-to-date!", + inContext->flashContentInRam.appConfig.virtualDevConfig.romVersion); + inContext->appStatus.virtualDevStatus.RecvRomFileSize = 0; + return kNoErr; + } + cloud_if_log("MVDCloudInterfaceDevFirmwareUpdate: new firmware[%s] found on server, downloading ...", + easyCloudContext.service_status.latestRomVersion); + + // yellow means OTA processing. + LedControlMsgHandler("1,60,100,100", strlen("1,60,100,100")); + + //get rom data + err = EasyCloudGetRomData(&easyCloudContext, ota_flash_params); + require_noerr_action( err, exit, + cloud_if_log("ERROR: EasyCloudGetRomData failed! err=%d", err) ); + + //update rom version in flash + cloud_if_log("MVDCloudInterfaceDevFirmwareUpdate: return rom version && file size."); + mico_rtos_lock_mutex(&inContext->flashContentInRam_mutex); + memset(inContext->flashContentInRam.appConfig.virtualDevConfig.romVersion, + 0, MAX_SIZE_FW_VERSION); + strncpy(inContext->flashContentInRam.appConfig.virtualDevConfig.romVersion, + easyCloudContext.service_status.latestRomVersion, + strlen(easyCloudContext.service_status.latestRomVersion)); + inContext->appStatus.virtualDevStatus.RecvRomFileSize = easyCloudContext.service_status.bin_file_size; + MICOUpdateConfiguration(inContext); + mico_rtos_unlock_mutex(&inContext->flashContentInRam_mutex); + + return kNoErr; + +exit: + return err; +} + +OSStatus MVDCloudInterfaceResetCloudDevInfo(mico_Context_t* const inContext, + MVDResetRequestData_t devResetRequestData) +{ + OSStatus err = kUnknownErr; + + // login_id/dev_passwd ok ? + if((0 != strncmp(inContext->flashContentInRam.appConfig.virtualDevConfig.loginId, + devResetRequestData.loginId, + strlen(inContext->flashContentInRam.appConfig.virtualDevConfig.loginId))) || + (0 != strncmp(inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd, + devResetRequestData.devPasswd, + strlen(inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd)))) + { + // devPass err + cloud_if_log("ERROR: MVDCloudInterfaceResetCloudDevInfo: loginId/devPasswd mismatch!"); + return kMismatchErr; + } + cloud_if_log("MVDCloudInterfaceResetCloudDevInfo: loginId/devPasswd ok!"); + + err = EasyCloudDeviceReset(&easyCloudContext); + require_noerr_action( err, exit, cloud_if_log("ERROR: EasyCloudDeviceReset failed! err=%d", err) ); + + mico_rtos_lock_mutex(&inContext->flashContentInRam_mutex); + inContext->flashContentInRam.appConfig.virtualDevConfig.isActivated = false; // need to reActivate + sprintf(inContext->flashContentInRam.appConfig.virtualDevConfig.deviceId, DEFAULT_DEVICE_ID); + sprintf(inContext->flashContentInRam.appConfig.virtualDevConfig.masterDeviceKey, DEFAULT_DEVICE_KEY); + sprintf(inContext->flashContentInRam.appConfig.virtualDevConfig.loginId, DEFAULT_LOGIN_ID); + sprintf(inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd, DEFAULT_DEV_PASSWD); + inContext->appStatus.virtualDevStatus.isCloudConnected = false; + MICOUpdateConfiguration(inContext); + mico_rtos_unlock_mutex(&inContext->flashContentInRam_mutex); + +exit: + return err; +} + +OSStatus MVDCloudInterfaceStop(mico_Context_t* const inContext) +{ + cloud_if_log_trace(); + OSStatus err = kUnknownErr; + + cloud_if_log("MVDCloudInterfaceStop"); + err = EasyCloudServiceStop(&easyCloudContext); + require_noerr_action( err, exit, + cloud_if_log("ERROR: EasyCloudServiceStop err=%d.", err) ); + return kNoErr; + +exit: + return err; +} + +OSStatus MVDCloudInterfaceDeinit(mico_Context_t* const inContext) +{ + cloud_if_log_trace(); + OSStatus err = kUnknownErr; + + cloud_if_log("MVDCloudInterfaceDeinit"); + err = EasyCloudServiceDeInit(&easyCloudContext); + require_noerr_action( err, exit, + cloud_if_log("ERROR: EasyCloudServiceDeInit err=%d.", err) ); + return kNoErr; + +exit: + return err; +} + diff --git a/Demos/COM.WECHAT.LED/MVDCloudInterfaces.h b/Demos/COM.WECHAT.LED/MVDCloudInterfaces.h new file mode 100644 index 00000000..6a6a48a2 --- /dev/null +++ b/Demos/COM.WECHAT.LED/MVDCloudInterfaces.h @@ -0,0 +1,67 @@ +/** +****************************************************************************** +* @file MVDCloudInterfaces.h +* @author Eshen Wang +* @version V0.2.0 +* @date 21-Nov-2014 +* @brief This header contains the cloud service interfaces +* for MICO virtual device. + operation +****************************************************************************** +* @attention +* +* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS +* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE +* TIME. AS A RESULT, MXCHIP Inc. SHALL NOT BE HELD LIABLE FOR ANY +* DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING +* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE +* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. +* +*

© COPYRIGHT 2014 MXCHIP Inc.

+****************************************************************************** +*/ + + +#ifndef __MICO_MVDCLOUDINTERFACES_H_ +#define __MICO_MVDCLOUDINTERFACES_H_ + + +#include "MICODefine.h" +#include "EasyCloudServiceDef.h" + +/******************************************************************************* + * DEFINES + ******************************************************************************/ + + +/******************************************************************************* + * INTERFACES + ******************************************************************************/ + +//common interfaces +OSStatus MVDCloudInterfaceInit(mico_Context_t* const inContext); +OSStatus MVDCloudInterfaceStart(mico_Context_t* const inContext); +easycloud_service_state_t MVDCloudInterfaceGetState(void); +OSStatus MVDCloudInterfaceSend(unsigned char *inBuf, unsigned int inBufLen); +OSStatus MVDCloudInterfaceSendto(const char* topic, + unsigned char *inBuf, unsigned int inBufLen); +// send to sub-level, topic "device_id/out/" +OSStatus MVDCloudInterfaceSendtoChannel(const char* channel, + unsigned char *inBuf, unsigned int inBufLen); + +// cloud specifical interfaces +OSStatus MVDCloudInterfaceDevActivate(mico_Context_t* const inContext, + MVDActivateRequestData_t devActivateReqData); +OSStatus MVDCloudInterfaceDevAuthorize(mico_Context_t* const inContext, + MVDAuthorizeRequestData_t devAuthorizeReqData); + +OSStatus MVDCloudInterfaceDevFirmwareUpdate(mico_Context_t* const inContext, + MVDOTARequestData_t devOTARequestData); +OSStatus MVDCloudInterfaceResetCloudDevInfo(mico_Context_t* const inContext, + MVDResetRequestData_t devResetRequestData); + +OSStatus MVDCloudInterfaceStop(mico_Context_t* const inContext); +OSStatus MVDCloudInterfaceDeinit(mico_Context_t* const inContext); +OSStatus MVDCloudInterfacePrintVersion(void); + +#endif diff --git a/Demos/COM.WECHAT.LED/MVDDeviceInterfaces.c b/Demos/COM.WECHAT.LED/MVDDeviceInterfaces.c new file mode 100644 index 00000000..6df271fc --- /dev/null +++ b/Demos/COM.WECHAT.LED/MVDDeviceInterfaces.c @@ -0,0 +1,133 @@ +/** +****************************************************************************** +* @file MVDDeviceInterfaces.c +* @author Eshen Wang +* @version V0.2.0 +* @date 21-Nov-2014 +* @brief This file contains the implementations of lower device interfaces +* for MICO virtual device. + operation +****************************************************************************** +* @attention +* +* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS +* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE +* TIME. AS A RESULT, MXCHIP Inc. SHALL NOT BE HELD LIABLE FOR ANY +* DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING +* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE +* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. +* +*

© COPYRIGHT 2014 MXCHIP Inc.

+****************************************************************************** +*/ + +#include + +#include "MICODefine.h" +#include "MicoPlatform.h" + +#include "MVDDeviceInterfaces.h" +#include "MicoVirtualDevice.h" + + +#define dev_if_log(M, ...) custom_log("MVD_DEV_IF", M, ##__VA_ARGS__) +#define dev_if_log_trace() custom_log_trace("MVD_DEV_IF") + +volatile ring_buffer_t rx_buffer; +volatile uint8_t rx_data[UART_BUFFER_LENGTH]; + +//extern void uartRecv_thread(void *inContext); +static size_t _uart_get_one_packet(uint8_t* buf, int maxlen); + +void uartRecv_thread(void *inContext) +{ + dev_if_log_trace(); + mico_Context_t *Context = inContext; + int recvlen; + uint8_t *inDataBuffer; + + inDataBuffer = malloc(UART_ONE_PACKAGE_LENGTH); + require(inDataBuffer, exit); + + while(1) { + recvlen = _uart_get_one_packet(inDataBuffer, UART_ONE_PACKAGE_LENGTH); + if (recvlen <= 0) + continue; + dev_if_log("MCU => MVD: [%d]=%.*s", recvlen, recvlen, inDataBuffer); + MVDDeviceMsgProcess(Context, inDataBuffer, recvlen); + } + +exit: + if(inDataBuffer) free(inDataBuffer); +} + +/* Packet format: BB 00 CMD(2B) Status(2B) datalen(2B) data(x) checksum(2B) +* copy to buf, return len = datalen+10 +*/ +size_t _uart_get_one_packet(uint8_t* inBuf, int inBufLen) +{ + dev_if_log_trace(); + + int datalen; + + while(1) { + if( MicoUartRecv( UART_FOR_MCU, inBuf, inBufLen, UART_RECV_TIMEOUT) == kNoErr){ + return inBufLen; + } + else{ + datalen = MicoUartGetLengthInBuffer( UART_FOR_MCU ); + if(datalen){ + MicoUartRecv(UART_FOR_MCU, inBuf, datalen, UART_RECV_TIMEOUT); + return datalen; + } + } + } +} + + +/******************************************************************************* +* INTERFACES +******************************************************************************/ + +OSStatus MVDDevInterfaceInit(mico_Context_t* const inContext) +{ + OSStatus err = kUnknownErr; + mico_uart_config_t uart_config; + + //USART init + uart_config.baud_rate = inContext->flashContentInRam.appConfig.virtualDevConfig.USART_BaudRate; + uart_config.data_width = DATA_WIDTH_8BIT; + uart_config.parity = NO_PARITY; + uart_config.stop_bits = STOP_BITS_1; + uart_config.flow_control = FLOW_CONTROL_DISABLED; + if(inContext->flashContentInRam.micoSystemConfig.mcuPowerSaveEnable == true) + uart_config.flags = UART_WAKEUP_ENABLE; + else + uart_config.flags = UART_WAKEUP_DISABLE; + ring_buffer_init ( (ring_buffer_t *)&rx_buffer, (uint8_t *)rx_data, UART_BUFFER_LENGTH ); + + MicoUartInitialize( UART_FOR_MCU, &uart_config, (ring_buffer_t *)&rx_buffer ); + + //USART receive thread + err = mico_rtos_create_thread(NULL, MICO_APPLICATION_PRIORITY, "UART Recv", + uartRecv_thread, STACK_SIZE_USART_RECV_THREAD, + (void*)inContext ); + require_noerr_action( err, exit, dev_if_log("ERROR: Unable to start the USART recv thread.") ); + return kNoErr; + +exit: + return err; +} + +OSStatus MVDDevInterfaceSend(unsigned char *inBuf, unsigned int inBufLen) +{ + OSStatus err = kUnknownErr; + + dev_if_log("MVD => MCU:[%d]=%.*s", inBufLen, inBufLen, inBuf); + err = MicoUartSend(UART_FOR_MCU, inBuf, inBufLen); + require_noerr_action( err, exit, dev_if_log("ERROR: send to USART error! err=%d", err) ); + return kNoErr; + +exit: + return err; +} diff --git a/Demos/COM.WECHAT.LED/MVDDeviceInterfaces.h b/Demos/COM.WECHAT.LED/MVDDeviceInterfaces.h new file mode 100644 index 00000000..de9f4ef5 --- /dev/null +++ b/Demos/COM.WECHAT.LED/MVDDeviceInterfaces.h @@ -0,0 +1,49 @@ +/** +****************************************************************************** +* @file MVDDeviceInterfaces.h +* @author Eshen Wang +* @version V0.2.0 +* @date 21-Nov-2014 +* @brief This header contains the lower device interfaces +* for MICO virtual device. + operation +****************************************************************************** +* @attention +* +* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS +* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE +* TIME. AS A RESULT, MXCHIP Inc. SHALL NOT BE HELD LIABLE FOR ANY +* DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING +* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE +* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. +* +*

© COPYRIGHT 2014 MXCHIP Inc.

+****************************************************************************** +*/ + + +#ifndef __MICO_MVDDEVICEINTERFACES_H_ +#define __MICO_MVDDEVICEINTERFACES_H_ + +#include "MICODefine.h" + +/******************************************************************************* + * DEFINES + ******************************************************************************/ +#define UART_FOR_MCU MICO_UART_1 +#define UART_RECV_TIMEOUT 100 +#define UART_ONE_PACKAGE_LENGTH 1024 +#define UART_BUFFER_LENGTH 2048 + +#define STACK_SIZE_USART_RECV_THREAD 0x500 + + +/******************************************************************************* + * INTERFACES + ******************************************************************************/ + +OSStatus MVDDevInterfaceInit(mico_Context_t* const inContext); +OSStatus MVDDevInterfaceSend(unsigned char *inBuf, unsigned int inBufLen); + + +#endif diff --git a/Demos/COM.WECHAT.LED/MVDMsgProtocol.c b/Demos/COM.WECHAT.LED/MVDMsgProtocol.c new file mode 100644 index 00000000..2d56c7b2 --- /dev/null +++ b/Demos/COM.WECHAT.LED/MVDMsgProtocol.c @@ -0,0 +1,336 @@ +/** +****************************************************************************** +* @file LM_LEDCmd.c +* @author Eshen Wang +* @version V0.0.1 +* @date 29-Nov-2014 +* @brief This file contains the usart cmd +* of LiMu smart LED USART protocol. + operation +****************************************************************************** +* @attention +* +* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS +* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE +* TIME. AS A RESULT, MXCHIP Inc. SHALL NOT BE HELD LIABLE FOR ANY +* DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING +* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE +* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. +* +*

© COPYRIGHT 2014 MXCHIP Inc.

+****************************************************************************** +*/ + +#include "MICODefine.h" +#include "JSON-C/json.h" +#include "MVDMsgProtocol.h" +#include "RGB.h" +#include "StringUtils.h" + +#define led_log(M, ...) custom_log("LED", M, ##__VA_ARGS__) +#define led_log_trace() custom_log_trace("LED") + + +/******************************************************************************* + * USER CODE + ******************************************************************************/ + +static int getCmdNum(char* cmd, unsigned int len) +{ + //led_log("cmd[%d]=[%s]", len, cmd); + if(!strncmp(cmd, "on", len)) + return 1; + if(!strncmp(cmd, "off", len)) + return 2; + if(!strncmp(cmd, "delay", len)) + return 3; + if(!strncmp(cmd, "status", len)) + return 4; + + return -1; +} + +static uint8_t checksum(lm_usart_message_t msg) +{ + uint8_t result = 0x0; + uint32_t sum = msg.cmd + msg.param1 + msg.param2 + msg.param3; + result = (uint8_t)(sum & 0x000000FF); + return result; +} + + +/* BRIEF: led control message handler + * INPUT: led control message string + * NOTE: must be no sapce in the input message. + * return: + * true, if message format is correct and set led, + * false, if message format is incorrect and do nothing to led. + * + * message string format: [switch,][hues,][saturation,][brightness] + * switch[0/1] + * hues[0-360] + * saturation[0-100] + * brightness[0-100] + * eg (red): 1, 0, 100, 100 + * | | | | + * / | | \ + * switch hues saturation brightness + * string length = 11 (no sapce) + */ +bool LedControlMsgHandler(unsigned char *Msg, unsigned int len) +{ + bool ret = false; + float *color_t = NULL; + unsigned char *ptr = NULL; + unsigned char led_hues_str[4] = {0}; + unsigned char led_saturation_str[4] = {0}; + unsigned char led_brightness_str[4] = {0}; + int led_hues_value = 0; + int led_saturation_value = 0; + int led_brightness_value = 0; + + char delims[] = ","; + char *psubstr = NULL; + + //null msg + if ((0 == len) || (NULL == Msg)){ + return false; + } + + switch(Msg[0]) { + case '0':{ // led off + if(1 != len) + ret = false; + else{ + led_log("CloseLED."); + CloseLED_RGB(); + ret = true; + } + break; + } + case '1':{ // led on + if (len < 7) // strlen("1,0,0,0") + ret = false; + else{ + // get msg data + ptr = (unsigned char*)malloc(len-1); + memset(ptr, 0, len-1); + memcpy(ptr, Msg+2, len-2); + //led_log("ptr[%d]=%s", strlen((char *)ptr), ptr); + + // get HSB data string + psubstr = strtok((char*)ptr, delims); + if ((psubstr != NULL) && (strlen(psubstr)<=3)) { + memcpy(led_hues_str, psubstr, strlen(psubstr)); + //led_log("led_hues_str[%d]=%s", strlen((char*)led_hues_str), led_hues_str); + psubstr = strtok( NULL, delims ); + if ((psubstr != NULL) && (strlen(psubstr)<=3)) { + memcpy(led_saturation_str, psubstr, strlen(psubstr)); + //led_log("led_saturation_str[%d]=%s", strlen((char*)led_saturation_str), led_saturation_str); + psubstr = strtok( NULL, delims ); + if ((psubstr != NULL) && (strlen(psubstr)<=3)) { + memcpy(led_brightness_str, psubstr, strlen(psubstr)); + //led_log("led_brightness_str[%d]=%s", strlen((char*)led_brightness_str), led_brightness_str); + //get HSB string ok, transform to int and set LED + if(Str2Int(led_hues_str, &led_hues_value) && \ + Str2Int(led_saturation_str, &led_saturation_value) \ + && Str2Int(led_brightness_str, &led_brightness_value)){ + color_t = (float*)malloc(3); + if (NULL != color_t){ + led_log("OpenLED: H=%d, S=%d, B=%d", + led_hues_value, + led_saturation_value, + led_brightness_value); + H2R_HSBtoRGB((float)led_hues_value, (float)led_saturation_value, + (float)led_brightness_value, color_t); + OpenLED_RGB(color_t); + free(color_t); + color_t = NULL; + ret = true; + } + } + } + } + } + if(NULL != ptr){ + free(ptr); + ptr = NULL; + } + } + break; + } + default: + ret = false; + break; + } + + return ret; +} + +/******************************************************************************* + * rewrite MVD Msg transform protocol API + ******************************************************************************/ + +// rewrite this function by user +OSStatus MVDMsgTransformCloud2Device(unsigned char* inJsonString, unsigned int inJsonStringLen, + unsigned char** outUsartMsg, unsigned int* outUsartMsgLen) +{ + led_log_trace(); + OSStatus err = kUnknownErr; + + bool ret = false; + ret = LedControlMsgHandler(inJsonString, inJsonStringLen); + + if (ret){ + err = kNoErr; + } + else + { + err = kRequestErr; + } + + return err; + + /* + lm_usart_message_t usartMsg = {0}; + char cmdString[MAX_SIZE_CMD] = {0}; + json_object *new_obj = NULL; + + if(NULL == inJsonString || inJsonStringLen <= 0){ + return kParamErr; + } + + // USART msg head && tail + usartMsg.head = LED_USART_MSG_HEAD; + usartMsg.tail = LED_USART_MSG_TAIL; + + //parse json data for USART msg cmd && params. + new_obj = json_tokener_parse((char*)inJsonString); + require_action(new_obj, exit, err = kUnknownErr); + led_log("Recv json config object=%s", json_object_to_json_string(new_obj)); + + json_object_object_foreach(new_obj, key, val) { + if(!strcmp(key, "cmd")){ + memset(cmdString, 0, MAX_SIZE_CMD); + strncpy(cmdString, json_object_get_string(val), MAX_SIZE_CMD); + led_log("cmd=[%s]", cmdString); + } + else if( (!strcmp(key, LED_PARAM_WHITE)) || (!strcmp(key, LED_PARAM_HOUR)) ){ + usartMsg.param1 = (uint8_t)json_object_get_int(val); + led_log("param1=%d", usartMsg.param1); + } + else if( (!strcmp(key, LED_PARAM_YELLOW)) || (!strcmp(key, LED_PARAM_MINUTE)) ){ + usartMsg.param2 = (uint8_t)json_object_get_int(val); + led_log("param2=%d", usartMsg.param2); + } + else if( (!strcmp(key, LED_PARAM_BRIGHTNESS)) || (!strcmp(key, LED_PARAM_SECOND)) ){ + usartMsg.param3 = (uint8_t)json_object_get_int(val); + led_log("param3=%d", usartMsg.param3); + } + else { + } + } + json_object_put(new_obj); + + // translate cmd value + switch(getCmdNum(cmdString, strlen(cmdString))){ + case 1:{ // on + usartMsg.cmd = LED_CMD_ON; + break; + } + case 2:{ // off + usartMsg.cmd = LED_CMD_OFF; + break; + } + case 3:{ // delay + usartMsg.cmd = LED_CMD_DELAY; + break; + } + case 4:{ // status + usartMsg.cmd = LED_CMD_STATUS; + break; + } + default: + err = kUnknownErr; + led_log("ERROR: unknown cmd!"); + break; + } + + // USART msg checksum + usartMsg.checksum = checksum(usartMsg); + *outUsartMsg = (unsigned char*)malloc(sizeof(usartMsg)); + require( *outUsartMsg, exit ); + + memset(*outUsartMsg, 0, sizeof(usartMsg)); + memcpy(*outUsartMsg, (char*)(&usartMsg), sizeof(usartMsg)); + *outUsartMsgLen = sizeof(usartMsg); + err = kNoErr; + +exit: + return err; + */ +} + +// rewrite this interface by user +OSStatus MVDMsgTransformDevice2Cloud(unsigned char* inUsartString, unsigned int inUsartStringLen, + unsigned char** outJson, unsigned int* outJsonLen) +{ + led_log_trace(); + OSStatus err = kUnknownErr; + lm_usart_message_t usartMsg = {0}; + json_object *object = NULL; + unsigned char *json_str = NULL; + + if(NULL == inUsartString || inUsartStringLen <= 0 + || inUsartStringLen > sizeof(usartMsg)){ + return kParamErr; + } + + memcpy((void*)&usartMsg, inUsartString, inUsartStringLen); + //check response format + if( (LED_USART_MSG_HEAD != usartMsg.head) || + (LED_USART_MSG_TAIL != usartMsg.tail) || + (checksum(usartMsg) != usartMsg.checksum) ){ + return kResponseErr; + } + + // create json response to cloud + object = json_object_new_object(); + require_action(object, exit, err = kNoMemoryErr); + + switch(usartMsg.cmd){ + case LED_RESP_SET_OK:{ + json_object_object_add(object, "response", + json_object_new_string(LED_RESP_CMD_VALUE_OK)); + break; + } + case LED_RESP_STATUS:{ + json_object_object_add(object, "response", + json_object_new_string(LED_RESP_CMD_VALUE_STATUS)); + json_object_object_add(object, LED_PARAM_WHITE, json_object_new_int(usartMsg.param1)); + json_object_object_add(object, LED_PARAM_YELLOW, json_object_new_int(usartMsg.param2)); + json_object_object_add(object, LED_PARAM_BRIGHTNESS, json_object_new_int(usartMsg.param3)); + break; + } + default: + break; + } + + //json string need to be free by user + json_str = (unsigned char*)json_object_to_json_string(object); + *outJsonLen = strlen((char*)(json_str)); + *outJson = (unsigned char*)malloc(*outJsonLen); + if(NULL == (*outJson)){ + return kNoMemoryErr; + } + memcpy(*outJson, json_str, *outJsonLen); + //led_log("outJson[%d]=%.*s", *outJsonLen, *outJsonLen, *outJson); + return kNoErr; + +exit: + if(NULL != object){ + json_object_put(object); + object = NULL; + } + return err; +} diff --git a/Demos/COM.WECHAT.LED/MVDMsgProtocol.h b/Demos/COM.WECHAT.LED/MVDMsgProtocol.h new file mode 100644 index 00000000..33de4157 --- /dev/null +++ b/Demos/COM.WECHAT.LED/MVDMsgProtocol.h @@ -0,0 +1,91 @@ +/** +****************************************************************************** +* @file LM_LEDCmd.h +* @author Eshen Wang +* @version V0.0.1 +* @date 29-Nov-2014 +* @brief This header contains the cmd interfaces +* of LiMu smart LED USART protocol. + operation +****************************************************************************** +* @attention +* +* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS +* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE +* TIME. AS A RESULT, MXCHIP Inc. SHALL NOT BE HELD LIABLE FOR ANY +* DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING +* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE +* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. +* +*

© COPYRIGHT 2014 MXCHIP Inc.

+****************************************************************************** +*/ + +#ifndef __LM_LED_CMD_H_ +#define __LM_LED_CMD_H_ + + +#include "MICODefine.h" + + +/******************************************************************************* + * USER CODE + ******************************************************************************/ + +// cmd string len for json +#define MAX_SIZE_CMD 16 + +// frame format +#define LED_USART_MSG_HEAD 0xAA +#define LED_USART_MSG_TAIL 0x55 + +//cmd code +#define LED_CMD_ON 0xA5 +#define LED_CMD_OFF 0xA0 +#define LED_CMD_DELAY 0xA2 +#define LED_CMD_STATUS 0xA8 + +//response code +#define LED_RESP_SET_OK 0xB0 +#define LED_RESP_STATUS 0xB2 + +//response value +#define LED_RESP_CMD_VALUE_OK "OK" +#define LED_RESP_CMD_VALUE_FAILED "FAILED" +#define LED_RESP_CMD_VALUE_STATUS "status" + + +typedef struct _lm_usart_message_t { + uint8_t head; + uint8_t cmd; + uint8_t param1; + uint8_t param2; + uint8_t param3; + uint8_t checksum; + uint8_t tail; +}lm_usart_message_t; + + +//user json +#define LED_PARAM_WHITE "white" +#define LED_PARAM_YELLOW "yellow" +#define LED_PARAM_BRIGHTNESS "brightness" + +#define LED_PARAM_HOUR "hour" +#define LED_PARAM_MINUTE "minute" +#define LED_PARAM_SECOND "second" + + +/******************************************************************************* + * INTERFACES PROTOTYPE + ******************************************************************************/ + +OSStatus MVDMsgTransformCloud2Device(unsigned char* inJsonString, unsigned int inJsonStringLen, + unsigned char** outUsartCmd, unsigned int* outUsartCmdLen); + +OSStatus MVDMsgTransformDevice2Cloud(unsigned char* inUsartString, unsigned int inUsartStringLen, + unsigned char** outJson, unsigned int* outJsonLen); + +bool LedControlMsgHandler(unsigned char *Msg, unsigned int len); + +#endif diff --git a/Demos/COM.WECHAT.LED/MicoDefaults.h b/Demos/COM.WECHAT.LED/MicoDefaults.h new file mode 100644 index 00000000..2b438ec1 --- /dev/null +++ b/Demos/COM.WECHAT.LED/MicoDefaults.h @@ -0,0 +1,50 @@ +/** +****************************************************************************** +* @file MicoDefault.h +* @author William Xu +* @version V1.0.0 +* @date 16-Sep-2014 +* @brief This file provides the default configuration for MICO. +****************************************************************************** +* +* The MIT License +* Copyright (c) 2014 MXCHIP Inc. +* +* Permission is hereby granted, free of charge, to any person obtaining a copy +* of this software and associated documentation files (the "Software"), to deal +* in the Software without restriction, including without limitation the rights +* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +* copies of the Software, and to permit persons to whom the Software is furnished +* to do so, subject to the following conditions: +* +* The above copyright notice and this permission notice shall be included in +* all copies or substantial portions of the Software. +* +* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +* IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +****************************************************************************** +*/ + +#ifndef __MICODEFAULTS_H__ +#define __MICODEFAULTS_H__ + +#ifdef __cplusplus +extern "C" +{ +#endif + + + /* Application thread stack size */ +#define MICO_DEFAULT_APPLICATION_STACK_SIZE (1500) + + + +#ifdef __cplusplus +} /*extern "C" */ +#endif + +#endif //__MICODEFAULTS_H__ \ No newline at end of file diff --git a/Demos/COM.WECHAT.LED/MicoVirtualDevice.c b/Demos/COM.WECHAT.LED/MicoVirtualDevice.c new file mode 100644 index 00000000..67ecc9f1 --- /dev/null +++ b/Demos/COM.WECHAT.LED/MicoVirtualDevice.c @@ -0,0 +1,568 @@ +/** +****************************************************************************** +* @file MicoVirtualDevice.c +* @author Eshen Wang +* @version V0.2.0 +* @date 21-Nov-2014 +* @brief This file contains the implementations +* of MICO virtual device. + operation +****************************************************************************** +* @attention +* +* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS +* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE +* TIME. AS A RESULT, MXCHIP Inc. SHALL NOT BE HELD LIABLE FOR ANY +* DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING +* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE +* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. +* +*

© COPYRIGHT 2014 MXCHIP Inc.

+****************************************************************************** +*/ + +#include + +#include "MICODefine.h" +#include "MICONotificationCenter.h" + +#include "MicoVirtualDevice.h" +#include "MVDDeviceInterfaces.h" +#include "MVDCloudInterfaces.h" +#include "EasyCloudUtils.h" + +#include "MVDMsgProtocol.h" + + +#define mvd_log(M, ...) custom_log("MVD", M, ##__VA_ARGS__) +#define mvd_log_trace() custom_log_trace("MVD") + +// cloud status +#define DEFAULT_MVD_CLOUD_CONNECTED_MSG_2CLOUD "{\"MVDCloud\":\"connected\"}" +#define DEFAULT_MVD_CLOUD_CONNECTED_MSG_2MCU "[MVD]Cloud: connected\r\n" +#define DEFAULT_MVD_CLOUD_DISCONNECTED_MSG_2MCU "[MVD]Cloud: disconnected\r\n" + +// wifi status +#define DEFAULT_MVD_STATION_UP_MSG_2MCU "[MVD]Wi-Fi: Station up\r\n" +#define DEFAULT_MVD_STATION_DOWN_MSG_2MCU "[MVD]Wi-Fi: Station down\r\n" + +// OTA status +#define DEFAULT_MVD_OTA_CHECK_MSG_2MCU "[MVD]OTA: Checking ...\r\n" +#define DEFAULT_MVD_OTA_UPDATE_MSG_2MCU "[MVD]OTA: Update && reboot ...\r\n" +#define DEFAULT_MVD_OTA_UP_TO_DATE_MSG_2MCU "[MVD]OTA: Up-to-date\r\n" +#define DEFAULT_MVD_OTA_DOWNLOAD_FAILED_MSG_2MCU "[MVD]OTA: Download failed\r\n" + +// dev activate status +#define DEFAULT_MVD_DEV_ACTIVATE_START_MSG_2MCU "[MVD]Activate: Start ...\r\n" +#define DEFAULT_MVD_DEV_ACTIVATE_OK_MSG_2MCU "[MVD]Activate: Success\r\n" +#define DEFAULT_MVD_DEV_ACTIVATE_FAILED_MSG_2MCU "[MVD]Activate: Failed\r\n" + +// restore config status +#define DEFAULT_MVD_RESET_CLOUD_INFO_START_MSG_2MCU "[MVD]CloudReset: Start ...\r\n" +#define DEFAULT_MVD_RESET_CLOUD_INFO_OK_MSG_2MCU "[MVD]CloudReset: Success\r\n" +#define DEFAULT_MVD_RESET_CLOUD_INFO_FAILED_MSG_2MCU "[MVD]CloudReset: Failed\r\n" + + +static mico_semaphore_t _wifi_station_on_sem = NULL; +static mico_semaphore_t _reset_cloud_info_sem = NULL; + +void mvdNotify_WifiStatusHandler(WiFiEvent event, mico_Context_t * const inContext) +{ + mvd_log_trace(); + (void)inContext; + switch (event) { + case NOTIFY_STATION_UP: + MVDDevInterfaceSend(DEFAULT_MVD_STATION_UP_MSG_2MCU, + strlen(DEFAULT_MVD_STATION_UP_MSG_2MCU)); + if(NULL == _wifi_station_on_sem){ + mico_rtos_init_semaphore(&_wifi_station_on_sem, 1); + } + mico_rtos_set_semaphore(&_wifi_station_on_sem); + // set LED to green means station down, data: on/off,H,S,B + LedControlMsgHandler("1,120,100,100", strlen("1,120,100,100")); + break; + case NOTIFY_STATION_DOWN: + MVDDevInterfaceSend(DEFAULT_MVD_STATION_DOWN_MSG_2MCU, + strlen(DEFAULT_MVD_STATION_DOWN_MSG_2MCU)); + // set LED to light green means station down, data: on/off,H,S,B + LedControlMsgHandler("1,120,100,10", strlen("1,120,100,10")); + break; + case NOTIFY_AP_UP: + break; + case NOTIFY_AP_DOWN: + break; + default: + break; + } + return; +} + +#define DEVICE_CLOUD_RESET_RETRY_CNT 3 +OSStatus easycloud_reset_cloud_info(mico_Context_t * const context) +{ + OSStatus err = kUnknownErr; + MVDResetRequestData_t devDefaultResetData; + mico_Context_t *inContext = (mico_Context_t *)context; + int retry_cnt = 1; + + do{ + /* cloud context init */ + err = MVDCloudInterfaceInit(inContext); + if(kNoErr == err){ + mvd_log("[MVD]Device EasyCloud context init [OK]"); + } + else{ + mvd_log("[MVD]Device EasyCloud context init [FAILED]"); + retry_cnt++; + continue; + } + + /* cloud info reset */ + mvd_log("[MVD]Device reset EasyCloud info try[%d] ...", retry_cnt); + memset((void*)&devDefaultResetData, 0, sizeof(devDefaultResetData)); + strncpy(devDefaultResetData.loginId, + inContext->flashContentInRam.appConfig.virtualDevConfig.loginId, + MAX_SIZE_LOGIN_ID); + strncpy(devDefaultResetData.devPasswd, + inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd, + MAX_SIZE_DEV_PASSWD); + strncpy(devDefaultResetData.user_token, + inContext->micoStatus.mac, + MAX_SIZE_USER_TOKEN); + err = MVDCloudInterfaceResetCloudDevInfo(inContext, devDefaultResetData); + if(kNoErr == err){ + mvd_log("[MVD]Device reset EasyCloud info [OK]"); + } + else{ + mvd_log("[MVD]Device reset EasyCloud info [FAILED]"); + retry_cnt++; + } + + }while((kNoErr != err) && (retry_cnt <= DEVICE_CLOUD_RESET_RETRY_CNT)); + + return err; +} + +void MVDDevCloudInfoResetThread(void *arg) +{ + OSStatus err = kUnknownErr; + mico_Context_t *inContext = (mico_Context_t *)arg; + + // stop EasyCloud service first + err = MVDCloudInterfaceStop(inContext); + require_noerr_action( err, exit, mvd_log("ERROR: stop EasyCloud service failed!") ); + + // cloud reset request + MVDDevInterfaceSend(DEFAULT_MVD_RESET_CLOUD_INFO_START_MSG_2MCU, + strlen(DEFAULT_MVD_RESET_CLOUD_INFO_START_MSG_2MCU)); + err = easycloud_reset_cloud_info(inContext); + if(kNoErr == err){ + inContext->appStatus.virtualDevStatus.isCloudConnected = false; + + mico_rtos_lock_mutex(&inContext->flashContentInRam_mutex); + inContext->flashContentInRam.appConfig.virtualDevConfig.isActivated = false; + MICOUpdateConfiguration(inContext); + mico_rtos_unlock_mutex(&inContext->flashContentInRam_mutex); + + //mvd_log("[MVD]MVDDevCloudInfoResetThread: cloud reset success!"); + MVDDevInterfaceSend(DEFAULT_MVD_RESET_CLOUD_INFO_OK_MSG_2MCU, + strlen(DEFAULT_MVD_RESET_CLOUD_INFO_OK_MSG_2MCU)); + + // send ok semaphore + mico_rtos_set_semaphore(&_reset_cloud_info_sem); + } + +exit: + if(kNoErr != err){ + mvd_log("[MVD]MVDDevCloudInfoResetThread EXIT: err=%d",err); + MVDDevInterfaceSend(DEFAULT_MVD_RESET_CLOUD_INFO_FAILED_MSG_2MCU, + strlen(DEFAULT_MVD_RESET_CLOUD_INFO_FAILED_MSG_2MCU)); + } + mico_rtos_delete_thread(NULL); + return; +} + +void MVDMainThread(void *arg) +{ + OSStatus err = kUnknownErr; + mico_Context_t *inContext = (mico_Context_t *)arg; + + bool connected = false; + MVDOTARequestData_t devOTARequestData; + MVDActivateRequestData_t devDefaultActivateData; + + mvd_log("MVD main thread start."); + while(kNoErr != mico_rtos_get_semaphore(&_wifi_station_on_sem, MICO_WAIT_FOREVER)); + + /* check reset cloud info */ + if((inContext->flashContentInRam.appConfig.virtualDevConfig.needCloudReset) && + (inContext->flashContentInRam.appConfig.virtualDevConfig.isActivated)){ + // start a thread to reset device info on EasyCloud + mico_rtos_init_semaphore(&_reset_cloud_info_sem, 1); + mico_rtos_create_thread(NULL, MICO_APPLICATION_PRIORITY, "MVDResetCloudInfo", + MVDDevCloudInfoResetThread, 0x800, + inContext ); + err = mico_rtos_get_semaphore(&_reset_cloud_info_sem, MICO_WAIT_FOREVER); + if(kNoErr == err){ + mico_rtos_lock_mutex(&inContext->flashContentInRam_mutex); + inContext->flashContentInRam.appConfig.virtualDevConfig.needCloudReset = false; + inContext->flashContentInRam.appConfig.virtualDevConfig.isActivated = false; + err = MICOUpdateConfiguration(inContext); + mico_rtos_unlock_mutex(&inContext->flashContentInRam_mutex); + mvd_log("MVD Cloud reset success!"); + } + else{ + mvd_log("MVD Cloud reset failed!"); + } + + mvd_log("Press reset button..."); + goto exit; // do nothing after reset, please press reset button. + } + + /* OTA check */ + //mvd_log(DEFAULT_MVD_OTA_CHECK_MSG_2MCU); + MVDDevInterfaceSend(DEFAULT_MVD_OTA_CHECK_MSG_2MCU, + strlen(DEFAULT_MVD_OTA_CHECK_MSG_2MCU)); + memset((void*)&devOTARequestData, 0, sizeof(devOTARequestData)); + strncpy(devOTARequestData.loginId, + inContext->flashContentInRam.appConfig.virtualDevConfig.loginId, + MAX_SIZE_LOGIN_ID); + strncpy(devOTARequestData.devPasswd, + inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd, + MAX_SIZE_DEV_PASSWD); + strncpy(devOTARequestData.user_token, + inContext->micoStatus.mac, + MAX_SIZE_USER_TOKEN); + err = MVDCloudInterfaceDevFirmwareUpdate(inContext, devOTARequestData); + if(kNoErr == err){ + if(inContext->appStatus.virtualDevStatus.RecvRomFileSize > 0){ + //mvd_log(DEFAULT_MVD_OTA_UPDATE_MSG_2MCU); + MVDDevInterfaceSend(DEFAULT_MVD_OTA_UPDATE_MSG_2MCU, + strlen(DEFAULT_MVD_OTA_UPDATE_MSG_2MCU)); + // set bootloader to reboot && update app fw + memset(&inContext->flashContentInRam.bootTable, 0, sizeof(boot_table_t)); + inContext->flashContentInRam.bootTable.length = inContext->appStatus.virtualDevStatus.RecvRomFileSize; + inContext->flashContentInRam.bootTable.start_address = UPDATE_START_ADDRESS; + inContext->flashContentInRam.bootTable.type = 'A'; + inContext->flashContentInRam.bootTable.upgrade_type = 'U'; + if(inContext->flashContentInRam.micoSystemConfig.configured != allConfigured) + inContext->flashContentInRam.micoSystemConfig.easyLinkByPass = EASYLINK_SOFT_AP_BYPASS; + MICOUpdateConfiguration(inContext); + inContext->micoStatus.sys_state = eState_Software_Reset; + if(inContext->micoStatus.sys_state_change_sem != NULL ); + mico_rtos_set_semaphore(&inContext->micoStatus.sys_state_change_sem); + mico_thread_sleep(MICO_WAIT_FOREVER); + } + else{ + //mvd_log(DEFAULT_MVD_OTA_UP_TO_DATE_MSG_2MCU); + MVDDevInterfaceSend(DEFAULT_MVD_OTA_UP_TO_DATE_MSG_2MCU, + strlen(DEFAULT_MVD_OTA_UP_TO_DATE_MSG_2MCU)); + } + } + else{ + //mvd_log(DEFAULT_MVD_OTA_DOWNLOAD_FAILED_MSG_2MCU); + MVDDevInterfaceSend(DEFAULT_MVD_OTA_DOWNLOAD_FAILED_MSG_2MCU, + strlen(DEFAULT_MVD_OTA_DOWNLOAD_FAILED_MSG_2MCU)); + } + + /* activate when wifi on */ + while(false == inContext->flashContentInRam.appConfig.virtualDevConfig.isActivated){ + // auto activate, using default login_id/dev_pass/user_token + //mvd_log(DEFAULT_MVD_DEV_ACTIVATE_START_MSG_2MCU); + MVDDevInterfaceSend(DEFAULT_MVD_DEV_ACTIVATE_START_MSG_2MCU, + strlen(DEFAULT_MVD_DEV_ACTIVATE_START_MSG_2MCU)); + memset((void*)&devDefaultActivateData, 0, sizeof(devDefaultActivateData)); + strncpy(devDefaultActivateData.loginId, + inContext->flashContentInRam.appConfig.virtualDevConfig.loginId, + MAX_SIZE_LOGIN_ID); + strncpy(devDefaultActivateData.devPasswd, + inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd, + MAX_SIZE_DEV_PASSWD); + strncpy(devDefaultActivateData.user_token, + inContext->micoStatus.mac, + MAX_SIZE_USER_TOKEN); + err = MVDCloudInterfaceDevActivate(inContext, devDefaultActivateData); + if(kNoErr == err){ + //mvd_log("device activate success!"); + MVDDevInterfaceSend(DEFAULT_MVD_DEV_ACTIVATE_OK_MSG_2MCU, + strlen(DEFAULT_MVD_DEV_ACTIVATE_OK_MSG_2MCU)); + } + else{ + //mvd_log("device activate failed, err = %d, retry in %d s ...", err, 1); + MVDDevInterfaceSend(DEFAULT_MVD_DEV_ACTIVATE_FAILED_MSG_2MCU, + strlen(DEFAULT_MVD_DEV_ACTIVATE_FAILED_MSG_2MCU)); + } + mico_thread_sleep(1); + } + mvd_log("[MVD]device already activated."); + + /* start EasyCloud service */ + err = MVDCloudInterfaceStart(inContext); + require_noerr_action(err, exit, + mvd_log("ERROR: MVDCloudInterfaceStart failed!") ); + + /* loop connect status */ + while(1) + { + if(inContext->appStatus.virtualDevStatus.isCloudConnected){ + if (!connected){ + connected = true; + + // set LED to blue means cloud connected, data: on/off,H,S,B + LedControlMsgHandler("1,240,100,100", strlen("1,240,100,100")); + + //mvd_log("[MVD]Cloud: connected"); + MVDDevInterfaceSend(DEFAULT_MVD_CLOUD_CONNECTED_MSG_2MCU, + strlen(DEFAULT_MVD_CLOUD_CONNECTED_MSG_2MCU)); + MVDCloudInterfaceSendtoChannel(PUBLISH_TOPIC_CHANNEL_STATUS, + DEFAULT_MVD_CLOUD_CONNECTED_MSG_2CLOUD, + strlen(DEFAULT_MVD_CLOUD_CONNECTED_MSG_2CLOUD)); + } + } + else{ + if (connected){ + connected = false; + + // white means cloud disconnect. + LedControlMsgHandler("1,0,0,10", strlen("1,0,0,10")); + mvd_log("[MVD]cloud service disconnected!"); + + //mvd_log("[MVD]Cloud: disconnected"); + MVDDevInterfaceSend(DEFAULT_MVD_CLOUD_DISCONNECTED_MSG_2MCU, + strlen(DEFAULT_MVD_CLOUD_DISCONNECTED_MSG_2MCU)); + } + } + + mico_thread_sleep(1); + } + +exit: + mvd_log("[MVD]MVDMainThread exit err=%d.", err); + mico_rtos_delete_thread(NULL); + return; +} + + +/******************************************************************************* + * virtual device interfaces init + ******************************************************************************/ + +// reset default value +void MVDRestoreDefault(mico_Context_t* const context) +{ + bool cloud_need_reset = false; + + if(context->flashContentInRam.appConfig.virtualDevConfig.isActivated){ + cloud_need_reset = true; + } + + // reset all MVD config params + memset((void*)&(context->flashContentInRam.appConfig.virtualDevConfig), + 0, sizeof(virtual_device_config_t)); + + context->flashContentInRam.appConfig.virtualDevConfig.USART_BaudRate = 115200; + + context->flashContentInRam.appConfig.virtualDevConfig.isActivated = false; + sprintf(context->flashContentInRam.appConfig.virtualDevConfig.deviceId, DEFAULT_DEVICE_ID); + sprintf(context->flashContentInRam.appConfig.virtualDevConfig.masterDeviceKey, DEFAULT_DEVICE_KEY); + sprintf(context->flashContentInRam.appConfig.virtualDevConfig.romVersion, DEFAULT_ROM_VERSION); + + sprintf(context->flashContentInRam.appConfig.virtualDevConfig.loginId, DEFAULT_LOGIN_ID); + sprintf(context->flashContentInRam.appConfig.virtualDevConfig.devPasswd, DEFAULT_DEV_PASSWD); + //sprintf(context->flashContentInRam.appConfig.virtualDevConfig.userToken, context->micoStatus.mac); + + // set flag to reset cloud next restart + if(cloud_need_reset){ + context->flashContentInRam.appConfig.virtualDevConfig.needCloudReset = true; + context->flashContentInRam.appConfig.virtualDevConfig.isActivated = true; + } + else{ + context->flashContentInRam.appConfig.virtualDevConfig.needCloudReset = false; + } +} + +OSStatus MVDInit(mico_Context_t* const inContext) +{ + OSStatus err = kUnknownErr; + + //init MVD status + inContext->appStatus.virtualDevStatus.isCloudConnected = false; + inContext->appStatus.virtualDevStatus.RecvRomFileSize = 0; + + //init MCU connect interface + //err = MVDDevInterfaceInit(inContext); + //require_noerr_action(err, exit, + // mvd_log("ERROR: virtual device mcu interface init failed!") ); + + //init cloud service interface + err = MVDCloudInterfaceInit(inContext); + require_noerr_action(err, exit, + mvd_log("ERROR: virtual device cloud interface init failed!") ); + + // wifi notify + err = mico_rtos_init_semaphore(&_wifi_station_on_sem, 1); + require_noerr_action(err, exit, + mvd_log("ERROR: mico_rtos_init_semaphore (_wifi_station_on_sem) failed!") ); + + err = MICOAddNotification( mico_notify_WIFI_STATUS_CHANGED, (void *)mvdNotify_WifiStatusHandler ); + require_noerr_action(err, exit, + mvd_log("ERROR: MICOAddNotification (mico_notify_WIFI_STATUS_CHANGED) failed!") ); + + // start MVD main thread + err = mico_rtos_create_thread(NULL, MICO_APPLICATION_PRIORITY, "MVD main", + MVDMainThread, STACK_SIZE_MVD_MAIN_THREAD, + inContext ); + +exit: + return err; +} + +/******************************************************************************* + * MVD get state + ******************************************************************************/ +// cloud connect state +bool MVDCloudIsConnect(mico_Context_t* const context) +{ + if(NULL == context){ + return false; + } + return context->appStatus.virtualDevStatus.isCloudConnected; +} + +// device activate state +bool MVDIsActivated(mico_Context_t* const context) +{ + if(NULL == context){ + return false; + } + return context->flashContentInRam.appConfig.virtualDevConfig.isActivated; +} + + +/******************************************************************************* + * MVD message send interface + ******************************************************************************/ + +// MVD => MCU +// send to USART +OSStatus MVDSendMsg2Device(mico_Context_t* const context, + unsigned char *inBuf, unsigned int inBufLen) +{ + mvd_log_trace(); + OSStatus err = kUnknownErr; + + err = MVDDevInterfaceSend(inBuf, inBufLen); // transfer raw data + require_noerr_action( err, exit, mvd_log("ERROR: send to cloud error! err=%d", err) ); + return kNoErr; + +exit: + return err; +} + +// MVD => Cloud +// if topic is NULL, send to default topic: device_id/out, +// else send to sub-channel: device_id/out/ +OSStatus MVDSendMsg2Cloud(mico_Context_t* const context, const char* topic, + unsigned char *inBuf, unsigned int inBufLen) +{ + mvd_log_trace(); + OSStatus err = kUnknownErr; + + err = MVDCloudInterfaceSendtoChannel(topic, inBuf, inBufLen); // transfer raw data + require_noerr_action( err, exit, mvd_log("ERROR: send to cloud error! err=%d", err) ); + return kNoErr; + +exit: + return err; +} + + +/******************************************************************************* + * MVD message exchange protocol + ******************************************************************************/ + +// handle cloud msg here, for example: send to USART or echo to cloud +OSStatus MVDCloudMsgProcess(mico_Context_t* context, + const char* topic, const unsigned int topicLen, + unsigned char *inBuf, unsigned int inBufLen) +{ + mvd_log_trace(); + OSStatus err = kUnknownErr; +// char* responseTopic = NULL; +// unsigned char* responseMsg = NULL; +// unsigned char* ptr = NULL; +// int responseMsgLen = 0; +// +// /* send to USART */ +// err = MVDDevInterfaceSend(inBuf, inBufLen); // transfer raw data to USART +// require_noerr_action( err, exit, mvd_log("ERROR: send to MCU error! err=%d", err) ); +// +// /* echo to cloud */ +// // responseTopic = device_id/out, message = [MAC]msg +// responseTopic = ECS_str_replace(responseTopic, topic, topicLen, "/in", "/out"); +// responseMsgLen = strlen(context->micoStatus.mac) + 2 + inBufLen; +// responseMsg = (unsigned char*)malloc(responseMsgLen + 1); +// memset(responseMsg, 0x00, responseMsgLen); +// if(NULL == responseMsg){ +// err = kNoMemoryErr; +// goto exit; +// } +// ptr = responseMsg; +// memcpy(ptr, "[", 1); +// ptr += 1; +// memcpy(ptr, (const void*)&(context->micoStatus.mac), strlen(context->micoStatus.mac)); +// ptr += strlen(context->micoStatus.mac); +// memcpy(ptr, "]", 1); +// ptr += 1; +// memcpy(ptr, inBuf, inBufLen); +// ptr += inBufLen; +// memcpy(ptr, '\0', 1); +// err = MVDCloudInterfaceSendto(responseTopic, responseMsg, responseMsgLen); +// if(NULL != responseTopic){ +// free(responseTopic); +// } +// if(NULL != responseMsg){ +// ptr = NULL; +// free(responseMsg); +// } + + /* LED control */ + unsigned char* usartCmd = NULL; + unsigned int usartCmdLen = 0; + + // translate cloud message to control protocol format + err = MVDMsgTransformCloud2Device(inBuf, inBufLen, &usartCmd, &usartCmdLen); + if(NULL != usartCmd){ + free(usartCmd); + usartCmd = NULL; + usartCmdLen = 0; + } + + if (kNoErr == err){ + //err = MVDCloudInterfaceSend(LED_RESP_CMD_VALUE_OK, strlen((const char*)LED_RESP_CMD_VALUE_OK)); + return kNoErr; + } + else + { + //err = MVDCloudInterfaceSend(LED_RESP_CMD_VALUE_FAILED, strlen((const char*)LED_RESP_CMD_VALUE_FAILED)); + return kRequestErr; + } + +//exit: +// return err; +} + +// handle MCU msg here, for example: send to Cloud +OSStatus MVDDeviceMsgProcess(mico_Context_t* const context, + uint8_t *inBuf, unsigned int inBufLen) +{ + mvd_log_trace(); + OSStatus err = kUnknownErr; + + err = MVDCloudInterfaceSend(inBuf, inBufLen); // transfer raw data to cloud + require_noerr_action( err, exit, mvd_log("ERROR: send to cloud error! err=%d", err) ); + return kNoErr; + +exit: + return err; +} \ No newline at end of file diff --git a/Demos/COM.WECHAT.LED/MicoVirtualDevice.h b/Demos/COM.WECHAT.LED/MicoVirtualDevice.h new file mode 100644 index 00000000..d8d41edd --- /dev/null +++ b/Demos/COM.WECHAT.LED/MicoVirtualDevice.h @@ -0,0 +1,76 @@ +/** +****************************************************************************** +* @file MicoVirtualDevice.h +* @author Eshen Wang +* @version V0.2.0 +* @date 21-Nov-2014 +* @brief This header contains the interfaces +* of MICO virtual device. + operation +****************************************************************************** +* @attention +* +* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS +* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE +* TIME. AS A RESULT, MXCHIP Inc. SHALL NOT BE HELD LIABLE FOR ANY +* DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING +* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE +* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. +* +*

© COPYRIGHT 2014 MXCHIP Inc.

+****************************************************************************** +*/ + +#ifndef __MICO_MVD_H_ +#define __MICO_MVD_H_ + +#include "MICODefine.h" +#include "MicoVirtualDeviceDef.h" + + +/******************************************************************************* + * USER INTERFACES + ******************************************************************************/ + +/***** init *****/ + +// init USART && Cloud interface +OSStatus MVDInit(mico_Context_t* const context); +// restore default config for MVD +void MVDRestoreDefault(mico_Context_t* const context); + + +/***** get MVD state *****/ + +// device activate state +bool MVDIsActivated(mico_Context_t* const context); +// cloud connect state +bool MVDCloudIsConnect(mico_Context_t* const context); + + +/****** send message ******/ + +// Module => MCU +OSStatus MVDSendMsg2Device(mico_Context_t* const context, + unsigned char *inBuf, unsigned int inBufLen); +// Module => Cloud +OSStatus MVDSendMsg2Cloud(mico_Context_t* const context, const char* topic, + unsigned char *inBuf, unsigned int inBufLen); + + +/******************************************************************************* +* INTERNAL FUNCTIONS +*******************************************************************************/ + +/* message transmit protocol */ + +// MCU => Cloud, called by uartRecv_thread (when recv msg from MCU) +OSStatus MVDDeviceMsgProcess(mico_Context_t* const context, + unsigned char *inBuf, unsigned int inBufLen); + +// Cloud => MCU, called by cloudMsgArrivedHandler (when recv msg from cloud) +OSStatus MVDCloudMsgProcess(mico_Context_t* const context, + const char* topic, const unsigned int topicLen, + unsigned char *inBuf, unsigned int inBufLen); + +#endif diff --git a/Demos/COM.WECHAT.LED/MicoVirtualDeviceDef.h b/Demos/COM.WECHAT.LED/MicoVirtualDeviceDef.h new file mode 100644 index 00000000..50dd0e61 --- /dev/null +++ b/Demos/COM.WECHAT.LED/MicoVirtualDeviceDef.h @@ -0,0 +1,82 @@ +/** +****************************************************************************** +* @file MicoVirtualDevice.h +* @author Eshen Wang +* @version V0.2.0 +* @date 21-Nov-2014 +* @brief This header contains the defines +* of MICO virtual device. + operation +****************************************************************************** +* @attention +* +* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS +* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE +* TIME. AS A RESULT, MXCHIP Inc. SHALL NOT BE HELD LIABLE FOR ANY +* DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING +* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE +* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. +* +*

© COPYRIGHT 2014 MXCHIP Inc.

+****************************************************************************** +*/ + +#ifndef __MICO_MVD_DEF_H_ +#define __MICO_MVD_DEF_H_ + +#include "EasyCloudServiceDef.h" + +/******************************************************************************* + * DEFINES + ******************************************************************************/ + +// default device settings +#define DEFAULT_LOGIN_ID "admin" +#define DEFAULT_DEV_PASSWD "admin" + +// default device info +#define DEFAULT_DEVICE_ID "none" +#define DEFAULT_DEVICE_KEY "none" + +#define STACK_SIZE_MVD_MAIN_THREAD 0x800 + +/* MQTT topic sub-level, device_id/out/status */ +#define PUBLISH_TOPIC_CHANNEL_STATUS "status" + + +/******************************************************************************* + * STRUCTURES + ******************************************************************************/ + +/* device configurations stored in flash */ +typedef struct _virtual_device_config_t +{ + /* MCU connect settings */ + uint32_t USART_BaudRate; + + /* cloud connect params */ + bool isActivated; // device activate flag + char deviceId[MAX_SIZE_DEVICE_ID]; // get from cloud server + char masterDeviceKey[MAX_SIZE_DEVICE_KEY];// get from cloud server + char romVersion[MAX_SIZE_FW_VERSION]; // get from cloud server + + char loginId[MAX_SIZE_LOGIN_ID]; // not used for wechat dev + char devPasswd[MAX_SIZE_DEV_PASSWD]; // not used for wechat dev + //char userToken[MAX_SIZE_USER_TOKEN]; // use MAC addr instead + + bool needCloudReset; // need to reset cloud info +} virtual_device_config_t; + +/* device status */ +typedef struct _virtual_device_status_t +{ + bool isCloudConnected; // cloud service connect status + uint64_t RecvRomFileSize; // return OTA data size for bootTable.length, 0 means not need to update +} virtual_device_status_t; + +typedef struct _virtual_device_context_t { + virtual_device_config_t config_info; // virtual device config info + virtual_device_status_t status; // virtual device running status +} virtual_device_context_t; + +#endif diff --git a/Demos/COM.WECHAT.LED/RGB.c b/Demos/COM.WECHAT.LED/RGB.c new file mode 100644 index 00000000..64599d9d --- /dev/null +++ b/Demos/COM.WECHAT.LED/RGB.c @@ -0,0 +1,158 @@ +/** + ****************************************************************************** + * @file RemoteTcpClient.c + * @author William Xu + * @version V1.0.0 + * @date 05-May-2014 + * @brief Create a TCP client thread, and connect to a remote server. + ****************************************************************************** + * @attention + * + * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS + * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE + * TIME. AS A RESULT, MXCHIP Inc. SHALL NOT BE HELD LIABLE FOR ANY + * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING + * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE + * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. + * + *

© COPYRIGHT 2014 MXCHIP Inc.

+ ****************************************************************************** + */ + +#include "MICOAppDefine.h" +#include "MICODefine.h" +//#include "stm32f4xx.h" +#include "RGB.h" + +#define rgb_log(M, ...) custom_log("rgb", M, ##__VA_ARGS__) +#define rgb_log_trace() custom_log_trace("rgb") + +float constrain(float value, float min, float max){ + if(value >= max) + return max; + if(value <=min ) + return min; + return value; +} + +float Percent(float value){ + return value = (((float)value / 255.0) * 100.0); +} + +void H2R_HSBtoRGB(float hue, float sat, float bright, float *color) { + + // constrain all input variables to expected range + hue = constrain(hue, 0, 360); + sat = constrain(sat, 0, 100); + bright = constrain(bright, 0, 100); + + // define maximum value for RGB array elements + float max_rgb_val = H2R_MAX_RGB_val; + + // convert saturation and brightness value to decimals and init r, g, b variables + float sat_f = (float)sat / 100.0; + float bright_f = (float)bright / 100.0; + float r, g, b; + + // If brightness is 0 then color is black (achromatic) + // therefore, R, G and B values will all equal to 0 + if (bright <= 0) { + color[0] = 0; + color[1] = 0; + color[2] = 0; + } + + // If saturation is 0 then color is gray (achromatic) + // therefore, R, G and B values will all equal the current brightness + if (sat <= 0) { + color[0] = bright_f * max_rgb_val; + color[1] = bright_f * max_rgb_val; + color[2] = bright_f * max_rgb_val; + } + + // if saturation and brightness are greater than 0 then calculate + // R, G and B values based on the current hue and brightness + else { + if (hue >= 0 && hue < 120) { + float hue_primary = 1.0 - ((float)hue / 120.0); + float hue_secondary = (float)hue / 120.0; + float sat_primary = (1.0 - hue_primary) * (1.0 - sat_f); + float sat_secondary = (1.0 - hue_secondary) * (1.0 - sat_f); + float sat_tertiary = 1.0 - sat_f; + r = (bright_f * max_rgb_val) * (hue_primary + sat_primary); + g = (bright_f * max_rgb_val) * (hue_secondary + sat_secondary); + b = (bright_f * max_rgb_val) * sat_tertiary; + } + else if (hue >= 120 && hue < 240) { + float hue_primary = 1.0 - (((float)hue-120.0) / 120.0); + float hue_secondary = ((float)hue-120.0) / 120.0; + float sat_primary = (1.0 - hue_primary) * (1.0 - sat_f); + float sat_secondary = (1.0 - hue_secondary) * (1.0 - sat_f); + float sat_tertiary = 1.0 - sat_f; + r = (bright_f * max_rgb_val) * sat_tertiary; + g = (bright_f * max_rgb_val) * (hue_primary + sat_primary); + b = (bright_f * max_rgb_val) * (hue_secondary + sat_secondary); + } + else if (hue >= 240 && hue <= 360) { + float hue_primary = 1.0 - (((float)hue-240.0) / 120.0); + float hue_secondary = ((float)hue-240.0) / 120.0; + float sat_primary = (1.0 - hue_primary) * (1.0 - sat_f); + float sat_secondary = (1.0 - hue_secondary) * (1.0 - sat_f); + float sat_tertiary = 1.0 - sat_f; + r = (bright_f * max_rgb_val) * (hue_secondary + sat_secondary); + g = (bright_f * max_rgb_val) * sat_tertiary; + b = (bright_f * max_rgb_val) * (hue_primary + sat_primary); + } + + color[0] = r; + color[1] = g; + color[2] = b; + + } + color[0] = Percent(color[0]); + color[1] = Percent(color[1]); + color[2] = Percent(color[2]); + +} + +void OpenLED_RGB(float *color){ + MicoPwmInitialize( (mico_pwm_t)MICO_PWM_R, 50, (float)color[0]); + MicoPwmStart( (mico_pwm_t)MICO_PWM_R); + + MicoPwmInitialize( (mico_pwm_t)MICO_PWM_G, 50, (float)color[1]); + MicoPwmStart( (mico_pwm_t)MICO_PWM_G); + + MicoPwmInitialize( (mico_pwm_t)MICO_PWM_B, 50, (float)color[2]); + MicoPwmStart( (mico_pwm_t)MICO_PWM_B); +} + +void CloseLED_RGB(){ + MicoPwmStop((mico_pwm_t)MICO_PWM_R); + MicoPwmStop((mico_pwm_t)MICO_PWM_G); + MicoPwmStop((mico_pwm_t)MICO_PWM_B); +} + +//void OpenLED_W(float Size){ +// MicoPwmInitialize( (mico_pwm_t)MICO_PWM_W, 50, 100 - (float)Size); +// MicoPwmStart( (mico_pwm_t)MICO_PWM_W); +//} +// +//void CloseLED_W(){ +// MicoPwmStop((mico_pwm_t)MICO_PWM_W); +//} +// +//void OpenLED_C(float Size){ +// MicoPwmInitialize( (mico_pwm_t)MICO_PWM_C, 50, 100 - (float)Size); +// MicoPwmStart( (mico_pwm_t)MICO_PWM_C); +//} +// +//void CloseLED_C(){ +// MicoPwmStop((mico_pwm_t)MICO_PWM_C); +//} + + + + + + + diff --git a/Demos/COM.WECHAT.LED/RGB.h b/Demos/COM.WECHAT.LED/RGB.h new file mode 100644 index 00000000..fb875d23 --- /dev/null +++ b/Demos/COM.WECHAT.LED/RGB.h @@ -0,0 +1,28 @@ +/* + HSB Color, + Library that converts HSB color values to RGB colors. + Created by Julio Terra, June 4, 2011. + + Header File Name: HSBColor.h + Implementation File Name: HSBColor.h + + */ + +#ifndef HSBColor_h +#define HSBColor_h + + +#define H2R_MAX_RGB_val 255.0 + +void H2R_HSBtoRGB(float hue, float sat, float bright, float *color); + +void OpenLED_RGB(float *color); +void CloseLED_RGB(); + +//void OpenLED_W(float Size); +//void CloseLED_W(); +// +//void OpenLED_C(float Size); +//void CloseLED_C(); + +#endif diff --git a/Demos/COM.WECHAT.SPP/MICOAppDefine.h b/Demos/COM.WECHAT.SPP/MICOAppDefine.h index 5fcdd357..97b28210 100644 --- a/Demos/COM.WECHAT.SPP/MICOAppDefine.h +++ b/Demos/COM.WECHAT.SPP/MICOAppDefine.h @@ -35,14 +35,9 @@ #define SERIAL_NUMBER "20150209" #define PROTOCOL "com.wechat.spp" -#ifdef DEFAULT_NAME -#undef DEFAULT_NAME -#define DEFAULT_NAME "EMW3162 Wechat" -#endif - /* Wi-Fi configuration mode */ -//#define MICO_CONFIG_MODE CONFIG_MODE_EASYLINK_PLUS +//#define MICO_CONFIG_MODE CONFIG_MODE_EASYLINK #define MICO_CONFIG_MODE CONFIG_MODE_AIRKISS /*User provided configurations*/ diff --git a/Demos/COM.WECHAT.SPP/MicoVirtualDevice.c b/Demos/COM.WECHAT.SPP/MicoVirtualDevice.c index c3f3b39b..2cbadd84 100644 --- a/Demos/COM.WECHAT.SPP/MicoVirtualDevice.c +++ b/Demos/COM.WECHAT.SPP/MicoVirtualDevice.c @@ -91,6 +91,90 @@ void mvdNotify_WifiStatusHandler(WiFiEvent event, mico_Context_t * const inConte return; } +#define DEVICE_RESET_RETRY_CNT 3 +OSStatus easycloud_reset_cloud_info(mico_Context_t * const context) +{ + OSStatus err = kUnknownErr; + MVDResetRequestData_t devDefaultResetData; + mico_Context_t *inContext = (mico_Context_t *)context; + int retry_cnt = 1; + + do{ + /* cloud context init */ + err = MVDCloudInterfaceInit(inContext); + if(kNoErr == err){ + mvd_log("[MVD]Device EasyCloud context init [OK]"); + } + else{ + mvd_log("[MVD]Device EasyCloud context init [FAILED]"); + retry_cnt++; + continue; + } + + /* cloud info reset */ + mvd_log("[MVD]Device reset EasyCloud info try[%d] ...", retry_cnt); + memset((void*)&devDefaultResetData, 0, sizeof(devDefaultResetData)); + strncpy(devDefaultResetData.loginId, + inContext->flashContentInRam.appConfig.virtualDevConfig.loginId, + MAX_SIZE_LOGIN_ID); + strncpy(devDefaultResetData.devPasswd, + inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd, + MAX_SIZE_DEV_PASSWD); + strncpy(devDefaultResetData.user_token, + inContext->micoStatus.mac, + MAX_SIZE_USER_TOKEN); + err = MVDCloudInterfaceResetCloudDevInfo(inContext, devDefaultResetData); + if(kNoErr == err){ + mvd_log("[MVD]Device reset EasyCloud info [OK]"); + } + else{ + mvd_log("[MVD]Device reset EasyCloud info [FAILED]"); + retry_cnt++; + } + + }while((kNoErr != err) && (retry_cnt <= DEVICE_RESET_RETRY_CNT)); + + return err; +} + +void MVDDevCloudInfoResetThread(void *arg) +{ + OSStatus err = kUnknownErr; + mico_Context_t *inContext = (mico_Context_t *)arg; + + // stop EasyCloud service first + err = MVDCloudInterfaceStop(inContext); + require_noerr_action( err, exit, mvd_log("ERROR: stop EasyCloud service failed!") ); + + // cloud reset request + MVDDevInterfaceSend(DEFAULT_MVD_RESET_CLOUD_INFO_START_MSG_2MCU, + strlen(DEFAULT_MVD_RESET_CLOUD_INFO_START_MSG_2MCU)); + err = easycloud_reset_cloud_info(inContext); + if(kNoErr == err){ + inContext->appStatus.virtualDevStatus.isCloudConnected = false; + + mico_rtos_lock_mutex(&inContext->flashContentInRam_mutex); + inContext->flashContentInRam.appConfig.virtualDevConfig.isActivated = false; + MICOUpdateConfiguration(inContext); + mico_rtos_unlock_mutex(&inContext->flashContentInRam_mutex); + + //mvd_log("[MVD]MVDDevCloudInfoResetThread: cloud reset success!"); + MVDDevInterfaceSend(DEFAULT_MVD_RESET_CLOUD_INFO_OK_MSG_2MCU, + strlen(DEFAULT_MVD_RESET_CLOUD_INFO_OK_MSG_2MCU)); + + // send ok semaphore + mico_rtos_set_semaphore(&_reset_cloud_info_sem); + } + +exit: + if(kNoErr != err){ + mvd_log("[MVD]MVDDevCloudInfoResetThread EXIT: err=%d",err); + MVDDevInterfaceSend(DEFAULT_MVD_RESET_CLOUD_INFO_FAILED_MSG_2MCU, + strlen(DEFAULT_MVD_RESET_CLOUD_INFO_FAILED_MSG_2MCU)); + } + mico_rtos_delete_thread(NULL); + return; +} void MVDMainThread(void *arg) { @@ -102,10 +186,33 @@ void MVDMainThread(void *arg) MVDActivateRequestData_t devDefaultActivateData; mvd_log("MVD main thread start."); - - /* check OTA when wifi on */ + // wait for station on while(kNoErr != mico_rtos_get_semaphore(&_wifi_station_on_sem, MICO_WAIT_FOREVER)); + /* check reset cloud info */ + if((inContext->flashContentInRam.appConfig.virtualDevConfig.needCloudReset) && + (inContext->flashContentInRam.appConfig.virtualDevConfig.isActivated)){ + // start a thread to reset device info on EasyCloud + mico_rtos_init_semaphore(&_reset_cloud_info_sem, 1); + mico_rtos_create_thread(NULL, MICO_APPLICATION_PRIORITY, "MVDResetCloudInfo", + MVDDevCloudInfoResetThread, 0x800, + inContext ); + err = mico_rtos_get_semaphore(&_reset_cloud_info_sem, MICO_WAIT_FOREVER); + if(kNoErr == err){ + mico_rtos_lock_mutex(&inContext->flashContentInRam_mutex); + inContext->flashContentInRam.appConfig.virtualDevConfig.needCloudReset = false; + inContext->flashContentInRam.appConfig.virtualDevConfig.isActivated = false; + err = MICOUpdateConfiguration(inContext); + mico_rtos_unlock_mutex(&inContext->flashContentInRam_mutex); + mvd_log("MVD Cloud reset success!"); + goto exit; // do nothing after reset, please press reset button. + } + else{ + mvd_log("MVD Cloud reset failed!"); + } + } + + /* check OTA when wifi on */ //mvd_log(DEFAULT_MVD_OTA_CHECK_MSG_2MCU); MVDDevInterfaceSend(DEFAULT_MVD_OTA_CHECK_MSG_2MCU, strlen(DEFAULT_MVD_OTA_CHECK_MSG_2MCU)); @@ -126,6 +233,7 @@ void MVDMainThread(void *arg) MVDDevInterfaceSend(DEFAULT_MVD_OTA_UPDATE_MSG_2MCU, strlen(DEFAULT_MVD_OTA_UPDATE_MSG_2MCU)); // set bootloader to reboot && update app fw + mico_rtos_lock_mutex(&inContext->flashContentInRam_mutex); memset(&inContext->flashContentInRam.bootTable, 0, sizeof(boot_table_t)); inContext->flashContentInRam.bootTable.length = inContext->appStatus.virtualDevStatus.RecvRomFileSize; inContext->flashContentInRam.bootTable.start_address = UPDATE_START_ADDRESS; @@ -134,9 +242,11 @@ void MVDMainThread(void *arg) if(inContext->flashContentInRam.micoSystemConfig.configured != allConfigured) inContext->flashContentInRam.micoSystemConfig.easyLinkByPass = EASYLINK_SOFT_AP_BYPASS; MICOUpdateConfiguration(inContext); + mico_rtos_unlock_mutex(&inContext->flashContentInRam_mutex); inContext->micoStatus.sys_state = eState_Software_Reset; - if(inContext->micoStatus.sys_state_change_sem != NULL ); - mico_rtos_set_semaphore(&inContext->micoStatus.sys_state_change_sem); + if(inContext->micoStatus.sys_state_change_sem != NULL ){ + mico_rtos_set_semaphore(&inContext->micoStatus.sys_state_change_sem); + } mico_thread_sleep(MICO_WAIT_FOREVER); } else{ @@ -221,91 +331,6 @@ void MVDMainThread(void *arg) return; } -OSStatus easycloud_reset_cloud_info(mico_Context_t * const context) -{ - OSStatus err = kUnknownErr; - MVDResetRequestData_t devDefaultResetData; - mico_Context_t *inContext = (mico_Context_t *)context; - int retry_cnt = 3; - - - do{ - /* cloud context init */ - err = MVDCloudInterfaceInit(inContext); - if(kNoErr == err){ - mvd_log("[MVD]Device EasyCloud context init [OK]"); - } - else{ - mvd_log("[MVD]Device EasyCloud context init [FAILED]"); - retry_cnt--; - continue; - } - - /* cloud info reset */ - mvd_log("[MVD]Device reset EasyCloud info try[%d] ...", 4 - retry_cnt); - memset((void*)&devDefaultResetData, 0, sizeof(devDefaultResetData)); - strncpy(devDefaultResetData.loginId, - inContext->flashContentInRam.appConfig.virtualDevConfig.loginId, - MAX_SIZE_LOGIN_ID); - strncpy(devDefaultResetData.devPasswd, - inContext->flashContentInRam.appConfig.virtualDevConfig.devPasswd, - MAX_SIZE_DEV_PASSWD); - strncpy(devDefaultResetData.user_token, - inContext->micoStatus.mac, - MAX_SIZE_USER_TOKEN); - err = MVDCloudInterfaceResetCloudDevInfo(inContext, devDefaultResetData); - if(kNoErr == err){ - mvd_log("[MVD]Device reset EasyCloud info [OK]"); - } - else{ - mvd_log("[MVD]Device EasyCloud info [FAILED]"); - } - - retry_cnt--; - }while((kNoErr != err) && (retry_cnt > 0)); - - return err; -} - -void MVDDevCloudInfoResetThread(void *arg) -{ - OSStatus err = kUnknownErr; - mico_Context_t *inContext = (mico_Context_t *)arg; - - // stop EasyCloud service first - err = MVDCloudInterfaceStop(inContext); - require_noerr_action( err, exit, mvd_log("ERROR: stop EasyCloud service failed!") ); - - // cloud reset request - MVDDevInterfaceSend(DEFAULT_MVD_RESET_CLOUD_INFO_START_MSG_2MCU, - strlen(DEFAULT_MVD_RESET_CLOUD_INFO_START_MSG_2MCU)); - err = easycloud_reset_cloud_info(inContext); - if(kNoErr == err){ - inContext->appStatus.virtualDevStatus.isCloudConnected = false; - - mico_rtos_lock_mutex(&inContext->flashContentInRam_mutex); - inContext->flashContentInRam.appConfig.virtualDevConfig.isActivated = false; - MICOUpdateConfiguration(inContext); - mico_rtos_unlock_mutex(&inContext->flashContentInRam_mutex); - - //mvd_log("[MVD]MVDDevCloudInfoResetThread: cloud reset success!"); - MVDDevInterfaceSend(DEFAULT_MVD_RESET_CLOUD_INFO_OK_MSG_2MCU, - strlen(DEFAULT_MVD_RESET_CLOUD_INFO_OK_MSG_2MCU)); - - // send ok semaphore - mico_rtos_set_semaphore(&_reset_cloud_info_sem); - } - -exit: - if(kNoErr != err){ - mvd_log("[MVD]MVDDevCloudInfoResetThread EXIT: err=%d",err); - MVDDevInterfaceSend(DEFAULT_MVD_RESET_CLOUD_INFO_FAILED_MSG_2MCU, - strlen(DEFAULT_MVD_RESET_CLOUD_INFO_FAILED_MSG_2MCU)); - } - mico_rtos_delete_thread(NULL); - return; -} - /******************************************************************************* * virtual device interfaces init @@ -314,12 +339,12 @@ void MVDDevCloudInfoResetThread(void *arg) // reset default value void MVDRestoreDefault(mico_Context_t* const context) { - // start a thread to reset device info on EasyCloud - mico_rtos_init_semaphore(&_reset_cloud_info_sem, 1); - mico_rtos_create_thread(NULL, MICO_APPLICATION_PRIORITY, "MVD resetCloudInfo", - MVDDevCloudInfoResetThread, 0x800, - context ); - mico_rtos_get_semaphore(&_reset_cloud_info_sem, 5000); // 5s timeout + bool need_reset = false; + + // save reset flag + if(context->flashContentInRam.appConfig.virtualDevConfig.isActivated){ + need_reset = true; + } // reset all MVD config params memset((void*)&(context->flashContentInRam.appConfig.virtualDevConfig), @@ -335,6 +360,15 @@ void MVDRestoreDefault(mico_Context_t* const context) sprintf(context->flashContentInRam.appConfig.virtualDevConfig.loginId, DEFAULT_LOGIN_ID); sprintf(context->flashContentInRam.appConfig.virtualDevConfig.devPasswd, DEFAULT_DEV_PASSWD); //sprintf(context->flashContentInRam.appConfig.virtualDevConfig.userToken, context->micoStatus.mac); + + // set reset flag for next startup + if(need_reset){ + context->flashContentInRam.appConfig.virtualDevConfig.needCloudReset = true; + context->flashContentInRam.appConfig.virtualDevConfig.isActivated = true; + } + else{ + context->flashContentInRam.appConfig.virtualDevConfig.needCloudReset = false; + } } OSStatus MVDInit(mico_Context_t* const inContext) diff --git a/Demos/COM.WECHAT.SPP/MicoVirtualDeviceDef.h b/Demos/COM.WECHAT.SPP/MicoVirtualDeviceDef.h index bda81e50..cbb3e3f9 100644 --- a/Demos/COM.WECHAT.SPP/MicoVirtualDeviceDef.h +++ b/Demos/COM.WECHAT.SPP/MicoVirtualDeviceDef.h @@ -63,6 +63,9 @@ typedef struct _virtual_device_config_t char loginId[MAX_SIZE_LOGIN_ID]; // not used for wechat dev char devPasswd[MAX_SIZE_DEV_PASSWD]; // not used for wechat dev //char userToken[MAX_SIZE_USER_TOKEN]; // use MAC addr instead + + /* reset flag */ + bool needCloudReset; // need reset cloud when set } virtual_device_config_t; /* device status */ diff --git a/Library/RF driver/MARVELL_sd8801_P34.bin b/Library/RF driver/MARVELL_sd8801_P34.bin new file mode 100644 index 00000000..62facb59 Binary files /dev/null and b/Library/RF driver/MARVELL_sd8801_P34.bin differ diff --git a/Library/mxchipWNet_cm4f_8801.a b/Library/mxchipWNet_cm4f_8801.a new file mode 100644 index 00000000..f84d3cf8 Binary files /dev/null and b/Library/mxchipWNet_cm4f_8801.a differ diff --git a/MICO/MICOEntrance.c b/MICO/MICOEntrance.c index 0eb75339..b2c79e9f 100644 --- a/MICO/MICOEntrance.c +++ b/MICO/MICOEntrance.c @@ -426,8 +426,8 @@ int application_start(void) require_noerr_action( err, exit, mico_log("ERROR: Unable to start the local server thread.") ); } - err = MICOStartNTPClient(context); - require_noerr_action( err, exit, mico_log("ERROR: Unable to start the NTP client thread.") ); + //err = MICOStartNTPClient(context); + //require_noerr_action( err, exit, mico_log("ERROR: Unable to start the NTP client thread.") ); /*Start mico application*/ err = MICOStartApplication( context ); diff --git a/Platform/Common/Cortex-M4/STM32F4xx/EMW1088_Driver/read_wifi_firmware.c b/Platform/Common/Cortex-M4/STM32F4xx/EMW1088_Driver/read_wifi_firmware.c new file mode 100644 index 00000000..154fbd60 --- /dev/null +++ b/Platform/Common/Cortex-M4/STM32F4xx/EMW1088_Driver/read_wifi_firmware.c @@ -0,0 +1,26356 @@ +/** +****************************************************************************** +* @file read_wifi_firmware.h +* @author William Xu +* @version V1.0.0 +* @date 05-May-2014 +* @brief This file provides function called by MICO when reading RF chip's +* firmware. +****************************************************************************** +* +* The MIT License +* Copyright (c) 2014 MXCHIP Inc. +* +* Permission is hereby granted, free of charge, to any person obtaining a copy +* of this software and associated documentation files (the "Software"), to deal +* in the Software without restriction, including without limitation the rights +* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +* copies of the Software, and to permit persons to whom the Software is furnished +* to do so, subject to the following conditions: +* +* The above copyright notice and this permission notice shall be included in +* all copies or substantial portions of the Software. +* +* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +* IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +****************************************************************************** +*/ + +#include "Common.h" +#include "MicoPlatform.h" +#include "platform_common_config.h" + +#ifndef MICO_FLASH_FOR_DRIVER +#if CONFIG_XZ_DECOMPRESSION +const unsigned char wifi_firmware_image[] = { +0x57, 0x4c, 0x46, 0x57, 0x20, 0x98, 0x02, 0x00, +0xfd, 0x37, 0x7a, 0x58, 0x5a, 0x00, 0x00, 0x01, +0x69, 0x22, 0xde, 0x36, 0x02, 0x00, 0x21, 0x01, 0x04, 0x00, 0x00, 0x00, 0x60, 0xb0, 0xf5, 0x59, +0xe1, 0x59, 0xf6, 0xef, 0xfe, 0x5d, 0x00, 0x00, 0x80, 0x3d, 0xfa, 0xfd, 0xa2, 0xb3, 0x6c, 0x6e, +0x0d, 0xbe, 0xa0, 0x6d, 0xc3, 0xcb, 0xb7, 0x9e, 0x11, 0x3e, 0xd7, 0xd3, 0x1b, 0x8e, 0x9a, 0x25, +0xed, 0xeb, 0x55, 0x1d, 0x91, 0x76, 0x56, 0xc9, 0xe4, 0x6f, 0xdc, 0xe8, 0x7b, 0x2d, 0x19, 0x85, +0x34, 0xdc, 0x90, 0xb4, 0x2c, 0xbe, 0xe7, 0xa8, 0xc9, 0x1f, 0x29, 0x93, 0x36, 0x0f, 0xe7, 0xfe, +0x4e, 0x17, 0x29, 0x4a, 0x37, 0xc8, 0x61, 0x95, 0x85, 0x39, 0xdc, 0x18, 0xcb, 0x94, 0x26, 0x13, +0x20, 0x1c, 0x76, 0xdf, 0x58, 0xe7, 0x0a, 0x99, 0x54, 0xd5, 0xd3, 0x56, 0x86, 0x26, 0xd3, 0x3b, +0x59, 0x14, 0xc0, 0x46, 0xd9, 0x51, 0x25, 0xbc, 0x15, 0x8c, 0x5f, 0x95, 0x6f, 0xee, 0x8e, 0x1f, +0x84, 0x67, 0x6b, 0x32, 0xbe, 0x28, 0x4a, 0x06, 0xdd, 0xce, 0x14, 0x7d, 0xc5, 0x4f, 0x5e, 0x78, +0x8d, 0xf3, 0x2e, 0x04, 0x35, 0xde, 0xbf, 0xf2, 0xec, 0xab, 0xc4, 0xae, 0x4e, 0xfa, 0x92, 0xd4, +0x88, 0x55, 0xd2, 0x7a, 0xb7, 0x65, 0xc5, 0x1f, 0x58, 0xc6, 0xbb, 0x65, 0x24, 0xae, 0xb8, 0xcb, +0x54, 0x67, 0x78, 0xa4, 0x6a, 0x4e, 0x6c, 0x14, 0x19, 0x29, 0x5d, 0x29, 0x9b, 0xbc, 0xbd, 0x87, +0x63, 0x80, 0x4b, 0x28, 0x52, 0x50, 0xe8, 0x7b, 0x46, 0xde, 0xb7, 0x58, 0xd0, 0xb2, 0xa0, 0xf4, +0xb1, 0xcc, 0xf8, 0xcf, 0xf2, 0x16, 0x50, 0xc8, 0x9e, 0xba, 0xf2, 0x72, 0x28, 0xf5, 0xa5, 0xdb, +0x4e, 0x69, 0x4f, 0xa7, 0x18, 0xb2, 0x0b, 0xbb, 0x53, 0xb3, 0xae, 0x04, 0x0b, 0xa0, 0x3c, 0x42, +0xdc, 0x4e, 0x23, 0x78, 0x83, 0x04, 0x36, 0xe5, 0x1a, 0xd0, 0x58, 0x08, 0xaf, 0xe4, 0x48, 0xfc, +0x72, 0x4e, 0x86, 0x45, 0x41, 0xa5, 0x91, 0x8b, 0x33, 0x79, 0xcf, 0x19, 0xcd, 0x09, 0xa6, 0x15, +0xc7, 0x98, 0xb1, 0x4d, 0xdc, 0xf6, 0x33, 0xe7, 0x37, 0xfb, 0x11, 0xb3, 0xa8, 0x01, 0x89, 0xe3, +0x3b, 0x08, 0x72, 0xbb, 0xa0, 0x4a, 0x4d, 0xf9, 0x9a, 0xe8, 0x86, 0x32, 0xb7, 0x00, 0x46, 0x4d, +0x33, 0x3c, 0xd6, 0x24, 0x3c, 0xb0, 0xde, 0x5f, 0xee, 0x1d, 0xbd, 0x89, 0x42, 0x63, 0xd1, 0x37, +0x1d, 0xe5, 0xd5, 0x15, 0xe0, 0xb0, 0x57, 0x1f, 0x58, 0xb4, 0x81, 0xe1, 0x7d, 0xaf, 0xf9, 0x50, +0xf3, 0xee, 0x1b, 0xe1, 0x00, 0xd9, 0x3f, 0x5d, 0xdc, 0xb7, 0x13, 0x5d, 0x39, 0xac, 0xbb, 0x0d, +0x0f, 0x9c, 0xef, 0x8c, 0x73, 0x80, 0x7e, 0x88, 0xc5, 0x73, 0x7d, 0xf8, 0x4f, 0x39, 0x04, 0x49, +0x49, 0x5f, 0x51, 0x4e, 0x97, 0xd2, 0x45, 0x81, 0xca, 0x07, 0x00, 0x72, 0xae, 0x7d, 0xd9, 0x9c, +0xfe, 0xa6, 0x2a, 0xed, 0xfd, 0x8f, 0x1d, 0x8f, 0x31, 0x71, 0xf9, 0xda, 0x8d, 0x84, 0x59, 0xa1, +0x7b, 0xa7, 0xda, 0x50, 0x6e, 0x81, 0x60, 0x54, 0xdd, 0x06, 0x51, 0x7d, 0x37, 0x65, 0x3e, 0xc9, +0xf1, 0x62, 0xcf, 0xca, 0x3d, 0x4e, 0xae, 0x2f, 0xcf, 0x9c, 0xcd, 0x6e, 0x0f, 0xcd, 0x22, 0xbf, +0xdf, 0x6a, 0x3f, 0xa2, 0x33, 0xb8, 0x9d, 0xb9, 0xb9, 0xa5, 0x9a, 0xcd, 0x41, 0x74, 0x6a, 0x68, +0x4e, 0xfa, 0x35, 0x5f, 0xbe, 0x83, 0xcc, 0xfa, 0xda, 0xc0, 0xdd, 0x3f, 0x6d, 0xe0, 0xb3, 0xb5, +0x0f, 0x7a, 0xd6, 0xc9, 0x03, 0x0d, 0x35, 0xc9, 0x39, 0xa0, 0x48, 0xe3, 0xef, 0xcf, 0xc0, 0xd0, +0x7c, 0xad, 0xd2, 0x0b, 0x0f, 0x28, 0xc7, 0x56, 0x8f, 0xb7, 0x73, 0x71, 0xa4, 0x9c, 0x70, 0x6e, +0xae, 0x8d, 0x8e, 0xe7, 0xc6, 0xb2, 0xec, 0x2e, 0xd8, 0xb1, 0x56, 0x60, 0x75, 0xea, 0x81, 0xb1, +0x0f, 0x03, 0x40, 0x0f, 0x87, 0x32, 0x37, 0x51, 0xfc, 0xa9, 0x8b, 0x7e, 0x53, 0x20, 0x8d, 0x16, +0x17, 0x1e, 0xf1, 0xf4, 0x65, 0x9d, 0xc4, 0x9f, 0xf8, 0xe6, 0x60, 0xa4, 0xdf, 0x1b, 0xdc, 0xee, +0x23, 0xcf, 0x1a, 0x7b, 0xb9, 0xa5, 0x98, 0xf2, 0x80, 0x6f, 0x93, 0x8c, 0x0a, 0x83, 0xa6, 0x34, +0x7b, 0xc1, 0xd5, 0x1a, 0xe6, 0x7c, 0xa1, 0x14, 0x4c, 0x51, 0xfb, 0xd7, 0x11, 0x34, 0x6d, 0x31, +0x33, 0xb8, 0xc9, 0x36, 0x89, 0x27, 0x48, 0x0c, 0x9d, 0x54, 0xb4, 0x0f, 0x3d, 0x0b, 0xc5, 0x50, +0x4c, 0xb4, 0x36, 0x41, 0xc6, 0x40, 0x91, 0xc3, 0x2b, 0x5d, 0x28, 0x93, 0x4b, 0x32, 0x08, 0x2c, +0x0d, 0xad, 0x7c, 0xef, 0xd5, 0xbd, 0x86, 0xe9, 0x09, 0xee, 0x76, 0xaa, 0x45, 0x9b, 0x06, 0x6e, +0x42, 0x11, 0xbc, 0x51, 0xbc, 0x36, 0xb0, 0x79, 0xee, 0x46, 0x55, 0x94, 0x5b, 0x2c, 0xc7, 0xb5, +0x43, 0x77, 0x66, 0x47, 0xf9, 0x14, 0xfa, 0x7d, 0xbe, 0x5f, 0xdd, 0x4f, 0xa7, 0x6e, 0x1f, 0x93, +0xef, 0xa8, 0x39, 0x10, 0xde, 0xe1, 0x02, 0xb7, 0x9d, 0xd8, 0x90, 0x55, 0x24, 0xd6, 0x0b, 0xaf, +0x0c, 0x1c, 0x5b, 0x92, 0xb3, 0x82, 0xe3, 0xfe, 0x74, 0x0b, 0xb9, 0xd8, 0x76, 0x0f, 0x54, 0xcd, +0x42, 0xd5, 0xea, 0x9d, 0x5c, 0xcd, 0xa4, 0x54, 0x8d, 0xc1, 0x0a, 0xea, 0x20, 0x63, 0xd7, 0xdb, +0xea, 0xd1, 0x69, 0xc3, 0xae, 0x00, 0x72, 0x2a, 0xe1, 0xba, 0x62, 0xc6, 0x8c, 0xa8, 0x00, 0xf9, +0xda, 0x74, 0x49, 0xb5, 0xc6, 0x3b, 0xf9, 0xa6, 0x65, 0x77, 0x07, 0xf8, 0x25, 0x97, 0xe1, 0x5e, +0x60, 0x49, 0xb3, 0x99, 0xd7, 0x28, 0x5a, 0xf3, 0x8b, 0xf3, 0x53, 0x1b, 0xec, 0xf0, 0x76, 0x0d, +0xfa, 0xa7, 0x75, 0x93, 0x31, 0x3e, 0x49, 0xf1, 0x03, 0xc0, 0x2d, 0xfb, 0xa4, 0x13, 0x9a, 0x61, +0x60, 0x94, 0x3e, 0xd3, 0xc2, 0x41, 0xdd, 0x91, 0x74, 0xe3, 0x1e, 0xa2, 0x9b, 0x22, 0x03, 0x74, +0x2a, 0x70, 0x70, 0xfd, 0xcc, 0x91, 0x77, 0x93, 0x02, 0xeb, 0x01, 0x21, 0x87, 0x9a, 0x9b, 0x62, +0xf7, 0xf8, 0xe8, 0x78, 0x6e, 0x0a, 0xe3, 0x51, 0xee, 0x86, 0x6a, 0xd8, 0x1c, 0x7b, 0x78, 0x4b, +0x6d, 0x26, 0x6e, 0xc4, 0xf4, 0xd4, 0x6f, 0xe5, 0x2c, 0x12, 0xa8, 0x4a, 0x5b, 0x29, 0xde, 0x96, +0x37, 0xf3, 0x8f, 0x4c, 0xd0, 0x00, 0x95, 0xca, 0x95, 0xa4, 0xd7, 0xfc, 0xec, 0xa9, 0x12, 0x1f, +0xc4, 0xab, 0x83, 0x7b, 0x54, 0xd9, 0xc1, 0x9e, 0x10, 0xf2, 0xac, 0x6a, 0xba, 0x27, 0x4e, 0x67, +0x22, 0x0d, 0x12, 0x7b, 0x39, 0x83, 0x5c, 0x06, 0x5a, 0x47, 0x56, 0x33, 0x4a, 0xf4, 0x11, 0x13, +0x8b, 0xf9, 0xe9, 0x4e, 0x67, 0xe3, 0x86, 0x73, 0xcb, 0x20, 0xa1, 0xe3, 0x78, 0xce, 0x5a, 0x81, +0xa8, 0x0e, 0x86, 0xc7, 0x63, 0xbb, 0xf0, 0x01, 0x9d, 0xd3, 0x6c, 0xfa, 0xf7, 0xc5, 0x65, 0x9b, +0x4e, 0x5d, 0x42, 0x95, 0x8b, 0xba, 0xbc, 0x6a, 0x62, 0x13, 0x24, 0x70, 0xdc, 0xd4, 0x96, 0x34, +0xad, 0xf5, 0x00, 0xd6, 0xf4, 0x74, 0xe6, 0xa4, 0x6e, 0x36, 0x92, 0x2e, 0xfa, 0x4b, 0x9e, 0xa8, +0x54, 0x30, 0xb1, 0x39, 0xdf, 0x60, 0x0f, 0xf1, 0x9a, 0xc7, 0x5f, 0x1d, 0x47, 0x8f, 0x67, 0x79, +0x6d, 0x57, 0x81, 0x15, 0x26, 0x7a, 0xd5, 0xe2, 0x64, 0x50, 0x62, 0x25, 0x97, 0x46, 0x3b, 0xc9, +0x30, 0xa9, 0xee, 0xf6, 0x13, 0x1e, 0x32, 0x75, 0xce, 0xaf, 0xac, 0x1a, 0x82, 0x8a, 0xb0, 0xcb, +0xb1, 0x46, 0x7e, 0xd2, 0xff, 0xf6, 0xdf, 0x11, 0xee, 0x6b, 0xdf, 0x5e, 0xcd, 0xe6, 0xa8, 0x4a, +0x17, 0x49, 0x6f, 0x28, 0xa9, 0x78, 0x3c, 0x47, 0x0e, 0xb3, 0x15, 0xf0, 0x68, 0x42, 0xef, 0x58, +0x5d, 0xbd, 0x8c, 0x0b, 0x7c, 0x97, 0xe9, 0x68, 0x6f, 0x7f, 0xf2, 0xc4, 0x1f, 0x72, 0xf5, 0x6b, +0x38, 0x3e, 0xcf, 0xd4, 0x8f, 0x5a, 0x18, 0x21, 0x60, 0xeb, 0x65, 0xee, 0x3f, 0xc1, 0x18, 0x46, +0x5a, 0x55, 0xa5, 0xfb, 0xfa, 0x7f, 0x3b, 0x27, 0x1d, 0x63, 0x08, 0x9a, 0x6f, 0xd6, 0x80, 0x13, +0xab, 0x2e, 0x3f, 0xb1, 0xaa, 0x9b, 0x33, 0xbc, 0xcb, 0xb6, 0x85, 0xa4, 0xb8, 0x1b, 0x89, 0xe8, +0x82, 0x57, 0x44, 0x9f, 0x15, 0x7d, 0xd4, 0xb8, 0xe8, 0x4a, 0xfe, 0x56, 0x9b, 0x76, 0x0b, 0xf9, +0x43, 0x27, 0x82, 0x1c, 0x61, 0xe0, 0x99, 0x7c, 0xd5, 0xc3, 0x7b, 0xfc, 0x5a, 0xc6, 0x81, 0x23, +0x28, 0x7b, 0xa5, 0x21, 0x35, 0xd4, 0x3f, 0xbe, 0xed, 0xe7, 0xa6, 0x68, 0x78, 0x65, 0x16, 0xda, +0x5b, 0xac, 0xff, 0x80, 0xed, 0xec, 0x68, 0xc9, 0xcc, 0x14, 0x0b, 0x7a, 0xbb, 0x5b, 0xc5, 0xbf, +0xa7, 0xd4, 0xac, 0xca, 0x91, 0x15, 0xb2, 0x8b, 0x35, 0x33, 0xe7, 0x2c, 0xec, 0x4f, 0xde, 0x7f, +0xa2, 0x91, 0x01, 0xb6, 0xe4, 0x1a, 0xd9, 0x1f, 0x0c, 0x8c, 0xe6, 0xb3, 0xb2, 0x55, 0x3c, 0xbb, +0x75, 0xda, 0x79, 0xf1, 0x98, 0x34, 0x79, 0xc2, 0x72, 0x8f, 0x8b, 0xeb, 0x4a, 0xcd, 0xd5, 0xbf, +0x68, 0x7e, 0x37, 0x15, 0x19, 0x8b, 0x36, 0xc3, 0xc4, 0x1c, 0xad, 0x6e, 0x68, 0xa5, 0xd0, 0x64, +0x82, 0xab, 0x3f, 0xa5, 0x15, 0x7d, 0x0c, 0x83, 0xe4, 0xca, 0xed, 0x1d, 0x51, 0x5a, 0x94, 0x38, +0x8a, 0xb9, 0x4b, 0x81, 0xc8, 0x47, 0x5d, 0x43, 0xc4, 0x55, 0x6c, 0xbf, 0x80, 0x88, 0x91, 0x61, +0xd3, 0x4e, 0x33, 0xe2, 0x42, 0x85, 0x38, 0xbe, 0x05, 0x0f, 0x24, 0x23, 0x9a, 0x1c, 0xa4, 0x88, +0x15, 0x4d, 0x9c, 0x25, 0x5d, 0x06, 0x57, 0xc9, 0x70, 0x4f, 0xa4, 0x40, 0x7a, 0x90, 0xb0, 0x65, +0xa4, 0x1f, 0xc5, 0x31, 0xa9, 0x6b, 0x5f, 0x34, 0x52, 0xa8, 0xeb, 0xff, 0x5f, 0x16, 0x43, 0x1b, +0x8b, 0x66, 0xb5, 0x1d, 0x86, 0x7b, 0xd7, 0xf0, 0x8e, 0x14, 0x29, 0xe9, 0xb6, 0x9e, 0xab, 0x8c, +0xf1, 0x89, 0x4c, 0x59, 0x43, 0x41, 0x19, 0x43, 0xd2, 0x5f, 0xa4, 0x5c, 0xc7, 0x9f, 0x7e, 0xc4, +0x22, 0x17, 0xee, 0x9a, 0xe5, 0x20, 0xe1, 0xe3, 0xe5, 0xe4, 0x81, 0x9f, 0x5a, 0xa4, 0xf4, 0xd7, +0x0f, 0x8d, 0x7f, 0x1d, 0x1d, 0x9d, 0x31, 0xa4, 0x69, 0xe3, 0xb8, 0x24, 0xf1, 0x95, 0x99, 0xc7, +0xf5, 0x29, 0xe0, 0x9d, 0x03, 0x20, 0x55, 0x1b, 0x85, 0x5a, 0xb4, 0x6d, 0x03, 0xa9, 0x5e, 0x9f, +0xff, 0x6b, 0x76, 0x49, 0xa9, 0x13, 0xb8, 0x3d, 0xa5, 0x3c, 0x6c, 0x28, 0x71, 0xed, 0xdd, 0x8a, +0x14, 0x6a, 0x1b, 0x2f, 0x59, 0x22, 0x5d, 0x95, 0x76, 0x2f, 0xde, 0xb0, 0x4a, 0x27, 0xa4, 0x2e, +0x64, 0x40, 0xc5, 0x16, 0x7d, 0x9c, 0xd3, 0x01, 0x54, 0x57, 0x87, 0xc8, 0xb6, 0xb3, 0x63, 0x84, +0xcb, 0xf2, 0xa4, 0x30, 0xcd, 0xd4, 0xbf, 0x5d, 0xbe, 0x98, 0x06, 0x9f, 0x45, 0xf4, 0xd0, 0x8b, +0xbe, 0x10, 0x6b, 0x48, 0xd0, 0x37, 0xca, 0x0d, 0x26, 0x3d, 0xac, 0x50, 0x41, 0x2e, 0xfb, 0x23, +0xde, 0xec, 0x7f, 0x33, 0x38, 0x28, 0xc5, 0xe1, 0x0a, 0xef, 0xfd, 0x90, 0x79, 0x25, 0xd3, 0xa5, +0x76, 0x35, 0xc2, 0x47, 0xf5, 0xf5, 0x4b, 0x6e, 0x52, 0xe0, 0xdf, 0x1f, 0xbb, 0xb4, 0xc6, 0x8e, +0x76, 0xbd, 0x2f, 0x8e, 0x44, 0xa3, 0x8c, 0xb3, 0x27, 0x99, 0xaf, 0xbf, 0xf9, 0xd7, 0xba, 0x29, +0x44, 0x50, 0x48, 0x89, 0x46, 0xb3, 0x6a, 0xa7, 0x23, 0x4b, 0xce, 0xc7, 0x9c, 0x58, 0x7f, 0x98, +0xe1, 0xdb, 0x01, 0x77, 0x05, 0x71, 0x97, 0x67, 0x92, 0x1e, 0x43, 0xaa, 0x75, 0x92, 0x89, 0x07, +0xcf, 0xac, 0x61, 0x21, 0x6d, 0x1a, 0xfe, 0x1a, 0x90, 0xba, 0x4e, 0x54, 0x06, 0xb2, 0x78, 0x19, +0xc2, 0x56, 0xef, 0xba, 0xc7, 0x0c, 0xa6, 0xa8, 0xa6, 0x10, 0x6b, 0x1c, 0xb3, 0x5d, 0xa4, 0x58, +0xf1, 0x16, 0xfa, 0x61, 0x43, 0x25, 0x9e, 0x91, 0x60, 0xb0, 0x58, 0x06, 0x02, 0xe8, 0x2e, 0xb4, +0xaa, 0x63, 0x94, 0x14, 0x4b, 0xe9, 0x98, 0x53, 0x78, 0x3c, 0x1d, 0x06, 0xbb, 0xed, 0x26, 0xb6, +0x2d, 0xdf, 0x49, 0x33, 0x93, 0xb4, 0x16, 0x73, 0x85, 0x66, 0xfc, 0x98, 0x4e, 0x74, 0xf7, 0xea, +0x8e, 0x22, 0xa0, 0x1d, 0x90, 0x51, 0x21, 0x9e, 0x0e, 0xd9, 0x62, 0xdb, 0xbb, 0xc3, 0x16, 0x2f, +0xb9, 0x95, 0xa9, 0xb2, 0xa9, 0xde, 0xe5, 0x19, 0x48, 0x24, 0x97, 0xfa, 0x9a, 0xde, 0x51, 0xb2, +0x16, 0x09, 0x94, 0x63, 0x26, 0xb0, 0x12, 0x7d, 0x19, 0xc7, 0x77, 0xf3, 0x7c, 0xe8, 0xdf, 0x7c, +0xa9, 0x13, 0x14, 0xf9, 0x2b, 0x0f, 0x6c, 0x74, 0xc8, 0x3a, 0xa6, 0x24, 0xeb, 0xbc, 0xa7, 0x51, +0x7e, 0x6f, 0xd9, 0x62, 0x34, 0xa4, 0x7e, 0xcd, 0xf0, 0x2f, 0xe2, 0x9c, 0x4e, 0x8e, 0x1a, 0x72, +0x82, 0x1a, 0xe2, 0x16, 0x52, 0x9f, 0x64, 0xbe, 0x52, 0xfb, 0xb6, 0x09, 0x57, 0x2b, 0x4c, 0xcb, +0x41, 0x06, 0x20, 0x3f, 0x0d, 0x34, 0xe8, 0xa8, 0x8b, 0x2d, 0x97, 0x2b, 0x12, 0xbe, 0x03, 0x76, +0x56, 0x14, 0x3c, 0x6b, 0xb9, 0x0d, 0xf4, 0x0e, 0x16, 0x1d, 0xc4, 0x2c, 0x38, 0xae, 0x18, 0x47, +0xde, 0xde, 0x3f, 0xe5, 0x09, 0xfb, 0x21, 0xe8, 0xb3, 0xb5, 0x3f, 0x82, 0x67, 0xdf, 0xf2, 0xba, +0x1a, 0x46, 0x1f, 0xa9, 0x9e, 0xc6, 0x5b, 0x9a, 0x91, 0x28, 0x91, 0xca, 0x1b, 0x71, 0x00, 0xb6, +0xcf, 0x33, 0xae, 0xc0, 0xb5, 0xf9, 0x17, 0x60, 0xd7, 0x4e, 0xe7, 0x23, 0x99, 0xec, 0x4f, 0x5e, +0xb4, 0x8b, 0x7c, 0xc3, 0x7e, 0xea, 0x07, 0x89, 0xac, 0x31, 0x51, 0xc8, 0xa2, 0x2b, 0x9e, 0xc0, +0x16, 0x54, 0xdc, 0xcb, 0x50, 0x36, 0xfa, 0x68, 0xb5, 0x61, 0xb4, 0x03, 0x9a, 0x8d, 0x0c, 0xf3, +0x2c, 0x00, 0xea, 0xdd, 0x39, 0xfc, 0x65, 0x12, 0x13, 0x3b, 0x1c, 0x13, 0xc6, 0x35, 0xd4, 0x65, +0x26, 0xd2, 0x32, 0x77, 0x04, 0x48, 0x22, 0xfb, 0x43, 0x81, 0xe5, 0xfe, 0xc3, 0xee, 0xeb, 0x61, +0x44, 0x78, 0x50, 0x69, 0xd3, 0x55, 0x36, 0x88, 0xdd, 0xcf, 0x86, 0x70, 0x29, 0x34, 0xae, 0x80, +0x7e, 0xab, 0x26, 0x96, 0x42, 0x4a, 0xd0, 0x51, 0x99, 0x09, 0xb5, 0x04, 0xcd, 0xb3, 0x72, 0x69, +0x84, 0x7a, 0x44, 0x11, 0x8a, 0x2e, 0x0e, 0x70, 0x6c, 0x6c, 0x70, 0xfe, 0x9a, 0xcc, 0x58, 0x7e, +0x48, 0xd7, 0x4d, 0x46, 0x04, 0x4a, 0x02, 0x83, 0x5f, 0x93, 0xed, 0x09, 0xfd, 0xdb, 0x2b, 0x6e, +0x6c, 0x2c, 0x6f, 0x5f, 0x82, 0x94, 0xce, 0x78, 0x72, 0xac, 0xa9, 0xb3, 0x3f, 0x52, 0xd6, 0x11, +0xf3, 0xc7, 0xfe, 0xdb, 0x0b, 0x2b, 0x0a, 0x65, 0x68, 0xa5, 0xbd, 0x5b, 0xab, 0xb6, 0x3c, 0x42, +0xee, 0xc9, 0xf6, 0x1d, 0x0e, 0x91, 0xbe, 0xec, 0xa7, 0x22, 0x77, 0x14, 0x7d, 0xde, 0x9c, 0x16, +0xee, 0x1d, 0x1a, 0x5f, 0x6f, 0xe7, 0x91, 0x3a, 0x68, 0xbf, 0x70, 0x6f, 0x28, 0xf7, 0x6a, 0x85, +0x6e, 0xcd, 0xa2, 0xd8, 0x24, 0x7e, 0x12, 0x08, 0x70, 0x2b, 0x54, 0x41, 0xb4, 0xfd, 0xac, 0x36, +0x5e, 0x2e, 0x0c, 0x43, 0x16, 0xa4, 0xdd, 0x4e, 0x21, 0x31, 0x9c, 0x2a, 0x4d, 0x5d, 0x2b, 0x4d, +0x9d, 0x5f, 0xa6, 0xf2, 0x8c, 0x5f, 0x5b, 0xbc, 0xb8, 0x27, 0x12, 0x4f, 0xd9, 0x77, 0x87, 0x1a, +0xa2, 0x4c, 0xbb, 0x81, 0x0f, 0x18, 0x43, 0x77, 0x6b, 0xf7, 0xb4, 0xa0, 0xbc, 0xbd, 0xec, 0x86, +0x76, 0xf9, 0xfc, 0x5c, 0xb8, 0x46, 0xcf, 0xee, 0x6d, 0x2d, 0xb8, 0xfb, 0xc1, 0x8f, 0x4c, 0x45, +0xbd, 0xe0, 0x31, 0x20, 0x96, 0x9b, 0x2d, 0x9f, 0x90, 0x85, 0xe9, 0xa3, 0x8f, 0xaf, 0x90, 0x1b, +0xed, 0x3f, 0xb8, 0x13, 0x38, 0xdd, 0xc3, 0x49, 0x5f, 0x3d, 0x62, 0xec, 0xb3, 0x47, 0x38, 0x2a, +0x20, 0xb2, 0xc0, 0xb5, 0x5a, 0xd7, 0xb1, 0x0a, 0x9d, 0x77, 0x33, 0x02, 0x82, 0x46, 0xb1, 0x98, +0x4b, 0x6f, 0xc4, 0xe4, 0x5d, 0x25, 0x49, 0xc1, 0xb7, 0x98, 0xf4, 0x77, 0x63, 0x9c, 0x4f, 0x39, +0x34, 0xe4, 0xe1, 0xb2, 0x92, 0x4a, 0x73, 0x7b, 0x0f, 0x5b, 0x6f, 0x0f, 0x3a, 0x9f, 0x05, 0x60, +0x25, 0x6d, 0x9e, 0x34, 0xad, 0xe6, 0xd9, 0x9b, 0x6e, 0x5c, 0x2f, 0x3c, 0x47, 0x25, 0x4d, 0xd7, +0xf4, 0x4b, 0xb1, 0x9c, 0x64, 0xc1, 0x6b, 0xf8, 0xef, 0x8e, 0x93, 0x24, 0x8d, 0xd8, 0xbf, 0xb7, +0xe4, 0x10, 0xb7, 0x16, 0xce, 0xa7, 0x29, 0x49, 0x1d, 0x38, 0x2b, 0xcf, 0xa8, 0x71, 0xa7, 0x96, +0x20, 0xf0, 0x5e, 0xa6, 0xe4, 0x95, 0xe6, 0x6a, 0x01, 0xcd, 0xc2, 0x0c, 0xa0, 0x41, 0xfa, 0x97, +0x72, 0x46, 0xc1, 0xe6, 0xa4, 0xde, 0x5c, 0xe9, 0xae, 0x30, 0xf1, 0x48, 0x0c, 0xad, 0x2f, 0xce, +0xb6, 0xa1, 0xcf, 0x97, 0xe0, 0xa1, 0x00, 0x6e, 0x68, 0x4a, 0xf3, 0x93, 0x79, 0xa4, 0x49, 0x7c, +0xb6, 0x97, 0xe5, 0x80, 0x66, 0xf5, 0xbe, 0x39, 0xe2, 0x5a, 0xec, 0x3b, 0xf3, 0xc0, 0xd8, 0xdd, +0xaa, 0xbc, 0x41, 0xe3, 0x11, 0xa7, 0xbd, 0xb4, 0xc6, 0xef, 0xfc, 0xf8, 0x7b, 0xc2, 0xb0, 0x11, +0x54, 0x98, 0x8d, 0x41, 0xfe, 0x9f, 0x6f, 0xf3, 0xed, 0xcc, 0x97, 0xa9, 0x61, 0x41, 0xd1, 0x90, +0xee, 0x23, 0x76, 0xb0, 0xd6, 0x12, 0x45, 0x5f, 0x04, 0xcb, 0x4a, 0x02, 0xd8, 0xdd, 0xbb, 0x63, +0xc5, 0x61, 0xae, 0x24, 0x29, 0x97, 0x96, 0x31, 0xf4, 0x08, 0x41, 0x17, 0xa7, 0x58, 0xe4, 0x00, +0x50, 0xa6, 0x77, 0x30, 0xc1, 0xc1, 0x31, 0x0a, 0xc6, 0xb8, 0x66, 0xe6, 0x15, 0x4d, 0xfe, 0xff, +0x8b, 0x6a, 0x88, 0x62, 0x28, 0x22, 0x66, 0x9f, 0x3b, 0xc7, 0xf6, 0x89, 0x52, 0x6f, 0x8e, 0xd7, +0x51, 0x65, 0x9b, 0x0c, 0x0f, 0xd9, 0xe6, 0x51, 0x46, 0xf0, 0x8e, 0xfc, 0x33, 0x5c, 0xcc, 0x62, +0x3f, 0xb8, 0xb8, 0x21, 0xfd, 0x00, 0x28, 0xab, 0x1e, 0x40, 0xa5, 0xb4, 0x9b, 0x97, 0x4c, 0xbc, +0xd6, 0x1a, 0xa5, 0x5b, 0x84, 0x9f, 0xa4, 0x22, 0xa5, 0x25, 0x3e, 0x75, 0x71, 0x5d, 0x6d, 0xd3, +0x8b, 0x04, 0x0b, 0x1b, 0x7b, 0xa2, 0xe3, 0xc2, 0xd8, 0xf7, 0x3f, 0x59, 0xc9, 0xa4, 0x84, 0x7e, +0x3a, 0xd1, 0xb7, 0x13, 0x31, 0x1e, 0x41, 0xa7, 0x9d, 0xa2, 0x5f, 0x23, 0x7c, 0xa9, 0xac, 0x64, +0x12, 0xfa, 0x3f, 0x00, 0x82, 0x12, 0x88, 0xed, 0xfa, 0x8d, 0xe5, 0xac, 0xdf, 0x77, 0x5d, 0x3b, +0xd0, 0x54, 0x94, 0x22, 0x1c, 0x25, 0x6f, 0x48, 0xb3, 0xfb, 0x06, 0x78, 0xbd, 0xa8, 0x84, 0x31, +0x6f, 0x6a, 0x1b, 0x5f, 0x0c, 0x6f, 0x00, 0x68, 0x0b, 0x2f, 0x7a, 0xad, 0x7d, 0xc6, 0xec, 0x95, +0x3e, 0x22, 0x82, 0xd2, 0xc5, 0xcf, 0x07, 0x13, 0x5a, 0xf0, 0x64, 0x0e, 0x07, 0x79, 0xba, 0xa4, +0x9e, 0x8f, 0x07, 0x7a, 0xa4, 0xcc, 0xbd, 0x0d, 0x25, 0x71, 0x24, 0xfb, 0x33, 0x86, 0x07, 0xa6, +0xec, 0xbf, 0xa8, 0xc9, 0x2a, 0x26, 0xfa, 0xd1, 0x0b, 0xb0, 0xa2, 0x99, 0x22, 0x7d, 0x0a, 0x94, +0x8b, 0xaa, 0x32, 0xe6, 0x24, 0x81, 0x04, 0xdc, 0xe6, 0xa6, 0x2e, 0xae, 0x1b, 0x9e, 0x34, 0x4d, +0x0b, 0x66, 0x39, 0xaa, 0xa4, 0x88, 0x29, 0x1a, 0xd3, 0x7d, 0xf9, 0xe2, 0x6a, 0x72, 0xfe, 0x1f, +0xf7, 0xce, 0x39, 0x3e, 0xd8, 0xf2, 0xc2, 0xe2, 0x27, 0xb2, 0x4d, 0x2a, 0x6e, 0x7e, 0x5d, 0x98, +0x12, 0xcf, 0xaf, 0x6c, 0x91, 0xf8, 0xb7, 0xf2, 0x95, 0xd7, 0x46, 0x9f, 0x31, 0x1c, 0xcc, 0x67, +0x0b, 0x0d, 0xe2, 0x4f, 0xeb, 0xc4, 0x45, 0x9d, 0x7a, 0xc3, 0xae, 0x58, 0xda, 0x34, 0x26, 0xe4, +0x7f, 0x2d, 0x2f, 0x61, 0x63, 0x04, 0xfe, 0xa2, 0x70, 0xad, 0x08, 0xf0, 0xab, 0x16, 0xfd, 0x28, +0x67, 0x32, 0xa2, 0xe7, 0xd7, 0x22, 0xbb, 0x8b, 0xb7, 0x6d, 0x2e, 0x24, 0x53, 0xa1, 0x95, 0xf3, +0x0f, 0xba, 0x4a, 0x5d, 0x96, 0xa5, 0xd7, 0x36, 0x03, 0xd2, 0x24, 0x3f, 0xef, 0xab, 0x4a, 0x94, +0x49, 0x77, 0x9c, 0xba, 0xca, 0xd6, 0xcc, 0x47, 0xc1, 0xe6, 0x0f, 0x81, 0x5f, 0x67, 0x11, 0x2b, +0x9a, 0x10, 0x5a, 0xd7, 0x8c, 0xc7, 0x97, 0x5f, 0x15, 0x88, 0x70, 0xe0, 0x9f, 0x60, 0xab, 0x1f, +0x7e, 0xf1, 0x12, 0xb5, 0x6c, 0x22, 0x31, 0xaf, 0x28, 0x76, 0xad, 0x6f, 0x2a, 0x58, 0xd3, 0x82, +0x2a, 0x95, 0xd4, 0x15, 0x0f, 0x77, 0x36, 0x44, 0xcf, 0x28, 0xf5, 0xe7, 0xfe, 0x9d, 0x44, 0x40, +0x96, 0xb8, 0x9a, 0xf6, 0xdf, 0x81, 0x87, 0x69, 0x7e, 0x9c, 0x47, 0x0c, 0x86, 0x6a, 0xc1, 0xdd, +0x6c, 0x85, 0x7d, 0x36, 0x0c, 0xed, 0x5a, 0x2e, 0xb8, 0xfa, 0x05, 0x76, 0x3a, 0x61, 0xbc, 0x99, +0xec, 0xbc, 0x85, 0x86, 0x6f, 0x24, 0x00, 0xc8, 0x28, 0xda, 0x72, 0x15, 0x03, 0x00, 0xe4, 0x60, +0x7c, 0xe4, 0xab, 0x4d, 0xd2, 0xac, 0xd9, 0x5e, 0x66, 0x97, 0x5a, 0xfe, 0xb6, 0x8b, 0x14, 0x5c, +0xfe, 0xca, 0x2b, 0x58, 0x7c, 0xeb, 0x0e, 0x05, 0x26, 0x2f, 0xd2, 0x92, 0xdf, 0x5b, 0x6e, 0xe9, +0x7a, 0xd3, 0x5a, 0x35, 0x89, 0xa5, 0xc9, 0xf6, 0x2a, 0xad, 0xaf, 0xe4, 0x5e, 0x2f, 0x71, 0x5c, +0x3d, 0x1f, 0x2b, 0x97, 0x3d, 0x77, 0x8c, 0xb1, 0x60, 0x05, 0xc7, 0xe6, 0xe6, 0x65, 0x88, 0x6a, +0xe6, 0x4a, 0x89, 0x2b, 0x69, 0xac, 0x10, 0x2b, 0x0d, 0x40, 0x96, 0xb0, 0xcc, 0x42, 0xd1, 0x73, +0x85, 0x4d, 0xb4, 0xc4, 0x58, 0x32, 0x79, 0xaa, 0xb2, 0x46, 0xa3, 0x43, 0x3b, 0xba, 0xba, 0xfd, +0x8a, 0x86, 0x29, 0x88, 0x4e, 0x89, 0xa2, 0x5d, 0xde, 0xf9, 0x89, 0x6f, 0x4b, 0x69, 0x46, 0x89, +0xbe, 0xad, 0xcf, 0x12, 0x3e, 0xe2, 0xa0, 0xb5, 0x0c, 0xa2, 0xdf, 0x65, 0x05, 0xe0, 0x86, 0x10, +0x5d, 0xcb, 0xf4, 0xa9, 0xe5, 0x67, 0x84, 0xe2, 0x74, 0x2d, 0x52, 0x16, 0x7b, 0x71, 0xec, 0x44, +0x82, 0x49, 0xc7, 0x63, 0x39, 0x1d, 0xa5, 0xd7, 0x18, 0xb9, 0x62, 0xd9, 0x06, 0xcd, 0xda, 0x65, +0xba, 0x94, 0xe0, 0x37, 0x22, 0x8a, 0x88, 0x62, 0x97, 0x2c, 0x3d, 0x61, 0x96, 0x9d, 0x5a, 0x9c, +0xb3, 0x8d, 0xa0, 0xcb, 0xe3, 0xc3, 0xfb, 0x4c, 0x75, 0xdc, 0x58, 0xd6, 0xba, 0x1b, 0x99, 0x40, +0xf7, 0xdd, 0x86, 0x19, 0x2e, 0xf1, 0x3c, 0xf9, 0x11, 0xb0, 0xef, 0x79, 0xee, 0x24, 0x3b, 0xb8, +0xaf, 0xab, 0x22, 0x1b, 0xf4, 0x1b, 0x55, 0x3e, 0x7a, 0x25, 0x83, 0xd1, 0xb0, 0x88, 0x4e, 0x50, +0xe1, 0x04, 0x33, 0x67, 0x83, 0xda, 0xbe, 0xcf, 0x0d, 0x87, 0x9c, 0x91, 0x57, 0x14, 0x8f, 0x64, +0x03, 0x61, 0x29, 0xe2, 0xf0, 0xf5, 0xbb, 0xaf, 0x0e, 0xf0, 0x40, 0x1d, 0x0f, 0xa8, 0x72, 0xa6, +0x65, 0x27, 0xa5, 0x7b, 0x65, 0x31, 0x25, 0xa2, 0x3d, 0x7b, 0xb6, 0x4a, 0xda, 0x0f, 0x6f, 0xbf, +0x95, 0x7c, 0xd4, 0xbb, 0xe6, 0x1e, 0x49, 0xd0, 0x66, 0xa4, 0xa9, 0x14, 0x6e, 0x7a, 0xcc, 0xf8, +0x59, 0x9b, 0x74, 0x8e, 0x66, 0x54, 0xe8, 0x24, 0x62, 0xb5, 0x94, 0x60, 0x07, 0x7d, 0xa5, 0x7d, +0x55, 0xf0, 0x3f, 0x30, 0x4f, 0x40, 0x2a, 0x8b, 0x4e, 0xdb, 0xea, 0x37, 0x49, 0x79, 0xe2, 0x0e, +0x75, 0xc7, 0x73, 0xff, 0xec, 0xeb, 0xad, 0x0c, 0xec, 0xdf, 0xb5, 0x6b, 0x09, 0x42, 0xb4, 0x59, +0xe9, 0xf7, 0xe1, 0x90, 0xf0, 0xc8, 0xb6, 0x2c, 0x9e, 0x6c, 0x26, 0xa3, 0x8c, 0x91, 0x94, 0xfd, +0xcf, 0x4b, 0x52, 0x76, 0x64, 0xb2, 0x88, 0xa7, 0x44, 0x11, 0x28, 0x4e, 0x62, 0xda, 0x79, 0x33, +0x7b, 0xb7, 0x04, 0xaf, 0x4b, 0x48, 0xe5, 0x4c, 0x08, 0x0b, 0xac, 0x2a, 0x9d, 0x55, 0x22, 0xb8, +0x58, 0xb2, 0x85, 0xcb, 0xe2, 0x7d, 0x21, 0x76, 0xf2, 0x87, 0x92, 0xa0, 0xee, 0x41, 0x53, 0xcb, +0x2a, 0x72, 0x09, 0x3a, 0x05, 0x1a, 0xc6, 0x8a, 0xee, 0x64, 0x2a, 0x98, 0x14, 0xe6, 0x27, 0xce, +0x25, 0xdf, 0xed, 0xb0, 0x8e, 0x51, 0xe9, 0xdf, 0x58, 0xe2, 0x93, 0xff, 0xbd, 0x19, 0xb8, 0x4a, +0xa8, 0x4c, 0x30, 0x20, 0xa7, 0xd3, 0x86, 0xc2, 0x04, 0xe6, 0x14, 0x6f, 0xb9, 0xb0, 0x39, 0xdc, +0x30, 0x32, 0x59, 0x37, 0xcf, 0x57, 0x08, 0x6f, 0x84, 0x22, 0x0a, 0x9c, 0xcf, 0xdf, 0x59, 0xa8, +0xcf, 0x50, 0xf4, 0x74, 0x97, 0xe9, 0x64, 0x63, 0x65, 0x81, 0x58, 0x5f, 0xf3, 0x34, 0x8b, 0x2c, +0x97, 0x18, 0x37, 0x7c, 0xba, 0x43, 0xe6, 0x35, 0xe7, 0xe0, 0x0d, 0xc8, 0x62, 0x75, 0xc2, 0x6f, +0xea, 0x43, 0xc5, 0x95, 0xae, 0xbb, 0x34, 0x47, 0x77, 0x0f, 0xd4, 0xd3, 0x08, 0x45, 0xda, 0x4d, +0x14, 0xc4, 0xcd, 0x52, 0x5c, 0x06, 0x9a, 0x9c, 0x35, 0x97, 0x4d, 0xe4, 0xb8, 0xbf, 0x28, 0x47, +0xd0, 0x35, 0xc2, 0x66, 0x3a, 0x3a, 0x2d, 0x1b, 0x40, 0x2f, 0xf9, 0xc3, 0x18, 0x6a, 0x3f, 0xae, +0xf1, 0x8d, 0xd6, 0x82, 0x2f, 0x20, 0x78, 0x56, 0xee, 0xac, 0x87, 0xe1, 0x15, 0xec, 0xf1, 0xcc, +0x38, 0x78, 0x5e, 0x24, 0x62, 0x53, 0xdd, 0x4a, 0x64, 0x60, 0xe1, 0xf5, 0xa3, 0x35, 0xbf, 0xf3, +0x0c, 0x47, 0x8f, 0x82, 0x30, 0xdf, 0xa0, 0xe5, 0xbe, 0x92, 0x11, 0xba, 0xff, 0xb6, 0x9e, 0x25, +0xec, 0x39, 0x6a, 0x55, 0x06, 0x84, 0xd4, 0xd3, 0x6a, 0x04, 0x33, 0x40, 0x42, 0x66, 0xc8, 0x72, +0x39, 0xd8, 0x2a, 0x9d, 0x77, 0xf4, 0x5b, 0x6c, 0xb4, 0x3c, 0x70, 0xf1, 0x90, 0xf9, 0x32, 0x9e, +0xc5, 0x28, 0x61, 0x55, 0x27, 0x50, 0x81, 0xdc, 0x30, 0x40, 0xff, 0xc7, 0xa3, 0xdd, 0x96, 0xc6, +0xe5, 0xeb, 0x5f, 0x7f, 0x0b, 0xba, 0xd1, 0xec, 0xd7, 0x06, 0xe9, 0x8a, 0x16, 0x90, 0xe7, 0x45, +0xcd, 0x0c, 0x2a, 0x84, 0x3f, 0xe0, 0x83, 0xe1, 0x7d, 0x9c, 0x79, 0x32, 0x71, 0x4d, 0x50, 0xbd, +0x7e, 0xe0, 0x99, 0xc1, 0x73, 0x39, 0xba, 0x52, 0x5d, 0xc7, 0xa0, 0x67, 0x15, 0xf5, 0x5f, 0x95, +0xa8, 0x81, 0xcb, 0x8a, 0x70, 0x6b, 0x3f, 0xbc, 0xe7, 0xb7, 0xcd, 0x04, 0xb0, 0xc0, 0xe3, 0xef, +0xe8, 0xcd, 0xf9, 0xdf, 0x86, 0x11, 0xca, 0xbb, 0xe8, 0xe2, 0x41, 0xf1, 0xbf, 0x12, 0xd0, 0xdb, +0x90, 0xe0, 0x51, 0xae, 0x6c, 0xe0, 0x86, 0xb1, 0x04, 0xe0, 0x98, 0x36, 0x89, 0xea, 0xb7, 0x8f, +0x9e, 0xc7, 0x92, 0x90, 0x95, 0xcf, 0x78, 0xe9, 0x1a, 0xa5, 0x21, 0x85, 0x79, 0xa7, 0x90, 0xf4, +0xf1, 0x1a, 0xed, 0x7c, 0xea, 0x45, 0xc4, 0x6f, 0x73, 0x7a, 0xdf, 0x6e, 0xa7, 0x99, 0x8e, 0x78, +0xa9, 0xc5, 0xc2, 0x05, 0x4f, 0x1a, 0xdc, 0xa1, 0xed, 0xe5, 0x1e, 0x43, 0xa2, 0xd8, 0x7b, 0x9b, +0xd3, 0x77, 0x15, 0x91, 0xa7, 0x31, 0xb2, 0x93, 0xfe, 0x00, 0xda, 0x3b, 0xf6, 0xd0, 0x0e, 0x8b, +0x89, 0x3a, 0xc7, 0x23, 0x0e, 0x7f, 0xef, 0x02, 0x24, 0x68, 0x35, 0x7f, 0xa8, 0xe6, 0x17, 0x5b, +0xd2, 0xda, 0x6d, 0xa7, 0x93, 0x84, 0xf3, 0xa5, 0x5a, 0x5c, 0x31, 0x02, 0x32, 0x83, 0x6d, 0x04, +0x8b, 0x2e, 0xb0, 0xb3, 0x9c, 0xa1, 0x14, 0xbf, 0xff, 0x90, 0x0e, 0xb7, 0x1e, 0xfa, 0x51, 0x2d, +0xa6, 0x82, 0xc3, 0xad, 0x92, 0x8e, 0xa4, 0x5b, 0xe8, 0x5f, 0x38, 0x0b, 0xf7, 0xcb, 0x55, 0x8f, +0xf6, 0xae, 0x8a, 0x3b, 0x51, 0xbe, 0x12, 0x1d, 0xf4, 0xfa, 0x16, 0xa2, 0xf6, 0xd5, 0xaf, 0xa1, +0xf2, 0x19, 0x5d, 0x7d, 0xe4, 0x73, 0x37, 0x8a, 0x2b, 0xa1, 0x95, 0xda, 0xf7, 0xc1, 0x51, 0xd1, +0x4d, 0xf5, 0x1c, 0x01, 0x58, 0xe3, 0xa0, 0xa8, 0xc3, 0x6a, 0xb4, 0x67, 0x18, 0x81, 0x81, 0xe8, +0xc6, 0x99, 0xf3, 0xc9, 0xa3, 0x03, 0xd2, 0x8a, 0x68, 0xf4, 0xc1, 0xee, 0x09, 0xcf, 0xfe, 0x76, +0x74, 0x23, 0x30, 0x08, 0x00, 0x4f, 0xdb, 0x17, 0x44, 0xec, 0x04, 0xc9, 0x75, 0xfd, 0x39, 0xfa, +0x71, 0x1f, 0x73, 0x6a, 0x8e, 0xac, 0x2a, 0x3e, 0x09, 0xf3, 0x33, 0x3f, 0xd4, 0xb3, 0xd3, 0xcd, +0x25, 0x95, 0x18, 0xf6, 0x6d, 0x7d, 0x7b, 0x6c, 0xc6, 0x91, 0xe4, 0x46, 0x95, 0xd6, 0x36, 0xcd, +0xe4, 0x01, 0x52, 0x41, 0x1c, 0x44, 0x98, 0x7d, 0x96, 0x8c, 0xe2, 0xcd, 0x5a, 0x66, 0x6e, 0xd2, +0xaa, 0x91, 0x41, 0xbc, 0x95, 0xc3, 0x5c, 0xf2, 0x0d, 0xf5, 0xdc, 0x4b, 0x57, 0xe1, 0x47, 0xeb, +0x63, 0x1c, 0xb0, 0x7d, 0xd4, 0xd2, 0xe8, 0x5a, 0x35, 0x33, 0xbf, 0x6a, 0x47, 0x48, 0xbc, 0xb0, +0x5f, 0x76, 0x5f, 0x2a, 0x00, 0x01, 0x1e, 0xd1, 0x85, 0x22, 0xed, 0x33, 0x1f, 0x43, 0xee, 0x08, +0x88, 0x24, 0xb7, 0xe1, 0x43, 0x63, 0x4e, 0x24, 0xf8, 0xb4, 0x92, 0x9b, 0xc2, 0x37, 0xa8, 0xd3, +0x89, 0xe8, 0x99, 0xc0, 0x5a, 0x87, 0xf4, 0x12, 0x02, 0x7e, 0xdc, 0xe9, 0x7d, 0x12, 0xe3, 0x45, +0x2d, 0xfd, 0xf4, 0x7f, 0xba, 0x11, 0xe4, 0x42, 0x00, 0x22, 0xf6, 0x91, 0x6a, 0x41, 0x9d, 0xbc, +0x52, 0x60, 0x08, 0xaf, 0x3b, 0x6c, 0x7e, 0xce, 0x13, 0xed, 0x74, 0xde, 0x0c, 0x26, 0xc3, 0x1c, +0xc2, 0xab, 0x56, 0x70, 0x04, 0xb9, 0x2c, 0x20, 0xd2, 0xc4, 0xed, 0xb2, 0xb3, 0xa2, 0x25, 0x54, +0xa5, 0xb2, 0x6a, 0xfe, 0xa3, 0xde, 0xe9, 0x27, 0x3a, 0xf5, 0x7d, 0x6e, 0xc3, 0x7f, 0x73, 0xa5, +0x9f, 0x46, 0x27, 0x53, 0x41, 0x7f, 0xe2, 0x2d, 0x1c, 0x70, 0x1f, 0x5e, 0x57, 0xcb, 0xf9, 0xb5, +0x53, 0x5b, 0xe5, 0x66, 0xa0, 0x20, 0x8f, 0x2b, 0x2f, 0x16, 0x15, 0x82, 0xdc, 0xfb, 0x3f, 0x3c, +0x26, 0x94, 0x91, 0xea, 0xaa, 0xc4, 0x26, 0xb3, 0x7c, 0xd2, 0x44, 0x37, 0x67, 0xe9, 0x7a, 0x5a, +0x43, 0x07, 0x21, 0x83, 0x61, 0x80, 0x11, 0xb7, 0xc2, 0x13, 0x6d, 0x00, 0xfe, 0xb2, 0xed, 0x9e, +0x4e, 0x42, 0x2b, 0xe1, 0x57, 0xfd, 0x61, 0x9c, 0x28, 0x69, 0xfa, 0x98, 0x97, 0xdc, 0x70, 0x21, +0x7e, 0x49, 0x8c, 0x29, 0x13, 0xf3, 0x71, 0x7b, 0x57, 0x33, 0x4f, 0xbe, 0x9e, 0x87, 0xab, 0x6e, +0x21, 0x13, 0x1a, 0xd6, 0x54, 0xfe, 0x48, 0xa3, 0xff, 0x9c, 0x0e, 0xa0, 0x38, 0x0b, 0x28, 0x3b, +0x05, 0x8c, 0x35, 0x58, 0x40, 0x05, 0x0f, 0xe5, 0x84, 0x32, 0xc5, 0x04, 0xc0, 0xec, 0xc1, 0x70, +0x22, 0xa0, 0x86, 0xab, 0xc7, 0xb3, 0x98, 0x4e, 0x9f, 0x0b, 0x84, 0x8b, 0x9a, 0x9e, 0x8f, 0x67, +0x91, 0x39, 0xa3, 0x19, 0x6b, 0x52, 0x46, 0x6c, 0x8c, 0x9a, 0x48, 0xf1, 0x33, 0x33, 0x9b, 0x26, +0xb5, 0xb7, 0x16, 0x81, 0xfa, 0x63, 0x9d, 0xfe, 0x8b, 0xdf, 0xdf, 0x45, 0x19, 0x70, 0xc8, 0x25, +0xc6, 0x85, 0x44, 0xa2, 0x22, 0xe4, 0xf1, 0xd4, 0x94, 0x3b, 0x78, 0x59, 0xac, 0x89, 0x1b, 0xfd, +0xee, 0x3c, 0x43, 0x8d, 0xa7, 0xed, 0x32, 0xde, 0xae, 0x60, 0x7b, 0xe5, 0x6c, 0x14, 0x37, 0x7d, +0xf1, 0x18, 0xc2, 0xea, 0x32, 0xfe, 0xd5, 0x40, 0x41, 0x28, 0x7a, 0xec, 0x77, 0x7c, 0xfb, 0x53, +0x26, 0xd4, 0x09, 0xc1, 0x97, 0x83, 0xa9, 0x85, 0x8e, 0xd3, 0x9c, 0xad, 0x3c, 0x76, 0xa6, 0xcd, +0x4b, 0xc7, 0x49, 0x98, 0xb0, 0x3d, 0xe6, 0x56, 0x06, 0x63, 0x8f, 0xc8, 0xd7, 0xed, 0xd5, 0xe6, +0x19, 0x7f, 0x0a, 0x67, 0xe8, 0x22, 0x3e, 0x82, 0x24, 0x2d, 0xc8, 0xc2, 0xc8, 0xf7, 0xae, 0xe3, +0x46, 0x59, 0xbd, 0xe9, 0xef, 0xe5, 0xc6, 0x9e, 0x77, 0x74, 0x01, 0xf0, 0x54, 0x3b, 0x17, 0x39, +0xee, 0x04, 0xfa, 0xc6, 0x29, 0x2b, 0x0c, 0x7a, 0x90, 0x4b, 0x3d, 0x83, 0x95, 0x00, 0x79, 0x05, +0xe1, 0x86, 0xf5, 0x40, 0xca, 0xc0, 0xae, 0x1f, 0x1f, 0xdb, 0x1c, 0xbf, 0xda, 0xdd, 0x5b, 0x53, +0x77, 0x67, 0x4f, 0xc0, 0x83, 0xb3, 0xec, 0x25, 0x8e, 0x11, 0x5d, 0x0e, 0xa6, 0xa5, 0x15, 0xfc, +0xfb, 0x5b, 0x29, 0x01, 0x2b, 0x69, 0x9b, 0x34, 0xea, 0xa5, 0xb4, 0xba, 0x9e, 0x8d, 0x03, 0x50, +0xdf, 0xab, 0x52, 0x63, 0xdf, 0x8f, 0xc7, 0x22, 0x3f, 0x1c, 0xf6, 0xc5, 0x1f, 0xff, 0xcf, 0xc3, +0xa4, 0x7d, 0x6b, 0x99, 0xac, 0xb4, 0xb1, 0xc8, 0x15, 0x12, 0x8d, 0x5e, 0x21, 0x2e, 0x4c, 0x1f, +0x3f, 0x84, 0xa0, 0xcb, 0xd0, 0x15, 0x5e, 0x2f, 0x3d, 0xb6, 0xc9, 0x9e, 0x92, 0xdd, 0x2d, 0x9b, +0x4d, 0xa6, 0x02, 0x48, 0xee, 0x62, 0x70, 0xf2, 0x86, 0xc1, 0x62, 0x55, 0x23, 0x71, 0x29, 0xe0, +0x46, 0xe4, 0xf8, 0x6c, 0xa4, 0x61, 0x6a, 0xa1, 0x4e, 0x84, 0x22, 0x11, 0x44, 0xed, 0x18, 0x36, +0x55, 0xea, 0x0b, 0x8a, 0x96, 0xf7, 0x38, 0x07, 0x7c, 0xae, 0xcb, 0xd9, 0xbd, 0x0d, 0xd1, 0x97, +0xf2, 0xe7, 0x78, 0x90, 0x4c, 0xb5, 0xa3, 0xe6, 0x92, 0x54, 0xde, 0x68, 0xce, 0xad, 0xb3, 0x53, +0xb8, 0xe1, 0x6a, 0x3d, 0x29, 0x32, 0x33, 0x22, 0x12, 0xbe, 0xa7, 0xe3, 0x3a, 0x95, 0x9b, 0xb6, +0x83, 0x4c, 0xde, 0x5b, 0xbd, 0xec, 0xa2, 0x11, 0xf6, 0x7a, 0xa3, 0x53, 0xc1, 0xbd, 0x37, 0xe2, +0x0f, 0x17, 0xf3, 0xa5, 0x0a, 0xe2, 0x8e, 0xb6, 0xe5, 0xc8, 0xa0, 0xe0, 0xba, 0x1c, 0xd1, 0xac, +0x11, 0xfa, 0xd0, 0x03, 0x22, 0x76, 0xc3, 0x04, 0xa8, 0xa2, 0x04, 0x8e, 0xe9, 0xa5, 0x3a, 0xf8, +0x56, 0x9f, 0x17, 0x14, 0xf4, 0x7f, 0xaa, 0x7e, 0xaf, 0xab, 0xd7, 0xbc, 0xe5, 0xfd, 0x7b, 0x81, +0x98, 0xf9, 0xdc, 0xa8, 0x5f, 0xda, 0x46, 0x49, 0xe8, 0xa6, 0xad, 0xa5, 0xec, 0x30, 0x45, 0xcd, +0x85, 0x08, 0xed, 0x28, 0xff, 0x8c, 0x26, 0xe0, 0x6d, 0x89, 0xa8, 0x84, 0xa1, 0x35, 0x00, 0x8b, +0xc9, 0x2a, 0xb5, 0xac, 0xf9, 0x81, 0xed, 0xe6, 0xe5, 0xc9, 0x1c, 0x9e, 0x3a, 0x01, 0x5f, 0x47, +0x8d, 0xee, 0x30, 0x5b, 0x60, 0xe3, 0x83, 0x33, 0x23, 0x5e, 0x93, 0x70, 0x96, 0x41, 0xfe, 0xce, +0x71, 0x4c, 0x86, 0x27, 0xc2, 0x41, 0xcc, 0x32, 0x82, 0xa5, 0x1e, 0xd0, 0x26, 0x32, 0xa5, 0xfd, +0xe2, 0xbb, 0xfa, 0xca, 0xfb, 0xa5, 0x70, 0xa4, 0xd1, 0x97, 0x55, 0x32, 0xb2, 0x02, 0x43, 0x4e, +0x98, 0xc3, 0x26, 0xb9, 0x8b, 0x22, 0x22, 0x6c, 0x0a, 0xc6, 0xa2, 0xc8, 0xf9, 0x7c, 0xbf, 0x88, +0x33, 0xcd, 0xf6, 0x0e, 0xdb, 0x2b, 0xcb, 0x50, 0xef, 0xb2, 0x7d, 0xdc, 0x1c, 0x75, 0x6e, 0x97, +0x23, 0xaa, 0x1d, 0x74, 0xc4, 0xaa, 0xae, 0x51, 0xa9, 0x91, 0x97, 0x3c, 0xed, 0x71, 0x47, 0xc5, +0xba, 0x49, 0xd3, 0x22, 0x3d, 0x28, 0xcc, 0x97, 0xc6, 0x0d, 0x40, 0xf8, 0xe3, 0xdc, 0xdb, 0x39, +0xef, 0x75, 0x83, 0x26, 0x6e, 0xce, 0x76, 0x09, 0x3a, 0x46, 0x97, 0xe3, 0xd6, 0x11, 0x0e, 0x5e, +0xf1, 0x30, 0x0c, 0x98, 0xf4, 0x96, 0x6f, 0xa2, 0x10, 0x27, 0xf4, 0xa7, 0x25, 0x9f, 0xcb, 0x44, +0x0f, 0xd1, 0x32, 0xe4, 0xa9, 0xf9, 0x16, 0x3d, 0x7a, 0x99, 0x4f, 0x61, 0x0e, 0xf6, 0x4b, 0x25, +0xd7, 0x3d, 0x2f, 0xac, 0xf9, 0x3c, 0x57, 0xfb, 0xbe, 0xcb, 0xd0, 0xfa, 0x81, 0x96, 0xe7, 0x00, +0xf4, 0x92, 0x6f, 0x40, 0xdf, 0x52, 0xb2, 0x4f, 0xd8, 0x7e, 0xa0, 0x72, 0x8a, 0x3e, 0x4a, 0x49, +0x2c, 0xa9, 0x36, 0x7a, 0x60, 0x5a, 0x19, 0x70, 0x8d, 0xb8, 0x76, 0xbb, 0xb3, 0xfb, 0x32, 0x98, +0xdf, 0xbd, 0x60, 0xd3, 0x11, 0xbf, 0x8d, 0x02, 0x71, 0x7d, 0x5f, 0xd3, 0x01, 0xb4, 0x05, 0x4e, +0x07, 0xe6, 0xcc, 0xd5, 0x5d, 0xbb, 0x07, 0xb8, 0x62, 0xce, 0x2a, 0x23, 0x8d, 0x06, 0x88, 0x04, +0xce, 0x38, 0xce, 0x60, 0x6a, 0x27, 0xad, 0xfc, 0xe2, 0x54, 0xa3, 0x6a, 0x12, 0x79, 0xc2, 0xbe, +0xc3, 0xdd, 0xe0, 0x8f, 0x54, 0xfa, 0x13, 0x4a, 0x4d, 0xb7, 0xb6, 0xca, 0x98, 0xa7, 0xd3, 0x55, +0x45, 0xcf, 0x22, 0x9d, 0x7e, 0x61, 0x6c, 0x2d, 0x0a, 0x5a, 0xa8, 0x6c, 0x73, 0xde, 0x2d, 0x78, +0x52, 0xe0, 0x1c, 0xf8, 0xb7, 0xae, 0x1a, 0xec, 0x38, 0xd1, 0x50, 0xe7, 0x12, 0x4b, 0x80, 0xe9, +0xb5, 0x30, 0x98, 0x0c, 0x04, 0x61, 0x1d, 0x9f, 0xe9, 0x9f, 0xee, 0xa3, 0xa2, 0x93, 0x7b, 0xef, +0xa7, 0xbd, 0x36, 0x0a, 0x10, 0x8f, 0x3d, 0xb4, 0xe9, 0xa0, 0xbd, 0xe4, 0xa8, 0xc4, 0xcd, 0x68, +0x2c, 0x66, 0xa7, 0xca, 0x80, 0x02, 0x76, 0xf5, 0x55, 0x2f, 0xcd, 0x16, 0xbc, 0xb3, 0x4b, 0xd1, +0xd0, 0x15, 0x73, 0xf5, 0x27, 0xa6, 0x1a, 0x3c, 0x30, 0x9c, 0x94, 0xd3, 0x4a, 0xb3, 0x77, 0x94, +0xaa, 0x40, 0x52, 0x69, 0x6a, 0x8f, 0x6b, 0xde, 0xad, 0x67, 0x56, 0x94, 0x44, 0x43, 0xde, 0x98, +0x22, 0xf3, 0x16, 0x75, 0x0d, 0x7b, 0x25, 0xe2, 0x4e, 0x8f, 0xaa, 0x57, 0x69, 0xd9, 0x42, 0x05, +0xff, 0x4d, 0x2e, 0x7d, 0xdb, 0x2d, 0x72, 0x7f, 0x67, 0x01, 0x33, 0xc4, 0x10, 0x8c, 0x07, 0xf8, +0xd3, 0xd9, 0x25, 0xc2, 0x03, 0x34, 0xb9, 0xa0, 0x73, 0xa6, 0x82, 0xd4, 0x2d, 0x3e, 0xd3, 0x1c, +0xdd, 0x68, 0x32, 0xd5, 0xbf, 0xa3, 0x25, 0x84, 0xa6, 0x08, 0x5d, 0x9c, 0x83, 0x80, 0xda, 0xb6, +0xe2, 0x19, 0x0a, 0x6b, 0xcc, 0xf7, 0xbd, 0x81, 0xd7, 0xde, 0xdd, 0xc5, 0xfc, 0xeb, 0x05, 0xd6, +0x0d, 0xd6, 0x12, 0xe9, 0xe3, 0xd6, 0xfa, 0xec, 0x49, 0xa0, 0xa7, 0xfb, 0xb4, 0x9d, 0xa0, 0x90, +0x02, 0x8e, 0x1c, 0x4e, 0xd6, 0xed, 0xd4, 0x67, 0x21, 0x19, 0xec, 0x9e, 0x70, 0xd2, 0x80, 0xef, +0xd0, 0xe0, 0x55, 0xd9, 0x88, 0x62, 0x05, 0xe5, 0xd8, 0x99, 0xfa, 0xdf, 0xe4, 0xaf, 0xeb, 0xc4, +0x08, 0x8c, 0x96, 0x00, 0xc9, 0x44, 0x22, 0xf2, 0x95, 0x7e, 0x0e, 0xbc, 0x33, 0x72, 0x73, 0x6f, +0x16, 0xf8, 0xbf, 0xa1, 0xd2, 0x8a, 0x94, 0xdf, 0x21, 0x89, 0xd1, 0xe0, 0xcb, 0x01, 0xae, 0x65, +0x08, 0xb1, 0xf9, 0x09, 0xae, 0x1a, 0x6e, 0x8e, 0x93, 0x30, 0x52, 0x00, 0x2f, 0xe4, 0xb2, 0xea, +0x15, 0x65, 0xf2, 0xa5, 0x84, 0xbe, 0xd2, 0xac, 0x1e, 0xb2, 0x7b, 0x78, 0xc6, 0xc5, 0x69, 0xdf, +0x0a, 0x6a, 0x82, 0x83, 0x8f, 0x9f, 0x20, 0x09, 0x77, 0x54, 0xfd, 0x5b, 0x74, 0x49, 0x09, 0x64, +0xad, 0x88, 0x25, 0x62, 0x68, 0xc2, 0x13, 0xa3, 0xe9, 0xd2, 0x68, 0x71, 0x12, 0x19, 0xa4, 0x2b, +0x94, 0x6a, 0xbf, 0x6d, 0x86, 0x52, 0x06, 0x34, 0x16, 0x30, 0x95, 0x35, 0x45, 0xa0, 0x5b, 0xc0, +0xdb, 0x54, 0xa0, 0xb9, 0x21, 0xfa, 0xd0, 0xbe, 0x91, 0x05, 0xae, 0x91, 0xc4, 0xe1, 0xa8, 0xcc, +0x6d, 0x93, 0xb4, 0xc0, 0xf8, 0x9a, 0x1c, 0xeb, 0x10, 0x47, 0xe4, 0xea, 0xd2, 0x14, 0x0a, 0xd8, +0xc4, 0x65, 0x3d, 0x95, 0x06, 0xd6, 0xca, 0x2d, 0x71, 0x29, 0x6f, 0x81, 0x27, 0x92, 0x8d, 0xa8, +0x07, 0x71, 0x1b, 0xfc, 0x82, 0xb3, 0x6d, 0x68, 0x38, 0xe1, 0x8c, 0xaf, 0x62, 0x3a, 0xe0, 0xc6, +0x52, 0xfc, 0x78, 0x1f, 0xfa, 0x75, 0x3c, 0x31, 0x3d, 0x21, 0x56, 0xfc, 0x11, 0x3e, 0x97, 0xb4, +0x47, 0x7b, 0xa2, 0x69, 0x66, 0xa5, 0x60, 0x59, 0xac, 0x98, 0x16, 0xd0, 0xeb, 0x9a, 0x3a, 0x88, +0x76, 0x53, 0x7c, 0x66, 0x33, 0xb3, 0x5d, 0xeb, 0xde, 0xe5, 0x89, 0xea, 0xc8, 0x9b, 0xbc, 0xd3, +0x8d, 0x0d, 0x05, 0x0d, 0x9a, 0x08, 0x9d, 0xb3, 0x8d, 0x52, 0x09, 0xe9, 0xd7, 0x42, 0x8c, 0xac, +0x1a, 0x5f, 0x8e, 0x0c, 0xe5, 0xc2, 0x1b, 0x58, 0x95, 0x13, 0xb1, 0x09, 0xca, 0x2c, 0xdf, 0x5b, +0x77, 0x08, 0x59, 0x09, 0x51, 0xd7, 0xf8, 0xbd, 0x18, 0xce, 0x6c, 0xa3, 0x39, 0x88, 0x3d, 0x0c, +0xd1, 0xcc, 0x99, 0x52, 0xb6, 0x31, 0xc9, 0xcd, 0x92, 0x7b, 0x4d, 0x69, 0xf6, 0x8c, 0x52, 0x82, +0x32, 0xc4, 0x6b, 0xf7, 0xae, 0x00, 0x69, 0xf9, 0xa8, 0x2e, 0x67, 0x76, 0x8b, 0xf0, 0x3c, 0x45, +0x1b, 0xb8, 0xb6, 0xe6, 0xd9, 0x76, 0xe0, 0xa9, 0xfc, 0x6f, 0x75, 0x91, 0x0a, 0x61, 0x12, 0x59, +0x44, 0x96, 0x44, 0x71, 0x51, 0xed, 0x7c, 0x85, 0xc2, 0xb3, 0x9e, 0x11, 0x86, 0x72, 0xd8, 0x99, +0x7c, 0x80, 0x36, 0xa7, 0x97, 0x9a, 0xba, 0x1d, 0x77, 0x5d, 0x31, 0xdc, 0xfa, 0x4b, 0xb7, 0x1f, +0xd9, 0xd5, 0x6c, 0xa6, 0x31, 0x36, 0x26, 0x4d, 0x0b, 0xb2, 0xdc, 0xd8, 0xd9, 0x26, 0x39, 0x6a, +0xda, 0x12, 0xad, 0x5d, 0x79, 0x0a, 0xd0, 0xa1, 0xad, 0xe0, 0x2d, 0xf3, 0xcf, 0xd8, 0xfa, 0x91, +0xf7, 0x54, 0x54, 0x4a, 0x5e, 0x20, 0x78, 0xc3, 0xb9, 0x04, 0x8a, 0x8c, 0xa4, 0x2b, 0x73, 0x2b, +0x76, 0x35, 0x7b, 0xd1, 0x5e, 0xfb, 0x94, 0x87, 0xaa, 0x83, 0xc8, 0xea, 0xc3, 0xdb, 0xa4, 0x85, +0x0e, 0x92, 0xd0, 0xcc, 0x4e, 0x48, 0x68, 0xcc, 0xb3, 0xfe, 0x0f, 0x91, 0x3d, 0x94, 0xfb, 0x14, +0x70, 0x62, 0xfd, 0x2b, 0xbc, 0x30, 0xb4, 0x8a, 0x59, 0x4f, 0xa7, 0x8f, 0xf7, 0x1e, 0x33, 0xa1, +0x28, 0x44, 0xf2, 0xc9, 0xc9, 0xcd, 0x1d, 0xb9, 0x11, 0x8c, 0x1f, 0x5e, 0xb0, 0x5f, 0x9d, 0xb6, +0x1e, 0xb1, 0x39, 0xca, 0xba, 0x31, 0xc5, 0x27, 0x26, 0xd5, 0xe1, 0xd6, 0x77, 0xd9, 0xef, 0x0b, +0x28, 0x07, 0xfb, 0xb7, 0xf5, 0xa7, 0x85, 0xe5, 0xef, 0x43, 0x09, 0x6f, 0x88, 0x1c, 0x70, 0x14, +0xb0, 0x51, 0x00, 0x32, 0xd2, 0x1b, 0xc4, 0xb8, 0xa7, 0x2e, 0x49, 0xc0, 0x6e, 0x98, 0x46, 0x7a, +0xa2, 0x5d, 0xe2, 0x1a, 0xf2, 0xa0, 0x88, 0xa2, 0x22, 0xa0, 0xd1, 0x8d, 0x0a, 0x35, 0x61, 0x64, +0x54, 0xc3, 0x43, 0x31, 0xf8, 0x74, 0x1a, 0xf5, 0x73, 0x9f, 0xa1, 0x18, 0x22, 0x4e, 0x73, 0x79, +0x8f, 0x65, 0x54, 0x43, 0xb2, 0xf4, 0x61, 0x8f, 0x3d, 0xd1, 0x60, 0x00, 0xe7, 0x42, 0xc8, 0x70, +0x48, 0x07, 0xb9, 0x5b, 0x47, 0xcc, 0x89, 0x4c, 0xea, 0x37, 0x43, 0x9a, 0xe6, 0x97, 0x04, 0xc4, +0x1f, 0xb1, 0x4e, 0xc1, 0x90, 0x5e, 0xd3, 0xd2, 0x26, 0xcf, 0xc1, 0xc3, 0x7f, 0x45, 0x1e, 0x49, +0x5e, 0xb4, 0x53, 0xb2, 0x5a, 0x77, 0x2b, 0x81, 0x30, 0x61, 0x66, 0x62, 0x1b, 0x0d, 0xa3, 0x9d, +0xd2, 0xcf, 0xce, 0xb8, 0xe8, 0x81, 0x21, 0x1b, 0xb3, 0x14, 0x2d, 0xb6, 0xcf, 0xf6, 0xfc, 0x68, +0xcb, 0xca, 0x96, 0x76, 0x16, 0x31, 0x82, 0xd4, 0x7f, 0xe4, 0x97, 0x75, 0xf4, 0xe0, 0x17, 0x6a, +0x88, 0xe5, 0x9d, 0x13, 0x48, 0x24, 0xf5, 0x4f, 0xa4, 0xa6, 0x65, 0x0c, 0xc3, 0x35, 0x94, 0x8e, +0xcd, 0x78, 0x67, 0x4c, 0x39, 0xee, 0xe3, 0xd2, 0x67, 0x21, 0xb4, 0x09, 0x58, 0xf6, 0x7c, 0xa3, +0x93, 0x82, 0xd6, 0x5e, 0x77, 0x25, 0x97, 0x9d, 0xcf, 0x3f, 0x8c, 0x25, 0x70, 0xa6, 0x2b, 0xbf, +0x14, 0x33, 0x7e, 0x7f, 0x96, 0xe5, 0xde, 0x23, 0x2d, 0x31, 0x70, 0x9d, 0x7d, 0xd0, 0xa3, 0x50, +0xb2, 0x80, 0x0a, 0x37, 0x38, 0xe1, 0x02, 0xc0, 0x14, 0x1a, 0x31, 0xd2, 0x7b, 0xf7, 0xde, 0x67, +0xe2, 0x03, 0xee, 0xc9, 0xf5, 0x1b, 0xf2, 0x17, 0x9a, 0x8c, 0xe6, 0x27, 0x34, 0x39, 0xbf, 0x00, +0x47, 0x35, 0x73, 0x8c, 0x7c, 0x75, 0x91, 0x14, 0x12, 0x7a, 0xc8, 0x02, 0x73, 0x6d, 0x37, 0xa2, +0xc2, 0xae, 0xd2, 0x3e, 0xa1, 0xd6, 0xdb, 0x04, 0x9f, 0xf1, 0x65, 0xee, 0x2e, 0x73, 0xd1, 0xf9, +0x18, 0xf9, 0x49, 0x4c, 0x08, 0x52, 0xc9, 0x4a, 0xc3, 0xfa, 0xa6, 0x22, 0x5f, 0x45, 0xbf, 0x9c, +0x20, 0x37, 0x8b, 0xf5, 0xc8, 0x49, 0x3a, 0x18, 0xc9, 0x9b, 0x1e, 0xd0, 0x55, 0x50, 0xe4, 0xc9, +0xa4, 0xcd, 0x43, 0x45, 0x47, 0xcd, 0xbc, 0xdf, 0x2d, 0x6d, 0xcc, 0x1b, 0x01, 0x0a, 0x50, 0xc9, +0xd5, 0xc8, 0xae, 0xa9, 0x4e, 0x81, 0xc1, 0x2a, 0x9d, 0xe2, 0xb6, 0x2c, 0x6d, 0x76, 0xed, 0xfa, +0x09, 0xda, 0x73, 0xc1, 0x7c, 0x14, 0xc2, 0x33, 0x67, 0x7b, 0x7c, 0x05, 0xc8, 0xb3, 0x20, 0xcc, +0xfe, 0xf9, 0x62, 0x64, 0xa4, 0x9b, 0x78, 0xa5, 0x58, 0x71, 0x23, 0xb1, 0x7b, 0xc6, 0xe1, 0xbf, +0x4c, 0xf7, 0xb9, 0x51, 0x11, 0xff, 0x00, 0x26, 0xb2, 0xe3, 0xd9, 0x68, 0x11, 0x0e, 0xfd, 0x18, +0x44, 0x95, 0x8b, 0x5a, 0xe8, 0x5a, 0xc1, 0x57, 0x37, 0x7f, 0xa4, 0xab, 0xf7, 0xb9, 0xbb, 0xdc, +0x77, 0x78, 0xa4, 0x85, 0xff, 0x2f, 0xcf, 0x6f, 0x94, 0x55, 0x2c, 0x2c, 0x9f, 0xa9, 0xbf, 0xa2, +0x80, 0x87, 0x3e, 0xc3, 0xd3, 0x3b, 0x39, 0x9d, 0x43, 0x42, 0xae, 0xd9, 0x98, 0x63, 0x5a, 0x98, +0x13, 0xe1, 0x2b, 0xa5, 0x51, 0xc2, 0x70, 0x3b, 0x34, 0x39, 0xf1, 0x90, 0x6e, 0xbe, 0xf4, 0xda, +0x4d, 0x51, 0x84, 0xab, 0xb6, 0xbc, 0x91, 0x51, 0x01, 0x86, 0xd1, 0x66, 0xb5, 0xd0, 0x28, 0xc2, +0x6d, 0xec, 0xdf, 0x32, 0xea, 0xb3, 0x34, 0xf4, 0xf9, 0x1c, 0xf5, 0xb8, 0xcc, 0x31, 0x7e, 0xd5, +0x2c, 0xc6, 0x85, 0xcc, 0x1b, 0x93, 0xc3, 0x69, 0x7b, 0xac, 0xb1, 0x6a, 0x44, 0x4f, 0x33, 0x46, +0x42, 0x34, 0x3a, 0x2a, 0x29, 0x7a, 0x52, 0xac, 0x75, 0x2c, 0x96, 0x0d, 0x2c, 0x36, 0xe8, 0x17, +0x15, 0x07, 0x4a, 0x90, 0x31, 0xd1, 0xb1, 0x24, 0x0c, 0x4e, 0x77, 0x45, 0xda, 0xb6, 0xe4, 0x87, +0x11, 0x6d, 0x40, 0xac, 0x32, 0x57, 0xa0, 0xe7, 0x41, 0xf4, 0xd0, 0x6c, 0x16, 0x9e, 0x59, 0xdc, +0x03, 0xed, 0x39, 0x6e, 0x7b, 0xd5, 0xb7, 0x19, 0x95, 0x96, 0xce, 0x02, 0xb8, 0x45, 0x8b, 0x17, +0xdc, 0x47, 0x42, 0x34, 0xd4, 0xc8, 0xcd, 0xd1, 0x92, 0x33, 0xad, 0xbf, 0x46, 0x64, 0x41, 0xaf, +0xb1, 0x1e, 0x00, 0xec, 0xf4, 0x0e, 0x4d, 0x01, 0x77, 0xf2, 0x26, 0xa3, 0xd0, 0xef, 0x87, 0x83, +0x8b, 0x96, 0x68, 0x9f, 0xf1, 0x11, 0xfc, 0xc5, 0x9e, 0x04, 0x90, 0x18, 0xd9, 0x4c, 0x11, 0x4d, +0x0d, 0x79, 0xa1, 0x4c, 0x4e, 0x89, 0x10, 0x5c, 0xba, 0x1a, 0x21, 0xda, 0xbe, 0xf6, 0x16, 0xb0, +0xd4, 0x32, 0xf1, 0x95, 0x69, 0xd9, 0x72, 0xef, 0x88, 0x3d, 0x6b, 0x92, 0x09, 0x30, 0x01, 0x0e, +0x6b, 0xde, 0x51, 0x08, 0xbd, 0xb1, 0x9f, 0xc1, 0x7d, 0x8a, 0xfb, 0x91, 0x52, 0x5b, 0xfb, 0x37, +0x19, 0x99, 0x69, 0x0c, 0xd2, 0xa0, 0x37, 0xf0, 0xf2, 0x8d, 0x38, 0x7c, 0xaa, 0x28, 0xee, 0xd7, +0x43, 0xdc, 0x5c, 0xa6, 0xcd, 0x8c, 0x02, 0xab, 0xc4, 0xf8, 0xab, 0xf0, 0x9c, 0xd0, 0x57, 0xcf, +0xe2, 0x4a, 0x2f, 0x8f, 0xa6, 0xc6, 0x80, 0xd2, 0x4a, 0x34, 0x79, 0xd2, 0x43, 0xce, 0x20, 0x0c, +0xd6, 0xb7, 0x32, 0x60, 0xd7, 0x21, 0x70, 0x8e, 0x80, 0xb0, 0xe2, 0xb3, 0x25, 0x3b, 0xb5, 0x79, +0x46, 0xf1, 0xa6, 0xe5, 0x4e, 0x20, 0xd7, 0x0f, 0xd2, 0x80, 0x53, 0x39, 0xab, 0x4c, 0xda, 0x64, +0xad, 0xb2, 0x9b, 0x2b, 0xb6, 0x90, 0xe2, 0x38, 0x6e, 0x07, 0x0f, 0xaf, 0x3c, 0x70, 0xf1, 0xf3, +0x48, 0x73, 0xa6, 0x29, 0x7f, 0x77, 0x8a, 0xa0, 0x34, 0xbd, 0x74, 0xdb, 0xe1, 0x94, 0x56, 0xf8, +0xf1, 0xb1, 0x99, 0xfd, 0xcd, 0x28, 0x28, 0xf6, 0xba, 0x75, 0xe3, 0x97, 0x1d, 0x75, 0x2a, 0xff, +0x36, 0x97, 0xd7, 0xd7, 0x4c, 0xd7, 0x98, 0x37, 0x83, 0x6f, 0x57, 0x97, 0xf2, 0xa6, 0x1e, 0xff, +0x79, 0xae, 0x9c, 0xf8, 0x05, 0xaa, 0xed, 0x18, 0x55, 0x68, 0x3f, 0xfb, 0x97, 0xc9, 0xdc, 0xbe, +0x15, 0x08, 0xb2, 0x2e, 0x4c, 0x8c, 0x4d, 0xec, 0xe5, 0x0e, 0x81, 0xb5, 0x17, 0x1a, 0x69, 0xcd, +0xa1, 0x7f, 0x77, 0xc9, 0x37, 0x12, 0x83, 0x4e, 0x83, 0x09, 0x22, 0x60, 0x13, 0xcd, 0xcb, 0x29, +0x4e, 0xcf, 0x7f, 0x2a, 0xb0, 0x4d, 0x4b, 0x3b, 0x74, 0x1a, 0xe7, 0xf7, 0xde, 0xe0, 0x0d, 0xda, +0xb3, 0xbc, 0x9b, 0x83, 0x32, 0xae, 0x0f, 0x24, 0x19, 0x99, 0x7f, 0xae, 0x84, 0x25, 0xac, 0x2c, +0x54, 0x33, 0xea, 0x67, 0xe0, 0x32, 0x45, 0x7d, 0xf1, 0x4f, 0x3e, 0x58, 0x1e, 0xfe, 0x75, 0x25, +0x57, 0xe5, 0x68, 0x02, 0x29, 0x48, 0x84, 0x76, 0x8f, 0xb7, 0xb1, 0xf9, 0x1f, 0xa4, 0xd3, 0xe5, +0xda, 0x2d, 0xd3, 0xc0, 0xdf, 0x4b, 0xec, 0x97, 0x6b, 0x4b, 0x87, 0xb0, 0x25, 0xb1, 0x77, 0xbd, +0xbf, 0x42, 0xdb, 0xfa, 0xe5, 0xa0, 0xbe, 0x3d, 0x27, 0xe4, 0xa3, 0xb0, 0xf4, 0x0a, 0xb4, 0x19, +0xe2, 0xd2, 0x9e, 0x37, 0xe5, 0xd9, 0x5d, 0x51, 0x71, 0xed, 0x17, 0xa0, 0x6f, 0x00, 0xed, 0x1f, +0xf7, 0x9b, 0x02, 0x53, 0x73, 0xf0, 0x5b, 0xb6, 0xac, 0x12, 0x52, 0x7f, 0x99, 0x84, 0xbc, 0x74, +0xbf, 0x34, 0xe8, 0x74, 0xdb, 0x7e, 0xcf, 0xf9, 0x62, 0x45, 0x73, 0x43, 0xf1, 0x1c, 0xf8, 0xbf, +0x01, 0xad, 0x09, 0x65, 0x42, 0x8b, 0x3f, 0xea, 0x4c, 0x53, 0xc4, 0x35, 0xb9, 0xc9, 0xd6, 0xee, +0xbe, 0x70, 0xac, 0x65, 0xb3, 0x3d, 0xd9, 0x55, 0xe4, 0xa5, 0x83, 0x90, 0x5e, 0x06, 0xe9, 0x75, +0xe9, 0x1f, 0x21, 0x23, 0x5f, 0x1c, 0x2e, 0x07, 0x58, 0x9e, 0x73, 0xc8, 0x02, 0x9c, 0x82, 0xf9, +0x0c, 0x69, 0xb4, 0xa5, 0x00, 0xaa, 0x45, 0xf7, 0x5f, 0x26, 0xd7, 0xde, 0x5f, 0x32, 0x3a, 0x11, +0x98, 0x63, 0xa3, 0x50, 0xd8, 0xf9, 0x66, 0x67, 0xf1, 0x57, 0xb5, 0x33, 0xdd, 0x2e, 0xdf, 0x40, +0x9a, 0x81, 0xbb, 0x31, 0xab, 0xbf, 0x71, 0xb4, 0x26, 0x5d, 0x39, 0x57, 0x67, 0xaa, 0x70, 0x8a, +0x4f, 0xb9, 0x40, 0xa8, 0xaf, 0xc5, 0x00, 0x7d, 0x60, 0x60, 0x02, 0x6c, 0xdb, 0xbb, 0xa5, 0x69, +0x1f, 0x8c, 0x9f, 0x5f, 0x18, 0xd9, 0x93, 0xde, 0xe8, 0x74, 0xd5, 0x08, 0x34, 0xf4, 0xde, 0x5e, +0xca, 0x05, 0x17, 0xfa, 0x3b, 0x08, 0x6a, 0xa0, 0xf0, 0x03, 0xc2, 0x1f, 0x08, 0xc3, 0xb6, 0x66, +0x71, 0x83, 0x86, 0xcc, 0x48, 0x7b, 0xc9, 0x0a, 0xbd, 0x22, 0x8a, 0x51, 0x2f, 0x14, 0x96, 0xf8, +0xd3, 0x1a, 0xf8, 0xad, 0xa3, 0x66, 0x1f, 0x6f, 0xd3, 0x9c, 0x0d, 0xcd, 0x02, 0xbb, 0x76, 0x4d, +0xef, 0x9c, 0x07, 0xc7, 0x75, 0x44, 0x00, 0x70, 0x23, 0xc4, 0x8c, 0x25, 0xe8, 0x4b, 0xa7, 0x00, +0xf1, 0x79, 0xa9, 0xc8, 0x0a, 0x76, 0x1a, 0xfc, 0x02, 0x73, 0x74, 0x0d, 0x90, 0x41, 0x70, 0xb8, +0xc0, 0xf3, 0x2c, 0xce, 0xb1, 0x72, 0xfc, 0x23, 0xc2, 0xa6, 0xae, 0xf2, 0x30, 0x58, 0xce, 0xb8, +0x27, 0x6d, 0x9b, 0x58, 0x44, 0x7f, 0x03, 0x28, 0xd6, 0x48, 0x2d, 0xf5, 0x22, 0x45, 0x8e, 0x65, +0x94, 0x51, 0x76, 0xcb, 0xf6, 0x9b, 0x56, 0xb9, 0xc9, 0x96, 0x26, 0xa2, 0x00, 0x55, 0xca, 0xe3, +0x22, 0xbc, 0xdd, 0x2a, 0xc7, 0xa1, 0xf4, 0xda, 0x42, 0x58, 0xf0, 0x2a, 0x18, 0xd5, 0x76, 0xb7, +0x2d, 0xfb, 0x73, 0x78, 0x5f, 0xf7, 0x30, 0xbd, 0xb2, 0xdf, 0x2c, 0xdc, 0x38, 0xf2, 0xae, 0xa5, +0x1b, 0x40, 0x78, 0x14, 0xae, 0x85, 0xa3, 0x25, 0x19, 0x44, 0x29, 0xa4, 0x70, 0x7c, 0xec, 0x05, +0x35, 0xc3, 0xc8, 0xbc, 0xd5, 0x6e, 0x52, 0x4c, 0x1e, 0xa6, 0x22, 0x2d, 0x61, 0x3c, 0xc2, 0xb1, +0xbb, 0xf3, 0x06, 0xd2, 0x6f, 0xbc, 0x3d, 0xb9, 0xeb, 0x39, 0x97, 0x96, 0x17, 0xb9, 0xea, 0x40, +0x6f, 0x65, 0xb5, 0x10, 0x21, 0xeb, 0x9d, 0x5d, 0xc4, 0x3a, 0x6e, 0x5a, 0xa0, 0x2e, 0x08, 0xc7, +0x51, 0x9b, 0x18, 0xea, 0x87, 0x94, 0xcc, 0x2b, 0x2d, 0xa1, 0x3d, 0xb9, 0x49, 0x42, 0x79, 0xb1, +0x37, 0x99, 0x7b, 0xf7, 0x01, 0x01, 0xf5, 0xc4, 0xe2, 0x53, 0x45, 0xdd, 0xf1, 0x55, 0x53, 0xe7, +0xe1, 0x0b, 0xb0, 0x04, 0x03, 0x80, 0xce, 0xd6, 0x44, 0xb5, 0xac, 0xe0, 0xd1, 0xd9, 0xaf, 0x64, +0x0a, 0xf8, 0xa2, 0xf4, 0xc4, 0x8f, 0xbd, 0x41, 0xd0, 0xb9, 0xc1, 0xa0, 0xc4, 0x06, 0x33, 0x86, +0xcc, 0xca, 0x00, 0xbc, 0xcc, 0x31, 0xcf, 0x97, 0x36, 0x23, 0x04, 0xcf, 0x36, 0x28, 0x9a, 0xb6, +0xe8, 0x89, 0x86, 0x10, 0x78, 0xda, 0x5c, 0xd2, 0xea, 0xb5, 0x40, 0xcf, 0xde, 0x0e, 0x83, 0xf9, +0x0a, 0x9e, 0x2e, 0x0e, 0xca, 0x88, 0xf7, 0xc2, 0x9e, 0xc6, 0xde, 0xa6, 0xca, 0xb0, 0x1b, 0x19, +0x22, 0xe3, 0x0b, 0x01, 0x89, 0x3e, 0x17, 0x8b, 0xf9, 0x35, 0x30, 0x23, 0xb6, 0x33, 0xc4, 0xc7, +0x64, 0x47, 0x29, 0x48, 0xb0, 0x1e, 0x48, 0x92, 0x5a, 0x46, 0x54, 0x70, 0x20, 0x63, 0xc4, 0xe2, +0xe7, 0x7a, 0xbd, 0xfa, 0x33, 0x79, 0x74, 0x23, 0xfb, 0x30, 0x66, 0xbf, 0x15, 0xaa, 0xe8, 0x48, +0x66, 0x8f, 0x54, 0x76, 0xfb, 0xcb, 0x0b, 0xaf, 0xba, 0x92, 0x1e, 0x22, 0x0e, 0x8d, 0xe3, 0x4b, +0x2e, 0xd7, 0xcc, 0x68, 0x50, 0xfb, 0x22, 0xf5, 0xfc, 0x63, 0xa6, 0xb2, 0x43, 0x4e, 0xe1, 0xa1, +0x60, 0x74, 0xc9, 0xae, 0xaf, 0xee, 0x4d, 0xa8, 0xdc, 0x72, 0xba, 0x75, 0xf2, 0x49, 0xf6, 0x28, +0xce, 0x0b, 0xf5, 0x74, 0x8b, 0x04, 0xa2, 0xeb, 0xcd, 0x29, 0x6e, 0x12, 0x06, 0x95, 0xc1, 0x74, +0x22, 0xdf, 0x69, 0xde, 0x92, 0xf1, 0x03, 0x5b, 0x14, 0x8a, 0xa3, 0x5e, 0x4a, 0xca, 0x59, 0x05, +0xd9, 0x46, 0xd7, 0x44, 0x89, 0xd9, 0x1c, 0x31, 0xd1, 0xe8, 0x7d, 0x76, 0x32, 0x83, 0x1e, 0x8d, +0x98, 0x60, 0xee, 0x23, 0x88, 0xab, 0x92, 0x4b, 0x43, 0xb6, 0x4b, 0xcb, 0x5d, 0xed, 0xe7, 0xe7, +0x7a, 0x34, 0x6b, 0x35, 0x98, 0x2b, 0xfc, 0x5b, 0x02, 0x3a, 0x59, 0xe4, 0x9f, 0x30, 0x33, 0x09, +0xc7, 0x26, 0xeb, 0x24, 0xc7, 0x11, 0xfe, 0xb1, 0xb5, 0x23, 0xa8, 0x70, 0xda, 0x5f, 0xd8, 0xe1, +0x98, 0x16, 0xa1, 0x14, 0x5f, 0x03, 0x62, 0xa5, 0x9b, 0xd3, 0xca, 0x89, 0x29, 0xbb, 0x7d, 0x89, +0x53, 0xa8, 0xf6, 0x54, 0x97, 0xf4, 0xa8, 0xca, 0x17, 0x6c, 0x91, 0x55, 0x98, 0x20, 0xaa, 0x50, +0x2b, 0xde, 0x57, 0x8a, 0x8e, 0xb2, 0x8d, 0xb2, 0x5d, 0x49, 0x26, 0xe9, 0x40, 0xa1, 0x5b, 0x06, +0x26, 0xbc, 0x19, 0x7f, 0x3b, 0x43, 0x25, 0x6b, 0x28, 0x9c, 0x14, 0x43, 0x3b, 0x23, 0x43, 0x2f, +0x8c, 0x2d, 0xe8, 0xb2, 0x84, 0x9c, 0x6a, 0x8c, 0x4f, 0xa6, 0xdb, 0xf2, 0x6f, 0xb0, 0x03, 0xb2, +0x79, 0x26, 0x80, 0x44, 0xc4, 0x11, 0x93, 0x9e, 0xb9, 0x13, 0x42, 0x6d, 0x4a, 0xf7, 0x5b, 0xd5, +0x31, 0xd3, 0x4b, 0xdb, 0x86, 0x20, 0x71, 0xa6, 0x47, 0x2b, 0xd4, 0x63, 0x62, 0x04, 0x43, 0xca, +0xeb, 0x97, 0x52, 0xb5, 0xf1, 0x65, 0xe7, 0x97, 0x50, 0x1c, 0x50, 0x76, 0xf1, 0x19, 0x5d, 0x08, +0x3a, 0x70, 0xe6, 0x9e, 0x6e, 0x05, 0x5d, 0x24, 0xc5, 0x07, 0x44, 0xed, 0xad, 0xf5, 0x96, 0xe6, +0x40, 0x1e, 0xa1, 0xa1, 0x30, 0x79, 0x63, 0x82, 0xc9, 0xfc, 0xf7, 0x95, 0xf3, 0x2d, 0x2f, 0x81, +0xdd, 0x11, 0x27, 0x7d, 0xcd, 0x40, 0x4e, 0x63, 0xe9, 0x64, 0xf8, 0x4a, 0xd8, 0x1e, 0x11, 0xb2, +0xff, 0x60, 0xa8, 0x1a, 0x8e, 0xf6, 0x1b, 0x38, 0x4c, 0x38, 0x8d, 0x23, 0x50, 0x26, 0x7f, 0x23, +0x15, 0xce, 0xdc, 0x18, 0x9d, 0x35, 0x99, 0x38, 0xf2, 0x30, 0x77, 0x69, 0x1e, 0xc8, 0xc2, 0x9d, +0x94, 0x79, 0x21, 0xcd, 0xe6, 0xc4, 0x8c, 0x40, 0x7a, 0x40, 0x92, 0x0a, 0xf1, 0xce, 0x14, 0xfa, +0xdd, 0xc4, 0x0c, 0x8a, 0xa4, 0x1b, 0x37, 0x6c, 0x8e, 0x0e, 0x1b, 0xb0, 0x8e, 0x71, 0x5b, 0xf1, +0x03, 0x31, 0x6a, 0x2e, 0x62, 0x59, 0xde, 0x2e, 0xbe, 0xa2, 0x47, 0x1f, 0x5b, 0xcb, 0xb1, 0xac, +0x24, 0x95, 0x4c, 0x0d, 0xfc, 0x69, 0x23, 0x1d, 0xf5, 0x18, 0xd4, 0x46, 0x13, 0xf3, 0xde, 0x53, +0x9b, 0x4b, 0xb4, 0xde, 0xc6, 0x18, 0xa8, 0xdf, 0x65, 0xb1, 0x39, 0x20, 0xd9, 0x6f, 0x16, 0x5d, +0x5a, 0x69, 0xce, 0x4e, 0x8d, 0x59, 0x74, 0x2a, 0xe3, 0x20, 0xf8, 0x44, 0xbc, 0x9a, 0x7c, 0x36, +0x4b, 0x9d, 0x6b, 0x42, 0xe4, 0xa7, 0x23, 0xe4, 0x1a, 0x2b, 0x46, 0x74, 0xa2, 0xad, 0x38, 0xf1, +0xa6, 0x8a, 0x2f, 0xea, 0x46, 0x71, 0xfd, 0x2c, 0xde, 0xaf, 0x94, 0x80, 0x25, 0x1b, 0xe4, 0x95, +0x85, 0x06, 0xf5, 0xbc, 0xa8, 0xef, 0x22, 0xbf, 0xc5, 0xec, 0x3a, 0x03, 0xc7, 0xb3, 0x5f, 0x2e, +0xc1, 0xa9, 0x0b, 0xde, 0xb3, 0x45, 0x74, 0xc6, 0x33, 0xf0, 0xca, 0xf3, 0x87, 0x0a, 0xe7, 0xef, +0x0c, 0x34, 0x80, 0xaa, 0x7b, 0x8b, 0x87, 0xfe, 0x27, 0x8c, 0x34, 0xea, 0x03, 0x5d, 0x33, 0xd3, +0xdd, 0x54, 0x03, 0x82, 0x40, 0x0b, 0xf1, 0xc0, 0x45, 0xd6, 0x82, 0x3a, 0x50, 0xcc, 0x51, 0xb7, +0x85, 0xd6, 0xa2, 0xe0, 0x32, 0x24, 0x16, 0x34, 0xa6, 0x69, 0x97, 0x45, 0xf8, 0xdc, 0xae, 0xea, +0x4d, 0x75, 0xd4, 0x00, 0x72, 0x31, 0x80, 0x36, 0xb1, 0xd6, 0xe4, 0x98, 0xc8, 0x5b, 0xeb, 0xa0, +0x7e, 0x30, 0xeb, 0xe4, 0x7b, 0xd1, 0xc3, 0xa4, 0x29, 0xe9, 0x77, 0xa9, 0x7b, 0xf0, 0xdc, 0x9b, +0xb0, 0x37, 0x1a, 0xde, 0xcc, 0x85, 0x12, 0x48, 0x72, 0x20, 0xdd, 0xa3, 0xe0, 0x58, 0x1b, 0x76, +0x56, 0xa1, 0x0c, 0x69, 0x69, 0x81, 0x1c, 0xd8, 0x98, 0x22, 0x83, 0xa8, 0x52, 0xcd, 0x6e, 0x03, +0xb0, 0xfd, 0x54, 0xc3, 0x22, 0xa5, 0xc3, 0xfd, 0x8e, 0xe5, 0xca, 0x30, 0x57, 0xbf, 0x3f, 0x03, +0xae, 0x14, 0xe2, 0x98, 0xf8, 0x11, 0x66, 0x88, 0x18, 0xef, 0x4c, 0x78, 0x90, 0x05, 0x4f, 0xcd, +0xa5, 0xb5, 0x0f, 0x82, 0x77, 0x28, 0x35, 0x44, 0x09, 0xec, 0x9d, 0xe1, 0xbc, 0xcc, 0x53, 0x3a, +0x46, 0xea, 0x80, 0x18, 0xd0, 0xa5, 0x76, 0x4d, 0x44, 0x62, 0xb2, 0x08, 0x13, 0x5b, 0x52, 0xfc, +0xd6, 0x3f, 0x42, 0x80, 0x8d, 0xa5, 0xf4, 0x76, 0xf6, 0xb3, 0xad, 0xa3, 0x94, 0xc3, 0x21, 0xf6, +0x5c, 0x3f, 0x74, 0x7a, 0xd1, 0xa2, 0xc7, 0x64, 0xc0, 0xb9, 0x3b, 0x37, 0xc6, 0x28, 0xaa, 0x73, +0x58, 0x47, 0x7e, 0x7e, 0x19, 0x52, 0xd2, 0x7c, 0xc5, 0x5b, 0xe0, 0x71, 0x78, 0x87, 0x30, 0x3e, +0x21, 0x73, 0x1b, 0x19, 0x69, 0xe5, 0xb6, 0xa8, 0x0c, 0x8e, 0x30, 0xad, 0x0c, 0x85, 0xec, 0xbd, +0xe4, 0x44, 0xa5, 0xbd, 0xd5, 0x96, 0x8b, 0x63, 0x51, 0x6a, 0xd1, 0x3e, 0x27, 0x71, 0x74, 0xfc, +0x8c, 0x1c, 0x1a, 0x81, 0x5e, 0x3e, 0xe0, 0xcb, 0x99, 0xa1, 0x7a, 0xc0, 0x99, 0x87, 0x74, 0x84, +0xfc, 0x3c, 0xc9, 0xdf, 0x37, 0xb2, 0xfb, 0x14, 0x12, 0x04, 0x4a, 0x83, 0x79, 0x98, 0x9f, 0x49, +0x43, 0x78, 0xce, 0x80, 0xa0, 0xbb, 0x12, 0x40, 0x85, 0xf6, 0xca, 0xaa, 0x6e, 0x66, 0xde, 0x0d, +0xd5, 0x0e, 0x8f, 0x28, 0xdc, 0xe7, 0x9b, 0x87, 0xca, 0xae, 0xc0, 0xac, 0x08, 0xdc, 0xba, 0x00, +0xb0, 0xc0, 0xd3, 0xef, 0x4f, 0x44, 0xf7, 0xf4, 0x9e, 0x57, 0x3e, 0xc3, 0x99, 0x26, 0x74, 0x01, +0x16, 0x1d, 0x8e, 0x03, 0xa9, 0xde, 0xad, 0xc1, 0x0a, 0x84, 0xa5, 0xf5, 0xb2, 0x8f, 0x17, 0xef, +0xfb, 0x49, 0x28, 0x01, 0xa0, 0x22, 0x8e, 0x87, 0xe7, 0xf7, 0x13, 0x3a, 0xdb, 0x1b, 0xd3, 0x76, +0xc0, 0x85, 0x70, 0x15, 0x47, 0xfd, 0xfc, 0xa6, 0x97, 0x86, 0x33, 0xe0, 0xb6, 0x49, 0x75, 0x9c, +0x86, 0x50, 0xc3, 0x3c, 0x04, 0x18, 0xfd, 0xd7, 0x14, 0x50, 0x94, 0x01, 0xfe, 0x9c, 0x3c, 0xb6, +0xb4, 0xfb, 0xdc, 0x2e, 0xcc, 0xc7, 0xa3, 0x94, 0xf0, 0xa1, 0x6b, 0x4c, 0xac, 0x21, 0x91, 0xfd, +0xaf, 0x2a, 0xed, 0xe0, 0xb6, 0xf3, 0x07, 0x05, 0xfd, 0x05, 0x59, 0x85, 0x21, 0x21, 0x2c, 0xe8, +0x1c, 0x6d, 0xf3, 0x6c, 0x59, 0x2b, 0x29, 0x91, 0x09, 0x49, 0xe5, 0x34, 0x61, 0x8f, 0x94, 0xda, +0x2e, 0xd7, 0xe7, 0x16, 0x79, 0x1c, 0x77, 0x10, 0x67, 0x8f, 0x0e, 0x78, 0x9a, 0xb8, 0x16, 0x58, +0x2e, 0x34, 0x58, 0xec, 0xfc, 0xad, 0x4a, 0x5d, 0x33, 0x30, 0xcb, 0xac, 0x83, 0x76, 0x99, 0xfb, +0x82, 0x88, 0x7a, 0x79, 0x08, 0x6a, 0x3b, 0x43, 0x39, 0xc6, 0x44, 0x2a, 0x03, 0x19, 0xde, 0xc5, +0x64, 0x02, 0x56, 0x79, 0x09, 0xe0, 0xb2, 0x28, 0x20, 0x6b, 0xfa, 0xd6, 0xe2, 0xa4, 0xaa, 0x91, +0xfc, 0x0d, 0xda, 0x79, 0xc5, 0xfb, 0x1f, 0xf1, 0xdf, 0x8d, 0xb1, 0x69, 0x39, 0xe2, 0xb5, 0x6d, +0xc4, 0xce, 0x3e, 0x23, 0x3a, 0x50, 0x92, 0x98, 0x48, 0x02, 0x11, 0x75, 0xc9, 0x85, 0xdc, 0xd1, +0x73, 0xfc, 0xee, 0x67, 0x9d, 0x7c, 0x6f, 0x74, 0x06, 0x58, 0x1a, 0xdc, 0xd2, 0x34, 0xac, 0x77, +0x80, 0x91, 0xe6, 0x73, 0x88, 0x61, 0xcb, 0x4f, 0xe8, 0xfd, 0xad, 0xf1, 0x22, 0x25, 0x88, 0xab, +0x61, 0x47, 0x85, 0xbc, 0x6a, 0x5c, 0x74, 0xb6, 0xd8, 0x09, 0xc8, 0xf3, 0x8d, 0x26, 0x6b, 0x46, +0x2a, 0x87, 0x83, 0xdf, 0x87, 0x30, 0x85, 0x02, 0x04, 0xf5, 0xf7, 0xfe, 0x76, 0xc0, 0xe1, 0x82, +0x36, 0x73, 0x0e, 0x89, 0xbb, 0x60, 0xb8, 0xc9, 0x0a, 0xfa, 0xc4, 0x15, 0x96, 0x75, 0x58, 0x15, +0x9b, 0xe7, 0x32, 0x3e, 0x4c, 0x37, 0x91, 0x86, 0xd1, 0x48, 0x96, 0xe9, 0x3f, 0xfb, 0x20, 0x55, +0x85, 0xe6, 0xa7, 0x33, 0x77, 0x67, 0xfa, 0x69, 0x95, 0x76, 0x11, 0x96, 0x1c, 0x43, 0x54, 0x89, +0xf6, 0x57, 0x32, 0x51, 0x53, 0x34, 0x0e, 0xa3, 0x5b, 0x7c, 0xa8, 0xb1, 0xfb, 0x6c, 0x85, 0xec, +0x18, 0xa5, 0xde, 0x8f, 0xa4, 0x93, 0x4c, 0x30, 0xd1, 0xa0, 0xa5, 0x51, 0xd0, 0x2b, 0x50, 0xa4, +0xb5, 0x79, 0x2a, 0x51, 0x42, 0x6d, 0xf9, 0x20, 0x7d, 0x30, 0x83, 0xb7, 0x71, 0x45, 0x8f, 0x1b, +0x60, 0x64, 0xa0, 0x38, 0x67, 0x70, 0x71, 0xfc, 0xea, 0x11, 0xdb, 0x80, 0x56, 0x2b, 0x40, 0x91, +0x38, 0x6b, 0x91, 0x17, 0xe3, 0x1a, 0x14, 0x93, 0xd3, 0xe3, 0x30, 0xd5, 0x21, 0x89, 0x41, 0xaf, +0x77, 0xd8, 0x99, 0x68, 0xf9, 0x28, 0x88, 0xc8, 0x6f, 0x08, 0x8f, 0x01, 0x48, 0x0f, 0x98, 0xf2, +0xd0, 0x3b, 0xcf, 0xf6, 0xbe, 0xf2, 0x1f, 0x36, 0xe6, 0x3c, 0x75, 0x1f, 0xc2, 0x60, 0xdf, 0x7b, +0xc3, 0x1e, 0x57, 0x8f, 0xa3, 0xb8, 0x88, 0xac, 0x72, 0x62, 0x3b, 0x02, 0x86, 0xd8, 0x1c, 0x37, +0x28, 0x92, 0xcb, 0x4c, 0xa1, 0xbc, 0x23, 0x3f, 0x06, 0x89, 0x10, 0xe6, 0xe1, 0x58, 0x60, 0x06, +0x07, 0x55, 0xc7, 0xa9, 0x4d, 0xbe, 0x15, 0xfb, 0x76, 0xe2, 0x2b, 0xb0, 0x92, 0xbd, 0x52, 0xb7, +0xfe, 0x93, 0xcb, 0x59, 0xfa, 0xb6, 0xb1, 0x09, 0x37, 0xce, 0x84, 0xa5, 0xad, 0x17, 0x8a, 0x0c, +0x62, 0x76, 0x57, 0xa8, 0x9b, 0xef, 0xf6, 0x19, 0x00, 0x95, 0x08, 0x3e, 0x2e, 0x32, 0xc2, 0xca, +0xc7, 0x2e, 0x45, 0x13, 0x86, 0x94, 0x89, 0xa9, 0x7b, 0x72, 0x2f, 0x73, 0x8f, 0x23, 0x5c, 0xdf, +0xc5, 0x14, 0x88, 0x30, 0x42, 0xab, 0x23, 0xa4, 0xf4, 0x9f, 0x34, 0x20, 0xbe, 0xfb, 0x9b, 0x4d, +0x87, 0xaf, 0x29, 0x95, 0xe1, 0xca, 0x60, 0xb3, 0x88, 0x95, 0xde, 0xea, 0x87, 0xfe, 0x5b, 0x16, +0xb8, 0x8f, 0x94, 0xfa, 0x3d, 0xe2, 0xc5, 0x3b, 0x76, 0x78, 0x2d, 0xcd, 0x08, 0xcd, 0x78, 0xbc, +0x18, 0x79, 0x12, 0xa7, 0xd6, 0x95, 0x6e, 0x46, 0x96, 0x96, 0xe8, 0xe6, 0x5e, 0x1c, 0x4e, 0xb4, +0x75, 0xc0, 0x09, 0xfc, 0x12, 0x7a, 0xb9, 0xba, 0xad, 0x0a, 0xb4, 0x99, 0xba, 0xce, 0x95, 0x26, +0xdb, 0x32, 0x1c, 0xd0, 0x14, 0xab, 0x5e, 0x87, 0xf2, 0x2f, 0xc6, 0x12, 0x82, 0xdc, 0x27, 0x31, +0x65, 0x6c, 0x93, 0xab, 0x97, 0x35, 0xc6, 0x34, 0xa1, 0xb3, 0x80, 0xa0, 0xf1, 0x5a, 0xc7, 0xa4, +0x5d, 0x80, 0xbb, 0xbf, 0x31, 0xf4, 0x9a, 0x2e, 0x77, 0x60, 0x27, 0x6b, 0xb2, 0x35, 0xcd, 0x38, +0xc8, 0x11, 0x3f, 0xcf, 0x05, 0x68, 0x80, 0x26, 0x04, 0x30, 0x23, 0x5a, 0x83, 0xcd, 0xa6, 0x6b, +0xc1, 0xb3, 0x91, 0xeb, 0xe4, 0xca, 0x9e, 0x97, 0x7c, 0x58, 0x3d, 0xa0, 0xfe, 0x86, 0x8d, 0x96, +0x26, 0x18, 0xf3, 0x3e, 0xce, 0x3d, 0xdc, 0x48, 0x83, 0x24, 0x4c, 0x33, 0xcb, 0xb3, 0x59, 0x18, +0x96, 0x63, 0xba, 0x99, 0xb9, 0x6a, 0x5d, 0x1d, 0xd2, 0x05, 0x0e, 0x90, 0x18, 0xdd, 0xc1, 0x56, +0x89, 0x08, 0x77, 0x0e, 0xca, 0xab, 0xc6, 0xe2, 0x86, 0x7e, 0xca, 0xd4, 0x05, 0x97, 0x2c, 0xa8, +0x78, 0x43, 0x13, 0x4e, 0x2e, 0x70, 0x73, 0x5e, 0x51, 0x7b, 0xc5, 0x01, 0x75, 0x34, 0xfd, 0x19, +0x10, 0xf1, 0x12, 0x0f, 0xd4, 0x84, 0x53, 0xce, 0xc6, 0x60, 0x07, 0x3b, 0xf0, 0x83, 0x72, 0x0f, +0x0b, 0x50, 0x98, 0x7f, 0x9e, 0x8a, 0xcc, 0x15, 0x0b, 0x9e, 0x57, 0xd0, 0xc0, 0x09, 0x3b, 0x5f, +0xdd, 0x60, 0x63, 0x46, 0x9d, 0x42, 0xc9, 0xa3, 0xaf, 0x95, 0x0c, 0xda, 0x86, 0x42, 0x0e, 0x0c, +0x8a, 0x5c, 0x99, 0x59, 0xaa, 0x64, 0xa4, 0x2e, 0x5d, 0xed, 0x46, 0x93, 0xea, 0x78, 0xcf, 0x6b, +0xd1, 0xf2, 0x8c, 0x22, 0xe9, 0x7a, 0xf9, 0x17, 0x69, 0x1b, 0x86, 0x33, 0xce, 0x9e, 0x7b, 0x66, +0x5e, 0x4d, 0x2f, 0x7a, 0xa2, 0x80, 0x30, 0xb1, 0xb8, 0x5b, 0x54, 0xe3, 0x9e, 0x3e, 0x66, 0x46, +0x5a, 0x27, 0x4c, 0x18, 0x5f, 0xc1, 0xe4, 0x6e, 0x2d, 0x4b, 0xfb, 0xa3, 0x20, 0x44, 0xa7, 0x4b, +0xc5, 0xfd, 0x49, 0x5f, 0x18, 0x7d, 0x16, 0xfe, 0x1b, 0xfa, 0x7d, 0x72, 0x73, 0xc4, 0xec, 0xcf, +0x8f, 0x34, 0x2b, 0xab, 0xf6, 0xf3, 0xeb, 0x15, 0xea, 0x88, 0x09, 0xa7, 0x11, 0xc5, 0xaf, 0xc9, +0xa6, 0xf6, 0x28, 0xb8, 0xbe, 0x71, 0xad, 0x04, 0x62, 0x42, 0x26, 0x7b, 0xe9, 0xb1, 0x93, 0xb4, +0x1b, 0x05, 0x15, 0xfb, 0xc7, 0x02, 0x7b, 0x29, 0x1e, 0xb9, 0x15, 0x36, 0xb3, 0x60, 0xc5, 0x9d, +0x5b, 0x63, 0xc9, 0xfe, 0x8a, 0x5e, 0x6a, 0xec, 0x29, 0xc5, 0x44, 0x70, 0xd4, 0x58, 0xa7, 0x6c, +0x4c, 0x44, 0x93, 0x3e, 0xd3, 0x90, 0x8f, 0x20, 0x4f, 0x81, 0x68, 0xfb, 0xc2, 0x76, 0x98, 0xc8, +0x38, 0x2e, 0xe4, 0x75, 0x8b, 0xa4, 0x3a, 0x45, 0x42, 0x53, 0xd2, 0x5d, 0x67, 0x80, 0x8d, 0xd4, +0x39, 0xe6, 0xba, 0x39, 0x95, 0x6d, 0x12, 0x71, 0x5d, 0xad, 0x29, 0x67, 0x74, 0x93, 0x0f, 0xab, +0x12, 0x0a, 0x42, 0xfa, 0x13, 0x6f, 0x1b, 0x30, 0x93, 0xfe, 0x7c, 0x4a, 0xd8, 0xfe, 0x7f, 0xf0, +0x89, 0xca, 0x10, 0x31, 0xa8, 0xc5, 0x40, 0x32, 0x66, 0x67, 0x72, 0xa2, 0x2c, 0xe3, 0x8a, 0x46, +0x65, 0xc5, 0xd6, 0x11, 0xf1, 0xfa, 0x9f, 0xfa, 0xb3, 0xbf, 0xe2, 0x06, 0x8d, 0x1f, 0x7e, 0x12, +0xb4, 0xfe, 0x64, 0xa2, 0xbe, 0x8e, 0xba, 0x47, 0x82, 0x26, 0x7c, 0xd2, 0x3e, 0x6b, 0x9a, 0x56, +0x2a, 0x17, 0xd6, 0xeb, 0x32, 0xb4, 0xe3, 0xd9, 0x16, 0xc0, 0x60, 0x9e, 0x57, 0x61, 0x9a, 0x84, +0xa2, 0x8d, 0x40, 0xe4, 0x81, 0x36, 0x2b, 0x0a, 0x10, 0x67, 0x16, 0xbb, 0x63, 0xad, 0xb6, 0xee, +0xcd, 0x2e, 0x8e, 0xb0, 0xce, 0x28, 0x34, 0x0d, 0x00, 0xdf, 0x32, 0xdd, 0xa6, 0xf9, 0xfd, 0x6f, +0x91, 0x30, 0xb8, 0x83, 0x86, 0x3b, 0xd9, 0x70, 0xeb, 0xf6, 0x87, 0x41, 0x51, 0x17, 0xc9, 0xb0, +0x94, 0x52, 0x2b, 0xbf, 0xc9, 0x26, 0x6c, 0x43, 0x4b, 0x22, 0x07, 0xa3, 0x8b, 0xb0, 0x1c, 0xb0, +0x6f, 0x10, 0xbc, 0x80, 0xfc, 0x73, 0x58, 0x5d, 0xb7, 0x81, 0x69, 0xb7, 0x48, 0x2f, 0x2e, 0xe7, +0x6c, 0x38, 0xef, 0x2b, 0xaf, 0x0f, 0x3d, 0x97, 0xef, 0x75, 0x22, 0xb0, 0x3f, 0x99, 0x5c, 0x53, +0xd0, 0xd5, 0x6f, 0xe7, 0x92, 0x73, 0x8c, 0xb4, 0x2e, 0xf7, 0xd1, 0x0f, 0x49, 0x29, 0xb4, 0xf0, +0xc3, 0x69, 0x31, 0x29, 0xee, 0xa6, 0x4e, 0x8c, 0x51, 0x1e, 0xce, 0xf1, 0x17, 0x8f, 0x31, 0x86, +0x9b, 0xc1, 0xd2, 0x38, 0x8a, 0x28, 0x2a, 0x2d, 0x66, 0x60, 0x0f, 0x30, 0xf7, 0x3d, 0xca, 0x0c, +0xd3, 0x84, 0x18, 0xf0, 0x40, 0x18, 0x64, 0x50, 0x0f, 0xbf, 0xbe, 0xd9, 0xf9, 0x80, 0xae, 0x64, +0x8d, 0xd6, 0xc8, 0x3d, 0x2a, 0xd6, 0xd5, 0xa0, 0x57, 0x2a, 0x76, 0x7a, 0x1d, 0x7b, 0x77, 0x2f, +0xc8, 0x06, 0x33, 0x13, 0x05, 0xeb, 0xcc, 0x1b, 0x2f, 0xb7, 0xc7, 0x4b, 0xaa, 0x2b, 0xae, 0xcc, +0x42, 0x87, 0x4c, 0x0e, 0xff, 0x4a, 0xbc, 0xea, 0x79, 0xbf, 0x74, 0xb1, 0xe3, 0xa5, 0x21, 0x67, +0xac, 0x6f, 0xe6, 0x13, 0x3a, 0xa2, 0x66, 0x32, 0xb9, 0xa8, 0xc3, 0x6d, 0xe8, 0xfb, 0x77, 0xe7, +0x9d, 0x81, 0x97, 0x26, 0xc5, 0x31, 0x3c, 0xdb, 0x9d, 0x8c, 0x5b, 0x8d, 0x7a, 0x5b, 0xd8, 0x3b, +0x34, 0x1a, 0x4c, 0x4c, 0x9c, 0xd6, 0xa4, 0x3e, 0xbf, 0x13, 0x4f, 0x00, 0x55, 0x1e, 0x1b, 0xcd, +0x99, 0xfc, 0xa6, 0x87, 0x85, 0xf9, 0xa4, 0x93, 0x1f, 0x43, 0x69, 0x9f, 0xec, 0x44, 0x41, 0x9a, +0x56, 0xc2, 0xe3, 0x6c, 0xb0, 0x72, 0x70, 0x54, 0xb2, 0xf2, 0xc0, 0xd2, 0x7d, 0xe6, 0xf9, 0x04, +0xa5, 0x3a, 0x15, 0x2e, 0xef, 0x32, 0xde, 0x57, 0x97, 0xc8, 0x67, 0x66, 0xd2, 0x95, 0x6a, 0x78, +0x62, 0x23, 0x02, 0x79, 0x9b, 0x31, 0x90, 0xe4, 0x81, 0x25, 0x18, 0xf8, 0x68, 0x0d, 0x9b, 0x69, +0xa7, 0xe2, 0x78, 0xe5, 0xed, 0x6e, 0xb0, 0x72, 0x45, 0x07, 0xc7, 0x1b, 0x8d, 0x14, 0x30, 0xdd, +0xb5, 0xc0, 0x19, 0x84, 0x04, 0x87, 0xe5, 0xdf, 0xd3, 0x70, 0x33, 0x44, 0xb8, 0xfd, 0xad, 0x80, +0x06, 0x76, 0xde, 0x6c, 0xfb, 0x36, 0x31, 0xe5, 0xef, 0xba, 0xf2, 0x16, 0x4c, 0xec, 0x61, 0xd3, +0xcf, 0x6c, 0xb4, 0x6e, 0xb6, 0xdc, 0xfd, 0xac, 0xa0, 0x21, 0x2f, 0xde, 0x97, 0x8b, 0xcd, 0x91, +0x73, 0x7f, 0x87, 0xbb, 0x84, 0xc1, 0xdb, 0x24, 0x54, 0x82, 0x08, 0x72, 0xf6, 0x96, 0xc9, 0xd6, +0xcb, 0xf6, 0xce, 0x43, 0x8c, 0x00, 0x13, 0x0d, 0x1d, 0x30, 0x81, 0x6e, 0x3e, 0x09, 0x7b, 0xbd, +0xe7, 0x62, 0x56, 0x51, 0x37, 0x8a, 0xd2, 0xfc, 0x06, 0x24, 0x14, 0x9e, 0x40, 0x4e, 0x98, 0xa8, +0xb5, 0xf0, 0xdb, 0xd7, 0xf8, 0x01, 0x30, 0x5e, 0x3c, 0x51, 0xa3, 0xdf, 0xcb, 0x0b, 0x04, 0xab, +0x6f, 0xbb, 0xc1, 0x76, 0x0c, 0x6a, 0xa8, 0xde, 0x45, 0xa3, 0xd3, 0x9a, 0xd4, 0x92, 0x5e, 0xbc, +0x02, 0x7f, 0xe5, 0x41, 0x64, 0xfa, 0xe2, 0xb1, 0xa5, 0xcf, 0x03, 0x20, 0x99, 0x60, 0x36, 0x17, +0x23, 0x75, 0xcb, 0xac, 0xf6, 0x5c, 0x94, 0xc5, 0x0d, 0x27, 0x1a, 0x16, 0xca, 0xc8, 0x68, 0x0a, +0x18, 0xc4, 0x39, 0xb3, 0x28, 0x85, 0x8c, 0x5b, 0x54, 0xf2, 0x94, 0x14, 0x3b, 0xfd, 0x8a, 0x1b, +0xc4, 0x46, 0xb2, 0x8e, 0x35, 0x29, 0xc1, 0x4f, 0x57, 0xba, 0x21, 0xc5, 0x15, 0x21, 0x58, 0xeb, +0x5f, 0x9f, 0xaf, 0x96, 0x7b, 0x4d, 0x5f, 0x73, 0xa0, 0x72, 0xf5, 0x58, 0x97, 0xdf, 0x8b, 0xc6, +0x1d, 0xb5, 0x2e, 0xc0, 0xf7, 0xe2, 0x5e, 0xa1, 0x32, 0x3c, 0xe0, 0x4a, 0x49, 0x0c, 0x77, 0x9c, +0xfb, 0xce, 0x5a, 0x29, 0x0a, 0x51, 0x3a, 0xb9, 0x29, 0xca, 0x7d, 0x92, 0x1b, 0x97, 0xa1, 0xc6, +0x9d, 0x3a, 0x06, 0xd7, 0x19, 0xfd, 0xa1, 0x8d, 0xfa, 0xc0, 0xfb, 0xd0, 0x21, 0x34, 0xb2, 0xa8, +0x3d, 0x96, 0xa5, 0x4f, 0xf8, 0x72, 0x25, 0xb3, 0xa8, 0x63, 0x2f, 0x70, 0xd9, 0xc4, 0x4b, 0x9d, +0xbd, 0xef, 0x8f, 0x82, 0xd9, 0x8c, 0xcd, 0x93, 0xd3, 0x28, 0x6e, 0xa9, 0xd1, 0xcb, 0x15, 0x46, +0xfa, 0x1c, 0x48, 0xce, 0xa9, 0x08, 0x2b, 0xe9, 0xaf, 0x58, 0x35, 0x7b, 0x8f, 0x5b, 0x6b, 0x32, +0x3c, 0x42, 0x1d, 0x04, 0xfb, 0x55, 0xce, 0x2d, 0x80, 0x29, 0x88, 0x5f, 0x8b, 0x93, 0x85, 0xc6, +0x01, 0x43, 0xf0, 0x24, 0xe4, 0x2e, 0xad, 0x6c, 0x35, 0x92, 0x22, 0x01, 0xad, 0x5b, 0x7d, 0x5f, +0x00, 0x48, 0xf2, 0xc4, 0x63, 0xd7, 0xbe, 0xc8, 0xc3, 0xf2, 0xb6, 0xfb, 0x96, 0x05, 0xa1, 0x4c, +0x48, 0x29, 0x6f, 0x01, 0x12, 0x93, 0x35, 0x7c, 0x57, 0x5f, 0xcc, 0x4b, 0xc8, 0x23, 0xdd, 0x5b, +0x32, 0x55, 0xe4, 0xae, 0xb8, 0xac, 0x2d, 0xbf, 0xd8, 0x8c, 0xf6, 0x22, 0x64, 0xba, 0x7d, 0x41, +0xe1, 0x59, 0x14, 0xa7, 0x28, 0x03, 0x52, 0x67, 0x37, 0xe3, 0xdd, 0xb6, 0x38, 0x68, 0xca, 0xd8, +0x23, 0x66, 0x92, 0x9b, 0xda, 0x6a, 0x75, 0x32, 0xf8, 0xa9, 0x53, 0x67, 0xd3, 0xd0, 0xf0, 0xa6, +0x10, 0x78, 0x3b, 0xd5, 0xb2, 0x48, 0x29, 0xc8, 0x46, 0x83, 0xb8, 0xa0, 0xc9, 0x9d, 0x36, 0x9a, +0xce, 0x96, 0xf1, 0xff, 0xfa, 0x9a, 0xb7, 0x29, 0xdd, 0x28, 0x8d, 0x51, 0xa8, 0x80, 0x0f, 0xf1, +0x52, 0xa2, 0xba, 0x31, 0xbe, 0x11, 0x34, 0x3e, 0xf6, 0xca, 0xe8, 0x42, 0xd0, 0xc6, 0xf3, 0x34, +0xe8, 0x47, 0x12, 0xcf, 0x93, 0x2d, 0x83, 0x45, 0x47, 0xf4, 0x87, 0x0d, 0x59, 0x54, 0x22, 0x5f, +0xa9, 0xec, 0x81, 0xdb, 0x70, 0xfe, 0x89, 0x55, 0x9f, 0xf8, 0x29, 0x3d, 0x65, 0x87, 0x17, 0x1a, +0xee, 0x89, 0x36, 0x86, 0x72, 0xa1, 0x2d, 0x4e, 0xbc, 0x44, 0x00, 0xac, 0x55, 0x75, 0x7d, 0xe6, +0x17, 0x65, 0xc4, 0xca, 0x52, 0x13, 0x28, 0xf9, 0xfd, 0x2d, 0x1d, 0x41, 0xf7, 0xae, 0xdb, 0x07, +0x24, 0x8c, 0x1b, 0x8c, 0x9d, 0xc2, 0x8d, 0xff, 0xf6, 0x7b, 0x19, 0xad, 0x22, 0x71, 0x00, 0x0e, +0x8b, 0x2d, 0x2c, 0x97, 0xc7, 0x17, 0x91, 0xc9, 0x7d, 0x0c, 0x4b, 0xdc, 0x4f, 0xab, 0xe2, 0xcd, +0x61, 0x85, 0x89, 0xd3, 0xe2, 0xf4, 0xd8, 0x6e, 0x31, 0xaa, 0x8d, 0x3e, 0xce, 0xa0, 0x4b, 0xfd, +0x6f, 0xc9, 0x9d, 0xe1, 0xae, 0x42, 0xb2, 0x20, 0x87, 0xee, 0x69, 0xcd, 0x46, 0x5a, 0xbf, 0xbf, +0x29, 0xdf, 0x5e, 0x16, 0x01, 0x30, 0x00, 0x10, 0x80, 0x80, 0xfd, 0x4a, 0x10, 0xb9, 0x4e, 0x99, +0x51, 0x6e, 0xb6, 0x9d, 0x42, 0x65, 0x09, 0x04, 0xde, 0xfb, 0x28, 0x2c, 0x8f, 0xfc, 0xfc, 0x0b, +0x1d, 0xc8, 0xf6, 0x1e, 0xbf, 0x5c, 0xcd, 0xad, 0xac, 0x1e, 0x70, 0x78, 0x80, 0xc7, 0x0d, 0xf1, +0x89, 0x43, 0xe6, 0x9d, 0x9f, 0xfa, 0xfe, 0x38, 0x45, 0x33, 0x23, 0x45, 0x50, 0xf0, 0x41, 0x19, +0xd9, 0xa0, 0x72, 0x44, 0x0f, 0xb2, 0x34, 0x1f, 0x9a, 0x6f, 0x8e, 0x0a, 0x31, 0xb2, 0x8d, 0x71, +0xad, 0x3f, 0x8b, 0xef, 0x8e, 0x15, 0x74, 0x4c, 0xd6, 0x74, 0xee, 0x26, 0xec, 0xc5, 0x15, 0xfd, +0xa9, 0xf9, 0x45, 0x58, 0xd4, 0x75, 0xb5, 0x5c, 0x87, 0x79, 0x89, 0x32, 0xbe, 0x5a, 0xe5, 0xad, +0x83, 0x8e, 0xff, 0xe7, 0x0d, 0x45, 0x6a, 0xbd, 0xfe, 0x1d, 0x0f, 0xfe, 0x99, 0x5d, 0x78, 0x0f, +0x51, 0xba, 0xb0, 0xc8, 0x64, 0xa0, 0xd4, 0xbd, 0x52, 0x68, 0x95, 0x3d, 0x6f, 0xb2, 0x78, 0x95, +0xc0, 0x97, 0x00, 0xa5, 0xb9, 0x58, 0xdd, 0xfd, 0x20, 0x9c, 0x32, 0x50, 0x28, 0x81, 0x18, 0xd3, +0x17, 0x07, 0x84, 0xc6, 0x39, 0xa2, 0x5d, 0x1a, 0x37, 0x31, 0x8c, 0xfe, 0xa7, 0xc7, 0x59, 0x00, +0x3c, 0x49, 0xa8, 0xee, 0x5b, 0x9b, 0x10, 0x59, 0x09, 0xc0, 0x93, 0x99, 0x20, 0x29, 0x3e, 0xdc, +0xda, 0xd7, 0x88, 0x62, 0xbf, 0x52, 0xb7, 0x37, 0xc0, 0x6b, 0x06, 0x1c, 0xd0, 0x59, 0x80, 0xea, +0x39, 0x54, 0xfc, 0x67, 0x24, 0xf3, 0x75, 0x29, 0x16, 0xbc, 0xd8, 0x6a, 0x14, 0x04, 0x5c, 0xb7, +0x94, 0xd2, 0xaf, 0x07, 0xb5, 0xca, 0x22, 0x72, 0xa5, 0x75, 0xe1, 0x9a, 0x72, 0x28, 0xa3, 0x35, +0x7f, 0xbc, 0xd1, 0x70, 0x11, 0xc5, 0x8b, 0x6c, 0xb4, 0xac, 0xc4, 0x30, 0xa1, 0xfd, 0xd1, 0xbd, +0xa2, 0x53, 0x20, 0xcd, 0x64, 0xfd, 0xe6, 0x60, 0x22, 0x67, 0x44, 0x67, 0x17, 0x18, 0xe9, 0x73, +0xef, 0x85, 0xb2, 0x59, 0xef, 0x13, 0x9a, 0x3a, 0x22, 0xc4, 0xf6, 0x8c, 0x33, 0xf5, 0x44, 0xb4, +0x3c, 0xa3, 0xac, 0x1b, 0x56, 0x67, 0x52, 0xe3, 0xb5, 0x24, 0xbf, 0xec, 0xdd, 0x00, 0xf5, 0xc9, +0x7a, 0xb6, 0xe4, 0xf3, 0x8e, 0x21, 0x7b, 0x9e, 0x59, 0xd2, 0xe0, 0x56, 0xa0, 0x54, 0x4f, 0xc4, +0xf2, 0x79, 0xf9, 0xfc, 0xdb, 0xda, 0xbe, 0x75, 0x60, 0x59, 0xfc, 0x66, 0x12, 0xfa, 0x34, 0x04, +0xbc, 0xc3, 0x8a, 0x70, 0x6f, 0x71, 0xbb, 0x05, 0x40, 0x06, 0x46, 0x27, 0x61, 0x50, 0xed, 0x3e, +0xd8, 0x45, 0x17, 0x9d, 0x4d, 0x44, 0x32, 0x5a, 0xe0, 0x34, 0xdb, 0xa5, 0x46, 0xbe, 0x75, 0xb2, +0xb7, 0xb6, 0x80, 0x5c, 0x54, 0x75, 0x1e, 0x4e, 0x86, 0x87, 0xb5, 0x05, 0x02, 0xf4, 0xd4, 0x5d, +0xf2, 0xae, 0x89, 0x2e, 0x2f, 0x83, 0x3c, 0x9c, 0x2c, 0xe3, 0x5d, 0xf4, 0x8a, 0xe1, 0xd7, 0x0f, +0x00, 0x50, 0x8a, 0xdb, 0xfd, 0x21, 0xca, 0xea, 0x1a, 0x24, 0xd2, 0xdd, 0x55, 0x8c, 0xa1, 0x85, +0x29, 0x77, 0x74, 0xe0, 0xb4, 0x44, 0xea, 0x9b, 0x66, 0x71, 0xee, 0xdf, 0x1e, 0x0e, 0xdf, 0x1e, +0xf7, 0x7d, 0x5b, 0x6b, 0xda, 0xae, 0xf8, 0x79, 0x43, 0xe4, 0x7a, 0x86, 0x0f, 0x0b, 0xea, 0x9e, +0xa9, 0x40, 0x41, 0x57, 0xfa, 0x0a, 0x9c, 0xa0, 0xcf, 0x63, 0x48, 0x16, 0x4b, 0x84, 0xd8, 0x79, +0xaf, 0xb5, 0x64, 0xfc, 0xf0, 0x97, 0xc5, 0x8d, 0x7c, 0x36, 0x12, 0x69, 0xad, 0x39, 0x4a, 0x6c, +0x8c, 0x93, 0xa1, 0x8b, 0x00, 0xa2, 0x60, 0x87, 0x06, 0xa5, 0xa1, 0xdb, 0x98, 0x9f, 0x8b, 0x98, +0xad, 0x33, 0x14, 0x69, 0x6f, 0x05, 0xe1, 0x9a, 0x3c, 0x18, 0x12, 0xb2, 0x39, 0xd8, 0xa9, 0xbf, +0x9f, 0x41, 0x3a, 0xe2, 0x7a, 0xb0, 0x69, 0xf2, 0x66, 0x7e, 0xa4, 0xee, 0xbd, 0xfd, 0xa0, 0x20, +0x35, 0x40, 0x80, 0x44, 0x9e, 0xf2, 0x02, 0x7a, 0x78, 0x6e, 0x9d, 0xe7, 0x49, 0xdc, 0x7b, 0x59, +0xa0, 0x5a, 0x98, 0xc5, 0xe4, 0xac, 0xb0, 0x5d, 0x1e, 0xc1, 0xfa, 0xbd, 0x65, 0xf3, 0xb1, 0x26, +0xea, 0xd1, 0x02, 0xf5, 0xcd, 0x90, 0x27, 0x53, 0x18, 0xdd, 0x04, 0xed, 0x10, 0xd1, 0x3d, 0x84, +0xd9, 0xfd, 0xec, 0x9b, 0x1c, 0x1c, 0xe1, 0x03, 0xd9, 0xc3, 0x7f, 0xe9, 0xc6, 0x8d, 0x99, 0x5a, +0x1a, 0x28, 0x1a, 0xea, 0xba, 0x8b, 0x8b, 0x27, 0xc8, 0xe0, 0x21, 0xe1, 0x5c, 0x3a, 0xbe, 0x73, +0x02, 0xdb, 0x94, 0xab, 0xc1, 0xa2, 0x0a, 0x81, 0x9f, 0x78, 0x39, 0xca, 0x77, 0x1f, 0xeb, 0x61, +0x34, 0xe9, 0xd6, 0x75, 0x71, 0x17, 0x4b, 0x29, 0x26, 0xd5, 0xed, 0xa9, 0x3e, 0xb8, 0x39, 0x83, +0x81, 0x9d, 0x62, 0x13, 0x15, 0x68, 0x04, 0x73, 0x1b, 0xc4, 0x8e, 0xce, 0xac, 0x7d, 0x7a, 0xbd, +0xab, 0xb7, 0xcf, 0x73, 0x8c, 0x19, 0xfc, 0x97, 0x0a, 0x48, 0xba, 0xc9, 0x4c, 0xaf, 0xa1, 0xbb, +0xf9, 0x44, 0x9d, 0x32, 0x94, 0x55, 0xe0, 0x2b, 0x7b, 0x8d, 0xf2, 0x6a, 0x52, 0x19, 0xbd, 0xef, +0xec, 0xa6, 0x83, 0xc3, 0xfb, 0x0a, 0xfb, 0x73, 0x41, 0x6c, 0x0a, 0x5d, 0x7b, 0x27, 0xa7, 0xcd, +0x89, 0x01, 0x13, 0x25, 0xe2, 0xd7, 0x96, 0xdc, 0x14, 0xd6, 0x8b, 0x89, 0x44, 0xc0, 0x36, 0x84, +0xec, 0x7c, 0xe6, 0xc0, 0xf6, 0xc5, 0x7a, 0x9d, 0x23, 0xbe, 0xf7, 0xff, 0xb3, 0x67, 0x20, 0x89, +0x1f, 0x5c, 0xce, 0x3f, 0x3a, 0xd2, 0x87, 0x69, 0x91, 0x7f, 0x05, 0x76, 0x56, 0x1f, 0xb9, 0x3f, +0xfd, 0x01, 0x33, 0xf0, 0x8f, 0xfa, 0x79, 0x80, 0x63, 0xda, 0x26, 0xb8, 0x5d, 0x7e, 0x2b, 0x0b, +0xea, 0xd1, 0x72, 0x03, 0x82, 0x66, 0x86, 0xb1, 0x7f, 0xff, 0xd9, 0xd9, 0xb5, 0x11, 0xa5, 0x5d, +0x9a, 0x3b, 0x35, 0xbe, 0x74, 0x19, 0xda, 0xf9, 0x6f, 0x3f, 0x63, 0xb5, 0x64, 0x68, 0x7e, 0xa0, +0xdf, 0x4c, 0xe9, 0x50, 0x78, 0x7e, 0x25, 0xd1, 0xab, 0xba, 0x45, 0x0f, 0xbd, 0x8a, 0x02, 0x83, +0x55, 0xb5, 0x13, 0x1b, 0x5a, 0x1e, 0x22, 0x8e, 0xe3, 0xfe, 0xf9, 0xe6, 0xa0, 0x5a, 0x5a, 0x6e, +0x37, 0x3c, 0x34, 0x3d, 0x35, 0x7f, 0x04, 0x18, 0x8a, 0x0a, 0xa9, 0x73, 0xbd, 0xe5, 0x50, 0x3c, +0x7c, 0xa6, 0x03, 0xc9, 0xab, 0xe5, 0x3c, 0x23, 0x71, 0x88, 0x69, 0x6f, 0x2a, 0x6c, 0x6d, 0x75, +0xfc, 0x53, 0xa0, 0xfc, 0xfd, 0xca, 0xdd, 0xf1, 0x2e, 0x41, 0xe1, 0x6d, 0xb0, 0xdb, 0x62, 0xc7, +0xe0, 0x07, 0x51, 0xb1, 0x83, 0x21, 0xa2, 0x57, 0x20, 0x13, 0x6b, 0x19, 0x40, 0x02, 0x7d, 0xb2, +0x49, 0x1f, 0x27, 0x93, 0xda, 0xbb, 0x5c, 0x98, 0xa6, 0xd2, 0xd1, 0x3c, 0xca, 0x13, 0xa8, 0x1c, +0x6d, 0x8b, 0x6f, 0x9c, 0x5e, 0xfa, 0xf4, 0x2d, 0x31, 0x87, 0x91, 0x85, 0xa6, 0x22, 0xad, 0xb7, +0x67, 0xde, 0x69, 0x40, 0x2c, 0xc2, 0xe9, 0xe9, 0x79, 0xbd, 0x88, 0x18, 0x92, 0x26, 0x75, 0x18, +0x17, 0x04, 0xbb, 0xc4, 0x5c, 0x70, 0xd9, 0x12, 0x49, 0x73, 0xea, 0x69, 0xfd, 0x5a, 0x7c, 0xf0, +0xf1, 0x60, 0x36, 0xd9, 0xee, 0xc4, 0x0b, 0x83, 0xe6, 0x92, 0x4a, 0xe2, 0x8f, 0x46, 0x86, 0xc9, +0xf2, 0x1f, 0xd1, 0x1c, 0xa8, 0x82, 0x22, 0xd0, 0x03, 0xe3, 0xfc, 0xb0, 0x71, 0xb3, 0x38, 0xeb, +0x03, 0x96, 0xbe, 0xa8, 0xe8, 0xe6, 0x6c, 0xbc, 0x8a, 0x8d, 0x15, 0x78, 0xb0, 0x09, 0x0c, 0x6e, +0x05, 0xd0, 0x76, 0x1d, 0xd9, 0x5a, 0x71, 0xee, 0x71, 0x27, 0x06, 0xa4, 0xa3, 0x44, 0xaa, 0x67, +0xff, 0x44, 0x76, 0xdf, 0x89, 0x25, 0x64, 0x9e, 0x60, 0xac, 0xc7, 0x75, 0x40, 0x12, 0x93, 0xb8, +0x46, 0x9d, 0xff, 0x15, 0x0f, 0x43, 0xfc, 0x11, 0xc9, 0xc8, 0x75, 0xfa, 0x7c, 0x2e, 0x1d, 0xa1, +0x70, 0x27, 0xc6, 0xf5, 0x4c, 0xd3, 0x9f, 0xb7, 0xc2, 0xb4, 0x2c, 0x95, 0x9c, 0xf6, 0x93, 0xdc, +0x76, 0x48, 0x7a, 0x7c, 0xdb, 0xc8, 0x62, 0xd2, 0x29, 0x04, 0xb6, 0x83, 0x94, 0x88, 0x36, 0x6e, +0x6b, 0x37, 0x7f, 0x5f, 0xb6, 0x3e, 0x75, 0x55, 0xcc, 0xcd, 0x10, 0xc2, 0x3a, 0x36, 0x91, 0xbd, +0x4f, 0x13, 0x58, 0xd8, 0xf4, 0x9d, 0x5c, 0x10, 0x8e, 0x87, 0xbb, 0x82, 0x8f, 0x87, 0x02, 0x4f, +0x5b, 0x2e, 0xfa, 0x04, 0xa3, 0xe6, 0x08, 0xad, 0x67, 0x1e, 0x23, 0x9f, 0xf3, 0xba, 0x30, 0xf9, +0xfa, 0xb4, 0xf2, 0x2c, 0xe4, 0x6c, 0xce, 0x65, 0xbb, 0x41, 0x2f, 0xa1, 0x04, 0x2e, 0x3a, 0x43, +0x6b, 0x86, 0xb6, 0x0b, 0xd7, 0x58, 0x80, 0xc9, 0x3b, 0x6d, 0x8c, 0xec, 0x22, 0xe5, 0x96, 0x63, +0x75, 0xb5, 0x2e, 0x08, 0x16, 0xa1, 0x98, 0x49, 0xb4, 0xe4, 0x89, 0x88, 0x4c, 0x1e, 0x54, 0x8f, +0x72, 0x51, 0x35, 0xba, 0x45, 0xf7, 0x68, 0x89, 0x20, 0x0e, 0x30, 0x57, 0x60, 0xa0, 0x4f, 0x02, +0x67, 0x13, 0x60, 0x1d, 0x11, 0xb2, 0x27, 0x50, 0xe3, 0x79, 0x1a, 0xfb, 0x95, 0xf9, 0x9d, 0x3a, +0x67, 0x8f, 0xe9, 0x10, 0x25, 0x27, 0x92, 0xcd, 0x5b, 0xa7, 0xec, 0xbe, 0x16, 0x2b, 0x99, 0x07, +0xef, 0xc0, 0xf1, 0x0d, 0x14, 0x1b, 0x5e, 0xb3, 0xab, 0x22, 0x52, 0x94, 0x52, 0xf6, 0x8f, 0x2c, +0x35, 0xf5, 0xbe, 0xc9, 0xb4, 0x4b, 0xd8, 0xd2, 0x04, 0x41, 0x10, 0x41, 0x3e, 0x24, 0x0b, 0x7d, +0x3d, 0x2a, 0x5f, 0x0f, 0xd9, 0x0d, 0xb8, 0xef, 0xa1, 0xca, 0x47, 0xaf, 0xac, 0xde, 0x58, 0x8e, +0xd5, 0xf7, 0x3f, 0x96, 0xb9, 0x3d, 0xd6, 0xb3, 0x53, 0x9c, 0x74, 0x65, 0x78, 0x5b, 0xf8, 0x58, +0x9e, 0x02, 0x6e, 0xf7, 0x49, 0x36, 0x31, 0x46, 0xd1, 0xe3, 0x30, 0x33, 0xff, 0x0c, 0x21, 0x9c, +0xad, 0xc2, 0x60, 0x72, 0x92, 0xba, 0xbd, 0x61, 0xe8, 0x01, 0x6f, 0x20, 0x3d, 0xaf, 0x5c, 0xa1, +0xf4, 0xbb, 0x04, 0x24, 0x33, 0x4f, 0x86, 0x45, 0x17, 0x87, 0x47, 0x55, 0xf9, 0x78, 0xfa, 0x1a, +0xc9, 0xe0, 0x90, 0xf8, 0x93, 0xaf, 0xf6, 0x52, 0xbc, 0x24, 0x68, 0x25, 0x80, 0x7a, 0xfc, 0xe0, +0x1c, 0xef, 0xdd, 0x55, 0x04, 0xe0, 0xf7, 0xb5, 0xc0, 0x74, 0x01, 0x44, 0x28, 0x67, 0xf1, 0xd8, +0xe7, 0xe1, 0xbb, 0x46, 0xa5, 0x56, 0x25, 0xfe, 0x28, 0x4e, 0xea, 0xac, 0xa9, 0xb7, 0xce, 0x0f, +0x97, 0x34, 0x6d, 0xe6, 0xbc, 0x71, 0x65, 0x4b, 0x8a, 0xaf, 0x30, 0x70, 0xab, 0x4d, 0x11, 0x60, +0xc4, 0x43, 0x05, 0xec, 0x13, 0xd4, 0x89, 0x1d, 0x80, 0xf4, 0x87, 0x36, 0x6f, 0x97, 0xcc, 0xb6, +0xf1, 0x6c, 0xb4, 0x7c, 0x3a, 0x55, 0xc6, 0x0b, 0xe6, 0x0e, 0xd1, 0xbb, 0xdc, 0x9f, 0x45, 0x33, +0xa1, 0x40, 0x7c, 0xec, 0x2c, 0x1a, 0x31, 0x5a, 0xd9, 0x99, 0x0d, 0x59, 0xa6, 0xd5, 0x92, 0xb4, +0xea, 0xd5, 0x9b, 0x32, 0xf2, 0x5a, 0x15, 0x9f, 0xc4, 0x64, 0xa3, 0xba, 0x30, 0x89, 0x29, 0x41, +0xfd, 0xdb, 0x55, 0xa3, 0xbd, 0x0d, 0xe5, 0x78, 0x22, 0x45, 0x92, 0x8e, 0xd5, 0xa7, 0xc1, 0x16, +0x3a, 0x56, 0xbd, 0x88, 0x5c, 0x3e, 0xef, 0xbb, 0x07, 0x18, 0xe6, 0x8d, 0xbd, 0xca, 0xf1, 0x40, +0xc4, 0x15, 0x18, 0xdd, 0x7b, 0x98, 0x3a, 0x26, 0xb0, 0xbd, 0x1c, 0xd6, 0x41, 0xe6, 0x6b, 0x3c, +0xc6, 0x98, 0xdb, 0x6a, 0x9d, 0x61, 0x88, 0x8e, 0x72, 0x1d, 0x5d, 0xfb, 0x2a, 0xe4, 0xda, 0x57, +0xb8, 0xa9, 0xba, 0xca, 0x0a, 0x45, 0x5a, 0x5d, 0x36, 0x0b, 0x14, 0xfb, 0x4d, 0xa5, 0xce, 0xfa, +0x8e, 0x1a, 0x75, 0x80, 0x4c, 0x59, 0x44, 0x00, 0x97, 0x15, 0xbe, 0xb4, 0xe2, 0x2b, 0x49, 0x4a, +0xfb, 0xe4, 0xcf, 0x18, 0x49, 0xc1, 0x5e, 0x65, 0x56, 0x80, 0xcf, 0x46, 0x0a, 0x5a, 0xf7, 0x27, +0x7f, 0xcb, 0xb3, 0xe1, 0xa8, 0xc9, 0xe7, 0xf9, 0x72, 0xd7, 0xbc, 0x11, 0xfc, 0x3c, 0x8d, 0x24, +0x89, 0x58, 0x8f, 0xff, 0x3a, 0x27, 0xbf, 0xe3, 0x1f, 0x65, 0x59, 0xc0, 0x43, 0x5d, 0x0d, 0x0a, +0x83, 0x3f, 0xf5, 0x72, 0xab, 0x1d, 0x59, 0xb6, 0xe2, 0x55, 0x13, 0x06, 0xb3, 0xdf, 0x4d, 0x56, +0x82, 0xe4, 0x8e, 0x62, 0x52, 0xa8, 0x42, 0x9b, 0xdf, 0x1f, 0x2f, 0x62, 0xb2, 0xbd, 0xb3, 0xd0, +0xd6, 0x17, 0xf3, 0x8c, 0xdb, 0x7e, 0xb3, 0x7b, 0x2f, 0x6b, 0x49, 0x3d, 0x2b, 0x1b, 0x67, 0x22, +0xfb, 0x23, 0x21, 0x26, 0xfd, 0xe3, 0x41, 0xc2, 0xe7, 0xb6, 0x06, 0x2c, 0xaa, 0x4d, 0xe8, 0x25, +0x09, 0xce, 0xf2, 0xcf, 0xea, 0xaf, 0xff, 0xeb, 0x02, 0xbe, 0x33, 0x49, 0xb9, 0x54, 0xc3, 0x9c, +0xc3, 0x63, 0x31, 0xd0, 0x5e, 0xa0, 0xdb, 0x45, 0xd9, 0x8e, 0x26, 0x40, 0x85, 0x3b, 0x8f, 0xac, +0xf9, 0xf9, 0x10, 0xd7, 0x29, 0x5e, 0x3e, 0xfb, 0x7c, 0x32, 0x03, 0xee, 0x54, 0xe2, 0xa0, 0xe3, +0xb9, 0x64, 0x6e, 0x36, 0xcc, 0x47, 0xbe, 0x2b, 0x99, 0x22, 0x7e, 0x0f, 0x0b, 0xd4, 0xa5, 0xc1, +0x9e, 0x59, 0x58, 0x2e, 0x4b, 0x03, 0x60, 0x1d, 0xd8, 0x1d, 0xa0, 0xf6, 0xd5, 0xd9, 0x7e, 0x9d, +0xa7, 0x8c, 0x1d, 0x15, 0xa1, 0x5b, 0xc1, 0x2a, 0x4c, 0x8f, 0x9c, 0xa8, 0x23, 0x08, 0x2e, 0x75, +0x20, 0x19, 0x28, 0xae, 0xa5, 0x8e, 0x92, 0x6c, 0x20, 0xc8, 0x07, 0x0e, 0x99, 0x24, 0xa4, 0x4d, +0x3f, 0xc6, 0x29, 0xfc, 0x60, 0x1a, 0x43, 0xf4, 0x17, 0x19, 0x15, 0x1e, 0xd8, 0xe5, 0xac, 0x50, +0x86, 0xe0, 0xec, 0x14, 0xac, 0x24, 0x76, 0x4d, 0x51, 0x95, 0xab, 0x78, 0x5b, 0xb9, 0x6c, 0x5a, +0x7d, 0x30, 0xff, 0x34, 0x01, 0x19, 0xd4, 0x4d, 0xd2, 0xbd, 0x54, 0xe0, 0x05, 0x30, 0x23, 0x76, +0xed, 0xb2, 0x66, 0xcb, 0x06, 0x6a, 0x26, 0xb2, 0xc8, 0x8f, 0xe3, 0xb1, 0x75, 0x36, 0x79, 0x84, +0xa5, 0x52, 0x90, 0x62, 0x3a, 0xcc, 0xb3, 0x15, 0x4a, 0xf5, 0xab, 0x65, 0x60, 0x36, 0x8c, 0xf8, +0x13, 0xd4, 0x15, 0x47, 0xfc, 0xd0, 0x58, 0x7f, 0xce, 0x16, 0xec, 0x3e, 0x0b, 0x7a, 0x27, 0xf2, +0x62, 0x61, 0x28, 0x96, 0x9d, 0xf9, 0xac, 0xaa, 0x6b, 0x98, 0xe6, 0xd0, 0x96, 0x1b, 0xc5, 0xa6, +0x24, 0x17, 0xe6, 0x96, 0xb9, 0xf5, 0xe6, 0x3d, 0x81, 0xe2, 0x33, 0xdb, 0xc0, 0x95, 0x3e, 0xa3, +0x05, 0x52, 0xe7, 0x47, 0x7e, 0x2a, 0x02, 0xdd, 0xb6, 0xc8, 0xcb, 0x74, 0x46, 0xdb, 0xfb, 0x45, +0x30, 0xba, 0xb5, 0xf5, 0x2e, 0xad, 0x43, 0x91, 0x35, 0x23, 0xbf, 0xff, 0x9f, 0xe3, 0x7d, 0x90, +0xb4, 0x64, 0xde, 0x98, 0x6f, 0xd6, 0xfb, 0xf0, 0x8a, 0x12, 0xcb, 0x7e, 0x1c, 0xf5, 0xba, 0x8c, +0x23, 0x71, 0x74, 0x70, 0x4e, 0x39, 0xba, 0x9f, 0x4f, 0x5d, 0x09, 0x24, 0x7a, 0x24, 0x4e, 0x45, +0xec, 0x55, 0x42, 0x1e, 0xa5, 0xbb, 0xa1, 0x9f, 0xe7, 0x28, 0x2a, 0x3f, 0xca, 0x59, 0x76, 0x7d, +0x87, 0x7f, 0x23, 0x61, 0x04, 0xb5, 0x7e, 0xf7, 0x58, 0xaa, 0x82, 0xf4, 0x4a, 0xfb, 0x5c, 0xe9, +0x2a, 0x31, 0xbe, 0xac, 0xcc, 0xba, 0xdb, 0xc8, 0x7e, 0x68, 0x54, 0x39, 0x32, 0x47, 0x39, 0xa0, +0x1a, 0xa7, 0x0a, 0x7c, 0x9c, 0x35, 0x47, 0x29, 0x55, 0xe8, 0x7d, 0x64, 0x89, 0x75, 0x2a, 0xe7, +0xb8, 0x27, 0x05, 0xb7, 0x93, 0x64, 0x43, 0x75, 0xe4, 0xe4, 0xdc, 0x61, 0x64, 0xdb, 0xe5, 0xda, +0xda, 0x2c, 0x93, 0x11, 0x2e, 0x76, 0xbb, 0x35, 0x36, 0x88, 0x1a, 0x56, 0x6b, 0x09, 0x0a, 0x10, +0x23, 0xb8, 0xb0, 0xe9, 0x29, 0xf9, 0x9e, 0x14, 0xec, 0xce, 0x49, 0x73, 0xce, 0xf0, 0xa3, 0xf8, +0x9d, 0x9f, 0x90, 0x12, 0x54, 0xc8, 0x26, 0xdf, 0xd5, 0xda, 0x63, 0x7e, 0xb7, 0x76, 0x57, 0x57, +0x39, 0xd7, 0xb0, 0x97, 0x95, 0x02, 0x31, 0x4a, 0xfb, 0x93, 0x30, 0xeb, 0xdd, 0xf0, 0xc1, 0xd0, +0x1b, 0xcd, 0xa1, 0x43, 0xcf, 0x2a, 0xd1, 0xea, 0xd7, 0x9b, 0xc7, 0x71, 0xac, 0xec, 0x2c, 0x41, +0x4b, 0x26, 0x22, 0x28, 0x66, 0xc7, 0x26, 0xfe, 0x16, 0xfb, 0x14, 0x64, 0xd1, 0x6b, 0x9c, 0x5a, +0x00, 0x3d, 0x19, 0xf8, 0xc9, 0x03, 0xe7, 0x27, 0xbc, 0x9c, 0x81, 0x97, 0xcb, 0xe1, 0xfe, 0x98, +0x47, 0x11, 0xfc, 0x04, 0xb5, 0x19, 0x01, 0x40, 0xe6, 0x4f, 0x09, 0xc7, 0x7b, 0x0a, 0xff, 0xda, +0x59, 0x23, 0x44, 0x13, 0x5e, 0xb1, 0xbe, 0xf5, 0xa4, 0xfe, 0xdb, 0x89, 0x5e, 0x39, 0x0f, 0x06, +0x2c, 0x33, 0xa1, 0x22, 0xe9, 0x7f, 0xcb, 0x5c, 0x4b, 0x2d, 0x06, 0x18, 0x3f, 0x34, 0xdb, 0x64, +0x25, 0xde, 0x8f, 0x77, 0x17, 0x66, 0xa1, 0x68, 0x61, 0xc5, 0xc9, 0x55, 0x42, 0x1d, 0x5f, 0xa6, +0x2c, 0x9d, 0x43, 0x1a, 0x60, 0xf5, 0x7c, 0x3b, 0x60, 0x89, 0x16, 0x5c, 0xcd, 0xec, 0x35, 0x12, +0x83, 0x23, 0x11, 0xf3, 0xec, 0x50, 0x6f, 0xe0, 0x3f, 0x65, 0x15, 0x15, 0x0f, 0x47, 0xe3, 0x91, +0xc4, 0xd6, 0x94, 0x4c, 0x9e, 0x63, 0x37, 0x15, 0x8f, 0xa2, 0x66, 0x41, 0x37, 0xb5, 0xbf, 0xb0, +0xee, 0xdc, 0x5b, 0x80, 0x2b, 0xf7, 0x97, 0x04, 0x92, 0x70, 0x64, 0x19, 0x1f, 0x0c, 0x59, 0x66, +0x8e, 0x50, 0x02, 0xf2, 0x4a, 0xe8, 0x3b, 0x67, 0xd2, 0x19, 0x8e, 0xed, 0xd2, 0x44, 0x1b, 0x0b, +0xbe, 0x5e, 0xbf, 0x1d, 0xda, 0x18, 0x5a, 0x6a, 0xe1, 0xf4, 0x10, 0x3d, 0x46, 0xe8, 0x89, 0x2f, +0x7a, 0xc0, 0xa9, 0x04, 0x42, 0xf2, 0x53, 0x22, 0x25, 0x7c, 0x51, 0xa6, 0xa0, 0x9b, 0x2c, 0xdb, +0x7c, 0xad, 0x52, 0x2a, 0x0b, 0xcf, 0x83, 0x22, 0x75, 0x1d, 0xe9, 0xe3, 0x5e, 0x40, 0xa1, 0x9a, +0x0d, 0xb3, 0xce, 0xaa, 0x86, 0xb9, 0x7e, 0xf8, 0x6b, 0xf6, 0x6a, 0x0c, 0x88, 0x94, 0x3f, 0xf8, +0xa0, 0x2d, 0xfb, 0x63, 0xad, 0x89, 0x0e, 0xa5, 0x89, 0x46, 0x7c, 0x55, 0xa4, 0x2e, 0xb4, 0x7e, +0x9f, 0xe3, 0x8e, 0x69, 0x3c, 0xd2, 0xc5, 0x52, 0xf6, 0x06, 0x05, 0xb5, 0x27, 0x39, 0xbd, 0x10, +0xa2, 0x36, 0x13, 0xd6, 0xeb, 0xa3, 0xcd, 0x3c, 0xf1, 0x0e, 0x61, 0x67, 0x7f, 0xed, 0xc8, 0x14, +0x18, 0xa5, 0xd9, 0x41, 0xe5, 0xb7, 0xf9, 0xbd, 0x2f, 0x81, 0x76, 0x61, 0x71, 0x8e, 0xf0, 0xeb, +0x6a, 0x9c, 0xf3, 0x1e, 0xc3, 0xd6, 0xbb, 0x76, 0xe9, 0xa7, 0x4e, 0xf0, 0xdd, 0xba, 0xf8, 0xd4, +0xc3, 0x48, 0xbf, 0x51, 0x14, 0x45, 0xf4, 0x99, 0x18, 0x1b, 0x7b, 0xe7, 0xda, 0x7a, 0x7e, 0x68, +0x13, 0xe2, 0x21, 0x9f, 0xf1, 0x48, 0x9d, 0x96, 0x2f, 0x11, 0x69, 0x19, 0x10, 0x69, 0xc3, 0x7c, +0xe0, 0x59, 0x65, 0x6b, 0x38, 0xfe, 0x76, 0xf9, 0x66, 0x29, 0x61, 0x6b, 0xc6, 0xba, 0xff, 0x3b, +0x64, 0x8c, 0x33, 0xf2, 0xa1, 0x59, 0xbd, 0xf2, 0x54, 0x86, 0xc9, 0xc0, 0xdc, 0x6f, 0x92, 0xe5, +0x87, 0x54, 0xa8, 0x39, 0x3b, 0xa8, 0xf1, 0xa6, 0x86, 0x8b, 0xa4, 0xe7, 0x4e, 0x40, 0xab, 0x2b, +0xae, 0x45, 0xef, 0x74, 0x22, 0x87, 0xde, 0x32, 0xbd, 0xe8, 0xb5, 0xb4, 0xf0, 0xc0, 0xdf, 0x02, +0x3d, 0x4b, 0xe4, 0x42, 0xdd, 0xa6, 0x6e, 0x1d, 0xe7, 0xac, 0xdc, 0x11, 0x8b, 0xc9, 0x89, 0xab, +0xcb, 0xe3, 0xd8, 0xa6, 0x29, 0x60, 0xf1, 0x8d, 0x5d, 0x76, 0x2b, 0xe4, 0xa8, 0xc0, 0xe0, 0xf8, +0x5e, 0x48, 0x47, 0xb5, 0x73, 0x5f, 0xb1, 0x01, 0xf1, 0x74, 0x16, 0xe4, 0x52, 0xd4, 0x37, 0x1d, +0x61, 0x71, 0xff, 0xa4, 0xf9, 0x05, 0x9b, 0xa9, 0xfc, 0xa7, 0x83, 0x89, 0x2b, 0xef, 0xc4, 0xa9, +0x0b, 0x02, 0x7a, 0xb7, 0xff, 0x56, 0x4d, 0x24, 0xc2, 0x95, 0xe9, 0x22, 0xb8, 0x3e, 0x5f, 0x01, +0xfa, 0xcc, 0x70, 0xbd, 0x56, 0xba, 0x25, 0x0c, 0x5c, 0xeb, 0x7b, 0xae, 0xf5, 0xad, 0xc0, 0x3e, +0x65, 0x04, 0x92, 0x05, 0x5c, 0x52, 0x62, 0x6a, 0x14, 0xa0, 0xf6, 0xec, 0x3f, 0x28, 0xff, 0x88, +0x6e, 0xbe, 0xd3, 0xd7, 0xbe, 0x7b, 0x1d, 0x18, 0xe9, 0x6e, 0x84, 0xec, 0xb3, 0xf9, 0xc6, 0x57, +0xaf, 0x5a, 0x8a, 0xe6, 0xf2, 0xe1, 0x59, 0x25, 0x59, 0x3f, 0x14, 0xc3, 0xa8, 0xf5, 0xe3, 0x91, +0xf8, 0x66, 0x93, 0xf5, 0x5e, 0xd1, 0x21, 0x61, 0x2e, 0x12, 0xc2, 0x99, 0x86, 0x77, 0xc7, 0x80, +0x24, 0xbc, 0x2f, 0x1c, 0xe6, 0xe3, 0x69, 0x87, 0x51, 0xab, 0x07, 0xf1, 0x04, 0x7a, 0xa2, 0x6c, +0x12, 0xf9, 0x5f, 0xd7, 0x74, 0xc6, 0xa9, 0x85, 0xe1, 0x69, 0xab, 0x56, 0xee, 0x9e, 0x5b, 0x52, +0x89, 0x16, 0xa0, 0x7e, 0xb7, 0x75, 0x60, 0x74, 0x12, 0x42, 0x8e, 0x88, 0xd2, 0x79, 0x7b, 0xe7, +0x14, 0xff, 0xe5, 0x37, 0xeb, 0xbb, 0x32, 0xef, 0x95, 0xc0, 0xdb, 0x46, 0x5c, 0x5e, 0xaa, 0x09, +0x63, 0x51, 0xd2, 0x46, 0x5e, 0x53, 0xca, 0x6b, 0xad, 0xe3, 0x52, 0x31, 0x98, 0xbe, 0xd3, 0x7a, +0xe1, 0xbf, 0x6c, 0x06, 0x66, 0xe0, 0xd7, 0x46, 0x80, 0x44, 0xaf, 0x03, 0x1a, 0xf6, 0xdf, 0xe0, +0xb2, 0x05, 0xee, 0xc4, 0x04, 0xdb, 0x74, 0xab, 0x38, 0xa1, 0x04, 0x43, 0xdf, 0x5b, 0x2d, 0x57, +0x79, 0xbf, 0xaa, 0xf6, 0x65, 0x2b, 0xd4, 0x75, 0x2a, 0x6f, 0x08, 0xc2, 0x01, 0x1c, 0x96, 0xa8, +0x4b, 0xe8, 0x33, 0xe8, 0x67, 0xc1, 0x86, 0xe7, 0xa4, 0xf1, 0x59, 0x63, 0x7c, 0x0d, 0x7d, 0x5d, +0xe5, 0x2c, 0xf5, 0x7d, 0x2c, 0xe2, 0x7d, 0x1a, 0xa6, 0x34, 0xe6, 0xcf, 0x3b, 0xdc, 0xac, 0x41, +0x20, 0x2d, 0xf5, 0x54, 0x4e, 0x0e, 0x16, 0x88, 0x62, 0x3d, 0x65, 0xf4, 0xfc, 0xfb, 0xc5, 0x45, +0x58, 0x18, 0x0c, 0xf0, 0x43, 0x0d, 0xc1, 0x7b, 0x51, 0x50, 0xda, 0x58, 0xf5, 0x7a, 0x9d, 0x5c, +0x5e, 0x37, 0x7b, 0xb3, 0xf9, 0x3b, 0xcb, 0x27, 0x1d, 0x31, 0x20, 0x9a, 0x7e, 0x76, 0x74, 0x0f, +0x28, 0x7f, 0xc9, 0x32, 0x3a, 0xf1, 0x7f, 0xf3, 0x7b, 0x0d, 0xa9, 0x63, 0x03, 0x6b, 0x9d, 0x96, +0x63, 0xa8, 0x72, 0x40, 0xb7, 0x02, 0x26, 0x87, 0x23, 0xf7, 0xe5, 0x7d, 0x86, 0xc6, 0xb0, 0x7a, +0x95, 0x2f, 0x77, 0x8f, 0x52, 0xf0, 0x0e, 0x6a, 0x0b, 0x85, 0x7a, 0xf7, 0x98, 0xdf, 0x1f, 0xf6, +0x3e, 0x0a, 0x2b, 0xcc, 0x2a, 0x44, 0xdf, 0xc5, 0x14, 0x80, 0xe4, 0x05, 0xd3, 0xc7, 0x92, 0xbc, +0xaa, 0x6b, 0x65, 0x59, 0xd0, 0xb2, 0x2f, 0x86, 0x1e, 0x14, 0x10, 0x4b, 0x01, 0x9a, 0x01, 0x66, +0xf1, 0x2b, 0x62, 0xcf, 0x81, 0xe4, 0x2d, 0xbd, 0x32, 0xa3, 0x50, 0x6a, 0xb2, 0xb7, 0x72, 0xfa, +0x54, 0xff, 0xb9, 0x9b, 0x07, 0xd9, 0x56, 0x71, 0x48, 0xcf, 0xd9, 0xd5, 0x68, 0xec, 0xf8, 0x44, +0x1f, 0xf1, 0xb4, 0x15, 0x6e, 0x96, 0x6b, 0x01, 0x80, 0xa9, 0xd4, 0x97, 0x51, 0xd3, 0x99, 0xf3, +0x7b, 0x57, 0xc2, 0xc4, 0xee, 0x58, 0x87, 0x7a, 0x7c, 0x34, 0x30, 0x9c, 0xc5, 0xd1, 0x3c, 0x16, +0x7a, 0x71, 0x42, 0xe1, 0x45, 0x7b, 0x99, 0xa7, 0xb4, 0x84, 0x47, 0xa8, 0xb6, 0x3a, 0x14, 0x11, +0x3a, 0xfd, 0xf2, 0xf7, 0xf7, 0xaf, 0xed, 0x53, 0x8a, 0xaf, 0xb9, 0x10, 0xec, 0xe5, 0xf9, 0x32, +0xfe, 0x79, 0xd0, 0xed, 0x40, 0x5f, 0x4c, 0xe6, 0x0e, 0xdd, 0x02, 0x16, 0x2f, 0xd4, 0x24, 0xb5, +0xe9, 0x56, 0xf5, 0x8e, 0x6f, 0xdd, 0x20, 0x2e, 0x84, 0x1e, 0x5e, 0x27, 0x7d, 0x72, 0xd5, 0xf8, +0x49, 0x30, 0xca, 0x67, 0x1d, 0x20, 0x25, 0xc5, 0x12, 0x7c, 0x03, 0x53, 0xab, 0xaf, 0x3b, 0x70, +0x4d, 0x7d, 0xe7, 0xea, 0x5d, 0x9b, 0x83, 0x33, 0x64, 0x28, 0x89, 0x00, 0x0d, 0xbb, 0xe6, 0x06, +0xb8, 0xee, 0x43, 0xde, 0xc9, 0xe5, 0xab, 0xd5, 0x04, 0xf7, 0x63, 0xbb, 0x2b, 0x11, 0x47, 0x01, +0xd1, 0x5c, 0x54, 0xed, 0x67, 0x4e, 0x33, 0x7f, 0xbf, 0x31, 0xd9, 0xbd, 0x5c, 0x76, 0x2b, 0x1e, +0x70, 0x8e, 0xa7, 0x5f, 0x81, 0xf8, 0x65, 0x60, 0x35, 0xed, 0x8a, 0x91, 0x81, 0x7d, 0x53, 0x48, +0x0b, 0x00, 0xef, 0x86, 0x52, 0xf2, 0x5a, 0xd3, 0x44, 0x24, 0x1d, 0x2e, 0x33, 0x55, 0x9c, 0xb6, +0xa5, 0x24, 0x22, 0x46, 0x66, 0xde, 0x2f, 0xc6, 0x28, 0x48, 0x83, 0x65, 0xda, 0x57, 0x73, 0x16, +0xd4, 0xa2, 0xfc, 0xaf, 0xc4, 0xcf, 0x69, 0x4b, 0x74, 0x4c, 0x4d, 0x19, 0x05, 0xbc, 0x4b, 0x2e, +0x98, 0x51, 0x40, 0xfa, 0x24, 0xa0, 0x69, 0xdc, 0x5f, 0x1f, 0x35, 0xec, 0xb5, 0x9b, 0x48, 0x3d, +0x67, 0x70, 0x18, 0x87, 0x8f, 0x6a, 0xef, 0x5e, 0xbb, 0xb9, 0xab, 0x99, 0x1c, 0x2a, 0xbe, 0x92, +0xb4, 0xb8, 0xd4, 0xfc, 0xbd, 0x0b, 0x64, 0xdd, 0x1f, 0x18, 0x83, 0x1b, 0x66, 0xdd, 0x3b, 0x1f, +0x71, 0xe4, 0xc8, 0x8c, 0xae, 0x48, 0x44, 0x83, 0x72, 0xb8, 0x18, 0x41, 0xc2, 0x1b, 0x57, 0x83, +0x27, 0xf2, 0x90, 0x7d, 0xd9, 0xa1, 0xeb, 0xb6, 0x37, 0x64, 0x15, 0x3f, 0xc1, 0x12, 0x88, 0x8e, +0x54, 0xbc, 0x75, 0xd6, 0x83, 0xdc, 0xdd, 0xcd, 0x40, 0x59, 0xe8, 0x9a, 0xd0, 0x21, 0x25, 0x81, +0x7c, 0x17, 0xb3, 0x0c, 0x07, 0x58, 0x27, 0xb8, 0x2c, 0x6c, 0x54, 0x54, 0x35, 0x42, 0xef, 0xc1, +0x01, 0x0c, 0xae, 0x42, 0x5b, 0x1a, 0x79, 0xe2, 0xa5, 0x16, 0xea, 0xfe, 0x23, 0x3e, 0x14, 0x70, +0x0b, 0x36, 0xe8, 0xd6, 0xaf, 0x8a, 0x33, 0x98, 0x61, 0xbf, 0x39, 0xab, 0xb1, 0x0f, 0x91, 0xec, +0x83, 0x07, 0x55, 0x56, 0x85, 0x33, 0xa9, 0x1d, 0x67, 0x4d, 0x92, 0x7e, 0x0f, 0xa8, 0x4e, 0x2c, +0xfc, 0x7b, 0x5f, 0x6e, 0x5a, 0xd5, 0xfc, 0x11, 0x48, 0xb1, 0x8e, 0x86, 0x79, 0x01, 0xa3, 0xbf, +0x85, 0x4f, 0x17, 0x21, 0xc9, 0x75, 0x7e, 0x81, 0xdc, 0x20, 0xb2, 0x6c, 0x1e, 0x65, 0xb5, 0x4b, +0x6c, 0xd0, 0xae, 0x11, 0x92, 0x38, 0xd3, 0x59, 0xac, 0xf7, 0xb7, 0x44, 0x4d, 0x91, 0x0f, 0x8f, +0x8e, 0x08, 0x48, 0xf0, 0xf3, 0xce, 0xf3, 0x5e, 0x3f, 0x4b, 0x3d, 0x51, 0x2c, 0x82, 0x72, 0x6f, +0x3c, 0xc9, 0xaa, 0xe7, 0x39, 0x58, 0x5e, 0x52, 0x3c, 0xf9, 0xe1, 0x7f, 0x40, 0x5f, 0x50, 0xc7, +0xc7, 0x49, 0xd3, 0xe9, 0x8c, 0x11, 0xc7, 0xa2, 0x51, 0xb2, 0x0d, 0x72, 0x0e, 0xa8, 0x1b, 0x3c, +0xea, 0xbe, 0xe0, 0x37, 0x12, 0x37, 0xa7, 0xec, 0x00, 0xf6, 0xb1, 0xa7, 0xaa, 0xff, 0xe4, 0xb2, +0x28, 0xbf, 0x39, 0x3f, 0x56, 0x50, 0xd2, 0x80, 0xb0, 0x61, 0x81, 0xcb, 0xbb, 0x67, 0x9a, 0x52, +0xc4, 0xb0, 0x0e, 0xf9, 0x0c, 0x9f, 0x61, 0xa6, 0xca, 0xef, 0xc9, 0x5a, 0x86, 0x2e, 0x91, 0x64, +0x6e, 0xce, 0x26, 0x05, 0x04, 0x07, 0xf1, 0x5c, 0xca, 0xe9, 0x66, 0xa8, 0x45, 0x28, 0x85, 0xed, +0x87, 0xad, 0x31, 0xc0, 0xae, 0x7e, 0x24, 0x4a, 0x3d, 0x16, 0x67, 0x0e, 0x5d, 0xb6, 0xb1, 0xee, +0x5f, 0xbd, 0x0a, 0xc9, 0xf2, 0xce, 0x4a, 0x3c, 0x49, 0x6a, 0x76, 0xbe, 0xee, 0x98, 0x6d, 0x60, +0x4a, 0x84, 0x0f, 0x69, 0x5d, 0x40, 0xf3, 0x7a, 0x82, 0xe5, 0xd0, 0x86, 0xef, 0x34, 0x65, 0x64, +0x22, 0x6b, 0xe7, 0x7b, 0xee, 0x7e, 0xe4, 0x4a, 0x25, 0x47, 0xf5, 0xce, 0xd8, 0x04, 0xcc, 0x8c, +0x9b, 0x82, 0xd0, 0x3d, 0xe3, 0x29, 0xb5, 0xb3, 0x8a, 0x78, 0x6f, 0xd0, 0xdc, 0x79, 0x9a, 0xc5, +0x78, 0x2d, 0x55, 0x98, 0xa1, 0x7a, 0x7e, 0xac, 0x42, 0x63, 0xa4, 0x4b, 0xac, 0x9b, 0x64, 0x6e, +0x2a, 0x44, 0xd1, 0x01, 0x47, 0x3d, 0x5c, 0xc9, 0xba, 0xc9, 0x5b, 0x90, 0x76, 0x65, 0x93, 0x7e, +0xc9, 0xe4, 0xc0, 0x89, 0xde, 0x6e, 0x42, 0x18, 0x53, 0x7e, 0xea, 0x22, 0xb0, 0xc4, 0xe0, 0x7f, +0x33, 0x57, 0x6b, 0xd7, 0x6f, 0x19, 0xe2, 0x1a, 0x9a, 0xd1, 0x62, 0x65, 0x63, 0xf5, 0x9e, 0x5e, +0x4d, 0x91, 0xd0, 0x99, 0x7e, 0x7d, 0x93, 0xf0, 0xf5, 0xea, 0x43, 0xcb, 0x42, 0x4a, 0x17, 0x5a, +0xe5, 0x57, 0x8c, 0x0a, 0xa3, 0x07, 0xf2, 0x08, 0x7a, 0x02, 0x32, 0x1d, 0x9f, 0x3d, 0xd3, 0x50, +0xcf, 0xd7, 0x38, 0xed, 0xb0, 0x4b, 0x44, 0x41, 0x4d, 0xec, 0x04, 0xb7, 0x1e, 0x28, 0x26, 0x89, +0x6f, 0xbb, 0x15, 0xfd, 0xc7, 0xbf, 0x53, 0x1b, 0x8e, 0xd3, 0x8a, 0x11, 0xbc, 0x7f, 0xb9, 0xa5, +0xd6, 0x6b, 0x6f, 0x9a, 0xb2, 0x13, 0x5a, 0x54, 0x8e, 0x21, 0x29, 0x02, 0x7f, 0xb5, 0x08, 0x6b, +0x12, 0xfe, 0x08, 0xc1, 0x1c, 0x52, 0x71, 0x18, 0xc5, 0xd6, 0xcd, 0x6d, 0xbc, 0xa5, 0xc0, 0x73, +0x27, 0x72, 0x96, 0x49, 0xb3, 0x8d, 0xa0, 0x6c, 0x58, 0xf7, 0x68, 0xf4, 0x12, 0xe7, 0xa1, 0xeb, +0xfb, 0xa1, 0x9e, 0xa8, 0x49, 0x17, 0xdc, 0xb8, 0x96, 0x68, 0x16, 0xb8, 0x4e, 0xb5, 0xb4, 0xc8, +0x0e, 0x5b, 0xdc, 0xdc, 0x70, 0x42, 0x0d, 0xf4, 0xc3, 0xe0, 0xaf, 0xc2, 0x1c, 0x0e, 0x97, 0x23, +0xb4, 0xee, 0x1d, 0x9d, 0xaf, 0xf6, 0xe9, 0x5d, 0x09, 0x1f, 0xe9, 0x6f, 0x6b, 0x84, 0x84, 0xfe, +0xfe, 0x56, 0x25, 0x5a, 0x26, 0x41, 0x61, 0x9c, 0x54, 0xfc, 0xe2, 0xc5, 0x6b, 0xe7, 0x73, 0xa9, +0x08, 0x1e, 0x04, 0xbe, 0x9b, 0xb6, 0xa2, 0x3a, 0x25, 0x1b, 0xec, 0xad, 0x62, 0x51, 0x55, 0x28, +0x07, 0x0f, 0x73, 0x15, 0x2d, 0x01, 0xfd, 0x30, 0xcf, 0x40, 0x30, 0x4b, 0xe9, 0x23, 0x74, 0x8e, +0xf5, 0xbc, 0x96, 0xd0, 0x5f, 0x70, 0x03, 0x4b, 0xe9, 0xe0, 0x9f, 0xcc, 0xb3, 0x48, 0x96, 0x04, +0x27, 0x39, 0x58, 0x3c, 0xa3, 0x2a, 0x17, 0x14, 0xf2, 0xbe, 0x4c, 0x20, 0xb0, 0x40, 0x95, 0x79, +0xe1, 0xc7, 0x9d, 0x18, 0x71, 0xeb, 0xd1, 0x46, 0xb6, 0xa4, 0xbe, 0x2c, 0x93, 0xae, 0x32, 0xf1, +0xbd, 0xc6, 0x75, 0x1e, 0xdf, 0x44, 0xce, 0xa1, 0xe8, 0x05, 0xc6, 0x1a, 0xfc, 0xbc, 0x2b, 0x10, +0x54, 0x39, 0x27, 0x1a, 0x87, 0x4b, 0xce, 0xed, 0x73, 0x4d, 0x12, 0xde, 0xf7, 0x81, 0x0b, 0x36, +0x5e, 0x09, 0xaf, 0x8a, 0xed, 0x59, 0x9e, 0x1a, 0xf7, 0x61, 0x0f, 0xb2, 0x0f, 0x3b, 0x80, 0xdc, +0xb9, 0xeb, 0xdd, 0xa1, 0xae, 0x7f, 0x64, 0xae, 0x31, 0xf0, 0x73, 0x2c, 0xf5, 0x20, 0x6f, 0x0e, +0xe6, 0x6f, 0x02, 0x9e, 0x63, 0xdf, 0x91, 0xba, 0x18, 0xae, 0x98, 0xeb, 0xc8, 0xa1, 0xff, 0x11, +0x28, 0xb9, 0x71, 0xb9, 0x56, 0x69, 0xfe, 0x92, 0x61, 0x1e, 0xb5, 0x46, 0xe0, 0x72, 0x11, 0xf1, +0xa6, 0x51, 0x9a, 0x9b, 0xc9, 0xe4, 0xe6, 0x29, 0x5a, 0xfb, 0x64, 0xba, 0x05, 0xdc, 0xb0, 0xb8, +0xbc, 0x72, 0xf2, 0x4e, 0xb1, 0x43, 0xa3, 0x22, 0xf4, 0x28, 0xeb, 0xd4, 0x31, 0x3c, 0xe1, 0xb8, +0xa7, 0xb8, 0x13, 0xe7, 0x13, 0x38, 0x6a, 0x51, 0x99, 0x7b, 0xc8, 0x56, 0xe1, 0xd8, 0x46, 0x05, +0x10, 0xa2, 0x03, 0xe3, 0x63, 0x13, 0xa5, 0xaa, 0x0b, 0xcc, 0x0a, 0x19, 0x4a, 0x90, 0x28, 0x84, +0xfc, 0x57, 0x2c, 0xde, 0xc5, 0x06, 0xd3, 0x3f, 0x5f, 0xbe, 0x9b, 0xf1, 0xa2, 0xaf, 0x31, 0xc0, +0x93, 0x84, 0xbc, 0x27, 0x39, 0x97, 0x35, 0x1a, 0x87, 0xea, 0x16, 0x95, 0xf3, 0xc3, 0xc0, 0x5d, +0xfc, 0xa6, 0x22, 0x39, 0xd1, 0x03, 0xb0, 0xec, 0x76, 0xf3, 0xac, 0x97, 0xe5, 0x8f, 0x4c, 0x2d, +0x90, 0x63, 0x95, 0xc4, 0xbd, 0xe8, 0x37, 0xeb, 0x26, 0x08, 0xb2, 0xf3, 0xb4, 0xa5, 0xf9, 0x2b, +0x26, 0xd0, 0x7a, 0x1e, 0x14, 0x52, 0xad, 0x54, 0xc9, 0x17, 0x7e, 0xf7, 0xf8, 0xdb, 0x53, 0xbb, +0x1d, 0x0e, 0xe0, 0xc8, 0x7c, 0x06, 0xdd, 0xf5, 0x85, 0x08, 0xd4, 0xe0, 0x5f, 0x6d, 0x4c, 0x38, +0x4a, 0x3f, 0x4a, 0xeb, 0x42, 0x17, 0xe4, 0x11, 0x2a, 0xfa, 0x5f, 0x44, 0xf1, 0x13, 0x10, 0xa9, +0x9e, 0x4c, 0xe1, 0x9f, 0x78, 0x56, 0xfb, 0xc6, 0x95, 0x6e, 0x0e, 0x4c, 0xe3, 0xe1, 0xd0, 0x71, +0xb0, 0x04, 0x8f, 0x9d, 0x6c, 0x39, 0x8c, 0xc9, 0xa8, 0xbb, 0xd0, 0x84, 0xb8, 0x78, 0x66, 0x9f, +0x5c, 0x47, 0xe5, 0xd1, 0x5f, 0x3c, 0x60, 0xce, 0x0a, 0xf3, 0xc9, 0x8e, 0x38, 0x32, 0xc8, 0x17, +0x08, 0x8b, 0x91, 0xb9, 0xc7, 0xb0, 0xee, 0xb3, 0xf6, 0x32, 0x88, 0xa3, 0x06, 0x43, 0x59, 0x78, +0xaa, 0x80, 0x31, 0x82, 0xfb, 0x64, 0x8f, 0x57, 0x44, 0x56, 0x69, 0xe9, 0x7b, 0x07, 0x50, 0x59, +0x5c, 0x07, 0x4c, 0x01, 0x2b, 0xf1, 0x0f, 0x32, 0xc7, 0xdb, 0x83, 0x55, 0xcf, 0x5e, 0xdc, 0xd8, +0x04, 0x8b, 0xa3, 0x5a, 0x70, 0xa4, 0xb5, 0xe6, 0x94, 0x62, 0x03, 0x30, 0xd9, 0x01, 0xdd, 0x1b, +0xc3, 0x08, 0x25, 0xcf, 0x43, 0x10, 0x73, 0x7a, 0x24, 0x7a, 0xa8, 0x03, 0xca, 0x70, 0x2b, 0x2d, +0x36, 0x73, 0xec, 0x24, 0xaf, 0x68, 0x4a, 0x75, 0x05, 0xc8, 0x85, 0xbd, 0x7c, 0x6d, 0x00, 0xde, +0xf6, 0x95, 0x2e, 0x24, 0x8c, 0xfd, 0x88, 0x2b, 0xf5, 0xae, 0x37, 0x4a, 0x63, 0xd2, 0xe8, 0x1e, +0xec, 0xb5, 0x62, 0x01, 0x71, 0xd2, 0xb2, 0xb1, 0xfb, 0xbd, 0xe6, 0x81, 0x20, 0xdc, 0x6b, 0x52, +0x2e, 0xdf, 0xc9, 0x77, 0xfa, 0xc5, 0x80, 0xf5, 0xa6, 0xd5, 0xe2, 0x54, 0x75, 0x8f, 0x51, 0x0f, +0x23, 0xd0, 0xa4, 0x50, 0x9d, 0xe9, 0x3e, 0x94, 0x44, 0xa8, 0x51, 0x7a, 0x46, 0xce, 0x99, 0x19, +0x67, 0x28, 0xaa, 0x15, 0x00, 0x9d, 0x17, 0x20, 0x64, 0x53, 0x95, 0x0e, 0xe7, 0x85, 0xca, 0x91, +0x58, 0x6f, 0xd0, 0xf8, 0x63, 0x8d, 0x42, 0x6f, 0xec, 0x63, 0x88, 0x20, 0x39, 0xf3, 0x32, 0x95, +0x19, 0xc0, 0xbd, 0xf4, 0xda, 0x6d, 0x48, 0x9e, 0x97, 0xe6, 0x4d, 0x08, 0x59, 0x54, 0x50, 0x14, +0x1f, 0xfa, 0xa1, 0xca, 0xf6, 0x50, 0xbb, 0x31, 0xea, 0xdf, 0x88, 0x10, 0xc2, 0xec, 0x3b, 0xa2, +0x23, 0x8d, 0xdd, 0xfe, 0xe1, 0xe3, 0x6b, 0x70, 0xc3, 0x53, 0x47, 0xe8, 0x16, 0xb1, 0x5f, 0x7c, +0x55, 0x70, 0xa5, 0xa4, 0x96, 0x43, 0x38, 0xac, 0x58, 0x39, 0x18, 0x35, 0xef, 0xda, 0x93, 0x4e, +0x4e, 0xae, 0x9c, 0x3a, 0x11, 0xab, 0x27, 0xf1, 0x9e, 0x06, 0x8a, 0x6b, 0x36, 0x0d, 0x10, 0xd9, +0x00, 0x56, 0x93, 0xe0, 0x49, 0xe9, 0xc5, 0xec, 0x91, 0x9c, 0xa9, 0x9d, 0x7c, 0x32, 0x53, 0x7c, +0x81, 0x60, 0xbc, 0xcc, 0x08, 0x0d, 0x07, 0x07, 0x7c, 0xd1, 0xab, 0x12, 0x18, 0x83, 0x90, 0x8e, +0x63, 0xd4, 0xde, 0x1a, 0x7b, 0x7e, 0xcc, 0xe7, 0x16, 0x44, 0x66, 0x4e, 0xec, 0x9b, 0xf0, 0xbf, +0x6a, 0xe1, 0x7b, 0xdd, 0xe0, 0xb9, 0x9d, 0x26, 0x48, 0xba, 0x4b, 0x0c, 0x70, 0x0e, 0x7e, 0xd0, +0x66, 0xb7, 0x22, 0xa4, 0x68, 0xda, 0x22, 0x16, 0x42, 0xbc, 0x75, 0xb0, 0x54, 0x6f, 0x02, 0x4f, +0xde, 0x44, 0xd0, 0x55, 0xa8, 0xe1, 0xca, 0xb3, 0x56, 0x09, 0x2b, 0xe9, 0x10, 0x94, 0xe7, 0x99, +0x2c, 0xdf, 0xb0, 0x37, 0xeb, 0x73, 0x7a, 0x2c, 0x8d, 0x62, 0xee, 0x3f, 0x88, 0x28, 0xc5, 0xbc, +0x20, 0xe6, 0x0a, 0x3e, 0x76, 0x3b, 0xd9, 0x9b, 0xee, 0xe5, 0x46, 0x3b, 0xea, 0x11, 0x09, 0x33, +0xbe, 0x5a, 0xbb, 0x92, 0x60, 0x24, 0x71, 0x7a, 0x6a, 0x40, 0x43, 0x14, 0x0f, 0x63, 0x07, 0x29, +0x6b, 0x39, 0x68, 0x54, 0xb9, 0x54, 0xeb, 0x08, 0xce, 0xd0, 0xec, 0x76, 0xe5, 0xa7, 0x48, 0xde, +0x36, 0x73, 0xf8, 0x2e, 0x03, 0x37, 0xf7, 0xca, 0x68, 0xef, 0xd0, 0x18, 0x02, 0xea, 0x0e, 0x5a, +0xcc, 0xa1, 0x40, 0xa1, 0x57, 0x6c, 0xe0, 0xc0, 0x1a, 0x48, 0xc4, 0xf9, 0x9a, 0xd4, 0xfd, 0xdd, +0x71, 0xd2, 0xf2, 0x8f, 0x6c, 0xc8, 0x35, 0x7c, 0x9f, 0xba, 0x73, 0x20, 0xda, 0xe3, 0xb5, 0xaa, +0xd6, 0x4e, 0x45, 0xf7, 0x9c, 0xd7, 0xfe, 0x49, 0x2e, 0x42, 0x25, 0x32, 0x10, 0x52, 0xb6, 0x7c, +0xe1, 0x3a, 0xc1, 0x09, 0x58, 0x44, 0x41, 0x7d, 0x73, 0x17, 0x9c, 0x0f, 0xfa, 0x05, 0x47, 0xc1, +0x66, 0xb7, 0xb1, 0xb7, 0xc8, 0xb9, 0x51, 0xb1, 0x7e, 0x03, 0xa1, 0xbe, 0x3b, 0x1f, 0x1e, 0x64, +0x5f, 0x45, 0x6a, 0x72, 0xf2, 0x70, 0xe9, 0x21, 0xe3, 0x88, 0x11, 0x9a, 0xfa, 0x6d, 0x6e, 0x42, +0x3d, 0x64, 0x35, 0xdf, 0x05, 0xd2, 0xa0, 0xdd, 0xb1, 0x0a, 0x69, 0x5b, 0x88, 0x99, 0x0b, 0x58, +0xf2, 0x54, 0x50, 0xa6, 0xbe, 0xfb, 0x46, 0x2f, 0x3a, 0x98, 0x5f, 0x68, 0x0c, 0x6a, 0x29, 0xfc, +0x97, 0x28, 0x05, 0x18, 0xef, 0x7c, 0xb0, 0xe7, 0x33, 0xd7, 0x6b, 0x65, 0x6a, 0xb4, 0x8c, 0x98, +0xd8, 0x40, 0x55, 0x60, 0xb7, 0xc5, 0x12, 0x6c, 0x55, 0x0c, 0x7b, 0xa4, 0x62, 0x4e, 0xca, 0x1b, +0x63, 0x52, 0x75, 0xc9, 0x15, 0x9d, 0x92, 0x48, 0x2b, 0xee, 0xac, 0x97, 0x25, 0x24, 0x2b, 0xc2, +0x1c, 0x0b, 0x65, 0xa2, 0xaa, 0x4d, 0x15, 0x94, 0x45, 0x31, 0x97, 0x47, 0x06, 0xd3, 0x29, 0x9c, +0xc6, 0x00, 0xbc, 0x31, 0x14, 0xf7, 0x74, 0x1f, 0x59, 0x1d, 0xdd, 0x1a, 0x8f, 0x45, 0x1d, 0x9b, +0xd6, 0x8d, 0x81, 0x65, 0xdf, 0x2c, 0x19, 0x46, 0xc6, 0xd0, 0x36, 0x61, 0xf7, 0xd6, 0x6e, 0x5c, +0x39, 0x83, 0xd8, 0xcc, 0x44, 0xf2, 0x86, 0x4a, 0xb2, 0x8e, 0x4c, 0x8a, 0xb6, 0xd9, 0xbb, 0x18, +0xed, 0xc6, 0x8f, 0x83, 0xa0, 0x52, 0x09, 0x8c, 0xc3, 0x1f, 0x7c, 0x69, 0x81, 0x48, 0xcd, 0x0c, +0xf3, 0x99, 0x29, 0xd4, 0xb1, 0x10, 0xaa, 0x54, 0xe2, 0xb9, 0xec, 0x8c, 0x50, 0xb6, 0x16, 0x85, +0x4c, 0x2f, 0x49, 0xeb, 0x6b, 0x71, 0x2d, 0x65, 0x2a, 0x66, 0x32, 0xbf, 0x41, 0xbb, 0xcb, 0xfd, +0x95, 0xe0, 0xf7, 0x10, 0xae, 0x72, 0x5a, 0xb6, 0xec, 0x83, 0x7b, 0x93, 0x96, 0x6f, 0x69, 0x73, +0x7b, 0xe1, 0xf5, 0x60, 0x42, 0x19, 0x85, 0x1d, 0x81, 0x90, 0x6a, 0x54, 0x7b, 0x74, 0xf4, 0xdb, +0x8d, 0xf6, 0x4e, 0x1b, 0xd0, 0x58, 0x48, 0xb7, 0x8d, 0x11, 0x3b, 0xe3, 0x4f, 0xfd, 0xc6, 0x8d, +0xeb, 0x78, 0x32, 0xc8, 0xfe, 0x30, 0x66, 0x28, 0x61, 0x35, 0x9d, 0xbe, 0x29, 0x33, 0xf1, 0xac, +0x66, 0x37, 0x8a, 0x8c, 0x6f, 0xfe, 0xef, 0xdd, 0x8d, 0x96, 0x71, 0xbe, 0x79, 0x13, 0x42, 0x6b, +0x9b, 0x55, 0x6f, 0xb3, 0x21, 0x7f, 0xf8, 0x72, 0xeb, 0x16, 0x9f, 0x17, 0xd3, 0x47, 0x0a, 0xf7, +0x4a, 0x31, 0xc3, 0x34, 0x63, 0xe5, 0x2c, 0x13, 0x6f, 0x3f, 0x4c, 0xe9, 0x25, 0x1f, 0x6a, 0x27, +0xcd, 0x3a, 0x9e, 0x92, 0x3e, 0xad, 0x4c, 0x31, 0x87, 0xad, 0x60, 0x44, 0xcb, 0x85, 0xb7, 0xc9, +0x2d, 0xef, 0x54, 0x56, 0x95, 0x68, 0x16, 0xa0, 0x23, 0x63, 0x02, 0x31, 0xf0, 0xee, 0x18, 0xfa, +0x66, 0x09, 0x15, 0x40, 0xaf, 0x64, 0xec, 0x7c, 0x41, 0x39, 0x75, 0xe2, 0xc4, 0x04, 0xbd, 0x72, +0x5c, 0x03, 0xe4, 0x89, 0xdd, 0x0d, 0x59, 0xf4, 0x2b, 0x9a, 0xb3, 0x21, 0xab, 0x98, 0xb4, 0x0d, +0x78, 0x1b, 0x6a, 0xfc, 0x91, 0x06, 0x62, 0xf3, 0x39, 0x70, 0xdc, 0x3c, 0xc1, 0x4b, 0x15, 0x28, +0xb7, 0xf8, 0xbe, 0x5a, 0xf0, 0xdf, 0x33, 0x68, 0xb3, 0xfd, 0x03, 0xf4, 0x7c, 0x10, 0x35, 0x93, +0xff, 0x34, 0xcc, 0xae, 0x04, 0xde, 0x6d, 0x1c, 0x33, 0xa1, 0xb1, 0x8f, 0x26, 0x45, 0xb3, 0xe1, +0x61, 0xfa, 0x86, 0x7c, 0x3f, 0x3f, 0x05, 0x2b, 0xc7, 0xe9, 0x8d, 0x6a, 0x02, 0x03, 0x63, 0xc1, +0x0c, 0x5c, 0xd0, 0xb6, 0x18, 0x01, 0x6a, 0xd9, 0x35, 0x3d, 0x52, 0x52, 0x5b, 0x77, 0x28, 0x5d, +0x0a, 0x6a, 0x5d, 0x17, 0x64, 0x8e, 0x86, 0x97, 0xb8, 0xe5, 0x37, 0x78, 0xc1, 0xe8, 0x9c, 0x7c, +0x09, 0xe5, 0x24, 0x0f, 0x18, 0x9b, 0x54, 0x85, 0x74, 0x87, 0x6a, 0x1b, 0x3a, 0xee, 0x6d, 0x21, +0x3e, 0x10, 0x7a, 0xef, 0x8f, 0x57, 0x89, 0x22, 0x30, 0x01, 0x99, 0xad, 0xca, 0xa6, 0x98, 0x28, +0xda, 0x0c, 0xb7, 0x9c, 0xf6, 0x33, 0xd2, 0xb2, 0xc6, 0x61, 0xb6, 0x06, 0xbe, 0x91, 0x57, 0xe9, +0x96, 0xf1, 0xc5, 0x3f, 0x50, 0xb0, 0x9c, 0x79, 0x60, 0xf5, 0x0f, 0xdb, 0x98, 0x65, 0xfb, 0x36, +0x3f, 0x9c, 0x25, 0xa9, 0xcf, 0x98, 0xbb, 0x61, 0xf6, 0x09, 0xd2, 0xc9, 0x3c, 0x26, 0xb2, 0x6b, +0xa5, 0x66, 0x7d, 0x89, 0xef, 0x74, 0xc9, 0x51, 0x35, 0x5e, 0xc3, 0x6a, 0x7f, 0x9a, 0x73, 0xa4, +0x01, 0x9e, 0xeb, 0x2c, 0xf5, 0x62, 0x0d, 0xd5, 0x65, 0x82, 0x75, 0x01, 0xc8, 0xe7, 0x18, 0xd7, +0xc7, 0x11, 0x76, 0xbf, 0xb4, 0x68, 0xfc, 0xb2, 0x7e, 0x01, 0xc0, 0xb9, 0x86, 0xa4, 0x48, 0x37, +0xbb, 0x90, 0xd0, 0x00, 0xce, 0x4c, 0x6c, 0x17, 0xaa, 0x6d, 0xb6, 0x00, 0x9c, 0x04, 0x56, 0x03, +0xbe, 0xc9, 0x21, 0x20, 0x9c, 0x23, 0xb6, 0x33, 0x3a, 0xcf, 0x5f, 0x5b, 0x6d, 0x7d, 0x99, 0x59, +0x2c, 0x31, 0x10, 0x2f, 0x3e, 0x2a, 0xac, 0xc4, 0x0b, 0x7d, 0x7c, 0xc2, 0xaa, 0xb3, 0xfb, 0xa4, +0x41, 0xca, 0xfd, 0x76, 0x5d, 0x51, 0xa2, 0xf3, 0x78, 0x03, 0xde, 0x3d, 0xb8, 0x0e, 0xef, 0x6b, +0xea, 0x35, 0x31, 0x7d, 0x74, 0x4d, 0x17, 0x25, 0xeb, 0x16, 0xf1, 0xf3, 0x8f, 0xc2, 0xa9, 0x8a, +0x08, 0x5a, 0x25, 0xe0, 0x45, 0x43, 0xf4, 0x12, 0x8f, 0xab, 0xbe, 0x44, 0x5d, 0x94, 0x20, 0xb0, +0x3c, 0x3e, 0xbe, 0x44, 0xcf, 0xa9, 0xd5, 0x6f, 0x05, 0x62, 0x8d, 0xc2, 0x2b, 0x7f, 0xa0, 0x33, +0x3d, 0x17, 0x4a, 0xa8, 0xfd, 0xc7, 0x4a, 0x58, 0xbb, 0x97, 0xab, 0xb0, 0xc6, 0xb8, 0x6a, 0xea, +0x64, 0x6e, 0xe1, 0x4c, 0x4a, 0xdb, 0x0f, 0xd7, 0xca, 0xe5, 0xda, 0xa9, 0x6c, 0xa6, 0x0f, 0xb8, +0x57, 0xc3, 0x57, 0x60, 0x20, 0x31, 0x10, 0x2b, 0xc0, 0xa2, 0xf3, 0xf3, 0xef, 0xa6, 0x4b, 0x67, +0x40, 0x63, 0xe1, 0x2f, 0x45, 0x13, 0x71, 0x28, 0x24, 0x66, 0x54, 0xfc, 0x4e, 0xf7, 0x73, 0x22, +0x8d, 0x72, 0x6c, 0xf7, 0xcd, 0x18, 0x00, 0xff, 0x4a, 0x4c, 0xb3, 0x4c, 0x43, 0x7b, 0x67, 0x76, +0x0b, 0xec, 0xd5, 0x69, 0x7c, 0xbc, 0x48, 0x30, 0x34, 0x95, 0x6b, 0xdf, 0xe8, 0x9e, 0x42, 0x81, +0x3f, 0x22, 0x6a, 0x29, 0xa2, 0x16, 0x47, 0x1d, 0x96, 0x4d, 0xa6, 0xe7, 0xe5, 0xd0, 0xa8, 0x7b, +0x7b, 0x2e, 0x3c, 0xd9, 0xe1, 0x14, 0x4b, 0xa3, 0x20, 0x88, 0xec, 0x39, 0x82, 0xe6, 0x23, 0x86, +0x4a, 0x22, 0x7a, 0x8c, 0x6b, 0x1d, 0xf7, 0x61, 0x65, 0xdf, 0x8e, 0xae, 0x0e, 0x01, 0x8f, 0x2e, +0x1c, 0x67, 0x1c, 0xd9, 0x7e, 0xdc, 0x3b, 0xdb, 0xd9, 0xfc, 0x54, 0x39, 0xa6, 0x79, 0x1e, 0x58, +0x73, 0x6a, 0xe1, 0x8f, 0x7d, 0x58, 0xc4, 0xb4, 0xea, 0x64, 0x52, 0x93, 0x8f, 0x9a, 0x80, 0xda, +0xdc, 0x03, 0xe9, 0x81, 0xdd, 0x8e, 0xe6, 0x7b, 0x7c, 0xa4, 0x62, 0x2a, 0xdd, 0x75, 0xf5, 0xa9, +0xea, 0x11, 0xd5, 0xec, 0x31, 0xb6, 0xe0, 0x98, 0x22, 0x37, 0xe6, 0x98, 0x1f, 0xf1, 0xd7, 0x6f, +0xb4, 0x40, 0xc1, 0xd7, 0x16, 0x51, 0x96, 0xdb, 0x05, 0x89, 0xa0, 0x4d, 0x68, 0x83, 0x03, 0xa3, +0xb2, 0xdc, 0xb0, 0x80, 0xdf, 0xfe, 0xb7, 0xd4, 0x40, 0x06, 0xdf, 0xf2, 0x26, 0x7d, 0x27, 0xa5, +0xc1, 0x9a, 0xce, 0x18, 0xce, 0xee, 0x93, 0xf5, 0x67, 0x6f, 0xda, 0xab, 0xe6, 0x38, 0x75, 0xe7, +0xf7, 0xfe, 0x4b, 0x9f, 0xee, 0xd3, 0xdf, 0xf9, 0xe4, 0xfb, 0xc4, 0x30, 0x53, 0x42, 0xa7, 0x16, +0xca, 0xf2, 0x28, 0x65, 0x7a, 0x0f, 0xce, 0x44, 0xe2, 0xb9, 0xd6, 0xa0, 0x65, 0xa3, 0x2c, 0x0b, +0x45, 0x48, 0x9b, 0xfa, 0xa7, 0x02, 0x4e, 0x80, 0x8d, 0x87, 0x0a, 0xa4, 0x70, 0x88, 0x7e, 0x7a, +0xbd, 0x14, 0xe9, 0xbc, 0x80, 0xc7, 0x1d, 0x6a, 0xfc, 0x9f, 0x4f, 0x4d, 0x2d, 0x80, 0x05, 0x65, +0xc1, 0xe4, 0x10, 0xbf, 0x20, 0xb2, 0xa5, 0x78, 0xa1, 0x08, 0x74, 0xa7, 0xe1, 0xfb, 0xa8, 0x79, +0x46, 0x9a, 0xc5, 0x20, 0x52, 0x28, 0x17, 0x3e, 0x6f, 0x18, 0x77, 0x72, 0x08, 0xc5, 0xa6, 0x84, +0xb8, 0x16, 0x5d, 0x1a, 0x60, 0x5c, 0x43, 0xba, 0x6e, 0xcc, 0xfc, 0x23, 0x94, 0x24, 0xde, 0xf2, +0x7e, 0x86, 0xed, 0xbe, 0x16, 0xb2, 0x1e, 0xfd, 0xd2, 0x91, 0x07, 0x87, 0x29, 0x74, 0xa7, 0x33, +0xbf, 0xbe, 0x74, 0xc9, 0xc6, 0xfb, 0xc6, 0xb1, 0xb5, 0xc9, 0x18, 0x5e, 0xdc, 0x8d, 0x9c, 0xf0, +0xad, 0x7c, 0x54, 0xe0, 0x30, 0x21, 0x17, 0x8b, 0x5a, 0xc9, 0x45, 0x54, 0x30, 0x00, 0xeb, 0xbd, +0x5d, 0xe4, 0xb2, 0x1d, 0x7b, 0x52, 0x50, 0x67, 0xa8, 0x0a, 0xf7, 0x50, 0x66, 0xa0, 0x8f, 0x68, +0x1d, 0x71, 0x40, 0xea, 0xd6, 0xe0, 0x2c, 0x69, 0x2e, 0xab, 0xfe, 0x3b, 0x1d, 0xc9, 0x29, 0x3f, +0x28, 0xc2, 0xa0, 0x92, 0xff, 0xb9, 0xea, 0xf0, 0x21, 0x00, 0x85, 0x53, 0x53, 0xd7, 0x46, 0xe3, +0x0c, 0x9c, 0x84, 0x1f, 0x8b, 0xb9, 0x1f, 0x4e, 0x38, 0x11, 0xb2, 0x26, 0x7e, 0x66, 0xde, 0x3f, +0x7c, 0xe4, 0x1b, 0x79, 0xa1, 0xf9, 0x3a, 0xfc, 0x53, 0x72, 0xd1, 0x49, 0xc9, 0xb6, 0x93, 0xdc, +0x00, 0x8e, 0xa4, 0x45, 0x74, 0x45, 0xed, 0xf1, 0xd2, 0x92, 0xff, 0x9a, 0x1f, 0x2a, 0xfb, 0xac, +0x35, 0x44, 0x8e, 0xbc, 0xf5, 0x7b, 0x73, 0xdb, 0x91, 0xc4, 0xe6, 0x2f, 0x7a, 0x52, 0xe7, 0x98, +0x62, 0x8d, 0x5b, 0xaa, 0x72, 0xb9, 0x6f, 0xec, 0xae, 0xea, 0xc2, 0xa7, 0xd8, 0x51, 0x2d, 0xc1, +0xa0, 0x59, 0xb7, 0xd5, 0x81, 0x9a, 0x5a, 0xd1, 0x4a, 0x1c, 0x85, 0x6a, 0xb0, 0x97, 0x4e, 0x9f, +0x6c, 0x17, 0xce, 0xb4, 0x54, 0xde, 0x4d, 0xc3, 0x04, 0x9a, 0xc1, 0x47, 0x32, 0x1f, 0x5d, 0xe9, +0x50, 0x7c, 0xd3, 0xe0, 0xd0, 0x02, 0x5b, 0x9c, 0x4b, 0x6c, 0xa0, 0xd6, 0x10, 0x08, 0x49, 0x38, +0xf0, 0x5c, 0xa0, 0xf0, 0x5d, 0xba, 0xd4, 0xfe, 0x9d, 0x07, 0x53, 0x45, 0x6d, 0x54, 0x9f, 0xb2, +0xcb, 0xb9, 0x3d, 0x5d, 0xd6, 0x5c, 0x1c, 0xb4, 0xd2, 0xf8, 0x54, 0x92, 0xa0, 0xfd, 0x97, 0xe5, +0xfa, 0x66, 0x41, 0x76, 0x47, 0x96, 0x1a, 0xa7, 0xa4, 0x34, 0x34, 0x03, 0xca, 0xc1, 0x6d, 0x08, +0x71, 0x20, 0xe0, 0xfa, 0xb8, 0x70, 0x55, 0x04, 0x98, 0x98, 0x82, 0xca, 0xce, 0xee, 0xc8, 0x2b, +0x2b, 0x78, 0xa3, 0xd1, 0x2c, 0xdc, 0xe9, 0x74, 0x1d, 0xa3, 0x01, 0x51, 0xd0, 0x6a, 0x8c, 0xd3, +0xb5, 0x94, 0xa5, 0x0a, 0x0a, 0x79, 0x95, 0x88, 0x65, 0xf1, 0x7d, 0x7f, 0xf8, 0xd4, 0xf9, 0x58, +0x9b, 0xd9, 0x10, 0xe2, 0xc5, 0x55, 0x9f, 0xf7, 0x13, 0xf2, 0xa2, 0x12, 0xc3, 0x77, 0xa0, 0x45, +0x9b, 0x0b, 0xf7, 0x8f, 0xa5, 0x9d, 0x8c, 0xe5, 0xc0, 0x00, 0x73, 0x6a, 0x28, 0x95, 0x6d, 0x2c, +0x33, 0xf2, 0xf8, 0x42, 0x00, 0x12, 0x16, 0xbb, 0xfe, 0xdd, 0x58, 0x8d, 0x40, 0x2c, 0x91, 0xea, +0x34, 0x8b, 0x70, 0x5f, 0xeb, 0x50, 0x93, 0xb6, 0x87, 0x54, 0xd0, 0x28, 0x8c, 0x03, 0xb9, 0x31, +0x3f, 0x8f, 0x04, 0xbe, 0xd8, 0x07, 0x63, 0x58, 0xc0, 0x98, 0x37, 0x4f, 0xcf, 0xaf, 0xaf, 0xd5, +0x4c, 0x37, 0xc6, 0x2a, 0x5a, 0xdb, 0x14, 0xbe, 0x95, 0x5c, 0xe5, 0x8d, 0xd7, 0x36, 0x45, 0x64, +0x17, 0x37, 0x4c, 0x1c, 0x3a, 0x33, 0x5c, 0x4f, 0x5b, 0x9e, 0x79, 0xe7, 0xeb, 0xab, 0x66, 0xb0, +0x42, 0x25, 0x17, 0xe7, 0x22, 0x65, 0x2e, 0xbe, 0x5b, 0x06, 0x08, 0xc0, 0x03, 0x9e, 0xa5, 0xa1, +0x0f, 0x1e, 0x99, 0xe5, 0x80, 0xaa, 0x72, 0xf1, 0x80, 0xf1, 0xea, 0x9c, 0x07, 0x94, 0x54, 0x79, +0xf2, 0xcb, 0x65, 0x4f, 0x15, 0x74, 0x61, 0x7f, 0xab, 0xad, 0xda, 0x05, 0x15, 0x9e, 0x17, 0x35, +0xae, 0xc5, 0x09, 0x4f, 0xc3, 0x5d, 0xa6, 0x6d, 0xb3, 0x9c, 0x08, 0xdd, 0xfe, 0x23, 0xe7, 0x0a, +0x56, 0xcd, 0xe6, 0xf6, 0x35, 0xa2, 0x69, 0x1b, 0x98, 0x84, 0xc9, 0xf1, 0xc6, 0x7d, 0x0a, 0x0c, +0x1d, 0xab, 0x3c, 0xda, 0x50, 0xe7, 0x11, 0xd8, 0x7a, 0xbf, 0xe0, 0xc9, 0x2b, 0x36, 0x54, 0x03, +0xf8, 0x83, 0xfc, 0x1a, 0xc6, 0x3d, 0x5e, 0x71, 0xbe, 0x08, 0x98, 0x3a, 0xf2, 0xc5, 0x4e, 0xc2, +0x06, 0xae, 0x0b, 0xa5, 0x3a, 0x5a, 0x47, 0xeb, 0xf2, 0x3d, 0xb8, 0x77, 0xb9, 0x1f, 0xc7, 0x65, +0x74, 0x0c, 0xb6, 0xec, 0xbb, 0xe6, 0x39, 0xa4, 0x9a, 0x80, 0x18, 0x07, 0xae, 0x6a, 0x60, 0xd4, +0xf7, 0x5a, 0x8c, 0x9b, 0x2c, 0xce, 0x4f, 0x62, 0xdb, 0x1d, 0x16, 0x02, 0x1d, 0x8d, 0x2a, 0x29, +0x81, 0x66, 0x13, 0xf3, 0x25, 0x62, 0x6d, 0xf6, 0x71, 0x42, 0x54, 0xe3, 0x23, 0x27, 0xd4, 0x85, +0xd6, 0x16, 0xfe, 0xdc, 0xcb, 0x4f, 0x24, 0x20, 0x23, 0x68, 0x30, 0x21, 0x1a, 0x51, 0x03, 0xdf, +0x97, 0x22, 0x55, 0xb5, 0x75, 0x13, 0x6a, 0x84, 0x51, 0x7d, 0x6a, 0x08, 0xcd, 0x70, 0x8f, 0xc7, +0x39, 0x2c, 0x83, 0xfc, 0xff, 0xca, 0x64, 0x90, 0x26, 0x92, 0xf2, 0x71, 0xbe, 0x6f, 0x16, 0x84, +0x0d, 0x9e, 0xfd, 0x59, 0xb0, 0x5b, 0x84, 0x3b, 0xb7, 0xdf, 0xad, 0x56, 0x0e, 0x6e, 0xb7, 0x61, +0xed, 0x58, 0x54, 0x42, 0x8a, 0x60, 0xe2, 0x49, 0x71, 0x0d, 0x0e, 0xae, 0x39, 0xa2, 0xdb, 0x0a, +0x0f, 0xd9, 0x3f, 0xca, 0x83, 0x2b, 0xf6, 0xa0, 0xca, 0xca, 0xea, 0x43, 0x72, 0xe8, 0xc3, 0x93, +0xf2, 0x86, 0x6f, 0x03, 0x92, 0x48, 0x58, 0x8c, 0x1e, 0xc5, 0xe0, 0xda, 0xe9, 0xb2, 0xbb, 0xec, +0x98, 0x01, 0x28, 0x8a, 0xbd, 0xa4, 0x0c, 0x91, 0x6b, 0x08, 0xd4, 0x80, 0x74, 0x15, 0xbc, 0x79, +0x9a, 0x20, 0x81, 0xc5, 0x32, 0x8f, 0x39, 0x54, 0x85, 0x33, 0x0e, 0xdb, 0x51, 0xda, 0xb1, 0xe6, +0x91, 0xc8, 0x92, 0xf2, 0x2a, 0xc8, 0xd3, 0xf0, 0x1d, 0xef, 0xd3, 0xb2, 0x7a, 0xb0, 0xc7, 0x1a, +0xa5, 0xb9, 0xa8, 0x4f, 0x31, 0xc6, 0x03, 0x85, 0x82, 0x59, 0x54, 0xe4, 0x11, 0x70, 0xe3, 0x13, +0xea, 0xac, 0xfd, 0xcc, 0xd1, 0xf9, 0xd3, 0xa2, 0xba, 0xa1, 0xb9, 0xa6, 0x52, 0x4f, 0xf6, 0x93, +0x77, 0xc4, 0xa4, 0x0c, 0x2a, 0xab, 0x19, 0xcd, 0xb5, 0xf1, 0x28, 0x64, 0x46, 0x10, 0x5e, 0x3d, +0x70, 0x01, 0x1a, 0x20, 0x95, 0xd4, 0x8a, 0x98, 0xfc, 0x0a, 0xc1, 0xd2, 0x06, 0xa6, 0xdf, 0xe4, +0x22, 0x5b, 0x04, 0x2b, 0xa5, 0xee, 0x9a, 0xa3, 0x9b, 0xa8, 0x75, 0xd5, 0xce, 0xce, 0x9a, 0xdd, +0x31, 0xdf, 0x8a, 0x68, 0xb5, 0x97, 0x3d, 0x6e, 0xad, 0xc6, 0xdc, 0xd6, 0xfc, 0xe7, 0x94, 0xe4, +0x8c, 0xbf, 0x2b, 0x60, 0x41, 0x38, 0xdc, 0xee, 0xf6, 0xb9, 0x95, 0xa7, 0x44, 0x12, 0xde, 0x19, +0x0f, 0xf4, 0xbe, 0x2a, 0x44, 0x2a, 0x27, 0xae, 0xb1, 0xb2, 0x65, 0xc0, 0x1c, 0x1d, 0xf1, 0x97, +0x2d, 0x96, 0x33, 0x1d, 0x23, 0x2a, 0x67, 0x21, 0x9e, 0x70, 0x48, 0x41, 0x91, 0x27, 0x5b, 0xf0, +0x5b, 0xc7, 0x50, 0x80, 0x06, 0xab, 0x82, 0x73, 0xff, 0x0c, 0xbb, 0x1d, 0xb3, 0xa4, 0x3c, 0xe3, +0xf3, 0x79, 0x24, 0xb8, 0x79, 0x26, 0xe0, 0x8b, 0xb7, 0x8d, 0x5e, 0x30, 0xe1, 0xc2, 0x03, 0x33, +0x82, 0xa7, 0x1c, 0x36, 0x44, 0x68, 0x59, 0xce, 0x89, 0xcd, 0x53, 0x6d, 0x40, 0x16, 0x69, 0xa7, +0x46, 0x4a, 0x27, 0xe8, 0x69, 0x2c, 0x56, 0x82, 0xc5, 0xb0, 0x10, 0x30, 0xcb, 0x88, 0xf3, 0x4e, +0x8a, 0x6f, 0x5a, 0x63, 0x6c, 0xd9, 0x1f, 0x83, 0xe2, 0x4e, 0x10, 0x38, 0x5e, 0x2d, 0x5e, 0x59, +0xbf, 0xf8, 0x76, 0x2d, 0x2e, 0xc7, 0xa7, 0x43, 0x6f, 0x27, 0xcb, 0xae, 0x0d, 0xdc, 0x5f, 0xd1, +0x4c, 0xda, 0xd3, 0xcf, 0x11, 0x2f, 0x3d, 0x28, 0xca, 0xe6, 0x67, 0x14, 0x86, 0x01, 0xd8, 0x9e, +0xe7, 0x30, 0x3d, 0x9f, 0xa5, 0x2f, 0xbe, 0x3f, 0x18, 0x37, 0x70, 0xf6, 0xb0, 0x8a, 0xff, 0x40, +0x49, 0x0e, 0x71, 0xcd, 0x37, 0xef, 0x66, 0x52, 0x0c, 0x70, 0x96, 0x69, 0x95, 0x1a, 0x9b, 0x1c, +0x27, 0x59, 0xa3, 0x32, 0xd9, 0xc5, 0x83, 0x44, 0x0c, 0x14, 0x7f, 0x5e, 0xed, 0xdf, 0x28, 0x34, +0xf9, 0x68, 0x59, 0xf1, 0x89, 0x3a, 0x3e, 0x66, 0x49, 0x2c, 0x92, 0xfd, 0x21, 0x4d, 0x15, 0x84, +0x8c, 0xba, 0xbc, 0xb0, 0x26, 0x22, 0xd5, 0x54, 0x38, 0x02, 0x94, 0xc9, 0x06, 0xe9, 0x90, 0x69, +0x18, 0xbb, 0x38, 0xf8, 0x78, 0x02, 0x47, 0x78, 0xdf, 0x4d, 0x27, 0x0f, 0x2a, 0xd6, 0x6d, 0x33, +0x56, 0xae, 0x6f, 0x0e, 0x70, 0x72, 0x89, 0xe8, 0x88, 0xf6, 0x30, 0xbb, 0xd9, 0x26, 0xe0, 0x13, +0xfb, 0x88, 0xda, 0x97, 0x6b, 0x62, 0xde, 0xe7, 0x8b, 0x18, 0x9a, 0x86, 0x6a, 0x0c, 0x50, 0x6e, +0x01, 0x5f, 0x7a, 0x56, 0xb5, 0x77, 0x5f, 0x06, 0x61, 0x66, 0x38, 0x91, 0x2e, 0xfb, 0xd5, 0xf3, +0xe9, 0xd9, 0x4d, 0x66, 0xa3, 0x67, 0xfc, 0x31, 0x8c, 0xd0, 0x9f, 0x54, 0xc2, 0xc9, 0x1a, 0x6f, +0xb3, 0xd4, 0x48, 0xbb, 0xdf, 0xaf, 0x8a, 0xbc, 0x49, 0x33, 0x3d, 0xb8, 0xbf, 0x30, 0xa4, 0x5a, +0xd2, 0x5f, 0x1c, 0x47, 0x53, 0x0a, 0x74, 0x2c, 0x44, 0x0f, 0x06, 0x67, 0xa5, 0x55, 0x10, 0xc5, +0x66, 0xf8, 0x9f, 0x6a, 0x23, 0xfe, 0x81, 0x69, 0x53, 0x33, 0x4b, 0x58, 0xcd, 0x39, 0x9c, 0x8e, +0x38, 0xe7, 0x2f, 0x8c, 0xec, 0xb9, 0xc8, 0x30, 0x00, 0x3d, 0xe3, 0x0e, 0xc4, 0x27, 0xfd, 0xb4, +0xf6, 0x23, 0x7b, 0xbf, 0xfb, 0x77, 0xbf, 0x32, 0x2e, 0x5a, 0xf2, 0x61, 0x24, 0xa8, 0xb8, 0x4e, +0x5a, 0x9a, 0x3d, 0x2d, 0xac, 0x9e, 0xd1, 0x91, 0xde, 0xf4, 0x9b, 0x74, 0x76, 0x77, 0x60, 0xc9, +0xa1, 0x01, 0xdb, 0xc1, 0x15, 0x68, 0xcd, 0xe2, 0x5f, 0xa9, 0x4c, 0x96, 0x23, 0x03, 0x75, 0x71, +0xfc, 0xd2, 0x5d, 0x89, 0xad, 0xb6, 0xc9, 0x28, 0x82, 0x80, 0x83, 0x2c, 0x3f, 0x73, 0x8c, 0x60, +0xf5, 0x6b, 0xf1, 0xec, 0x74, 0x42, 0x12, 0xf6, 0x64, 0x62, 0x58, 0x3b, 0xb5, 0x24, 0xae, 0x76, +0x90, 0x1b, 0x87, 0xa8, 0xe0, 0x0d, 0x77, 0x80, 0x4e, 0xbc, 0x74, 0xf6, 0xe0, 0xc4, 0x53, 0xf1, +0xa0, 0x24, 0xcc, 0xaa, 0xac, 0xab, 0xf7, 0x07, 0xca, 0xbb, 0xc7, 0xaf, 0x0d, 0x4d, 0xe4, 0x69, +0xe9, 0x2d, 0x31, 0x7e, 0x7c, 0x93, 0xd1, 0x25, 0x73, 0x7f, 0x6e, 0xed, 0x6b, 0x07, 0x21, 0x7d, +0xa9, 0xd5, 0xef, 0x23, 0x27, 0xfa, 0x6f, 0x7f, 0xa8, 0x53, 0x05, 0x4d, 0x0d, 0x55, 0x6b, 0xb4, +0xa2, 0xe5, 0xdc, 0x34, 0x1e, 0x32, 0xcb, 0xd4, 0x52, 0xfd, 0xa9, 0xf1, 0x13, 0x2a, 0x04, 0x85, +0xeb, 0x9e, 0xc3, 0xef, 0x17, 0x9d, 0xf1, 0x97, 0xfc, 0xe1, 0x43, 0xc8, 0xb2, 0x43, 0xc0, 0x0a, +0x85, 0x12, 0xb9, 0xa8, 0x20, 0x2c, 0x6a, 0x96, 0x8f, 0xc1, 0x7d, 0x14, 0xb5, 0x85, 0xa2, 0xbf, +0x7a, 0x57, 0x1a, 0xce, 0x95, 0x38, 0x9e, 0x70, 0x8a, 0x51, 0x98, 0x88, 0x6c, 0x2b, 0x15, 0x32, +0x5e, 0xda, 0x38, 0xe8, 0x09, 0x99, 0x7d, 0x9d, 0x15, 0xa9, 0xf9, 0xb7, 0x26, 0xae, 0x0a, 0x9a, +0xeb, 0x66, 0x7b, 0x80, 0x37, 0x80, 0x51, 0x64, 0x32, 0x5d, 0xb8, 0xfc, 0x65, 0xa1, 0x13, 0x98, +0x5a, 0xde, 0x8e, 0x64, 0x7c, 0x34, 0x26, 0x93, 0xfa, 0x50, 0x27, 0xcd, 0x0a, 0xda, 0xa8, 0x64, +0xb1, 0x19, 0x93, 0xf4, 0x8c, 0xb4, 0x00, 0xca, 0x26, 0x71, 0x2d, 0xb5, 0x28, 0x16, 0x44, 0x6e, +0xf9, 0xc0, 0x8d, 0x63, 0xe7, 0x44, 0x81, 0xa8, 0xfa, 0x58, 0xbd, 0x61, 0x84, 0x09, 0x7f, 0xa1, +0xb6, 0x0a, 0x9c, 0x18, 0x44, 0x89, 0x63, 0x24, 0xf4, 0x22, 0x52, 0xa5, 0x23, 0x66, 0x07, 0x4b, +0xb1, 0xc5, 0x10, 0x37, 0x02, 0x7f, 0x41, 0xf8, 0x74, 0xe0, 0xd9, 0x3c, 0x7e, 0x1f, 0x47, 0x91, +0xff, 0x94, 0xed, 0xd8, 0x2b, 0xc8, 0xf4, 0x9c, 0x13, 0xe2, 0x63, 0xca, 0xac, 0x30, 0xca, 0x65, +0xa0, 0xe8, 0x59, 0x89, 0x42, 0xd6, 0x71, 0xc2, 0x6b, 0x3b, 0x7d, 0xac, 0xcb, 0xfa, 0xf8, 0x30, +0x75, 0x5a, 0x0f, 0x5e, 0xce, 0x5c, 0x61, 0x35, 0xaf, 0x64, 0x00, 0x64, 0x9c, 0x5c, 0x03, 0x0d, +0x69, 0x2a, 0x90, 0xe0, 0xfa, 0xcd, 0xec, 0xa6, 0xda, 0x30, 0x8b, 0xc2, 0x63, 0xb0, 0xce, 0xf6, +0xa1, 0xbf, 0xc0, 0xa9, 0x60, 0x1c, 0x44, 0x25, 0x3d, 0x8d, 0xa6, 0xc2, 0x10, 0xdd, 0xec, 0xbf, +0xb6, 0x41, 0x41, 0xec, 0xb2, 0x96, 0xee, 0xee, 0x17, 0xa7, 0x4b, 0xc1, 0xa7, 0xb4, 0x06, 0xbc, +0xac, 0x4e, 0x2e, 0xb4, 0x81, 0x4a, 0xa4, 0xed, 0xd4, 0x66, 0x7f, 0x41, 0x8a, 0x97, 0x08, 0x2d, +0x80, 0xfe, 0x04, 0xea, 0xb6, 0x41, 0x08, 0xe8, 0xfb, 0x43, 0x61, 0x9e, 0x84, 0x51, 0x4d, 0x12, +0x95, 0x2a, 0xe9, 0xb9, 0x64, 0x7e, 0x21, 0x26, 0xfb, 0x03, 0x57, 0x6b, 0xdf, 0xf8, 0xe5, 0x04, +0xf4, 0x13, 0x30, 0x81, 0x4c, 0x94, 0xdd, 0xbb, 0x90, 0x4e, 0x14, 0x6e, 0x19, 0xea, 0xbc, 0xd9, +0x81, 0xc9, 0x9b, 0x93, 0x45, 0x7e, 0xbb, 0x7a, 0xb0, 0xa2, 0x06, 0x9f, 0xe8, 0x9b, 0x7e, 0x77, +0x58, 0xc3, 0xda, 0x0c, 0x34, 0x5f, 0x84, 0x2e, 0x98, 0xd0, 0xa2, 0x26, 0x1a, 0xfa, 0xbb, 0xbf, +0x4e, 0x79, 0x8f, 0xed, 0x35, 0xb2, 0xd1, 0x66, 0x81, 0xff, 0x63, 0x62, 0x85, 0x50, 0x47, 0x52, +0x3e, 0x78, 0xc1, 0x59, 0x78, 0xb7, 0x63, 0xbf, 0xe8, 0x84, 0x2d, 0xff, 0x85, 0x0c, 0x77, 0x66, +0xbd, 0xc8, 0x8c, 0xec, 0x04, 0x54, 0xac, 0xff, 0x54, 0x27, 0x07, 0x56, 0x3e, 0xa8, 0xf1, 0x55, +0xcc, 0xa4, 0x3c, 0xa4, 0x68, 0x13, 0x97, 0x00, 0x10, 0x77, 0x5a, 0x14, 0x99, 0xd3, 0xf9, 0x60, +0x93, 0x0f, 0x1b, 0x66, 0xa1, 0x29, 0xdd, 0x21, 0xca, 0xef, 0x17, 0x49, 0x62, 0x8d, 0x17, 0x94, +0x9a, 0xe4, 0x52, 0x01, 0x85, 0x4b, 0x4a, 0xc5, 0xfb, 0x0d, 0x25, 0x36, 0x68, 0x3e, 0x60, 0xda, +0x37, 0xf9, 0xc0, 0x39, 0x23, 0x21, 0x5d, 0x35, 0xb9, 0xb4, 0xad, 0xdd, 0xf1, 0xd4, 0x69, 0x49, +0xde, 0xcb, 0x15, 0x0b, 0x96, 0x1d, 0x9b, 0x59, 0xc3, 0x11, 0xb4, 0x22, 0x69, 0x7a, 0x93, 0x54, +0x67, 0x98, 0xc9, 0x61, 0x82, 0x62, 0xd2, 0x27, 0xd6, 0x2a, 0x3c, 0x21, 0xc4, 0xd5, 0x9a, 0x98, +0x37, 0x5b, 0x64, 0x22, 0xc4, 0x12, 0x55, 0xec, 0xa5, 0xf1, 0x62, 0x90, 0xee, 0xd9, 0xd9, 0xb7, +0xfa, 0x3a, 0xe4, 0x81, 0x36, 0x13, 0xb8, 0x60, 0x26, 0x2a, 0xd0, 0xcb, 0xbf, 0x89, 0xfc, 0x1e, +0x0d, 0xdc, 0xb8, 0x03, 0x02, 0xef, 0x5c, 0x30, 0x47, 0x18, 0x53, 0xe1, 0xc5, 0xcc, 0xa8, 0xc4, +0x4d, 0xd2, 0x5a, 0xdf, 0x94, 0x0c, 0xc0, 0xfe, 0xe6, 0xb5, 0x70, 0xf2, 0x76, 0xf7, 0x23, 0xb0, +0x07, 0x86, 0x9b, 0x33, 0x21, 0xd0, 0x03, 0xec, 0xfa, 0x77, 0x0b, 0xdc, 0x12, 0xe4, 0x12, 0xb6, +0x2f, 0xd5, 0xe4, 0x3c, 0x38, 0x42, 0x6e, 0xb0, 0xbf, 0x83, 0xba, 0xf8, 0x20, 0x26, 0x5b, 0x03, +0xde, 0xa9, 0x2d, 0x50, 0x0a, 0x5f, 0xb3, 0xaa, 0x53, 0xf6, 0xc7, 0xd9, 0x40, 0x63, 0x5d, 0x59, +0xc8, 0x80, 0x05, 0x7b, 0xca, 0x1e, 0x38, 0xd3, 0x90, 0x57, 0x83, 0x62, 0xf0, 0x75, 0xef, 0xd8, +0x43, 0xd6, 0xd0, 0x48, 0xeb, 0x0e, 0xea, 0x05, 0x44, 0x6d, 0x33, 0x75, 0x31, 0xc9, 0x8f, 0x83, +0x7b, 0x3f, 0x7f, 0xc4, 0xcd, 0x8d, 0x76, 0x80, 0xcb, 0xaa, 0x79, 0xfe, 0x96, 0x0a, 0x9b, 0xb6, +0xe5, 0x77, 0x52, 0x26, 0x73, 0x70, 0x55, 0xa2, 0xee, 0x57, 0x7c, 0xfe, 0x28, 0xe4, 0x62, 0x78, +0x30, 0x31, 0xab, 0x5b, 0xe5, 0xdf, 0x37, 0x3c, 0x07, 0x43, 0x47, 0x84, 0xec, 0x73, 0xb8, 0x3b, +0xcc, 0x85, 0xc6, 0x9b, 0x47, 0xa0, 0x54, 0x8b, 0x7f, 0xbe, 0x63, 0x14, 0xc6, 0xde, 0xf9, 0xca, +0x17, 0xfa, 0xf1, 0xb1, 0x4c, 0xc7, 0x45, 0xe8, 0xe7, 0x27, 0x4a, 0x52, 0x25, 0x47, 0x30, 0x17, +0x55, 0x38, 0x07, 0x2d, 0xb3, 0x97, 0xb7, 0x3a, 0x01, 0x3b, 0x20, 0x30, 0x87, 0x26, 0xf5, 0xf0, +0x12, 0x68, 0x78, 0x23, 0xfd, 0x0e, 0x13, 0x58, 0x2d, 0xa9, 0x38, 0xf0, 0x5d, 0xae, 0xfc, 0x47, +0x95, 0xc1, 0xc2, 0x60, 0xd5, 0x3f, 0x10, 0x29, 0x20, 0xd8, 0x4a, 0x83, 0x9b, 0x95, 0xae, 0x52, +0x8d, 0x7f, 0x88, 0xd0, 0x8c, 0x21, 0xe4, 0xdc, 0xee, 0xf3, 0x8e, 0x89, 0xa7, 0xc6, 0xfe, 0x03, +0x38, 0x61, 0x8e, 0xa6, 0x69, 0x90, 0x15, 0xba, 0xb8, 0x85, 0xe3, 0xd2, 0xb5, 0xa5, 0x57, 0x71, +0xf7, 0xe6, 0x90, 0xa3, 0x2f, 0x8b, 0xdd, 0x6a, 0xa5, 0xef, 0xe0, 0x7e, 0xbc, 0x13, 0x7a, 0xe0, +0x5f, 0x3a, 0x7f, 0x98, 0x19, 0xc4, 0x83, 0x19, 0x37, 0x47, 0xfe, 0x8a, 0x59, 0xd0, 0xce, 0xc6, +0x96, 0xd9, 0x3f, 0xdb, 0x61, 0x36, 0xe3, 0x6d, 0x21, 0xac, 0x03, 0xd1, 0xe1, 0xc4, 0x7b, 0x32, +0xb0, 0x48, 0x23, 0xab, 0x96, 0xb9, 0x74, 0xcb, 0x7b, 0x56, 0xb1, 0xde, 0x49, 0x1d, 0x90, 0xea, +0x38, 0x58, 0x94, 0x6e, 0x19, 0x9d, 0x00, 0x53, 0x0d, 0xfd, 0x98, 0x11, 0x75, 0x4d, 0xe6, 0x28, +0x6d, 0xc5, 0xa0, 0x97, 0x9a, 0x61, 0x80, 0x05, 0x5a, 0x90, 0x37, 0xfb, 0x51, 0x60, 0xd5, 0x87, +0x37, 0xfc, 0x03, 0x33, 0x5b, 0x6a, 0x99, 0x9f, 0x80, 0x13, 0xc5, 0x66, 0x99, 0x89, 0x36, 0x91, +0x4c, 0x61, 0xb2, 0x08, 0x50, 0x68, 0xf4, 0xb7, 0x03, 0x16, 0x6a, 0xaa, 0xdd, 0x78, 0xdf, 0xd1, +0x36, 0x41, 0x63, 0xef, 0xb4, 0xab, 0xf4, 0x51, 0x0e, 0xe9, 0x07, 0x8e, 0x0b, 0x15, 0xd1, 0xbd, +0xd4, 0xff, 0x1d, 0x95, 0x63, 0x60, 0x7f, 0xc4, 0xb3, 0x92, 0xc2, 0xf9, 0x75, 0x09, 0x56, 0x44, +0x2d, 0x54, 0x4f, 0x98, 0xcb, 0x9b, 0xe0, 0xd4, 0x37, 0x19, 0xcd, 0x49, 0x0e, 0x02, 0x4b, 0x61, +0x7e, 0xe1, 0x55, 0x87, 0x1c, 0xa7, 0xee, 0x11, 0x96, 0x30, 0xaf, 0xdf, 0x3f, 0x52, 0x75, 0x36, +0x04, 0x4c, 0x6e, 0x19, 0x40, 0xfb, 0x4f, 0xc6, 0x22, 0xd0, 0x6a, 0x93, 0x27, 0x15, 0x93, 0xb1, +0xda, 0x77, 0x26, 0x3a, 0xbf, 0xae, 0xe4, 0x1e, 0x67, 0xd8, 0x6b, 0x82, 0x52, 0x3a, 0x12, 0xe2, +0xec, 0xe0, 0x58, 0xf5, 0x31, 0x62, 0x67, 0xeb, 0x3f, 0xb6, 0xb6, 0x73, 0x39, 0xb9, 0x3d, 0xef, +0xed, 0x76, 0xd7, 0x37, 0x27, 0x23, 0x3c, 0x42, 0x8c, 0xef, 0x1d, 0x42, 0x6f, 0x3c, 0x9c, 0xb3, +0x74, 0xeb, 0x18, 0x15, 0xfb, 0xaa, 0xdb, 0xe7, 0x49, 0x9e, 0xea, 0x60, 0x99, 0x80, 0x2b, 0x90, +0x06, 0x3d, 0x5c, 0x17, 0x97, 0x14, 0xad, 0x26, 0x34, 0x21, 0xdc, 0xcf, 0xf0, 0xc2, 0x38, 0x43, +0x8c, 0x83, 0x26, 0x71, 0x6f, 0x47, 0x28, 0xad, 0xc6, 0x3c, 0xc4, 0x81, 0x26, 0x58, 0x49, 0xa9, +0x1b, 0xa2, 0xb2, 0xc0, 0x38, 0x72, 0xef, 0xf8, 0x71, 0x31, 0x60, 0x6d, 0x3b, 0x53, 0x1b, 0xb8, +0x1f, 0x09, 0x16, 0xc7, 0xa2, 0x53, 0xfe, 0x23, 0x3a, 0x27, 0x51, 0xbc, 0x19, 0xb3, 0x34, 0x3d, +0xf0, 0x95, 0xd5, 0xda, 0x9a, 0xd9, 0x89, 0xa1, 0x89, 0xa3, 0xc6, 0xd2, 0x92, 0xfc, 0x11, 0x0c, +0x1a, 0x9f, 0xb5, 0x9c, 0x3f, 0x71, 0x54, 0x7c, 0x41, 0xa2, 0x87, 0xea, 0x18, 0xed, 0xca, 0x6a, +0x69, 0x5b, 0x4d, 0x9b, 0xfa, 0x8c, 0xad, 0x96, 0xf9, 0x61, 0x5a, 0x6e, 0xb4, 0xde, 0x57, 0x1c, +0x56, 0x34, 0x05, 0x09, 0x93, 0x89, 0x65, 0xb8, 0xb9, 0xea, 0xe3, 0x0f, 0x4c, 0x40, 0x6e, 0x15, +0xc9, 0x53, 0x8c, 0x7d, 0x09, 0x82, 0x8c, 0x7c, 0xcb, 0x0c, 0x0f, 0x24, 0x3a, 0xf1, 0xcd, 0xe8, +0x45, 0xc5, 0x12, 0xfc, 0x2f, 0x18, 0x06, 0x0e, 0xbe, 0x2b, 0xf7, 0xf1, 0x51, 0x68, 0xbc, 0xa8, +0x95, 0x1d, 0x19, 0xdf, 0x4d, 0xdd, 0x87, 0x92, 0xe4, 0xd7, 0xcc, 0x07, 0xcd, 0x08, 0xe1, 0x66, +0x9e, 0xe8, 0x9f, 0x98, 0x8a, 0x8c, 0x3d, 0x99, 0x75, 0xb6, 0xf8, 0x2b, 0x18, 0x1d, 0xd0, 0x42, +0x89, 0xbf, 0x6c, 0x0c, 0x5d, 0xd8, 0xf8, 0x59, 0xbc, 0xd4, 0x01, 0xae, 0x78, 0xc4, 0x09, 0x5c, +0xc7, 0x4f, 0xe2, 0x28, 0x67, 0x9b, 0x2a, 0x2e, 0x3a, 0x03, 0xe2, 0x17, 0x9a, 0x1c, 0xf0, 0xc6, +0xec, 0xb5, 0x37, 0x8b, 0x37, 0xe6, 0xcc, 0x78, 0x52, 0xc7, 0x73, 0xe2, 0x8b, 0x38, 0xab, 0xd4, +0x22, 0xa4, 0x1b, 0x52, 0x4c, 0x63, 0x6d, 0xd6, 0x53, 0xb1, 0x8b, 0x40, 0xcb, 0x2d, 0x87, 0xc9, +0x88, 0x27, 0x01, 0xfd, 0x42, 0x7e, 0xc8, 0x60, 0xd2, 0xa7, 0xf6, 0x06, 0xf9, 0x7f, 0xc7, 0xcf, +0xb9, 0x57, 0x8d, 0xea, 0xd4, 0x29, 0x93, 0x2c, 0x3e, 0xf4, 0xe9, 0xd2, 0x8a, 0xe4, 0x39, 0xc8, +0xc3, 0x7f, 0xdf, 0xe2, 0x34, 0x1a, 0xf8, 0x5f, 0x28, 0xb9, 0xb4, 0x99, 0xb5, 0x51, 0x44, 0xaa, +0x81, 0xa2, 0xb1, 0xd2, 0xf8, 0xdc, 0x86, 0xd2, 0xdf, 0x83, 0x34, 0x4f, 0x75, 0x15, 0xc8, 0x16, +0xeb, 0x19, 0x9f, 0xcf, 0xb7, 0x40, 0xb2, 0x59, 0xab, 0x30, 0x53, 0xc1, 0x84, 0xc5, 0xca, 0xf9, +0xf5, 0x47, 0xa1, 0x43, 0x89, 0x02, 0x00, 0xc6, 0xe8, 0xe3, 0x9d, 0x5d, 0x87, 0x40, 0x27, 0xba, +0x81, 0x08, 0x36, 0x1b, 0xcb, 0xd4, 0x6d, 0xef, 0x42, 0x97, 0x18, 0x07, 0x63, 0xca, 0xcd, 0x3e, +0x30, 0x55, 0x43, 0x44, 0x93, 0xde, 0x47, 0xf7, 0xc7, 0x59, 0x62, 0x5e, 0x3e, 0xff, 0x2b, 0x92, +0x67, 0xa3, 0x20, 0x9f, 0xfd, 0x68, 0x41, 0xb8, 0x74, 0x99, 0x4b, 0xd7, 0x22, 0xca, 0x8d, 0x37, +0xd3, 0xd1, 0x93, 0x21, 0x48, 0xd1, 0x86, 0xd1, 0x50, 0x1e, 0x32, 0x81, 0x63, 0x8e, 0x22, 0xe8, +0x64, 0x02, 0xbe, 0x8a, 0xf5, 0x78, 0x9d, 0x62, 0x8b, 0x2d, 0xbf, 0xca, 0x4d, 0x78, 0x05, 0x9a, +0xc9, 0xb7, 0xc9, 0xad, 0xcb, 0xc9, 0x44, 0x74, 0xac, 0x34, 0x44, 0x34, 0x91, 0x87, 0xf7, 0xb2, +0x50, 0xe3, 0xf6, 0x50, 0x78, 0x46, 0xe6, 0x16, 0xeb, 0x64, 0xd3, 0x16, 0x95, 0x16, 0xdf, 0x54, +0x96, 0x7f, 0x2e, 0x3c, 0xbe, 0xf4, 0xb6, 0x7b, 0x6b, 0x80, 0x34, 0xbc, 0x7e, 0x3f, 0xf0, 0xdd, +0xf2, 0xc0, 0x0d, 0xd1, 0x79, 0x81, 0x70, 0x98, 0x1d, 0x80, 0x4b, 0x7a, 0x30, 0x4d, 0x86, 0x55, +0xdf, 0x3c, 0x1b, 0xe9, 0x12, 0xba, 0x79, 0x92, 0x43, 0x0e, 0x1b, 0x42, 0x1d, 0x39, 0x76, 0xe4, +0xdc, 0x76, 0x7b, 0x47, 0x65, 0x50, 0x2f, 0x0e, 0x45, 0xd2, 0xe7, 0x0c, 0x4a, 0x49, 0xef, 0x0f, +0x0e, 0xe8, 0x38, 0x28, 0xdd, 0xde, 0x56, 0x2b, 0x9a, 0x26, 0x7a, 0xa8, 0xb9, 0xf7, 0x95, 0xf4, +0xdc, 0x94, 0xcc, 0x6e, 0xc3, 0x57, 0x8f, 0x06, 0xe4, 0xea, 0x1b, 0x01, 0x57, 0xca, 0x59, 0xb3, +0x6a, 0x9f, 0x9f, 0x26, 0x04, 0x58, 0x13, 0x17, 0xe4, 0x38, 0x2b, 0x82, 0xe6, 0x33, 0x9a, 0xbd, +0xba, 0x80, 0xf1, 0x1c, 0xde, 0x84, 0x52, 0x6a, 0x8c, 0x4c, 0xa0, 0x06, 0x93, 0x03, 0x05, 0xc0, +0x5b, 0xaa, 0xc4, 0x7e, 0x2a, 0x23, 0x85, 0x76, 0x0f, 0x32, 0x2d, 0xa7, 0x68, 0x06, 0xb8, 0x43, +0xba, 0x03, 0xf4, 0x62, 0x15, 0xee, 0x23, 0x5a, 0x03, 0x89, 0x9b, 0x62, 0xc3, 0x70, 0xcb, 0xe2, +0xd5, 0x4c, 0x0f, 0xae, 0x55, 0x0a, 0xdb, 0x7a, 0x45, 0xe7, 0xef, 0x24, 0x9f, 0xde, 0x27, 0x33, +0x7e, 0xf5, 0xc3, 0x78, 0xcd, 0xac, 0x65, 0xa9, 0x8d, 0x64, 0x66, 0x2b, 0xc6, 0xef, 0xb8, 0x20, +0x8d, 0x94, 0x9d, 0x66, 0x03, 0xe0, 0x4d, 0xa9, 0xac, 0x16, 0x45, 0xcf, 0xa9, 0xe1, 0x52, 0x2f, +0x04, 0x79, 0xfe, 0xdc, 0x0c, 0xb9, 0x49, 0x2a, 0x52, 0x07, 0x7b, 0x2e, 0x84, 0xfd, 0x48, 0x2f, +0x77, 0x80, 0x0f, 0xb7, 0xa3, 0xc6, 0x12, 0x17, 0x9a, 0x25, 0x0e, 0x72, 0xcb, 0x55, 0xfa, 0x5c, +0xa6, 0xae, 0x20, 0x67, 0x3a, 0x3f, 0x3b, 0x00, 0x74, 0x67, 0x1f, 0x83, 0x0f, 0xc5, 0x4d, 0x6b, +0xf4, 0x3b, 0xd7, 0x51, 0x4b, 0x14, 0x90, 0x44, 0x5e, 0x82, 0x4c, 0x55, 0xa4, 0xfa, 0x70, 0xd7, +0x83, 0x3f, 0xb1, 0x93, 0xe2, 0xb7, 0x08, 0xc0, 0x3a, 0xe1, 0x65, 0x66, 0x14, 0x22, 0xda, 0xcf, +0x9a, 0x06, 0x0c, 0x42, 0x5e, 0xcb, 0xfe, 0xc3, 0x66, 0x47, 0xf1, 0x95, 0x72, 0xf7, 0x94, 0xcb, +0xdd, 0xef, 0x0c, 0x50, 0x3e, 0x64, 0x04, 0xc6, 0x0d, 0xd8, 0xf6, 0x6b, 0x9a, 0xaf, 0xee, 0x01, +0x25, 0xec, 0xd5, 0xed, 0xdb, 0xba, 0x1b, 0x1a, 0x5b, 0x7a, 0x53, 0xd3, 0x52, 0x87, 0xb7, 0xb6, +0xcb, 0x83, 0x96, 0x64, 0x99, 0x21, 0x2d, 0x49, 0x97, 0x5f, 0xb2, 0x78, 0xf0, 0x47, 0x8f, 0x61, +0x21, 0xba, 0x76, 0xdb, 0x5d, 0xd7, 0x4e, 0x3f, 0x6d, 0xce, 0xff, 0xc7, 0x4c, 0xb2, 0xb7, 0x1b, +0x31, 0x26, 0x57, 0xb4, 0xc4, 0x43, 0x5e, 0x53, 0x4d, 0x6e, 0x76, 0xe2, 0xa8, 0x71, 0x3c, 0x66, +0x05, 0x2e, 0xdc, 0x2b, 0x68, 0x14, 0xfa, 0x08, 0xba, 0x33, 0xe9, 0x1a, 0x88, 0xa5, 0x9c, 0x5f, +0x55, 0x4e, 0x37, 0x6a, 0xa7, 0x82, 0xee, 0x46, 0x0d, 0xd5, 0x25, 0xa3, 0x08, 0xff, 0xd0, 0x04, +0xcc, 0x9a, 0xd9, 0x2e, 0x53, 0x03, 0x63, 0x44, 0x36, 0xc4, 0x8f, 0x96, 0xf6, 0xfa, 0xf4, 0x7a, +0x23, 0x14, 0xc2, 0x84, 0xf2, 0x00, 0x78, 0x5a, 0x43, 0x8d, 0x32, 0x0d, 0xbc, 0xab, 0xef, 0xf2, +0x30, 0x51, 0x4b, 0x9d, 0x20, 0x23, 0xda, 0x5d, 0xb7, 0xe4, 0x14, 0x73, 0xaf, 0xb0, 0x8b, 0x55, +0x52, 0x45, 0x26, 0x85, 0x07, 0xf7, 0xa8, 0xa4, 0x0d, 0xc5, 0x52, 0x6a, 0xb5, 0xc6, 0x4c, 0xbd, +0x46, 0xab, 0x8e, 0xd1, 0x91, 0x07, 0x20, 0x43, 0x2f, 0xe6, 0x11, 0x2d, 0x9c, 0x7d, 0x10, 0xac, +0x75, 0xc5, 0x11, 0x5c, 0xd1, 0x98, 0xb8, 0xe1, 0x3d, 0x12, 0x6f, 0x8a, 0x1e, 0x26, 0x22, 0xbb, +0x1d, 0x38, 0xd2, 0xbe, 0x9a, 0xe2, 0x00, 0xaa, 0xd9, 0xe3, 0x64, 0x5f, 0x47, 0x70, 0xf8, 0xda, +0x56, 0x6b, 0xf6, 0x87, 0xc0, 0xf8, 0xa3, 0x57, 0xe5, 0x5a, 0x39, 0x15, 0x99, 0x17, 0xce, 0x40, +0x32, 0x2e, 0xaa, 0xca, 0xd9, 0x04, 0x57, 0x9e, 0x58, 0x58, 0x02, 0xf1, 0x26, 0x32, 0x35, 0xa9, +0xa3, 0xb0, 0x34, 0xdc, 0xa6, 0x68, 0xfb, 0x94, 0x99, 0x24, 0x60, 0x01, 0xb4, 0xa0, 0x54, 0x3a, +0xca, 0x17, 0xa0, 0xda, 0x86, 0xb1, 0x84, 0x04, 0x71, 0x66, 0xc1, 0x0a, 0x41, 0x1e, 0x77, 0x4e, +0x2d, 0xa2, 0xb8, 0xc9, 0x0b, 0xdf, 0x98, 0xf9, 0x51, 0xc1, 0x00, 0x79, 0xd9, 0x45, 0xd8, 0xcc, +0x49, 0x05, 0xd9, 0x58, 0xe9, 0xce, 0xb8, 0x84, 0xb6, 0x59, 0x21, 0x89, 0xec, 0x46, 0xdd, 0x7e, +0xdc, 0xdc, 0xc8, 0x50, 0xdf, 0xc6, 0x65, 0x88, 0x1d, 0x69, 0x7a, 0x6c, 0x90, 0xa1, 0x9e, 0x01, +0xe0, 0xd9, 0xaa, 0x64, 0x13, 0xb8, 0xb0, 0x89, 0x82, 0xa8, 0x59, 0x16, 0x23, 0xdd, 0xbb, 0x37, +0x72, 0x0f, 0x51, 0x5b, 0xa8, 0x24, 0xfe, 0xd3, 0x88, 0xb8, 0xcf, 0x41, 0xe1, 0x54, 0x14, 0xc5, +0x55, 0xe3, 0xec, 0x15, 0xd3, 0xdc, 0xdc, 0x92, 0x5a, 0x66, 0xf9, 0x23, 0x90, 0xde, 0x68, 0xcf, +0x1f, 0xba, 0x66, 0x70, 0x70, 0xa9, 0x67, 0xb6, 0x67, 0x98, 0xda, 0x27, 0x04, 0xe3, 0xe7, 0xd0, +0x52, 0x8e, 0x25, 0xa7, 0x48, 0x7c, 0x3d, 0x0b, 0xc4, 0x79, 0x3b, 0x8b, 0x8e, 0x40, 0x94, 0xdc, +0xec, 0x3e, 0x77, 0xbe, 0xe8, 0x45, 0x39, 0x70, 0x91, 0x53, 0xcb, 0xb1, 0x42, 0xec, 0x61, 0xbb, +0xa1, 0x29, 0x59, 0xd3, 0xac, 0x31, 0x7c, 0x3d, 0xc1, 0xf3, 0xd6, 0x05, 0xe1, 0x90, 0x41, 0x93, +0xa1, 0x50, 0xc9, 0x9a, 0xd8, 0x6a, 0x04, 0xe3, 0x28, 0xa1, 0x75, 0x21, 0x89, 0x51, 0xd1, 0x8b, +0x0a, 0x58, 0xdb, 0xbf, 0xea, 0xe4, 0x07, 0x71, 0x53, 0xf2, 0xfb, 0x4d, 0xa9, 0x28, 0x50, 0x67, +0xce, 0xcf, 0x5b, 0x87, 0x9a, 0x24, 0x36, 0xd1, 0xaa, 0xaf, 0xd4, 0xf5, 0x29, 0x28, 0xc9, 0x4e, +0xcb, 0x35, 0x73, 0xab, 0xc4, 0x48, 0x77, 0x92, 0x1b, 0x6e, 0xf4, 0xa0, 0xf3, 0xdb, 0xe2, 0x37, +0xad, 0x9c, 0x5b, 0xbb, 0xa5, 0x5b, 0x0d, 0xb8, 0xce, 0x04, 0xe2, 0x02, 0xd4, 0x1b, 0xb0, 0x81, +0x56, 0xd1, 0x8b, 0x10, 0x21, 0x63, 0x2c, 0x9b, 0x9a, 0x74, 0x3f, 0xfd, 0xb8, 0xb2, 0xe6, 0xb0, +0x14, 0x80, 0x0e, 0xc1, 0x9d, 0x52, 0xc7, 0xa7, 0xf1, 0x62, 0x3b, 0xc9, 0xdf, 0xd8, 0xce, 0xdd, +0x47, 0x16, 0xe2, 0xc9, 0x5f, 0xb1, 0x5d, 0x39, 0x27, 0xdc, 0xd3, 0xd4, 0x7b, 0xa8, 0x4a, 0x61, +0x86, 0x2c, 0xe3, 0xad, 0x8f, 0xc8, 0x46, 0x59, 0xb3, 0x36, 0xe2, 0x44, 0x13, 0xe6, 0x47, 0xa7, +0x96, 0x02, 0xa9, 0xca, 0x5e, 0x6a, 0x14, 0x5a, 0x5a, 0x35, 0x6d, 0xe2, 0x23, 0x9d, 0xe5, 0x55, +0x28, 0x03, 0x95, 0x4d, 0x83, 0xf2, 0xe9, 0xd4, 0xbc, 0xa5, 0x6d, 0x8e, 0xc0, 0x7e, 0xf9, 0x19, +0xff, 0xbf, 0x2b, 0xaa, 0x61, 0x3e, 0xd1, 0x82, 0x8a, 0x95, 0xbf, 0xe4, 0xa5, 0xde, 0xa3, 0xd3, +0x97, 0x5f, 0x80, 0xc0, 0x84, 0x47, 0x9e, 0xd4, 0x1d, 0xb4, 0xc0, 0xf0, 0x82, 0xe3, 0xa8, 0xf5, +0x58, 0x76, 0xf3, 0x80, 0xc6, 0x5b, 0xc6, 0xab, 0x47, 0x0c, 0x59, 0x48, 0x45, 0xaf, 0x70, 0x24, +0x63, 0xca, 0xc9, 0x53, 0xe4, 0x65, 0x36, 0x4d, 0xcc, 0x4e, 0xe8, 0xfb, 0x32, 0x02, 0x87, 0xa1, +0x51, 0xb9, 0xba, 0x29, 0x69, 0x84, 0x47, 0xbe, 0x73, 0x08, 0xdf, 0x5b, 0x0d, 0xde, 0xb4, 0xcb, +0xe1, 0x01, 0x17, 0x0a, 0x6d, 0xb7, 0xcc, 0x5a, 0xcc, 0x8c, 0xdd, 0xa9, 0xc9, 0x5e, 0xb0, 0x97, +0xc7, 0x0a, 0x8f, 0xab, 0x47, 0xea, 0x65, 0x51, 0x63, 0x36, 0x09, 0x4c, 0x2e, 0xcb, 0x93, 0x70, +0xf0, 0x4c, 0x21, 0x45, 0x59, 0xab, 0x48, 0x64, 0x79, 0xbf, 0x7f, 0x5e, 0x3d, 0x3d, 0x9b, 0xb0, +0x2a, 0x41, 0x17, 0xdd, 0xc1, 0x86, 0x6c, 0xc9, 0x9a, 0xd6, 0xf9, 0x77, 0xee, 0x64, 0xba, 0xbe, +0xcb, 0x0c, 0x6f, 0x35, 0xf8, 0xa1, 0x43, 0x47, 0xf7, 0x48, 0xff, 0x28, 0xa7, 0x18, 0x08, 0x87, +0x81, 0x80, 0xfb, 0x78, 0x12, 0xd6, 0x1f, 0xf7, 0xbf, 0x07, 0xd4, 0x43, 0xde, 0x97, 0xe2, 0x57, +0xbf, 0xc2, 0x1c, 0xa3, 0x00, 0xf9, 0x84, 0x5a, 0x27, 0xcf, 0x0c, 0xe9, 0x11, 0x82, 0x6a, 0x86, +0xd3, 0x70, 0xfe, 0x11, 0xf8, 0xa3, 0xa5, 0x6e, 0x2b, 0x03, 0x35, 0x95, 0x04, 0xed, 0x98, 0x62, +0x9f, 0x65, 0xcd, 0x53, 0xa7, 0x8a, 0x88, 0xb5, 0x81, 0xa5, 0x86, 0x96, 0xd2, 0xb3, 0x2b, 0xd6, +0xa6, 0x0b, 0xd2, 0x89, 0x0f, 0x69, 0xcc, 0xf6, 0x41, 0xa7, 0x5b, 0x5f, 0x5a, 0xbe, 0x99, 0xb7, +0xa3, 0xee, 0xbf, 0x95, 0x85, 0x8b, 0x7e, 0x6a, 0xed, 0x3f, 0x23, 0xa9, 0xe5, 0xf0, 0xe6, 0xf5, +0xbb, 0xeb, 0x1e, 0x09, 0x22, 0x00, 0xfc, 0x4c, 0xdf, 0xa6, 0xff, 0x1d, 0xfd, 0xed, 0x03, 0x36, +0xed, 0x1f, 0xe6, 0x5c, 0x04, 0x24, 0x6c, 0xcb, 0xcb, 0xd5, 0xb0, 0x3d, 0x73, 0xb6, 0x1d, 0xa3, +0x60, 0x78, 0x3e, 0xb0, 0x36, 0xff, 0x05, 0x39, 0xe8, 0x3b, 0x7b, 0x2d, 0x89, 0xa1, 0x46, 0x61, +0xe8, 0x86, 0x09, 0x85, 0x0d, 0x60, 0xd1, 0x4f, 0xfd, 0xc3, 0xce, 0x79, 0x15, 0xb4, 0xca, 0x73, +0x70, 0x05, 0xf7, 0xe8, 0x65, 0xba, 0x5c, 0x8f, 0xa0, 0xdc, 0xff, 0x9b, 0xfc, 0x4c, 0x45, 0x57, +0xe3, 0x90, 0xcc, 0xda, 0x7a, 0xea, 0x0d, 0xf0, 0x66, 0x33, 0x33, 0x09, 0x95, 0xfd, 0x41, 0x73, +0xbd, 0x1a, 0xfe, 0x0b, 0xe8, 0x1f, 0xfa, 0x79, 0x49, 0x84, 0xbf, 0x83, 0x25, 0xb5, 0xa3, 0x22, +0x6d, 0xdb, 0x37, 0x64, 0xbf, 0xb0, 0xb0, 0xa2, 0xba, 0x32, 0xb0, 0xa9, 0xf2, 0x03, 0x1c, 0x1b, +0x9e, 0x8a, 0x1d, 0x99, 0xab, 0xae, 0x97, 0xb5, 0x0a, 0xee, 0x1a, 0x5b, 0x62, 0xab, 0x46, 0x53, +0x3b, 0x2f, 0x83, 0x95, 0x32, 0x5f, 0x66, 0xbd, 0x69, 0x8a, 0x90, 0x42, 0xf4, 0x8a, 0x7b, 0x1a, +0x67, 0xa8, 0xf5, 0x8e, 0x28, 0xa1, 0x38, 0xc0, 0x52, 0xf7, 0xc8, 0xb7, 0xd6, 0xe5, 0x79, 0xb5, +0xc3, 0x95, 0xb0, 0x0c, 0x21, 0x8c, 0x26, 0x9c, 0xb5, 0xb7, 0x0c, 0xd7, 0x23, 0x65, 0x7e, 0x89, +0xcb, 0xdc, 0xaa, 0x1a, 0x37, 0xa3, 0x47, 0x50, 0x4c, 0xab, 0xa8, 0x69, 0x3d, 0x39, 0x7c, 0x67, +0x94, 0x12, 0x8d, 0x9c, 0x95, 0x31, 0x6f, 0xea, 0xf1, 0x59, 0x95, 0x1f, 0xad, 0x82, 0x7f, 0x18, +0x85, 0x9e, 0xbd, 0x17, 0x17, 0xd1, 0xcb, 0x7c, 0x5b, 0x07, 0x69, 0xdc, 0x39, 0x97, 0xd9, 0x71, +0xe7, 0xbf, 0x52, 0x15, 0x75, 0x3a, 0x70, 0x80, 0xdf, 0x7c, 0x26, 0x8c, 0x28, 0x0b, 0x13, 0xdd, +0x94, 0xe7, 0x56, 0x0e, 0x61, 0x84, 0xd5, 0x9b, 0x17, 0xc9, 0x55, 0x75, 0x1b, 0x26, 0x62, 0x20, +0x4b, 0xdb, 0xf7, 0xb7, 0xa2, 0x70, 0x82, 0x1e, 0x19, 0x0f, 0x4d, 0xe7, 0x64, 0x92, 0x56, 0xc4, +0xd5, 0x32, 0xa5, 0xb4, 0x27, 0x0c, 0x52, 0x7e, 0x16, 0xf3, 0x26, 0x4a, 0xf6, 0xa8, 0xa5, 0x41, +0xfe, 0x0f, 0xc0, 0x2d, 0x21, 0xba, 0xff, 0x16, 0x45, 0x38, 0xe0, 0x76, 0xfd, 0x61, 0x07, 0x77, +0xcb, 0x53, 0x37, 0x84, 0x17, 0xe4, 0x7c, 0x8b, 0x8d, 0xff, 0x3e, 0xd6, 0x98, 0xf5, 0xd8, 0xd8, +0xf3, 0x16, 0xbc, 0x22, 0x5b, 0x2c, 0x6a, 0xf5, 0x92, 0x8b, 0x30, 0xfd, 0xb3, 0x95, 0x7d, 0xb2, +0xe5, 0xfc, 0x81, 0x74, 0x6a, 0x5c, 0x47, 0xd4, 0xc1, 0x75, 0xcf, 0xe8, 0x0d, 0x7c, 0xf5, 0xd0, +0x65, 0xe0, 0x20, 0xf5, 0xe9, 0x17, 0xde, 0x75, 0x9c, 0x7a, 0xb4, 0x1d, 0xac, 0xef, 0x6d, 0xd6, +0xac, 0xc2, 0x28, 0x4f, 0x84, 0x06, 0x7a, 0xf2, 0x67, 0xaf, 0x41, 0x14, 0x71, 0x81, 0x0b, 0x94, +0xd3, 0x1b, 0xeb, 0x3a, 0x0a, 0x64, 0x33, 0x46, 0x57, 0x52, 0x8a, 0x12, 0x09, 0xbc, 0xca, 0xda, +0x9b, 0x2b, 0xb7, 0x89, 0x99, 0x0b, 0x61, 0xe1, 0xd1, 0x19, 0xbe, 0x02, 0x6f, 0x6c, 0x12, 0x6a, +0x4b, 0xcf, 0x29, 0x93, 0xe9, 0x26, 0x5a, 0x4a, 0x54, 0x15, 0x4d, 0xda, 0xd3, 0xe6, 0xc7, 0x5c, +0xc9, 0xfc, 0x7c, 0xa6, 0xac, 0xdf, 0x76, 0x69, 0x92, 0xa4, 0x8e, 0x07, 0x57, 0x5d, 0xec, 0xca, +0x2e, 0x90, 0xfa, 0x3a, 0xb0, 0x16, 0xaa, 0x8d, 0x63, 0x59, 0xf9, 0x5f, 0x98, 0xc7, 0x22, 0x10, +0x7e, 0x14, 0xe1, 0x57, 0xb7, 0x19, 0x5b, 0x9f, 0x50, 0xe6, 0x9c, 0xa1, 0x80, 0xa0, 0x3d, 0x5f, +0xd1, 0x35, 0x29, 0x8b, 0xf6, 0xfa, 0x9a, 0x58, 0x8a, 0xce, 0xf6, 0x1e, 0x95, 0xc3, 0x2b, 0x52, +0xa8, 0x39, 0xcb, 0x1f, 0x21, 0x47, 0xb0, 0x22, 0xf7, 0xb4, 0x42, 0xc4, 0x82, 0x8b, 0x86, 0xc3, +0x92, 0x93, 0x9b, 0xa7, 0xac, 0xed, 0x2b, 0xe7, 0x67, 0x08, 0x7e, 0xfa, 0x35, 0x30, 0x72, 0xdc, +0xb9, 0x69, 0x23, 0x7d, 0x7e, 0xe6, 0x6e, 0x32, 0xf4, 0xc4, 0xc4, 0xfa, 0xff, 0xc1, 0x42, 0x7a, +0x83, 0x88, 0x67, 0x1c, 0x5e, 0x7f, 0xae, 0xbb, 0x65, 0x5e, 0x96, 0xea, 0xe3, 0xf8, 0xe7, 0x10, +0x41, 0x64, 0x0c, 0x5b, 0x99, 0xfb, 0x08, 0xfe, 0xee, 0x57, 0x72, 0x31, 0xaa, 0xe1, 0x18, 0xe6, +0x20, 0x7a, 0xf7, 0x94, 0xd1, 0x95, 0x50, 0xee, 0x35, 0xd4, 0xfa, 0x35, 0x86, 0xed, 0x89, 0x98, +0xf9, 0x87, 0x14, 0x5c, 0x15, 0x74, 0xea, 0x8f, 0x82, 0x49, 0x15, 0xff, 0x75, 0x23, 0x98, 0x41, +0x23, 0x44, 0x3e, 0xd1, 0x17, 0x99, 0x64, 0xb2, 0x04, 0xd4, 0xc6, 0xbe, 0x68, 0x0b, 0xb1, 0x3c, +0xc6, 0x03, 0x4b, 0xba, 0xda, 0x2f, 0xe0, 0x3b, 0xbe, 0x6f, 0x5d, 0x5f, 0xbb, 0x16, 0x68, 0x01, +0x52, 0x6e, 0xf5, 0x3a, 0xc7, 0x7a, 0x55, 0x29, 0x87, 0xc8, 0x54, 0x8d, 0xd1, 0xda, 0x21, 0xe7, +0x45, 0xd1, 0xeb, 0x17, 0x9e, 0x36, 0x2e, 0x0a, 0xbf, 0x38, 0x54, 0x9c, 0x79, 0x25, 0xc9, 0x94, +0xe9, 0xa9, 0x65, 0xc1, 0xa6, 0x19, 0xcd, 0xf6, 0x20, 0x16, 0xc2, 0xbf, 0x4d, 0xa1, 0x84, 0x4d, +0x03, 0x6a, 0x6c, 0x1b, 0xbe, 0x77, 0x4c, 0x71, 0x79, 0x4f, 0xdf, 0xaa, 0x36, 0x2c, 0xd0, 0xdc, +0xb9, 0x13, 0x4a, 0x5a, 0xfb, 0x99, 0xd1, 0xe1, 0xf2, 0x0b, 0x65, 0x7c, 0x47, 0x74, 0xa7, 0x18, +0xfa, 0xeb, 0x28, 0xe3, 0x4e, 0x15, 0xb4, 0x2a, 0x00, 0xa1, 0x71, 0x31, 0x04, 0xfb, 0xa2, 0xdf, +0xb7, 0xe5, 0xd8, 0x81, 0x68, 0x7c, 0x57, 0x82, 0xd9, 0xdf, 0xd7, 0x9a, 0x98, 0x29, 0x0a, 0xbd, +0x6c, 0x8a, 0x11, 0xb0, 0x9b, 0x3b, 0x47, 0xea, 0x22, 0x95, 0x0e, 0x4f, 0xa4, 0x87, 0xd7, 0x80, +0x26, 0x57, 0xd0, 0x23, 0x3e, 0xa0, 0x11, 0x1f, 0x68, 0x96, 0x98, 0x0f, 0xcf, 0x9f, 0x90, 0x04, +0xc1, 0x42, 0x94, 0x01, 0xc8, 0xa0, 0x75, 0x4b, 0x4c, 0xda, 0x72, 0x7f, 0x6b, 0xa9, 0x2b, 0xbd, +0xb0, 0xe0, 0x2d, 0x3d, 0x5c, 0x0c, 0x37, 0x64, 0x21, 0xf6, 0xf0, 0x6d, 0xcf, 0x6b, 0xb0, 0x3c, +0x59, 0x05, 0xcb, 0x0f, 0xa8, 0xc3, 0xc9, 0x24, 0x17, 0x42, 0x17, 0xab, 0xf7, 0x7c, 0xc4, 0xb1, +0xff, 0x2c, 0x8f, 0xd8, 0x07, 0x01, 0x56, 0x73, 0x46, 0x36, 0x47, 0xd6, 0x0c, 0x32, 0x78, 0x35, +0x53, 0xc8, 0xaa, 0xcc, 0xa0, 0x99, 0xb2, 0xd7, 0x5b, 0xd4, 0xed, 0xe1, 0xa2, 0x89, 0x82, 0x42, +0x86, 0x13, 0x99, 0x1e, 0x4c, 0x1e, 0xda, 0x41, 0xb5, 0x23, 0x62, 0xdc, 0x43, 0x60, 0x62, 0x0c, +0x58, 0x0f, 0x51, 0xf0, 0x2b, 0xef, 0xea, 0xfb, 0xa0, 0x85, 0x34, 0x82, 0xb2, 0x6f, 0xc6, 0x3f, +0x39, 0xf5, 0xa1, 0x4c, 0xca, 0x94, 0x18, 0x8b, 0xc7, 0xd8, 0xca, 0x92, 0x79, 0xcb, 0xe8, 0xd3, +0xd0, 0x42, 0xbc, 0x0d, 0x6f, 0x2a, 0x21, 0x0c, 0x8f, 0x82, 0x23, 0xa4, 0x60, 0xf2, 0xa6, 0xbe, +0x9b, 0x83, 0x6a, 0x60, 0x13, 0xc7, 0xd4, 0x34, 0x1d, 0xb4, 0xc9, 0x03, 0xe6, 0x3f, 0x6e, 0x8f, +0x22, 0xc0, 0x89, 0x49, 0x50, 0xe4, 0xd6, 0xe5, 0x17, 0xad, 0x6f, 0x48, 0xeb, 0x66, 0xb2, 0xbf, +0xa2, 0xd2, 0x8f, 0x17, 0xa2, 0xc7, 0x7b, 0x4c, 0xd3, 0x53, 0x85, 0x60, 0x9e, 0x38, 0xef, 0xaf, +0x5e, 0x11, 0xbb, 0xdf, 0x5e, 0x10, 0xba, 0xf6, 0xfd, 0x87, 0x80, 0x27, 0x09, 0x72, 0x29, 0x88, +0x94, 0x71, 0xf5, 0x1f, 0xec, 0x8c, 0x06, 0xcd, 0x39, 0x8e, 0xa2, 0xe3, 0x6c, 0x1c, 0x04, 0x49, +0xae, 0x73, 0xdd, 0x3b, 0xe6, 0x2d, 0xe2, 0xef, 0x4a, 0x0f, 0x2b, 0xf3, 0x1b, 0x31, 0xd7, 0x8f, +0x7e, 0x73, 0xb2, 0x33, 0xb0, 0x44, 0x12, 0x91, 0xff, 0xbb, 0x49, 0x99, 0x2c, 0x43, 0xb0, 0x7e, +0xe4, 0x64, 0xb9, 0xb7, 0x97, 0x75, 0x80, 0xe1, 0x9b, 0x18, 0xbe, 0x8f, 0xde, 0xb1, 0x58, 0x4e, +0x3d, 0xfe, 0x7a, 0x20, 0x57, 0x6a, 0xb8, 0x9c, 0xe6, 0x6f, 0xdc, 0xe9, 0x84, 0x59, 0x03, 0xfc, +0x25, 0xe9, 0x74, 0x5a, 0x6d, 0xb4, 0x50, 0x18, 0xc3, 0x77, 0x7b, 0x77, 0x6d, 0x0c, 0xf7, 0x38, +0x61, 0xde, 0x5b, 0x30, 0x6c, 0xef, 0x9b, 0xd0, 0x65, 0xdf, 0x14, 0x87, 0x8d, 0x73, 0x29, 0x1f, +0x39, 0x4f, 0x84, 0xab, 0x3e, 0xbb, 0xbb, 0x9c, 0xc5, 0xb5, 0xc0, 0x89, 0x66, 0x05, 0xe0, 0x07, +0xf8, 0x00, 0xe0, 0x10, 0x3a, 0xab, 0x89, 0x00, 0x5b, 0xdd, 0x56, 0xc3, 0xea, 0x56, 0x25, 0xdc, +0xcb, 0x5f, 0xb2, 0x65, 0x0b, 0xf6, 0x89, 0xf3, 0x19, 0x9f, 0x2f, 0x26, 0xcd, 0x2a, 0xaf, 0x80, +0x84, 0x29, 0x1e, 0x62, 0x68, 0x8b, 0x98, 0x89, 0xa8, 0xba, 0x44, 0xac, 0xea, 0x36, 0xfd, 0x77, +0x86, 0xfc, 0x23, 0x16, 0x73, 0x64, 0x50, 0x43, 0x93, 0x97, 0x60, 0x5c, 0x96, 0x97, 0x13, 0x6b, +0x83, 0xc7, 0x7a, 0x2e, 0xc9, 0x29, 0x71, 0xeb, 0x6f, 0xcc, 0x74, 0xc1, 0x1f, 0x0a, 0x5c, 0xf4, +0x40, 0xbf, 0x5f, 0x85, 0x74, 0x03, 0x7d, 0x43, 0x95, 0x58, 0xc1, 0x1f, 0x20, 0xb4, 0xd3, 0xfb, +0x51, 0xa6, 0x06, 0x29, 0x27, 0x4e, 0xa8, 0xf3, 0x19, 0x6d, 0xb8, 0xc5, 0x05, 0x90, 0x23, 0x7e, +0x0a, 0x08, 0xea, 0x9b, 0xb9, 0x1d, 0x0f, 0x73, 0x1d, 0x05, 0x15, 0x63, 0xb3, 0x1e, 0xf6, 0x14, +0x8f, 0x9a, 0x01, 0x0a, 0x83, 0x37, 0x16, 0xc2, 0xe8, 0xcc, 0x1e, 0xe3, 0x1c, 0x83, 0xc4, 0xed, +0x83, 0x88, 0x07, 0x10, 0x0e, 0x37, 0xb5, 0x02, 0x12, 0x4c, 0x4c, 0x2b, 0xef, 0x21, 0xcf, 0x5f, +0x11, 0xc3, 0x8e, 0x72, 0x5b, 0x67, 0x09, 0xf1, 0x08, 0xbe, 0xa9, 0x20, 0x6d, 0xee, 0x0c, 0x30, +0x36, 0x75, 0x29, 0x1d, 0xf5, 0xc1, 0x97, 0x5e, 0xad, 0xe7, 0x73, 0x62, 0x2e, 0xa4, 0xf7, 0xe1, +0x0d, 0x9d, 0xa8, 0x10, 0x96, 0xfd, 0x06, 0xc5, 0x5f, 0x78, 0x86, 0x49, 0xde, 0x9a, 0x1d, 0x07, +0x60, 0x18, 0x76, 0x0b, 0xe8, 0x51, 0x0c, 0x46, 0x27, 0x99, 0xc1, 0x25, 0x2e, 0xed, 0x7d, 0x93, +0x68, 0x83, 0x94, 0x9c, 0x46, 0x1f, 0x2f, 0x92, 0x21, 0x3b, 0x56, 0xf9, 0x44, 0xca, 0xf5, 0xd5, +0x3e, 0x20, 0xce, 0x51, 0x97, 0x14, 0x4a, 0x58, 0x34, 0x7b, 0x55, 0xef, 0xb2, 0x17, 0xac, 0x51, +0x4b, 0x1f, 0x8c, 0x49, 0xaf, 0xde, 0x28, 0x5c, 0x0d, 0x22, 0xfc, 0xc5, 0x41, 0x51, 0x06, 0x54, +0x69, 0x2a, 0xf5, 0xbf, 0x5e, 0x0c, 0xef, 0xd8, 0xdb, 0x82, 0x5e, 0x98, 0xef, 0xd1, 0x12, 0x89, +0xd5, 0xef, 0xd7, 0x75, 0xd0, 0xb4, 0x30, 0x42, 0x16, 0xc4, 0x32, 0xf0, 0x9c, 0xb3, 0xa7, 0xac, +0xed, 0x13, 0x25, 0x28, 0x29, 0x73, 0xfd, 0x07, 0x07, 0x42, 0x8f, 0xc8, 0xc2, 0x8f, 0x7e, 0xb3, +0xd0, 0x9f, 0xe4, 0xfc, 0x3c, 0x7f, 0x6b, 0xee, 0x0c, 0xe7, 0x96, 0x0d, 0x5a, 0x34, 0xc2, 0x5d, +0xf0, 0xa1, 0xd0, 0xd6, 0xd4, 0x81, 0x9c, 0x1b, 0x9b, 0xb5, 0xd1, 0x1e, 0xd5, 0x42, 0xde, 0xdc, +0xec, 0x00, 0x04, 0xdf, 0x4d, 0x30, 0x74, 0xfb, 0xf9, 0xd0, 0x3c, 0x4e, 0xa1, 0x63, 0xe1, 0x6b, +0xac, 0x75, 0xc5, 0xc6, 0xd3, 0xa5, 0xe2, 0x2c, 0x5c, 0x61, 0xe0, 0x61, 0xa7, 0xa0, 0xbf, 0x43, +0xa9, 0x8d, 0x88, 0xcb, 0x1a, 0xc3, 0xf1, 0x3e, 0x10, 0xcf, 0x95, 0x9d, 0x4e, 0x7a, 0x92, 0xc8, +0x2a, 0xbb, 0x92, 0xaa, 0x13, 0x3d, 0x7a, 0x48, 0xb3, 0x9d, 0xac, 0x2b, 0xc4, 0x39, 0x35, 0x40, +0x16, 0x6b, 0xda, 0x33, 0xf1, 0xd3, 0x2f, 0xa0, 0x84, 0x95, 0x70, 0x97, 0x39, 0xea, 0x85, 0xc1, +0xad, 0x20, 0xf5, 0x2f, 0xb3, 0xc3, 0xba, 0xad, 0xbd, 0x19, 0x5e, 0x8a, 0xf5, 0xb6, 0x6c, 0xa0, +0x98, 0xda, 0x67, 0x2a, 0x8f, 0xe0, 0xcc, 0xc0, 0xf0, 0xae, 0x0a, 0xac, 0x73, 0xd1, 0xcf, 0xb6, +0x14, 0x4f, 0x2e, 0x8a, 0x3d, 0xfe, 0x00, 0x7e, 0x77, 0x58, 0x28, 0x57, 0x41, 0x42, 0x84, 0xa4, +0x8d, 0x7f, 0x4d, 0x5b, 0x88, 0x4c, 0x78, 0x3f, 0x70, 0x75, 0x28, 0x35, 0x4b, 0x4e, 0xd2, 0x5d, +0xe3, 0x7b, 0xad, 0xac, 0x73, 0x0b, 0x24, 0xde, 0xb5, 0x42, 0x1e, 0x51, 0x3e, 0xb4, 0xdb, 0x43, +0x69, 0x31, 0x36, 0x8a, 0x60, 0x27, 0x9c, 0xb2, 0x23, 0x99, 0x3e, 0x4c, 0x22, 0xdc, 0x8f, 0x97, +0xd2, 0x81, 0x18, 0xd0, 0x24, 0x8c, 0x7b, 0xd1, 0xdc, 0xd9, 0x5e, 0x1e, 0xb2, 0x70, 0xc9, 0xdf, +0x4d, 0x5c, 0xb2, 0x1d, 0xb0, 0x2c, 0xd2, 0xbd, 0x72, 0x4c, 0x29, 0x45, 0x40, 0xdd, 0x2e, 0xe4, +0xa1, 0xfa, 0xe5, 0xa2, 0x10, 0xd6, 0x0e, 0x6b, 0x04, 0x52, 0x95, 0xd2, 0x4b, 0xe4, 0x64, 0x5e, +0x93, 0xb1, 0x9c, 0x5d, 0x38, 0x7c, 0xd2, 0x59, 0x5a, 0x66, 0x32, 0x51, 0x53, 0x78, 0xb9, 0xc2, +0x29, 0x65, 0x91, 0x3b, 0x0a, 0xab, 0x5f, 0x1d, 0x9a, 0x0c, 0xe3, 0x62, 0x85, 0xb4, 0x34, 0x45, +0x68, 0xa4, 0x3b, 0xbf, 0xef, 0x55, 0xc1, 0x68, 0x5d, 0xcf, 0x03, 0x49, 0x72, 0x0f, 0x1d, 0xdc, +0x40, 0xf6, 0x36, 0x24, 0xdf, 0x90, 0x23, 0xd1, 0xb2, 0x78, 0xa6, 0x18, 0xab, 0x78, 0x3d, 0x11, +0xfe, 0x22, 0x9a, 0xf1, 0xc7, 0x42, 0x22, 0x04, 0xc3, 0xed, 0x88, 0xd8, 0x18, 0xcd, 0x96, 0x6b, +0xcc, 0x46, 0xc3, 0x4e, 0x32, 0x6d, 0xcf, 0x77, 0x72, 0x63, 0xf6, 0x0f, 0x65, 0xc1, 0xff, 0x41, +0xb9, 0x65, 0x99, 0xf4, 0xa7, 0x78, 0x05, 0x24, 0x6f, 0x72, 0x98, 0x90, 0x16, 0xfa, 0x6c, 0x42, +0xbe, 0x38, 0xbc, 0x4d, 0x2e, 0x18, 0xa5, 0xcc, 0xc7, 0x5d, 0x0f, 0xfa, 0x9c, 0x12, 0x21, 0xeb, +0x1d, 0xe7, 0xa9, 0xf0, 0x65, 0xec, 0xcf, 0x2b, 0xb3, 0xd8, 0xfa, 0x96, 0x37, 0x5d, 0xb7, 0xea, +0x6e, 0xbe, 0xcc, 0x78, 0x48, 0xfe, 0x5c, 0xf7, 0xda, 0xcc, 0xc6, 0x97, 0x24, 0x62, 0x90, 0xb8, +0x2a, 0x16, 0x4e, 0xdc, 0x29, 0x65, 0xae, 0xa6, 0x26, 0x92, 0xc2, 0x4f, 0xe3, 0x79, 0xb3, 0xf0, +0x00, 0x89, 0x88, 0x77, 0x0d, 0x4c, 0x08, 0x5d, 0x99, 0xc9, 0xc0, 0x74, 0x14, 0x79, 0xbf, 0x19, +0x5d, 0xe5, 0xd8, 0xac, 0xe1, 0xd3, 0x20, 0x1e, 0x44, 0xa5, 0xcc, 0xeb, 0xd3, 0xf2, 0x04, 0x45, +0x14, 0xfb, 0x3d, 0x66, 0x00, 0xf4, 0xe1, 0x81, 0x62, 0xaf, 0x2a, 0x06, 0xa6, 0x8d, 0xb4, 0xba, +0xe3, 0x5e, 0x33, 0xdb, 0xe7, 0xe3, 0x84, 0x53, 0x76, 0x3e, 0x33, 0x44, 0x7d, 0xfd, 0xde, 0x19, +0x16, 0x34, 0x03, 0xa1, 0x33, 0x4a, 0x1b, 0xaa, 0x83, 0xeb, 0x94, 0x2d, 0xab, 0x03, 0x97, 0xf7, +0x9a, 0x56, 0x2d, 0x84, 0x60, 0x72, 0xb2, 0x11, 0x59, 0x02, 0xa4, 0x77, 0x40, 0xa5, 0x01, 0x97, +0x6c, 0x74, 0x58, 0x85, 0xd6, 0x13, 0x85, 0x8b, 0x8b, 0xd6, 0x6b, 0x61, 0xe0, 0xd9, 0xab, 0x18, +0x5f, 0x0d, 0xb9, 0xd3, 0x9f, 0xc8, 0xac, 0x24, 0xc3, 0x12, 0xb9, 0x3f, 0xba, 0x77, 0x4e, 0x87, +0xcd, 0xa3, 0x33, 0xb4, 0xd5, 0x69, 0x9a, 0x67, 0x70, 0xdf, 0xb1, 0x8d, 0x12, 0x92, 0x1c, 0xb3, +0x63, 0xbc, 0x9b, 0xea, 0x7b, 0x64, 0x69, 0xff, 0x7a, 0xe4, 0xa5, 0xc6, 0x02, 0x99, 0x7f, 0x0d, +0x62, 0x0c, 0xf3, 0x4f, 0x39, 0x0a, 0x98, 0x0c, 0xf1, 0x3d, 0x4e, 0xe0, 0xc7, 0xe2, 0x7e, 0x1f, +0x21, 0xa2, 0x36, 0x57, 0x97, 0xbe, 0xda, 0xfb, 0x7d, 0x29, 0xfd, 0x45, 0xa2, 0x23, 0x64, 0xb2, +0xe2, 0x73, 0x5c, 0x87, 0xc8, 0x44, 0x6b, 0xd6, 0x5f, 0x23, 0xf6, 0x72, 0x0a, 0xa0, 0x4d, 0x9d, +0xd4, 0xd6, 0xe8, 0xb9, 0x91, 0xff, 0x98, 0x38, 0x1e, 0x05, 0xe1, 0xcf, 0x82, 0x30, 0xc9, 0xdb, +0x69, 0xc8, 0xfb, 0x2c, 0x52, 0xd5, 0xc6, 0x29, 0xff, 0xe7, 0xec, 0xdb, 0x60, 0xcc, 0x7f, 0x4e, +0xf2, 0x72, 0xd9, 0x10, 0x28, 0x64, 0x51, 0x6e, 0x18, 0xf5, 0x68, 0xbe, 0x6b, 0x92, 0xdc, 0x2f, +0x9c, 0xa5, 0xf3, 0x6c, 0xc2, 0xc3, 0xfd, 0x45, 0x64, 0xc4, 0x3d, 0xa2, 0xb7, 0x24, 0xd6, 0x47, +0x91, 0xff, 0xce, 0x29, 0xee, 0x5c, 0xec, 0x54, 0x61, 0xd1, 0x0b, 0x4a, 0xa0, 0xbb, 0xb5, 0x3b, +0x18, 0x20, 0x4e, 0x58, 0xa1, 0x74, 0x28, 0x0a, 0xba, 0x63, 0x52, 0xa7, 0x91, 0x74, 0x19, 0xe3, +0x4d, 0x05, 0x14, 0xe1, 0x92, 0xa1, 0xa4, 0x88, 0x2a, 0xec, 0x43, 0x8f, 0xad, 0x2b, 0x04, 0xe2, +0x25, 0x82, 0x78, 0x94, 0xa6, 0xab, 0x48, 0x24, 0xee, 0x95, 0xf7, 0x44, 0xd3, 0xd9, 0xc9, 0x46, +0xe9, 0xa2, 0x66, 0xe2, 0x80, 0x42, 0xef, 0xb7, 0xf6, 0x5a, 0xe8, 0xa2, 0x77, 0xa4, 0xdb, 0xb7, +0x63, 0xb9, 0x45, 0x5d, 0x8a, 0x80, 0x49, 0xcf, 0xad, 0xf6, 0xd5, 0x06, 0x89, 0xf9, 0xd7, 0xfa, +0x05, 0x4c, 0x62, 0x24, 0x0a, 0xb9, 0x9f, 0x12, 0x2e, 0x5f, 0x3a, 0xf5, 0x62, 0xc0, 0x6d, 0x1f, +0x33, 0x86, 0x75, 0xb3, 0xc6, 0xa6, 0xa6, 0x49, 0x91, 0x71, 0x5b, 0x6e, 0xc7, 0x8b, 0xac, 0x8e, +0x0b, 0x6a, 0x7e, 0x38, 0x61, 0x74, 0xac, 0x71, 0xf6, 0xf0, 0xd2, 0x05, 0x1e, 0x22, 0x73, 0x46, +0x66, 0x16, 0x5b, 0x5d, 0x18, 0xba, 0x19, 0x2e, 0x74, 0x9f, 0x8b, 0xec, 0x7b, 0x39, 0xb5, 0xcd, +0x02, 0x6b, 0xdc, 0x5b, 0x4b, 0xb6, 0x59, 0xce, 0x04, 0x17, 0xc5, 0x7f, 0x22, 0x40, 0x28, 0xc8, +0xb1, 0xc3, 0x2f, 0x33, 0x51, 0xde, 0x46, 0x09, 0xca, 0x89, 0x6d, 0xd7, 0xa5, 0xcd, 0x7d, 0x9d, +0x83, 0x9f, 0x2c, 0xbd, 0x7a, 0x83, 0xcf, 0x24, 0xda, 0xff, 0xe8, 0xaf, 0x8f, 0x0f, 0x98, 0x00, +0x65, 0xfb, 0x47, 0xce, 0xfa, 0xb8, 0xea, 0xf8, 0x72, 0x2b, 0x68, 0x85, 0x1e, 0x73, 0x49, 0x41, +0xf9, 0xad, 0xf7, 0xe8, 0x1b, 0x8f, 0x3e, 0xc0, 0x36, 0xf4, 0x9a, 0xf6, 0x19, 0x8f, 0xb4, 0xdc, +0x81, 0x2d, 0xb3, 0xbd, 0x73, 0xcb, 0x73, 0x4c, 0x62, 0x80, 0xe8, 0x77, 0x1e, 0xd4, 0x91, 0xdd, +0xcd, 0x9f, 0x01, 0x1d, 0xc2, 0xd0, 0xbf, 0x61, 0x1a, 0x6e, 0xb3, 0x0f, 0xa0, 0xcd, 0x4b, 0x85, +0xa6, 0x9a, 0xc6, 0x97, 0x55, 0x24, 0x2a, 0xaa, 0xdd, 0x6b, 0xfe, 0xa6, 0x3d, 0xa8, 0x66, 0xf3, +0xd9, 0x88, 0x07, 0xda, 0xab, 0x3b, 0xd0, 0x16, 0xde, 0xf1, 0xe3, 0xa8, 0x76, 0x37, 0xbd, 0xab, +0xa8, 0x96, 0xa0, 0x22, 0x73, 0xdc, 0x8a, 0xbd, 0x50, 0x5a, 0x6e, 0xf8, 0xb0, 0xc3, 0xcb, 0x25, +0xfa, 0x7c, 0xcc, 0x05, 0x0a, 0x28, 0x48, 0xf9, 0x1e, 0xdd, 0x86, 0x5e, 0xdc, 0x30, 0x7b, 0x02, +0x72, 0x81, 0x33, 0xdc, 0xc8, 0xd5, 0x40, 0xad, 0x70, 0xac, 0x1e, 0x9e, 0x3f, 0xa8, 0x5c, 0xa0, +0x3a, 0xb6, 0x20, 0xf8, 0xa0, 0xa1, 0x98, 0x39, 0xea, 0xef, 0x78, 0xc5, 0x6d, 0xaf, 0x9f, 0x88, +0x6b, 0x33, 0x1e, 0xb6, 0xad, 0xf7, 0x21, 0x89, 0x62, 0x2f, 0x90, 0xa6, 0x9b, 0x28, 0x82, 0x78, +0xef, 0xdd, 0xc0, 0x66, 0x04, 0xc8, 0x4b, 0x3a, 0x59, 0x90, 0x2c, 0x1f, 0xc6, 0x95, 0x91, 0x9c, +0x1a, 0x1f, 0xb3, 0xe4, 0xe7, 0xcc, 0xe7, 0x48, 0x99, 0xf5, 0x4a, 0x06, 0xd2, 0x4d, 0xb7, 0x26, +0xb7, 0xb8, 0xd9, 0x66, 0xbd, 0xd9, 0x20, 0x0a, 0x0c, 0xd5, 0x8e, 0x94, 0xa8, 0xd6, 0x2f, 0x30, +0xca, 0xfe, 0x93, 0xdf, 0x77, 0xeb, 0xf9, 0x82, 0x41, 0x89, 0xd9, 0xd0, 0x80, 0xd4, 0x92, 0x08, +0x13, 0xa6, 0x28, 0x89, 0x56, 0x5b, 0x4c, 0x6f, 0x0d, 0xae, 0xa4, 0x7b, 0x02, 0x9a, 0x37, 0xbd, +0xad, 0x8c, 0x59, 0xeb, 0x3c, 0x7f, 0xc8, 0x45, 0x3f, 0xcd, 0xf9, 0xb9, 0xfa, 0x52, 0x68, 0x80, +0x4a, 0xd9, 0x48, 0x13, 0xbd, 0x7f, 0x28, 0x73, 0x35, 0x65, 0x76, 0x88, 0x0b, 0xae, 0x55, 0x98, +0x96, 0x95, 0x99, 0x15, 0x0d, 0x24, 0x9b, 0x68, 0x25, 0x93, 0x42, 0x30, 0x40, 0x85, 0x8a, 0x0f, +0xdf, 0xaf, 0xda, 0xf0, 0x51, 0x3f, 0xb0, 0x12, 0xa4, 0xf0, 0xd1, 0x18, 0x62, 0x84, 0x73, 0xd1, +0x1b, 0x30, 0x96, 0xb1, 0x4e, 0x4d, 0x03, 0x0f, 0xe9, 0x3b, 0x8b, 0x22, 0xdf, 0x12, 0xa9, 0x79, +0x0b, 0x8d, 0x78, 0x18, 0x3f, 0x00, 0x56, 0x23, 0x64, 0xa9, 0xe2, 0x3b, 0xaf, 0x7d, 0xf5, 0x37, +0x07, 0xcc, 0x1d, 0xea, 0xdc, 0x7d, 0xc9, 0x30, 0x02, 0x8f, 0xab, 0x21, 0xb8, 0x3e, 0x63, 0x1f, +0xac, 0x90, 0x1f, 0x2e, 0x2f, 0x19, 0x38, 0x03, 0xf3, 0xc0, 0xac, 0x4c, 0x3e, 0x9d, 0xa5, 0xd6, +0x30, 0x60, 0x0e, 0x49, 0x8d, 0xa2, 0xb0, 0xbb, 0x9f, 0x5e, 0x72, 0xc5, 0xc8, 0xb7, 0x25, 0xe0, +0xcb, 0x32, 0x14, 0xe2, 0x03, 0x94, 0x8c, 0xec, 0x8c, 0xfe, 0x4e, 0x3f, 0x46, 0xeb, 0xa3, 0x5c, +0xdb, 0x17, 0x83, 0xa8, 0xae, 0x3e, 0xa7, 0x46, 0x33, 0x7f, 0x9e, 0x14, 0x4f, 0x3a, 0xad, 0xa7, +0xcd, 0x99, 0x96, 0x95, 0x2c, 0xe4, 0xad, 0x0d, 0xd5, 0xf4, 0xbe, 0xfe, 0x5f, 0xd4, 0x27, 0x49, +0x3a, 0xeb, 0xd3, 0xa6, 0x75, 0x62, 0x5e, 0xc3, 0xcb, 0x29, 0x62, 0xb6, 0x22, 0x59, 0xac, 0xaa, +0x12, 0x28, 0xc8, 0xef, 0xf7, 0x25, 0x6a, 0x37, 0x7b, 0xf1, 0x4e, 0x9d, 0x5e, 0x73, 0x0c, 0x69, +0x42, 0x9b, 0x11, 0x12, 0x4d, 0x67, 0xd6, 0x57, 0x57, 0xd3, 0xe1, 0x3b, 0x73, 0xf6, 0x05, 0x38, +0x1f, 0x64, 0xb8, 0xf6, 0x5a, 0x43, 0x0d, 0x6f, 0xeb, 0x37, 0x52, 0xc0, 0x8d, 0x08, 0xcb, 0x4c, +0x9f, 0xfe, 0x91, 0x71, 0x36, 0xb2, 0xd6, 0x96, 0xfc, 0x2b, 0x2d, 0x24, 0x2f, 0xb4, 0xb6, 0x7b, +0x3d, 0x57, 0xba, 0x7e, 0xc5, 0x59, 0x15, 0x41, 0x6b, 0x63, 0x0e, 0xbd, 0xf5, 0xca, 0x73, 0xb7, +0xa5, 0x06, 0x7a, 0x59, 0x2f, 0x00, 0xf6, 0x46, 0x71, 0x13, 0x29, 0x2f, 0xc1, 0xae, 0x0f, 0x17, +0x3e, 0xee, 0x80, 0x0f, 0x1c, 0x77, 0xd4, 0xa8, 0xae, 0x52, 0x55, 0x7e, 0x2c, 0x70, 0xd1, 0x0c, +0x47, 0xa8, 0x3a, 0x92, 0xc7, 0xc5, 0xbf, 0x5e, 0x1d, 0x63, 0x84, 0x0b, 0xda, 0xf7, 0x93, 0x75, +0xf7, 0xcb, 0xe7, 0x28, 0x50, 0xaf, 0x47, 0x2f, 0xa7, 0xa1, 0xd8, 0xae, 0x83, 0x81, 0xd3, 0xbd, +0xd3, 0xe3, 0xde, 0x83, 0x3a, 0x38, 0xe8, 0x0e, 0xf6, 0x26, 0x27, 0x3d, 0x5e, 0xe0, 0x9d, 0x1d, +0xd3, 0x07, 0x76, 0x2b, 0x19, 0x41, 0x62, 0xaf, 0xb8, 0xe0, 0xd0, 0x1a, 0xd7, 0x83, 0x79, 0xa3, +0xef, 0x92, 0x34, 0x31, 0x41, 0xde, 0xaf, 0xa8, 0x0b, 0x1a, 0x94, 0x9d, 0x40, 0x61, 0xa3, 0xf1, +0x8e, 0xfa, 0xdd, 0x61, 0x96, 0xe7, 0xe6, 0x6a, 0x60, 0xf7, 0x32, 0x73, 0x8a, 0x17, 0x4a, 0xa9, +0x84, 0x05, 0x54, 0xac, 0xb1, 0x86, 0x49, 0xe5, 0xe0, 0x43, 0x9a, 0xf8, 0x8e, 0xb6, 0x95, 0x13, +0x24, 0xe5, 0x08, 0x58, 0xc3, 0x21, 0x01, 0xf9, 0x46, 0x22, 0xee, 0x96, 0xd2, 0xa6, 0x19, 0xdd, +0xa0, 0x44, 0xa1, 0x5b, 0xeb, 0xc7, 0x31, 0x98, 0x48, 0xfb, 0xc2, 0xb5, 0x8c, 0x09, 0x17, 0xb7, +0x11, 0x45, 0x5f, 0xc9, 0x24, 0xd2, 0x95, 0x9d, 0x8a, 0x1d, 0x9d, 0xb6, 0x9e, 0xff, 0x24, 0x5e, +0xfe, 0xe4, 0xe5, 0x5a, 0x00, 0xb7, 0x7a, 0x21, 0x65, 0x5d, 0x3c, 0x5e, 0x17, 0xb2, 0xac, 0x85, +0xb4, 0x4c, 0x59, 0xa2, 0x11, 0x04, 0xbb, 0x32, 0x8e, 0xf0, 0x62, 0xff, 0x2e, 0xd0, 0x21, 0xf7, +0x7f, 0xe5, 0xbc, 0x88, 0x4d, 0x17, 0xa4, 0xc1, 0xed, 0x2c, 0x51, 0xcf, 0x19, 0x8d, 0xda, 0x53, +0x53, 0x4b, 0x70, 0x50, 0x20, 0x2a, 0x0c, 0x99, 0xcd, 0x2c, 0xdb, 0x21, 0x8b, 0xce, 0x33, 0x05, +0x32, 0xa9, 0xaa, 0xaf, 0x8a, 0x47, 0x14, 0x8f, 0xbb, 0x2c, 0x20, 0x90, 0x73, 0xf6, 0xf2, 0x62, +0x13, 0x02, 0x75, 0x72, 0x2a, 0xd2, 0xc0, 0x54, 0x4d, 0x3f, 0x56, 0xb4, 0x4d, 0x60, 0xa3, 0x8e, +0xf5, 0x61, 0x2d, 0x6d, 0xbd, 0xcd, 0xa0, 0x59, 0xfe, 0x6c, 0xaa, 0xf8, 0x31, 0x05, 0x62, 0xda, +0x9c, 0x6e, 0x76, 0xf1, 0x4c, 0x4c, 0x80, 0x72, 0xaf, 0xbe, 0xa3, 0xe5, 0x95, 0x90, 0x39, 0x13, +0x30, 0x1b, 0x7c, 0x71, 0x8f, 0x2f, 0x26, 0xea, 0x45, 0xeb, 0x08, 0x70, 0xc2, 0x2c, 0x1e, 0x18, +0x1f, 0xe6, 0xd4, 0x72, 0x06, 0x82, 0xae, 0xa3, 0x60, 0x10, 0x44, 0x2e, 0x62, 0x4f, 0x3a, 0x08, +0x28, 0x12, 0xb7, 0xd1, 0xf9, 0xfc, 0x6b, 0xd9, 0x76, 0x62, 0x94, 0x38, 0x2b, 0xab, 0x42, 0xda, +0xe9, 0x0f, 0x17, 0xba, 0x93, 0x6b, 0x9e, 0x76, 0x6e, 0x2d, 0x22, 0xba, 0x9b, 0xce, 0xb3, 0x23, +0xd0, 0x32, 0x0c, 0x8e, 0x8d, 0x1e, 0x91, 0x4a, 0x53, 0x1f, 0x5f, 0xb9, 0x82, 0xe1, 0xfd, 0x30, +0x98, 0xd0, 0x3d, 0x49, 0xc0, 0xc5, 0xa2, 0xa6, 0x95, 0x1a, 0x7e, 0x56, 0x0a, 0xcc, 0xc5, 0x5f, +0xbc, 0x22, 0x0c, 0xf5, 0x2b, 0xc1, 0x2a, 0x45, 0xda, 0x51, 0x08, 0xd5, 0x1a, 0xa0, 0x51, 0x8e, +0x7e, 0x16, 0x00, 0xe6, 0x2a, 0xc4, 0xa1, 0x99, 0x90, 0xc2, 0x02, 0xde, 0xf6, 0xc7, 0x77, 0xb7, +0x5a, 0xbe, 0x57, 0xc0, 0xc8, 0x4c, 0x90, 0x3c, 0x73, 0x0e, 0x47, 0x0e, 0x76, 0x22, 0x76, 0x7f, +0xf6, 0x3d, 0x7d, 0xb2, 0xdb, 0x38, 0x46, 0xb9, 0x90, 0xc0, 0x11, 0xab, 0x7c, 0xcb, 0xc3, 0xf0, +0x55, 0x44, 0xab, 0x77, 0xcc, 0xc9, 0x49, 0xd4, 0x91, 0xef, 0xc6, 0xc1, 0xdb, 0x34, 0x0b, 0x52, +0x25, 0x92, 0x70, 0x53, 0xee, 0x3c, 0x33, 0xb1, 0x13, 0xf7, 0xeb, 0x72, 0xa1, 0x9b, 0x95, 0x31, +0xe6, 0xba, 0xda, 0xda, 0x37, 0x2d, 0x5a, 0xdf, 0x33, 0x88, 0x5b, 0x5f, 0xc0, 0x2b, 0x41, 0x0a, +0x3a, 0x7e, 0xb4, 0x1f, 0x94, 0x19, 0xde, 0x9a, 0xe7, 0x38, 0xd6, 0x49, 0x23, 0xa9, 0xc2, 0x65, +0xfe, 0xa0, 0x41, 0x6e, 0xaa, 0x36, 0xe5, 0xf6, 0x39, 0x29, 0x09, 0xb5, 0xbf, 0x8d, 0xa2, 0x47, +0xdf, 0xf9, 0x9e, 0xdf, 0x66, 0x82, 0xe9, 0x54, 0x63, 0x64, 0x7e, 0x29, 0x12, 0x4a, 0x46, 0xc8, +0xbe, 0x55, 0xb9, 0x3e, 0x59, 0x85, 0x8f, 0xae, 0x04, 0xe9, 0xb9, 0xa8, 0x44, 0x1e, 0xa8, 0x5c, +0x3c, 0x66, 0x07, 0x88, 0xc8, 0x3c, 0x21, 0x5d, 0x30, 0x03, 0xdb, 0x8c, 0x34, 0x52, 0x91, 0xf1, +0x42, 0x27, 0xda, 0x3a, 0x9c, 0xed, 0x54, 0xc0, 0xc8, 0xd7, 0x6d, 0x10, 0x23, 0xab, 0xb4, 0x68, +0xcb, 0xc8, 0x05, 0x10, 0xe6, 0xb8, 0x3d, 0x5a, 0x14, 0x74, 0x80, 0x3a, 0x10, 0x09, 0x97, 0xc6, +0x59, 0x92, 0x11, 0xf8, 0x98, 0x89, 0x0a, 0x8d, 0xbb, 0xb2, 0xc4, 0x60, 0x44, 0x79, 0x6d, 0x2b, +0xf3, 0xf6, 0xeb, 0x49, 0xda, 0x14, 0xde, 0xbd, 0x27, 0x91, 0x01, 0x6b, 0xaf, 0xee, 0x87, 0x84, +0xf5, 0x96, 0xdd, 0xc5, 0xa3, 0x84, 0x91, 0x43, 0xb0, 0x03, 0x1f, 0x3b, 0x52, 0x0a, 0x0b, 0xbd, +0x5b, 0xe3, 0x43, 0x36, 0xa3, 0xb5, 0x7d, 0x3b, 0x80, 0x78, 0x00, 0xd9, 0xd8, 0x88, 0xb0, 0x41, +0x16, 0x21, 0x87, 0xd8, 0x28, 0x37, 0x67, 0x7c, 0x44, 0xec, 0x9b, 0x19, 0x88, 0x82, 0x42, 0x73, +0x08, 0xf9, 0xae, 0x4c, 0x1d, 0xac, 0xa7, 0x38, 0xdb, 0x59, 0x1a, 0x01, 0xcd, 0xca, 0xea, 0x0d, +0xa0, 0xa4, 0x70, 0xe2, 0x30, 0xdc, 0x8c, 0xed, 0x62, 0x2a, 0x0c, 0x5b, 0x40, 0x1d, 0xbf, 0x82, +0xd7, 0xf9, 0x96, 0x74, 0xa8, 0x23, 0xc9, 0xf0, 0xf9, 0x82, 0xab, 0x33, 0x3f, 0xa3, 0xe5, 0x43, +0xd2, 0x84, 0x0c, 0x5a, 0x58, 0x74, 0xb0, 0x09, 0x6d, 0x7a, 0x2e, 0x73, 0xf1, 0x90, 0xc0, 0xe5, +0xcd, 0xed, 0xdc, 0x1d, 0xad, 0x9a, 0x75, 0x6a, 0x91, 0xf4, 0x0c, 0xcf, 0x1b, 0x33, 0x8d, 0xec, +0x72, 0x96, 0x7c, 0x91, 0xeb, 0xf4, 0xa1, 0xc9, 0x53, 0x88, 0x52, 0x6b, 0x53, 0x4b, 0x92, 0xdf, +0x3a, 0xaf, 0x05, 0xc2, 0x25, 0x82, 0x9f, 0x08, 0xd3, 0x18, 0xb8, 0x03, 0x3f, 0x7e, 0xba, 0xe2, +0xf1, 0xa5, 0x8d, 0xef, 0xca, 0xf9, 0x25, 0x36, 0xbe, 0x9e, 0xef, 0xf2, 0x51, 0xa6, 0xf5, 0xfe, +0xa5, 0x84, 0x3a, 0x9b, 0x79, 0x94, 0x67, 0x0e, 0xdc, 0x0d, 0xd1, 0x5e, 0xef, 0x07, 0x3a, 0xe1, +0x25, 0x52, 0x9f, 0x19, 0xea, 0xee, 0xf5, 0x17, 0xcd, 0x4a, 0x25, 0x6a, 0x92, 0xee, 0xae, 0x3f, +0xdf, 0x37, 0x4c, 0x45, 0x78, 0xe9, 0x60, 0x18, 0xfe, 0x62, 0x43, 0xb7, 0xab, 0x2e, 0xc5, 0xcd, +0x00, 0xc2, 0x92, 0xb7, 0xe3, 0xf9, 0x40, 0xd9, 0x1a, 0xc1, 0xc3, 0x3d, 0x0f, 0x85, 0x0f, 0x63, +0x89, 0x15, 0x46, 0x05, 0x88, 0x7d, 0x72, 0xbf, 0xf1, 0xed, 0x96, 0xc1, 0xa9, 0x9d, 0xc2, 0x7a, +0xa6, 0x8a, 0xad, 0xcf, 0x60, 0x8b, 0x51, 0x97, 0x14, 0x61, 0x56, 0x4f, 0xa7, 0xd3, 0x69, 0xc3, +0x63, 0xd2, 0xeb, 0xbd, 0xfa, 0x03, 0xcf, 0xc3, 0x26, 0x43, 0xd6, 0xab, 0xc0, 0xfd, 0xeb, 0x32, +0x0f, 0x00, 0x6d, 0xfa, 0x10, 0x7b, 0x01, 0x7d, 0x0e, 0x51, 0xcf, 0x7c, 0x17, 0x3f, 0x96, 0xd2, +0xce, 0xde, 0x89, 0x9e, 0x15, 0x07, 0x8d, 0x69, 0xe4, 0xbc, 0x80, 0xf7, 0x3d, 0x28, 0xeb, 0xaa, +0x12, 0xe6, 0x27, 0x07, 0x0f, 0x93, 0x71, 0xfd, 0x91, 0x8c, 0xce, 0x80, 0x0a, 0x9d, 0xd3, 0xe4, +0xa6, 0x2d, 0x0a, 0x51, 0x32, 0xc5, 0x72, 0xb9, 0x6f, 0xf3, 0xcb, 0xea, 0x90, 0x77, 0x25, 0x26, +0x6f, 0xbe, 0xdd, 0x47, 0xa9, 0x67, 0x50, 0xf9, 0x49, 0x67, 0x70, 0x73, 0x29, 0xcc, 0x33, 0xd2, +0xb8, 0x73, 0x0e, 0x10, 0x96, 0xd5, 0xc9, 0x2a, 0xc6, 0xf3, 0x1c, 0x30, 0x3d, 0x99, 0x4d, 0x02, +0x9c, 0x72, 0x0a, 0x8d, 0x99, 0x05, 0x12, 0x0b, 0x3d, 0xb0, 0x74, 0xbc, 0xd3, 0x3d, 0x6f, 0xd4, +0x3f, 0x18, 0x87, 0x1b, 0x38, 0x5e, 0xcd, 0xb4, 0xcd, 0xd4, 0x85, 0x9f, 0x1e, 0x44, 0xe9, 0xb1, +0x17, 0x05, 0x95, 0xae, 0x3f, 0x42, 0xdf, 0x00, 0xab, 0x82, 0x6e, 0x4d, 0xd9, 0x94, 0xaf, 0xe5, +0x27, 0x97, 0xe0, 0xec, 0x63, 0x63, 0x33, 0x60, 0x3b, 0x9e, 0x41, 0xcf, 0x6f, 0x51, 0x59, 0x87, +0xba, 0xfa, 0xdb, 0xd5, 0xc0, 0xc9, 0x1c, 0xa3, 0x23, 0x9a, 0x23, 0x19, 0x4f, 0xe2, 0x38, 0x85, +0xa7, 0xdf, 0xc0, 0x38, 0x81, 0x64, 0x8a, 0xbe, 0x52, 0x4c, 0xee, 0x79, 0x66, 0x74, 0xc0, 0xd5, +0x74, 0x2c, 0x8f, 0xe9, 0x1d, 0x91, 0xd1, 0x02, 0x9e, 0x8f, 0x8a, 0x8a, 0x6d, 0xc3, 0xbe, 0xd1, +0x8f, 0x91, 0x92, 0xb2, 0x46, 0x81, 0xd6, 0x7a, 0x54, 0xc0, 0x54, 0x0c, 0x5a, 0xc7, 0x96, 0x24, +0x69, 0x41, 0x40, 0x34, 0xe7, 0xc9, 0xc9, 0x89, 0x17, 0x39, 0xe9, 0x25, 0xb4, 0x19, 0x2e, 0x24, +0xfd, 0x61, 0xfb, 0x87, 0x92, 0xc1, 0xf6, 0xde, 0xcc, 0xcf, 0xa1, 0x21, 0x1a, 0x3f, 0xbc, 0x14, +0x5d, 0xfd, 0x17, 0x6b, 0x4b, 0xa8, 0x0a, 0xb8, 0x7b, 0x19, 0xa2, 0xc4, 0x53, 0x77, 0xdf, 0x1e, +0xe0, 0xf8, 0x9e, 0x49, 0xe1, 0x5c, 0xc0, 0x10, 0xb0, 0xa9, 0xc8, 0xf9, 0x3e, 0x07, 0x1c, 0x20, +0x21, 0x0e, 0xd4, 0xe8, 0x3e, 0xda, 0x3b, 0x75, 0xc2, 0x57, 0x3d, 0xaa, 0xff, 0xf2, 0x6c, 0xab, +0xf7, 0xb2, 0xee, 0x0b, 0xae, 0xf0, 0xc0, 0xd4, 0x59, 0xe4, 0x6d, 0xbc, 0x9b, 0xd3, 0x10, 0x88, +0x8f, 0x66, 0xea, 0x1c, 0x48, 0x7b, 0x58, 0xd0, 0x22, 0x07, 0xe5, 0x12, 0x9c, 0x8a, 0x3f, 0x4a, +0x04, 0x98, 0x1b, 0xc5, 0x71, 0xd2, 0x18, 0xbc, 0xc7, 0xb0, 0xab, 0xd9, 0x8d, 0xe2, 0x33, 0x53, +0xf9, 0x2f, 0x0b, 0x07, 0x69, 0x33, 0x1e, 0x3b, 0xd6, 0x08, 0x5e, 0x9d, 0xc8, 0x5f, 0x84, 0x0f, +0xb5, 0x89, 0x47, 0x19, 0xee, 0x3b, 0xc4, 0x36, 0x10, 0x8f, 0x52, 0xae, 0xab, 0xbb, 0xea, 0x01, +0x5a, 0x49, 0xd5, 0x63, 0x0e, 0xa6, 0xed, 0x71, 0x87, 0x14, 0xbf, 0x0e, 0xb2, 0x59, 0xf7, 0x90, +0x20, 0x42, 0xb1, 0x01, 0xf5, 0xbc, 0x61, 0x7a, 0xa3, 0xa6, 0xc3, 0xac, 0x23, 0x34, 0xee, 0x8c, +0xc3, 0x78, 0xe1, 0x59, 0xf2, 0x7a, 0x58, 0xde, 0x42, 0x37, 0xdb, 0xcb, 0x1c, 0x0f, 0x20, 0x24, +0xd9, 0x1d, 0xec, 0x63, 0x37, 0x43, 0xc4, 0xca, 0x17, 0x8f, 0x20, 0x87, 0xec, 0x86, 0x7e, 0x28, +0xc0, 0x36, 0xfe, 0x94, 0x3a, 0xbf, 0xfa, 0x2f, 0x23, 0xe6, 0xc1, 0xe8, 0x41, 0xf4, 0x4a, 0xd2, +0x16, 0x48, 0x7c, 0x8e, 0x1d, 0x45, 0x87, 0xe6, 0xf8, 0xb7, 0x63, 0x12, 0x2a, 0xf8, 0x7e, 0xd0, +0xf6, 0x49, 0x73, 0x10, 0xed, 0x77, 0x8b, 0xb9, 0xe3, 0x73, 0xf3, 0xc1, 0xea, 0xd2, 0xbb, 0x13, +0x72, 0x7d, 0x4a, 0xb9, 0x94, 0x33, 0xfc, 0x28, 0x8f, 0x66, 0x01, 0xaf, 0x8c, 0x7a, 0x26, 0xcf, +0x4f, 0x4d, 0xd7, 0xe5, 0xdc, 0xf2, 0x17, 0xf9, 0xf2, 0xc8, 0x8d, 0x9f, 0x91, 0x3d, 0x00, 0x44, +0xed, 0x9f, 0xdf, 0xe4, 0xe7, 0x9d, 0x78, 0x78, 0x82, 0xfa, 0x03, 0x50, 0x06, 0x24, 0x45, 0xfe, +0x73, 0xe9, 0x58, 0x95, 0xe8, 0xde, 0xff, 0x9e, 0x5e, 0x5d, 0x80, 0x2d, 0x62, 0x51, 0x18, 0x1b, +0x5c, 0xb5, 0xcb, 0xd9, 0x63, 0x9d, 0x93, 0x26, 0x82, 0x24, 0x69, 0x85, 0xfa, 0xc8, 0x0a, 0x32, +0x79, 0x2a, 0x9a, 0x6e, 0xd7, 0x26, 0x1e, 0x74, 0xa1, 0x1a, 0x34, 0x4a, 0xce, 0xda, 0x69, 0x47, +0xb8, 0xdf, 0x98, 0x19, 0x7a, 0xa7, 0xb8, 0xc5, 0x98, 0x09, 0x69, 0x59, 0xba, 0x43, 0x03, 0xd2, +0xca, 0x69, 0xa2, 0x51, 0x82, 0x99, 0x69, 0x0d, 0xb2, 0x5a, 0x09, 0x98, 0x73, 0xba, 0xae, 0x88, +0xeb, 0xfc, 0x8e, 0x0d, 0x1b, 0x76, 0x0e, 0x58, 0xe9, 0xe5, 0x30, 0x29, 0x74, 0xae, 0x85, 0x77, +0x1e, 0xca, 0x22, 0xc2, 0x73, 0xc5, 0x51, 0xe4, 0x8a, 0x5e, 0x3b, 0xbd, 0x6b, 0xc8, 0xb2, 0x80, +0xab, 0xbf, 0x44, 0xcf, 0x4c, 0xa6, 0x7a, 0x59, 0x92, 0xc1, 0x45, 0x83, 0x96, 0xdb, 0xcc, 0x0b, +0xab, 0x66, 0x93, 0xa3, 0x6f, 0x53, 0xd8, 0x2c, 0xb3, 0x23, 0x2e, 0x6c, 0x38, 0x57, 0xec, 0x16, +0xbb, 0xf2, 0x1b, 0xb1, 0x4e, 0x35, 0x12, 0xca, 0xe3, 0x53, 0x32, 0x29, 0xdc, 0x7c, 0xe5, 0x40, +0xe4, 0x42, 0x25, 0x62, 0x65, 0x59, 0xa3, 0xdd, 0x54, 0x77, 0x8c, 0xb1, 0x56, 0x0d, 0xc2, 0x31, +0xd2, 0xd2, 0xed, 0xdd, 0x36, 0xd5, 0x73, 0xf6, 0xa1, 0x1d, 0x13, 0x42, 0x43, 0x2d, 0xc9, 0xaf, +0x9d, 0x6e, 0x3c, 0xc9, 0x79, 0xdc, 0xc7, 0x34, 0x63, 0x84, 0x04, 0xcb, 0x16, 0x61, 0x9c, 0x3d, +0x4b, 0x89, 0x24, 0xb9, 0x10, 0x48, 0x4e, 0x60, 0x9d, 0x94, 0x4b, 0x5f, 0xa3, 0x99, 0x43, 0xae, +0xb0, 0x9d, 0x7c, 0xec, 0x7c, 0x11, 0x93, 0x3c, 0x52, 0x65, 0xb2, 0x75, 0xcd, 0x5e, 0xbb, 0x94, +0xc3, 0x45, 0xf1, 0x5b, 0xe0, 0x5e, 0x5a, 0x69, 0x68, 0x72, 0x15, 0x76, 0x34, 0xf4, 0x14, 0x1e, +0x64, 0x2a, 0x2c, 0x20, 0xa7, 0x68, 0x88, 0xfe, 0x8e, 0x24, 0x37, 0x64, 0xc3, 0x82, 0x62, 0xdb, +0xbf, 0xc2, 0xd4, 0xb6, 0xd6, 0xde, 0x87, 0x2e, 0x3a, 0x31, 0x8d, 0x81, 0x80, 0x77, 0xf0, 0x5a, +0x6c, 0x01, 0xf6, 0x87, 0x54, 0x69, 0x0f, 0x87, 0x6a, 0xc6, 0x00, 0xe6, 0x02, 0xe0, 0xac, 0xb2, +0x43, 0x6b, 0xd7, 0x65, 0xc7, 0x08, 0xae, 0xa7, 0x19, 0x0f, 0xad, 0xa2, 0x39, 0x28, 0xa0, 0xbc, +0x58, 0xec, 0xf4, 0x79, 0x34, 0x71, 0xa7, 0xc7, 0x0b, 0x42, 0x89, 0x6c, 0x70, 0xe9, 0x85, 0x1d, +0xf1, 0x43, 0xa1, 0x32, 0xc7, 0x4e, 0xd8, 0x5c, 0xaa, 0x41, 0xa3, 0x03, 0xe8, 0x84, 0x45, 0x70, +0xad, 0x5c, 0xab, 0xef, 0xd7, 0xb7, 0x71, 0xc6, 0xd7, 0xe7, 0x45, 0xdf, 0x42, 0x4c, 0xa4, 0xef, +0x2e, 0xff, 0xa2, 0x1e, 0x9e, 0x8b, 0x26, 0x52, 0xc8, 0x5c, 0xdd, 0xc9, 0x6b, 0x0c, 0x8c, 0x1f, +0x34, 0x31, 0x03, 0xaf, 0xe6, 0x04, 0xe7, 0x8a, 0x32, 0xf6, 0x17, 0x24, 0x99, 0x56, 0xb0, 0x05, +0x63, 0xa6, 0xfb, 0x30, 0x85, 0x60, 0xd2, 0x9c, 0xfa, 0x3d, 0xcb, 0x0f, 0xcb, 0x7b, 0x93, 0x15, +0x55, 0x2f, 0xf2, 0x71, 0xdb, 0x90, 0x22, 0x0d, 0xb2, 0x47, 0x61, 0xe9, 0xef, 0x0e, 0xf2, 0x03, +0x32, 0x31, 0xe5, 0xa6, 0x01, 0xc6, 0xcd, 0x70, 0x31, 0x5a, 0x8f, 0x9e, 0x29, 0xcb, 0x41, 0x7e, +0xd7, 0x11, 0xcc, 0x48, 0x12, 0x93, 0x58, 0x76, 0x1f, 0x11, 0x1d, 0x1a, 0x32, 0x68, 0x95, 0xc5, +0x88, 0xee, 0x30, 0xa1, 0x06, 0x13, 0x5d, 0x96, 0x74, 0x5b, 0x96, 0x70, 0xc0, 0xd9, 0x64, 0x04, +0x73, 0x8a, 0xf8, 0x55, 0xb7, 0x5f, 0x82, 0x9c, 0xbb, 0x6f, 0xf7, 0x43, 0x23, 0x81, 0x52, 0xb4, +0x26, 0xe0, 0x9a, 0xee, 0x0e, 0xf7, 0x46, 0x29, 0xd7, 0xf6, 0xb3, 0x55, 0x9d, 0x9d, 0x43, 0x3c, +0x0d, 0x51, 0xaf, 0x59, 0x9a, 0x19, 0x1d, 0x7b, 0x97, 0xa9, 0x17, 0x45, 0xa6, 0x1b, 0xf9, 0x09, +0x14, 0xc5, 0xc3, 0xf0, 0x0c, 0xaf, 0x85, 0x1c, 0x0b, 0x55, 0xff, 0x52, 0xba, 0xf0, 0x33, 0xd0, +0xc2, 0xfd, 0x28, 0x88, 0x2e, 0x0e, 0x71, 0x44, 0x66, 0xe8, 0x7d, 0xf6, 0x7f, 0x19, 0x25, 0xbc, +0x0a, 0xd3, 0x2e, 0x55, 0x4b, 0xa3, 0xf2, 0xc0, 0x9e, 0xb9, 0x8a, 0x29, 0x53, 0xd5, 0xe0, 0x18, +0x7f, 0x4a, 0x1e, 0xb3, 0x83, 0xdc, 0xb4, 0x99, 0x3d, 0x62, 0x07, 0x42, 0xe4, 0xb2, 0xd5, 0x07, +0xe3, 0x98, 0x92, 0xe4, 0x6c, 0x36, 0xf7, 0x06, 0x76, 0xc6, 0xe3, 0xc3, 0x97, 0x9d, 0xec, 0x47, +0xf3, 0x7d, 0xbe, 0xaf, 0x1f, 0xeb, 0x32, 0x2a, 0xd4, 0x9d, 0x87, 0x95, 0x6b, 0xbc, 0x1f, 0xfa, +0xe9, 0x5c, 0xba, 0x93, 0x9a, 0xa9, 0x24, 0xc0, 0xa2, 0x4f, 0x86, 0xf2, 0xe5, 0xf5, 0x80, 0x3b, +0xca, 0xe1, 0xe3, 0xe5, 0x51, 0x1b, 0x09, 0xfa, 0x36, 0x57, 0x09, 0xb0, 0x09, 0xaf, 0xcc, 0x9d, +0x91, 0x1b, 0xeb, 0x9e, 0xc6, 0x8b, 0xf6, 0x2c, 0xb1, 0x57, 0x5e, 0xa7, 0x8c, 0xce, 0xb2, 0x1e, +0x7c, 0xcd, 0x3f, 0xb5, 0xa8, 0x1f, 0xa2, 0xf0, 0xe7, 0xa4, 0xdd, 0xe7, 0x7c, 0x83, 0xbb, 0x7f, +0x4b, 0x00, 0x14, 0x44, 0x05, 0x3e, 0x09, 0x94, 0x1c, 0xb4, 0x51, 0xe2, 0x47, 0xb4, 0x8d, 0x22, +0xa1, 0x17, 0xc0, 0x6e, 0x87, 0xf6, 0xca, 0xd1, 0xa5, 0x3b, 0xb4, 0x66, 0x51, 0xaa, 0x13, 0x72, +0xf9, 0x28, 0x1c, 0x41, 0x0d, 0x6e, 0xda, 0x4e, 0x27, 0xc7, 0x48, 0xf6, 0xaf, 0x9e, 0xc9, 0x20, +0xa1, 0xfd, 0x48, 0x1b, 0xf3, 0x81, 0xa1, 0x23, 0x41, 0x29, 0xb7, 0x22, 0x90, 0x70, 0xaa, 0x26, +0xf1, 0xa9, 0x20, 0x73, 0xc5, 0x7e, 0x02, 0x5f, 0x3f, 0x40, 0x56, 0x83, 0xf1, 0xe9, 0x56, 0xf4, +0x95, 0xd8, 0xa4, 0x33, 0xdb, 0x96, 0xdd, 0x91, 0xca, 0xb6, 0xc2, 0xc3, 0xcc, 0xd2, 0x2d, 0x08, +0x50, 0xae, 0x54, 0x57, 0x9f, 0xc3, 0x6f, 0x17, 0xfa, 0x43, 0x71, 0xf9, 0xf9, 0xd5, 0xf6, 0x85, +0x6c, 0xd3, 0xae, 0x98, 0xb9, 0x7d, 0x3a, 0x97, 0x72, 0xdf, 0xf1, 0xa2, 0xfb, 0x29, 0x85, 0x71, +0x6c, 0xb2, 0x63, 0x09, 0x5c, 0x0f, 0xa1, 0xe3, 0xae, 0x93, 0x35, 0x3c, 0x03, 0x23, 0x83, 0x72, +0x21, 0xbb, 0x94, 0xf7, 0x29, 0xe1, 0xf8, 0x7f, 0xa8, 0xac, 0x25, 0x03, 0x4c, 0x2a, 0x1d, 0x88, +0xca, 0xb1, 0x37, 0x17, 0x9f, 0xaf, 0x57, 0xda, 0x29, 0x06, 0x5b, 0xbb, 0x5f, 0x26, 0xe4, 0x8a, +0x0c, 0xe1, 0x89, 0xcc, 0x0a, 0x07, 0x5f, 0xf6, 0x19, 0x9c, 0x66, 0x23, 0x87, 0x9c, 0x55, 0x3a, +0x9b, 0x2e, 0x51, 0x27, 0x21, 0x12, 0x5c, 0x91, 0xe7, 0xff, 0xd3, 0x43, 0x0a, 0xdc, 0x2c, 0x47, +0x4b, 0xd1, 0x15, 0xe0, 0x90, 0x35, 0x38, 0xd7, 0x20, 0xeb, 0x6f, 0x4b, 0x63, 0x1b, 0xc7, 0x9e, +0xc8, 0x93, 0xa7, 0x1c, 0x5a, 0x63, 0x5d, 0x9f, 0x2c, 0x82, 0x8a, 0xf9, 0xfb, 0x1f, 0xf2, 0x84, +0x09, 0x95, 0x00, 0x24, 0xb1, 0xea, 0xbf, 0x38, 0xa8, 0xd3, 0x78, 0x15, 0xa2, 0x80, 0x3c, 0x46, +0x6f, 0x5b, 0x43, 0xc5, 0x71, 0x7e, 0xad, 0x42, 0xed, 0xdb, 0x82, 0x06, 0xc2, 0x5d, 0xff, 0x55, +0x11, 0x88, 0xd2, 0x84, 0x5b, 0x04, 0xdd, 0xa9, 0xf7, 0x17, 0x01, 0xc3, 0x3c, 0x70, 0x0a, 0x0f, +0x72, 0x25, 0x5e, 0x7c, 0x37, 0xce, 0xf6, 0x19, 0x6c, 0x42, 0xff, 0x37, 0x0c, 0x07, 0xd3, 0x54, +0xeb, 0x47, 0xde, 0x10, 0x51, 0xc8, 0x6f, 0x61, 0xae, 0x7f, 0xcc, 0xba, 0xa1, 0x97, 0x05, 0xb4, +0xac, 0xf9, 0x5e, 0x9a, 0xa3, 0x6a, 0x89, 0xa0, 0xb8, 0x2d, 0x0a, 0xd3, 0x3d, 0x3c, 0x70, 0xa6, +0x65, 0x6d, 0xfc, 0x3d, 0xe1, 0xd2, 0x7c, 0x08, 0xb0, 0xb4, 0x5f, 0xfa, 0x0c, 0xd7, 0x7f, 0x5f, +0x0b, 0xf9, 0x56, 0xc9, 0xf4, 0xa7, 0x00, 0x0e, 0xd2, 0xb7, 0xe0, 0xfd, 0x0e, 0xd6, 0x3f, 0xc5, +0xad, 0xf9, 0xd6, 0x6a, 0xe8, 0xeb, 0xbf, 0x8c, 0xe4, 0x02, 0x44, 0x33, 0x80, 0x82, 0x06, 0x66, +0x0d, 0x3b, 0x9b, 0xd3, 0xf1, 0xea, 0xb4, 0xb5, 0xb2, 0x92, 0x43, 0x5a, 0x38, 0xad, 0x38, 0x73, +0xc0, 0x46, 0x9e, 0xe1, 0xfe, 0xe9, 0x96, 0xc4, 0x15, 0xb6, 0x6e, 0xb3, 0x21, 0x51, 0x5d, 0x00, +0xb1, 0x8a, 0x23, 0x23, 0xfc, 0x37, 0xb9, 0xe9, 0xd6, 0x37, 0x6a, 0xb9, 0xd6, 0x60, 0x2d, 0x31, +0x6f, 0x56, 0xab, 0x06, 0x18, 0x43, 0x3c, 0x9f, 0x8b, 0xcc, 0xc6, 0x71, 0x81, 0x41, 0x5a, 0xf3, +0x9a, 0x4b, 0xd0, 0x51, 0x21, 0x78, 0xb2, 0xe1, 0xee, 0xab, 0xda, 0x74, 0xde, 0xec, 0xd0, 0x1f, +0x08, 0x0c, 0x18, 0x83, 0x22, 0x73, 0x83, 0xc0, 0x8c, 0xfe, 0x4a, 0x09, 0x4c, 0x12, 0x39, 0x35, +0x05, 0xd9, 0xfd, 0x3b, 0xb4, 0x30, 0x54, 0x41, 0x43, 0xfa, 0x7c, 0x21, 0xeb, 0x78, 0x18, 0x69, +0x62, 0x72, 0xc9, 0xd5, 0xfd, 0xc6, 0x1a, 0xf9, 0x54, 0xc9, 0x7c, 0x03, 0x09, 0x61, 0xd9, 0xbe, +0x50, 0xe0, 0xae, 0x7a, 0x9c, 0x13, 0x14, 0xb2, 0xc7, 0xf7, 0xd8, 0x12, 0x1a, 0xc4, 0xb4, 0xd6, +0xe7, 0xad, 0xee, 0x28, 0xee, 0xe0, 0x5d, 0x50, 0x48, 0x68, 0x1f, 0x04, 0xf9, 0x6e, 0xbe, 0xdd, +0xc2, 0x60, 0xc4, 0xfc, 0xe2, 0x9f, 0x8b, 0x8e, 0x81, 0x63, 0x42, 0x88, 0xde, 0x4b, 0x7b, 0xad, +0xf1, 0x86, 0xa6, 0x42, 0xf3, 0x6d, 0x15, 0xb3, 0x6d, 0xff, 0xb3, 0xaa, 0x4a, 0xae, 0xf8, 0x0c, +0xd7, 0xbf, 0x48, 0x0b, 0xc2, 0x6d, 0xa3, 0x26, 0xe6, 0x89, 0xac, 0xf3, 0x1b, 0x96, 0x08, 0xc5, +0x0d, 0x80, 0xe1, 0x85, 0x9b, 0x55, 0xc2, 0x68, 0x1e, 0xf4, 0xec, 0xf8, 0xc8, 0x73, 0x96, 0x37, +0x16, 0xa3, 0xa7, 0x06, 0x1e, 0x14, 0x37, 0xb5, 0xc7, 0xba, 0xb5, 0x89, 0x76, 0xb2, 0x34, 0x6d, +0x66, 0x85, 0x21, 0x05, 0x72, 0x54, 0x02, 0x11, 0x1a, 0x31, 0x30, 0xdc, 0x4a, 0x32, 0x7b, 0xf1, +0x39, 0x31, 0x04, 0x39, 0xc6, 0x90, 0x69, 0xfc, 0x55, 0x68, 0xcb, 0xe3, 0xa8, 0xda, 0xbe, 0x10, +0x6e, 0x28, 0xf7, 0x8a, 0xd2, 0xca, 0x13, 0x21, 0xb0, 0x3c, 0xca, 0xd1, 0x0e, 0x8b, 0xf1, 0xc5, +0x00, 0xf3, 0x7a, 0x72, 0x33, 0xd4, 0x44, 0xf9, 0x97, 0x21, 0xcc, 0x09, 0xb1, 0x76, 0x33, 0x17, +0xa8, 0x6f, 0x78, 0xf9, 0xc7, 0x9a, 0x9a, 0xe0, 0xcc, 0x86, 0x21, 0x76, 0x49, 0x24, 0x5e, 0xc1, +0x75, 0x2a, 0x9c, 0xb2, 0x2e, 0xea, 0xe6, 0xc4, 0x07, 0xa3, 0x57, 0xb3, 0xbe, 0x69, 0x08, 0xe5, +0xd0, 0x77, 0x24, 0xbf, 0x01, 0xbc, 0xd9, 0x5a, 0x76, 0xb3, 0x96, 0x50, 0x9a, 0x2d, 0xe3, 0x24, +0x18, 0x31, 0xbe, 0xdf, 0x4d, 0xc6, 0x40, 0x34, 0x7c, 0x65, 0xe5, 0x49, 0x27, 0xc7, 0xf8, 0xdb, +0x60, 0xa7, 0x6b, 0xdb, 0xb4, 0x40, 0x67, 0xf2, 0x9a, 0x4e, 0xa5, 0x17, 0xc2, 0xdf, 0x07, 0xb3, +0xde, 0x9a, 0xca, 0x54, 0xec, 0xce, 0xac, 0x4d, 0xd5, 0x34, 0x1d, 0x89, 0xe4, 0x13, 0x7c, 0x4c, +0x63, 0xf5, 0x29, 0x56, 0xf0, 0x64, 0xc2, 0x43, 0x18, 0x0c, 0x10, 0x80, 0x04, 0x28, 0xa5, 0xe5, +0x13, 0x09, 0x2b, 0x1b, 0x3a, 0x2f, 0xe5, 0x64, 0x12, 0xd9, 0x91, 0x7b, 0xbd, 0xc3, 0x6c, 0x08, +0xb0, 0xfd, 0x48, 0xbd, 0xb7, 0xc3, 0x34, 0xe6, 0xfb, 0x27, 0x87, 0xf8, 0x92, 0x94, 0xab, 0x2a, +0xe3, 0x71, 0xd5, 0xe9, 0x0f, 0xf4, 0xd6, 0x0d, 0xc3, 0xcb, 0x68, 0x54, 0xa8, 0x9b, 0x59, 0xb1, +0x61, 0xd8, 0x16, 0xb4, 0x1f, 0x89, 0xb4, 0x89, 0x86, 0xd0, 0xd3, 0xef, 0xda, 0xbe, 0xc8, 0xa6, +0x6f, 0x3e, 0xce, 0xad, 0xc5, 0x01, 0xf7, 0xc9, 0xfc, 0x00, 0xe4, 0xdd, 0x17, 0x4f, 0x65, 0x1e, +0x6d, 0xb3, 0xd6, 0xe5, 0xc1, 0x17, 0x44, 0xad, 0xea, 0x61, 0xf5, 0x98, 0xb5, 0xc2, 0x7a, 0xb8, +0xcf, 0x67, 0xe3, 0x08, 0x26, 0xfc, 0xb7, 0xf7, 0x8e, 0x31, 0x7f, 0x20, 0x30, 0xc9, 0x72, 0x7c, +0x46, 0xb6, 0x76, 0x88, 0xa9, 0xe4, 0xcc, 0xb6, 0x36, 0x19, 0xf8, 0x5a, 0xdc, 0xe1, 0x13, 0x26, +0xb3, 0xae, 0x1c, 0xe0, 0x2c, 0xd8, 0xb0, 0x3f, 0x33, 0x82, 0x7b, 0xc4, 0x03, 0x91, 0x98, 0x43, +0xfa, 0x75, 0x23, 0x38, 0xd3, 0x76, 0x23, 0x26, 0x2b, 0x2f, 0xcc, 0x69, 0xbe, 0x2a, 0x71, 0x40, +0xed, 0xa6, 0x17, 0x6c, 0x2f, 0xf6, 0xbc, 0xeb, 0xcd, 0x8c, 0x3b, 0xd4, 0x0c, 0x7a, 0xad, 0x24, +0x53, 0xf6, 0xed, 0xf8, 0xd5, 0x42, 0x7c, 0x14, 0x44, 0x3a, 0x55, 0x50, 0x6f, 0x8d, 0x89, 0xb7, +0xb8, 0x73, 0x2a, 0x4e, 0xfb, 0xb8, 0x78, 0x82, 0x85, 0x7e, 0xf4, 0xea, 0xaf, 0xcf, 0x77, 0x63, +0x67, 0x9c, 0x97, 0xc5, 0x50, 0x77, 0xda, 0x7b, 0x1c, 0xd7, 0xa9, 0x97, 0xb4, 0xd8, 0xa9, 0xe9, +0x5c, 0xaf, 0xa7, 0xf5, 0x54, 0xb8, 0x11, 0x8d, 0xcf, 0x45, 0x54, 0x51, 0x7c, 0xed, 0x4c, 0x9b, +0xeb, 0xa4, 0xe1, 0x82, 0x1b, 0xb9, 0x36, 0x51, 0x5d, 0x08, 0x8e, 0xdd, 0x8c, 0xe3, 0x50, 0xd4, +0x21, 0x73, 0x46, 0x67, 0x00, 0xda, 0xe6, 0xda, 0x7d, 0xa3, 0xa5, 0x58, 0xe6, 0xd1, 0xd8, 0x10, +0xa1, 0x61, 0xfd, 0x49, 0xa2, 0xfe, 0x3c, 0xa5, 0xa4, 0x73, 0x5d, 0x67, 0xec, 0x42, 0x9f, 0xde, +0x16, 0x90, 0xf9, 0x26, 0xf5, 0x19, 0x49, 0x0e, 0x9d, 0x74, 0x8e, 0xff, 0xb4, 0x37, 0xf7, 0xd6, +0x9f, 0x53, 0x42, 0xb9, 0x4e, 0x22, 0x36, 0x1b, 0x6a, 0xe3, 0x72, 0xab, 0x17, 0x87, 0x9f, 0x5e, +0x5e, 0x86, 0xf2, 0x25, 0xcd, 0x71, 0x7e, 0x7d, 0x46, 0xf1, 0x4f, 0x4a, 0x7b, 0x62, 0xef, 0xcd, +0x6a, 0x91, 0xb1, 0x74, 0x71, 0x79, 0x35, 0x13, 0xbc, 0x86, 0x60, 0xee, 0x15, 0xb6, 0x6b, 0x4c, +0xf1, 0xbe, 0xfe, 0x89, 0x3a, 0x84, 0x60, 0x13, 0xf9, 0x82, 0x4d, 0x02, 0x89, 0x56, 0x08, 0xbe, +0xcf, 0xff, 0x41, 0x77, 0x09, 0x9f, 0x60, 0x41, 0x90, 0xa6, 0x2a, 0x84, 0xc5, 0xd8, 0xcd, 0x52, +0xc6, 0x3a, 0x88, 0x2b, 0xa6, 0x94, 0xe9, 0x31, 0x14, 0x40, 0x38, 0xfc, 0x84, 0xb8, 0x52, 0x9c, +0x1e, 0x33, 0x1b, 0x11, 0x69, 0xf4, 0xda, 0x58, 0xe2, 0xa5, 0x1c, 0xfa, 0xfc, 0x08, 0x67, 0x45, +0xd5, 0xe5, 0x65, 0x4a, 0x82, 0xb1, 0x0f, 0x51, 0xa6, 0xe2, 0x02, 0x67, 0x89, 0xae, 0xb6, 0x53, +0xef, 0x7d, 0x71, 0x78, 0xae, 0x6a, 0xd9, 0x42, 0xca, 0xe4, 0x3e, 0x09, 0x24, 0x40, 0x95, 0xbe, +0x19, 0x71, 0xe4, 0x87, 0x58, 0xce, 0xae, 0x28, 0x85, 0xb6, 0xd6, 0xb2, 0x7f, 0xeb, 0x48, 0xd4, +0x28, 0xba, 0x1a, 0xf1, 0xa7, 0x75, 0x95, 0x9a, 0xbd, 0x4b, 0x98, 0x86, 0x5f, 0x96, 0xab, 0xdf, +0xe1, 0xff, 0x82, 0xf9, 0xba, 0xf7, 0x03, 0xb2, 0x36, 0x2b, 0x6a, 0xe5, 0x93, 0x06, 0xa1, 0x03, +0xbe, 0x6a, 0x61, 0x33, 0x96, 0xe0, 0x19, 0xde, 0x5f, 0x0b, 0x8d, 0x79, 0xfb, 0x5c, 0x15, 0x20, +0x2d, 0x5a, 0x5d, 0xe8, 0x2e, 0x89, 0x49, 0x5f, 0x74, 0x89, 0x4f, 0x64, 0x0e, 0xfc, 0x41, 0xed, +0x2d, 0xce, 0x77, 0xa1, 0x71, 0x4f, 0x36, 0x10, 0xe5, 0xba, 0x5e, 0x3d, 0x85, 0x57, 0x1f, 0x18, +0x0c, 0xd2, 0x63, 0xad, 0x18, 0x5f, 0x2b, 0xd7, 0xf7, 0x43, 0x08, 0xc8, 0xa7, 0x74, 0x4d, 0xb3, +0x3b, 0x21, 0x33, 0xc6, 0x97, 0xd9, 0x6e, 0x52, 0x3b, 0x65, 0xed, 0x65, 0x45, 0xa9, 0xaf, 0x9d, +0x68, 0xff, 0xc0, 0xd1, 0xc9, 0x0c, 0x17, 0x9d, 0x41, 0x47, 0x7f, 0x94, 0xa1, 0x1a, 0xed, 0x68, +0x0a, 0x54, 0x4f, 0xe3, 0xf4, 0x94, 0xd3, 0x88, 0xd2, 0x29, 0x76, 0x6b, 0xbb, 0x93, 0x0c, 0x87, +0xff, 0x59, 0xeb, 0x2f, 0x22, 0x9b, 0x06, 0x01, 0xe5, 0x4e, 0x3e, 0x2d, 0xaa, 0x93, 0xc6, 0xdc, +0x4d, 0xac, 0x7d, 0xed, 0x2c, 0xc7, 0x7a, 0x3a, 0xa1, 0x0d, 0xf7, 0xd9, 0xb1, 0x0d, 0xe9, 0xab, +0xeb, 0xfb, 0xb3, 0xd5, 0xea, 0x81, 0xd3, 0x5b, 0x35, 0x5c, 0x11, 0x0c, 0xdb, 0x07, 0xf1, 0x58, +0xad, 0xe3, 0x1e, 0x6d, 0xc5, 0xca, 0xf8, 0x09, 0x2b, 0x1f, 0x77, 0x3f, 0x61, 0x36, 0x8e, 0xdf, +0x56, 0xb1, 0x4e, 0xb5, 0xf3, 0x2a, 0xf1, 0x7c, 0xb4, 0x1f, 0xda, 0x9e, 0x3a, 0x03, 0xc9, 0xcd, +0x94, 0xa1, 0x7a, 0xe9, 0x44, 0xfb, 0xc8, 0xdd, 0x6c, 0x76, 0x1d, 0xfd, 0xab, 0xce, 0xbf, 0x0f, +0x16, 0x7c, 0xb8, 0x12, 0x36, 0x7d, 0xd5, 0x47, 0xe6, 0x24, 0x7f, 0xa1, 0xcc, 0x6b, 0x8e, 0x7d, +0xe5, 0x28, 0x7e, 0x20, 0x44, 0x92, 0x81, 0xa9, 0xb9, 0xae, 0xe7, 0x84, 0x84, 0x21, 0x9e, 0xe3, +0xa1, 0x58, 0xe6, 0x76, 0x41, 0x55, 0x6e, 0x56, 0xfd, 0xb9, 0x27, 0x23, 0x35, 0xb1, 0x46, 0xea, +0x73, 0x0a, 0x04, 0x1f, 0xd7, 0x24, 0x59, 0x82, 0xd2, 0x0c, 0x9d, 0xff, 0x2b, 0x87, 0xc1, 0xa9, +0x3d, 0x5c, 0x1b, 0x03, 0xe4, 0x1e, 0x84, 0xa6, 0x03, 0xe2, 0x40, 0xdb, 0xc1, 0x5a, 0x9d, 0x4a, +0x40, 0x6e, 0x2d, 0x8f, 0x2d, 0xd4, 0x18, 0xcc, 0x53, 0x9a, 0x3e, 0x00, 0x0a, 0xe0, 0xb3, 0x87, +0x34, 0x69, 0x2f, 0x63, 0xae, 0xa4, 0xfe, 0x7f, 0x16, 0x9b, 0x40, 0xca, 0x23, 0x0a, 0xdc, 0x89, +0xb4, 0x4c, 0x55, 0xb1, 0x86, 0x76, 0xb7, 0x7d, 0x98, 0xeb, 0x32, 0x18, 0xf8, 0x5f, 0xfb, 0x87, +0xa5, 0xa8, 0x66, 0x47, 0xe4, 0xc6, 0xe7, 0x12, 0xd6, 0x03, 0x1a, 0x41, 0x22, 0x0b, 0xc2, 0x79, +0x92, 0xa8, 0xc2, 0x6d, 0xfc, 0x1b, 0xaf, 0x4c, 0xb3, 0x58, 0x9d, 0xa9, 0x12, 0x62, 0xdb, 0x51, +0x81, 0x3d, 0x21, 0x78, 0xe0, 0xf5, 0xda, 0x64, 0x3d, 0xe5, 0x83, 0x60, 0x4f, 0x26, 0x33, 0xde, +0x03, 0x1c, 0xe8, 0x21, 0x88, 0xf4, 0xaf, 0x7e, 0x17, 0x0c, 0xb9, 0xab, 0xa6, 0xc5, 0x28, 0x26, +0xfb, 0xcb, 0x5a, 0xb0, 0xf8, 0x6e, 0x99, 0x1f, 0x74, 0x92, 0xc5, 0xbf, 0xa2, 0xd8, 0x64, 0x24, +0x45, 0xd6, 0x22, 0x08, 0x3a, 0x28, 0x15, 0x13, 0x21, 0xa0, 0xfd, 0x1e, 0xa5, 0x07, 0xf8, 0xff, +0x6e, 0x1e, 0x01, 0xb8, 0x64, 0xf3, 0xd5, 0x82, 0x67, 0x54, 0xe3, 0xf6, 0x97, 0x38, 0x06, 0xdc, +0x95, 0x17, 0x78, 0xff, 0x73, 0x35, 0xa5, 0x41, 0x77, 0xd3, 0xa8, 0xcb, 0x66, 0xf5, 0xb2, 0x7d, +0x22, 0x04, 0x9a, 0x75, 0x87, 0x29, 0xa6, 0xcc, 0x77, 0xc9, 0x7b, 0x7a, 0xbc, 0x6c, 0x11, 0x5c, +0x77, 0x08, 0x79, 0x64, 0x0d, 0x75, 0x7c, 0xae, 0xe4, 0x04, 0xb9, 0x0d, 0x05, 0x8e, 0x16, 0x3a, +0x64, 0x57, 0x0e, 0x85, 0xae, 0x1b, 0x0d, 0x9c, 0x83, 0x33, 0x26, 0x2f, 0x24, 0xa7, 0x63, 0xb7, +0x67, 0x3e, 0x35, 0x46, 0x95, 0x64, 0xad, 0xd2, 0x6b, 0x6a, 0x60, 0x61, 0x60, 0x08, 0x4f, 0x21, +0xd9, 0x33, 0x9b, 0xd9, 0xf0, 0x03, 0xcf, 0xae, 0x57, 0xf8, 0xd3, 0x25, 0x8f, 0x5c, 0xe0, 0x78, +0x7b, 0x69, 0x8a, 0x43, 0x61, 0x86, 0xbb, 0xf8, 0x3c, 0xf6, 0x77, 0x40, 0x9c, 0xf0, 0x50, 0xd2, +0x94, 0x14, 0xbf, 0x8c, 0xd5, 0x7b, 0xfa, 0xca, 0x8c, 0xb2, 0x3e, 0xab, 0x8c, 0x74, 0x63, 0x13, +0x88, 0x40, 0xe5, 0xa1, 0x14, 0xdd, 0xd2, 0x18, 0x5f, 0xe3, 0x04, 0xd8, 0x13, 0x69, 0x2a, 0x56, +0xe3, 0xe1, 0x54, 0xaa, 0xb6, 0xf5, 0x7a, 0x4f, 0x4c, 0x85, 0xbe, 0x66, 0x7b, 0x26, 0xa7, 0xc6, +0xa4, 0x86, 0x48, 0xf2, 0xdb, 0xac, 0xb5, 0x94, 0x8c, 0x84, 0x21, 0x56, 0x14, 0xc2, 0xb5, 0x3f, +0x9e, 0x23, 0x25, 0x89, 0xf5, 0xc1, 0xa6, 0x06, 0x4e, 0x8e, 0x59, 0x93, 0x8e, 0xe8, 0x8b, 0x36, +0x77, 0xdd, 0xc7, 0x7e, 0xef, 0x08, 0x07, 0xae, 0x1b, 0xa1, 0x4b, 0x23, 0x36, 0x91, 0x3b, 0x8f, +0x3b, 0xf0, 0x5e, 0x0f, 0xe9, 0xb3, 0x85, 0x86, 0x73, 0x4f, 0x2c, 0x07, 0x37, 0xd5, 0xe2, 0x16, +0xf8, 0xd5, 0xb2, 0x8c, 0xbf, 0xfc, 0xab, 0xc7, 0x63, 0x89, 0x12, 0xd5, 0x5e, 0xaa, 0x7e, 0x25, +0xfc, 0x89, 0x03, 0x7e, 0x4f, 0x33, 0xcb, 0x4a, 0x55, 0x86, 0x63, 0x49, 0x17, 0xf3, 0xa4, 0x09, +0x68, 0x8f, 0x74, 0x8c, 0x3f, 0x35, 0xd1, 0x75, 0x04, 0x41, 0xe8, 0x91, 0xce, 0x1b, 0x30, 0x40, +0x72, 0x17, 0xc3, 0x16, 0x6e, 0x95, 0xcc, 0xc5, 0xcd, 0x96, 0xd3, 0xff, 0x4c, 0x08, 0x8f, 0x0b, +0xf7, 0x21, 0x66, 0xde, 0x7f, 0x85, 0x12, 0xde, 0x64, 0x4d, 0x2d, 0x54, 0xba, 0x03, 0xe0, 0x74, +0x70, 0xd8, 0xc2, 0x41, 0xc6, 0xf8, 0x6e, 0x5f, 0x9c, 0xa4, 0x42, 0x53, 0xf8, 0xc7, 0x46, 0x32, +0x70, 0x01, 0x12, 0xd9, 0xf4, 0xf2, 0xbc, 0x36, 0x5e, 0x15, 0xfb, 0x82, 0xf1, 0x7e, 0x99, 0x0a, +0x51, 0x10, 0x43, 0x5e, 0xe2, 0x3c, 0xba, 0xf6, 0x12, 0x24, 0x77, 0xe4, 0xff, 0x64, 0xe5, 0x38, +0x5a, 0xb4, 0xc5, 0xa4, 0x27, 0x65, 0xb0, 0xc5, 0xbf, 0xc7, 0x9f, 0x3a, 0xb3, 0x32, 0x61, 0xdb, +0xd0, 0xa3, 0x6e, 0xbf, 0xde, 0x1a, 0x48, 0x1d, 0xd0, 0xd2, 0xab, 0x17, 0x34, 0x98, 0x32, 0x02, +0x42, 0x1d, 0xe1, 0xa3, 0x26, 0x57, 0x5d, 0xa3, 0x06, 0xa1, 0x9d, 0xfa, 0x8e, 0x40, 0x86, 0x97, +0x7e, 0xf1, 0xa8, 0xda, 0xd5, 0x47, 0x3d, 0x93, 0xea, 0x2f, 0x67, 0xac, 0x5c, 0x19, 0x37, 0x5b, +0xf5, 0x26, 0x8f, 0x5b, 0x6d, 0xef, 0x92, 0x56, 0xd1, 0xd7, 0x84, 0xed, 0x32, 0x5e, 0xb3, 0x9e, +0xd3, 0xbe, 0x08, 0xdd, 0x2d, 0x76, 0x7b, 0xe5, 0xb6, 0x42, 0x96, 0x5e, 0x50, 0x1d, 0x03, 0x8a, +0xa2, 0x6b, 0xeb, 0xf3, 0xd1, 0x20, 0xde, 0xec, 0x11, 0x7f, 0xf0, 0x94, 0x01, 0xee, 0x38, 0x3f, +0x0e, 0xdc, 0xe9, 0xcb, 0x3d, 0x02, 0xf2, 0x4e, 0x2d, 0x5d, 0xd5, 0x9c, 0x75, 0x23, 0xef, 0x84, +0xe5, 0x4d, 0x77, 0x5b, 0x70, 0x65, 0x69, 0xe2, 0xa7, 0xa2, 0xe8, 0x7a, 0x99, 0xa7, 0x3e, 0x71, +0x6c, 0x0d, 0xce, 0xd5, 0x18, 0xb1, 0x70, 0xca, 0x18, 0x87, 0x75, 0xfd, 0xfc, 0xc2, 0x46, 0xe5, +0x3c, 0x31, 0x2e, 0x2a, 0x02, 0x20, 0x93, 0x2d, 0xaa, 0x2a, 0x10, 0x16, 0x08, 0x5b, 0x6d, 0x5a, +0xde, 0xbe, 0x3b, 0x87, 0x0c, 0xfc, 0x4b, 0x5f, 0x6a, 0x81, 0xaa, 0x03, 0x27, 0x4b, 0x63, 0x27, +0x0c, 0x70, 0xd3, 0x30, 0x1c, 0xd2, 0x59, 0xea, 0xef, 0xec, 0xe2, 0x92, 0xca, 0xb3, 0x2d, 0x48, +0xa5, 0xcf, 0x72, 0x21, 0x60, 0xa7, 0x5d, 0x24, 0x98, 0x2d, 0xbc, 0x07, 0x4b, 0xf7, 0x76, 0xa4, +0x57, 0x6e, 0xac, 0xa7, 0x96, 0x06, 0x60, 0x74, 0xb6, 0x74, 0xae, 0x37, 0xf0, 0x75, 0x86, 0xe6, +0x9f, 0x1d, 0x0c, 0xe8, 0x1a, 0x43, 0x21, 0x19, 0x55, 0xe8, 0x15, 0xb6, 0xb9, 0xa5, 0x1d, 0xc7, +0xf0, 0x7a, 0x80, 0xe2, 0x1a, 0x4f, 0xfc, 0xcd, 0x85, 0xae, 0x52, 0x62, 0xae, 0x67, 0xf6, 0x5b, +0x03, 0xa6, 0xcd, 0xf6, 0x59, 0x3b, 0x4b, 0x09, 0xe4, 0x78, 0x9e, 0x10, 0xdd, 0x3f, 0xd0, 0x95, +0x3b, 0xb6, 0x40, 0x8e, 0xe4, 0xb0, 0xa1, 0xb8, 0x09, 0x02, 0xd2, 0x92, 0x84, 0xbd, 0x90, 0x09, +0x5f, 0x99, 0x80, 0x35, 0x36, 0xdd, 0x64, 0x62, 0x32, 0xfc, 0xd3, 0xcd, 0x5d, 0xfd, 0x52, 0x3a, +0x4d, 0xf5, 0x78, 0x02, 0xa3, 0xd8, 0x1f, 0x88, 0xd6, 0xcb, 0x10, 0x07, 0x7b, 0x09, 0x92, 0xb7, +0x6e, 0xdd, 0x92, 0xa4, 0x4f, 0x32, 0x94, 0x32, 0x50, 0x55, 0xec, 0x9d, 0xe1, 0x8d, 0x72, 0x7d, +0x08, 0xf0, 0x60, 0x8b, 0xa4, 0x47, 0x3a, 0x94, 0x4e, 0x8d, 0xda, 0x93, 0x05, 0x6f, 0xdd, 0x68, +0x59, 0x4c, 0x82, 0xc6, 0xe7, 0xe9, 0xb6, 0xf1, 0x15, 0x31, 0x37, 0x42, 0x75, 0x3c, 0x69, 0xe9, +0x09, 0x06, 0x51, 0x2a, 0x47, 0x32, 0xd9, 0x7a, 0x8c, 0x71, 0xbe, 0x25, 0xad, 0x9c, 0x09, 0x5b, +0x7b, 0xa2, 0x33, 0xca, 0xda, 0x30, 0xce, 0xf5, 0x79, 0xc8, 0x4c, 0x99, 0x0c, 0x6b, 0x94, 0xfd, +0xe6, 0x10, 0xcf, 0xae, 0x42, 0x74, 0x13, 0xa9, 0xf9, 0x5f, 0xcf, 0x39, 0x3b, 0x2c, 0x0e, 0x10, +0xc5, 0xe4, 0x71, 0xa6, 0x04, 0xe1, 0xed, 0x3c, 0xa3, 0xbb, 0x7c, 0x2f, 0x56, 0xed, 0x07, 0xf0, +0x96, 0x27, 0xc0, 0xe7, 0xae, 0xc8, 0x17, 0xb5, 0xd4, 0x9b, 0x2e, 0x50, 0xe1, 0xb9, 0x5b, 0xbf, +0xa7, 0xed, 0x93, 0x65, 0x92, 0xf0, 0x40, 0x72, 0x9f, 0x7d, 0x71, 0x2b, 0x88, 0xb2, 0xe6, 0xec, +0x71, 0x4b, 0x0d, 0x19, 0xc7, 0x9f, 0x81, 0xf1, 0x41, 0x21, 0x5d, 0x8d, 0x5c, 0xa4, 0x54, 0xad, +0x03, 0xab, 0xa2, 0x93, 0x20, 0x86, 0x78, 0x71, 0x37, 0x82, 0x77, 0x17, 0x58, 0x29, 0xff, 0x8a, +0xe9, 0x95, 0x79, 0xc8, 0x5a, 0xb0, 0x67, 0x36, 0xc7, 0xa6, 0x9d, 0x61, 0xda, 0x0f, 0x72, 0xf8, +0x79, 0x85, 0x23, 0x54, 0x92, 0x04, 0x52, 0x9f, 0xd1, 0x3e, 0x6e, 0xce, 0x73, 0xdc, 0xb4, 0xec, +0x5d, 0x72, 0xb2, 0x51, 0xbf, 0x82, 0x26, 0x06, 0xa5, 0x7c, 0x1d, 0xc3, 0x89, 0x91, 0xa6, 0x4f, +0x80, 0x5a, 0xfa, 0xee, 0x63, 0xbc, 0xdd, 0x4d, 0xf0, 0xa2, 0x15, 0x65, 0xd1, 0x2a, 0xfb, 0x6f, +0x99, 0x8a, 0x6e, 0x52, 0xdc, 0x15, 0xf6, 0x46, 0x48, 0x0e, 0x04, 0xec, 0xe0, 0x99, 0xa7, 0xd1, +0xc1, 0xf7, 0xaa, 0x64, 0xfe, 0x66, 0xe1, 0xd1, 0x79, 0x27, 0x65, 0xb1, 0x9c, 0x92, 0x66, 0x91, +0xf0, 0x1b, 0xf9, 0x09, 0x2d, 0x30, 0xce, 0x93, 0x71, 0x1b, 0x4c, 0x70, 0x70, 0x7e, 0xe1, 0x83, +0x05, 0x85, 0x28, 0x62, 0x11, 0x46, 0x84, 0xd2, 0x76, 0xb0, 0x3e, 0xb3, 0xc6, 0x73, 0x19, 0xb3, +0x19, 0x56, 0x0e, 0x0d, 0x74, 0x7e, 0xb4, 0x9a, 0x28, 0x9b, 0xc2, 0x4d, 0x67, 0x9a, 0x75, 0x2c, +0x72, 0x37, 0xe9, 0x0d, 0x5d, 0x4f, 0x6d, 0x53, 0xc3, 0x0a, 0x64, 0xd4, 0x9d, 0x78, 0xfc, 0xd3, +0x4b, 0x8b, 0x3f, 0x0c, 0x20, 0xa0, 0x1c, 0x4f, 0x40, 0x8f, 0x8b, 0x3b, 0x8c, 0x3c, 0x33, 0x35, +0x79, 0xe1, 0x10, 0xc9, 0x61, 0x72, 0x72, 0x37, 0xcc, 0xdc, 0x36, 0x4a, 0xa5, 0xb4, 0x53, 0x10, +0x72, 0x45, 0xa3, 0x53, 0x8f, 0xb5, 0x2b, 0xbf, 0x1c, 0x85, 0xc8, 0x24, 0xda, 0x85, 0xe1, 0x3c, +0x7d, 0x67, 0x4a, 0xe9, 0x0e, 0x56, 0xe7, 0x9a, 0xcf, 0x07, 0x46, 0xcc, 0xe9, 0x2d, 0xe9, 0xa5, +0x16, 0xe2, 0x2c, 0xc8, 0xfc, 0x67, 0xeb, 0x4d, 0x03, 0x97, 0x49, 0x2f, 0xae, 0xe8, 0x98, 0xf1, +0xa5, 0x70, 0xb7, 0xbd, 0x3e, 0xd4, 0xb3, 0x65, 0xb3, 0x04, 0xb5, 0x70, 0x6a, 0xf3, 0x0c, 0xf7, +0x35, 0x0b, 0xb4, 0xb4, 0xe6, 0x92, 0x40, 0xfe, 0x15, 0x41, 0xf0, 0x32, 0xb8, 0x3c, 0xa0, 0xad, +0xfa, 0x6d, 0x36, 0xb4, 0x9d, 0x13, 0x62, 0xd6, 0xa5, 0xcd, 0xfe, 0xc3, 0xce, 0x56, 0x15, 0xb3, +0xfd, 0xf6, 0x38, 0xbd, 0xff, 0x0f, 0xca, 0xab, 0x05, 0x52, 0xc9, 0xec, 0x43, 0xbe, 0x8f, 0x08, +0xa0, 0xb9, 0xe7, 0xa9, 0xcb, 0xf2, 0x22, 0x84, 0x10, 0xa5, 0x69, 0x65, 0x39, 0x52, 0x89, 0xb8, +0x6e, 0x4a, 0x2c, 0x45, 0x01, 0xe0, 0x38, 0x76, 0xa4, 0xd5, 0x11, 0xcb, 0xdb, 0xab, 0x03, 0xaa, +0x14, 0x44, 0x8b, 0xee, 0x07, 0x6d, 0x38, 0x89, 0x87, 0xf8, 0xd6, 0xe1, 0x8d, 0x66, 0xce, 0xeb, +0x63, 0xb2, 0x1d, 0xb5, 0x6b, 0xd6, 0x86, 0x28, 0x3d, 0xe0, 0x94, 0x73, 0xb0, 0xf7, 0x75, 0x94, +0x3a, 0xde, 0xbd, 0xb8, 0xf2, 0xbf, 0x85, 0x5a, 0x67, 0x92, 0x07, 0xe7, 0x26, 0xb6, 0x49, 0xcd, +0xe8, 0x66, 0x8a, 0xfe, 0x18, 0xb1, 0xab, 0x24, 0xb2, 0x2e, 0x6f, 0xdf, 0x44, 0xf4, 0x35, 0xee, +0x8f, 0xc6, 0x91, 0x2e, 0xe8, 0xb7, 0x7c, 0x1b, 0x4c, 0x30, 0x43, 0xf7, 0x61, 0x84, 0x99, 0xdb, +0x0a, 0xdc, 0x7e, 0x9f, 0xb1, 0x10, 0xf1, 0xcc, 0x3a, 0x97, 0x03, 0x1e, 0xf4, 0xf4, 0xe5, 0xf1, +0xaf, 0x66, 0x6c, 0x45, 0x19, 0x95, 0x26, 0x01, 0xda, 0x49, 0x03, 0x36, 0xd8, 0xf0, 0x00, 0x40, +0xb8, 0x38, 0x25, 0x18, 0x96, 0x9d, 0xb3, 0x96, 0x83, 0xd3, 0x5c, 0xa9, 0x89, 0xac, 0x07, 0x78, +0xf6, 0xa5, 0x67, 0xc2, 0xa7, 0x76, 0xb8, 0x89, 0x1d, 0x64, 0xae, 0x66, 0xdb, 0x3d, 0x46, 0x4f, +0xdd, 0xa4, 0xa9, 0x30, 0x8f, 0x85, 0x03, 0x49, 0x0e, 0x4f, 0xef, 0xef, 0x47, 0x63, 0x3b, 0x50, +0x32, 0xa4, 0x2b, 0xe2, 0x33, 0xf9, 0xda, 0xcf, 0x2e, 0x4e, 0xd7, 0x97, 0xc7, 0xa7, 0xe4, 0x59, +0x98, 0x86, 0x78, 0xae, 0x85, 0x0a, 0x9d, 0x65, 0x5e, 0xa8, 0xf3, 0x15, 0x3a, 0x09, 0x4c, 0xee, +0xa6, 0x2d, 0xe8, 0x51, 0xfb, 0xb0, 0xb1, 0x16, 0xb9, 0x89, 0xc5, 0x76, 0x62, 0xab, 0xcf, 0x58, +0x6e, 0x26, 0xe9, 0x5c, 0x69, 0x59, 0xc6, 0x07, 0x9c, 0x69, 0x36, 0x4c, 0x85, 0xb2, 0x69, 0x0d, +0x9f, 0xbb, 0xc0, 0xaa, 0x6e, 0xe8, 0x1b, 0x68, 0xb8, 0x76, 0xf5, 0x8b, 0x49, 0x2a, 0x3b, 0x03, +0xae, 0xe4, 0x7a, 0x56, 0x21, 0xce, 0x39, 0xd8, 0x0f, 0x35, 0x50, 0xbd, 0x8c, 0xae, 0x43, 0xb7, +0x74, 0x45, 0x43, 0x2a, 0xcf, 0xbb, 0x00, 0x04, 0x47, 0x9d, 0x76, 0xef, 0xdf, 0x81, 0x6f, 0x1f, +0xe7, 0xc9, 0x4c, 0x7c, 0x4d, 0x52, 0x21, 0xd2, 0x66, 0xec, 0xe1, 0x1b, 0x3f, 0x92, 0x52, 0x83, +0x68, 0x07, 0xc4, 0x1f, 0x1a, 0x01, 0xff, 0x8f, 0x27, 0x67, 0x4e, 0xe4, 0xad, 0x10, 0x4d, 0xe7, +0x5e, 0xb5, 0x33, 0xe9, 0xf2, 0x97, 0x97, 0x4c, 0xed, 0x27, 0x9e, 0xc5, 0x8d, 0xb4, 0x60, 0x7c, +0x54, 0xf7, 0xea, 0xa6, 0xe6, 0x2b, 0x61, 0x3a, 0xf9, 0xf7, 0xfc, 0x49, 0xa0, 0x07, 0xd6, 0x4b, +0x84, 0xe5, 0xd3, 0x8c, 0x24, 0x3e, 0x62, 0x8e, 0xf7, 0x12, 0xce, 0x30, 0x67, 0xbe, 0xa1, 0xf0, +0x9d, 0xbd, 0x14, 0x80, 0xa1, 0xf3, 0xa5, 0xc5, 0x98, 0x48, 0x2a, 0x3e, 0xb9, 0x27, 0xc7, 0x5a, +0xb0, 0x15, 0xaf, 0x5f, 0xa2, 0xc6, 0x11, 0x9c, 0x08, 0xe9, 0x43, 0x5b, 0x01, 0x6c, 0xb8, 0x00, +0xd4, 0xd7, 0x29, 0xe9, 0x66, 0xea, 0x21, 0xaf, 0xa9, 0xb8, 0x55, 0x09, 0xa1, 0x4e, 0x5b, 0x07, +0xb8, 0xcd, 0x6e, 0x96, 0xd0, 0x4f, 0x0e, 0x86, 0xe7, 0xae, 0x20, 0x8f, 0xbe, 0xb0, 0x31, 0xa6, +0xab, 0x46, 0xd2, 0xe1, 0x07, 0xb2, 0x11, 0x3d, 0x04, 0x8f, 0x22, 0x1b, 0xd1, 0xba, 0x94, 0x0a, +0x35, 0xa7, 0x99, 0x26, 0xd3, 0xf0, 0xbe, 0x81, 0x33, 0x1c, 0xa0, 0xe6, 0x61, 0xf8, 0x9d, 0x75, +0x13, 0xff, 0x74, 0x58, 0x9f, 0x15, 0x12, 0xfc, 0x91, 0x5d, 0x5a, 0xfd, 0xef, 0xef, 0x0b, 0xfd, +0x55, 0xe6, 0xed, 0xd3, 0x2d, 0x08, 0x52, 0x26, 0x17, 0x5b, 0xc2, 0xf7, 0x5b, 0xcd, 0x61, 0x82, +0xaf, 0x9d, 0x23, 0x8c, 0x65, 0xab, 0xca, 0x9d, 0xb4, 0xdc, 0x34, 0xe6, 0x54, 0xc0, 0x78, 0x3d, +0x5d, 0x24, 0xb5, 0xac, 0xff, 0xe7, 0x60, 0xda, 0xa4, 0x6f, 0xfb, 0x62, 0x85, 0x16, 0x03, 0x19, +0x6e, 0x6b, 0x57, 0x83, 0x0a, 0x46, 0xca, 0xec, 0x02, 0x0c, 0xb0, 0x3e, 0x40, 0x9e, 0xee, 0x2a, +0xab, 0xe0, 0x47, 0xae, 0x2b, 0x38, 0x08, 0x86, 0xb6, 0x10, 0x0f, 0x68, 0xea, 0x85, 0x7f, 0xad, +0x54, 0xd3, 0x18, 0x2c, 0x95, 0x11, 0x27, 0x3a, 0xa0, 0x3b, 0x11, 0x2f, 0x75, 0xa0, 0x71, 0x65, +0xde, 0xc5, 0x91, 0xd7, 0x1e, 0x4a, 0xa0, 0x7e, 0x0f, 0x01, 0xe5, 0x7f, 0x44, 0xfb, 0x16, 0x7b, +0x56, 0x24, 0xcd, 0x7e, 0x89, 0xc7, 0xd0, 0xd7, 0x02, 0xc0, 0xb9, 0xe6, 0xf9, 0xb4, 0xff, 0x4f, +0x93, 0x46, 0x50, 0x9f, 0xa6, 0x9b, 0x33, 0x4f, 0x36, 0xaf, 0x51, 0x95, 0x74, 0xd6, 0xdb, 0x45, +0x6f, 0xfa, 0x94, 0xcc, 0x92, 0x25, 0x06, 0x3b, 0xb9, 0xb1, 0x42, 0x79, 0x87, 0xf3, 0x0d, 0xb2, +0xc5, 0x0d, 0x8e, 0x25, 0x3a, 0xb9, 0x73, 0x65, 0xa8, 0x5f, 0xc2, 0x44, 0xe5, 0x9e, 0xc6, 0x52, +0x75, 0xdd, 0x02, 0x8b, 0x0e, 0xb3, 0x6e, 0x5b, 0x52, 0x09, 0xf4, 0xe7, 0xeb, 0xb6, 0x76, 0xd8, +0xed, 0x46, 0xf6, 0x51, 0x14, 0xbe, 0xd0, 0xfd, 0x80, 0xa4, 0x9a, 0x0c, 0x2c, 0xa9, 0x43, 0xf8, +0x7d, 0x1e, 0x6d, 0x62, 0x6d, 0x1c, 0xce, 0x50, 0x9d, 0xd5, 0xd4, 0x1c, 0xfd, 0x91, 0x51, 0x60, +0x61, 0x46, 0x13, 0x13, 0x42, 0x7b, 0x0f, 0x9c, 0xd3, 0x9a, 0x61, 0x97, 0x10, 0xcd, 0x7d, 0xe1, +0xdb, 0xb1, 0xb6, 0xfb, 0x7a, 0x51, 0x41, 0xeb, 0xcf, 0xf9, 0x38, 0xac, 0xd8, 0x28, 0x6e, 0x21, +0x1a, 0x88, 0x64, 0xdc, 0x84, 0x78, 0x8e, 0xc4, 0xbb, 0xc7, 0xe2, 0x54, 0x75, 0x5e, 0x07, 0xa2, +0xfd, 0xfd, 0xef, 0x90, 0x91, 0x0b, 0x90, 0x8d, 0x7d, 0x90, 0x90, 0x2a, 0xdc, 0x82, 0x71, 0xef, +0x52, 0xc4, 0xcd, 0x1c, 0x27, 0xf2, 0x75, 0x7a, 0xe1, 0xfc, 0x8e, 0x5e, 0xcc, 0x79, 0x0b, 0x9b, +0xb3, 0xdc, 0xd5, 0x97, 0x4c, 0x00, 0x01, 0xcd, 0x06, 0xf5, 0x0f, 0xd0, 0x04, 0xc3, 0x96, 0x72, +0x7e, 0x98, 0x5e, 0xc9, 0xf5, 0xb1, 0x75, 0xff, 0x85, 0x9e, 0x6c, 0xb6, 0x0b, 0x06, 0x78, 0x2c, +0x15, 0x94, 0x88, 0xf1, 0xa8, 0x7d, 0x04, 0x4d, 0xe5, 0x05, 0x6e, 0xba, 0xbf, 0x6b, 0x96, 0xa6, +0xa8, 0x89, 0x0d, 0xb7, 0x40, 0x01, 0x53, 0xf1, 0xf8, 0x0d, 0xe3, 0xa3, 0x61, 0x22, 0x46, 0x5f, +0x5d, 0x46, 0xad, 0x36, 0x3e, 0x06, 0x50, 0x13, 0xc3, 0x74, 0x4b, 0xfe, 0x7e, 0x17, 0xec, 0xcd, +0x54, 0xf9, 0xc9, 0x39, 0x93, 0x90, 0x28, 0xce, 0x5b, 0xd3, 0x78, 0x64, 0x27, 0x81, 0x9b, 0x5a, +0xb0, 0x02, 0xc8, 0xa6, 0xbd, 0x6a, 0x31, 0x29, 0xcc, 0x99, 0x31, 0x49, 0x2c, 0x34, 0xfe, 0xff, +0x7e, 0x41, 0x9a, 0x0c, 0x38, 0xf5, 0x7c, 0x79, 0xb4, 0x8d, 0x6f, 0x0d, 0x23, 0xe7, 0x54, 0x28, +0xea, 0x0a, 0x63, 0x4c, 0x25, 0x31, 0xe7, 0xf4, 0x6c, 0x4f, 0xe3, 0x2f, 0x70, 0xde, 0x21, 0x20, +0x43, 0x80, 0x84, 0x44, 0x25, 0x53, 0x3e, 0x2a, 0x0d, 0x19, 0x55, 0xa4, 0x21, 0x3f, 0xe8, 0x2e, +0x87, 0xce, 0x70, 0x99, 0x80, 0xd2, 0xef, 0xd3, 0x67, 0xa7, 0x47, 0x28, 0xfd, 0x3e, 0x70, 0xee, +0x67, 0xae, 0x76, 0x94, 0x23, 0x3c, 0xf2, 0xd5, 0x7f, 0x3b, 0x38, 0x5f, 0x2e, 0x53, 0x0b, 0x3d, +0x7f, 0x20, 0xa5, 0xb6, 0x90, 0xc0, 0x3d, 0x07, 0x82, 0xcc, 0xb0, 0x58, 0xb9, 0x03, 0xb5, 0x03, +0x58, 0xfd, 0x10, 0x76, 0xf1, 0x41, 0xc3, 0xb9, 0xda, 0x28, 0xa9, 0x95, 0x57, 0xef, 0xbc, 0xfe, +0xda, 0x90, 0xb3, 0xd2, 0xa0, 0xa1, 0xcd, 0xb2, 0xf0, 0x3e, 0xdd, 0x03, 0x2b, 0xfb, 0xc6, 0x63, +0xa4, 0x53, 0x55, 0x66, 0xab, 0xd8, 0xa2, 0xea, 0xcb, 0x9b, 0x8c, 0xa7, 0x62, 0x31, 0x67, 0x09, +0x60, 0xa7, 0x5a, 0x9e, 0x19, 0x0e, 0xfa, 0x29, 0xa0, 0x4d, 0x10, 0x01, 0x23, 0xa0, 0x42, 0xf4, +0x76, 0x11, 0xb7, 0x22, 0x60, 0x30, 0x97, 0x9c, 0x54, 0x9f, 0x58, 0x14, 0x77, 0x6d, 0x35, 0x59, +0xa4, 0xa8, 0xb2, 0xb3, 0x4a, 0x0a, 0x1b, 0x3b, 0x40, 0xcb, 0x2e, 0x7a, 0xff, 0xc1, 0xe5, 0x9f, +0x2b, 0x0b, 0x9e, 0x1e, 0xe5, 0xf2, 0xc2, 0xe5, 0xd8, 0xa0, 0xda, 0x1e, 0x94, 0x40, 0x4d, 0xee, +0x67, 0x91, 0xeb, 0xac, 0x50, 0x73, 0x18, 0x1d, 0x43, 0x0d, 0xed, 0x73, 0xec, 0x7b, 0x8b, 0x9b, +0xd6, 0x25, 0x22, 0x37, 0x0b, 0x73, 0x72, 0x0a, 0xdc, 0xc5, 0x3b, 0xe6, 0xe5, 0x9d, 0x00, 0x6b, +0xbc, 0x7f, 0xc6, 0xd8, 0x3f, 0x05, 0xc0, 0x3b, 0x40, 0x90, 0xf7, 0x09, 0x44, 0xc5, 0x67, 0xca, +0x52, 0x31, 0x08, 0x5f, 0x15, 0x24, 0x31, 0x1a, 0x8a, 0xd9, 0x8b, 0xbb, 0x41, 0x4a, 0x08, 0x8f, +0x97, 0xa0, 0x91, 0x24, 0xf0, 0x28, 0xb6, 0x13, 0x59, 0x22, 0x94, 0xe9, 0x69, 0xaa, 0x9a, 0x40, +0x75, 0x38, 0xb5, 0xc3, 0xfd, 0x4c, 0x6a, 0x92, 0x90, 0x9e, 0x29, 0x95, 0x28, 0x64, 0x47, 0xa9, +0x9a, 0x56, 0xf4, 0x59, 0xab, 0x57, 0x7e, 0x3b, 0x64, 0x44, 0x5a, 0x02, 0x4a, 0x3f, 0x5e, 0xea, +0x9c, 0x86, 0xac, 0x64, 0x68, 0x3c, 0x26, 0x5e, 0x04, 0x15, 0x3c, 0xdc, 0xff, 0xf1, 0xe9, 0x46, +0xc9, 0x35, 0x00, 0xb3, 0x1d, 0x4f, 0x62, 0xf5, 0xe9, 0x6f, 0x85, 0xdc, 0xa3, 0xa0, 0xc5, 0xaa, +0x61, 0xf2, 0xf3, 0xba, 0xe2, 0x54, 0x28, 0x97, 0xe6, 0x3b, 0x0a, 0xce, 0x32, 0x1a, 0x3e, 0xf1, +0x98, 0x3a, 0xb7, 0xee, 0x3a, 0x3e, 0x5e, 0xbb, 0x71, 0x26, 0x65, 0x67, 0x58, 0x74, 0x7c, 0xeb, +0xb0, 0xbb, 0xca, 0xf0, 0xec, 0x29, 0x22, 0x04, 0x10, 0xe2, 0x9c, 0x5e, 0x12, 0xc1, 0xdd, 0xc4, +0xb1, 0xf4, 0x78, 0x36, 0xa0, 0xd5, 0xe2, 0x6c, 0x34, 0xbd, 0xd0, 0x9c, 0x54, 0x33, 0x05, 0x9c, +0x60, 0xc1, 0x48, 0xfd, 0x57, 0xb5, 0x47, 0x5d, 0x24, 0x07, 0xb0, 0x18, 0x4d, 0x69, 0x3a, 0xad, +0xdf, 0xaa, 0x3a, 0xff, 0xd5, 0xa0, 0xca, 0x7c, 0xf5, 0x3b, 0xbd, 0x2d, 0x8d, 0xdb, 0x41, 0x52, +0x6f, 0x50, 0xeb, 0xeb, 0x71, 0xf5, 0xd9, 0x19, 0xf4, 0x25, 0xcc, 0x2f, 0x44, 0xdf, 0x0f, 0x43, +0xa3, 0x38, 0x28, 0x44, 0xe0, 0x3b, 0x8f, 0x25, 0xd0, 0x38, 0xd1, 0xeb, 0x59, 0x4b, 0x9a, 0xe4, +0xd4, 0x78, 0x03, 0xac, 0x6c, 0x1b, 0x18, 0x49, 0xff, 0xb9, 0x47, 0x45, 0x4a, 0xef, 0xc8, 0x89, +0x3c, 0xea, 0x98, 0x16, 0xa7, 0xd3, 0x46, 0x9c, 0xa1, 0x50, 0xe4, 0xcb, 0x3d, 0xc4, 0x34, 0x4d, +0x4f, 0x45, 0x9e, 0x83, 0x39, 0xa4, 0x70, 0x28, 0xc4, 0x62, 0xd1, 0x85, 0x44, 0x75, 0x1b, 0x42, +0x32, 0xa1, 0xaf, 0xa2, 0x44, 0xe8, 0x39, 0xa7, 0xc2, 0xcb, 0x04, 0x71, 0x25, 0x31, 0xa5, 0x66, +0x94, 0x6b, 0x16, 0xf7, 0x2d, 0x81, 0x1d, 0x43, 0x3d, 0x40, 0xe6, 0x00, 0x6a, 0x32, 0x3a, 0x03, +0x8f, 0xfe, 0x26, 0x3e, 0xcf, 0xdc, 0xeb, 0x7a, 0x2e, 0x4c, 0x9e, 0x62, 0xb5, 0xdb, 0x23, 0x7e, +0xd7, 0xfe, 0x47, 0x93, 0xe2, 0x3a, 0x68, 0x80, 0xc1, 0x5d, 0x78, 0x91, 0xdf, 0xee, 0xb0, 0x60, +0xad, 0x27, 0xaf, 0x5b, 0x3f, 0xb7, 0x4e, 0xcc, 0x9a, 0x93, 0xa2, 0xa4, 0x16, 0xb7, 0xc1, 0x47, +0x60, 0x4e, 0xed, 0x50, 0x04, 0xf8, 0x40, 0xed, 0xa0, 0xfc, 0xb6, 0x03, 0xa5, 0xb2, 0x67, 0x41, +0x2a, 0x9e, 0xbd, 0xaf, 0xb6, 0x82, 0x74, 0x7d, 0x4f, 0x53, 0xff, 0x28, 0x40, 0x8f, 0x7b, 0xa8, +0x47, 0xc4, 0x22, 0x64, 0xea, 0x1b, 0xf4, 0x76, 0x27, 0x75, 0x40, 0x30, 0x1b, 0xe5, 0xa5, 0xc5, +0x89, 0x4e, 0x10, 0xf5, 0x1a, 0xc0, 0x0a, 0x74, 0x9b, 0x1c, 0xc7, 0x17, 0xb3, 0x44, 0xbd, 0x2c, +0x62, 0xd8, 0xfa, 0xe0, 0xf2, 0xd8, 0x62, 0xe8, 0x26, 0xc0, 0x08, 0xb4, 0x38, 0xdd, 0xca, 0x35, +0xd4, 0x83, 0xc7, 0xea, 0xed, 0x37, 0xfe, 0xfa, 0x7b, 0x2a, 0x3e, 0xfb, 0xef, 0xff, 0xc9, 0x23, +0xca, 0x8b, 0x28, 0xa0, 0x72, 0xe3, 0x25, 0xbd, 0x34, 0xf2, 0x39, 0x2c, 0x32, 0xe5, 0xdc, 0x94, +0xba, 0x6f, 0x36, 0x2b, 0xb9, 0x2c, 0x57, 0x2a, 0x6e, 0x56, 0x34, 0xcb, 0x62, 0x4e, 0x06, 0x6f, +0x96, 0xc4, 0x25, 0xe1, 0xb4, 0x32, 0x5b, 0x8d, 0x0e, 0xac, 0xfd, 0x28, 0xa0, 0x25, 0x36, 0x1a, +0xe0, 0x39, 0x9c, 0xbb, 0x4d, 0x43, 0x1e, 0x19, 0x2b, 0xc0, 0xc2, 0xf0, 0x19, 0xee, 0x27, 0x5e, +0x43, 0x40, 0x43, 0x6b, 0x3c, 0x22, 0xa7, 0xd2, 0xc5, 0x80, 0xed, 0xcd, 0xd9, 0xf5, 0xab, 0xc5, +0xf8, 0x1e, 0xdf, 0xd5, 0x60, 0x3a, 0x4c, 0xf9, 0x6c, 0xeb, 0x20, 0x09, 0xb6, 0xee, 0xb0, 0x9f, +0x9b, 0x10, 0xe0, 0x0a, 0x60, 0xe7, 0xdb, 0xd7, 0xd3, 0x8b, 0xc8, 0x2c, 0x25, 0xbe, 0x61, 0x20, +0x33, 0xe6, 0xeb, 0xef, 0x61, 0x23, 0x39, 0xad, 0x2c, 0x52, 0xac, 0x7b, 0x9e, 0xe9, 0x42, 0x5b, +0x1c, 0x7a, 0x91, 0x0a, 0x5a, 0x45, 0x5c, 0xa2, 0x63, 0xe4, 0xc6, 0xb5, 0x27, 0xf0, 0x18, 0x55, +0xb3, 0xec, 0x2d, 0xef, 0x43, 0x78, 0x0d, 0xaa, 0x14, 0x27, 0x8c, 0x2d, 0x4f, 0x16, 0x0d, 0x88, +0x68, 0x1f, 0x3e, 0x9a, 0x5b, 0x64, 0x50, 0x97, 0x31, 0x9d, 0x95, 0x42, 0xc5, 0xbe, 0xe8, 0x97, +0xba, 0xe1, 0xa9, 0x5c, 0x5d, 0xab, 0x0e, 0xe7, 0x08, 0x89, 0x76, 0xc9, 0x22, 0x78, 0x29, 0x9d, +0xa7, 0xf6, 0x70, 0x24, 0xf4, 0x2a, 0x4f, 0x1e, 0xc0, 0xce, 0x36, 0x6e, 0x1c, 0x21, 0x95, 0xf2, +0x88, 0x3b, 0x77, 0xfc, 0x24, 0xac, 0xdd, 0x25, 0xa3, 0x40, 0x11, 0xa7, 0x3b, 0xc7, 0x3a, 0x53, +0x72, 0x2e, 0xe4, 0x87, 0x13, 0x3b, 0x68, 0x89, 0xbc, 0xa6, 0x35, 0xf5, 0xca, 0xb7, 0x2a, 0x16, +0x63, 0xd3, 0x31, 0xcd, 0xd8, 0x3e, 0x2d, 0x0c, 0x68, 0x65, 0x8f, 0x8a, 0x2a, 0x8d, 0x26, 0x73, +0xda, 0x47, 0x98, 0x1f, 0x15, 0x70, 0x43, 0xa7, 0xe7, 0x61, 0x89, 0x2a, 0xba, 0x29, 0xa7, 0x00, +0x06, 0xa3, 0x6f, 0x63, 0x4f, 0x6d, 0x1d, 0xcc, 0xe2, 0x57, 0x9e, 0x43, 0xd0, 0xf8, 0x48, 0x7c, +0xc7, 0xec, 0x33, 0xe5, 0x35, 0xd1, 0x99, 0x47, 0x97, 0xee, 0x08, 0xef, 0x7e, 0x02, 0xd0, 0x09, +0x78, 0x55, 0x67, 0x1e, 0x68, 0xcd, 0x62, 0xa0, 0x95, 0xd6, 0xb6, 0xf8, 0xea, 0x87, 0x53, 0x0a, +0x2f, 0x5a, 0xb6, 0x8b, 0x5c, 0x2c, 0xb6, 0x46, 0xa5, 0x27, 0x2c, 0x0c, 0xba, 0x0b, 0x7c, 0x61, +0xd3, 0x67, 0xf6, 0x2a, 0x3a, 0x69, 0x53, 0x84, 0x1b, 0xb9, 0xef, 0x46, 0xe5, 0x7f, 0x4b, 0x23, +0x68, 0x84, 0xfb, 0x5a, 0x9d, 0x83, 0xf6, 0x7a, 0x07, 0x17, 0xcd, 0x6b, 0xb2, 0x97, 0x4f, 0xe0, +0x0a, 0x6d, 0x6a, 0x75, 0xb1, 0x44, 0xc7, 0xf1, 0x74, 0x44, 0x33, 0xa3, 0xad, 0xa5, 0x60, 0xb1, +0x73, 0xeb, 0xe8, 0x9f, 0x8e, 0x38, 0xc4, 0x83, 0x47, 0x4a, 0x64, 0x79, 0x49, 0x8d, 0x7e, 0x6b, +0x70, 0xdc, 0xe1, 0xd8, 0x8e, 0xf3, 0x04, 0x46, 0x4b, 0x10, 0x1c, 0x58, 0xd3, 0x76, 0x5d, 0x4f, +0x83, 0x1f, 0x0e, 0x21, 0x00, 0x84, 0x81, 0x7c, 0x8b, 0x2c, 0xef, 0x93, 0xe7, 0x4b, 0xd3, 0xcd, +0x72, 0xdf, 0x64, 0x34, 0xa1, 0xd9, 0xc2, 0xe6, 0x9b, 0x71, 0x0e, 0x2f, 0xcb, 0x2f, 0x13, 0xa1, +0x58, 0xb4, 0xa7, 0x7a, 0x60, 0x08, 0x88, 0x37, 0x40, 0x5d, 0xe1, 0x36, 0xa1, 0xbc, 0x88, 0x61, +0x78, 0x88, 0xbb, 0x6b, 0xc5, 0x95, 0x9b, 0x51, 0x12, 0x48, 0x47, 0x65, 0x2e, 0x95, 0xbc, 0xbf, +0x53, 0x77, 0x54, 0x41, 0xfe, 0xce, 0xae, 0x72, 0xa7, 0x3e, 0x47, 0xb2, 0xcf, 0x0d, 0xb5, 0xce, +0x99, 0x39, 0x6b, 0xa7, 0xb0, 0x9c, 0x1e, 0xb8, 0xad, 0x9b, 0x46, 0x74, 0xfd, 0xb4, 0xa5, 0xb2, +0x19, 0x88, 0x8f, 0xc6, 0xb6, 0x5c, 0xac, 0x7a, 0xeb, 0x5a, 0xd1, 0xd1, 0x1d, 0x1e, 0x6d, 0xe5, +0x81, 0x9d, 0x28, 0xdf, 0x5d, 0x69, 0x68, 0x08, 0x01, 0x93, 0x47, 0x3b, 0x69, 0xcc, 0x9e, 0xcd, +0xc1, 0xea, 0x4d, 0xef, 0x03, 0xf1, 0x58, 0x1e, 0x20, 0xc2, 0x9f, 0x4f, 0x61, 0x35, 0xa2, 0xee, +0x38, 0x66, 0x0f, 0xb0, 0x48, 0xb5, 0x89, 0xac, 0x44, 0xd6, 0xd6, 0x34, 0x4d, 0x89, 0x24, 0xd2, +0x85, 0x38, 0xf2, 0x03, 0x54, 0x66, 0x16, 0xbd, 0x03, 0x74, 0x50, 0xf7, 0x3f, 0x1d, 0x50, 0x0e, +0x0b, 0x20, 0xd8, 0x96, 0xb4, 0x31, 0x87, 0x67, 0xba, 0x6b, 0x98, 0xb3, 0x12, 0x6b, 0x0b, 0x20, +0x84, 0xc5, 0x73, 0x38, 0x4a, 0x24, 0x6e, 0x46, 0x4e, 0xfd, 0xae, 0x41, 0xbb, 0xc0, 0x99, 0x9c, +0x41, 0xd7, 0xdd, 0x53, 0x57, 0x6c, 0x26, 0x63, 0xd5, 0x76, 0x8d, 0xb5, 0x12, 0x0f, 0x2f, 0xdf, +0x73, 0xbd, 0x06, 0x03, 0xae, 0xc1, 0x6f, 0x64, 0x69, 0x44, 0x2a, 0x53, 0x19, 0x7a, 0x1c, 0x52, +0x36, 0x7f, 0x90, 0xa1, 0x6d, 0x07, 0xda, 0xc3, 0x17, 0x9e, 0x53, 0x6d, 0xcc, 0xf1, 0x2a, 0xee, +0x4b, 0xb7, 0x97, 0xc0, 0x5a, 0x60, 0xe0, 0xac, 0xd1, 0x56, 0xad, 0xa3, 0x0b, 0xbd, 0x7f, 0x7e, +0x6d, 0xb4, 0x31, 0x10, 0xaa, 0xa8, 0x5b, 0x85, 0x98, 0xbb, 0x0a, 0x05, 0x68, 0xee, 0x33, 0xab, +0xe3, 0xd7, 0x72, 0x0f, 0x6d, 0x80, 0xcc, 0x20, 0x86, 0x68, 0x9d, 0xe7, 0x5c, 0x9e, 0x69, 0x8d, +0x71, 0x26, 0x88, 0xf3, 0x90, 0x13, 0x6c, 0x75, 0x78, 0x8e, 0xcd, 0xf1, 0xe3, 0xfd, 0xa8, 0xc9, +0x92, 0x70, 0xd3, 0x09, 0x74, 0x02, 0xe4, 0x19, 0x0b, 0x8c, 0x9e, 0x81, 0x71, 0xef, 0xd4, 0x23, +0x0d, 0x9d, 0x06, 0xe0, 0xeb, 0xa4, 0x06, 0xff, 0xf6, 0x7f, 0x47, 0x6e, 0x41, 0xf7, 0x08, 0x65, +0x26, 0x7d, 0xe3, 0x65, 0x23, 0xb3, 0x33, 0x0e, 0xf9, 0x92, 0x24, 0xd9, 0x0d, 0x6f, 0x60, 0xb7, +0xf0, 0x4b, 0x6d, 0x46, 0x40, 0xa6, 0x71, 0xba, 0xe8, 0x67, 0x2a, 0x37, 0x45, 0x5e, 0x82, 0xf3, +0x97, 0xc0, 0x5e, 0x09, 0x2e, 0xdb, 0xc1, 0xe2, 0xa4, 0x78, 0x46, 0x97, 0x3e, 0x12, 0xb9, 0xef, +0x9d, 0x20, 0xb6, 0x4e, 0xc5, 0x90, 0x9b, 0x84, 0xd7, 0xf4, 0xca, 0x5f, 0x42, 0x99, 0xc5, 0xac, +0xc9, 0x51, 0xfd, 0x51, 0xc7, 0x67, 0x2f, 0xea, 0x88, 0x01, 0x85, 0x0f, 0xf1, 0x97, 0x8a, 0x8f, +0x49, 0xd0, 0x86, 0xb5, 0x8e, 0x51, 0xb0, 0x77, 0x5a, 0x8f, 0xb5, 0x26, 0x64, 0xb1, 0x67, 0xfc, +0x7d, 0x90, 0xe6, 0x97, 0x41, 0xb0, 0x3c, 0x16, 0x99, 0xdc, 0xff, 0xd6, 0x1b, 0xba, 0x0a, 0x4c, +0xa1, 0xa9, 0x09, 0x0f, 0x78, 0x24, 0xc1, 0x47, 0xd8, 0x0a, 0x6b, 0xd3, 0x63, 0xcb, 0xc3, 0xf8, +0x64, 0xed, 0x14, 0x96, 0x7a, 0xdb, 0xcb, 0xce, 0x46, 0xbb, 0x21, 0xa6, 0xe0, 0x39, 0xca, 0xf2, +0xac, 0x45, 0x19, 0x04, 0x4f, 0xd9, 0xbb, 0x60, 0x5f, 0x93, 0xb8, 0xe0, 0x5f, 0xef, 0x58, 0xed, +0xbc, 0xd1, 0xe0, 0x3f, 0xac, 0xa2, 0x7e, 0x4f, 0xab, 0xb3, 0x3c, 0x5c, 0x5f, 0x5e, 0x85, 0x64, +0xfa, 0xe4, 0xa1, 0x54, 0x64, 0x3f, 0xd6, 0x41, 0xd7, 0x5a, 0xc2, 0x62, 0xe6, 0xd7, 0x43, 0xaf, +0x40, 0xa7, 0x20, 0x46, 0xb9, 0xb4, 0xd9, 0xe4, 0xab, 0x34, 0x95, 0xb9, 0x0d, 0x0a, 0xcb, 0xa4, +0xc4, 0xfa, 0xcb, 0x89, 0x00, 0x04, 0xbd, 0xba, 0x41, 0x61, 0xb3, 0x43, 0x3d, 0x25, 0xde, 0x60, +0x81, 0xe3, 0xd9, 0x6b, 0x99, 0x48, 0xb7, 0x8e, 0xdf, 0x8f, 0xba, 0xf6, 0x55, 0x3b, 0x9c, 0x59, +0xaf, 0x56, 0xd7, 0x83, 0xc0, 0xad, 0xde, 0x1f, 0x9b, 0xf2, 0x28, 0x3b, 0x12, 0x22, 0xfe, 0xda, +0x2f, 0x62, 0xc1, 0x47, 0x22, 0x84, 0x94, 0x00, 0x32, 0xfe, 0x7c, 0xe4, 0x96, 0x88, 0x40, 0x4a, +0xf0, 0x29, 0xd9, 0xca, 0x1e, 0x05, 0x19, 0xa7, 0x8b, 0xe9, 0xd8, 0x8a, 0xdf, 0x4b, 0x0d, 0x53, +0x9b, 0xfa, 0xba, 0xf4, 0x06, 0x7a, 0x8c, 0x70, 0xe3, 0xf3, 0xb4, 0x46, 0x9c, 0x68, 0xba, 0xd5, +0x0e, 0xd3, 0xd4, 0x9d, 0xaa, 0x25, 0xcd, 0xbd, 0xeb, 0xff, 0x27, 0x1d, 0xbe, 0x4d, 0xed, 0x30, +0x28, 0x74, 0x46, 0x28, 0x6d, 0x40, 0xd1, 0xb0, 0x22, 0x22, 0x8b, 0x8e, 0xce, 0xc4, 0x61, 0x00, +0x9c, 0x0b, 0x0b, 0x85, 0xe3, 0x72, 0x41, 0x35, 0x46, 0x2f, 0x44, 0xa8, 0x26, 0x13, 0x4c, 0x22, +0xdf, 0xb9, 0xa5, 0x23, 0x1f, 0x11, 0x44, 0x21, 0xf9, 0x99, 0xe6, 0x70, 0x8b, 0x72, 0x26, 0xf1, +0xa3, 0xee, 0x74, 0xc9, 0x92, 0x35, 0xae, 0x54, 0xde, 0x6c, 0x7c, 0x22, 0x8f, 0x3a, 0xca, 0x5c, +0xe0, 0x10, 0x37, 0xf8, 0xbf, 0xb1, 0x0b, 0xfc, 0x3d, 0x4f, 0xe4, 0x24, 0xf0, 0x89, 0x0d, 0xad, +0xeb, 0xb0, 0x11, 0x77, 0xe8, 0xef, 0xf3, 0x85, 0x2c, 0xa7, 0x68, 0x81, 0x85, 0xab, 0xf3, 0xc1, +0x53, 0x4a, 0x15, 0x99, 0x06, 0x50, 0xcb, 0x35, 0x5f, 0xca, 0xd2, 0x40, 0xd5, 0x36, 0x4f, 0x6a, +0x6b, 0xdf, 0xa0, 0x2e, 0xe8, 0x8e, 0xdc, 0xe9, 0x18, 0x63, 0x26, 0xfe, 0x41, 0x94, 0x87, 0x1a, +0xea, 0x4a, 0x6e, 0x74, 0xd1, 0x65, 0x30, 0xe1, 0xf0, 0xac, 0x24, 0x3d, 0xe5, 0xe3, 0x5c, 0xfd, +0xcd, 0x66, 0xd8, 0x74, 0x28, 0xbc, 0x9b, 0xca, 0xda, 0x17, 0x58, 0xe7, 0xc1, 0x76, 0xba, 0x17, +0x66, 0xb8, 0xdd, 0x0a, 0xa7, 0x9f, 0x00, 0xbb, 0xf1, 0x15, 0xbe, 0x8f, 0x02, 0x64, 0x5e, 0xe4, +0xb5, 0x8b, 0x18, 0x01, 0xac, 0x61, 0xb3, 0x98, 0xde, 0x25, 0x51, 0x96, 0x85, 0x62, 0xab, 0x8a, +0xa0, 0x4b, 0x65, 0x0b, 0xb7, 0x68, 0xaa, 0x49, 0xf6, 0x3d, 0x72, 0x35, 0x11, 0x8f, 0xda, 0xac, +0x86, 0x06, 0x31, 0x65, 0x76, 0x69, 0x66, 0x65, 0x5a, 0x93, 0x28, 0x93, 0x3f, 0x0c, 0x56, 0x7b, +0x1a, 0x12, 0x12, 0xa3, 0xc7, 0x20, 0x7d, 0xbe, 0x89, 0x4e, 0x52, 0xab, 0x88, 0x57, 0x96, 0x67, +0x5d, 0x55, 0xe3, 0x13, 0xd1, 0x90, 0x91, 0xbc, 0x62, 0x51, 0xf1, 0x48, 0x23, 0xce, 0xbd, 0xdc, +0xb8, 0xe4, 0x12, 0xed, 0x19, 0x63, 0x45, 0xdd, 0x62, 0x13, 0x3f, 0xfc, 0xb5, 0x0f, 0x60, 0x1f, +0xf0, 0xe0, 0xc4, 0x10, 0x21, 0xe4, 0x0d, 0x86, 0xad, 0x66, 0x31, 0x9d, 0x11, 0xf1, 0xef, 0x53, +0x6e, 0xa9, 0x81, 0x1c, 0xbe, 0xf7, 0x74, 0x3a, 0xa4, 0x3e, 0x9c, 0x14, 0x87, 0xe3, 0xba, 0xf9, +0xba, 0x05, 0x2d, 0xa8, 0x84, 0x48, 0x1a, 0x93, 0x5a, 0xbd, 0x07, 0x18, 0x10, 0xa4, 0x9b, 0x67, +0x24, 0x85, 0xb4, 0xde, 0x37, 0xe3, 0x65, 0xb8, 0xdd, 0x5d, 0xf2, 0x14, 0x38, 0xd9, 0xe5, 0x35, +0xa3, 0x4e, 0x35, 0x4f, 0x1c, 0x7a, 0xb4, 0xc0, 0xcc, 0xd8, 0x50, 0x27, 0x6d, 0x52, 0x31, 0x1c, +0x75, 0x1f, 0xa0, 0x48, 0xef, 0x9e, 0x42, 0xe8, 0xb7, 0xcd, 0x17, 0x8b, 0x1a, 0xb1, 0xf0, 0xc6, +0x30, 0x87, 0x6a, 0xc9, 0x6a, 0x7f, 0x06, 0x87, 0x67, 0xc9, 0x17, 0x32, 0xb5, 0xd8, 0x88, 0x00, +0x2a, 0x59, 0xd2, 0x11, 0x12, 0x03, 0xcb, 0x1b, 0xa7, 0x62, 0xb2, 0xa3, 0xab, 0x71, 0x24, 0xd8, +0xa5, 0x3a, 0x0f, 0x71, 0xfd, 0x8d, 0x10, 0xe3, 0xca, 0x09, 0xc5, 0x83, 0x2f, 0x63, 0xf0, 0xc1, +0xe9, 0x9f, 0x9c, 0x3b, 0xd2, 0x49, 0x96, 0x76, 0x4e, 0xac, 0x6b, 0x0c, 0x56, 0x74, 0xa4, 0x9f, +0xd9, 0xb3, 0xe8, 0xae, 0xe1, 0x65, 0xde, 0x08, 0x17, 0xba, 0x4e, 0x96, 0x1e, 0x14, 0xd0, 0xdf, +0x59, 0xe7, 0x4a, 0xb7, 0x7d, 0xf6, 0xc9, 0xac, 0x5a, 0x85, 0x9e, 0x82, 0x58, 0x2a, 0x26, 0x6e, +0x19, 0xf5, 0xf4, 0xf2, 0x43, 0x03, 0x07, 0x48, 0xdd, 0x35, 0xae, 0xee, 0xee, 0xec, 0xb6, 0x0c, +0xc4, 0xab, 0xa7, 0x6a, 0xea, 0x6a, 0x79, 0x32, 0xf1, 0x30, 0xc6, 0x8c, 0x26, 0x05, 0xef, 0xe5, +0x8a, 0x52, 0x23, 0xe0, 0xf2, 0x91, 0xe8, 0xd8, 0x8d, 0xf8, 0xca, 0x09, 0xdf, 0x1c, 0xb9, 0xbe, +0xf3, 0x9a, 0xbf, 0x81, 0xcc, 0x0c, 0x4c, 0x8c, 0x01, 0x33, 0xd2, 0x43, 0x04, 0x35, 0x66, 0x1f, +0x78, 0xef, 0xde, 0x0b, 0x51, 0xf4, 0x20, 0x8d, 0x7d, 0xcf, 0xfe, 0xe4, 0x27, 0x02, 0xd5, 0xc3, +0x1e, 0x1f, 0xff, 0xe3, 0xb2, 0xd9, 0x53, 0x53, 0x81, 0xbb, 0xa9, 0xb3, 0xdb, 0x4e, 0x5a, 0xa3, +0x30, 0x4d, 0x60, 0xc5, 0xe2, 0x5b, 0xd7, 0x49, 0xef, 0x25, 0xcf, 0x9a, 0x20, 0x74, 0x3e, 0xe4, +0x74, 0x25, 0x73, 0xd6, 0x65, 0x1d, 0x7e, 0x84, 0xc9, 0x1e, 0x63, 0xa4, 0x65, 0x60, 0x33, 0xef, +0xea, 0x7a, 0xe6, 0x87, 0x87, 0xc7, 0xec, 0x0c, 0x62, 0xef, 0x44, 0x59, 0x1d, 0xbe, 0xed, 0x58, +0x8c, 0xae, 0x2e, 0x97, 0x90, 0xab, 0xcd, 0x93, 0xfe, 0x20, 0x3f, 0x0f, 0x53, 0x97, 0x41, 0xed, +0x7d, 0x61, 0x04, 0xc6, 0x95, 0xea, 0x58, 0xd3, 0x4f, 0x22, 0x82, 0xed, 0xd9, 0xbd, 0x12, 0x09, +0xdb, 0x45, 0x2d, 0xe8, 0xba, 0x51, 0xd1, 0x26, 0x2c, 0x63, 0xb8, 0xfc, 0xcc, 0x99, 0xf7, 0x16, +0x80, 0xc1, 0xac, 0x45, 0xab, 0xd4, 0xd8, 0x87, 0x6f, 0x68, 0x76, 0x51, 0xcc, 0x98, 0x5d, 0x74, +0x53, 0x51, 0x17, 0x08, 0xc5, 0x3f, 0x7f, 0x2b, 0xd5, 0xe6, 0xb3, 0x70, 0xce, 0xd0, 0xdc, 0x51, +0xac, 0x99, 0xfb, 0x17, 0x3d, 0xe2, 0x93, 0xef, 0x55, 0x0d, 0xca, 0x94, 0xcf, 0x8e, 0x9a, 0x50, +0x90, 0xdd, 0x74, 0x05, 0x69, 0x40, 0x61, 0xc6, 0xf5, 0x8e, 0xfa, 0x32, 0x5d, 0xa6, 0x69, 0x8f, +0x06, 0x23, 0x44, 0x50, 0xde, 0xcf, 0xb6, 0xbd, 0x47, 0x46, 0xbd, 0xe3, 0xde, 0xa8, 0xe7, 0x54, +0x79, 0x01, 0xa1, 0x7d, 0x98, 0x72, 0x93, 0x58, 0x0f, 0x39, 0xd4, 0xc2, 0x46, 0x2b, 0x0a, 0x34, +0x02, 0xa1, 0x49, 0x7f, 0x5b, 0x2f, 0xb6, 0x59, 0xae, 0xcf, 0x85, 0xd3, 0xe7, 0x9f, 0x7f, 0x0f, +0xe0, 0x6e, 0x90, 0x3f, 0x1e, 0x18, 0x5b, 0xb1, 0x6f, 0x7a, 0x1b, 0x00, 0x93, 0xb5, 0x80, 0xb3, +0x23, 0xc8, 0xe4, 0xc8, 0xa9, 0x79, 0x5d, 0x4b, 0xf5, 0x45, 0x25, 0x2b, 0x25, 0xf8, 0xa0, 0x7d, +0xfc, 0x77, 0x50, 0xf1, 0x26, 0xb8, 0x5c, 0x27, 0x8b, 0xf9, 0xe5, 0x98, 0x37, 0xdb, 0x2d, 0x82, +0x5c, 0x43, 0xba, 0x81, 0x07, 0x1f, 0x97, 0xef, 0x86, 0x06, 0xe9, 0x6b, 0x70, 0x02, 0x50, 0x7e, +0x2e, 0xc9, 0xa2, 0xea, 0xc4, 0x95, 0x6b, 0x74, 0x24, 0x0b, 0x86, 0xd2, 0xbc, 0x38, 0x1a, 0x7e, +0x80, 0x89, 0x28, 0x2c, 0x46, 0x31, 0x14, 0x31, 0xd8, 0xdf, 0x34, 0xac, 0x97, 0xe0, 0x1c, 0x77, +0x16, 0x92, 0x9d, 0x9c, 0x97, 0x30, 0x52, 0x14, 0xc5, 0x5f, 0xa8, 0xcc, 0x52, 0x3e, 0x26, 0xd3, +0xba, 0x2b, 0xb1, 0x7f, 0x2a, 0xed, 0xa3, 0xa5, 0x69, 0x68, 0x00, 0x1c, 0x4b, 0xa9, 0xfc, 0x3e, +0x3c, 0x09, 0xc7, 0xb6, 0x0c, 0x6a, 0x84, 0xba, 0xfd, 0x64, 0x7c, 0x52, 0x46, 0x49, 0x9e, 0xd6, +0xd8, 0x3a, 0xd6, 0xf7, 0x6c, 0x92, 0xf7, 0x36, 0x4d, 0x66, 0x0e, 0xc0, 0xce, 0xf9, 0x46, 0x35, +0x6b, 0x86, 0x29, 0xda, 0x51, 0x41, 0x98, 0x1b, 0xbd, 0x51, 0x9b, 0xe7, 0x73, 0x44, 0xc1, 0xa6, +0xac, 0xb2, 0x51, 0xd4, 0x3f, 0x22, 0xaf, 0x3e, 0x16, 0x74, 0xbc, 0x42, 0x20, 0x6b, 0xae, 0xd5, +0x0a, 0x4e, 0x49, 0xcb, 0x7b, 0x21, 0x87, 0x6f, 0x6e, 0x08, 0x4a, 0x44, 0xb8, 0x74, 0xae, 0x31, +0xae, 0x36, 0x9b, 0x9f, 0x7d, 0x32, 0x30, 0xc1, 0x7b, 0x6c, 0xb5, 0x83, 0xca, 0xab, 0x36, 0x7b, +0xb4, 0xf0, 0xce, 0x4e, 0xef, 0x10, 0x24, 0x83, 0xf5, 0xe3, 0x59, 0x5b, 0x65, 0x8b, 0xd4, 0x1d, +0x2d, 0xe5, 0x5f, 0x1a, 0xa8, 0x77, 0xbb, 0x42, 0xab, 0x72, 0x39, 0xd1, 0x3e, 0x66, 0x48, 0x34, +0x3c, 0x94, 0xd5, 0xa1, 0x26, 0x06, 0xa6, 0x5d, 0x23, 0xd4, 0xb4, 0x29, 0x7c, 0x6d, 0x9b, 0xee, +0x39, 0x70, 0x80, 0xa3, 0xb1, 0x16, 0x2e, 0x2a, 0x28, 0x28, 0x1d, 0x9b, 0x78, 0x89, 0x99, 0xf1, +0x1e, 0x3d, 0xe5, 0xc3, 0x0b, 0xf7, 0x98, 0x37, 0x02, 0x64, 0xd5, 0x8f, 0x4e, 0xdf, 0x92, 0x92, +0x2d, 0x93, 0x85, 0xd0, 0x3d, 0xde, 0xc3, 0x12, 0xa5, 0x05, 0x0b, 0xfa, 0xc0, 0x1f, 0x12, 0x74, +0xb7, 0xaf, 0xa5, 0x67, 0x43, 0x86, 0x89, 0xaa, 0x55, 0xd5, 0x63, 0xf4, 0x70, 0x9d, 0xe1, 0x37, +0xec, 0x5d, 0x8f, 0x26, 0xe4, 0xb2, 0xc2, 0x58, 0xa3, 0x12, 0x5b, 0xd9, 0x54, 0x44, 0x7b, 0x85, +0x3e, 0xff, 0xc8, 0x17, 0x55, 0x0c, 0x8e, 0x30, 0x3a, 0x8f, 0xb6, 0x78, 0x62, 0x11, 0x7c, 0x7a, +0x98, 0x5a, 0x3f, 0x82, 0x12, 0x2e, 0xb2, 0xab, 0xa6, 0xc1, 0x43, 0xd6, 0xd0, 0xb2, 0xe5, 0x28, +0x5a, 0x40, 0xb2, 0x2d, 0xd7, 0xc9, 0xaa, 0x7f, 0x8d, 0xcd, 0x20, 0xb6, 0x63, 0xa1, 0xd9, 0xfa, +0xc2, 0x9d, 0x03, 0xa2, 0x30, 0x92, 0xe7, 0x6a, 0x2d, 0xec, 0xb9, 0xd7, 0xbd, 0xa7, 0x5f, 0xcd, +0x89, 0xef, 0x5b, 0xdc, 0x4c, 0x9c, 0x05, 0x60, 0x41, 0xfc, 0xfb, 0xec, 0x35, 0xed, 0x50, 0x80, +0x53, 0x8d, 0x32, 0x97, 0xf3, 0x4d, 0x97, 0x36, 0xca, 0x8a, 0x4e, 0x4b, 0xd8, 0x18, 0xe0, 0xee, +0xa6, 0x16, 0xff, 0x2e, 0x5f, 0x4a, 0x48, 0xb2, 0x82, 0x01, 0xf7, 0xc1, 0x1b, 0x47, 0x21, 0x3c, +0x9f, 0x71, 0x55, 0xd9, 0xf8, 0x5e, 0x9d, 0x12, 0x30, 0x3d, 0x69, 0x28, 0x6f, 0x25, 0xc8, 0xf5, +0xd3, 0x71, 0x7f, 0x7a, 0x7c, 0xc6, 0x52, 0xcc, 0x03, 0xa1, 0x96, 0x9b, 0xa8, 0x49, 0x62, 0x31, +0xa5, 0xfb, 0x44, 0x58, 0x4f, 0x3b, 0x4e, 0xec, 0xa0, 0x79, 0x05, 0x67, 0xef, 0x8a, 0x4b, 0x8a, +0x2f, 0x40, 0x66, 0xf5, 0xe2, 0x7d, 0x28, 0xee, 0xf5, 0xbc, 0x24, 0x7b, 0x53, 0xb7, 0xe3, 0x77, +0xdf, 0x59, 0xd1, 0x32, 0x17, 0x12, 0x8f, 0x88, 0x87, 0xba, 0xce, 0x0c, 0x2d, 0xa3, 0x5b, 0x2d, +0xa8, 0x55, 0xa9, 0x15, 0xe0, 0x6c, 0x36, 0xb5, 0x7a, 0x8a, 0x9f, 0x05, 0x8d, 0xb7, 0x49, 0x17, +0x15, 0xf9, 0xf2, 0x15, 0xd3, 0x2e, 0x20, 0xdf, 0xf7, 0x38, 0xa8, 0x1d, 0x9e, 0x55, 0xdf, 0xd6, +0x56, 0xe3, 0x3f, 0x5b, 0x06, 0xaa, 0xbb, 0x9c, 0x7b, 0x14, 0xa2, 0x94, 0x91, 0x76, 0x9a, 0x6c, +0x7e, 0xe0, 0x06, 0x1c, 0x36, 0xcb, 0xf1, 0x33, 0x55, 0x16, 0x93, 0x53, 0xe3, 0x48, 0x9a, 0xa5, +0xeb, 0x01, 0x8d, 0xd9, 0x13, 0xf4, 0xf1, 0x49, 0x9f, 0x8c, 0xcc, 0x3b, 0x78, 0x22, 0xb7, 0xa3, +0xc6, 0x62, 0xf8, 0xd2, 0x4d, 0x53, 0xa6, 0x24, 0x53, 0x8c, 0xc4, 0x02, 0x94, 0x4d, 0xbe, 0x96, +0xed, 0xfc, 0x10, 0x29, 0x80, 0xcc, 0xcb, 0x23, 0x38, 0x5e, 0x13, 0x95, 0xf1, 0x06, 0x22, 0x72, +0xe0, 0x50, 0xdd, 0xa0, 0xa8, 0xe6, 0x0d, 0xf1, 0xd9, 0x71, 0xbc, 0xbe, 0x55, 0x14, 0x83, 0xa2, +0x4d, 0x83, 0x6c, 0xb7, 0x08, 0x30, 0x43, 0x08, 0x9f, 0x4b, 0x22, 0x39, 0x8b, 0xc2, 0x25, 0x03, +0xf0, 0xde, 0x05, 0x53, 0x1e, 0x16, 0xdb, 0xa8, 0x3e, 0x63, 0xbf, 0x0c, 0x50, 0xea, 0x97, 0x60, +0x96, 0xd7, 0xec, 0xb9, 0x19, 0xbb, 0x91, 0xd2, 0x17, 0x15, 0x19, 0xdd, 0x69, 0x81, 0xa8, 0xc4, +0x52, 0x29, 0x91, 0x3a, 0x9d, 0x94, 0xb1, 0x8d, 0xd2, 0xc1, 0x97, 0x60, 0x0f, 0x7d, 0x28, 0x9c, +0xd4, 0xce, 0x38, 0x2d, 0x14, 0x95, 0x83, 0xf7, 0x43, 0xc8, 0xb8, 0x11, 0x9d, 0xc8, 0x50, 0xe4, +0xa2, 0xe1, 0x6b, 0xf0, 0x19, 0x56, 0x11, 0x2f, 0x30, 0x6e, 0x3e, 0x97, 0x14, 0x37, 0xff, 0x76, +0x1b, 0x20, 0x93, 0x20, 0x09, 0xc1, 0x47, 0x0f, 0x45, 0x4f, 0xfe, 0x95, 0xbb, 0xe4, 0xf1, 0x5a, +0x9f, 0xf6, 0x33, 0x85, 0xd7, 0x3a, 0xaf, 0x11, 0x59, 0x1d, 0x47, 0x83, 0xa8, 0xf2, 0xcf, 0xb2, +0x33, 0x4f, 0xcd, 0xd8, 0x66, 0x7b, 0xfd, 0x6a, 0x27, 0x4c, 0x8c, 0x91, 0x06, 0xe8, 0x18, 0x09, +0x64, 0xae, 0xdc, 0x7c, 0x35, 0xf6, 0x3a, 0xad, 0xf4, 0x5f, 0x8d, 0x80, 0xce, 0xae, 0xea, 0x51, +0x26, 0xca, 0x8c, 0xce, 0x43, 0x2c, 0xf0, 0xa5, 0xc9, 0x81, 0x6a, 0xf0, 0xe2, 0x14, 0x56, 0xa4, +0xdf, 0x06, 0x89, 0xcd, 0xb4, 0x78, 0xfd, 0xc8, 0xed, 0xe2, 0xfe, 0x43, 0xa7, 0xe9, 0x7e, 0xf5, +0xf9, 0xcb, 0x31, 0x6d, 0xc3, 0x8f, 0xf4, 0xf2, 0xfe, 0x68, 0x19, 0xf3, 0x99, 0x7f, 0x0e, 0x30, +0xe6, 0x59, 0x0a, 0xdb, 0xbd, 0x98, 0x68, 0xea, 0xad, 0xea, 0xff, 0x6d, 0xdb, 0x91, 0x2c, 0x57, +0x3e, 0x0c, 0xaf, 0xd9, 0x49, 0x94, 0x2f, 0x24, 0x0c, 0x0d, 0xe6, 0x95, 0xcb, 0xcd, 0xcc, 0x36, +0x34, 0xbb, 0x8b, 0x2a, 0x3b, 0x02, 0x65, 0xaa, 0x89, 0x9e, 0xb5, 0xbf, 0x15, 0x84, 0xf3, 0x4c, +0xa7, 0x3c, 0x09, 0x51, 0xd7, 0xbf, 0x33, 0x13, 0xc6, 0xa1, 0x8c, 0xfb, 0xb7, 0x58, 0xaa, 0xb4, +0x47, 0x25, 0x8c, 0x86, 0x0a, 0x7f, 0x3b, 0xb7, 0xfe, 0xa8, 0xd7, 0x58, 0x51, 0xb8, 0x31, 0x65, +0x35, 0x44, 0x5d, 0xf6, 0xdf, 0xf3, 0x68, 0x70, 0x51, 0x11, 0x7a, 0x8e, 0x50, 0xb6, 0x55, 0xf4, +0xb5, 0x9c, 0x40, 0xfc, 0x68, 0x8c, 0x87, 0xb9, 0xda, 0x38, 0x6a, 0x43, 0x15, 0xdd, 0x7f, 0x54, +0x9b, 0x0d, 0xd2, 0x22, 0x75, 0x14, 0xc6, 0x51, 0x2e, 0xe2, 0x06, 0xa9, 0x5e, 0xd4, 0xa4, 0x23, +0x2d, 0x39, 0x17, 0xf4, 0x50, 0xf9, 0xc8, 0x88, 0xdc, 0xac, 0x45, 0x9e, 0x2a, 0x16, 0xe1, 0xc0, +0x50, 0xb2, 0xbd, 0x88, 0xe1, 0x04, 0x7b, 0x1c, 0x27, 0xf4, 0x02, 0x47, 0xb5, 0x57, 0x59, 0xda, +0xea, 0xaf, 0x81, 0xc9, 0x5a, 0xb2, 0x3e, 0xd9, 0x14, 0xb7, 0x55, 0x67, 0x61, 0xb4, 0xcc, 0x98, +0x4c, 0x66, 0x67, 0x66, 0xea, 0xaf, 0x7a, 0x1e, 0xb0, 0xc9, 0x64, 0xbc, 0x04, 0xb5, 0x8c, 0x6a, +0x2b, 0x6f, 0xf2, 0xe6, 0x90, 0x70, 0xd8, 0xa7, 0x1f, 0x4b, 0x56, 0xe5, 0x9a, 0xbf, 0x4a, 0xc2, +0x80, 0x65, 0x80, 0xdc, 0xb1, 0x36, 0x72, 0x80, 0xcf, 0x6f, 0x5f, 0xee, 0xbb, 0x3d, 0xb6, 0x03, +0x53, 0x4e, 0xaa, 0xad, 0xa0, 0xca, 0x0b, 0x96, 0xbf, 0x7f, 0xf8, 0x98, 0x36, 0xfd, 0xe9, 0xe1, +0xb8, 0x2c, 0xa8, 0x74, 0x83, 0x8c, 0x5f, 0x4a, 0x96, 0x2d, 0xec, 0xd8, 0x6a, 0x9b, 0x70, 0x2d, +0x6e, 0x88, 0x2a, 0xa5, 0x9b, 0x3b, 0x25, 0x43, 0xe6, 0x32, 0x13, 0xde, 0xf8, 0x73, 0x50, 0xda, +0x6b, 0x3f, 0xef, 0x04, 0x7b, 0xda, 0x39, 0x19, 0x16, 0x25, 0x3c, 0xb0, 0x0b, 0xa5, 0x04, 0x2c, +0xe5, 0x1d, 0x96, 0x60, 0xfb, 0xfd, 0xac, 0xe2, 0x08, 0x88, 0x83, 0x75, 0xef, 0x33, 0x44, 0xa8, +0x50, 0xba, 0x19, 0xbe, 0x8e, 0x32, 0x37, 0xc6, 0x19, 0xa3, 0x07, 0x28, 0x08, 0xd6, 0xc7, 0x59, +0xea, 0x67, 0xf1, 0x78, 0x73, 0x31, 0x64, 0xb0, 0x13, 0x31, 0x9a, 0xb3, 0x07, 0xe2, 0x5c, 0x94, +0xb8, 0x86, 0x27, 0xe3, 0x14, 0x3d, 0xf9, 0x6d, 0x7f, 0xad, 0xdc, 0x32, 0x6b, 0xd3, 0x64, 0xed, +0x22, 0xce, 0xa2, 0xee, 0xb5, 0x8c, 0xf5, 0xe9, 0xf5, 0x5f, 0xfe, 0x5a, 0x6d, 0xa8, 0xb7, 0xf1, +0xea, 0x29, 0xf6, 0xfe, 0xc6, 0xdb, 0x23, 0x25, 0xc7, 0x04, 0x24, 0x7f, 0xce, 0x70, 0xf7, 0xea, +0x3a, 0x4b, 0x9a, 0xdb, 0x7d, 0x32, 0xc0, 0x64, 0x81, 0x8a, 0xa3, 0x08, 0x02, 0xb2, 0x69, 0xf4, +0xfc, 0xb2, 0x17, 0x59, 0x2d, 0x2c, 0xde, 0xfa, 0xe8, 0x3d, 0x3c, 0x82, 0xcc, 0x43, 0x81, 0xc9, +0xbb, 0x5e, 0x93, 0xd4, 0x86, 0x02, 0x05, 0xf8, 0x6e, 0x9d, 0x20, 0xd4, 0x86, 0x78, 0xce, 0xa2, +0xce, 0x0a, 0x76, 0x4d, 0x69, 0x4b, 0xde, 0xf5, 0xaf, 0x3e, 0x93, 0x42, 0xde, 0x34, 0x77, 0xab, +0xac, 0xab, 0x4c, 0x5f, 0xf7, 0xf5, 0x68, 0xf6, 0xb2, 0x63, 0xde, 0x40, 0x65, 0xc2, 0x5d, 0x77, +0x20, 0x49, 0x0e, 0x80, 0xdb, 0x29, 0x4a, 0x25, 0x17, 0xa1, 0x6a, 0x6d, 0xad, 0x9e, 0x49, 0x97, +0x0f, 0x2b, 0xb6, 0x69, 0x69, 0x24, 0xc8, 0x54, 0x9c, 0x45, 0x8f, 0x44, 0x3e, 0xca, 0x8f, 0x15, +0xae, 0xcc, 0xa7, 0xf1, 0xb1, 0x8a, 0x2f, 0x24, 0x8e, 0xd6, 0x16, 0x0a, 0x00, 0xf9, 0xf2, 0x0c, +0x30, 0x75, 0x4c, 0x33, 0xb6, 0x5a, 0xd4, 0xc6, 0xb4, 0xd3, 0xc4, 0xe5, 0x53, 0x3d, 0xdd, 0x06, +0xae, 0xec, 0xb8, 0x9c, 0xf5, 0x57, 0x9f, 0x5f, 0xe2, 0x34, 0x1c, 0xea, 0x5f, 0xc2, 0x5c, 0x45, +0xb3, 0xe1, 0xdd, 0xd2, 0x82, 0x1b, 0x1b, 0xb2, 0x49, 0x35, 0xf4, 0xed, 0xd8, 0xdb, 0x45, 0x00, +0xe2, 0x06, 0x1e, 0x10, 0xe8, 0xf5, 0xb9, 0x5a, 0x58, 0x5b, 0x07, 0xd6, 0xce, 0xc1, 0x28, 0x37, +0xf1, 0x76, 0x14, 0x6c, 0x8a, 0x90, 0xfc, 0xf0, 0xd2, 0xd9, 0x24, 0x88, 0x62, 0xd8, 0xe5, 0xbe, +0x89, 0x77, 0xdf, 0x01, 0x2f, 0xb9, 0x7e, 0x32, 0x75, 0xf7, 0x88, 0x14, 0x0c, 0x7c, 0x68, 0x69, +0xf2, 0x61, 0x34, 0xb5, 0xca, 0xd8, 0x2f, 0x44, 0x14, 0x47, 0xa8, 0xec, 0xa3, 0xad, 0x85, 0x86, +0xf1, 0x10, 0xfc, 0x99, 0xfc, 0xbe, 0xae, 0xe0, 0x8a, 0x83, 0x7c, 0xa1, 0x61, 0xcf, 0x85, 0xaf, +0xcd, 0x3c, 0xa4, 0x8f, 0xbb, 0xb2, 0x41, 0xe0, 0xa7, 0x85, 0x2d, 0x4e, 0xf9, 0x11, 0x98, 0x66, +0xa1, 0xd7, 0xf3, 0x69, 0x83, 0x36, 0x8f, 0x91, 0xb1, 0xd1, 0x3a, 0x7f, 0x08, 0xb9, 0xc5, 0xbd, +0x18, 0xaa, 0x6f, 0x65, 0xf6, 0x73, 0xcd, 0xbb, 0xf3, 0xbe, 0x6a, 0x4c, 0xdf, 0xc0, 0x18, 0xb5, +0x8e, 0x37, 0x65, 0x09, 0x8d, 0xfe, 0x4d, 0x09, 0xfd, 0x4b, 0xc9, 0xc1, 0x44, 0x56, 0x8f, 0x02, +0x7d, 0x00, 0x63, 0x48, 0x08, 0x24, 0xe2, 0xd1, 0x46, 0xc8, 0x24, 0xcc, 0x03, 0xa1, 0xa1, 0x93, +0x66, 0x6d, 0x04, 0xe2, 0x3e, 0x4d, 0x5c, 0x31, 0x74, 0x12, 0xd2, 0xce, 0x3c, 0x2e, 0xa4, 0x2f, +0xd1, 0x06, 0x3e, 0x76, 0x66, 0xd7, 0x40, 0xed, 0x74, 0xf5, 0x41, 0x8e, 0xb8, 0xbb, 0x2f, 0x32, +0xd2, 0x13, 0x80, 0x99, 0x74, 0xcd, 0x25, 0x51, 0xa8, 0xdd, 0xd1, 0xfe, 0x22, 0x3b, 0xb2, 0xd7, +0x72, 0x13, 0xf8, 0x4a, 0x52, 0xb0, 0xd8, 0x2b, 0x74, 0x2b, 0xef, 0x92, 0x75, 0x07, 0x25, 0x73, +0xe6, 0x71, 0xcb, 0x1a, 0xad, 0xa0, 0xd2, 0x98, 0x3a, 0x16, 0xb6, 0x35, 0x56, 0x28, 0x3c, 0x5a, +0xb0, 0xc0, 0x3b, 0x73, 0x69, 0x8c, 0xdc, 0xa7, 0xe1, 0x38, 0x5f, 0x59, 0x6c, 0x4f, 0xea, 0x57, +0xea, 0x91, 0xad, 0xf9, 0x86, 0xea, 0xdd, 0x79, 0x7e, 0xf4, 0x24, 0x07, 0x4f, 0x7e, 0x51, 0x60, +0xa3, 0x8d, 0x5b, 0xd9, 0x46, 0xf8, 0x60, 0xe7, 0xfc, 0x52, 0x97, 0x22, 0x09, 0x4d, 0x02, 0x60, +0x15, 0x25, 0x05, 0xfd, 0xfc, 0x09, 0x7b, 0x40, 0x92, 0x88, 0xb8, 0x09, 0x9d, 0x5c, 0x3d, 0x45, +0xf2, 0x65, 0x2d, 0x4f, 0x08, 0xf8, 0x1c, 0x4b, 0x1e, 0xdc, 0x14, 0x32, 0x8f, 0xdb, 0x13, 0x51, +0x76, 0xf4, 0xd6, 0x1c, 0x15, 0xdf, 0x22, 0x25, 0x3e, 0x80, 0x9e, 0xdf, 0x86, 0x40, 0x52, 0x78, +0x37, 0x98, 0x7d, 0x34, 0x53, 0x25, 0x9a, 0x86, 0x60, 0xb3, 0xbc, 0x52, 0xe0, 0xf8, 0x1d, 0x06, +0x3c, 0x67, 0x24, 0xe6, 0x09, 0xd5, 0x9b, 0x67, 0xda, 0x00, 0x99, 0x4f, 0xc9, 0xc8, 0xa7, 0x24, +0xe3, 0x32, 0x0d, 0x26, 0xdc, 0x4c, 0x97, 0x54, 0x18, 0x42, 0x4b, 0xdc, 0xe2, 0x07, 0x1f, 0x9e, +0xeb, 0x65, 0xf5, 0x39, 0xe5, 0x81, 0x9b, 0xc7, 0x2a, 0x4e, 0xc2, 0x6f, 0x9f, 0x8c, 0x4b, 0xd7, +0xb7, 0x43, 0x8e, 0x3c, 0x5e, 0x60, 0x71, 0x89, 0x7d, 0xc3, 0x08, 0x85, 0x94, 0x38, 0x65, 0xc8, +0xd1, 0x35, 0x73, 0x0a, 0xad, 0xdd, 0x50, 0x91, 0x6d, 0xc4, 0xf7, 0x81, 0xc3, 0x7d, 0xbd, 0x1c, +0xaf, 0x2e, 0x4d, 0xd9, 0xbf, 0xda, 0xcc, 0xfe, 0xe6, 0x47, 0x37, 0xa2, 0x9c, 0x8a, 0x0a, 0xce, +0x05, 0x94, 0xa4, 0x8e, 0x11, 0x11, 0xca, 0xac, 0x9d, 0x46, 0x32, 0x3b, 0x62, 0x80, 0xdc, 0x1e, +0x49, 0xb8, 0x91, 0xb2, 0x7b, 0xb6, 0x4e, 0x4e, 0x0b, 0x3b, 0x9a, 0x5e, 0x12, 0x17, 0x47, 0xcb, +0xa5, 0x6b, 0xc1, 0x3c, 0x87, 0xfb, 0xab, 0x8e, 0xe1, 0xd4, 0x4c, 0x99, 0xbc, 0xe4, 0x89, 0x0a, +0x8a, 0x8f, 0xdb, 0x77, 0xd8, 0x34, 0xd6, 0x7d, 0x2e, 0x2a, 0xd0, 0x03, 0xe8, 0xfd, 0x7b, 0x9a, +0xbc, 0xcf, 0x03, 0x9a, 0x0a, 0xe1, 0x5a, 0x09, 0x51, 0x22, 0x87, 0xad, 0xd6, 0xa3, 0xe2, 0x2f, +0x17, 0x52, 0x4c, 0xa3, 0x2c, 0xa1, 0xaa, 0xb2, 0x05, 0x00, 0x8d, 0x65, 0x99, 0xa5, 0x22, 0xef, +0x9f, 0xbe, 0xda, 0x80, 0x04, 0xd8, 0xa3, 0x58, 0x8b, 0x7b, 0xff, 0xbd, 0x32, 0x85, 0xc8, 0x59, +0x9a, 0x79, 0xc4, 0xdd, 0x7c, 0xe3, 0xab, 0x15, 0xe3, 0xb4, 0x51, 0xd9, 0xab, 0x82, 0x3e, 0xaa, +0x7a, 0xc7, 0x4b, 0x63, 0xc8, 0xc7, 0x29, 0x13, 0xa8, 0xd0, 0x3a, 0x24, 0x5a, 0x94, 0x37, 0xc0, +0x2c, 0xae, 0x5d, 0x1d, 0x45, 0xf0, 0x7d, 0xef, 0xee, 0x3f, 0xae, 0xa8, 0x16, 0x95, 0xdf, 0x1a, +0x21, 0x38, 0x12, 0xf4, 0x79, 0xd0, 0x8a, 0xc1, 0x5d, 0xfd, 0x78, 0xb8, 0x28, 0xb7, 0xcc, 0x87, +0x96, 0x09, 0x59, 0x54, 0x60, 0xd7, 0xb6, 0xc9, 0x1d, 0x02, 0x09, 0x67, 0xd5, 0xd8, 0x93, 0x1a, +0x53, 0x1a, 0xcd, 0xfd, 0xd2, 0x02, 0x9b, 0x2d, 0x41, 0xba, 0x56, 0x30, 0xb7, 0x6c, 0x66, 0x53, +0xde, 0xbe, 0xa3, 0x4d, 0xbb, 0x2c, 0xd3, 0x70, 0xe5, 0xd7, 0xd4, 0x0b, 0xe1, 0x05, 0xa0, 0xe9, +0x81, 0x04, 0x5c, 0xa8, 0x7e, 0xed, 0x97, 0xcd, 0x62, 0xc7, 0xa4, 0x79, 0x6c, 0xc9, 0xd6, 0x7a, +0xf0, 0xd9, 0x38, 0x98, 0xe9, 0xed, 0x3f, 0xaf, 0x84, 0xe9, 0xa2, 0x3d, 0x8b, 0xd2, 0x63, 0x06, +0x20, 0xe3, 0xa7, 0xc7, 0xb7, 0x36, 0xf0, 0xe1, 0x7d, 0x14, 0x98, 0xa1, 0xd9, 0xce, 0x3b, 0x67, +0x2a, 0xab, 0x72, 0xcd, 0x93, 0xd4, 0xaf, 0xc6, 0xc1, 0x0b, 0x32, 0x13, 0xd1, 0x7c, 0xf4, 0x46, +0x6d, 0xf6, 0x64, 0x03, 0x9b, 0x93, 0x09, 0xe6, 0x3d, 0x7d, 0xc4, 0x7a, 0x61, 0xa1, 0xe7, 0x6d, +0x3c, 0x0c, 0x67, 0xbe, 0xda, 0x58, 0x66, 0xea, 0xb0, 0x81, 0xd8, 0x65, 0x31, 0xae, 0x89, 0x01, +0xa6, 0xfb, 0xb0, 0xeb, 0xff, 0x18, 0x41, 0x0c, 0xfb, 0x85, 0x4f, 0x60, 0x95, 0xb9, 0x05, 0x8b, +0xc7, 0x69, 0xce, 0x71, 0x80, 0x92, 0x1d, 0x59, 0xe7, 0x78, 0xdc, 0x98, 0xd8, 0x17, 0x0f, 0x18, +0x12, 0xdb, 0xf5, 0x48, 0xb7, 0x70, 0x33, 0x10, 0x04, 0xa8, 0x7e, 0x8c, 0xa0, 0x81, 0x5e, 0x55, +0x57, 0x7d, 0xbc, 0xe6, 0x97, 0x7a, 0x22, 0x58, 0x7a, 0x2f, 0x39, 0xbe, 0x7d, 0x2d, 0x18, 0x18, +0xcd, 0xc0, 0x79, 0xb5, 0x5d, 0x8a, 0x0e, 0x5b, 0x53, 0xc3, 0x3f, 0xd5, 0x10, 0x08, 0x19, 0x1f, +0x4b, 0x83, 0x52, 0xa5, 0x0a, 0xaa, 0x9a, 0xc5, 0x46, 0x19, 0x49, 0xd6, 0x38, 0x1b, 0xa7, 0x84, +0x99, 0x0a, 0x9c, 0x64, 0x0d, 0xa3, 0x6b, 0x14, 0x33, 0x56, 0x12, 0x0d, 0x37, 0x03, 0x5a, 0x52, +0x41, 0x0c, 0xcf, 0xed, 0x50, 0xbf, 0x04, 0x07, 0x30, 0xe1, 0xc9, 0x1d, 0xfa, 0x1f, 0x32, 0x44, +0x10, 0x99, 0xb4, 0xdb, 0xef, 0xe6, 0x64, 0x25, 0x59, 0xa1, 0x3b, 0xa0, 0x1a, 0x2d, 0xf2, 0x1b, +0x8c, 0xf8, 0x63, 0x97, 0x41, 0x6f, 0xa3, 0x30, 0x16, 0xce, 0xae, 0x3f, 0x66, 0x53, 0xb9, 0x67, +0x35, 0xb4, 0x8b, 0x03, 0x86, 0x39, 0x4f, 0x35, 0xba, 0xda, 0x93, 0xbb, 0x0f, 0x55, 0xc1, 0x04, +0xb7, 0xa4, 0xea, 0xc0, 0xc8, 0x78, 0xc7, 0xf9, 0xe3, 0xb3, 0xd6, 0x25, 0x39, 0x4d, 0xf9, 0xa1, +0xdd, 0x29, 0x93, 0x20, 0xed, 0xd6, 0x2c, 0xda, 0x23, 0xcc, 0xa2, 0x36, 0x61, 0x1c, 0x79, 0x90, +0x2e, 0x99, 0xe9, 0xec, 0xee, 0x6f, 0x4b, 0x26, 0x4e, 0x62, 0x2b, 0x67, 0x6c, 0xe2, 0x4a, 0x9c, +0x0f, 0xf4, 0xb8, 0x71, 0x9a, 0xc8, 0x8d, 0x53, 0x2c, 0x1c, 0x5e, 0x82, 0x70, 0x0c, 0x55, 0xb6, +0x46, 0x4b, 0xe7, 0x84, 0xed, 0x01, 0x70, 0xc0, 0xea, 0xeb, 0x2e, 0xd7, 0xd3, 0x4a, 0xb8, 0xda, +0x51, 0x1d, 0xfc, 0x03, 0xc7, 0x5d, 0x3e, 0x1f, 0x68, 0xa1, 0xf5, 0x62, 0x40, 0x58, 0xd8, 0x06, +0x60, 0x39, 0x5a, 0x1d, 0xa9, 0x73, 0xe6, 0x2a, 0x9a, 0xda, 0x89, 0xdf, 0xc8, 0xcb, 0x2c, 0xa7, +0x11, 0xf8, 0x40, 0xb8, 0x20, 0xc4, 0xca, 0x23, 0x53, 0x9a, 0x6a, 0x5c, 0xb8, 0x1b, 0x54, 0x0c, +0x55, 0x31, 0x57, 0xc2, 0x40, 0x52, 0x45, 0xa6, 0x51, 0x90, 0x14, 0xdc, 0xf1, 0xa2, 0xb9, 0x9f, +0x89, 0xa4, 0xe5, 0x06, 0x88, 0xe8, 0xd7, 0x22, 0x92, 0x7f, 0xcc, 0x58, 0x0e, 0x3d, 0x03, 0x6f, +0x52, 0x46, 0xe8, 0xbc, 0x95, 0xa8, 0xc9, 0x14, 0x13, 0x5e, 0x43, 0x4e, 0xee, 0xbd, 0x96, 0x1c, +0x3a, 0x14, 0xac, 0x25, 0x0b, 0x90, 0xd5, 0x91, 0x63, 0x8e, 0x3e, 0xf2, 0x04, 0x93, 0xf8, 0xbb, +0x31, 0x4e, 0x07, 0x31, 0x88, 0x07, 0xd8, 0xed, 0x99, 0x31, 0xef, 0x6b, 0xd9, 0x71, 0xde, 0x73, +0x92, 0x2a, 0x5f, 0x5b, 0xdb, 0x64, 0xe1, 0x68, 0x44, 0x92, 0x78, 0x29, 0xe4, 0xd2, 0x77, 0x8b, +0xba, 0x06, 0x33, 0x72, 0xa4, 0x15, 0xe9, 0xbc, 0xd6, 0x1c, 0x7d, 0xca, 0x39, 0xfa, 0x88, 0x57, +0xe2, 0xa0, 0xa1, 0xb2, 0x9c, 0x84, 0xb1, 0xce, 0x6b, 0xf1, 0xec, 0xba, 0xe1, 0x3b, 0x24, 0x54, +0x31, 0xef, 0x36, 0x9b, 0x23, 0x92, 0x4f, 0x59, 0x74, 0xe4, 0x13, 0xa9, 0xbb, 0x47, 0x6b, 0x79, +0x07, 0xa5, 0x9e, 0xfb, 0x3c, 0xfe, 0x07, 0x52, 0xe4, 0xea, 0x63, 0x20, 0xb6, 0x9a, 0x48, 0x5a, +0xa2, 0x5c, 0xf7, 0xad, 0x37, 0xfb, 0x44, 0x1f, 0xd6, 0xdb, 0x77, 0x05, 0x36, 0x86, 0xb5, 0x1a, +0xb1, 0x00, 0x48, 0xf2, 0xbd, 0x87, 0xbc, 0x3d, 0x01, 0x5c, 0xea, 0x14, 0x76, 0x49, 0x88, 0x7b, +0x05, 0xac, 0xb9, 0x5d, 0xed, 0xf4, 0x5e, 0xc0, 0x13, 0x48, 0x30, 0x1f, 0x78, 0x63, 0x89, 0xf4, +0xb6, 0x0e, 0x8b, 0x28, 0xd3, 0xd6, 0xe3, 0x0f, 0x55, 0x1d, 0xf5, 0xec, 0xf1, 0x7a, 0x66, 0x1c, +0xfa, 0x32, 0xa7, 0x14, 0x63, 0xf3, 0xdb, 0x17, 0x92, 0xf1, 0xc1, 0x63, 0x69, 0xc0, 0xca, 0x2e, +0x47, 0xe3, 0x60, 0xdd, 0xd0, 0xdd, 0x80, 0xc5, 0x23, 0x5d, 0xe6, 0x08, 0x6f, 0x75, 0x14, 0xf8, +0xc7, 0x79, 0xcf, 0x7d, 0x11, 0xc4, 0x6f, 0x21, 0x87, 0x46, 0x5c, 0x06, 0xfe, 0xde, 0xe8, 0xca, +0xba, 0xab, 0x32, 0xf8, 0x62, 0x65, 0x51, 0x56, 0x73, 0x84, 0xf7, 0xa6, 0xcf, 0x92, 0xb2, 0x6a, +0xcc, 0xb2, 0xc1, 0x59, 0xe2, 0x57, 0x2e, 0xea, 0xa2, 0x6a, 0xb1, 0xde, 0xdf, 0xa4, 0x48, 0x43, +0x2d, 0xd1, 0xe5, 0xc9, 0x49, 0x64, 0x43, 0xc5, 0xc0, 0xf0, 0xf5, 0x5c, 0xe3, 0xb7, 0x21, 0xa4, +0xde, 0x3b, 0xea, 0xd6, 0x83, 0x1c, 0xc1, 0x44, 0xc1, 0xf2, 0x67, 0x16, 0xb2, 0xe4, 0xf9, 0x54, +0xe5, 0xc4, 0xc8, 0x61, 0xfe, 0x03, 0xe0, 0x84, 0x6d, 0x4e, 0x33, 0x47, 0xc1, 0xc4, 0x0b, 0xc0, +0xc2, 0xfc, 0xa8, 0x6c, 0xda, 0x8e, 0x3c, 0x95, 0x21, 0x56, 0x9f, 0x16, 0x89, 0x0c, 0xfa, 0x6b, +0x6b, 0xf1, 0xcd, 0x00, 0xeb, 0xfd, 0x41, 0x63, 0xad, 0x8f, 0x96, 0xb9, 0x43, 0xb8, 0x42, 0x16, +0x45, 0x0d, 0x9f, 0xe6, 0x40, 0x61, 0x40, 0x3d, 0x26, 0x9b, 0xc6, 0xc6, 0x62, 0xe5, 0x97, 0x5d, +0x8f, 0x80, 0x3b, 0x0c, 0x4a, 0x82, 0x46, 0x76, 0x0e, 0x56, 0xf6, 0x7a, 0xdc, 0x8b, 0x22, 0xf4, +0xec, 0xb0, 0x36, 0xc5, 0x77, 0x24, 0xac, 0x19, 0x75, 0x0a, 0x4c, 0xb5, 0xc2, 0xb3, 0xa4, 0x70, +0x69, 0xe1, 0x12, 0xac, 0xe5, 0xe3, 0x95, 0x5c, 0x2e, 0x17, 0x21, 0x6d, 0x5b, 0x92, 0x5e, 0xb1, +0xe1, 0x1a, 0xc3, 0x6b, 0x78, 0x68, 0x77, 0xd0, 0x98, 0x9c, 0xe0, 0x1a, 0xa7, 0xdb, 0x23, 0xb2, +0xa0, 0x94, 0x6c, 0xd2, 0x65, 0x85, 0x33, 0x44, 0x5a, 0xf0, 0xa2, 0xbc, 0x83, 0x49, 0x52, 0x02, +0x38, 0xda, 0xbf, 0x3d, 0xf1, 0xac, 0x3a, 0xdc, 0x0f, 0x00, 0x40, 0x2b, 0x8f, 0xcb, 0xcd, 0x6a, +0x74, 0xa1, 0x8f, 0x57, 0x89, 0xd6, 0xb7, 0x98, 0x5e, 0x3b, 0x50, 0x1e, 0x8f, 0x28, 0xde, 0x76, +0x56, 0x5a, 0xbe, 0xf5, 0x04, 0x58, 0xd8, 0xed, 0x45, 0xf0, 0x5a, 0x9b, 0x17, 0x81, 0x56, 0xb5, +0xe7, 0x40, 0x6a, 0x51, 0x21, 0x6a, 0x82, 0x80, 0xf5, 0xfd, 0x7d, 0xc3, 0x98, 0x0b, 0x11, 0x56, +0xfb, 0xc0, 0x91, 0x00, 0x28, 0x9b, 0x1d, 0x0c, 0x33, 0x39, 0x8b, 0x51, 0x69, 0x3c, 0xb6, 0x60, +0xe7, 0xfc, 0x83, 0xf2, 0x7d, 0x33, 0x19, 0xe3, 0x65, 0x00, 0x72, 0xfa, 0xe0, 0xd6, 0x70, 0xf6, +0x40, 0xac, 0xc2, 0xd6, 0x42, 0x21, 0xb3, 0xfd, 0x4d, 0xc3, 0x15, 0x22, 0xc3, 0x80, 0x7e, 0xe7, +0x2e, 0x3a, 0xa7, 0x06, 0xa2, 0x6c, 0x15, 0xbb, 0xf0, 0xec, 0xd2, 0x76, 0x98, 0x60, 0x3c, 0x42, +0x18, 0xd9, 0x77, 0xd5, 0x78, 0xc8, 0x25, 0xb8, 0x1d, 0x39, 0x9c, 0xce, 0x86, 0x16, 0x40, 0x73, +0x82, 0x43, 0x01, 0xa1, 0x63, 0xa0, 0xc6, 0xa3, 0x2c, 0x79, 0xc4, 0x90, 0x7f, 0xc5, 0x1b, 0xce, +0x60, 0x19, 0x62, 0xab, 0xec, 0x6b, 0x3f, 0xec, 0x61, 0xd0, 0x75, 0x34, 0xf0, 0x3e, 0x1a, 0x8e, +0xaf, 0xb3, 0xd0, 0xc6, 0xba, 0x42, 0xf5, 0x5d, 0x96, 0xd5, 0xe1, 0xa8, 0x18, 0x06, 0x74, 0x47, +0x35, 0x46, 0x77, 0x49, 0x12, 0x67, 0x7d, 0xae, 0xac, 0x59, 0xcd, 0x60, 0x82, 0x70, 0xf2, 0x6a, +0x01, 0x9b, 0xd0, 0x29, 0xe0, 0xe5, 0x03, 0x77, 0xe8, 0x74, 0xfa, 0xb0, 0xb7, 0xb9, 0x25, 0x60, +0x86, 0xf1, 0x60, 0x69, 0xf3, 0xd9, 0x9f, 0xef, 0x82, 0x90, 0xa5, 0x71, 0x06, 0xdb, 0x72, 0xef, +0x4a, 0x85, 0x14, 0xf6, 0xe7, 0xc8, 0xe2, 0x36, 0x95, 0xbf, 0xae, 0x2d, 0xdb, 0x33, 0xc8, 0x37, +0xdf, 0x07, 0xfa, 0x82, 0xc8, 0x5f, 0x1f, 0x14, 0xa1, 0xc7, 0x25, 0x65, 0x12, 0x8a, 0x6a, 0x3a, +0xec, 0x34, 0x55, 0xb8, 0x3d, 0x07, 0x5a, 0xed, 0xb0, 0x98, 0xd7, 0xba, 0xd6, 0x14, 0xef, 0x9d, +0xf7, 0x6d, 0x81, 0x98, 0xb1, 0xf1, 0x2d, 0xfb, 0x95, 0xbe, 0x3b, 0x8f, 0x72, 0xd5, 0xe4, 0x91, +0xc7, 0x0d, 0x7f, 0xea, 0x12, 0xa0, 0xaf, 0x9a, 0x83, 0x3a, 0x1b, 0x88, 0xaa, 0x54, 0xf6, 0xd9, +0xf3, 0xb1, 0xe7, 0x17, 0x38, 0x90, 0x6d, 0x3f, 0xa7, 0x3a, 0xc4, 0xda, 0x64, 0xb3, 0x6a, 0xe8, +0x82, 0x7d, 0x53, 0x9a, 0x64, 0xfb, 0x36, 0x13, 0xdd, 0x6c, 0xa9, 0x2c, 0x29, 0x9f, 0x80, 0xcd, +0x18, 0x04, 0xc9, 0x2e, 0x12, 0x82, 0x8b, 0x4c, 0x44, 0xe5, 0x3e, 0xf9, 0x7a, 0xeb, 0x0d, 0x36, +0xcc, 0xb5, 0x5f, 0xe0, 0x6c, 0xef, 0x0f, 0x94, 0x1a, 0x93, 0x2c, 0x1a, 0x0e, 0xe4, 0x7e, 0x69, +0x27, 0x58, 0x90, 0x9f, 0x33, 0xca, 0xe2, 0x3c, 0x15, 0xf0, 0x86, 0x5f, 0x7d, 0x6c, 0xd4, 0x76, +0x3b, 0x13, 0x59, 0xca, 0x9c, 0x05, 0x3d, 0x5d, 0x3b, 0x65, 0xb0, 0xd1, 0xbf, 0x7e, 0x57, 0xa3, +0xb1, 0x77, 0xa1, 0xd2, 0x66, 0x56, 0x6c, 0xcd, 0x85, 0x35, 0xbb, 0x67, 0xd6, 0x38, 0x2c, 0x51, +0xd3, 0x2e, 0xc3, 0x76, 0xa9, 0xa0, 0x81, 0x3d, 0xf9, 0x5e, 0xbf, 0xff, 0xe3, 0x36, 0x23, 0xb7, +0xd9, 0x26, 0xf6, 0x41, 0xda, 0x5e, 0x33, 0x42, 0x61, 0x0a, 0x81, 0xfd, 0x16, 0x9c, 0x29, 0x70, +0x4c, 0x29, 0x97, 0xd5, 0xa6, 0x7a, 0xda, 0x0d, 0x33, 0xbe, 0x12, 0xda, 0x57, 0x85, 0xe4, 0x69, +0x80, 0x7d, 0x8e, 0x2a, 0xd4, 0xc7, 0xe9, 0x0a, 0x3f, 0xd9, 0x14, 0xd7, 0x2a, 0x74, 0x49, 0x07, +0x0d, 0x6b, 0x95, 0xd8, 0x12, 0x4f, 0xde, 0x61, 0x64, 0xd7, 0xa5, 0x1a, 0x11, 0x99, 0x34, 0xa5, +0x56, 0xeb, 0xc7, 0x1c, 0x12, 0x5a, 0xb0, 0x06, 0x7b, 0x37, 0x6b, 0xea, 0x43, 0x50, 0xfa, 0x92, +0x46, 0xb3, 0x83, 0xde, 0x72, 0xb9, 0x28, 0xd5, 0x30, 0x8f, 0x28, 0xd0, 0x6e, 0xc2, 0x7c, 0xee, +0xaf, 0x10, 0x3c, 0xc3, 0x9a, 0xd9, 0x3b, 0x29, 0x4b, 0xf2, 0x6a, 0x4c, 0x16, 0xbb, 0x87, 0xb0, +0xf6, 0x8e, 0x47, 0xba, 0x09, 0x03, 0x7f, 0x62, 0x5b, 0xea, 0x0b, 0x91, 0x65, 0xc5, 0xdb, 0x17, +0x3d, 0x9b, 0x3d, 0x48, 0x51, 0x47, 0x9e, 0xdb, 0x12, 0x28, 0xdb, 0xa4, 0x5c, 0xd7, 0x8a, 0x21, +0xfc, 0x0a, 0x90, 0x3d, 0x55, 0x22, 0x22, 0x70, 0x18, 0xdb, 0x4c, 0xf7, 0xa3, 0xf6, 0xb0, 0x6a, +0x17, 0x06, 0x0b, 0xa1, 0x7c, 0xa6, 0xc5, 0x2c, 0x53, 0x21, 0x29, 0xb1, 0x4f, 0x0f, 0xbb, 0x81, +0x06, 0x0c, 0xe0, 0x47, 0x5c, 0xe1, 0x01, 0x89, 0x5d, 0x2a, 0x62, 0x87, 0xa3, 0x0b, 0x59, 0xb9, +0x68, 0x76, 0x97, 0xe3, 0xa7, 0xed, 0x67, 0x29, 0x2a, 0x1b, 0xd7, 0x5b, 0xfe, 0xaa, 0xe2, 0x05, +0x67, 0x15, 0xb2, 0x32, 0xd5, 0x04, 0xf6, 0xd2, 0x46, 0x74, 0xf1, 0x86, 0x53, 0x47, 0xf7, 0x64, +0x49, 0x2a, 0xf5, 0x97, 0xc5, 0x2a, 0x74, 0xfc, 0xdf, 0x94, 0xda, 0x3d, 0x36, 0x15, 0xc6, 0x3c, +0x2d, 0x64, 0x2a, 0xb8, 0x70, 0xd4, 0x94, 0x48, 0xd6, 0x91, 0xaf, 0xa7, 0xa4, 0x51, 0x0d, 0x9c, +0x96, 0x0a, 0xea, 0x95, 0x98, 0x3a, 0xfb, 0x86, 0x93, 0x84, 0x41, 0xdc, 0x06, 0x14, 0xe2, 0x7c, +0xb8, 0xec, 0x82, 0x8e, 0x7e, 0x18, 0x16, 0x38, 0xba, 0xc5, 0x6b, 0xfd, 0xc9, 0xdb, 0xfe, 0xcb, +0xbf, 0xc8, 0xfb, 0x77, 0x8b, 0xe9, 0x10, 0x9b, 0x33, 0x14, 0x4c, 0xdb, 0x6e, 0x78, 0x45, 0xbe, +0x07, 0x7b, 0x30, 0x0c, 0x52, 0x62, 0xd0, 0x1f, 0xb2, 0xb6, 0xc4, 0xd1, 0xd1, 0x33, 0x2d, 0x3e, +0xdf, 0x86, 0x56, 0x99, 0xf0, 0xb2, 0x78, 0x4c, 0xa9, 0x41, 0x29, 0x56, 0x51, 0xfd, 0x61, 0xa8, +0x3b, 0x4d, 0xbf, 0x7e, 0x31, 0xd4, 0x86, 0xcb, 0x64, 0x7c, 0x25, 0x04, 0x01, 0xdb, 0x39, 0x33, +0xa4, 0x32, 0x1f, 0x7f, 0x0b, 0x81, 0xc5, 0x16, 0xa6, 0x6b, 0x92, 0x2d, 0x47, 0xca, 0x6b, 0x55, +0xe8, 0x9c, 0x26, 0xb7, 0x3b, 0xe7, 0x5c, 0x2d, 0x8e, 0x9e, 0xb3, 0x24, 0xd5, 0x9f, 0x48, 0x1a, +0x20, 0x4f, 0x4d, 0x04, 0x28, 0x3a, 0x1e, 0xa5, 0x1e, 0x1d, 0x0c, 0x9b, 0x75, 0x98, 0x10, 0x3a, +0x8f, 0x5d, 0x08, 0x85, 0xec, 0x0e, 0xb8, 0x8f, 0xaf, 0xd7, 0x69, 0x8c, 0x26, 0x02, 0xa9, 0xbd, +0x39, 0x02, 0x5a, 0x04, 0x01, 0xdf, 0xba, 0x6d, 0x47, 0xe8, 0x71, 0x2b, 0xc6, 0x7c, 0x99, 0xcf, +0x94, 0x7b, 0x85, 0x7a, 0x9e, 0x74, 0x87, 0x78, 0xe0, 0x1e, 0x48, 0x4d, 0xb0, 0xb5, 0x23, 0x97, +0x56, 0x15, 0x43, 0xdf, 0xf4, 0x4f, 0x10, 0xdc, 0x32, 0xac, 0x70, 0xde, 0x3a, 0x5a, 0x4a, 0x45, +0xcb, 0xaa, 0xe7, 0xf1, 0x5e, 0x18, 0x1a, 0x9c, 0x5c, 0x88, 0xd2, 0xe3, 0x61, 0x57, 0xc0, 0x70, +0x2e, 0x85, 0xf7, 0xe6, 0x4b, 0xbb, 0x9e, 0x46, 0x84, 0x86, 0xb1, 0xe8, 0x05, 0x5d, 0x89, 0x9f, +0xb2, 0xc7, 0x64, 0x4a, 0x13, 0x19, 0xc2, 0xe9, 0x0f, 0x88, 0xd4, 0x49, 0x80, 0xc2, 0x65, 0x6f, +0x24, 0xb4, 0x95, 0xbc, 0x4f, 0x18, 0xfa, 0xa2, 0x12, 0xc9, 0xdc, 0x7c, 0xe7, 0xf2, 0xe8, 0x1a, +0x8a, 0x6a, 0x75, 0x5a, 0x30, 0x22, 0x60, 0xf7, 0x0e, 0xe0, 0x50, 0x56, 0x6e, 0xd7, 0x64, 0x56, +0x57, 0x9d, 0x79, 0x85, 0x04, 0x29, 0x27, 0x19, 0xa6, 0x89, 0x65, 0x3d, 0x46, 0xbc, 0x29, 0x88, +0x6f, 0x3a, 0x86, 0xb7, 0x6b, 0x28, 0x2a, 0x5b, 0x1e, 0x0d, 0x16, 0xb9, 0x54, 0x05, 0xf5, 0x6d, +0xa3, 0x4a, 0xff, 0x5e, 0xfb, 0x83, 0x8c, 0xfb, 0x04, 0x81, 0x4e, 0xde, 0x4a, 0xd1, 0x88, 0x69, +0x30, 0x20, 0x72, 0x12, 0xdf, 0xe0, 0x78, 0x4a, 0x21, 0x84, 0xee, 0x45, 0xd1, 0x0c, 0xd2, 0x51, +0xa6, 0x27, 0xcd, 0xc5, 0x6e, 0x9e, 0x6a, 0x50, 0xd8, 0xeb, 0xf5, 0xaf, 0xe4, 0x50, 0x29, 0x5d, +0x33, 0x40, 0x88, 0x90, 0x6f, 0xc9, 0x6f, 0x21, 0xa4, 0x06, 0xdb, 0xb3, 0xb6, 0xe8, 0x9c, 0xa4, +0x72, 0xd0, 0xdc, 0xd3, 0x85, 0x97, 0x72, 0x19, 0x4f, 0xc2, 0x6e, 0x09, 0x7a, 0x66, 0x13, 0x35, +0xd8, 0x98, 0xf7, 0xc9, 0xb1, 0x3a, 0x19, 0xe6, 0x8a, 0xb4, 0xb6, 0x03, 0x3c, 0xe4, 0xcc, 0x95, +0x28, 0x91, 0x9d, 0xb3, 0xd6, 0x4d, 0xf8, 0xfe, 0xa9, 0xaf, 0x9f, 0x50, 0x7d, 0xb1, 0xd1, 0x2c, +0xd8, 0xe4, 0x7d, 0x68, 0xff, 0x76, 0xba, 0xc5, 0x7b, 0x0b, 0x9a, 0xe1, 0x04, 0x5e, 0xfa, 0x61, +0x5d, 0x63, 0x9f, 0x25, 0xbd, 0x86, 0xe2, 0xfe, 0xd3, 0xdb, 0x7b, 0xa6, 0x6f, 0xfb, 0x2c, 0xa6, +0x0a, 0xc6, 0x6e, 0xe6, 0x14, 0x28, 0x1e, 0x0c, 0x91, 0xbb, 0x56, 0x13, 0x3a, 0x31, 0xcf, 0x1e, +0x53, 0x7c, 0x02, 0x10, 0xe7, 0xd8, 0x92, 0x1e, 0x8b, 0xaa, 0x1b, 0x8f, 0x30, 0x92, 0x35, 0x8c, +0x3b, 0x1b, 0xd0, 0x94, 0xdc, 0x06, 0x1b, 0x4f, 0x31, 0x29, 0x8a, 0x46, 0xcb, 0xdb, 0x03, 0x97, +0x2e, 0x5e, 0x53, 0xaf, 0x1a, 0xf0, 0x32, 0x2e, 0xea, 0xe6, 0x38, 0xef, 0x0a, 0x6c, 0xa3, 0x73, +0xf1, 0xed, 0x35, 0x42, 0xb2, 0x3f, 0x01, 0x5e, 0xec, 0xe3, 0xdd, 0x0b, 0x41, 0x08, 0xfd, 0xf7, +0x83, 0xf9, 0x3e, 0xf2, 0xa8, 0x01, 0x40, 0xeb, 0x91, 0xa8, 0x62, 0x6f, 0x53, 0x03, 0x2b, 0x7a, +0x49, 0x68, 0x29, 0xcc, 0x55, 0xee, 0x83, 0x1a, 0xd9, 0x96, 0x4d, 0xee, 0xdc, 0x9b, 0xaa, 0x12, +0x91, 0xe6, 0x63, 0x02, 0x5a, 0xf2, 0x6c, 0x2b, 0x46, 0xe9, 0xb0, 0x5a, 0xbc, 0x3f, 0x91, 0xb7, +0xc3, 0x5c, 0x0a, 0xad, 0x00, 0xe2, 0x29, 0x45, 0x93, 0xae, 0x03, 0x0e, 0xff, 0xf9, 0x6f, 0x48, +0xda, 0x1f, 0x54, 0x28, 0x9a, 0xe6, 0x59, 0x36, 0x2e, 0x10, 0xd6, 0x2e, 0xf9, 0xa9, 0x42, 0x08, +0x8b, 0x78, 0xe8, 0xe2, 0x75, 0x42, 0xd7, 0xea, 0x18, 0xe9, 0x63, 0xd9, 0xff, 0x21, 0xc4, 0xca, +0xa5, 0xec, 0x48, 0x8d, 0x71, 0x96, 0x55, 0x58, 0xee, 0xd6, 0xfa, 0xd9, 0xf7, 0x66, 0x3b, 0x26, +0xa5, 0xb6, 0xee, 0x05, 0x94, 0x7c, 0xc0, 0x07, 0x29, 0x66, 0x73, 0x9c, 0x9b, 0x90, 0x92, 0xe4, +0x75, 0xbe, 0x6a, 0x3f, 0xf2, 0xcd, 0x42, 0x00, 0x87, 0x06, 0x7d, 0x0a, 0xbd, 0xaa, 0x01, 0x2c, +0xfd, 0xcc, 0xd5, 0x91, 0xe9, 0xf6, 0x0c, 0x04, 0x91, 0xb3, 0x66, 0x09, 0xb4, 0x99, 0xdd, 0x69, +0x5d, 0x32, 0x0e, 0x60, 0x7a, 0xcc, 0x07, 0x46, 0x9b, 0xfe, 0xc0, 0xdd, 0x13, 0x96, 0xd0, 0x07, +0xad, 0xc4, 0x30, 0x4e, 0x5b, 0xbb, 0x5b, 0x23, 0xa3, 0x65, 0x47, 0xc9, 0x92, 0x8e, 0xc6, 0x6d, +0xc5, 0x46, 0x36, 0xa4, 0xd4, 0xc6, 0x7e, 0x43, 0x92, 0xc8, 0x6f, 0x94, 0xb7, 0xb9, 0x16, 0xac, +0xd6, 0xfa, 0xf5, 0xb4, 0x59, 0xbb, 0xb6, 0x15, 0xac, 0xc4, 0x8f, 0x99, 0xbb, 0xca, 0x79, 0x25, +0x9a, 0x86, 0x85, 0xbd, 0x0e, 0x95, 0x0a, 0x80, 0x09, 0x7e, 0x50, 0x90, 0xb3, 0xf9, 0x1c, 0x9d, +0x79, 0x2f, 0x3e, 0x60, 0x59, 0x07, 0xfa, 0x9d, 0xae, 0xdb, 0xe2, 0x41, 0x4e, 0x42, 0x76, 0x24, +0xdc, 0x2c, 0xda, 0x4e, 0xe0, 0x2c, 0x10, 0x4b, 0x69, 0x63, 0xf0, 0xa0, 0x28, 0xb0, 0xf0, 0x4a, +0x51, 0xb1, 0x55, 0x3b, 0x76, 0x58, 0xe4, 0x62, 0x9b, 0x78, 0x4c, 0x30, 0x3f, 0x4b, 0xad, 0x63, +0xc0, 0x57, 0x44, 0xbe, 0x19, 0xd6, 0x8a, 0x92, 0x10, 0x3a, 0xdd, 0xb9, 0x73, 0x52, 0x83, 0x8c, +0x9b, 0x9a, 0xaa, 0x4c, 0x11, 0x24, 0x11, 0xe6, 0x3c, 0xe7, 0x80, 0x90, 0x42, 0xc7, 0xb4, 0xc5, +0x99, 0xd2, 0xcf, 0xb8, 0x81, 0x3c, 0xdf, 0x03, 0xf8, 0x8c, 0x18, 0x6b, 0xff, 0x87, 0x3f, 0x5c, +0xe8, 0xce, 0x15, 0x78, 0xc2, 0x9a, 0xb1, 0xf3, 0x43, 0xc3, 0x52, 0x04, 0x6b, 0x24, 0x91, 0x9f, +0x28, 0x9d, 0xf4, 0x82, 0x38, 0x50, 0xaf, 0x02, 0xf4, 0x55, 0x21, 0x61, 0xdc, 0x72, 0xb7, 0x25, +0x5f, 0x89, 0x21, 0x64, 0x70, 0xcd, 0xfd, 0xcd, 0x94, 0xc0, 0xbd, 0xca, 0x10, 0xdf, 0x54, 0x87, +0x5a, 0xf7, 0x5e, 0xc4, 0x82, 0x2e, 0x06, 0x61, 0x7e, 0xd7, 0xbd, 0x56, 0x07, 0x4c, 0x17, 0xa7, +0xae, 0xfc, 0x2e, 0x5f, 0xc5, 0x71, 0xb4, 0x73, 0xd8, 0xa4, 0xa4, 0x68, 0xc2, 0x6c, 0xa6, 0xd5, +0x24, 0xd3, 0x04, 0x0c, 0x67, 0xb7, 0x8c, 0x9a, 0x9c, 0xb2, 0x41, 0xc2, 0xb0, 0x94, 0xc7, 0x3d, +0xf8, 0xe2, 0x2a, 0x63, 0x72, 0x19, 0x0c, 0x15, 0x4c, 0x6a, 0x65, 0xdd, 0xa0, 0xaa, 0x7d, 0xd0, +0xae, 0x19, 0x9b, 0xbf, 0x9f, 0xb0, 0x1e, 0x7d, 0x34, 0x67, 0x95, 0x28, 0x7f, 0xf9, 0x26, 0xb8, +0xfb, 0x4b, 0xae, 0xee, 0x21, 0x9f, 0xe9, 0xa5, 0xd3, 0x24, 0x49, 0x20, 0x42, 0xbf, 0xc4, 0xc8, +0x35, 0x62, 0xf4, 0x43, 0x95, 0x47, 0xb6, 0xce, 0xec, 0x66, 0xaa, 0x71, 0xd0, 0xd6, 0xd7, 0x4b, +0x33, 0x15, 0xba, 0x4f, 0xf7, 0x08, 0x6b, 0x7d, 0x2e, 0xb9, 0xb9, 0x3f, 0x6f, 0x13, 0xfa, 0x87, +0xa2, 0x8b, 0x07, 0xa9, 0x15, 0xc9, 0x6d, 0x28, 0xaf, 0x39, 0x8a, 0x32, 0x46, 0x5c, 0x02, 0xc4, +0xee, 0x8a, 0xc0, 0x01, 0xf0, 0x5f, 0x9e, 0x6c, 0x98, 0x5d, 0x4c, 0x48, 0xfb, 0x56, 0xd9, 0x05, +0x1a, 0xff, 0x4d, 0x1e, 0xf1, 0x1f, 0x58, 0x85, 0xc5, 0x1c, 0xf0, 0xca, 0xd3, 0x2c, 0xa0, 0x58, +0xd0, 0x57, 0xda, 0x82, 0xc7, 0x1e, 0xc0, 0x2a, 0x50, 0xf5, 0xa8, 0x6d, 0xee, 0x1e, 0x2f, 0x32, +0xe8, 0x14, 0x6a, 0xfa, 0xb6, 0xf4, 0x3f, 0x0d, 0xf4, 0xc4, 0x88, 0x2d, 0xc7, 0x31, 0x0f, 0x64, +0xcd, 0x35, 0xde, 0x08, 0xaa, 0x14, 0x1e, 0xc9, 0xee, 0xad, 0xd5, 0x05, 0x83, 0x9c, 0x1b, 0x6d, +0x0f, 0x3b, 0x3d, 0x09, 0xb6, 0xf9, 0x31, 0xa3, 0x83, 0xb8, 0x84, 0x1a, 0xad, 0xc9, 0x98, 0x0f, +0xee, 0xc4, 0x90, 0x53, 0x52, 0x42, 0xe5, 0x8c, 0x1b, 0x5b, 0xf9, 0x0c, 0xda, 0xc2, 0x85, 0xb9, +0xb4, 0x29, 0xe3, 0xdc, 0x97, 0x11, 0x3a, 0x7e, 0xaa, 0xe5, 0xb0, 0x64, 0xd6, 0x93, 0xca, 0x6b, +0x48, 0x01, 0x75, 0xa6, 0x52, 0xed, 0xf1, 0x16, 0x9e, 0xef, 0x7d, 0x67, 0xca, 0x4a, 0xb1, 0x89, +0xae, 0x0f, 0xce, 0xbd, 0x05, 0x93, 0xd9, 0x1f, 0x5f, 0x0a, 0xa4, 0xe3, 0xbe, 0xb6, 0xd8, 0xff, +0x5a, 0x5f, 0x0a, 0xdd, 0xc2, 0xcc, 0x92, 0x7a, 0x9e, 0xde, 0x6c, 0x41, 0x43, 0x5d, 0x59, 0xb0, +0xdf, 0x0c, 0x52, 0x35, 0x64, 0xb6, 0xec, 0xc7, 0x48, 0x33, 0xdf, 0x5c, 0x84, 0xac, 0x04, 0x4a, +0xab, 0xcd, 0x50, 0x37, 0x85, 0x2e, 0x61, 0xfd, 0x13, 0x48, 0xb7, 0x68, 0x7c, 0x66, 0x23, 0xed, +0xdf, 0x57, 0xb1, 0xe5, 0x7e, 0xa1, 0xe8, 0xc4, 0x22, 0x76, 0xc3, 0xd5, 0x75, 0x9c, 0x7e, 0x57, +0x55, 0xf2, 0xc7, 0x40, 0x0a, 0x1c, 0xae, 0x4b, 0x46, 0x17, 0xdb, 0x03, 0x46, 0x28, 0x9f, 0xff, +0x64, 0x83, 0xea, 0xf7, 0x44, 0x98, 0x5f, 0xdb, 0x58, 0x6d, 0xe8, 0xf4, 0x0f, 0xf7, 0x5b, 0x58, +0xb7, 0x72, 0x13, 0x66, 0x61, 0xc3, 0xe2, 0xd3, 0x14, 0xb3, 0x8e, 0xb7, 0x5b, 0x60, 0x8d, 0xda, +0xfe, 0x26, 0x79, 0x0c, 0x6a, 0xb5, 0xfd, 0x2e, 0xb1, 0x0c, 0x9a, 0x4b, 0x51, 0x00, 0x6d, 0x3e, +0x4d, 0x80, 0x59, 0x06, 0x01, 0x57, 0xf4, 0xe2, 0x93, 0xd5, 0x01, 0x7b, 0x6e, 0x22, 0x9a, 0xc8, +0x7c, 0xfe, 0x80, 0x6f, 0x7f, 0xf6, 0x6a, 0xcb, 0x03, 0x2e, 0x7b, 0xa2, 0x4f, 0x7e, 0xde, 0x81, +0xb8, 0x2d, 0x18, 0x5f, 0x02, 0x82, 0x6e, 0x15, 0xe5, 0x52, 0x22, 0xa2, 0x1a, 0xc6, 0xbf, 0x29, +0x99, 0x54, 0x09, 0x9b, 0x71, 0xc8, 0xc2, 0x7e, 0xc7, 0x3b, 0x5e, 0x0f, 0xd1, 0xd6, 0xd8, 0x6f, +0x16, 0xb1, 0x87, 0x9c, 0x5b, 0x3f, 0xd6, 0x67, 0xf8, 0x09, 0xa2, 0x1c, 0xb3, 0xa2, 0x00, 0xf4, +0x42, 0x94, 0xd3, 0xc5, 0x41, 0x0c, 0x14, 0x73, 0xd4, 0xde, 0xb8, 0xca, 0xcb, 0x59, 0x08, 0x52, +0xc6, 0x8e, 0x02, 0x3c, 0xa5, 0x7b, 0x2b, 0xe0, 0xd9, 0xa0, 0xea, 0xd1, 0x06, 0xd9, 0xa6, 0xc2, +0x35, 0xc3, 0x05, 0x59, 0x5f, 0x7e, 0xe0, 0x48, 0xc9, 0xec, 0xfa, 0x13, 0x92, 0x47, 0xb4, 0x3f, +0xdf, 0x8a, 0x49, 0xa5, 0xe2, 0xaa, 0xba, 0x6d, 0xb7, 0x5d, 0xbd, 0x1f, 0x8b, 0x9c, 0x0c, 0xe5, +0xdb, 0x81, 0x72, 0x65, 0xb1, 0xcb, 0xfa, 0x5b, 0x0f, 0x09, 0xf5, 0x93, 0x8d, 0xc5, 0xfd, 0xa6, +0x8a, 0x2b, 0x45, 0xde, 0x88, 0xf6, 0xb6, 0xb4, 0xa1, 0x10, 0x2b, 0xd4, 0x72, 0xa4, 0x90, 0xbb, +0xc5, 0x04, 0x06, 0x85, 0x36, 0xb9, 0x7f, 0x47, 0xdc, 0xce, 0x7a, 0x66, 0x4d, 0xc8, 0xaf, 0x85, +0x12, 0xc2, 0x63, 0x02, 0x06, 0xd4, 0x31, 0x3d, 0xdf, 0x71, 0xbd, 0xb5, 0xd4, 0xec, 0xf0, 0xa4, +0x93, 0x93, 0xad, 0x32, 0x47, 0xab, 0x5c, 0xbd, 0x0e, 0x7c, 0x17, 0x7f, 0x0d, 0x65, 0x6d, 0x0c, +0xc6, 0x9d, 0x7d, 0xf9, 0xed, 0x78, 0xcc, 0x25, 0xa6, 0x44, 0x49, 0xfe, 0x7f, 0x12, 0x04, 0xdd, +0xbf, 0x10, 0x77, 0xab, 0xf3, 0x45, 0x0d, 0xe2, 0x0f, 0x9b, 0x23, 0xa5, 0x49, 0xf8, 0x7d, 0xef, +0xb0, 0xe4, 0xd6, 0xa0, 0xa9, 0x0c, 0xb1, 0x0a, 0xa3, 0xee, 0x26, 0x24, 0xad, 0x01, 0x92, 0x80, +0x8d, 0x84, 0x70, 0x77, 0xdc, 0x54, 0x29, 0x0b, 0x21, 0x4b, 0xf7, 0x7d, 0x97, 0x96, 0x13, 0x67, +0x3b, 0xd5, 0x24, 0xea, 0x69, 0x61, 0x9f, 0xc8, 0x07, 0xda, 0x92, 0xe4, 0x3d, 0x57, 0x7d, 0xad, +0xe8, 0xfa, 0xd7, 0x22, 0x2b, 0x06, 0x8e, 0xf9, 0xfe, 0x10, 0x87, 0xb9, 0x61, 0xe8, 0xd3, 0xcb, +0x55, 0x41, 0x59, 0xc7, 0xee, 0x9f, 0xe3, 0xb0, 0xda, 0x96, 0xa6, 0x80, 0x7f, 0x98, 0x8e, 0xea, +0x50, 0xc0, 0xd8, 0x3a, 0x6e, 0x67, 0x80, 0x4b, 0x41, 0xc1, 0x19, 0x46, 0xe6, 0x1b, 0xa1, 0x55, +0x1e, 0x15, 0x92, 0x9a, 0xa4, 0x04, 0x35, 0x92, 0xb1, 0x43, 0xb2, 0x8b, 0x00, 0xe8, 0x85, 0xd7, +0xc1, 0xd8, 0xed, 0xc6, 0xf1, 0x1f, 0x2c, 0x27, 0x16, 0x42, 0x25, 0xf9, 0xc9, 0x7c, 0x0a, 0x5b, +0x88, 0xcd, 0x8a, 0x78, 0xbf, 0x52, 0xf0, 0x6e, 0x71, 0x1c, 0x33, 0x52, 0xe6, 0x24, 0xc7, 0x12, +0xed, 0x99, 0x3e, 0x69, 0xf2, 0x60, 0x2c, 0x5b, 0xe2, 0xce, 0xfa, 0x75, 0x8f, 0x23, 0xee, 0x12, +0xd1, 0x9a, 0xc0, 0x93, 0x3c, 0xa0, 0x67, 0x51, 0xc4, 0x24, 0xa9, 0x08, 0x1c, 0x3c, 0x4e, 0xa0, +0x31, 0x8a, 0x52, 0xa5, 0x1f, 0x3c, 0x4d, 0xf1, 0x8b, 0xa7, 0x6c, 0x3b, 0xf7, 0xed, 0xdc, 0xc9, +0x70, 0xcd, 0x92, 0x21, 0x2a, 0xf8, 0x02, 0x9c, 0xd3, 0xda, 0xfb, 0x3b, 0x72, 0xb7, 0x84, 0xe7, +0x73, 0xcf, 0x46, 0xf1, 0xa1, 0x12, 0x65, 0xdc, 0xb8, 0x6c, 0x63, 0xdc, 0x36, 0xe3, 0xc7, 0x99, +0x2c, 0xdf, 0xd8, 0xc9, 0x6a, 0x08, 0x24, 0x61, 0x10, 0xaf, 0x74, 0x57, 0xdc, 0xf9, 0xb7, 0x7c, +0xf7, 0x76, 0xc4, 0xd5, 0x51, 0x78, 0x23, 0x8c, 0x1e, 0xc5, 0x9f, 0x2f, 0xbf, 0x7a, 0x95, 0xfa, +0x72, 0xf3, 0x57, 0x59, 0x6c, 0x90, 0x25, 0xbb, 0x71, 0x5a, 0x5f, 0x27, 0xaf, 0x5d, 0xac, 0x8f, +0x7d, 0xaf, 0x0b, 0x8d, 0x3d, 0xd9, 0x2e, 0x15, 0xcd, 0xc5, 0xf2, 0xbb, 0x84, 0xad, 0x13, 0xf0, +0x4a, 0xb1, 0xd8, 0x19, 0x1f, 0x1b, 0x13, 0xc9, 0x25, 0xb2, 0x69, 0x3c, 0x0f, 0x97, 0x99, 0x11, +0x83, 0xa4, 0xfd, 0xb1, 0x8f, 0x98, 0xe6, 0x9b, 0xbd, 0x56, 0x26, 0x28, 0x4e, 0xac, 0x42, 0x94, +0xf9, 0x03, 0xfb, 0x0b, 0x2b, 0xec, 0x17, 0xb2, 0xe5, 0x5d, 0xef, 0x3f, 0xcc, 0x96, 0xf0, 0x32, +0x3d, 0x43, 0x1c, 0x47, 0x20, 0x82, 0x6a, 0xf8, 0xf1, 0x80, 0xae, 0x39, 0x08, 0x3d, 0x38, 0x55, +0x14, 0x4f, 0xf7, 0x74, 0x7a, 0xd5, 0x1b, 0x25, 0xe8, 0x1b, 0x78, 0x9b, 0x67, 0xe2, 0x45, 0x25, +0x33, 0x5a, 0x36, 0x3f, 0xc6, 0xa8, 0x97, 0xed, 0x22, 0x6e, 0x0b, 0xc6, 0xe3, 0xee, 0x2d, 0x24, +0xce, 0x87, 0x6f, 0x9b, 0x04, 0x83, 0x0e, 0x23, 0x61, 0x28, 0x08, 0x4d, 0x59, 0x2c, 0x2e, 0x3f, +0xb7, 0x41, 0xb7, 0xdf, 0x22, 0x0a, 0x84, 0xac, 0x5d, 0xb4, 0x8a, 0x9d, 0xa5, 0x8f, 0x3a, 0xfb, +0xd0, 0x2b, 0xda, 0x11, 0xbb, 0xb3, 0x17, 0xc0, 0x40, 0x77, 0xda, 0x7e, 0xf9, 0x44, 0x8b, 0x4a, +0x3d, 0x5d, 0xf7, 0x2f, 0x31, 0x1a, 0x7c, 0xd7, 0x1a, 0x85, 0xc0, 0xe2, 0x8c, 0xc0, 0x5f, 0xb5, +0x32, 0x58, 0x02, 0xde, 0x9f, 0x14, 0x7f, 0x9d, 0x9d, 0x06, 0x93, 0xb9, 0x48, 0x28, 0xd2, 0x25, +0x51, 0x51, 0x5a, 0x6d, 0xa4, 0x5c, 0x15, 0x37, 0x5a, 0x37, 0xf1, 0xdb, 0x91, 0x36, 0x11, 0x1f, +0xd2, 0xf7, 0x82, 0x50, 0x81, 0x6f, 0x2c, 0x44, 0x06, 0xdc, 0x31, 0xce, 0x42, 0xb9, 0xf5, 0xb6, +0xbc, 0x1f, 0xac, 0x97, 0xc6, 0xac, 0xb0, 0x00, 0x10, 0x0e, 0xad, 0xdb, 0xa3, 0x24, 0x17, 0x8b, +0xe1, 0x91, 0xdd, 0x7a, 0xe8, 0x54, 0xf7, 0xd6, 0xc8, 0x22, 0x53, 0x89, 0x2a, 0x54, 0xb5, 0xfc, +0x16, 0xc2, 0xf5, 0xe5, 0xbd, 0x1d, 0xfb, 0xcb, 0xd4, 0xcd, 0x34, 0xe4, 0xc3, 0x13, 0xa5, 0x19, +0xf3, 0xe7, 0x67, 0x59, 0xbb, 0x74, 0xbb, 0x14, 0x00, 0xd5, 0xda, 0xb4, 0xf0, 0x92, 0x91, 0x65, +0x70, 0xcd, 0x69, 0xe8, 0x3f, 0x5f, 0x99, 0xb8, 0x8f, 0x05, 0xd4, 0x56, 0x2d, 0xc5, 0xed, 0xc2, +0xe1, 0x26, 0xea, 0x11, 0x14, 0x4b, 0xcb, 0x16, 0xb5, 0x3d, 0x61, 0x39, 0xe5, 0x24, 0xb7, 0xb7, +0x85, 0x68, 0x80, 0x2c, 0xfa, 0x95, 0xe0, 0x8c, 0x2f, 0xf6, 0xff, 0xb6, 0xee, 0x8a, 0xca, 0x7a, +0x46, 0xa5, 0x51, 0xe6, 0xc0, 0xf1, 0x33, 0x75, 0x87, 0x39, 0x0c, 0x68, 0xe5, 0x37, 0x58, 0x58, +0xe4, 0xbe, 0xe6, 0x83, 0x40, 0xcd, 0x1d, 0x0f, 0xfc, 0xda, 0x7f, 0x5e, 0x2b, 0x86, 0x02, 0xa5, +0xda, 0x6c, 0x73, 0xc7, 0x3e, 0xd8, 0x70, 0x00, 0xf0, 0xe1, 0x4c, 0xf6, 0x0a, 0x09, 0x2c, 0x7f, +0x13, 0x9c, 0x31, 0x18, 0x86, 0x0c, 0xd8, 0x92, 0x7a, 0xa1, 0x5b, 0x0c, 0x58, 0x35, 0xcc, 0x42, +0x3c, 0x21, 0xe1, 0xd1, 0x2c, 0xdd, 0x54, 0xd6, 0xad, 0xa0, 0x0c, 0x7e, 0xe7, 0x4a, 0xb0, 0x6f, +0xc2, 0x38, 0x7a, 0xe8, 0xf2, 0xfa, 0x83, 0x40, 0x71, 0xf9, 0xa9, 0xaa, 0x35, 0xb6, 0xfb, 0x0c, +0x70, 0x38, 0xbe, 0x48, 0xb4, 0x1b, 0x72, 0x8b, 0x1c, 0x4d, 0xb7, 0x19, 0x66, 0x91, 0xa9, 0x4f, +0x86, 0x0c, 0xa5, 0x3d, 0xc5, 0xda, 0x5f, 0x58, 0x23, 0x79, 0xc3, 0xf4, 0x7e, 0x48, 0x5a, 0x9b, +0xb2, 0xf6, 0xc0, 0xf5, 0xe7, 0x59, 0x48, 0x15, 0x5b, 0x44, 0x19, 0x97, 0x32, 0x9d, 0xff, 0x9b, +0xaa, 0x11, 0x2b, 0xbc, 0x40, 0xb5, 0x7e, 0x1b, 0x80, 0x92, 0x38, 0xc1, 0x9e, 0x2f, 0x1f, 0x70, +0xac, 0xd2, 0xdd, 0x9d, 0x8e, 0x4e, 0xbe, 0x42, 0x8f, 0xe9, 0xc6, 0xd8, 0x01, 0x35, 0x5a, 0x1e, +0x09, 0x06, 0x08, 0x5c, 0x1a, 0x91, 0x4e, 0x88, 0x96, 0xa2, 0x0b, 0xea, 0xf4, 0x9e, 0x61, 0xd3, +0x11, 0xdc, 0x1c, 0xa7, 0x47, 0x1c, 0xa3, 0x9a, 0x3f, 0xb0, 0xc4, 0x2e, 0x9d, 0xa6, 0xf3, 0x67, +0x43, 0x8c, 0xa6, 0xe5, 0x8b, 0x57, 0x10, 0x54, 0x49, 0x6a, 0xd8, 0x7b, 0x08, 0x09, 0xd8, 0x28, +0xdd, 0x80, 0x27, 0x3f, 0x96, 0xe8, 0x0a, 0xf5, 0x98, 0x8c, 0x09, 0xb4, 0x3c, 0x06, 0x79, 0xc8, +0xe0, 0xfb, 0xda, 0xa1, 0xac, 0x29, 0xce, 0x9c, 0xab, 0x8b, 0xd4, 0xa6, 0x50, 0xca, 0xfe, 0xf5, +0xe6, 0x66, 0x4e, 0x5a, 0xd4, 0xfa, 0x49, 0x53, 0x2c, 0x1b, 0x3a, 0x46, 0x18, 0xe9, 0xf8, 0x5d, +0x76, 0x10, 0xf5, 0x3b, 0xad, 0x61, 0x65, 0xf2, 0xa0, 0x8e, 0xed, 0x0b, 0xdd, 0xe1, 0xa1, 0x77, +0x26, 0xed, 0xac, 0x80, 0xfc, 0x64, 0x9b, 0x1d, 0x00, 0x2f, 0x5a, 0x0f, 0x6f, 0xd4, 0xdf, 0xfb, +0x27, 0x7b, 0xd8, 0x23, 0x62, 0x5a, 0xd8, 0x55, 0xc8, 0xc9, 0x6d, 0x0a, 0x23, 0x28, 0x76, 0xe3, +0x50, 0x6d, 0x1e, 0x94, 0x12, 0xec, 0x17, 0x36, 0x18, 0x5d, 0xea, 0x33, 0xfa, 0x27, 0xc8, 0x89, +0x7f, 0x9e, 0xd0, 0x29, 0x6c, 0x89, 0xdd, 0x7e, 0x4e, 0x01, 0x01, 0x3c, 0x94, 0x4b, 0xe2, 0xa8, +0xf3, 0x34, 0xbc, 0xd8, 0xa6, 0xd4, 0x36, 0x69, 0x44, 0xfb, 0x88, 0x46, 0xa3, 0xf5, 0x85, 0xe4, +0x7e, 0x14, 0x13, 0x64, 0x21, 0x69, 0x7e, 0x3c, 0xdc, 0xa9, 0x6b, 0xa3, 0x2f, 0x66, 0xfe, 0xa2, +0xe6, 0xc5, 0x1c, 0xf7, 0xc7, 0xff, 0xaf, 0xc4, 0xdb, 0x1a, 0x39, 0x90, 0x98, 0x25, 0xa5, 0x5a, +0x98, 0x7b, 0xc2, 0x6d, 0x05, 0x57, 0x20, 0x4a, 0xf0, 0xbf, 0xcd, 0x74, 0x7b, 0xa0, 0x06, 0xaf, +0x07, 0x6e, 0x35, 0x16, 0xfb, 0xde, 0x72, 0xb7, 0x74, 0x17, 0x0f, 0xcf, 0x0d, 0x8f, 0x72, 0x1b, +0x89, 0x26, 0xcf, 0x0a, 0x92, 0x8d, 0xda, 0xe6, 0x2b, 0xec, 0xb7, 0x11, 0x3f, 0x25, 0xd0, 0x65, +0x91, 0x8c, 0x8f, 0x72, 0xd7, 0x04, 0x67, 0x4c, 0x0e, 0xf0, 0x36, 0x0f, 0x0a, 0xeb, 0x49, 0xb2, +0x3e, 0x6a, 0x44, 0xde, 0xb2, 0x7c, 0xce, 0xad, 0x2f, 0xac, 0xf8, 0xd2, 0xbf, 0x3c, 0xce, 0x0e, +0x65, 0x5e, 0x5c, 0x86, 0xa8, 0x4a, 0x9a, 0x1c, 0xcd, 0x48, 0x79, 0xc8, 0xbd, 0xd9, 0x67, 0xcb, +0x64, 0xe2, 0x36, 0x18, 0x87, 0x79, 0xa5, 0xc2, 0xb7, 0x12, 0x59, 0x9d, 0xa5, 0xe8, 0x32, 0x18, +0x07, 0x31, 0xfb, 0xce, 0xe2, 0x0a, 0x27, 0x9a, 0x6f, 0x18, 0x21, 0x0c, 0x6e, 0xb2, 0x7b, 0xf1, +0x13, 0x6b, 0x59, 0xe2, 0x26, 0xb7, 0x0f, 0xb1, 0x18, 0x4c, 0xfa, 0x00, 0xba, 0x97, 0x41, 0xe4, +0x86, 0x10, 0x36, 0x42, 0xca, 0x3e, 0x41, 0x69, 0x81, 0xaa, 0x81, 0xea, 0x61, 0x98, 0x56, 0x15, +0xeb, 0xf3, 0xe4, 0x38, 0x1d, 0x60, 0xee, 0x08, 0x4b, 0xd8, 0x48, 0x56, 0x3f, 0x34, 0x06, 0x6b, +0x50, 0x7c, 0xa7, 0x43, 0xa3, 0xb2, 0xe5, 0xfd, 0xde, 0x7e, 0xcd, 0xbd, 0xae, 0x09, 0x2d, 0xa5, +0x48, 0x45, 0x9a, 0x76, 0x76, 0x04, 0x8d, 0x5f, 0x22, 0x51, 0x6c, 0x3f, 0xe5, 0xe6, 0x97, 0x92, +0x4e, 0xe4, 0x29, 0xa7, 0x06, 0x80, 0xb1, 0x4b, 0xaf, 0xa4, 0x8f, 0x02, 0xbc, 0x42, 0xb3, 0xda, +0xbd, 0xf7, 0x2d, 0xad, 0x19, 0x8b, 0xe0, 0xd1, 0x55, 0x48, 0x3a, 0x24, 0x09, 0xd5, 0x5e, 0x88, +0x82, 0x9c, 0xeb, 0x5b, 0xdc, 0xe7, 0x9d, 0x95, 0x12, 0x16, 0xfe, 0x52, 0xb4, 0x20, 0x92, 0x10, +0xe4, 0xad, 0x07, 0x44, 0x88, 0xa4, 0x88, 0x91, 0xdb, 0xa4, 0xb0, 0x92, 0x41, 0xd4, 0x68, 0x52, +0xe9, 0xe0, 0xec, 0x20, 0x01, 0x9a, 0x20, 0xfe, 0xca, 0xf2, 0x64, 0xd8, 0x98, 0xca, 0xcd, 0x69, +0x1a, 0xa8, 0x72, 0x41, 0xc9, 0x35, 0xc5, 0xac, 0xf4, 0xd8, 0x49, 0xae, 0xec, 0xe9, 0xa8, 0xc4, +0x2a, 0x04, 0xf3, 0x7d, 0x79, 0x22, 0x11, 0x8e, 0xb6, 0xff, 0xec, 0x65, 0xe9, 0x86, 0xe4, 0xda, +0x07, 0x0f, 0x02, 0x29, 0x41, 0x06, 0xda, 0xf2, 0xa6, 0x37, 0x92, 0x8b, 0x13, 0x85, 0xbd, 0xe5, +0xb8, 0x94, 0x0e, 0x22, 0xbc, 0x25, 0x1f, 0x9e, 0x5c, 0xed, 0x50, 0x49, 0x32, 0x5e, 0x54, 0x25, +0x51, 0xfb, 0xe4, 0xd1, 0x64, 0x09, 0xad, 0x10, 0x04, 0x21, 0xec, 0x0c, 0xf1, 0x9e, 0xab, 0xaa, +0x5c, 0x8d, 0x46, 0x65, 0x7f, 0xab, 0x4c, 0x33, 0x5d, 0xda, 0xb8, 0xe5, 0xc4, 0xb7, 0x6f, 0x7b, +0x82, 0x85, 0xeb, 0x6e, 0x1f, 0x80, 0x64, 0x59, 0xd4, 0x33, 0x1f, 0x42, 0x03, 0xda, 0xb6, 0x2b, +0x6c, 0x0b, 0x15, 0x02, 0x06, 0xbf, 0x1e, 0xdf, 0x63, 0x52, 0x42, 0xf4, 0x5b, 0x45, 0xfa, 0x95, +0xc8, 0x64, 0xed, 0x66, 0x3a, 0x97, 0x66, 0x3e, 0xbb, 0x28, 0xf0, 0x26, 0x0c, 0x45, 0xe2, 0x50, +0xfa, 0x6b, 0x47, 0x3e, 0xe4, 0x5e, 0xc9, 0x58, 0x62, 0xae, 0x4a, 0x1a, 0xcc, 0x71, 0x98, 0xc4, +0x3b, 0x10, 0x2f, 0xf2, 0x6b, 0x3e, 0xe1, 0x78, 0x91, 0x24, 0x7a, 0x4c, 0xab, 0xeb, 0xc2, 0xad, +0xa2, 0x4e, 0x00, 0x76, 0xd8, 0xfa, 0x49, 0x9d, 0x80, 0x47, 0x04, 0x8c, 0xf3, 0x57, 0xa1, 0x0e, +0xe7, 0x75, 0xdf, 0xc2, 0x45, 0x5b, 0x4c, 0x2f, 0x4a, 0x64, 0xf5, 0x9e, 0x47, 0x18, 0x3c, 0x54, +0xc6, 0x6b, 0xa5, 0x5d, 0xce, 0xda, 0x0f, 0xcc, 0xea, 0xe7, 0xd0, 0x60, 0x5b, 0x2b, 0x18, 0xde, +0x63, 0xe8, 0x73, 0x26, 0xbe, 0xac, 0x46, 0x48, 0x60, 0x41, 0x5b, 0xc3, 0x27, 0x95, 0x84, 0x5f, +0x96, 0xdf, 0xac, 0x0b, 0xfc, 0xca, 0x9b, 0x6d, 0x13, 0x4a, 0xe8, 0x22, 0x8f, 0x27, 0xac, 0xad, +0x9a, 0x00, 0xcf, 0xe3, 0x24, 0xdb, 0x3a, 0xbc, 0xe2, 0xcb, 0x9e, 0xaf, 0x6e, 0x7f, 0xeb, 0x16, +0x67, 0x87, 0x09, 0xed, 0x4b, 0x44, 0x81, 0xc1, 0x8c, 0x8a, 0x21, 0x18, 0xc4, 0xb2, 0x6d, 0xf4, +0xe0, 0x37, 0xc1, 0x09, 0x50, 0x6a, 0x0a, 0x6f, 0xc2, 0x5b, 0x6a, 0xd0, 0xf1, 0xd3, 0x33, 0x2f, +0x9e, 0x98, 0x0a, 0xd9, 0xb5, 0x46, 0xc0, 0xe5, 0x84, 0xb5, 0xdd, 0x03, 0x0a, 0xbb, 0x9e, 0xa8, +0xfd, 0x8d, 0xcf, 0x8c, 0x37, 0x73, 0x72, 0x6c, 0x0d, 0xb5, 0x7d, 0x42, 0x2f, 0x08, 0xc5, 0x3e, +0x6c, 0xe7, 0xfb, 0x49, 0xee, 0x1f, 0x7d, 0x57, 0xef, 0xfd, 0xca, 0xea, 0x07, 0x09, 0x19, 0x71, +0x10, 0x6a, 0x38, 0x8b, 0xc8, 0x55, 0x2d, 0x20, 0x5e, 0x4e, 0xdf, 0xa9, 0x11, 0x5c, 0xb0, 0xf8, +0x47, 0x6e, 0xbb, 0xd5, 0x8f, 0x7a, 0x26, 0x2f, 0x63, 0x2d, 0xb9, 0xb4, 0xf1, 0x57, 0xfe, 0x95, +0xea, 0xef, 0xda, 0xb1, 0x73, 0x6a, 0xe9, 0x47, 0xf5, 0xf5, 0x98, 0x21, 0xb6, 0x2c, 0xd8, 0x58, +0xf3, 0xcf, 0x3b, 0xe5, 0x5b, 0x72, 0x36, 0xa6, 0x04, 0xaf, 0x2d, 0x8f, 0x28, 0xa1, 0xb6, 0x95, +0xb5, 0x1e, 0x97, 0x59, 0x06, 0xaf, 0x57, 0x77, 0x45, 0x7d, 0xd3, 0x70, 0x35, 0x7c, 0x54, 0x34, +0x97, 0x3b, 0xc5, 0xde, 0x05, 0x22, 0xd7, 0xc6, 0x11, 0xb9, 0xee, 0xd0, 0xfd, 0x01, 0xfa, 0x8d, +0x65, 0xe3, 0x70, 0x4d, 0xa3, 0x1c, 0x39, 0xf1, 0x21, 0x48, 0xc4, 0x5e, 0x2a, 0xdf, 0x7c, 0xbe, +0xbd, 0x5a, 0xb4, 0xaa, 0x36, 0x37, 0x09, 0x56, 0xcf, 0x35, 0x20, 0xc6, 0xfe, 0x78, 0xb4, 0x48, +0xaf, 0xee, 0x86, 0x14, 0x9c, 0x62, 0x99, 0x30, 0xa3, 0x52, 0xe2, 0x83, 0x8c, 0x51, 0xe2, 0x3d, +0xad, 0xb5, 0x78, 0xa4, 0x16, 0x3b, 0xe2, 0x2f, 0xbe, 0xc3, 0xb4, 0x5e, 0x8c, 0xd7, 0x86, 0x01, +0xaa, 0x2d, 0x2b, 0x2c, 0x0c, 0x06, 0x26, 0x66, 0xcf, 0x31, 0xb2, 0xb3, 0xb2, 0xee, 0xa6, 0xc7, +0xd4, 0x95, 0xd7, 0xf8, 0xda, 0xdf, 0x3b, 0x3f, 0x24, 0xa8, 0xe4, 0x0f, 0x48, 0xd0, 0x0d, 0x50, +0x43, 0x86, 0x6f, 0x1e, 0xf9, 0x25, 0xec, 0x9c, 0x40, 0xb1, 0x07, 0x99, 0x87, 0xec, 0x64, 0x1e, +0x26, 0x16, 0x9c, 0x16, 0xef, 0x76, 0x43, 0x10, 0x59, 0xbd, 0xba, 0x51, 0x82, 0xc3, 0xd1, 0xec, +0xdb, 0x4f, 0x1e, 0x39, 0xd4, 0xdd, 0x54, 0xdb, 0x74, 0xa7, 0x55, 0xc7, 0xfe, 0x8d, 0xef, 0xc1, +0x69, 0x15, 0x0b, 0x6c, 0x53, 0x5e, 0xd9, 0xb6, 0x16, 0x83, 0x5a, 0x40, 0x57, 0xf8, 0x94, 0x16, +0xe9, 0x52, 0x5d, 0xda, 0x7a, 0x52, 0xb0, 0x8d, 0xd7, 0x21, 0x25, 0xdb, 0x5f, 0xc7, 0x5f, 0xe0, +0x67, 0x17, 0x4c, 0x2d, 0xd7, 0x93, 0xae, 0xee, 0x77, 0xa7, 0xac, 0x0a, 0xdf, 0x1e, 0xe8, 0xc6, +0x77, 0x9e, 0x43, 0xb1, 0x8f, 0xff, 0xb2, 0x59, 0x32, 0x8a, 0x4a, 0x7a, 0xb0, 0x26, 0x33, 0x8d, +0x13, 0x0c, 0x8b, 0x25, 0x99, 0x1d, 0x3c, 0x4d, 0xc4, 0x8d, 0xd6, 0x3a, 0xcf, 0xf7, 0xb6, 0x27, +0xe0, 0xfc, 0x3c, 0xb1, 0xa7, 0x49, 0x6c, 0x96, 0x33, 0xa0, 0xb4, 0x63, 0xb1, 0x1f, 0xac, 0x58, +0x87, 0x37, 0xcf, 0x8a, 0x27, 0x38, 0xd8, 0x79, 0x6b, 0x7b, 0xa5, 0x9c, 0x26, 0x68, 0x71, 0x9b, +0x5a, 0x5a, 0x12, 0x38, 0x58, 0x22, 0xbf, 0x90, 0x44, 0x16, 0x12, 0x5a, 0x03, 0x55, 0xf6, 0xca, +0xb3, 0x9f, 0xa3, 0x70, 0x5e, 0xd0, 0xcf, 0x56, 0xf8, 0x53, 0xe1, 0xc1, 0xf6, 0x9e, 0xde, 0x77, +0xc4, 0x59, 0x4d, 0x91, 0x43, 0x0f, 0xb5, 0xbe, 0xe2, 0x01, 0x56, 0xfe, 0x70, 0x86, 0x8f, 0xdc, +0xd8, 0x4f, 0xad, 0x82, 0xc9, 0x61, 0xc0, 0x59, 0x2f, 0x91, 0x24, 0x62, 0x9e, 0xa9, 0x69, 0xb4, +0x7a, 0xe4, 0x82, 0x3e, 0xb5, 0x3d, 0x2e, 0x7c, 0xcc, 0x64, 0xbb, 0xf8, 0x70, 0x5a, 0x93, 0xa9, +0x76, 0x8b, 0xe2, 0x08, 0x30, 0xfb, 0xed, 0xb0, 0x48, 0x7d, 0xe7, 0x7c, 0x39, 0x76, 0x2a, 0x49, +0x5f, 0xec, 0xd7, 0x29, 0x39, 0x0d, 0x0b, 0x45, 0x66, 0x65, 0x48, 0xb0, 0x5c, 0x78, 0x97, 0x20, +0xe8, 0x35, 0xf0, 0x92, 0x39, 0x90, 0x4b, 0x56, 0x1a, 0x81, 0x90, 0xdc, 0x4f, 0x35, 0xbe, 0xd0, +0x14, 0x4b, 0x82, 0x23, 0x93, 0x0c, 0x74, 0xed, 0x64, 0xb6, 0xc3, 0x18, 0xe3, 0x41, 0xab, 0x42, +0x2e, 0xce, 0xa7, 0xb6, 0x11, 0xdf, 0x92, 0xa6, 0xbe, 0x5c, 0x11, 0xeb, 0xfd, 0x74, 0xde, 0x0e, +0xff, 0xe4, 0x02, 0x50, 0xb7, 0x47, 0xa9, 0xd8, 0x3f, 0x91, 0x94, 0x62, 0xbb, 0xfc, 0x66, 0xe5, +0xd7, 0xd6, 0x66, 0x06, 0xbc, 0xab, 0x8a, 0xb5, 0x82, 0x0e, 0x4a, 0xd8, 0x83, 0xa6, 0x8a, 0xea, +0xd4, 0x35, 0xe5, 0xa2, 0x75, 0xc9, 0xb5, 0x8e, 0x66, 0x7d, 0xf0, 0x25, 0x65, 0xe5, 0x18, 0x58, +0x25, 0xd3, 0xe3, 0xee, 0xc3, 0xb0, 0xf2, 0x89, 0xa6, 0x5f, 0x86, 0x8c, 0x78, 0xb0, 0x6c, 0xce, +0xd2, 0x11, 0x02, 0x40, 0xab, 0x4f, 0xd2, 0x64, 0x49, 0xa1, 0xd1, 0xfd, 0x9c, 0x7a, 0xd2, 0xc1, +0xd1, 0x91, 0xf2, 0x61, 0x42, 0x1e, 0xb9, 0x5b, 0x92, 0x51, 0xc9, 0x8b, 0x58, 0x44, 0x5d, 0xfc, +0x4a, 0xcd, 0x26, 0x02, 0x68, 0xe2, 0x44, 0x90, 0xce, 0x04, 0x87, 0x2c, 0xa0, 0x2b, 0xa0, 0xb9, +0xe8, 0x9d, 0x93, 0x3e, 0xa3, 0x62, 0xfb, 0xf2, 0x56, 0xf0, 0x57, 0x9f, 0xc8, 0x58, 0x78, 0x3b, +0x7f, 0x5a, 0x08, 0x08, 0xed, 0x48, 0xf7, 0x76, 0xc3, 0x83, 0xdb, 0xc2, 0xb9, 0xee, 0x56, 0x67, +0xac, 0x50, 0x43, 0x0c, 0x11, 0x59, 0xde, 0xf8, 0x5c, 0x00, 0xad, 0x43, 0xb1, 0xfb, 0xda, 0x66, +0x8a, 0x19, 0x04, 0xad, 0x4e, 0x1f, 0xef, 0x9c, 0xdc, 0x5c, 0xd2, 0x21, 0x7d, 0xbe, 0x7d, 0x6d, +0x5a, 0x97, 0x12, 0xc4, 0xd9, 0x15, 0x5f, 0x38, 0xb5, 0xbf, 0x31, 0xe0, 0x81, 0xe1, 0x68, 0xaf, +0xeb, 0xd9, 0x7d, 0x22, 0x4a, 0x3a, 0x42, 0x43, 0x84, 0x06, 0x2c, 0xa3, 0x29, 0x31, 0xee, 0x12, +0x23, 0x68, 0xfb, 0x52, 0x25, 0x85, 0x1e, 0x10, 0x2c, 0x6d, 0x29, 0xa9, 0xd8, 0xc1, 0x8e, 0x7c, +0x36, 0x4d, 0xde, 0x1a, 0x20, 0xc8, 0x4b, 0xf7, 0xcd, 0x63, 0x8c, 0xaa, 0xea, 0x0d, 0xda, 0x07, +0x61, 0x9b, 0xdb, 0x10, 0x0c, 0x21, 0xb4, 0xe8, 0x98, 0x4f, 0xa5, 0x76, 0x64, 0x25, 0xad, 0x31, +0xf7, 0xb8, 0x19, 0x01, 0xd6, 0x67, 0xd3, 0xba, 0x44, 0x31, 0xb5, 0x42, 0xcc, 0xcf, 0xf7, 0xc6, +0xe8, 0x3d, 0x8e, 0xac, 0x5c, 0xe0, 0x04, 0x62, 0x7a, 0xb3, 0x0c, 0x6e, 0x14, 0xd7, 0x26, 0x10, +0x9a, 0x8b, 0xd2, 0xc4, 0x4f, 0x33, 0x39, 0x43, 0x79, 0x1b, 0x8a, 0x9c, 0xc3, 0x4d, 0xf6, 0xd9, +0xa0, 0x4a, 0x7d, 0x3c, 0x85, 0xa6, 0x0f, 0xd9, 0xcf, 0xa4, 0x55, 0xdb, 0x41, 0x46, 0x23, 0xcf, +0xc6, 0x22, 0x21, 0x6b, 0xbd, 0xa6, 0xd9, 0x28, 0xeb, 0xc2, 0xc3, 0xac, 0x1e, 0x7e, 0xac, 0xe8, +0xbc, 0x45, 0xbd, 0xbf, 0x7a, 0x20, 0x7d, 0x12, 0x74, 0xe3, 0x20, 0xf5, 0x86, 0xcb, 0x3f, 0x58, +0xe2, 0x98, 0x17, 0xd3, 0x0a, 0x7a, 0x72, 0xd5, 0x04, 0x6d, 0x5d, 0x2e, 0x95, 0xef, 0x01, 0x98, +0x9d, 0x66, 0xa3, 0x82, 0x81, 0xc9, 0xfc, 0x8d, 0x95, 0x86, 0x75, 0xd8, 0xbc, 0x75, 0xa2, 0x48, +0x65, 0x0f, 0x1c, 0x81, 0x8d, 0x2e, 0xb9, 0x43, 0x5e, 0x42, 0xff, 0x10, 0xd1, 0xbb, 0xd9, 0x03, +0x79, 0x53, 0xaa, 0x60, 0x96, 0x5f, 0x37, 0x22, 0x81, 0xcf, 0xdb, 0x5e, 0xc2, 0x03, 0x61, 0x65, +0xe2, 0x37, 0xef, 0xbd, 0x19, 0x41, 0x8d, 0xd6, 0xfd, 0xe5, 0xb4, 0x16, 0x66, 0x9c, 0x48, 0xa0, +0xbb, 0x31, 0x03, 0xf6, 0x09, 0xb7, 0x62, 0xdd, 0xf2, 0x23, 0x66, 0x82, 0x58, 0xfb, 0xc3, 0x1e, +0xf2, 0xc4, 0x5e, 0xa7, 0xdc, 0x72, 0x7e, 0xe2, 0x97, 0xcd, 0xb8, 0xe5, 0x48, 0x84, 0x6a, 0x86, +0x70, 0x7d, 0xbe, 0xf9, 0x51, 0xa4, 0x76, 0xfa, 0x37, 0xfa, 0x5d, 0xd9, 0xba, 0x25, 0xcc, 0xab, +0xbc, 0x2e, 0x85, 0x18, 0xfc, 0xdb, 0x9b, 0x67, 0xf5, 0x3a, 0x40, 0xe8, 0xb9, 0x7d, 0x7e, 0x03, +0x2a, 0x21, 0x45, 0xb4, 0x19, 0x42, 0xa8, 0xab, 0x43, 0x95, 0xe3, 0x60, 0x45, 0x0e, 0x9b, 0xdf, +0xa9, 0xd5, 0x1a, 0xad, 0x58, 0x50, 0xa7, 0xe5, 0xe7, 0x17, 0xa5, 0xee, 0x87, 0xde, 0x96, 0xed, +0xc2, 0x9d, 0xe7, 0xcf, 0xf9, 0x1c, 0xa2, 0x16, 0x6d, 0xbd, 0xce, 0xa2, 0xac, 0xf5, 0xad, 0x57, +0x4f, 0xd0, 0xdf, 0xdc, 0x49, 0xf9, 0xda, 0x0c, 0xe2, 0x08, 0xa0, 0x4c, 0xb3, 0xf5, 0x69, 0x80, +0xe6, 0xd5, 0xea, 0x14, 0xa7, 0x43, 0x07, 0x64, 0x6b, 0x39, 0xba, 0xca, 0xd2, 0x86, 0x1e, 0x4f, +0x03, 0xd5, 0x5b, 0xcf, 0x65, 0xab, 0xfc, 0x0f, 0x14, 0x46, 0x60, 0x63, 0xf4, 0xb5, 0x92, 0x83, +0x04, 0xd5, 0x84, 0x38, 0x11, 0x2e, 0xde, 0x5d, 0x0d, 0x36, 0xa7, 0x75, 0x41, 0x4b, 0xe8, 0x42, +0x51, 0x81, 0x7c, 0x35, 0xf9, 0x0d, 0xc1, 0x78, 0x92, 0x63, 0xc7, 0x1a, 0x87, 0x93, 0x84, 0x8e, +0x0d, 0xd1, 0xd5, 0xe0, 0x4f, 0xbb, 0xc6, 0xbd, 0x6b, 0x9d, 0x63, 0x73, 0x7a, 0x81, 0xc5, 0x12, +0xbf, 0x0f, 0xa0, 0x54, 0x1a, 0x69, 0x75, 0xfe, 0x99, 0x66, 0x8a, 0x51, 0x06, 0xe9, 0xd6, 0x65, +0x4c, 0x3f, 0xc9, 0xe8, 0xcc, 0xa7, 0x76, 0xae, 0xd8, 0x72, 0x77, 0xcb, 0x58, 0x7a, 0x38, 0xec, +0x27, 0x99, 0xcb, 0xa5, 0x57, 0x76, 0xcb, 0xeb, 0x42, 0x2e, 0x6d, 0xfd, 0x71, 0xd3, 0x69, 0x7b, +0xc1, 0xd1, 0xa2, 0x60, 0x26, 0x4a, 0xe8, 0x00, 0xd0, 0xfa, 0x74, 0x1c, 0xd2, 0xde, 0xe8, 0x64, +0x35, 0xd9, 0x17, 0x8c, 0x60, 0x1a, 0xa4, 0xc6, 0x8e, 0xb8, 0xe1, 0xee, 0x21, 0xf3, 0x85, 0xd5, +0x63, 0x52, 0x3e, 0x7c, 0xa0, 0x22, 0x64, 0x85, 0xe1, 0x1d, 0x94, 0xcf, 0x9e, 0x7a, 0x11, 0x48, +0x82, 0xa5, 0x09, 0xfa, 0xe3, 0x98, 0x25, 0x28, 0x40, 0xf2, 0xbe, 0xcb, 0x58, 0x80, 0x12, 0x12, +0x03, 0x6a, 0x1b, 0x6f, 0x18, 0x7a, 0x1b, 0xc2, 0x75, 0x4f, 0x93, 0xce, 0x18, 0xef, 0xe9, 0xe3, +0x2b, 0x9e, 0xea, 0x97, 0x5d, 0xd0, 0x08, 0x76, 0x9c, 0xd7, 0x6c, 0xc7, 0x41, 0x94, 0x75, 0x12, +0xa3, 0x4e, 0xbf, 0xf0, 0x8c, 0x79, 0x77, 0x16, 0xf5, 0x51, 0xbd, 0xdc, 0x56, 0x3d, 0x31, 0x98, +0x9b, 0x8c, 0xb3, 0xc6, 0x15, 0x47, 0xfb, 0x95, 0xa1, 0xab, 0xd0, 0xc1, 0x88, 0xdb, 0x20, 0xbf, +0x76, 0x88, 0x80, 0x26, 0x3b, 0x45, 0xa6, 0x6e, 0x3b, 0x64, 0x1c, 0xa0, 0x1f, 0xc7, 0x4c, 0xd5, +0x4e, 0x84, 0x93, 0x61, 0x52, 0x82, 0xca, 0x45, 0x5d, 0xe9, 0x0e, 0xa2, 0x8f, 0x2d, 0x5b, 0xdd, +0x22, 0x49, 0x54, 0xc0, 0xcb, 0x7a, 0x9b, 0x65, 0xec, 0x97, 0xa7, 0x4c, 0xe4, 0xe7, 0xe0, 0x83, +0xe7, 0x0d, 0x18, 0x61, 0xbf, 0x47, 0x9a, 0xa7, 0x8f, 0x98, 0x3c, 0xef, 0xaa, 0xfe, 0xcf, 0x49, +0x1b, 0x00, 0xdf, 0x7f, 0x45, 0x51, 0x7e, 0xb4, 0x7f, 0xe5, 0xd0, 0xdf, 0x3c, 0x46, 0x99, 0xfe, +0xff, 0x92, 0xae, 0x6a, 0x59, 0x06, 0x8e, 0x1d, 0x5d, 0xf7, 0xb0, 0xc0, 0x55, 0x13, 0x4b, 0xe1, +0x3f, 0x72, 0xd5, 0x04, 0x83, 0xe4, 0xa8, 0x50, 0x20, 0x53, 0x04, 0x45, 0x47, 0xb7, 0xc5, 0x7f, +0x37, 0xfd, 0x0b, 0x56, 0x9b, 0xa0, 0x3d, 0x2b, 0xf6, 0xd5, 0x46, 0xbc, 0x18, 0x84, 0xdf, 0x9a, +0x00, 0x9f, 0x96, 0xf3, 0x7f, 0x92, 0x46, 0x14, 0x5a, 0xe9, 0xa2, 0x5c, 0x08, 0x47, 0x9e, 0x75, +0x22, 0xb7, 0xdf, 0x2b, 0x9b, 0xd5, 0x88, 0xaa, 0xca, 0xe5, 0x88, 0x5f, 0x1d, 0x3d, 0x8e, 0x21, +0x45, 0x0f, 0xa2, 0xd5, 0x38, 0xae, 0xe1, 0x61, 0xa6, 0x23, 0x78, 0x64, 0xc2, 0x3e, 0x71, 0x92, +0x77, 0x80, 0xad, 0x8f, 0xcd, 0x74, 0x4b, 0x53, 0xe1, 0x5f, 0x9e, 0x2c, 0x07, 0x14, 0xc3, 0xa2, +0x3f, 0x41, 0xc4, 0x00, 0xb2, 0xfb, 0x0b, 0xf1, 0xb9, 0x75, 0xa0, 0x9a, 0x53, 0x71, 0xca, 0x80, +0x09, 0x77, 0x56, 0xab, 0xe8, 0x56, 0x1b, 0x5c, 0x66, 0xfd, 0x5c, 0xf4, 0xda, 0x22, 0xc5, 0x7c, +0xe3, 0x07, 0x5e, 0xe8, 0x60, 0x6d, 0xb4, 0xf5, 0xd1, 0x97, 0xe0, 0x5f, 0xd2, 0x66, 0x49, 0xc7, +0xa1, 0x99, 0xa0, 0xc6, 0x52, 0xfe, 0x1b, 0xd5, 0xb0, 0xfc, 0xa4, 0xa8, 0x90, 0x78, 0xfe, 0xf6, +0x84, 0x1a, 0x96, 0xd9, 0x15, 0x48, 0xeb, 0x5d, 0x58, 0x38, 0xb7, 0x0c, 0x46, 0x38, 0x3c, 0x18, +0xad, 0x3a, 0x2f, 0x7d, 0x6d, 0x3d, 0x83, 0x2b, 0x06, 0x1a, 0x1c, 0x89, 0x15, 0x69, 0x5d, 0x8d, +0x78, 0xd0, 0x30, 0x4e, 0x24, 0xe0, 0x0f, 0x59, 0x47, 0xc2, 0x67, 0x71, 0x89, 0x2e, 0x54, 0x61, +0x62, 0x59, 0x6d, 0x57, 0x26, 0x74, 0x24, 0xee, 0xff, 0x20, 0xd8, 0x83, 0x1c, 0xb5, 0x81, 0xc6, +0x19, 0x3d, 0xdd, 0x85, 0xd5, 0xf9, 0x90, 0x43, 0x30, 0x94, 0x18, 0x7d, 0xdd, 0xec, 0x34, 0xf1, +0x5c, 0x47, 0xa9, 0x1a, 0xa4, 0x78, 0xdf, 0x38, 0x49, 0xf1, 0x5c, 0x2c, 0xc8, 0x4a, 0xe6, 0x4b, +0x7a, 0x0f, 0x63, 0xae, 0x0b, 0xf4, 0x12, 0x97, 0x6c, 0xe9, 0xad, 0x2f, 0x33, 0xd9, 0x45, 0xc0, +0x2f, 0x4d, 0x51, 0x72, 0x8e, 0xb1, 0xa4, 0xd1, 0x92, 0x45, 0x51, 0x1a, 0x50, 0x22, 0x79, 0xb7, +0xa5, 0x4d, 0xf0, 0xbd, 0x83, 0x55, 0x2e, 0x89, 0x72, 0xa9, 0x9c, 0x2c, 0x42, 0xa2, 0x93, 0x31, +0xb7, 0xe6, 0x43, 0x61, 0xa0, 0xd2, 0x4c, 0x9a, 0x68, 0x7c, 0x2e, 0xe9, 0x90, 0xa4, 0xa7, 0xc6, +0x6c, 0x31, 0x67, 0x1e, 0x3a, 0xa4, 0x6f, 0x7b, 0x93, 0x48, 0x4b, 0x3e, 0x52, 0x1c, 0x19, 0x27, +0x79, 0x2d, 0x4d, 0x7e, 0x1a, 0x29, 0x91, 0x4a, 0x72, 0xf6, 0x67, 0xb7, 0xf4, 0x06, 0x01, 0x4e, +0xfb, 0x3c, 0x67, 0x5d, 0x09, 0xc9, 0xce, 0xdb, 0x6b, 0x12, 0x05, 0xcc, 0x32, 0x0a, 0x95, 0xe0, +0x71, 0x58, 0x32, 0x9e, 0xc7, 0x41, 0x04, 0xcf, 0xe5, 0x3a, 0xd2, 0xff, 0x53, 0x4b, 0x39, 0x12, +0xba, 0x6c, 0x7d, 0xd0, 0x4e, 0xcf, 0x22, 0x62, 0x47, 0x48, 0xcf, 0x88, 0x1a, 0x30, 0x6a, 0x61, +0xc5, 0xa8, 0xa7, 0x2c, 0x46, 0xed, 0x4d, 0xf7, 0xff, 0xf7, 0xe2, 0xf2, 0x2d, 0xd7, 0x32, 0x99, +0x74, 0x7c, 0xe7, 0x63, 0x6f, 0x19, 0xee, 0xd1, 0x48, 0x19, 0xf7, 0x7d, 0x32, 0x61, 0x3f, 0x2c, +0x55, 0x35, 0xa1, 0xa9, 0x5c, 0x29, 0xf1, 0xa2, 0x48, 0xf2, 0x34, 0xed, 0x24, 0x4f, 0x14, 0x40, +0x2d, 0x40, 0xa5, 0x53, 0x09, 0x3c, 0x0c, 0xd1, 0xa9, 0xd2, 0x70, 0xb6, 0x9b, 0x4f, 0x62, 0x8b, +0x95, 0x86, 0xee, 0x78, 0x21, 0x05, 0x46, 0x00, 0xa2, 0x6b, 0xe2, 0x33, 0x9f, 0x24, 0x00, 0x9f, +0x10, 0x50, 0xd6, 0x78, 0xa6, 0xad, 0xbb, 0x5c, 0xd1, 0x9f, 0x7a, 0x6c, 0x81, 0xe6, 0x7f, 0x24, +0x21, 0xbd, 0x8d, 0x67, 0x1a, 0x5c, 0xf7, 0x55, 0xc9, 0x6c, 0x31, 0x46, 0xa9, 0x29, 0x2d, 0xd6, +0x6b, 0x15, 0x85, 0x88, 0xc6, 0xe4, 0xf9, 0xea, 0xfb, 0xdb, 0x53, 0x90, 0x89, 0xe3, 0xb7, 0xf8, +0x0f, 0x8b, 0xb5, 0xc8, 0x53, 0x21, 0xfd, 0x0b, 0xd7, 0xc8, 0xc9, 0x1b, 0x23, 0xab, 0xb2, 0x7f, +0xa5, 0xa2, 0x38, 0x43, 0xf3, 0x63, 0x12, 0xdb, 0xfd, 0x80, 0xfb, 0x5b, 0x01, 0xe9, 0x62, 0x5c, +0xb4, 0x14, 0x07, 0xea, 0x15, 0xbc, 0x57, 0x92, 0x12, 0xbc, 0x5f, 0x4d, 0x59, 0x1a, 0x49, 0x43, +0x08, 0x76, 0x83, 0x52, 0xb9, 0xe0, 0xdc, 0x40, 0x93, 0xd4, 0xc7, 0xd3, 0xd2, 0xd0, 0x93, 0xc8, +0x44, 0xfc, 0x76, 0x1b, 0x66, 0x08, 0xab, 0x43, 0x31, 0x9b, 0x95, 0x93, 0xb7, 0x89, 0x3c, 0x6c, +0xb7, 0xc8, 0x22, 0x5d, 0x08, 0x8c, 0x71, 0xfc, 0x75, 0x14, 0x53, 0x28, 0xb8, 0xcd, 0x94, 0x56, +0x9e, 0x02, 0x70, 0x3a, 0xc9, 0x45, 0x07, 0x5e, 0x3e, 0x97, 0xb3, 0x92, 0xc5, 0xed, 0x39, 0x90, +0x03, 0xc6, 0x09, 0x1b, 0xfd, 0x87, 0xf5, 0x04, 0xaf, 0xba, 0xbc, 0x82, 0x58, 0x86, 0xde, 0xa3, +0xd8, 0x63, 0xc0, 0x4c, 0x2d, 0xfd, 0xa0, 0xd8, 0x21, 0x97, 0x9f, 0x72, 0xd0, 0x5a, 0x18, 0x63, +0x30, 0x36, 0xea, 0xeb, 0x85, 0x87, 0xb2, 0xe3, 0x88, 0x0f, 0xe8, 0x7d, 0xef, 0x27, 0x69, 0xc9, +0xa5, 0x6a, 0x06, 0xe3, 0xa5, 0xf6, 0xb0, 0x71, 0x35, 0x69, 0x40, 0x85, 0x67, 0x08, 0xcd, 0xd9, +0x24, 0xa1, 0x75, 0x52, 0x04, 0x5d, 0x84, 0x89, 0x74, 0xb5, 0x1b, 0x8c, 0x6a, 0xb4, 0x6b, 0x24, +0x6c, 0xbe, 0x54, 0x20, 0x45, 0x95, 0x4e, 0x2d, 0x0d, 0x63, 0xb4, 0x20, 0xfe, 0xc9, 0xef, 0x79, +0x69, 0xe4, 0xe6, 0xa2, 0xa7, 0x7f, 0xe9, 0xdd, 0xae, 0x50, 0xd8, 0xde, 0xe3, 0x38, 0x4d, 0x83, +0x25, 0x39, 0x54, 0xbf, 0xc9, 0xc7, 0x2a, 0xd7, 0xdc, 0x9b, 0x25, 0x73, 0x78, 0x96, 0x95, 0x28, +0x37, 0x26, 0x38, 0xf1, 0x59, 0xfd, 0x0f, 0xc6, 0xa5, 0x56, 0x69, 0x77, 0x79, 0x6d, 0xe8, 0x22, +0xab, 0x7d, 0xf5, 0x48, 0x02, 0x5a, 0xa7, 0x72, 0xcd, 0x5a, 0x3f, 0x6c, 0x00, 0xa5, 0xc7, 0xfa, +0x95, 0x58, 0xa5, 0x5e, 0xc9, 0xb0, 0xa7, 0xd8, 0x37, 0x9b, 0x9e, 0xa5, 0x39, 0x1c, 0x72, 0x21, +0x5f, 0x80, 0x86, 0x72, 0x46, 0x75, 0xe9, 0xdd, 0x38, 0x79, 0x42, 0xdc, 0xb8, 0x1c, 0xd0, 0x04, +0xf4, 0xfe, 0x07, 0xe3, 0xcf, 0xa1, 0x58, 0x99, 0x26, 0xa5, 0x63, 0x4b, 0x07, 0x0c, 0x8d, 0x5f, +0x2e, 0x5c, 0x7a, 0x11, 0x69, 0x08, 0xb8, 0x8a, 0xd4, 0x91, 0x41, 0xaf, 0xd0, 0x89, 0x02, 0xd4, +0xc5, 0xc2, 0xf5, 0xa2, 0x39, 0x18, 0x5f, 0xa1, 0xac, 0x08, 0x75, 0x1b, 0xd2, 0xd2, 0x27, 0xa3, +0xcd, 0xe7, 0x30, 0xd4, 0x9e, 0xc2, 0x31, 0x5b, 0x63, 0x3b, 0x6c, 0x5c, 0x8b, 0x5b, 0x01, 0x39, +0x77, 0x29, 0x2e, 0xf9, 0x0a, 0xd8, 0xdc, 0xbf, 0x4a, 0xd9, 0x0a, 0x19, 0xbc, 0xef, 0xf3, 0x8f, +0x36, 0x3d, 0x3a, 0x1b, 0xad, 0xe5, 0x46, 0x36, 0xad, 0xa9, 0x6f, 0x99, 0x34, 0xad, 0xa7, 0x9f, +0x2d, 0xcd, 0x80, 0xd2, 0x3e, 0x45, 0xf2, 0xaa, 0x82, 0x28, 0xdc, 0xf2, 0xea, 0x6d, 0x60, 0x1c, +0x96, 0x11, 0x20, 0x33, 0xd1, 0x6e, 0xdb, 0x23, 0x88, 0x33, 0x2c, 0xfd, 0x5e, 0xe0, 0x0d, 0x62, +0xa6, 0xea, 0xe6, 0xb2, 0x8d, 0x6d, 0xdd, 0xeb, 0x92, 0xbe, 0x71, 0xbf, 0xdc, 0xc0, 0x70, 0x25, +0xcd, 0xb4, 0xec, 0xa5, 0x73, 0xb3, 0x79, 0x77, 0x3f, 0x9e, 0xcc, 0x3a, 0xf8, 0x35, 0xd2, 0x77, +0x77, 0xbe, 0xe7, 0xae, 0xcc, 0x61, 0x50, 0xb3, 0xfc, 0x00, 0x7c, 0x8a, 0xcd, 0xf3, 0xc9, 0xf5, +0x37, 0xde, 0xdb, 0xc7, 0xae, 0xd1, 0x63, 0xf2, 0xe3, 0x90, 0x66, 0x29, 0xe4, 0xc8, 0x70, 0x02, +0x6a, 0xc9, 0x57, 0x1b, 0x8f, 0xd9, 0x2e, 0x3c, 0xd6, 0x8e, 0xa4, 0x25, 0xaa, 0x88, 0x64, 0x08, +0xab, 0x57, 0x58, 0xc1, 0x40, 0xf0, 0xfd, 0x95, 0x6e, 0x1f, 0xb1, 0x60, 0x86, 0x97, 0x44, 0x12, +0x27, 0xf8, 0x38, 0x81, 0x26, 0xe0, 0x5e, 0xdc, 0x49, 0x1a, 0x7c, 0xa4, 0x56, 0x01, 0xfa, 0x8c, +0xe2, 0xb4, 0x91, 0x5d, 0xec, 0x9b, 0x44, 0xf8, 0x92, 0x35, 0x81, 0x82, 0xc3, 0x9d, 0x11, 0x73, +0x90, 0x47, 0x10, 0x92, 0xdc, 0xe0, 0xe5, 0x12, 0x34, 0x73, 0x8f, 0x75, 0xa9, 0xd1, 0xaa, 0x8f, +0x91, 0x06, 0xbc, 0x81, 0x6a, 0x85, 0x81, 0x89, 0xa2, 0xec, 0xa2, 0x81, 0x91, 0xbc, 0xa3, 0xb9, +0x64, 0x04, 0xd6, 0x3a, 0xd3, 0xe5, 0x2d, 0x20, 0x6e, 0xe5, 0x6f, 0x1f, 0x71, 0x15, 0xef, 0x8b, +0xdb, 0xf9, 0xed, 0x30, 0x2b, 0xad, 0xbf, 0xbd, 0xc2, 0x49, 0xf6, 0xfe, 0x4c, 0xde, 0xc5, 0xdd, +0x6d, 0x61, 0x7c, 0x79, 0xfb, 0xdb, 0x5f, 0xa9, 0xd7, 0x95, 0x8b, 0x50, 0x14, 0x64, 0xc7, 0x4a, +0xc5, 0xaf, 0xd7, 0x03, 0x81, 0x65, 0x65, 0x4b, 0xc7, 0x5a, 0x56, 0x0a, 0x82, 0x15, 0xc9, 0x68, +0xec, 0xf4, 0x26, 0x72, 0x7d, 0xde, 0xbf, 0x37, 0x12, 0xb2, 0x1f, 0xad, 0xaa, 0xaa, 0x6b, 0xcd, +0xff, 0x63, 0x58, 0x15, 0xe9, 0x36, 0xe0, 0xd6, 0x6f, 0xc4, 0x09, 0x9d, 0x63, 0x9e, 0xd3, 0x37, +0x90, 0xa0, 0x4e, 0x84, 0x18, 0x08, 0xd2, 0x02, 0xa7, 0xd4, 0x0d, 0x9e, 0xb7, 0x8e, 0x09, 0xd4, +0x2f, 0xb0, 0xc2, 0x41, 0x92, 0xe3, 0xe9, 0xe0, 0xcc, 0xf3, 0x30, 0xdd, 0x9c, 0xe5, 0x97, 0x3e, +0xff, 0xfd, 0x19, 0xfe, 0xfb, 0x89, 0xa4, 0x17, 0xbf, 0x53, 0x38, 0xc9, 0x99, 0x32, 0x1a, 0x12, +0x11, 0x52, 0x0f, 0x93, 0x90, 0xfe, 0x27, 0xff, 0xb4, 0x71, 0x03, 0xd5, 0x8c, 0x05, 0xab, 0x7f, +0x47, 0x1b, 0x91, 0x3a, 0xfe, 0x84, 0x5e, 0x5e, 0xd2, 0xc6, 0x59, 0xd0, 0x91, 0xc4, 0x79, 0x8c, +0x11, 0xab, 0xe5, 0x1e, 0x89, 0x18, 0x0f, 0x80, 0x2c, 0xf3, 0x35, 0x3a, 0x67, 0xab, 0x33, 0x1b, +0x98, 0x94, 0x74, 0xc7, 0x86, 0x13, 0x32, 0x28, 0xed, 0x17, 0x5e, 0xec, 0x6a, 0x1b, 0x25, 0xe4, +0x03, 0xbe, 0xbc, 0x76, 0x10, 0x01, 0xb7, 0xd7, 0x8c, 0xb0, 0x9d, 0xc3, 0x5d, 0x32, 0x8f, 0x6b, +0xce, 0x3c, 0x8e, 0x5f, 0x77, 0xde, 0x8c, 0x30, 0x7a, 0xce, 0xf3, 0xb1, 0x86, 0x5e, 0x86, 0xd6, +0xb7, 0x3e, 0xf0, 0x03, 0x30, 0x1f, 0x8e, 0x5b, 0xd6, 0x33, 0xd0, 0xc0, 0xb7, 0x88, 0x82, 0x9f, +0xf5, 0x17, 0x85, 0xd0, 0xa5, 0x69, 0x84, 0x07, 0xbd, 0x35, 0x6a, 0x69, 0x3c, 0x0b, 0xf7, 0xf5, +0xb4, 0x30, 0x6f, 0x44, 0xfd, 0x50, 0xf2, 0x31, 0xa3, 0xc2, 0x12, 0x17, 0x0b, 0xfe, 0xc2, 0x5e, +0x2c, 0x80, 0x82, 0x37, 0x64, 0xa7, 0x23, 0xc3, 0x93, 0x9e, 0xee, 0x6f, 0xdb, 0x05, 0x65, 0xd8, +0xe2, 0xb8, 0x41, 0xed, 0xfb, 0x2f, 0x65, 0x3a, 0xe5, 0xca, 0xc7, 0x3c, 0x23, 0xd1, 0x2e, 0x0a, +0x7b, 0x5f, 0xbd, 0xc7, 0x3e, 0x06, 0xd1, 0x40, 0x1b, 0x6a, 0xdd, 0x26, 0xff, 0x8c, 0xc3, 0xfc, +0x90, 0xc5, 0x58, 0xe9, 0x85, 0xb8, 0xcd, 0x2c, 0x13, 0x17, 0x71, 0x5b, 0x6f, 0x04, 0x21, 0xb6, +0xaf, 0x3d, 0x57, 0x69, 0x39, 0xd3, 0xeb, 0xc8, 0xee, 0xef, 0x7e, 0xf0, 0xaa, 0xcd, 0x55, 0x41, +0x5e, 0x9e, 0x74, 0x86, 0x47, 0xcb, 0xc9, 0xbb, 0x1b, 0xdf, 0x07, 0x58, 0x56, 0x37, 0x20, 0x58, +0x62, 0x2e, 0xc1, 0x8b, 0xa2, 0xa4, 0x4d, 0x37, 0x47, 0x4b, 0x3d, 0xfd, 0xac, 0x59, 0xf2, 0x1c, +0xd9, 0x22, 0xda, 0x35, 0xb6, 0xd1, 0x9e, 0x34, 0x9b, 0x78, 0x6f, 0xa8, 0x69, 0x00, 0x3b, 0x2c, +0x49, 0x44, 0xb7, 0xde, 0x69, 0x88, 0x85, 0x29, 0xd4, 0x75, 0xaa, 0xd0, 0x04, 0xe9, 0x3f, 0xbe, +0xb9, 0xdb, 0x8d, 0x98, 0xc1, 0x2f, 0x39, 0x4f, 0xdc, 0x04, 0x87, 0x42, 0x43, 0x42, 0x7b, 0x8f, +0xee, 0xd7, 0x0f, 0x80, 0xbf, 0x00, 0xdd, 0xa4, 0x1a, 0xed, 0xc7, 0xb1, 0x7c, 0x03, 0xf4, 0xb2, +0xcc, 0x73, 0x8b, 0x03, 0x56, 0x79, 0x5b, 0x62, 0x6b, 0x5c, 0x0e, 0xdd, 0x13, 0x6d, 0x24, 0x16, +0xe2, 0xdd, 0x8c, 0xb5, 0xbd, 0x44, 0xf1, 0x65, 0x58, 0x3b, 0x55, 0xf4, 0xb0, 0xf9, 0x14, 0x76, +0xec, 0x7c, 0x59, 0x3c, 0xce, 0xb3, 0xe2, 0x73, 0x71, 0x2f, 0xa1, 0x36, 0x1d, 0x8c, 0x0c, 0xdf, +0xcd, 0x4b, 0x90, 0xe2, 0xd6, 0x74, 0x04, 0x29, 0x88, 0xee, 0xbb, 0x42, 0x20, 0x89, 0x73, 0x66, +0x2a, 0x96, 0x63, 0x4c, 0x37, 0x6c, 0x1b, 0x1f, 0x76, 0xde, 0xb3, 0xec, 0xdf, 0x5a, 0x4a, 0xc4, +0xc1, 0x31, 0x86, 0xb5, 0x30, 0x65, 0xc1, 0x1e, 0xfb, 0x04, 0xf7, 0x63, 0xb8, 0xa4, 0xd4, 0xe6, +0x9d, 0x63, 0xda, 0xf4, 0x9e, 0xda, 0x83, 0xcf, 0x93, 0xa8, 0xcc, 0x04, 0x0f, 0xff, 0x40, 0x71, +0x47, 0x1a, 0x30, 0x50, 0xad, 0x30, 0xbe, 0x1d, 0x51, 0x2a, 0xa1, 0xbf, 0xea, 0x67, 0x75, 0xcd, +0x0b, 0x31, 0xf1, 0x90, 0xf7, 0xde, 0x0b, 0x35, 0xd7, 0x1f, 0x14, 0x17, 0xbe, 0xc7, 0x83, 0xc2, +0x83, 0x0e, 0x20, 0x69, 0x8c, 0x17, 0x6e, 0xcf, 0x38, 0x37, 0x9a, 0xd6, 0x65, 0x1e, 0x03, 0x32, +0x9a, 0x9d, 0x09, 0x6e, 0x2c, 0x59, 0xcb, 0xc9, 0xaf, 0xfa, 0x0f, 0xfd, 0x23, 0xdf, 0x0c, 0x7a, +0x16, 0x24, 0x52, 0x7d, 0x29, 0xb7, 0x56, 0x13, 0xeb, 0xc7, 0x16, 0xb4, 0xc7, 0x96, 0x7c, 0x9b, +0x84, 0xe3, 0x97, 0x9d, 0x8b, 0xba, 0xd5, 0xaf, 0xc1, 0x90, 0xa7, 0xfb, 0x51, 0xf7, 0xbb, 0x14, +0x56, 0x24, 0x9f, 0xa5, 0xc8, 0x45, 0x02, 0x4a, 0xc2, 0x06, 0x2d, 0x0a, 0xa0, 0x34, 0xcd, 0xe5, +0xfd, 0x5f, 0x91, 0x03, 0xc1, 0x04, 0x69, 0x93, 0x83, 0xab, 0x13, 0xeb, 0xbd, 0x8b, 0x3b, 0x6d, +0xcc, 0x5c, 0xe1, 0x97, 0x6d, 0xed, 0x17, 0x39, 0x96, 0x01, 0xd3, 0xd1, 0xa5, 0x4e, 0x8f, 0x44, +0x7e, 0x88, 0xbe, 0xde, 0x66, 0xa4, 0xd7, 0x40, 0x51, 0xeb, 0xbe, 0x6a, 0x81, 0xa0, 0x41, 0x5f, +0xd6, 0xa9, 0x44, 0x85, 0xb3, 0x25, 0x72, 0x18, 0xd2, 0x80, 0xe1, 0x80, 0xa0, 0x42, 0x4c, 0xd2, +0x2e, 0x0f, 0xf7, 0x77, 0xe2, 0xe1, 0x10, 0x00, 0x9a, 0x2b, 0xf8, 0x45, 0xb3, 0xf9, 0xab, 0x91, +0x84, 0x56, 0x65, 0xd4, 0xef, 0x57, 0xff, 0x16, 0x29, 0x3a, 0x26, 0x6a, 0xe6, 0xe9, 0x31, 0x8c, +0x41, 0x00, 0x92, 0x57, 0x86, 0xbd, 0x12, 0xf0, 0x57, 0xaf, 0x51, 0xb2, 0x62, 0x8c, 0xa3, 0x9f, +0xc9, 0x59, 0x05, 0xa9, 0xa1, 0x56, 0x6a, 0x52, 0x63, 0x73, 0xdc, 0xf2, 0xc9, 0x15, 0xe6, 0x02, +0x3f, 0x59, 0xd1, 0xa5, 0xc4, 0xce, 0x3a, 0x6e, 0x96, 0x48, 0xd2, 0x0d, 0xd0, 0xbb, 0x70, 0xab, +0xd1, 0xb8, 0xc0, 0x16, 0x61, 0xd9, 0x5b, 0x42, 0x74, 0xc1, 0x41, 0xa0, 0xf3, 0x8e, 0x92, 0x13, +0x10, 0x32, 0x7b, 0xc2, 0x2a, 0x4f, 0x45, 0x02, 0xff, 0x7d, 0x7e, 0xbf, 0x93, 0x47, 0x99, 0xa0, +0x32, 0xfb, 0xca, 0x72, 0x23, 0x4d, 0xf6, 0x75, 0xf0, 0xa8, 0xba, 0x01, 0x84, 0x4d, 0x4e, 0x75, +0xc8, 0x2b, 0xa6, 0x0a, 0x2a, 0x23, 0xac, 0x67, 0x33, 0x24, 0x9f, 0x02, 0x5d, 0x28, 0x06, 0x1c, +0xa1, 0x5e, 0x8a, 0xfa, 0xcc, 0x6f, 0x0c, 0x85, 0x51, 0xd6, 0x57, 0x61, 0x6f, 0x46, 0xdb, 0xef, +0xbe, 0xf0, 0x91, 0x76, 0x65, 0x7c, 0x90, 0x7c, 0x31, 0x00, 0x38, 0xdd, 0xd4, 0xa0, 0xcb, 0x53, +0x1d, 0x3b, 0x51, 0x8c, 0x6c, 0x9f, 0xa4, 0x4e, 0x86, 0xe1, 0x3c, 0xa3, 0x96, 0x73, 0x9d, 0x75, +0xd4, 0x3c, 0x91, 0x6f, 0x87, 0xc6, 0x24, 0x9e, 0x72, 0x55, 0xca, 0x85, 0xf1, 0xf0, 0x9e, 0x23, +0x37, 0x39, 0xd2, 0x2e, 0x2f, 0xcf, 0x68, 0x01, 0x92, 0x71, 0x70, 0x7a, 0x16, 0x27, 0x7f, 0x0e, +0x61, 0x32, 0xe8, 0x5e, 0x7a, 0x62, 0xe2, 0x2d, 0x83, 0x2e, 0x20, 0xde, 0x2b, 0xfc, 0xff, 0x2d, +0x55, 0xe2, 0x33, 0x35, 0x48, 0xf5, 0x28, 0xed, 0x2c, 0x48, 0x94, 0xf9, 0xc5, 0x6f, 0x89, 0xa2, +0xd3, 0x76, 0x63, 0x0c, 0xfe, 0xc8, 0xa5, 0x6a, 0x5d, 0x9d, 0x67, 0xf5, 0xb3, 0xfa, 0x39, 0x6b, +0x7b, 0x58, 0x4c, 0xa3, 0xe2, 0xf7, 0x88, 0x00, 0x03, 0xc3, 0xce, 0x85, 0xd4, 0x41, 0x21, 0x71, +0x25, 0x72, 0x6c, 0x41, 0x4a, 0x5b, 0x23, 0xf6, 0xf4, 0x30, 0x74, 0x97, 0xf3, 0xc8, 0x64, 0x60, +0x95, 0x27, 0x93, 0x62, 0x4c, 0x54, 0xd9, 0x2a, 0x36, 0x8b, 0xc9, 0x42, 0x8b, 0x6e, 0xbd, 0xea, +0xd7, 0x78, 0x36, 0x2d, 0xba, 0xa2, 0xf7, 0x18, 0xdf, 0xc3, 0xc3, 0x90, 0x2e, 0x78, 0x55, 0x8d, +0x43, 0x47, 0x02, 0x0f, 0x9a, 0xc9, 0x90, 0xf9, 0xed, 0x25, 0x15, 0x80, 0x03, 0x72, 0x30, 0x33, +0xff, 0xfd, 0x8a, 0xf2, 0x9e, 0x7d, 0xcc, 0x6d, 0x35, 0x37, 0x0b, 0xa8, 0xe7, 0xdd, 0x40, 0x84, +0xbd, 0xef, 0x4b, 0xc5, 0x8e, 0xf7, 0xaa, 0x78, 0xcf, 0x0d, 0xa9, 0x98, 0x73, 0x48, 0x4d, 0x46, +0x51, 0x46, 0xc8, 0xeb, 0x15, 0x08, 0x42, 0xa1, 0xf4, 0x52, 0x3f, 0xc0, 0x83, 0x3a, 0x79, 0x30, +0xd2, 0x5d, 0x9d, 0x97, 0x9e, 0x49, 0x19, 0x13, 0x5f, 0xd6, 0x6b, 0x33, 0xd4, 0x82, 0x5d, 0x8d, +0xcf, 0x51, 0xb7, 0x0f, 0xf2, 0x89, 0x1a, 0x47, 0x63, 0xbd, 0xa9, 0xe5, 0x87, 0x7f, 0x1c, 0x85, +0xb9, 0xce, 0xf9, 0xbc, 0x47, 0x47, 0xb3, 0xc7, 0xb4, 0xa1, 0xea, 0x8e, 0xf0, 0x95, 0x10, 0xae, +0xbd, 0x90, 0xe2, 0x1b, 0x8f, 0x75, 0xa7, 0x2e, 0x23, 0x12, 0xaf, 0xb9, 0x7c, 0x32, 0xd9, 0xa9, +0x80, 0xbd, 0xed, 0x57, 0x5c, 0x2e, 0x92, 0x53, 0x86, 0xbc, 0xfc, 0x6d, 0x21, 0x9f, 0x47, 0xfb, +0xb6, 0xce, 0xaa, 0xde, 0xf6, 0xd6, 0xf4, 0x67, 0x96, 0x14, 0x12, 0xf3, 0x3b, 0x9f, 0x76, 0xcf, +0x38, 0xa1, 0x96, 0x06, 0x10, 0xae, 0xc1, 0x2a, 0x77, 0x6e, 0x69, 0xd7, 0x28, 0x18, 0x8d, 0x1e, +0xd2, 0x6b, 0xcf, 0x01, 0x8d, 0xab, 0x43, 0xd5, 0x82, 0x02, 0xa1, 0x4b, 0xcb, 0x3d, 0xf5, 0xf8, +0xb2, 0x8f, 0x4e, 0x75, 0xc1, 0x40, 0x28, 0x38, 0xff, 0x18, 0x05, 0x4a, 0x2d, 0x12, 0xb8, 0x75, +0xda, 0x5e, 0xe6, 0xc3, 0x7a, 0x29, 0xb7, 0xd4, 0x2d, 0x03, 0x16, 0x3e, 0x12, 0x9b, 0x78, 0xa2, +0x86, 0x43, 0x61, 0xdf, 0xe4, 0x78, 0x7b, 0x8c, 0xed, 0x69, 0xb4, 0x90, 0xc4, 0x09, 0x4e, 0x6c, +0x01, 0xd0, 0xa5, 0xe3, 0xbf, 0xdf, 0x54, 0x15, 0x03, 0x49, 0xb7, 0xc9, 0xf1, 0x6d, 0x83, 0xef, +0xf8, 0x33, 0x32, 0x87, 0x05, 0x12, 0x11, 0xfa, 0x80, 0xb3, 0x06, 0xc8, 0x37, 0xf0, 0x9d, 0xba, +0xf0, 0xc0, 0xf5, 0x76, 0x04, 0xed, 0xb2, 0xce, 0x1f, 0x04, 0x8f, 0x8f, 0x1a, 0x35, 0x4b, 0xe8, +0xf1, 0x6d, 0xc0, 0x58, 0xd3, 0xa9, 0xb7, 0xe1, 0x04, 0x8b, 0x6d, 0xd3, 0x61, 0x6b, 0x28, 0x0e, +0x4a, 0x8e, 0x9f, 0x95, 0xc6, 0xfa, 0x17, 0x7a, 0x97, 0xe1, 0x3d, 0x06, 0xee, 0xaa, 0xb0, 0x54, +0x66, 0x32, 0x56, 0x6c, 0x2a, 0x57, 0x14, 0x81, 0x1c, 0xa3, 0x03, 0x5e, 0x46, 0x79, 0x7c, 0xc0, +0x02, 0x9c, 0x95, 0x3d, 0xa0, 0xe4, 0x59, 0x79, 0x63, 0x02, 0x02, 0x82, 0x83, 0x96, 0x78, 0xe9, +0x7e, 0x33, 0x9e, 0x30, 0x4a, 0xaf, 0x55, 0xaf, 0x0e, 0x7d, 0x65, 0x89, 0x29, 0xeb, 0x19, 0x0a, +0x8d, 0x77, 0xe6, 0x23, 0xfb, 0x7a, 0x17, 0x22, 0x40, 0x68, 0x50, 0xc9, 0x77, 0x31, 0x2e, 0x18, +0x17, 0x11, 0x67, 0x05, 0xb8, 0xbb, 0xa2, 0x89, 0x6f, 0x62, 0x1e, 0xf4, 0x77, 0x9c, 0x12, 0x91, +0xdd, 0xc5, 0xe5, 0x37, 0x87, 0x8e, 0x88, 0x1f, 0x49, 0xe6, 0x6a, 0xcb, 0x70, 0x7d, 0x96, 0xf6, +0x77, 0xd1, 0x80, 0x78, 0x68, 0x6d, 0xff, 0xeb, 0x23, 0x1e, 0xc3, 0xbd, 0x88, 0x6a, 0x93, 0x12, +0x24, 0x18, 0xd0, 0xbc, 0x71, 0x32, 0xd0, 0x5e, 0xb2, 0xf6, 0x9e, 0x66, 0x33, 0x80, 0xc8, 0xf7, +0x8f, 0x2d, 0xfb, 0x4f, 0x60, 0x9f, 0x7d, 0x64, 0x70, 0xf3, 0xf9, 0x8c, 0x20, 0x18, 0x4a, 0x32, +0x0e, 0xe9, 0xb2, 0xa8, 0xce, 0xf8, 0xb5, 0x42, 0xef, 0x17, 0x16, 0x62, 0x42, 0xeb, 0x12, 0xee, +0x0c, 0x56, 0x5b, 0x50, 0xda, 0xed, 0x2f, 0xc5, 0xe2, 0x31, 0x08, 0x7b, 0x25, 0x86, 0x1e, 0x17, +0xca, 0x31, 0x34, 0x8b, 0xfd, 0x4d, 0x5b, 0xa1, 0xd7, 0x8c, 0x64, 0xea, 0xf5, 0x31, 0xbf, 0xdd, +0x02, 0xe0, 0xf1, 0x1f, 0xe2, 0x05, 0xa6, 0xdd, 0x65, 0xcb, 0x39, 0x77, 0x59, 0xc9, 0x02, 0x1f, +0xe9, 0xd0, 0x94, 0xc5, 0x91, 0x30, 0xd1, 0xe9, 0x95, 0x0d, 0xba, 0x88, 0xae, 0xac, 0x08, 0x47, +0x56, 0x0e, 0xea, 0x14, 0x61, 0x10, 0xce, 0x01, 0x4e, 0xdb, 0x43, 0xe0, 0x47, 0xed, 0x96, 0x11, +0xe7, 0x0b, 0x44, 0xa0, 0xb8, 0x3a, 0x75, 0x76, 0xc8, 0xbf, 0x34, 0xb8, 0x28, 0x0b, 0x02, 0x78, +0xc2, 0x12, 0x1e, 0x4c, 0x5b, 0x7f, 0x2f, 0x80, 0x77, 0x0e, 0xe8, 0xa7, 0xf3, 0x77, 0xa1, 0x12, +0x59, 0x75, 0x93, 0x29, 0x35, 0xa3, 0xef, 0xcc, 0xfd, 0x5c, 0x0e, 0xc5, 0x4a, 0xc3, 0x0b, 0xaa, +0x1e, 0xe1, 0x43, 0x86, 0xb6, 0x18, 0x6b, 0xee, 0xc5, 0xa6, 0x58, 0xf7, 0x2f, 0xc0, 0x79, 0x05, +0xfe, 0x45, 0xf7, 0x1f, 0xd3, 0x25, 0x33, 0x06, 0x9a, 0xd9, 0x7a, 0x8d, 0x12, 0xd5, 0xb0, 0xe6, +0xa3, 0x0c, 0xf3, 0x7a, 0xcb, 0x92, 0x1d, 0xf1, 0xdb, 0x39, 0x2b, 0xf5, 0x0b, 0x73, 0x05, 0x58, +0x94, 0x69, 0x28, 0x30, 0xb4, 0x4f, 0x5b, 0x5c, 0x61, 0x32, 0xed, 0x00, 0xb8, 0xac, 0xef, 0x97, +0x32, 0x83, 0x03, 0x5d, 0x67, 0x79, 0x26, 0xd3, 0x7f, 0x6f, 0x82, 0xf2, 0x66, 0x75, 0x9a, 0xf1, +0x43, 0xb1, 0x08, 0x65, 0x5d, 0x7a, 0x22, 0x89, 0x0e, 0x41, 0xdf, 0x9b, 0xb7, 0x82, 0xb2, 0xe6, +0x55, 0xd2, 0xb7, 0xd6, 0x16, 0x8b, 0x89, 0x5e, 0xfb, 0x38, 0xeb, 0x4b, 0xf1, 0x87, 0x96, 0x9d, +0x62, 0x67, 0x71, 0x49, 0x18, 0x94, 0x61, 0x4c, 0xd8, 0x26, 0xab, 0x65, 0x34, 0xcd, 0x7e, 0x76, +0x83, 0x57, 0x83, 0x2e, 0xec, 0x4c, 0xc3, 0x5a, 0xa1, 0xf3, 0xb1, 0xee, 0xdb, 0xfd, 0x6c, 0xd0, +0xc6, 0x3a, 0x33, 0xe4, 0x57, 0xdb, 0xee, 0x4c, 0x65, 0x02, 0x95, 0xca, 0xa4, 0x73, 0x49, 0xea, +0x40, 0x3c, 0x99, 0xc9, 0x50, 0x36, 0x6c, 0x98, 0x9c, 0x98, 0x88, 0xf4, 0xbd, 0xdd, 0x80, 0xde, +0x64, 0xaa, 0x47, 0x69, 0x37, 0x06, 0x49, 0xb5, 0xfa, 0x6d, 0x48, 0x9f, 0x2e, 0xd5, 0x8b, 0xb3, +0x1a, 0x8e, 0xe6, 0xe2, 0x29, 0xf9, 0x74, 0x6c, 0x6b, 0xf9, 0x48, 0xd2, 0x41, 0x79, 0xc1, 0xdf, +0x57, 0x93, 0x62, 0x56, 0xe7, 0x5c, 0x1a, 0x33, 0x0c, 0xea, 0xb6, 0xa1, 0x55, 0x14, 0x33, 0xf3, +0x86, 0xb9, 0xa3, 0x38, 0x70, 0x38, 0x28, 0xab, 0x6f, 0x90, 0x33, 0xf1, 0x95, 0xaa, 0x01, 0xb2, +0x66, 0x09, 0xde, 0x1a, 0x87, 0x6f, 0x4d, 0xbe, 0xdf, 0x10, 0x2f, 0xc4, 0x93, 0xd7, 0xb8, 0x16, +0xad, 0xbc, 0xc4, 0xb5, 0x80, 0xce, 0x94, 0xbb, 0x90, 0x70, 0xb1, 0xca, 0x69, 0xeb, 0x97, 0x18, +0x0b, 0xa6, 0xc9, 0x6f, 0x30, 0x35, 0x2f, 0x17, 0x99, 0xbd, 0x37, 0xd7, 0x70, 0x2c, 0x2a, 0x7c, +0x38, 0xe2, 0x03, 0x11, 0xeb, 0x2a, 0xa6, 0xb8, 0x7d, 0xd5, 0xb6, 0x32, 0xbf, 0x8c, 0x4c, 0xd5, +0xd4, 0xf9, 0x9b, 0xba, 0x64, 0x51, 0xce, 0xab, 0xa4, 0x00, 0xdf, 0xd2, 0xd9, 0x9b, 0xaf, 0x24, +0x67, 0xfe, 0x28, 0x95, 0x80, 0x16, 0x39, 0x73, 0xcb, 0xdc, 0x9b, 0x37, 0x1c, 0x65, 0xd7, 0xe2, +0x55, 0x44, 0x93, 0x51, 0x69, 0x30, 0x18, 0xd8, 0x09, 0x33, 0x12, 0x22, 0x4a, 0xb0, 0x87, 0x4b, +0xae, 0xe3, 0x21, 0xfa, 0x15, 0x21, 0x34, 0xd2, 0x02, 0x01, 0x63, 0x34, 0x7a, 0x6c, 0xc1, 0x72, +0x88, 0xcd, 0xf5, 0x38, 0xa4, 0x0e, 0x2a, 0xf0, 0xfe, 0x70, 0x8c, 0x2d, 0x36, 0xdc, 0x95, 0x17, +0x6d, 0x22, 0x09, 0xa2, 0xf0, 0x1a, 0x5b, 0x42, 0xb5, 0x5b, 0x8b, 0x82, 0x91, 0x01, 0x1c, 0x40, +0x8a, 0x3e, 0x3e, 0x0e, 0x56, 0x4a, 0x4c, 0xcd, 0xbd, 0x8b, 0x15, 0x03, 0x7a, 0x36, 0xc1, 0x42, +0x69, 0xe6, 0x94, 0x79, 0xbe, 0x30, 0xda, 0xe8, 0xd9, 0x75, 0xf0, 0x0e, 0x5e, 0x1c, 0x0e, 0xa2, +0xff, 0x92, 0x75, 0x9f, 0x7e, 0xfb, 0xc7, 0x1a, 0x37, 0xf8, 0xb0, 0xfa, 0xea, 0x2a, 0x73, 0x61, +0x07, 0x74, 0x01, 0xb2, 0x6a, 0xe1, 0x83, 0xaf, 0x2a, 0x0a, 0xcf, 0xc6, 0x07, 0xc9, 0xbb, 0xd1, +0xd5, 0xaa, 0xc7, 0x67, 0xac, 0x2b, 0x57, 0xfe, 0x99, 0x6d, 0x66, 0x8e, 0xac, 0x88, 0x8c, 0x60, +0x74, 0x7c, 0x14, 0x0e, 0x1e, 0xee, 0x21, 0xb5, 0x89, 0xda, 0x08, 0xf5, 0xeb, 0xd0, 0x3e, 0x93, +0x30, 0x81, 0x43, 0xc6, 0xb5, 0xb6, 0xc5, 0xba, 0xe1, 0x1b, 0x47, 0xf5, 0x84, 0x32, 0x25, 0x83, +0x0f, 0x70, 0x7c, 0x39, 0x68, 0x5b, 0x3b, 0x46, 0x2c, 0x55, 0xf1, 0x97, 0x34, 0xf3, 0xe3, 0x8c, +0x92, 0x8c, 0x9a, 0x8d, 0x91, 0xdc, 0x06, 0x63, 0x3e, 0xb4, 0x43, 0x05, 0x58, 0x52, 0x7e, 0x9d, +0x07, 0x92, 0x41, 0x57, 0x77, 0x6f, 0x60, 0x04, 0xfa, 0x6a, 0xa0, 0xfc, 0x63, 0xc5, 0x7e, 0xd2, +0x12, 0xa6, 0x9f, 0x9a, 0xfa, 0x79, 0xd6, 0x42, 0x76, 0x5c, 0xf2, 0xae, 0xdd, 0xa1, 0xc6, 0x60, +0xd5, 0x37, 0xa3, 0x3f, 0xac, 0xb8, 0x1f, 0xd0, 0x0a, 0x1e, 0xb0, 0x1c, 0xc0, 0x39, 0xdc, 0xee, +0xc1, 0x65, 0x11, 0x41, 0x9a, 0x9f, 0xb4, 0x00, 0x95, 0x5f, 0xc4, 0x0a, 0xb8, 0xf5, 0x02, 0x2c, +0x75, 0xe2, 0x54, 0x7a, 0xb7, 0xa8, 0x09, 0xac, 0x2c, 0xdb, 0x78, 0xc0, 0x26, 0x9a, 0xae, 0x67, +0xfd, 0xe1, 0x8f, 0xf5, 0x3c, 0xab, 0x6a, 0xc7, 0x03, 0x2d, 0x83, 0xcc, 0xaa, 0xbc, 0x57, 0x0b, +0xb4, 0x2b, 0xdd, 0x11, 0x82, 0xc8, 0xf6, 0x1f, 0x0c, 0xc6, 0x8a, 0x8a, 0x6c, 0x92, 0x19, 0x99, +0x6d, 0x6b, 0x8d, 0x32, 0xb3, 0x71, 0xa5, 0x8a, 0xfb, 0x36, 0xaa, 0xaa, 0x21, 0x31, 0xdd, 0xd5, +0x26, 0x77, 0x30, 0xd9, 0xb2, 0x85, 0x62, 0x8d, 0xc0, 0x51, 0x86, 0x0c, 0x6b, 0x82, 0xe9, 0x91, +0xa1, 0xb1, 0xeb, 0x1b, 0xf2, 0x8a, 0xa6, 0x77, 0x57, 0x21, 0x84, 0xe6, 0x52, 0xd3, 0xad, 0x07, +0x8c, 0xb6, 0x05, 0xf0, 0x8b, 0x29, 0x97, 0x7d, 0x26, 0x61, 0xae, 0xe7, 0x49, 0x20, 0xc9, 0xce, +0xd7, 0xa7, 0x48, 0x1a, 0xc8, 0xb2, 0x84, 0x70, 0x0b, 0x7e, 0x03, 0xaa, 0x1e, 0x44, 0xba, 0xee, +0x6d, 0x38, 0x82, 0x19, 0xb2, 0xbf, 0x31, 0x4c, 0x90, 0xce, 0x2e, 0xd7, 0x54, 0xaa, 0x40, 0x1f, +0xa8, 0xbf, 0x90, 0xed, 0x9c, 0x23, 0x6c, 0xf2, 0xca, 0xc7, 0xb0, 0x59, 0x40, 0xcd, 0xcc, 0x32, +0xcb, 0xbe, 0xe0, 0xb1, 0xa5, 0xf5, 0xde, 0x9a, 0x6a, 0x11, 0x54, 0x19, 0xb7, 0xab, 0x0b, 0xb2, +0xe4, 0x14, 0xf4, 0x25, 0xce, 0x35, 0x27, 0xb0, 0x9c, 0xa1, 0xc4, 0x1f, 0x62, 0x5a, 0xe1, 0x88, +0x5d, 0x5b, 0x99, 0x0f, 0x0e, 0x3d, 0x65, 0xec, 0x02, 0x5b, 0x11, 0x21, 0x3b, 0xb5, 0x28, 0x35, +0xd2, 0x7d, 0x61, 0x43, 0x3c, 0x40, 0x7a, 0xef, 0x73, 0xa2, 0x26, 0x19, 0xde, 0xf2, 0x84, 0xef, +0xa8, 0x09, 0x21, 0x0e, 0x07, 0x17, 0x07, 0xfd, 0xe4, 0xda, 0x7f, 0xc2, 0x16, 0xc1, 0x5b, 0x33, +0x30, 0xf6, 0xa8, 0xfd, 0x5c, 0x1a, 0xa7, 0xb7, 0xb3, 0x32, 0x78, 0x9d, 0x98, 0xfb, 0x35, 0x20, +0x23, 0x8d, 0xe5, 0xe4, 0xa8, 0xd3, 0x4a, 0x4d, 0xdc, 0xe0, 0x05, 0xcb, 0x43, 0x42, 0xdd, 0x26, +0x14, 0x0c, 0x8b, 0x4f, 0x1a, 0xb9, 0x82, 0x60, 0xc2, 0x01, 0xb5, 0xd6, 0xd6, 0x7a, 0x40, 0x57, +0xb9, 0xd6, 0xa5, 0x58, 0x0c, 0x86, 0x8a, 0x7a, 0x38, 0x71, 0x68, 0x86, 0x22, 0x10, 0x56, 0x9c, +0xf1, 0x82, 0x46, 0x42, 0xe4, 0x88, 0xda, 0xa4, 0xfa, 0x92, 0x4a, 0x80, 0x60, 0xef, 0xe1, 0x9a, +0x69, 0xcf, 0xe1, 0x8a, 0x59, 0x4c, 0xd1, 0xc6, 0xfc, 0x09, 0x73, 0x19, 0xb6, 0xd5, 0x08, 0xb4, +0xb5, 0x38, 0x63, 0x57, 0xd4, 0xe8, 0x62, 0xf8, 0x2c, 0x26, 0x5c, 0x46, 0x88, 0xbf, 0x4d, 0x2b, +0x06, 0x7c, 0xd7, 0x61, 0x9c, 0x8f, 0x92, 0xcc, 0x4f, 0xdd, 0xa9, 0xcc, 0xe9, 0xc0, 0xdf, 0x16, +0x83, 0x1b, 0x1d, 0x01, 0xb4, 0x51, 0xcd, 0x48, 0x0d, 0x54, 0x82, 0x99, 0xe0, 0x97, 0x82, 0x33, +0x4c, 0x70, 0xc2, 0xf8, 0x1b, 0xba, 0x7d, 0xe4, 0xe8, 0xc1, 0x08, 0x8f, 0xe4, 0xf8, 0xbd, 0x1d, +0xc4, 0x96, 0xd6, 0x4d, 0x1a, 0xc3, 0xde, 0x01, 0xad, 0x8b, 0x16, 0x0e, 0xc1, 0x16, 0x9d, 0x9c, +0x20, 0xd3, 0xa0, 0x17, 0x07, 0x2c, 0x69, 0x47, 0x6c, 0x84, 0x92, 0x6e, 0xf2, 0xe1, 0xb2, 0xc7, +0x3c, 0x0c, 0x6b, 0x99, 0x21, 0xc4, 0xfc, 0xa7, 0xfa, 0xd7, 0x3c, 0x56, 0xc3, 0x74, 0xf9, 0x20, +0xe6, 0x5d, 0x07, 0xc9, 0xd2, 0xc2, 0x07, 0xb3, 0x7c, 0x15, 0x5c, 0x55, 0xfe, 0xe0, 0x42, 0xb3, +0xef, 0xcd, 0x9b, 0x4e, 0x10, 0x0f, 0x8e, 0x62, 0xce, 0xfc, 0x3f, 0xdc, 0x35, 0xe1, 0xae, 0x8b, +0x0d, 0x4b, 0x76, 0xf7, 0xf1, 0xbc, 0xf5, 0xe9, 0x13, 0xf1, 0xfa, 0xc1, 0x33, 0xcf, 0xb6, 0x3a, +0x12, 0x0c, 0x06, 0xb1, 0x76, 0xc2, 0x02, 0xea, 0x17, 0xd6, 0xdc, 0x15, 0x74, 0x53, 0x3f, 0x6a, +0x69, 0x37, 0x9d, 0xb3, 0x96, 0x21, 0x02, 0xcd, 0x34, 0xb0, 0xf6, 0x39, 0x4d, 0x08, 0x18, 0x06, +0x86, 0xc1, 0x45, 0xa5, 0x6a, 0xc3, 0xbb, 0xf1, 0xa6, 0x50, 0xbd, 0x38, 0x13, 0x21, 0xd4, 0xaa, +0x1b, 0xb3, 0x60, 0xde, 0xb5, 0x27, 0x83, 0xcf, 0x52, 0xce, 0xfe, 0xcc, 0x92, 0x1b, 0x53, 0xc9, +0x7b, 0x37, 0x8e, 0x99, 0xcb, 0x6d, 0xa7, 0x6a, 0x68, 0x0a, 0x4d, 0xa4, 0xf3, 0x9c, 0xb8, 0x94, +0xeb, 0xae, 0x16, 0x45, 0x62, 0x7c, 0x45, 0x20, 0xe4, 0x71, 0xd1, 0xbd, 0x82, 0xf4, 0xa9, 0x4d, +0xb4, 0x36, 0x55, 0xbe, 0xcc, 0xd4, 0x04, 0xbe, 0x8c, 0xde, 0x49, 0x00, 0x3e, 0x22, 0x43, 0xac, +0x0f, 0x64, 0xa2, 0x3a, 0x37, 0x02, 0xaa, 0xee, 0x37, 0x76, 0x47, 0x06, 0x5d, 0x40, 0xd6, 0xe7, +0x77, 0x39, 0x81, 0xc0, 0xbe, 0x35, 0x63, 0x90, 0x58, 0x9a, 0xa8, 0xb8, 0xd6, 0x28, 0x70, 0xd0, +0x6f, 0x88, 0xa4, 0x84, 0x1b, 0xda, 0x97, 0xe3, 0x35, 0x8b, 0xeb, 0x59, 0x55, 0x16, 0xa1, 0xc3, +0x99, 0x30, 0xfd, 0xc8, 0x95, 0xee, 0x3c, 0x9e, 0xc7, 0x1a, 0xdf, 0x93, 0xc3, 0x76, 0xc9, 0x6e, +0x5e, 0xac, 0x68, 0x3b, 0x89, 0xa4, 0x39, 0xb4, 0x86, 0x3f, 0x0d, 0xed, 0x75, 0x01, 0x33, 0x9e, +0xae, 0xa5, 0x1a, 0x5b, 0xed, 0x94, 0xc9, 0xed, 0x0b, 0x23, 0x6b, 0x42, 0xde, 0x0d, 0x4b, 0x99, +0xfd, 0x1d, 0x1e, 0x45, 0x67, 0xe3, 0xd3, 0x23, 0x49, 0x22, 0x57, 0x4d, 0x98, 0xe0, 0x54, 0xfd, +0x63, 0xda, 0x71, 0x82, 0x55, 0x85, 0x03, 0xaf, 0x8f, 0x21, 0x9f, 0x0e, 0x51, 0x5e, 0x36, 0xb4, +0x7a, 0xac, 0x96, 0xad, 0x92, 0x5e, 0x89, 0x52, 0x11, 0xce, 0x25, 0x0e, 0x22, 0xea, 0xe4, 0x9b, +0x06, 0xf5, 0x35, 0x52, 0x26, 0x00, 0x17, 0x18, 0xc2, 0x58, 0x6c, 0x96, 0x3d, 0xf7, 0x56, 0x46, +0x4a, 0xd5, 0x11, 0x10, 0xea, 0x4e, 0xe9, 0xcb, 0x88, 0x1e, 0x09, 0xab, 0x95, 0xf4, 0x5b, 0x91, +0x87, 0x7a, 0xc9, 0xa5, 0x65, 0x97, 0x87, 0xa7, 0x49, 0x72, 0x4f, 0xa0, 0xf9, 0x6d, 0x12, 0x99, +0x96, 0xc0, 0xac, 0x24, 0xa2, 0xb3, 0xe4, 0x53, 0xdc, 0x80, 0xb7, 0x72, 0x22, 0xd8, 0x77, 0xac, +0x70, 0xd1, 0xd9, 0x16, 0xc6, 0x39, 0x40, 0x3c, 0x48, 0xbd, 0x0b, 0xec, 0x32, 0x5f, 0x77, 0x03, +0x14, 0xc6, 0xfa, 0xc1, 0xf8, 0x92, 0x9b, 0xba, 0x5f, 0x79, 0x4f, 0x77, 0x55, 0xe5, 0x88, 0xea, +0x19, 0x8b, 0x56, 0x53, 0x1e, 0x5d, 0xc6, 0x04, 0x46, 0x38, 0x59, 0x4f, 0xd0, 0x07, 0x16, 0xc8, +0x2d, 0xdd, 0x61, 0x35, 0x42, 0xef, 0x84, 0x6a, 0x36, 0x83, 0x10, 0xe9, 0x1f, 0x41, 0x3f, 0x83, +0x00, 0x49, 0xf5, 0x97, 0x26, 0x34, 0xc5, 0xea, 0x81, 0x93, 0xdf, 0x41, 0x0f, 0xfe, 0x01, 0xa4, +0x8a, 0xaa, 0x77, 0x57, 0xe9, 0x28, 0x6e, 0x85, 0x35, 0xf3, 0x96, 0x36, 0xaf, 0x95, 0xe0, 0x7a, +0x3e, 0x3c, 0x6e, 0x0a, 0x06, 0x95, 0xa0, 0xb6, 0x11, 0x05, 0xbf, 0xb6, 0x0d, 0x80, 0x31, 0x47, +0xef, 0x10, 0x4a, 0x0a, 0xa4, 0xc3, 0x4d, 0xcd, 0x62, 0xe3, 0x99, 0x54, 0x4a, 0x98, 0x6c, 0xfb, +0x67, 0xeb, 0x46, 0x46, 0x4a, 0xd6, 0xb4, 0x5a, 0x99, 0x98, 0x8a, 0x6b, 0xc1, 0xaa, 0xde, 0x3d, +0x37, 0x2f, 0x5d, 0xff, 0x2a, 0x42, 0x8a, 0x6f, 0x20, 0xed, 0xad, 0x37, 0x13, 0xf6, 0x04, 0xd3, +0x25, 0x3b, 0xbb, 0xc3, 0xd8, 0x64, 0xad, 0x05, 0x39, 0x48, 0xe3, 0x1f, 0x89, 0x48, 0x8e, 0xb4, +0x67, 0x46, 0x17, 0xf6, 0x0b, 0xb7, 0x82, 0x5b, 0xf6, 0x5f, 0x80, 0x5e, 0x9a, 0x44, 0x94, 0x35, +0x91, 0x43, 0x35, 0xfb, 0x76, 0x73, 0xbf, 0x86, 0xad, 0x36, 0xfa, 0x14, 0xe8, 0x10, 0x1b, 0x9a, +0x20, 0x5c, 0xbc, 0x18, 0x89, 0x98, 0xcc, 0x22, 0xfe, 0x1a, 0xa3, 0x61, 0x01, 0xea, 0x25, 0xd9, +0x0e, 0xe5, 0xa1, 0x97, 0x06, 0x1c, 0x79, 0x4c, 0xe2, 0x80, 0xa3, 0xdb, 0xd1, 0xe6, 0xd0, 0x78, +0x00, 0x14, 0x63, 0x02, 0x55, 0xfe, 0x0e, 0x71, 0x76, 0x92, 0x7c, 0x34, 0xf6, 0x65, 0x24, 0x86, +0x61, 0x4e, 0xde, 0x4b, 0x49, 0xc3, 0x86, 0x2a, 0xa8, 0x59, 0x50, 0x96, 0x5f, 0x8d, 0x81, 0x2a, +0x3c, 0x43, 0xf0, 0x9c, 0x74, 0x10, 0x2a, 0xba, 0xca, 0x53, 0x1f, 0x62, 0x5f, 0xe1, 0xc8, 0x80, +0xb5, 0x84, 0x96, 0xd5, 0xed, 0x36, 0x8d, 0x38, 0x10, 0xf6, 0x37, 0x67, 0x59, 0x63, 0xa0, 0x21, +0x79, 0x5c, 0x1b, 0x69, 0x7a, 0x63, 0x8c, 0x58, 0xd7, 0xd6, 0x37, 0x96, 0xee, 0x4b, 0x70, 0xb3, +0x8f, 0x5d, 0x73, 0xba, 0xa4, 0xbe, 0xc3, 0xeb, 0xc7, 0x15, 0x6d, 0xb5, 0x8b, 0x5d, 0x53, 0x3f, +0x27, 0x66, 0xc8, 0x78, 0x1c, 0x9a, 0xb7, 0x42, 0x30, 0xd9, 0xf1, 0x63, 0xa6, 0x8d, 0x9d, 0x76, +0x72, 0x3f, 0x5e, 0x51, 0x93, 0xa1, 0xcd, 0x98, 0x86, 0x38, 0x0e, 0xbc, 0x91, 0x91, 0x09, 0x60, +0x2b, 0xfc, 0xb0, 0x20, 0xa7, 0xcb, 0xe4, 0xa7, 0xb7, 0x72, 0x63, 0xea, 0xfd, 0x38, 0xb4, 0x52, +0x4d, 0x23, 0x6b, 0x94, 0x62, 0x85, 0xe3, 0xb3, 0x76, 0x20, 0x37, 0x62, 0x00, 0x4b, 0x02, 0x62, +0xd0, 0xf1, 0x60, 0x7a, 0x08, 0xc2, 0x8f, 0x68, 0xe1, 0xdf, 0x46, 0x89, 0xbe, 0x5f, 0x10, 0x64, +0x47, 0xc2, 0xcc, 0x93, 0x03, 0x67, 0x5b, 0xe2, 0x52, 0x68, 0x8c, 0x18, 0x60, 0xd1, 0xcd, 0xbf, +0xeb, 0xc8, 0xc1, 0x3a, 0xc9, 0xd1, 0x9d, 0x5a, 0x7b, 0x33, 0x25, 0xe9, 0xec, 0x4e, 0x7d, 0xc6, +0x4b, 0xb2, 0xfb, 0x0d, 0x21, 0x5f, 0x44, 0x82, 0x4c, 0x1d, 0x6f, 0xe1, 0xa5, 0x8a, 0x13, 0x5d, +0x53, 0x40, 0xea, 0xe2, 0x49, 0xe3, 0xc4, 0xd3, 0x1a, 0xb9, 0xaf, 0x33, 0xd8, 0xe6, 0x1d, 0x2c, +0x90, 0x74, 0x83, 0x4a, 0xbd, 0xbd, 0xe2, 0x1e, 0x13, 0x67, 0x93, 0x2e, 0x7c, 0x01, 0x16, 0xe2, +0x8d, 0x35, 0x20, 0x9e, 0xe8, 0x71, 0x6d, 0x0b, 0x07, 0x47, 0x7b, 0x39, 0x15, 0x36, 0x64, 0x7d, +0xbb, 0xe2, 0x9f, 0xf2, 0xb2, 0xeb, 0x36, 0x2e, 0x8b, 0xb0, 0x55, 0x14, 0xd9, 0xa7, 0x21, 0xba, +0x18, 0x22, 0x8c, 0x47, 0x0c, 0xb4, 0x7f, 0x67, 0x1e, 0x7b, 0x4a, 0xb6, 0x37, 0x7a, 0x49, 0x1a, +0xe9, 0x55, 0xf2, 0x26, 0x71, 0x63, 0x9f, 0x27, 0x8e, 0x9e, 0x63, 0x26, 0x84, 0x10, 0xe2, 0xd4, +0xad, 0xfb, 0xc9, 0x23, 0x6c, 0xaa, 0xd3, 0x36, 0xb4, 0xac, 0x00, 0xc8, 0x38, 0x1a, 0x07, 0xe0, +0x7b, 0xd9, 0xae, 0x84, 0xda, 0x9c, 0x6e, 0x38, 0xbc, 0x2f, 0x0c, 0x7c, 0xe1, 0x85, 0x15, 0x14, +0xeb, 0x89, 0x43, 0x95, 0xc4, 0x01, 0x81, 0x37, 0xc4, 0xc0, 0x99, 0xbd, 0xfe, 0x93, 0xb4, 0x2a, +0x6e, 0xfe, 0x29, 0xae, 0x8d, 0x3a, 0xb8, 0xd1, 0x20, 0x6a, 0xb0, 0x14, 0x9d, 0x0f, 0x7d, 0x58, +0xbb, 0x3c, 0x60, 0x31, 0xee, 0x97, 0xb6, 0xf0, 0xd9, 0xb2, 0x25, 0x15, 0x21, 0xf8, 0xba, 0x12, +0xdd, 0xdb, 0x85, 0xe7, 0xbf, 0xa4, 0x7e, 0x7c, 0x75, 0xdc, 0xc5, 0x0c, 0xdf, 0x88, 0xec, 0xd2, +0x73, 0xa5, 0x07, 0xad, 0x03, 0x8d, 0x4e, 0x90, 0x56, 0xdc, 0xed, 0x55, 0x6f, 0xdc, 0xbd, 0x99, +0xb3, 0xf6, 0x23, 0x98, 0x2b, 0xd5, 0x5b, 0xbd, 0xbf, 0x90, 0xe6, 0xa4, 0xea, 0x24, 0x31, 0xc9, +0xcc, 0x47, 0x7a, 0x26, 0xcc, 0xa1, 0x12, 0x00, 0x4d, 0xaa, 0x2b, 0x68, 0xd7, 0x71, 0x53, 0x71, +0xd4, 0x7a, 0x25, 0x44, 0x50, 0x9a, 0x79, 0xa0, 0x94, 0x8a, 0x9f, 0x50, 0xce, 0x95, 0xf4, 0xb3, +0x38, 0x83, 0x38, 0x20, 0x52, 0x08, 0xbb, 0x74, 0x0c, 0x74, 0x4c, 0x60, 0x07, 0x52, 0x23, 0x0e, +0xcd, 0x50, 0x07, 0x39, 0x38, 0xba, 0xd3, 0xce, 0xf1, 0x7f, 0x9b, 0xc7, 0xb3, 0xd2, 0xae, 0x2a, +0x76, 0x47, 0x63, 0x91, 0x12, 0x1b, 0x8e, 0x02, 0xe8, 0x57, 0xf1, 0xe0, 0x9b, 0x12, 0x55, 0x42, +0x88, 0xe6, 0x43, 0x9f, 0x9a, 0xfe, 0x98, 0x2b, 0xb6, 0x13, 0x34, 0x2a, 0xee, 0x6a, 0x53, 0x7f, +0xe3, 0x5c, 0x9c, 0x78, 0xd7, 0xc2, 0xfe, 0xe4, 0xe7, 0x33, 0x06, 0x22, 0xbc, 0x7d, 0x54, 0xbf, +0x48, 0x56, 0xfa, 0xee, 0xa2, 0x0f, 0x89, 0x6e, 0xab, 0xd2, 0xd6, 0x22, 0x78, 0x61, 0x61, 0xfc, +0xfe, 0x2e, 0xca, 0x03, 0x1b, 0x43, 0x2a, 0x55, 0x93, 0xbd, 0x75, 0x6a, 0xef, 0xb4, 0x25, 0x6e, +0x49, 0xa2, 0x68, 0xd9, 0xa0, 0x73, 0xea, 0x6b, 0x06, 0x80, 0xa2, 0x07, 0x04, 0x42, 0x67, 0x45, +0x15, 0x14, 0xd0, 0x97, 0x86, 0x53, 0xb5, 0x08, 0xd7, 0xe5, 0x31, 0x54, 0x45, 0x1f, 0x8f, 0x20, +0x27, 0x72, 0x74, 0x16, 0xd9, 0x77, 0x5c, 0xaa, 0x31, 0x96, 0xdf, 0xe8, 0xd3, 0x15, 0xc8, 0x5e, +0x2c, 0x20, 0x7d, 0x2d, 0x89, 0x0a, 0xcf, 0x96, 0x3e, 0x84, 0x87, 0x06, 0x06, 0xc5, 0x1f, 0x6e, +0xae, 0x4f, 0xdf, 0x85, 0x83, 0x9d, 0xeb, 0x95, 0x00, 0xd7, 0x63, 0x41, 0x65, 0xf0, 0x78, 0x92, +0xed, 0x6e, 0x4c, 0x20, 0x00, 0xaa, 0x98, 0xc8, 0x65, 0xff, 0xfb, 0x5e, 0x63, 0x95, 0xe0, 0x1c, +0xbd, 0x9c, 0x24, 0xfe, 0x69, 0xd2, 0x67, 0xe8, 0xde, 0xae, 0x03, 0xb6, 0x26, 0x3b, 0xac, 0x02, +0x7d, 0x02, 0x56, 0x4a, 0x24, 0xae, 0x80, 0xd4, 0x21, 0xd1, 0x23, 0xf8, 0x9d, 0x11, 0xd7, 0xfc, +0x6f, 0x68, 0xb6, 0x14, 0xda, 0x3e, 0x82, 0xad, 0xa3, 0x7c, 0xaa, 0xd3, 0x25, 0x1b, 0xda, 0x00, +0x60, 0x71, 0xe2, 0x27, 0xbb, 0xc9, 0x52, 0x8c, 0xb1, 0x14, 0x66, 0x09, 0x1b, 0xd1, 0x5f, 0x52, +0x26, 0xb3, 0xb5, 0x85, 0xb4, 0xa4, 0x07, 0x01, 0x15, 0x97, 0x44, 0x59, 0xaf, 0x48, 0xf7, 0x2f, +0xf4, 0x81, 0x65, 0x2c, 0xb5, 0x95, 0x77, 0xee, 0xf5, 0xf0, 0x09, 0x06, 0x8b, 0xe1, 0x8c, 0x80, +0x1f, 0xff, 0x06, 0x6a, 0xbf, 0x9c, 0xc0, 0xaf, 0x48, 0xa1, 0xd9, 0xe8, 0xc2, 0x7f, 0xee, 0x63, +0x36, 0x72, 0xac, 0x13, 0xe4, 0xcd, 0x22, 0x0c, 0xfc, 0xe2, 0xcf, 0x6c, 0x8d, 0x96, 0x45, 0xe0, +0x0d, 0x91, 0xba, 0x5d, 0x84, 0xdd, 0x20, 0x46, 0x58, 0xaf, 0x72, 0x90, 0x33, 0xda, 0x37, 0x76, +0xa0, 0xe1, 0x96, 0x36, 0xf4, 0x53, 0xf5, 0xd5, 0x48, 0xf6, 0x27, 0xc4, 0xeb, 0xc2, 0x0a, 0x52, +0xef, 0xea, 0xcf, 0xba, 0xc9, 0x33, 0x03, 0x1a, 0x82, 0xa1, 0xf1, 0xe8, 0x84, 0xe3, 0xdb, 0x46, +0x65, 0xe3, 0xec, 0x5d, 0xd5, 0x4e, 0xbd, 0x0f, 0xc1, 0x4f, 0xc6, 0xcf, 0xf4, 0xee, 0x99, 0x2b, +0xad, 0xc2, 0xc5, 0x83, 0xff, 0xaa, 0x3e, 0x01, 0x40, 0xff, 0xf7, 0xdf, 0x3b, 0xc7, 0xc4, 0x94, +0x1a, 0x65, 0x09, 0xa1, 0x72, 0xe1, 0xde, 0xae, 0x19, 0x30, 0x51, 0x52, 0x47, 0x29, 0x69, 0x49, +0x06, 0x9c, 0xf5, 0xda, 0x06, 0x37, 0xab, 0x3d, 0x89, 0xfb, 0xf5, 0xc8, 0x1c, 0x40, 0xe9, 0xa3, +0x21, 0x6a, 0xe1, 0xad, 0x54, 0x32, 0x83, 0x3c, 0x16, 0x7d, 0xb4, 0x9e, 0x5d, 0xc0, 0x53, 0xde, +0xc7, 0x6c, 0x6b, 0xe0, 0x1d, 0x38, 0xa4, 0xab, 0xd5, 0xb9, 0x4c, 0x55, 0x7d, 0xe2, 0xb6, 0x64, +0xe8, 0x6d, 0x3f, 0x4f, 0x4b, 0xa2, 0x33, 0x5d, 0x06, 0x8f, 0xbf, 0xb3, 0xc6, 0x32, 0x63, 0x3b, +0x50, 0x27, 0x9d, 0xd8, 0xf8, 0x1b, 0xbc, 0x5f, 0x57, 0x48, 0x89, 0x3a, 0x99, 0x63, 0xb5, 0x21, +0x72, 0x27, 0x82, 0x81, 0x5d, 0x38, 0x21, 0xde, 0x45, 0x66, 0x6d, 0x5a, 0x80, 0xe0, 0xd7, 0xd9, +0xdf, 0x75, 0xdf, 0x0a, 0xd6, 0x4c, 0x8f, 0x6d, 0xbb, 0x04, 0xe7, 0xe0, 0x13, 0x3e, 0x77, 0x8a, +0xa3, 0xc8, 0xb9, 0x89, 0x03, 0xcf, 0xd3, 0xf4, 0x2b, 0xd9, 0xb6, 0x4d, 0xe4, 0xcf, 0xe7, 0x06, +0xd2, 0xf1, 0x96, 0x8c, 0xcc, 0x3a, 0xcb, 0xd9, 0xbc, 0x58, 0xbb, 0x3b, 0x65, 0x63, 0x97, 0x20, +0x5d, 0xe4, 0xc6, 0x28, 0x2a, 0x1a, 0xc0, 0x3f, 0xe2, 0x43, 0x82, 0x36, 0x80, 0x3a, 0x0a, 0x8e, +0x8e, 0xa8, 0x55, 0xe8, 0x18, 0xaf, 0x06, 0xc1, 0x92, 0x01, 0xdd, 0x12, 0xb3, 0x5c, 0x30, 0xd1, +0xe3, 0x3d, 0x5e, 0x47, 0xf5, 0x30, 0x11, 0xa8, 0x31, 0xd8, 0x3a, 0xcd, 0x10, 0x63, 0x81, 0x18, +0xae, 0xa3, 0x50, 0x6f, 0x2b, 0x7e, 0x2c, 0x84, 0xc7, 0x69, 0x2e, 0x5a, 0x93, 0x03, 0xeb, 0x34, +0x19, 0xa8, 0x65, 0x7c, 0x29, 0x4f, 0xc3, 0x5a, 0x8c, 0xfa, 0xd3, 0x6e, 0xd3, 0x4e, 0xb4, 0x96, +0x62, 0x0a, 0xa7, 0xac, 0x38, 0x37, 0x74, 0xb8, 0x99, 0xb8, 0x90, 0xe9, 0x8c, 0xe3, 0x60, 0x28, +0x61, 0xd3, 0x63, 0xdf, 0xb0, 0x63, 0xac, 0x3a, 0x0d, 0x8d, 0x52, 0x13, 0xc0, 0xc6, 0xbd, 0x02, +0xd0, 0xd0, 0xea, 0xf0, 0x4c, 0xf0, 0x16, 0xf8, 0x8f, 0xe3, 0xed, 0xce, 0x70, 0xad, 0x8f, 0x98, +0x4f, 0x6c, 0xe2, 0xb8, 0x5d, 0x81, 0xd1, 0x0f, 0x78, 0x1a, 0x6f, 0xff, 0xb2, 0x4d, 0x46, 0x73, +0x9c, 0x4d, 0x87, 0x65, 0x45, 0xff, 0x6c, 0x8f, 0x71, 0x54, 0x03, 0x31, 0x42, 0xee, 0x2d, 0x59, +0x5c, 0x19, 0x6c, 0xeb, 0x03, 0x49, 0x4b, 0x4e, 0xa7, 0x0e, 0xb9, 0x56, 0x21, 0xa6, 0x26, 0xc7, +0x9e, 0xbc, 0x17, 0x66, 0xcd, 0xc2, 0x0d, 0x53, 0x5c, 0xd6, 0x44, 0x3f, 0x15, 0xce, 0x8a, 0xa6, +0x7d, 0xa0, 0xf7, 0x35, 0xe9, 0xe7, 0x6e, 0x62, 0x7a, 0xd2, 0xd4, 0x86, 0x75, 0x4b, 0xf0, 0xc6, +0xdf, 0x3e, 0x8b, 0x7a, 0x75, 0xb3, 0xc9, 0x8b, 0x01, 0x8a, 0x26, 0x7b, 0x5e, 0x68, 0x3c, 0x70, +0xac, 0xed, 0x8a, 0xfc, 0x86, 0x41, 0x59, 0x20, 0xd7, 0x7f, 0x31, 0x83, 0x1b, 0x79, 0x4a, 0x84, +0x85, 0x14, 0xbd, 0xdd, 0x70, 0x28, 0x61, 0x42, 0xa7, 0x92, 0xb9, 0x4d, 0x97, 0x5e, 0x6f, 0xc0, +0x33, 0xd1, 0x29, 0xea, 0x9a, 0x12, 0x4e, 0xa0, 0x2f, 0x37, 0x5b, 0x18, 0x2b, 0x72, 0xa1, 0x00, +0x06, 0xcf, 0xf5, 0xb3, 0xc5, 0xc9, 0x74, 0x15, 0x40, 0xce, 0x25, 0x8a, 0xa8, 0x12, 0xc1, 0x5d, +0x81, 0x86, 0x32, 0x99, 0x77, 0x47, 0x87, 0xcb, 0x1b, 0x8b, 0x3c, 0xa8, 0x3e, 0x84, 0xc8, 0x7f, +0xf0, 0x9f, 0x1a, 0x3b, 0x86, 0x96, 0xf4, 0xe7, 0xa9, 0x4c, 0x9b, 0x49, 0x07, 0x73, 0x59, 0xc5, +0xc6, 0x83, 0x2a, 0xc1, 0x73, 0xd3, 0xa7, 0xf5, 0x4b, 0xc2, 0xab, 0x73, 0x82, 0x81, 0xa5, 0xa9, +0x41, 0x43, 0xa1, 0x6e, 0xda, 0x50, 0x73, 0x8f, 0x73, 0x57, 0xa8, 0x4c, 0xde, 0x47, 0x36, 0x52, +0xa3, 0x34, 0x0e, 0x4c, 0x08, 0xfa, 0x96, 0x58, 0x59, 0xf3, 0xc5, 0xde, 0x53, 0x38, 0xd3, 0xf9, +0xc3, 0x23, 0x63, 0xc0, 0xd0, 0x1d, 0x49, 0xd3, 0xc2, 0x6e, 0x3e, 0x3f, 0x03, 0x51, 0xdb, 0xb7, +0xc5, 0xde, 0x52, 0xed, 0x1e, 0xe9, 0x02, 0x50, 0x85, 0x7c, 0x5c, 0xd9, 0x5d, 0x32, 0x46, 0x64, +0xe4, 0x7f, 0x44, 0x36, 0xd4, 0xa3, 0xc9, 0xa2, 0x22, 0xde, 0xe5, 0x75, 0x3c, 0xa2, 0x7c, 0xad, +0xc5, 0x3b, 0x87, 0x72, 0xd9, 0xae, 0x22, 0x5d, 0xe4, 0x25, 0xd0, 0xb8, 0x82, 0xdc, 0x44, 0x8b, +0x2c, 0x5d, 0x29, 0xd7, 0x53, 0x6d, 0x6c, 0xe5, 0x8e, 0xd7, 0x5d, 0xb8, 0x10, 0x59, 0x1b, 0xfd, +0x37, 0xf1, 0x0b, 0x2d, 0x39, 0xb0, 0xf4, 0x42, 0xb0, 0xf1, 0x6b, 0xf3, 0xe7, 0xe0, 0x7b, 0x17, +0x4f, 0x9c, 0x26, 0x84, 0x35, 0x9e, 0x5f, 0x0f, 0x51, 0x95, 0xa9, 0x2c, 0xa0, 0xbe, 0x3b, 0xdf, +0x9f, 0x5c, 0x8c, 0xe5, 0xdb, 0x2b, 0xd0, 0xe6, 0xe1, 0xba, 0xc4, 0x95, 0xd7, 0x81, 0x0a, 0xaf, +0x5a, 0x63, 0x52, 0x8e, 0x18, 0x3b, 0x57, 0x12, 0x35, 0x33, 0x93, 0x6d, 0x65, 0xad, 0x11, 0xa6, +0x17, 0xbb, 0x66, 0xd4, 0xc5, 0xb3, 0xea, 0x51, 0xb5, 0x9d, 0xb0, 0x08, 0x6c, 0xe8, 0x6f, 0x49, +0xfb, 0xc9, 0xa7, 0x24, 0x53, 0xeb, 0xdc, 0x92, 0x80, 0x0f, 0xf8, 0x3e, 0x88, 0x43, 0xc5, 0x6e, +0xb4, 0x5d, 0x26, 0x78, 0x18, 0x15, 0xd1, 0x2b, 0x26, 0x8d, 0x84, 0x31, 0xb0, 0x48, 0x87, 0x64, +0xe7, 0x52, 0x33, 0x7d, 0xaf, 0xfb, 0xaf, 0x8c, 0x75, 0x0f, 0x4f, 0xbc, 0x4a, 0x55, 0x05, 0x07, +0xe4, 0x37, 0xe4, 0x7c, 0x83, 0xc8, 0xd4, 0x50, 0x56, 0xf6, 0xcb, 0x6c, 0x65, 0x99, 0xf1, 0xb5, +0xf2, 0x6c, 0xaa, 0xf5, 0x71, 0x2c, 0x78, 0x75, 0x69, 0x07, 0x69, 0x4b, 0xd7, 0x25, 0x76, 0x5b, +0x73, 0xe7, 0xd0, 0x2c, 0x38, 0xc0, 0x5d, 0xf3, 0xa0, 0x6a, 0x5d, 0x48, 0xe2, 0xb8, 0x06, 0xda, +0x40, 0x87, 0x1b, 0xbc, 0x4e, 0xe6, 0x1b, 0x7e, 0xdb, 0x35, 0x5b, 0xaf, 0x70, 0x32, 0x9f, 0x1f, +0xbe, 0xb3, 0xba, 0x77, 0x2c, 0x2e, 0x6b, 0x84, 0x82, 0x8e, 0x80, 0x0b, 0xb6, 0x12, 0xa0, 0xcc, +0x4c, 0xe4, 0x10, 0xc4, 0x01, 0xa7, 0xdf, 0x62, 0x25, 0x5f, 0x42, 0x25, 0xae, 0xd9, 0xcf, 0xfd, +0xe0, 0x2f, 0xd6, 0x61, 0xfb, 0xe6, 0xca, 0x4e, 0x7e, 0x45, 0x3b, 0xcd, 0x61, 0x94, 0xbb, 0xb3, +0xdb, 0x16, 0x04, 0xe1, 0x90, 0x6b, 0x6e, 0x62, 0xcd, 0x1c, 0xd9, 0x88, 0xad, 0x79, 0xbe, 0x06, +0x04, 0x02, 0x4b, 0xc7, 0x3d, 0x4c, 0x54, 0x16, 0x90, 0xcb, 0xa8, 0x65, 0xaa, 0x01, 0x3a, 0x21, +0x6a, 0x51, 0x75, 0x29, 0xa4, 0x8d, 0xde, 0xdf, 0xdb, 0xbe, 0x7f, 0xf7, 0x9a, 0xa0, 0x89, 0xdb, +0xf8, 0x5f, 0xd6, 0xfb, 0x23, 0xb9, 0x86, 0x21, 0xc5, 0x50, 0x40, 0x0c, 0xad, 0x6b, 0xfc, 0xaa, +0xe1, 0xad, 0x8b, 0x01, 0xf7, 0x29, 0x4c, 0x18, 0x89, 0x24, 0xde, 0x66, 0xba, 0xe1, 0xbd, 0x58, +0xac, 0x67, 0x8a, 0x01, 0x54, 0xb7, 0x63, 0x12, 0x1a, 0x75, 0x53, 0xa2, 0xe2, 0xd8, 0xfa, 0xac, +0x8c, 0x11, 0x81, 0xe8, 0x9b, 0x1a, 0xe2, 0xe9, 0xee, 0x04, 0xb3, 0x82, 0x09, 0x53, 0x4b, 0x78, +0x91, 0xd5, 0x16, 0xbb, 0xe8, 0x28, 0x7c, 0x36, 0x09, 0x0e, 0x43, 0xa5, 0x1c, 0x59, 0x4d, 0xc9, +0xb0, 0xe1, 0x8f, 0x13, 0xab, 0x1e, 0xde, 0xed, 0x17, 0xe0, 0x67, 0x69, 0xcb, 0xf0, 0xf9, 0x23, +0x5d, 0x7a, 0xb5, 0x31, 0x14, 0x25, 0xfc, 0x90, 0xdb, 0x2b, 0xff, 0x7c, 0x61, 0x42, 0x46, 0x40, +0x98, 0xfa, 0x01, 0x27, 0x3d, 0x86, 0xf0, 0x12, 0xe8, 0x13, 0xca, 0xb6, 0xf9, 0xd6, 0x2c, 0xdf, +0x04, 0x9c, 0x0a, 0x91, 0x5f, 0x97, 0x9c, 0x78, 0xc6, 0xa1, 0x81, 0x18, 0xef, 0xfa, 0x59, 0x0b, +0x7e, 0xbc, 0x41, 0x0a, 0xdb, 0x14, 0x1d, 0x3b, 0xd2, 0x1e, 0x55, 0x8a, 0x66, 0x08, 0x04, 0x3a, +0x8a, 0x58, 0xa6, 0xb3, 0xaa, 0x68, 0x13, 0x5c, 0x7c, 0xb1, 0x82, 0x32, 0xe6, 0x73, 0x80, 0x14, +0x8a, 0x11, 0x0c, 0xad, 0x96, 0xad, 0xf1, 0x92, 0x2f, 0xf0, 0x4a, 0xe9, 0xf7, 0xe1, 0x77, 0x9c, +0x56, 0x49, 0x37, 0x7c, 0x74, 0x93, 0xd0, 0x2e, 0x18, 0xa7, 0xbc, 0x3d, 0x63, 0xbd, 0xb0, 0x29, +0xab, 0x0f, 0xb9, 0x61, 0x42, 0xf5, 0x11, 0x3a, 0x88, 0x8e, 0x52, 0x0f, 0x20, 0xb9, 0x6a, 0x7e, +0xfb, 0x66, 0xcd, 0x41, 0x6d, 0xbb, 0xfb, 0x33, 0x6c, 0x4d, 0x38, 0xf3, 0x3b, 0xed, 0x4e, 0xb9, +0x5e, 0x9f, 0xf1, 0x9d, 0xf6, 0x2f, 0x08, 0xb8, 0xc3, 0x26, 0x9a, 0xc7, 0xf2, 0xf5, 0x0c, 0xaf, +0xf4, 0xc3, 0x1d, 0x7e, 0x0b, 0x71, 0xe5, 0x31, 0x22, 0x09, 0x93, 0x4c, 0xec, 0xa1, 0x2d, 0x9a, +0x41, 0xa8, 0xeb, 0x53, 0xec, 0xc1, 0x4f, 0xd4, 0x80, 0xc3, 0xf4, 0xf3, 0xfd, 0xc8, 0x65, 0x8f, +0x02, 0x1f, 0x22, 0xf9, 0xc5, 0x01, 0x05, 0x1c, 0x79, 0x6f, 0x82, 0xc5, 0xa0, 0x1c, 0x26, 0xff, +0x41, 0x7e, 0x31, 0x7d, 0x86, 0xe8, 0x9f, 0x30, 0x6e, 0x28, 0x17, 0xec, 0xdc, 0x07, 0x15, 0x97, +0xf8, 0x21, 0x31, 0x77, 0x98, 0x7a, 0x92, 0xbf, 0xc5, 0x8a, 0x56, 0x27, 0xa0, 0xc2, 0xdd, 0xde, +0xb4, 0xfe, 0x8a, 0x30, 0xec, 0xff, 0x7b, 0xcc, 0xf6, 0x97, 0x35, 0x1a, 0x2f, 0x98, 0xd2, 0xde, +0xa5, 0x8b, 0xdf, 0x42, 0x35, 0xc1, 0x49, 0x6d, 0xea, 0x56, 0x55, 0xeb, 0xf7, 0x2d, 0x60, 0xd6, +0x9e, 0x48, 0x29, 0xc2, 0x77, 0x45, 0xaa, 0x9b, 0x52, 0xdb, 0xd8, 0x61, 0xea, 0x4c, 0x02, 0x66, +0xd6, 0xc2, 0xa8, 0xcc, 0xe2, 0x71, 0x06, 0x26, 0xe8, 0xe8, 0x80, 0xc0, 0xd8, 0xf9, 0xe1, 0x5a, +0xb3, 0xc2, 0x67, 0x4d, 0x15, 0x5e, 0x89, 0xf3, 0xc1, 0x01, 0xa6, 0xf7, 0x6e, 0x5c, 0x74, 0x36, +0x38, 0x03, 0x6b, 0x81, 0x50, 0xf5, 0x74, 0xd8, 0xdb, 0xe3, 0xf9, 0x01, 0xd3, 0xc0, 0x67, 0x4d, +0xbf, 0xbc, 0x56, 0xcd, 0x20, 0xe8, 0xae, 0xa4, 0xef, 0x27, 0x28, 0x14, 0xfc, 0x91, 0x6d, 0x1d, +0xf0, 0xc0, 0x36, 0xc6, 0xe2, 0xa1, 0x90, 0x1e, 0x66, 0x32, 0x01, 0x6b, 0x47, 0xbf, 0xff, 0xb0, +0x46, 0xd2, 0x67, 0x2d, 0x69, 0xa8, 0x3b, 0xcf, 0x6f, 0x23, 0xf6, 0x67, 0x7c, 0x09, 0xc7, 0x7f, +0xf5, 0x6e, 0xa4, 0xb3, 0xad, 0x29, 0xfe, 0xb5, 0xcd, 0x66, 0x30, 0x51, 0xa9, 0x63, 0x53, 0x4b, +0x04, 0xa0, 0x97, 0xe1, 0x47, 0x6b, 0x1e, 0xba, 0xca, 0xae, 0x73, 0x11, 0x8d, 0xa3, 0xb6, 0x74, +0x80, 0xec, 0x00, 0x00, 0x53, 0x14, 0x76, 0xb9, 0x58, 0x7a, 0xed, 0x17, 0x15, 0x09, 0x56, 0x65, +0x74, 0x04, 0x10, 0xa5, 0xf1, 0xef, 0xd0, 0x36, 0x63, 0xb8, 0xdb, 0xa0, 0x07, 0xae, 0x1f, 0xae, +0x2c, 0x40, 0xc0, 0x98, 0xd1, 0x7f, 0xc6, 0x8e, 0xc6, 0xef, 0x37, 0x77, 0x78, 0x22, 0x63, 0xf5, +0x97, 0x13, 0x6b, 0x44, 0x5a, 0xc2, 0x2b, 0x3d, 0x18, 0xf5, 0x56, 0xe9, 0xe1, 0xd1, 0xc2, 0xf8, +0x5f, 0xee, 0x4c, 0x48, 0x99, 0x3e, 0xcd, 0x54, 0x57, 0xf6, 0xaf, 0x9f, 0x5f, 0x1a, 0x1f, 0xdb, +0xd1, 0xbc, 0xa6, 0x19, 0x49, 0x49, 0xee, 0x68, 0xdc, 0x88, 0xe5, 0x2b, 0xe8, 0x4d, 0x02, 0x07, +0x56, 0xf6, 0x43, 0x52, 0xa7, 0xfd, 0x97, 0x18, 0x85, 0xd4, 0xec, 0x7b, 0xf0, 0x7a, 0xe1, 0xcf, +0x67, 0xae, 0xf7, 0x05, 0x92, 0x39, 0x87, 0x84, 0x6e, 0x9e, 0x32, 0xfc, 0xe7, 0xce, 0x1e, 0xf6, +0x70, 0xa4, 0xc8, 0x4c, 0x8d, 0xb5, 0x45, 0x23, 0x24, 0x99, 0x4c, 0x3a, 0x2e, 0xb2, 0xc2, 0xa3, +0x4d, 0xe5, 0x05, 0xc7, 0x58, 0x03, 0xe4, 0xa2, 0xc0, 0x77, 0xbd, 0xd4, 0x22, 0x81, 0x0c, 0xab, +0x84, 0xfa, 0x13, 0x7a, 0x05, 0xde, 0x3f, 0x52, 0x71, 0xfe, 0x5c, 0xa9, 0x47, 0x01, 0x02, 0xe8, +0x42, 0x1b, 0xe1, 0x55, 0x0f, 0xdd, 0x45, 0xe4, 0x01, 0xd5, 0xf4, 0xb0, 0x36, 0x63, 0xce, 0xc7, +0xe3, 0xb6, 0x0b, 0x68, 0x44, 0x53, 0x97, 0x45, 0x34, 0x3f, 0x45, 0x37, 0xb6, 0x05, 0x2e, 0xa6, +0x8d, 0xfa, 0x0f, 0x6f, 0x98, 0x68, 0x1c, 0x34, 0x23, 0x38, 0xe9, 0x17, 0x99, 0x84, 0xc7, 0x1a, +0x7a, 0x40, 0xf9, 0xd7, 0x7e, 0x9f, 0x46, 0xc2, 0xa4, 0x15, 0x95, 0x2c, 0x41, 0x1a, 0x49, 0x75, +0x6f, 0x8e, 0xd7, 0x90, 0x8b, 0xfe, 0xc5, 0x77, 0x49, 0x81, 0x27, 0x40, 0x2d, 0xcb, 0x9f, 0x56, +0x74, 0x5f, 0x5f, 0xd6, 0x57, 0x4d, 0xc4, 0xe5, 0xdd, 0xb7, 0xad, 0x7b, 0xe9, 0x40, 0xfe, 0x52, +0xeb, 0xe0, 0xfc, 0x02, 0xc7, 0xe6, 0xee, 0xb2, 0x42, 0xcc, 0xe6, 0xfb, 0xd5, 0xc0, 0x0a, 0x65, +0xba, 0xb3, 0x02, 0xa8, 0x15, 0x64, 0xb0, 0xf5, 0xcc, 0xe5, 0x42, 0x11, 0x5e, 0x24, 0x55, 0x2e, +0x7e, 0xcb, 0x79, 0x03, 0x5c, 0x92, 0x07, 0x7e, 0x86, 0xb2, 0x08, 0xe9, 0x83, 0x92, 0xc0, 0x75, +0xa0, 0x2e, 0xf0, 0x57, 0x8a, 0xef, 0x73, 0x84, 0x1d, 0x3c, 0x44, 0x74, 0xce, 0x24, 0xa5, 0xa0, +0x86, 0x79, 0x31, 0xb3, 0xf2, 0x80, 0x1d, 0xd7, 0x12, 0xdb, 0x9c, 0x8b, 0xfa, 0x1b, 0xe1, 0xbc, +0x5a, 0xec, 0x3e, 0x4a, 0xce, 0x46, 0x50, 0x2a, 0x8b, 0x88, 0x4f, 0xcd, 0x32, 0x2a, 0x2c, 0x97, +0x65, 0xfa, 0x4b, 0x07, 0x19, 0x1b, 0xf1, 0xaa, 0x78, 0x95, 0x48, 0x7c, 0x2c, 0x28, 0x3d, 0xb2, +0xf3, 0x6f, 0x53, 0xe6, 0xe4, 0x9b, 0x16, 0x7e, 0x04, 0x5d, 0xc9, 0x7d, 0x5a, 0x08, 0xd4, 0x2e, +0xef, 0x79, 0x9d, 0x8d, 0xe3, 0x1f, 0xef, 0xcb, 0x83, 0x31, 0x48, 0xc1, 0x65, 0xe0, 0x32, 0xbe, +0xb9, 0x53, 0xa3, 0x3f, 0x85, 0x56, 0xda, 0x7c, 0x42, 0x23, 0xbb, 0xf3, 0xab, 0xd0, 0x63, 0x3c, +0x94, 0x10, 0x9c, 0xb6, 0x3b, 0x01, 0x75, 0x2b, 0x9a, 0x5d, 0x77, 0x42, 0x8a, 0xec, 0x38, 0xb3, +0x63, 0xc9, 0x9d, 0xc3, 0xe4, 0x43, 0x4a, 0x22, 0x51, 0x6d, 0xae, 0xde, 0x6b, 0xce, 0x8a, 0x00, +0x69, 0x9a, 0xec, 0x9a, 0x9b, 0x0c, 0xaa, 0xad, 0xd6, 0xbd, 0x23, 0xfd, 0x69, 0xe7, 0xbc, 0x26, +0xb7, 0xc6, 0x44, 0x79, 0x99, 0x64, 0x68, 0x6b, 0xe1, 0xbd, 0xdc, 0x0b, 0xd9, 0xa7, 0xf7, 0xe2, +0xe4, 0x32, 0xc3, 0xdd, 0xd8, 0x70, 0x48, 0xc0, 0xbe, 0x9e, 0xa8, 0xbb, 0x4d, 0x94, 0x0e, 0x5a, +0x6a, 0x8a, 0x8c, 0x0c, 0xfd, 0x6e, 0x42, 0x23, 0x60, 0x4e, 0xf9, 0xcb, 0x84, 0x65, 0x58, 0x29, +0x24, 0x9c, 0xd7, 0x8b, 0xa7, 0x44, 0xd6, 0x00, 0xae, 0x62, 0x74, 0xa4, 0x1d, 0x22, 0x10, 0xff, +0x19, 0x43, 0xa3, 0xe8, 0x36, 0x94, 0x2e, 0x07, 0x9d, 0x98, 0x69, 0xf2, 0x82, 0xad, 0x76, 0x0e, +0xe3, 0x0e, 0x4d, 0xa3, 0x08, 0x33, 0x1e, 0x9c, 0x2b, 0x33, 0xe3, 0x07, 0x29, 0x88, 0x23, 0xb8, +0xdb, 0xb6, 0x3a, 0x14, 0xc4, 0xb6, 0x34, 0x03, 0x61, 0x14, 0x38, 0xab, 0x97, 0xf4, 0x11, 0x53, +0x65, 0x73, 0x7d, 0x14, 0x21, 0x51, 0xad, 0x8e, 0x83, 0x0c, 0x0c, 0x96, 0x48, 0x22, 0x87, 0x7c, +0xba, 0x43, 0x68, 0x0f, 0x77, 0x83, 0x75, 0x18, 0x21, 0x66, 0x00, 0xbf, 0x2d, 0xd9, 0x5f, 0xcc, +0xdc, 0xee, 0x1e, 0xa6, 0x73, 0x71, 0x7c, 0x7d, 0x68, 0x78, 0x1f, 0x9b, 0x75, 0x9c, 0x78, 0xe6, +0xfd, 0xf8, 0x25, 0xad, 0x40, 0x48, 0x17, 0x79, 0x41, 0x76, 0xc6, 0x2b, 0xa2, 0xa9, 0x86, 0x7d, +0x26, 0x2f, 0xe7, 0xbe, 0xed, 0xd4, 0xdd, 0x73, 0x17, 0xf6, 0xcc, 0xf6, 0x27, 0xee, 0x48, 0x8c, +0x56, 0xf0, 0x4c, 0xe8, 0xe2, 0x6e, 0xc5, 0x70, 0xf2, 0xac, 0x69, 0x60, 0xe9, 0xb8, 0x40, 0xc4, +0xa5, 0x90, 0x66, 0x18, 0x04, 0x76, 0x0d, 0x42, 0x77, 0x34, 0x70, 0x34, 0xeb, 0xc5, 0x21, 0x1f, +0x57, 0x3a, 0x88, 0x53, 0x71, 0x1f, 0x0f, 0x30, 0xb7, 0xe3, 0xe9, 0x28, 0x3a, 0x9c, 0xb5, 0x2f, +0x77, 0x94, 0x78, 0xd9, 0xe9, 0x4d, 0x88, 0xf6, 0xc1, 0x32, 0xed, 0xaf, 0x70, 0x4b, 0xdd, 0xd4, +0xfc, 0x5e, 0x10, 0x12, 0xff, 0x4d, 0xd5, 0x10, 0xac, 0x63, 0x76, 0xba, 0x58, 0xac, 0x61, 0xb8, +0x42, 0x7c, 0x61, 0x60, 0x73, 0xa7, 0xf1, 0x60, 0xa1, 0x0f, 0x46, 0x52, 0xc5, 0x98, 0x98, 0xb8, +0x9e, 0xd9, 0x45, 0xff, 0x55, 0xd9, 0x54, 0xd8, 0xeb, 0x28, 0x4b, 0xb0, 0xd4, 0xf9, 0x2f, 0x6b, +0x24, 0xde, 0xd7, 0x84, 0x61, 0xb7, 0x3e, 0x52, 0xe3, 0x55, 0xa4, 0x28, 0xbd, 0xf9, 0x09, 0x0c, +0xc1, 0xd0, 0x9c, 0xed, 0xaf, 0xee, 0xd6, 0x86, 0x39, 0x23, 0xf0, 0x90, 0x71, 0x59, 0x49, 0xf9, +0xed, 0xd0, 0x28, 0xf7, 0x4e, 0x49, 0x7b, 0x27, 0x86, 0x9d, 0xd7, 0x78, 0x4d, 0xb1, 0x67, 0x4b, +0x8a, 0x71, 0x1b, 0x98, 0xa2, 0xeb, 0x5b, 0x1c, 0xe3, 0x2c, 0x7b, 0x0e, 0x5b, 0x50, 0x1a, 0x52, +0x80, 0x75, 0xce, 0xea, 0x2f, 0xd5, 0x41, 0x14, 0xd9, 0x47, 0x8c, 0xd1, 0x99, 0x75, 0xac, 0x47, +0x0e, 0xe1, 0x44, 0xe2, 0x30, 0x37, 0x35, 0xb6, 0xcc, 0xc4, 0xb5, 0x7d, 0xaf, 0x17, 0xda, 0x50, +0x94, 0xad, 0x01, 0x0c, 0x1f, 0x96, 0xd6, 0x2b, 0x11, 0x66, 0x3b, 0x67, 0xb4, 0x7b, 0x5f, 0xd0, +0x52, 0x01, 0xd7, 0x0f, 0x8a, 0x75, 0x94, 0xfe, 0x9a, 0xd6, 0xaa, 0xf6, 0x65, 0x86, 0xf9, 0x9d, +0x83, 0x1f, 0xaa, 0xc4, 0xdd, 0x9d, 0xdc, 0x44, 0x7c, 0xe3, 0x4b, 0x5e, 0x6a, 0x91, 0x4a, 0xd1, +0x34, 0x2b, 0xe5, 0xdc, 0x91, 0xea, 0xa7, 0x75, 0x8f, 0x81, 0x1e, 0xfd, 0x54, 0xf7, 0x8c, 0xb3, +0xde, 0xd2, 0xbd, 0x75, 0xc7, 0x43, 0x4b, 0xfb, 0x76, 0x6e, 0xed, 0x71, 0xfd, 0x1a, 0x47, 0x94, +0x6e, 0xe8, 0x00, 0x24, 0x7d, 0x2e, 0xc6, 0xed, 0xf8, 0x58, 0x7a, 0x53, 0xc9, 0x9a, 0x44, 0x36, +0x66, 0xd9, 0xd6, 0x63, 0xc7, 0xe8, 0x46, 0x8b, 0x3b, 0x1a, 0x53, 0x94, 0xc4, 0x87, 0x09, 0xbb, +0xbb, 0xa6, 0x97, 0x30, 0xc4, 0xa3, 0xeb, 0x41, 0x1b, 0x69, 0x17, 0xf3, 0xba, 0x41, 0x62, 0x58, +0xa5, 0x87, 0x0d, 0x9b, 0x9e, 0xbb, 0xcb, 0x3c, 0x1e, 0x59, 0x08, 0x56, 0x86, 0x4d, 0xed, 0x00, +0x0d, 0xab, 0x56, 0x45, 0xab, 0x5a, 0xaf, 0xc0, 0x1b, 0xca, 0x2b, 0x8e, 0x07, 0x84, 0xd9, 0x99, +0xc7, 0xa3, 0x89, 0x84, 0xb9, 0x16, 0xd6, 0xe4, 0x9b, 0x4e, 0x2a, 0x97, 0xc2, 0x54, 0x63, 0x08, +0x0d, 0x2c, 0x85, 0xff, 0x2c, 0xd0, 0xa2, 0xe5, 0x6d, 0x45, 0x96, 0xcd, 0xb1, 0xc6, 0xa8, 0xa5, +0x65, 0x2b, 0x38, 0xf7, 0xa2, 0x44, 0xcb, 0x87, 0xa0, 0x50, 0x85, 0x7b, 0xd5, 0x83, 0x22, 0x54, +0xbd, 0x94, 0x1c, 0x6e, 0x65, 0xa9, 0xdb, 0xf5, 0x9b, 0x8e, 0xac, 0xe9, 0x05, 0x76, 0x96, 0x5c, +0x71, 0xaa, 0x8b, 0x44, 0x6c, 0xe0, 0x81, 0xfe, 0x84, 0xb9, 0x11, 0xf6, 0xdd, 0x37, 0x16, 0xc7, +0x19, 0xb8, 0x82, 0xb4, 0x1b, 0x70, 0xfa, 0x53, 0x8f, 0xf0, 0x00, 0xb0, 0x3f, 0xc7, 0xe1, 0x5a, +0xac, 0x37, 0x40, 0x0c, 0xf7, 0x79, 0xc5, 0xa5, 0xfe, 0xfe, 0xd8, 0xf8, 0x05, 0xdb, 0x70, 0x4a, +0xb6, 0xf5, 0x95, 0x70, 0x43, 0x80, 0x10, 0xa5, 0xb0, 0x65, 0xed, 0x1e, 0x49, 0x29, 0x0a, 0x2c, +0x00, 0x0a, 0x9a, 0xa9, 0xde, 0x77, 0xfb, 0x0f, 0x41, 0x5a, 0x2b, 0xfd, 0x83, 0x39, 0xb9, 0x78, +0xbd, 0x0d, 0x15, 0x97, 0xb3, 0x3f, 0xb2, 0xf8, 0x68, 0x3e, 0xa9, 0xe3, 0xad, 0x88, 0x12, 0x84, +0x61, 0xa1, 0x2e, 0xfb, 0xee, 0xbf, 0x12, 0xda, 0x26, 0x08, 0x11, 0x9a, 0x92, 0x20, 0x23, 0x13, +0x02, 0x97, 0x53, 0xe1, 0x9b, 0x27, 0x2c, 0x5e, 0xb4, 0x10, 0xca, 0xb3, 0x7a, 0xae, 0x6e, 0x61, +0xa5, 0xae, 0xa3, 0x40, 0x6e, 0x5c, 0x8d, 0xd8, 0xd1, 0x38, 0xba, 0xd4, 0x25, 0xaf, 0x34, 0xec, +0x5f, 0xa2, 0x22, 0xae, 0xeb, 0xf2, 0xe0, 0x61, 0xb5, 0xa5, 0x7d, 0x63, 0x65, 0x91, 0xb9, 0x3f, +0x4a, 0x25, 0xba, 0x54, 0xe8, 0x11, 0x3a, 0x6c, 0x5f, 0x12, 0xd7, 0x0c, 0x9c, 0x6d, 0x89, 0xe7, +0x5b, 0x8f, 0xac, 0xeb, 0x60, 0x0b, 0xc6, 0xe9, 0x38, 0x07, 0xbf, 0xb1, 0x50, 0xb0, 0x7e, 0xb2, +0x5c, 0x3a, 0xd5, 0x73, 0x83, 0xf5, 0x16, 0x78, 0xde, 0x1f, 0xb7, 0xad, 0xdb, 0x64, 0x68, 0x78, +0xe6, 0xb4, 0xb4, 0x0b, 0xc9, 0x20, 0x3b, 0xef, 0x89, 0x3f, 0x8c, 0xe5, 0x66, 0x7a, 0x02, 0xf3, +0x46, 0x5b, 0x0a, 0x10, 0x1c, 0xc4, 0x48, 0xf0, 0x1a, 0x74, 0xcc, 0x2f, 0x9e, 0x7b, 0x83, 0xdc, +0x57, 0x69, 0x67, 0xb6, 0x9b, 0xdf, 0x62, 0x3f, 0x17, 0x5a, 0xdd, 0xf0, 0xb2, 0x38, 0x93, 0xa8, +0xd6, 0x56, 0x8b, 0xba, 0x9e, 0xca, 0x3a, 0x6a, 0x2c, 0xdc, 0x42, 0x88, 0xda, 0xf6, 0xc9, 0x91, +0x0c, 0xeb, 0x2a, 0xe3, 0x41, 0xe1, 0x8f, 0x33, 0xff, 0x21, 0x68, 0xd2, 0x80, 0x64, 0xba, 0x06, +0x04, 0x06, 0x73, 0xe1, 0x3c, 0xa8, 0xaa, 0x3a, 0x60, 0x5c, 0x20, 0xe8, 0x74, 0xac, 0x1e, 0x83, +0x81, 0x88, 0xe7, 0x02, 0x6c, 0xdd, 0x64, 0x2c, 0x72, 0x63, 0x63, 0x22, 0xe7, 0xa5, 0xdb, 0x78, +0x7c, 0x1f, 0x31, 0xef, 0x73, 0xeb, 0x45, 0x35, 0x94, 0x03, 0xb2, 0x84, 0xb4, 0x9b, 0xc3, 0xdb, +0x26, 0x6c, 0x98, 0xa5, 0xbc, 0x5c, 0x23, 0x0f, 0xd1, 0xda, 0x46, 0x0f, 0xa6, 0xc8, 0xa9, 0x97, +0xd1, 0xa1, 0x50, 0x21, 0xe1, 0xa9, 0x4d, 0xc3, 0xfb, 0xcb, 0x05, 0xaa, 0x61, 0xaf, 0xda, 0x67, +0x17, 0x07, 0x54, 0xae, 0x41, 0x95, 0x72, 0x03, 0x4b, 0xfd, 0x88, 0x2c, 0x39, 0x39, 0x3e, 0x38, +0x70, 0xf5, 0x3a, 0x1f, 0xf6, 0x49, 0xab, 0x0c, 0x2b, 0x6e, 0x14, 0xfd, 0xbb, 0xe7, 0x9a, 0x73, +0xc2, 0x17, 0xde, 0x2e, 0x1c, 0x91, 0x78, 0x09, 0x54, 0x22, 0x86, 0xca, 0x46, 0x69, 0x85, 0x18, +0x91, 0x13, 0xcb, 0xd6, 0x67, 0x24, 0x78, 0x89, 0x67, 0xdf, 0x22, 0x5f, 0x1f, 0xbd, 0x7f, 0x86, +0x9f, 0xb0, 0x1a, 0x62, 0x1f, 0xe4, 0x6b, 0x66, 0xdd, 0xac, 0x95, 0x06, 0xa9, 0x48, 0xe9, 0x49, +0x0b, 0xf4, 0x04, 0xe7, 0x56, 0xdf, 0x30, 0x41, 0xc6, 0x93, 0xf2, 0xe6, 0x51, 0x71, 0x9a, 0x7e, +0x2b, 0x19, 0x75, 0x62, 0xd1, 0xc1, 0xf8, 0x2b, 0x53, 0x99, 0x20, 0x77, 0x9d, 0x27, 0xa3, 0xd3, +0x3d, 0x4a, 0xdb, 0x69, 0x82, 0x11, 0x72, 0x9d, 0xb4, 0x15, 0xdf, 0x9e, 0xc8, 0x82, 0x2d, 0xee, +0x22, 0xd4, 0x1c, 0x44, 0x27, 0x7c, 0x60, 0x16, 0x84, 0x3e, 0x17, 0x6e, 0x98, 0x66, 0x86, 0xc0, +0xea, 0xa1, 0x3d, 0x42, 0xae, 0x23, 0x3c, 0x85, 0xaf, 0x6d, 0x60, 0x38, 0x33, 0x6b, 0xaa, 0xfb, +0x41, 0xc5, 0xd4, 0x72, 0x8f, 0xc2, 0x10, 0xf2, 0x0e, 0xf1, 0x84, 0x15, 0x92, 0x29, 0xa5, 0xa0, +0x4d, 0x99, 0xbb, 0xa7, 0x8a, 0xad, 0x1a, 0xc7, 0x0e, 0xb1, 0x73, 0xb1, 0x4d, 0xa1, 0xd8, 0xcd, +0x47, 0x50, 0x8c, 0x7a, 0xa6, 0xd9, 0xe9, 0x73, 0x82, 0xfe, 0xd1, 0x09, 0x57, 0x01, 0xfb, 0x8b, +0x07, 0x62, 0xe7, 0xab, 0xaf, 0x9f, 0xa7, 0xa0, 0x74, 0x0e, 0xaa, 0xd0, 0x7c, 0xe6, 0x9d, 0x17, +0xa8, 0x36, 0xea, 0xa0, 0x60, 0x62, 0xb5, 0x87, 0x9f, 0xb5, 0x3f, 0x23, 0xd6, 0x46, 0x0d, 0x64, +0x04, 0x85, 0xe4, 0xab, 0x65, 0x07, 0xa4, 0x13, 0xa2, 0xbe, 0x27, 0x1f, 0x73, 0x15, 0x2f, 0x14, +0x1d, 0xdd, 0x8e, 0x1d, 0x2e, 0x0f, 0xf5, 0x55, 0x63, 0x4c, 0x24, 0x27, 0x1d, 0x4a, 0x01, 0xce, +0x31, 0xbb, 0xf7, 0xfd, 0xf3, 0x58, 0xb7, 0x77, 0x16, 0xe6, 0xba, 0xe6, 0x38, 0x13, 0xad, 0x26, +0x8f, 0xe4, 0xb3, 0x3d, 0xf5, 0xa6, 0x16, 0xd2, 0x1a, 0x9a, 0xa8, 0x53, 0x33, 0xcf, 0x59, 0x29, +0x0f, 0x8a, 0x2c, 0xf0, 0x67, 0x0a, 0x5c, 0xfb, 0x70, 0xd4, 0x5d, 0xcf, 0x97, 0x3f, 0x8e, 0xb1, +0xb0, 0x34, 0xa6, 0xae, 0x2f, 0x6d, 0xd7, 0x1b, 0x48, 0x23, 0xbd, 0xfe, 0xa3, 0x93, 0xe7, 0xd1, +0x03, 0xf2, 0xc8, 0xd5, 0xd9, 0x82, 0x7e, 0x53, 0xef, 0x10, 0x4e, 0x2b, 0xa2, 0xc6, 0x51, 0x3d, +0x64, 0x81, 0x71, 0xc6, 0x4c, 0x21, 0xb2, 0xa4, 0xe4, 0x82, 0xe9, 0xbc, 0x29, 0xa3, 0xf1, 0x3a, +0xdd, 0xf4, 0xe4, 0x2d, 0xc5, 0x96, 0x6b, 0x33, 0x6c, 0xf7, 0x1f, 0xfd, 0x41, 0xf3, 0xc4, 0xf2, +0x46, 0xa4, 0xcd, 0x74, 0xa0, 0x47, 0x63, 0x70, 0xf9, 0xa4, 0x2a, 0xa0, 0xf2, 0x15, 0x7b, 0xda, +0x3c, 0x72, 0xf9, 0x0d, 0x7e, 0x15, 0x09, 0xcb, 0x67, 0x62, 0x2a, 0x67, 0x75, 0xd9, 0x60, 0x04, +0x7d, 0xfc, 0xde, 0x0f, 0x29, 0xb6, 0x80, 0x64, 0x78, 0xdc, 0x74, 0xd7, 0x6a, 0xce, 0xb8, 0xcf, +0xbd, 0x25, 0x61, 0x35, 0xc2, 0x42, 0x81, 0x8b, 0x75, 0x9d, 0xf8, 0xdb, 0xb5, 0x7e, 0x0c, 0x65, +0xf2, 0x48, 0xf9, 0x9d, 0xc3, 0x88, 0x30, 0x8b, 0x06, 0x96, 0xb8, 0x50, 0x31, 0xc1, 0x91, 0xf5, +0x90, 0xf7, 0xba, 0xa9, 0x6c, 0xa0, 0xa0, 0x66, 0x54, 0x7e, 0x9c, 0x7c, 0x53, 0x30, 0xfc, 0xbb, +0x51, 0x0a, 0xfa, 0x7c, 0x23, 0xf4, 0x86, 0x72, 0xfe, 0xdd, 0x13, 0xae, 0x00, 0xa6, 0x78, 0x52, +0x77, 0xd2, 0x20, 0xaf, 0x7b, 0x34, 0x39, 0x05, 0x1a, 0x98, 0xd8, 0x52, 0x74, 0xc3, 0x49, 0xd0, +0xc4, 0xb8, 0x6d, 0x8a, 0x7d, 0x21, 0x45, 0x40, 0x1d, 0x68, 0xf2, 0xb9, 0xfd, 0x07, 0xb7, 0x73, +0x82, 0xd3, 0xe9, 0x2c, 0x1f, 0xcc, 0x46, 0x5e, 0x41, 0xf8, 0x8a, 0xdf, 0xc8, 0x25, 0x11, 0x4a, +0xd8, 0x24, 0x75, 0xb4, 0xce, 0xf9, 0x6e, 0x97, 0x25, 0x3c, 0xf2, 0x84, 0xf1, 0x01, 0x1b, 0xb8, +0x6b, 0x82, 0x5c, 0x7d, 0x1f, 0x82, 0xc6, 0x8e, 0x98, 0xbe, 0xd2, 0xf6, 0xe7, 0xec, 0x22, 0xbc, +0x6e, 0xf8, 0xfe, 0xe8, 0x69, 0x26, 0x3c, 0x7b, 0x12, 0x64, 0x5e, 0xef, 0x5e, 0xe2, 0x75, 0x13, +0x4a, 0x6b, 0x98, 0xef, 0x64, 0xaa, 0x57, 0x7c, 0x79, 0x54, 0xdd, 0x28, 0xe3, 0x53, 0x43, 0x46, +0x33, 0x54, 0x17, 0xa6, 0x7b, 0x0e, 0xb1, 0xd6, 0xb7, 0xa4, 0x14, 0x41, 0x83, 0xac, 0xcd, 0x9a, +0xad, 0xf4, 0x08, 0xb9, 0x6e, 0xf9, 0xb8, 0x3d, 0x02, 0xd5, 0x2e, 0xae, 0xa4, 0x61, 0x89, 0x43, +0xc7, 0x88, 0x4a, 0x3d, 0x6f, 0x71, 0xb8, 0xdc, 0x7a, 0xeb, 0x47, 0xe2, 0x97, 0x3d, 0x32, 0x56, +0x8e, 0xda, 0xb5, 0x7c, 0xaf, 0x9e, 0x4f, 0x5d, 0x74, 0x04, 0x9f, 0x4c, 0x1b, 0x00, 0x95, 0xd0, +0x5d, 0x2b, 0xe7, 0x00, 0x00, 0x1d, 0x63, 0x09, 0xa6, 0xa5, 0x36, 0x9a, 0x78, 0xc9, 0xe8, 0x09, +0xcc, 0x89, 0x4d, 0xef, 0x23, 0x82, 0xe2, 0x0b, 0xa3, 0x4b, 0xc8, 0xa2, 0x0d, 0x4c, 0x49, 0x0e, +0x9a, 0x8b, 0x49, 0x09, 0xe4, 0x46, 0x54, 0x84, 0xdb, 0x47, 0xa6, 0x92, 0x14, 0x0c, 0x8c, 0x22, +0x29, 0x38, 0x87, 0x1a, 0x9b, 0xcc, 0x4a, 0xae, 0x26, 0x57, 0xcc, 0x9c, 0x72, 0x26, 0x03, 0x01, +0x40, 0x5c, 0xae, 0x33, 0x73, 0x1f, 0x56, 0xd7, 0xef, 0x5f, 0x46, 0x39, 0xb5, 0x14, 0xb1, 0x7a, +0xd8, 0x1c, 0x52, 0x44, 0x57, 0xa1, 0xcb, 0x78, 0x15, 0xa8, 0x1c, 0xe3, 0x7e, 0x10, 0x2a, 0xc2, +0xcd, 0x9f, 0xc0, 0x09, 0xfb, 0x22, 0x9f, 0x36, 0x61, 0xe2, 0x29, 0x40, 0xed, 0x55, 0xdf, 0xf2, +0xe8, 0xe7, 0xc8, 0x74, 0xcf, 0x6d, 0x6f, 0xe3, 0xf8, 0xc2, 0x05, 0xc4, 0xaa, 0xad, 0x97, 0x14, +0x46, 0x34, 0x91, 0xf7, 0xd6, 0xab, 0x31, 0x12, 0x7a, 0x63, 0x5d, 0xf0, 0x65, 0xba, 0x01, 0x69, +0x36, 0x87, 0xb6, 0xb3, 0xa3, 0xe8, 0xb9, 0x8c, 0xb7, 0x23, 0x8c, 0x51, 0xde, 0xe7, 0xa0, 0x07, +0x52, 0xdf, 0xb5, 0x3e, 0xe3, 0xc8, 0xc8, 0xcb, 0x00, 0xe3, 0xf7, 0xfa, 0x11, 0x68, 0xa8, 0xb7, +0xc3, 0x05, 0xf2, 0x7a, 0xb6, 0xfa, 0x4d, 0x0e, 0xec, 0x4a, 0x04, 0x43, 0xa0, 0x23, 0x91, 0x76, +0x29, 0xc3, 0x41, 0x79, 0xe5, 0x39, 0x81, 0x85, 0xf2, 0x3b, 0xb4, 0x09, 0x69, 0x31, 0xb3, 0xa1, +0xee, 0x9e, 0x0b, 0xbe, 0x1e, 0x9f, 0xcf, 0x27, 0xbe, 0xd1, 0xb4, 0x40, 0x7f, 0x33, 0xf8, 0x74, +0xdc, 0xc9, 0x35, 0x81, 0x69, 0xe7, 0xb5, 0xab, 0xac, 0x57, 0xa1, 0xf6, 0x99, 0x4e, 0xd9, 0x01, +0x9e, 0x49, 0x4c, 0xed, 0x8b, 0x6d, 0xb2, 0x31, 0xfa, 0xfa, 0x37, 0x3b, 0x37, 0x42, 0x5b, 0xe6, +0x94, 0xea, 0x39, 0x2b, 0x3f, 0x1c, 0x74, 0x07, 0x1d, 0x28, 0x75, 0x1b, 0xc3, 0xec, 0x6c, 0xa1, +0xdb, 0x1e, 0x2b, 0x9d, 0xfe, 0x44, 0x6a, 0x74, 0xa8, 0x6b, 0xd1, 0x07, 0x4a, 0x94, 0xe4, 0xba, +0xad, 0xe9, 0xde, 0x75, 0xf8, 0xe3, 0xf1, 0x93, 0x05, 0x5a, 0xe6, 0x24, 0xcb, 0xcb, 0x69, 0xe5, +0x8d, 0xf9, 0xf3, 0x03, 0x76, 0x6a, 0x53, 0xa5, 0xc2, 0xba, 0xa2, 0x60, 0x0a, 0x91, 0xa3, 0x53, +0x28, 0xef, 0x00, 0x5c, 0xe8, 0x35, 0x00, 0x6e, 0xc1, 0x52, 0x1e, 0x5a, 0x11, 0x4c, 0x48, 0x24, +0x5e, 0x4c, 0xcc, 0x4a, 0xce, 0x84, 0x9f, 0x2b, 0xd2, 0x26, 0x75, 0xe6, 0x47, 0x13, 0x64, 0xa1, +0x28, 0x88, 0x3e, 0x62, 0xac, 0x45, 0xaf, 0xf9, 0x5c, 0xf4, 0x67, 0x33, 0xa9, 0xa8, 0x96, 0xbc, +0x7f, 0x56, 0x56, 0xf9, 0xef, 0x3b, 0x1b, 0x10, 0x52, 0x6c, 0xc8, 0xc0, 0xdd, 0x16, 0x64, 0x1e, +0x8c, 0x43, 0x5d, 0x10, 0x29, 0x9e, 0x50, 0xa9, 0xfd, 0x29, 0xdb, 0x21, 0x3f, 0x70, 0xe4, 0x28, +0x19, 0x50, 0xe1, 0x76, 0xe7, 0xe6, 0x85, 0x0a, 0xfb, 0x7c, 0x61, 0x9a, 0x32, 0x4e, 0x78, 0x20, +0xa2, 0x64, 0x14, 0x48, 0xc3, 0x2c, 0xa5, 0xb1, 0x0d, 0x7a, 0x28, 0x4c, 0xae, 0x18, 0xb8, 0xa0, +0xc3, 0xdb, 0x3b, 0xb3, 0xfb, 0x6b, 0x10, 0xaf, 0xcf, 0xfe, 0xd1, 0x23, 0x6f, 0x20, 0xb4, 0x04, +0xc8, 0x88, 0xc9, 0xc4, 0x6f, 0x6e, 0xd0, 0xc4, 0x02, 0xd3, 0x4c, 0x59, 0xeb, 0x65, 0x2c, 0xe2, +0x58, 0x3d, 0x99, 0xdc, 0x7a, 0x81, 0xab, 0xee, 0x8f, 0x5e, 0x16, 0x23, 0x07, 0x11, 0xa5, 0x19, +0x64, 0xfb, 0x1a, 0x98, 0xe0, 0x4d, 0x3b, 0x02, 0xe3, 0xf5, 0xe0, 0xf5, 0xed, 0xea, 0x20, 0xfc, +0x5d, 0x06, 0xc3, 0xea, 0xbb, 0x5b, 0x0c, 0xcb, 0x9e, 0x74, 0x1b, 0x5f, 0x7f, 0x51, 0x86, 0xa6, +0x60, 0x2d, 0xeb, 0x05, 0x82, 0xa5, 0x46, 0x76, 0xbe, 0x82, 0x57, 0x7e, 0x42, 0x32, 0x39, 0x19, +0x32, 0xe1, 0x74, 0xf9, 0x10, 0xe8, 0x74, 0x6a, 0xf3, 0xee, 0xaf, 0x9d, 0x70, 0x4a, 0x40, 0x5d, +0x28, 0x9c, 0xc9, 0x3a, 0xe6, 0x68, 0x19, 0x0f, 0xfb, 0x85, 0xa6, 0xf1, 0x19, 0x0f, 0xf4, 0x0c, +0x42, 0xdc, 0x02, 0xfb, 0x1e, 0xc7, 0x4f, 0xf1, 0x58, 0x6a, 0x8b, 0xb0, 0x0e, 0xb4, 0x78, 0xab, +0xb6, 0x12, 0xb0, 0x6e, 0xe4, 0xbf, 0xcc, 0x2a, 0x50, 0xcf, 0xa6, 0xfd, 0xc8, 0xd4, 0x20, 0x14, +0x38, 0x4d, 0x2b, 0x79, 0x9e, 0xd0, 0xc5, 0x5a, 0x7e, 0x79, 0xfc, 0xa3, 0xdd, 0xe2, 0xa4, 0xa3, +0xd0, 0x64, 0xee, 0xbc, 0x8d, 0x00, 0x78, 0xca, 0x90, 0x49, 0xd9, 0xaf, 0x50, 0x85, 0xe0, 0x71, +0x51, 0xdc, 0x8b, 0x99, 0x0a, 0x14, 0x00, 0x83, 0xe6, 0x69, 0x26, 0x2c, 0x9f, 0xb5, 0x40, 0xbe, +0xf7, 0x7e, 0xe9, 0x81, 0xe9, 0xe4, 0xba, 0x4c, 0x10, 0xdd, 0xb1, 0x51, 0xe8, 0x4f, 0x55, 0xc4, +0x47, 0xe6, 0xf8, 0x8f, 0x2d, 0x16, 0x72, 0x75, 0x85, 0xf1, 0xd4, 0x82, 0x7f, 0x24, 0xa2, 0x44, +0x15, 0xfa, 0x1d, 0x25, 0xb0, 0x16, 0x60, 0xdb, 0x37, 0x5c, 0x1f, 0x07, 0x8a, 0x4b, 0xa3, 0xdf, +0x2b, 0x44, 0x53, 0xbe, 0x37, 0x01, 0x0b, 0x7e, 0x45, 0x98, 0x80, 0x5d, 0x6b, 0xc3, 0x6d, 0x30, +0x6c, 0xf7, 0x28, 0xb3, 0xc1, 0x02, 0x3d, 0x41, 0x66, 0x7c, 0x0d, 0xf6, 0x1e, 0x2a, 0x15, 0xec, +0x56, 0xb7, 0x30, 0xca, 0x6a, 0x36, 0xa9, 0x73, 0x26, 0xd9, 0x7c, 0xc3, 0xb0, 0x0b, 0x4d, 0xe0, +0x27, 0x64, 0xf9, 0xdf, 0x69, 0xaa, 0x52, 0xe9, 0xaa, 0x2e, 0xdc, 0xd6, 0x34, 0xa0, 0x75, 0x13, +0x5a, 0xf8, 0x71, 0xc8, 0x2c, 0xbb, 0x3d, 0xdc, 0x5e, 0xae, 0x9d, 0xe8, 0xcb, 0x3e, 0xc7, 0xca, +0x8e, 0xd7, 0x6b, 0xee, 0x17, 0xcd, 0xc1, 0x0f, 0x7a, 0xd3, 0xe9, 0x12, 0x19, 0xf3, 0xec, 0xd3, +0x8c, 0x98, 0x08, 0x7f, 0x3a, 0x66, 0x8e, 0xd2, 0x79, 0x2a, 0x5d, 0x76, 0x0a, 0xf5, 0xa3, 0x86, +0xba, 0x78, 0xa1, 0x1f, 0xbd, 0xa0, 0x1a, 0xc8, 0x91, 0xf7, 0xbf, 0xae, 0x20, 0x15, 0xe0, 0x8e, +0x9a, 0xf0, 0x19, 0x5b, 0x87, 0xd4, 0x80, 0x69, 0x64, 0x69, 0xf2, 0xa2, 0x23, 0x5b, 0x97, 0x72, +0xe6, 0xe6, 0x9d, 0x94, 0x0a, 0x30, 0xda, 0xca, 0x65, 0xe9, 0xd9, 0x35, 0x81, 0x71, 0x27, 0x1c, +0xbd, 0x6e, 0xd6, 0x65, 0xab, 0x9c, 0x70, 0x6c, 0x2b, 0xf1, 0x6a, 0xca, 0x04, 0x6d, 0xe0, 0xbc, +0x69, 0x7b, 0x0f, 0x33, 0x24, 0xee, 0xb2, 0x34, 0xd8, 0x60, 0xa5, 0x21, 0x70, 0x2e, 0x78, 0x96, +0x03, 0xdf, 0xa1, 0x25, 0xfc, 0x3c, 0xf4, 0xc0, 0x17, 0xe6, 0xaa, 0xa4, 0x0b, 0xd1, 0xf0, 0x20, +0x6a, 0xfa, 0x2c, 0xb3, 0xdb, 0x5f, 0x67, 0xbe, 0x2a, 0x33, 0xb8, 0x96, 0xe2, 0x50, 0xc2, 0x0f, +0xce, 0x31, 0xe2, 0x59, 0x1d, 0xcd, 0x8e, 0xde, 0x10, 0xb7, 0x98, 0xdf, 0xa1, 0x97, 0x66, 0xd9, +0x24, 0xcc, 0x64, 0xc8, 0x26, 0xa5, 0x16, 0xfd, 0xcd, 0xb0, 0xb8, 0xd2, 0x61, 0x9d, 0x75, 0xcd, +0xdb, 0x08, 0xfe, 0x5b, 0x2d, 0x23, 0xe0, 0x9d, 0xab, 0xef, 0xc8, 0x8a, 0x02, 0x6b, 0xf1, 0x7c, +0xba, 0x09, 0x2d, 0xf4, 0x27, 0x42, 0xcd, 0x78, 0x6e, 0x7d, 0x3d, 0xdf, 0x5f, 0x73, 0x1c, 0xe3, +0x1e, 0xaa, 0x07, 0x8e, 0xd4, 0xb5, 0x5a, 0xe8, 0xbb, 0xc8, 0x28, 0xc4, 0x7f, 0xdc, 0x61, 0x57, +0x01, 0x0c, 0xdc, 0x73, 0x0f, 0xf0, 0x1a, 0x02, 0x4f, 0x1d, 0xed, 0x5e, 0x5b, 0xce, 0x99, 0xad, +0xc1, 0x04, 0x73, 0xec, 0x10, 0x47, 0x22, 0x85, 0x8b, 0xda, 0x85, 0xfd, 0x64, 0xff, 0xa4, 0xbe, +0x0b, 0xe3, 0x27, 0x52, 0x3f, 0xb9, 0x24, 0x8b, 0xdc, 0xe6, 0xf9, 0xf9, 0x79, 0x70, 0x46, 0x47, +0xb4, 0x72, 0xd4, 0x43, 0xef, 0x3d, 0xbb, 0x5b, 0xde, 0xfe, 0xc7, 0x93, 0x05, 0xe4, 0xcb, 0x2e, +0x97, 0x19, 0x4b, 0xb2, 0x1b, 0xbd, 0xb1, 0x2d, 0xea, 0x81, 0x2d, 0x5f, 0x30, 0xcf, 0xd1, 0xfc, +0xa5, 0x48, 0xa4, 0x02, 0x18, 0xb1, 0x7d, 0x4a, 0x50, 0x15, 0xd6, 0x1b, 0xb6, 0x21, 0x58, 0xa9, +0xf4, 0xcb, 0x71, 0x72, 0x16, 0x94, 0xe2, 0xec, 0x6c, 0x16, 0xe8, 0xaf, 0x80, 0x02, 0x87, 0x0c, +0x95, 0x33, 0x99, 0x35, 0xb5, 0x3d, 0x12, 0xa4, 0x7b, 0xcc, 0x54, 0x4d, 0x3f, 0xc1, 0x4a, 0x2e, +0x90, 0xdf, 0x5d, 0xb2, 0x13, 0x71, 0x31, 0xcc, 0x89, 0x1d, 0xc6, 0xa5, 0x26, 0x87, 0x82, 0x48, +0xeb, 0x18, 0x97, 0xe5, 0x75, 0xe4, 0x93, 0xb4, 0x9f, 0x70, 0xd2, 0xa7, 0xe5, 0x14, 0x62, 0x24, +0xbb, 0x2a, 0x20, 0xf4, 0x74, 0x04, 0x97, 0x7a, 0x01, 0x1f, 0x06, 0xcf, 0xbd, 0xe0, 0xb1, 0x4f, +0x0c, 0x6e, 0x7f, 0x76, 0xa5, 0x50, 0x40, 0xc6, 0x6f, 0x32, 0xc8, 0x81, 0x2e, 0xf2, 0x07, 0x11, +0xc0, 0x64, 0xe2, 0xfb, 0x9b, 0x31, 0x7d, 0x42, 0xbf, 0x86, 0x13, 0xe8, 0x56, 0xb5, 0x9e, 0x35, +0x61, 0x1b, 0xcf, 0xf6, 0xab, 0x0f, 0xb7, 0xf3, 0xf7, 0xd4, 0x34, 0x57, 0xe8, 0xf2, 0xa2, 0xba, +0xb9, 0xae, 0x96, 0x67, 0x93, 0x79, 0x7b, 0x59, 0xed, 0x97, 0x66, 0x88, 0xb5, 0x16, 0x47, 0xe1, +0x46, 0xd8, 0x75, 0x1d, 0xe3, 0xea, 0x6c, 0x7b, 0xb0, 0x69, 0xb8, 0xff, 0x2a, 0x19, 0xa3, 0xe5, +0x9a, 0x47, 0xf8, 0xfa, 0x38, 0xf7, 0x0b, 0xd8, 0xb8, 0x3e, 0x1d, 0x85, 0xa7, 0xd4, 0x6f, 0x5b, +0x64, 0xab, 0xe2, 0xd8, 0xf4, 0x6b, 0x72, 0x96, 0xa9, 0x4a, 0x9c, 0x47, 0x2f, 0x5a, 0x26, 0x3d, +0xd1, 0x4c, 0xc8, 0x0c, 0x9b, 0xce, 0x1f, 0x98, 0x2a, 0xb7, 0x58, 0xcb, 0x85, 0xee, 0x84, 0xd6, +0xb9, 0xfc, 0x8b, 0x44, 0xa0, 0x77, 0x0b, 0x8e, 0x08, 0x38, 0x92, 0x58, 0x53, 0x36, 0xdd, 0x17, +0xbb, 0x73, 0x41, 0xb1, 0xc4, 0x52, 0x1b, 0xa9, 0x7b, 0x22, 0xff, 0x90, 0x2b, 0x17, 0x50, 0x33, +0x4e, 0x37, 0xcd, 0x99, 0x47, 0x60, 0xed, 0xbd, 0x26, 0x48, 0xf0, 0x11, 0x5f, 0xa7, 0x5a, 0xdd, +0xd8, 0x9e, 0x66, 0x7e, 0x8f, 0x9f, 0xd8, 0xe4, 0x08, 0xb9, 0xc2, 0x0c, 0xb1, 0x82, 0x99, 0xba, +0x62, 0x04, 0x1e, 0x67, 0x63, 0x04, 0x9a, 0x3c, 0x77, 0xdf, 0x14, 0x74, 0x99, 0x2e, 0x1b, 0x4a, +0xd5, 0xde, 0xdc, 0x33, 0xdd, 0x1b, 0x18, 0x1b, 0xa4, 0xa2, 0x95, 0x89, 0x26, 0xc9, 0x66, 0x3b, +0xf4, 0xe0, 0x9d, 0x26, 0xb1, 0xd9, 0xc2, 0xb5, 0xd6, 0x85, 0x5e, 0x5a, 0x85, 0xe3, 0xa6, 0x76, +0x8c, 0xaf, 0x5f, 0x5c, 0xc8, 0x79, 0x6d, 0x39, 0x5e, 0xc8, 0xd3, 0xc3, 0x69, 0xa1, 0x60, 0x1f, +0xef, 0x49, 0xff, 0x65, 0x8c, 0x18, 0x89, 0x54, 0x31, 0xe5, 0xcf, 0x0b, 0x48, 0xf4, 0x07, 0x0c, +0x76, 0xc5, 0xcf, 0xfd, 0x5b, 0x80, 0xbf, 0x2e, 0xf7, 0xb1, 0x0b, 0x8d, 0x81, 0x82, 0x0b, 0x16, +0x40, 0x75, 0xeb, 0x38, 0x2d, 0x5c, 0xd7, 0xec, 0x6a, 0x8e, 0x14, 0xa2, 0x4c, 0x63, 0x80, 0xef, +0x17, 0x8e, 0x6d, 0x0c, 0xc4, 0xca, 0x2c, 0xd1, 0x1b, 0x0a, 0x92, 0x34, 0x4d, 0x4d, 0x0a, 0x8c, +0x47, 0xf8, 0xbc, 0x7e, 0x1e, 0x4f, 0x50, 0x3e, 0x3f, 0xd7, 0x61, 0x42, 0x4f, 0x43, 0x0c, 0xb1, +0x59, 0x59, 0x52, 0x2d, 0xa7, 0x59, 0x87, 0xea, 0x58, 0xe8, 0x33, 0x25, 0x5a, 0x0e, 0x0a, 0xf5, +0xe0, 0x56, 0x18, 0xda, 0x02, 0x02, 0x80, 0xf5, 0xdb, 0x2a, 0xe3, 0x10, 0x40, 0x7d, 0xfe, 0x6f, +0x5d, 0xfc, 0x22, 0x8d, 0xf4, 0x38, 0xfc, 0x44, 0x61, 0x79, 0x78, 0x33, 0x44, 0x0e, 0x18, 0xdb, +0xc8, 0xfb, 0x3a, 0xee, 0xf0, 0xe3, 0x8b, 0x12, 0x15, 0x00, 0xe3, 0x35, 0x8f, 0x69, 0x8f, 0x4a, +0x21, 0x80, 0x20, 0xab, 0xf8, 0xb0, 0x01, 0xd5, 0x1f, 0x53, 0xd4, 0xec, 0x8d, 0xc6, 0x6b, 0x40, +0x4e, 0x0c, 0x2e, 0xc2, 0x64, 0xc9, 0xbd, 0x02, 0xc4, 0xbe, 0xaa, 0x22, 0x67, 0x1c, 0x98, 0xf0, +0x65, 0x70, 0x82, 0x66, 0xc5, 0xee, 0x6e, 0x8c, 0x5b, 0x15, 0x32, 0xcb, 0x99, 0xd7, 0x95, 0xb4, +0x09, 0x06, 0x48, 0x7b, 0x4c, 0xa9, 0xa7, 0x9f, 0xdf, 0x38, 0xd3, 0x1e, 0xc3, 0x9a, 0x15, 0x22, +0x4c, 0x2b, 0x49, 0x02, 0x46, 0x90, 0xca, 0x7b, 0x50, 0xcb, 0x15, 0x5f, 0xc8, 0x93, 0x83, 0x2c, +0x8f, 0xfb, 0xf5, 0x71, 0x0f, 0x2e, 0x92, 0x87, 0x7e, 0x2b, 0x74, 0x30, 0x12, 0xb5, 0x62, 0x80, +0x4c, 0xfa, 0x7e, 0xac, 0x7b, 0x4a, 0x15, 0x91, 0x05, 0x7e, 0x21, 0x37, 0xfb, 0x74, 0x49, 0xa0, +0xec, 0x41, 0x84, 0xe2, 0xa5, 0x57, 0xcf, 0xc4, 0x67, 0x8f, 0xae, 0xd9, 0xd9, 0x0b, 0xf6, 0x44, +0x09, 0x33, 0x16, 0x05, 0x59, 0xba, 0x0b, 0x8d, 0x74, 0xcb, 0x05, 0x21, 0x50, 0x4f, 0x95, 0xcb, +0xa1, 0x17, 0xdc, 0xc2, 0x77, 0xb8, 0x57, 0xc9, 0xed, 0x0f, 0xd3, 0x43, 0x1d, 0x11, 0x89, 0xab, +0x3a, 0x07, 0xae, 0xdd, 0x04, 0x99, 0xde, 0xc5, 0xc3, 0x59, 0xa3, 0x4c, 0x8c, 0xd9, 0x70, 0xb0, +0xa2, 0x91, 0x10, 0x91, 0x41, 0xe0, 0x64, 0x8c, 0xa9, 0x2a, 0x8c, 0x4a, 0x98, 0x5b, 0xfe, 0x1e, +0xc9, 0xc0, 0xed, 0xd6, 0x10, 0x50, 0x52, 0xe0, 0xc5, 0x85, 0xad, 0x01, 0xe4, 0x15, 0xc8, 0x74, +0xe5, 0xdc, 0xb0, 0x64, 0xff, 0x5a, 0x6d, 0xf3, 0xb2, 0xb0, 0x6a, 0xa2, 0x61, 0x00, 0x55, 0xa2, +0xab, 0xd2, 0xef, 0x95, 0xbe, 0xfb, 0x54, 0xd1, 0x31, 0x9e, 0xc9, 0x51, 0xe1, 0xf2, 0x7d, 0x55, +0x70, 0xf0, 0x9f, 0x1b, 0x13, 0xc5, 0x26, 0xf7, 0x99, 0x79, 0xf7, 0x03, 0xf3, 0x67, 0x6c, 0x99, +0xa4, 0xc8, 0xf3, 0x71, 0xa8, 0x41, 0xcc, 0x95, 0xa6, 0xab, 0xf5, 0x2c, 0x0c, 0x19, 0x8c, 0xd9, +0x18, 0x6f, 0xc0, 0x85, 0x06, 0x09, 0x03, 0x7e, 0xa5, 0x53, 0xfc, 0x20, 0x91, 0xe3, 0x81, 0xd9, +0x68, 0x5b, 0x73, 0xce, 0x87, 0x10, 0xda, 0x8f, 0xbf, 0x6c, 0x46, 0xf7, 0x11, 0xcd, 0xe1, 0x6c, +0x28, 0xe9, 0x99, 0x63, 0x15, 0xa5, 0xd4, 0xec, 0xf1, 0x73, 0x6c, 0x18, 0xd4, 0xc5, 0x0d, 0xdc, +0x40, 0x96, 0xb5, 0x42, 0xb0, 0x9d, 0xb6, 0xe3, 0xc9, 0x7c, 0x69, 0xdb, 0x73, 0x3f, 0xe3, 0xec, +0x24, 0x2c, 0x99, 0xd5, 0x8f, 0x5c, 0xe5, 0x36, 0xf0, 0x06, 0x1f, 0x2b, 0xa6, 0xa6, 0xa2, 0x94, +0x50, 0x82, 0x42, 0xd3, 0xa4, 0x80, 0xd7, 0x19, 0xe0, 0x3d, 0x35, 0x00, 0x5b, 0x10, 0xd1, 0xf2, +0xed, 0x83, 0x17, 0x2a, 0x06, 0x11, 0xa0, 0xe2, 0x63, 0x73, 0x89, 0x00, 0x17, 0x08, 0x66, 0xa4, +0x5b, 0x87, 0xf5, 0xab, 0x66, 0xb9, 0x2d, 0x38, 0x95, 0xd4, 0xc5, 0x55, 0x9c, 0xf2, 0x06, 0x89, +0x34, 0xad, 0x37, 0x12, 0x2f, 0xda, 0x70, 0xe9, 0x19, 0xa4, 0x72, 0x36, 0x6a, 0x74, 0xd0, 0x21, +0xcd, 0x7a, 0x38, 0x90, 0x16, 0x8e, 0xb5, 0x00, 0xc1, 0xc0, 0x86, 0x0d, 0x17, 0xdb, 0x97, 0x1d, +0x4f, 0x9e, 0x2a, 0xf8, 0xf7, 0x37, 0xd2, 0xc2, 0xd4, 0xd3, 0xfa, 0xca, 0x10, 0x12, 0x8c, 0x6d, +0x7f, 0x5f, 0xe5, 0xc7, 0x2f, 0xc1, 0xf5, 0xc3, 0xcc, 0xb3, 0x7f, 0x13, 0x21, 0xa3, 0xaa, 0x15, +0xde, 0xb1, 0x6e, 0x7a, 0x9d, 0xe4, 0x3a, 0xe4, 0x36, 0x91, 0xe1, 0xac, 0x4e, 0xe7, 0xaa, 0xb6, +0xe7, 0x45, 0x48, 0x3a, 0xa5, 0xd2, 0x45, 0x80, 0xd5, 0x2e, 0x36, 0x1c, 0xd3, 0xcd, 0x7e, 0x70, +0x68, 0xa6, 0x10, 0xbf, 0x56, 0x2e, 0x1e, 0x3c, 0x59, 0xa1, 0xfe, 0x52, 0x63, 0xde, 0x2b, 0xe6, +0x56, 0x77, 0x44, 0x48, 0x05, 0xb1, 0x6b, 0x08, 0xb6, 0x3c, 0xa4, 0xec, 0x18, 0x10, 0xf7, 0x71, +0xb6, 0xa8, 0x07, 0x62, 0x92, 0x47, 0x69, 0x59, 0xaf, 0xfd, 0xc8, 0x64, 0xb8, 0xa8, 0xe8, 0x94, +0x42, 0x7f, 0x53, 0x39, 0x73, 0x65, 0x25, 0x68, 0x2a, 0x15, 0xb3, 0xcd, 0x5d, 0x00, 0xda, 0x76, +0x6d, 0x6a, 0xf7, 0x6b, 0xc5, 0xdc, 0xfa, 0x76, 0x01, 0xbb, 0x20, 0xe2, 0x64, 0xd6, 0x3c, 0xc8, +0x86, 0xe8, 0x87, 0x5f, 0xa0, 0x40, 0xfc, 0x33, 0x0d, 0xb4, 0xe8, 0x53, 0x74, 0xd1, 0x69, 0x34, +0xd7, 0x57, 0xb2, 0xa5, 0xa7, 0xe7, 0xc8, 0xda, 0xba, 0x53, 0x2b, 0x8a, 0xd6, 0x8e, 0x45, 0x76, +0x7d, 0x8b, 0x3c, 0x72, 0x67, 0x44, 0xef, 0xf3, 0x9f, 0x74, 0x7f, 0x80, 0x5d, 0xa0, 0x7e, 0x59, +0x83, 0x88, 0xf1, 0xc3, 0x27, 0x3d, 0xcb, 0x00, 0xf7, 0x51, 0x7b, 0x21, 0x40, 0x1e, 0x19, 0xc8, +0x59, 0x82, 0x76, 0x27, 0x9d, 0x47, 0x67, 0xfc, 0xf8, 0x5b, 0xfe, 0x7f, 0x6d, 0xce, 0xc9, 0x5f, +0xdd, 0x3b, 0xa8, 0xca, 0x3e, 0x65, 0x2f, 0xbd, 0x27, 0x51, 0x95, 0xee, 0x19, 0xcf, 0x92, 0xdf, +0xe4, 0xc9, 0x8f, 0xa3, 0x41, 0x84, 0xc4, 0xff, 0x98, 0x90, 0xf4, 0x59, 0x75, 0xde, 0xa6, 0xc9, +0x00, 0x79, 0x0a, 0xd5, 0x5b, 0xd6, 0xa1, 0x77, 0x64, 0x75, 0xab, 0x61, 0x28, 0xd2, 0x5e, 0xef, +0x7c, 0xc7, 0xb1, 0x58, 0x70, 0xff, 0xd6, 0x72, 0x1d, 0x2f, 0x90, 0xe9, 0xb2, 0x77, 0x3e, 0x9d, +0x33, 0x79, 0x62, 0xef, 0x42, 0xb0, 0x00, 0x14, 0x15, 0x38, 0x1f, 0x26, 0xf4, 0x5c, 0x3c, 0x6c, +0xc2, 0xcb, 0xc4, 0xc1, 0x83, 0x66, 0x9c, 0x3e, 0xdc, 0xfb, 0x06, 0x0e, 0x3a, 0xde, 0x02, 0x68, +0x3a, 0xba, 0x41, 0x0d, 0x30, 0x5b, 0x7f, 0x04, 0x1c, 0x99, 0x43, 0x7b, 0xa8, 0xc1, 0xac, 0x0a, +0x74, 0x70, 0x67, 0xb7, 0xf1, 0xb9, 0x99, 0xfd, 0xba, 0x02, 0xa8, 0x1a, 0xfe, 0xdb, 0x1a, 0x0c, +0x45, 0x1c, 0x34, 0x07, 0x54, 0x6e, 0x59, 0xb4, 0x4c, 0xed, 0xed, 0xb5, 0xcd, 0x4e, 0x6f, 0xbc, +0x42, 0x28, 0x44, 0x1a, 0x78, 0x57, 0x65, 0x2c, 0x79, 0xc2, 0xc5, 0xb4, 0x2f, 0xed, 0xf4, 0xab, +0x08, 0x8a, 0x9e, 0x30, 0x2a, 0x0a, 0x6b, 0x64, 0x91, 0xa5, 0xa4, 0x2e, 0x34, 0xaf, 0x33, 0xf8, +0x52, 0xde, 0x79, 0x35, 0x14, 0x25, 0x85, 0xec, 0x8e, 0x41, 0x35, 0x59, 0x3c, 0x2b, 0x71, 0xf2, +0x3f, 0xfd, 0x3a, 0x05, 0xb9, 0xea, 0x87, 0xbe, 0xcb, 0x3a, 0x17, 0x08, 0xc6, 0x30, 0xe8, 0x48, +0xc6, 0xc0, 0xca, 0x4a, 0x1e, 0xcd, 0x57, 0x1f, 0x57, 0x60, 0x4a, 0x8a, 0x89, 0x3e, 0xba, 0x05, +0x71, 0x99, 0x64, 0x94, 0xe3, 0x42, 0x1a, 0x54, 0x9d, 0x94, 0xc8, 0x32, 0xf1, 0x17, 0xf5, 0x25, +0xd8, 0xbd, 0xa6, 0xd6, 0xca, 0x9e, 0xad, 0x4b, 0x13, 0x02, 0xca, 0x3d, 0x8f, 0x34, 0x7e, 0x46, +0xf3, 0xde, 0x48, 0xf6, 0x41, 0xe7, 0xca, 0x19, 0x83, 0xd7, 0x30, 0xe8, 0xda, 0x9a, 0x11, 0xcc, +0x6e, 0x20, 0xea, 0xc0, 0x1d, 0xbc, 0xf4, 0xea, 0x50, 0x37, 0xd1, 0x8f, 0xc9, 0x6d, 0xa2, 0x22, +0x75, 0xad, 0x10, 0xf2, 0xfa, 0x4e, 0xd4, 0xd5, 0xed, 0xdd, 0xc3, 0x80, 0x40, 0x79, 0xf3, 0x95, +0xe0, 0x55, 0x90, 0xc1, 0x8d, 0x6c, 0x33, 0x28, 0xae, 0xdb, 0x80, 0xea, 0x42, 0x34, 0xd1, 0x5a, +0x56, 0xdc, 0x95, 0xd0, 0x84, 0x6c, 0x6b, 0xf2, 0x43, 0xd9, 0x1d, 0x4f, 0x07, 0x02, 0x74, 0x72, +0x0d, 0x0d, 0xc1, 0x99, 0x92, 0x87, 0x93, 0x09, 0x3f, 0x71, 0x0c, 0x40, 0xe7, 0xce, 0x6b, 0x20, +0xc9, 0x4e, 0xa2, 0x2b, 0x08, 0xea, 0x75, 0xca, 0x3c, 0xb3, 0x4e, 0x7b, 0x18, 0x30, 0xb4, 0x01, +0x74, 0xcf, 0x92, 0x18, 0x95, 0x6c, 0x28, 0x9f, 0x5c, 0x65, 0x59, 0xc8, 0x1a, 0x4d, 0x21, 0x8f, +0x81, 0x22, 0x56, 0x14, 0x5d, 0xd0, 0xd5, 0x84, 0xe5, 0xe9, 0x55, 0x22, 0xd1, 0x76, 0x23, 0x1d, +0xfc, 0x59, 0x5a, 0x59, 0xf7, 0x41, 0xcf, 0x15, 0xdb, 0xd0, 0xde, 0x52, 0xb7, 0x16, 0xc0, 0xa5, +0xbe, 0x68, 0xcc, 0xc2, 0x12, 0x61, 0x71, 0xe3, 0x8f, 0x4d, 0xe2, 0x29, 0x03, 0xd7, 0xd2, 0x3b, +0x37, 0x70, 0xec, 0x55, 0x02, 0x6a, 0xc4, 0x5b, 0x61, 0x85, 0x13, 0xfc, 0x52, 0x33, 0xdf, 0x0b, +0xbb, 0x2d, 0x9d, 0x54, 0xcc, 0xd4, 0x70, 0x78, 0x75, 0x7e, 0xe8, 0x8d, 0x56, 0x6a, 0x77, 0x12, +0xec, 0xb9, 0x44, 0xc5, 0x65, 0xc2, 0x32, 0x05, 0x10, 0x90, 0x73, 0x19, 0x8e, 0x55, 0x77, 0x6b, +0xcf, 0x2a, 0x92, 0x87, 0x81, 0xc8, 0xcb, 0x3c, 0xaf, 0x7e, 0x80, 0xc0, 0x26, 0x4a, 0x31, 0x3c, +0xc3, 0x85, 0x07, 0x15, 0x68, 0xcd, 0x09, 0xea, 0x02, 0x34, 0xfc, 0xe8, 0x02, 0xda, 0x15, 0x1d, +0x39, 0xb3, 0x21, 0x0d, 0x7a, 0x60, 0x7d, 0x4a, 0xc3, 0x82, 0xe1, 0xd9, 0x46, 0x2a, 0xf9, 0x0b, +0xbb, 0x04, 0xcd, 0x66, 0xc1, 0xed, 0x73, 0xa2, 0x4c, 0x9a, 0x06, 0x61, 0x35, 0xb2, 0x31, 0xac, +0x99, 0xfb, 0x3b, 0xcb, 0xb2, 0xda, 0x43, 0xa6, 0x46, 0xbe, 0xff, 0xd0, 0x74, 0xd9, 0xed, 0xe9, +0xbb, 0x72, 0x86, 0x8e, 0x30, 0xe1, 0x5e, 0x6c, 0x2a, 0x93, 0x45, 0x70, 0x51, 0xc9, 0xb4, 0x3e, +0xcb, 0x59, 0xa6, 0xc1, 0xe0, 0x8d, 0x92, 0x49, 0x8a, 0x7b, 0x78, 0x32, 0x6d, 0x29, 0x70, 0x64, +0xa8, 0x01, 0x27, 0x07, 0x37, 0xf7, 0x8f, 0x6d, 0xe3, 0x64, 0x39, 0xe3, 0x83, 0xdd, 0x5a, 0x13, +0x1e, 0x11, 0x56, 0x91, 0x81, 0xad, 0x0d, 0x74, 0x64, 0x97, 0x36, 0x77, 0x45, 0xec, 0xc6, 0xf6, +0xa2, 0x79, 0xaa, 0x3b, 0x25, 0x52, 0xa5, 0xd0, 0xfb, 0x78, 0x8b, 0x7c, 0x59, 0x66, 0x1e, 0x04, +0x55, 0x3f, 0x65, 0xa3, 0xd9, 0x59, 0xf2, 0x6f, 0xad, 0x15, 0x5e, 0x43, 0xf1, 0x85, 0x74, 0xa8, +0xbf, 0x6a, 0xf3, 0xd7, 0xfc, 0x12, 0xb2, 0x48, 0xd6, 0x4b, 0x29, 0x25, 0x34, 0xfe, 0xc3, 0x23, +0x3f, 0xca, 0x8c, 0x05, 0xb6, 0xb0, 0xd6, 0xf6, 0x4c, 0xba, 0xb6, 0xf7, 0x52, 0xeb, 0x46, 0xe3, +0xef, 0x95, 0xee, 0x68, 0x06, 0xd1, 0xc3, 0x60, 0x6f, 0xd7, 0x07, 0x0e, 0x2a, 0x4e, 0xca, 0xfe, +0x34, 0x89, 0xfa, 0x8e, 0x23, 0x84, 0x42, 0x92, 0x65, 0x16, 0x9d, 0x6e, 0x95, 0x9a, 0xbb, 0x3c, +0x5e, 0x0b, 0x3b, 0x97, 0x16, 0x3b, 0xb1, 0xac, 0x8f, 0x2a, 0x49, 0x4d, 0xa3, 0x60, 0x0f, 0xfe, +0x59, 0xd3, 0xdc, 0x88, 0x64, 0x7a, 0xdd, 0xad, 0x1e, 0xef, 0x6d, 0xa7, 0x6a, 0xfd, 0x9e, 0xa8, +0x5e, 0xd8, 0x8e, 0xf3, 0x43, 0x7a, 0xa4, 0xb5, 0x9e, 0x31, 0x60, 0xc3, 0x90, 0x8a, 0x60, 0x90, +0xce, 0x54, 0x48, 0x05, 0x7e, 0xfd, 0x6d, 0x0b, 0xdc, 0xad, 0x60, 0x89, 0x46, 0x88, 0x81, 0xed, +0xd0, 0xb2, 0xd3, 0xc2, 0xfd, 0x6e, 0x3a, 0x46, 0x7a, 0x20, 0x72, 0x5d, 0x26, 0xe1, 0xb9, 0xde, +0xcb, 0x44, 0x12, 0x27, 0xa3, 0x5c, 0x22, 0xcf, 0x28, 0xf7, 0xa8, 0xc2, 0xeb, 0xf6, 0x5b, 0xe2, +0x70, 0x9b, 0x1f, 0x07, 0xae, 0xc2, 0x8d, 0xe0, 0x6a, 0x65, 0xd9, 0x98, 0xdd, 0x2b, 0x27, 0x5b, +0x08, 0x49, 0x5e, 0xfc, 0xce, 0x63, 0xfd, 0x2b, 0x0a, 0xd2, 0x63, 0x77, 0xf4, 0x04, 0x5e, 0x8b, +0x90, 0x87, 0xf8, 0x5d, 0xb2, 0x4c, 0x7e, 0xd3, 0xad, 0x26, 0xa4, 0x32, 0x7f, 0xe2, 0xb4, 0xcf, +0xa5, 0xdb, 0xe2, 0xb1, 0xb0, 0x03, 0x5f, 0x61, 0x86, 0xd0, 0xb1, 0x0d, 0xbc, 0xe1, 0x6f, 0x4a, +0xd8, 0x02, 0x9f, 0x3b, 0x77, 0x3f, 0x02, 0xc3, 0xe2, 0x81, 0x6d, 0x96, 0xab, 0xb2, 0xc3, 0x5b, +0x4a, 0xbc, 0xb4, 0x04, 0x46, 0x5f, 0x19, 0xda, 0x08, 0x51, 0xde, 0xb8, 0x5e, 0x70, 0x4e, 0x06, +0xf2, 0x6c, 0xcf, 0x0b, 0x8f, 0xbb, 0x77, 0xb3, 0xe0, 0xcd, 0x7d, 0x64, 0x0c, 0x13, 0x00, 0x1b, +0xb4, 0xd3, 0x0a, 0xae, 0x5f, 0x25, 0xdd, 0x95, 0xe3, 0xcd, 0x47, 0x91, 0x97, 0x02, 0x35, 0xee, +0xd1, 0xee, 0xcc, 0xe4, 0xee, 0x2d, 0x85, 0xd4, 0xf2, 0xe5, 0xcb, 0xc2, 0x97, 0xa8, 0xb3, 0x42, +0x77, 0x68, 0x72, 0xfb, 0x64, 0x54, 0xb6, 0x1d, 0x7b, 0xdc, 0x9f, 0x8c, 0xb1, 0x2c, 0xae, 0xd4, +0xf7, 0x44, 0xb7, 0xf6, 0xe7, 0x28, 0xc5, 0xe7, 0x52, 0x69, 0x32, 0x24, 0x28, 0xc2, 0x38, 0xa4, +0x55, 0x7a, 0xbb, 0x89, 0x90, 0x1b, 0x09, 0xad, 0x1d, 0xd8, 0xb2, 0xac, 0xc5, 0xa7, 0x01, 0x77, +0x4c, 0xb2, 0x52, 0x83, 0x34, 0x1a, 0xde, 0x97, 0x76, 0x46, 0x3d, 0x2c, 0xa6, 0x0e, 0xcb, 0xfd, +0xf1, 0x8c, 0xb9, 0x0d, 0xc5, 0x12, 0xdd, 0x6f, 0x58, 0x8b, 0xf9, 0xf8, 0x3d, 0x2c, 0x43, 0xf2, +0xaa, 0xab, 0xf3, 0x2e, 0x4d, 0x29, 0x91, 0x39, 0xc9, 0x9d, 0x74, 0x44, 0x1b, 0xa8, 0x51, 0x75, +0x32, 0x4e, 0x62, 0xa1, 0xc5, 0x5f, 0x69, 0x5b, 0x8f, 0x44, 0xe1, 0x6b, 0x45, 0xac, 0xbb, 0x5f, +0xe3, 0x85, 0x20, 0x32, 0x67, 0xfc, 0xe6, 0xd2, 0xbb, 0xd1, 0x24, 0x82, 0x50, 0x11, 0xf5, 0x71, +0x51, 0xe5, 0x37, 0x1b, 0x09, 0x19, 0x52, 0xef, 0xdf, 0x32, 0x6e, 0xb4, 0xe1, 0x0f, 0x58, 0x85, +0xa3, 0x43, 0x25, 0x33, 0x35, 0x14, 0x85, 0xcf, 0x32, 0x54, 0x65, 0xcc, 0xaa, 0x17, 0x4f, 0x22, +0xf0, 0x21, 0xe4, 0x98, 0x08, 0x37, 0x60, 0x5d, 0x8d, 0x52, 0xf7, 0x99, 0x91, 0x81, 0x62, 0xa6, +0xcd, 0xe5, 0xb9, 0x14, 0xe0, 0x2d, 0x18, 0x52, 0x98, 0x5c, 0x45, 0x22, 0x93, 0x99, 0x8f, 0x27, +0x6a, 0x5d, 0xaf, 0xff, 0xdc, 0xfe, 0xde, 0xbf, 0x1b, 0x05, 0x16, 0x89, 0xfc, 0x73, 0xb7, 0x7a, +0x3f, 0x04, 0x18, 0x3f, 0x43, 0xc8, 0x03, 0x78, 0x41, 0x39, 0xcd, 0xdd, 0xac, 0x67, 0x2c, 0x16, +0xbd, 0x1a, 0x46, 0x50, 0x19, 0xd8, 0x88, 0xc1, 0xb9, 0xdc, 0x39, 0x04, 0x6d, 0x3b, 0xf4, 0x0d, +0xd2, 0xc0, 0x44, 0xb3, 0xdc, 0x39, 0xe1, 0x41, 0x16, 0xd5, 0x06, 0x1b, 0x65, 0xcb, 0x86, 0xfc, +0x84, 0x31, 0x22, 0xed, 0x64, 0xd0, 0x32, 0x63, 0x95, 0x0b, 0xad, 0x6e, 0x1f, 0xc3, 0xfd, 0x2b, +0x3e, 0x01, 0xc3, 0x37, 0x7d, 0x34, 0x99, 0x51, 0x48, 0x07, 0xc9, 0x5e, 0x8b, 0xad, 0xbc, 0x79, +0x45, 0x3e, 0x3a, 0xab, 0x7a, 0x55, 0xef, 0x1f, 0x03, 0x7d, 0xf5, 0x65, 0x7c, 0xb4, 0x57, 0xc3, +0x4f, 0x1a, 0x61, 0xc6, 0x14, 0x9d, 0xed, 0x4f, 0x89, 0x94, 0xfe, 0x07, 0x49, 0x2e, 0xf9, 0x18, +0x73, 0xd3, 0xcf, 0x9c, 0x64, 0xb1, 0xf6, 0x90, 0x07, 0xa6, 0x8a, 0xe1, 0x46, 0x85, 0x14, 0xd6, +0x84, 0x10, 0xfc, 0xcd, 0x85, 0x1a, 0x1b, 0x5c, 0xf5, 0x18, 0x47, 0xad, 0xe2, 0x01, 0x36, 0x56, +0xcb, 0xa6, 0x19, 0xc1, 0xfe, 0x72, 0x33, 0x5d, 0xe6, 0x54, 0x87, 0x3f, 0xae, 0xab, 0x5a, 0x06, +0xba, 0xa0, 0x7b, 0x82, 0x5c, 0x8b, 0xef, 0xf5, 0x46, 0x25, 0xdc, 0x74, 0x9e, 0x70, 0xd5, 0x54, +0xa2, 0x94, 0x43, 0x19, 0x71, 0x78, 0xe6, 0x9d, 0x79, 0xf5, 0xa9, 0x30, 0xc7, 0xd9, 0x5a, 0xfb, +0x58, 0xca, 0xa4, 0xa9, 0xb6, 0x7d, 0x47, 0x21, 0x21, 0x8f, 0x76, 0xfd, 0xb2, 0xb6, 0xa5, 0xa6, +0x93, 0xa8, 0xf1, 0x8c, 0x44, 0x1e, 0x44, 0xc9, 0xdf, 0x49, 0x97, 0xe5, 0x1a, 0xad, 0x07, 0xc2, +0x87, 0xdc, 0x43, 0x1a, 0x79, 0xa7, 0x57, 0x1f, 0x90, 0xe5, 0x10, 0x82, 0x7b, 0x12, 0x80, 0x56, +0x9a, 0xc0, 0x9f, 0xbc, 0x6c, 0xc4, 0x2b, 0x5e, 0x45, 0xe9, 0xc5, 0x80, 0xa5, 0xe8, 0x77, 0x93, +0x5c, 0x83, 0x80, 0x02, 0x68, 0x26, 0xa3, 0xa6, 0xe5, 0x5d, 0x44, 0xe1, 0xfa, 0xd9, 0x5f, 0x5c, +0x2c, 0xa5, 0xcd, 0xa1, 0x3d, 0x2d, 0x4b, 0xf3, 0xd8, 0x0e, 0x98, 0xda, 0x38, 0x2f, 0x8f, 0xde, +0x96, 0xb8, 0xe9, 0x6e, 0x82, 0xa4, 0xa0, 0x2c, 0x8a, 0x78, 0x73, 0x64, 0xe0, 0x50, 0x71, 0x75, +0x59, 0x7c, 0x3e, 0x59, 0xf8, 0x33, 0x19, 0xa1, 0x60, 0x1e, 0x02, 0x65, 0x60, 0x25, 0x01, 0x50, +0xf5, 0x92, 0x1e, 0x96, 0x36, 0x83, 0x60, 0x03, 0x52, 0x16, 0x5a, 0x80, 0x2c, 0x2f, 0x60, 0x62, +0xbc, 0x42, 0xf4, 0x03, 0x39, 0x92, 0xe3, 0x97, 0x12, 0xdb, 0xfb, 0x38, 0x1b, 0x22, 0x27, 0x96, +0x3a, 0x5d, 0x26, 0xf5, 0xb7, 0xd7, 0x84, 0x31, 0x62, 0xa4, 0xd6, 0xbd, 0xcb, 0x79, 0x72, 0x3c, +0x12, 0xdc, 0x2f, 0xad, 0x88, 0x61, 0xd0, 0xc5, 0x5f, 0x88, 0x80, 0x0d, 0xf3, 0x36, 0x21, 0xc2, +0xf8, 0xf8, 0x27, 0x7c, 0x3b, 0x9d, 0xa7, 0x83, 0x19, 0x4e, 0x01, 0x62, 0x32, 0xea, 0x81, 0x21, +0xba, 0x23, 0x64, 0x04, 0x6b, 0xb4, 0x8e, 0xce, 0xaf, 0x09, 0x5d, 0xca, 0x3b, 0xad, 0xd3, 0x0b, +0xad, 0x55, 0x76, 0x0c, 0x7d, 0xa8, 0xd5, 0xca, 0x98, 0xa3, 0xbb, 0xa0, 0xa8, 0xd8, 0xa8, 0x21, +0x14, 0x30, 0xb1, 0x35, 0xc9, 0x25, 0xd3, 0x8c, 0x2b, 0xb8, 0x00, 0xfb, 0x7c, 0xaa, 0xc3, 0x04, +0xab, 0x6d, 0x65, 0xc7, 0xd4, 0xe6, 0x73, 0xea, 0x7a, 0x1a, 0x9b, 0x5f, 0x1c, 0x56, 0x95, 0x12, +0x1f, 0x0d, 0x40, 0xe0, 0xe0, 0x55, 0xeb, 0x67, 0x38, 0xf8, 0xc7, 0x8d, 0x36, 0xae, 0xd7, 0xf9, +0x88, 0x9e, 0x0f, 0x52, 0x0f, 0xa1, 0x38, 0xba, 0x3f, 0x1a, 0x01, 0x82, 0x5b, 0xb8, 0x90, 0xea, +0x99, 0x14, 0x15, 0xf1, 0x07, 0xd7, 0x78, 0x0b, 0x00, 0x25, 0x7f, 0xd6, 0x23, 0xf6, 0x5c, 0x0b, +0x24, 0x5d, 0x8b, 0xaa, 0xa0, 0x47, 0x69, 0x6d, 0xe2, 0x77, 0xa8, 0x8c, 0x9e, 0xc2, 0x10, 0x7f, +0x32, 0xf2, 0x6b, 0xc2, 0x66, 0x80, 0x8d, 0xea, 0x6a, 0xa0, 0x0d, 0xe7, 0x14, 0x12, 0x12, 0xf1, +0xba, 0x45, 0x25, 0x3e, 0x30, 0x61, 0x03, 0x78, 0x8c, 0x95, 0x3a, 0xc9, 0x7e, 0xd1, 0x1a, 0xa2, +0xcf, 0xf5, 0xa0, 0xfe, 0xef, 0x05, 0xe6, 0x52, 0xfd, 0x65, 0x12, 0x5a, 0x17, 0xb3, 0x3a, 0x9b, +0x20, 0x04, 0x1f, 0xe6, 0x54, 0x2e, 0xb1, 0x24, 0xb2, 0x77, 0xba, 0x59, 0x14, 0x68, 0x8e, 0x55, +0x04, 0xd4, 0xfd, 0xcb, 0x82, 0xb9, 0xe9, 0x2e, 0x0d, 0x29, 0x0b, 0xfc, 0x06, 0xb2, 0xd9, 0xe5, +0x79, 0xd4, 0xe0, 0x63, 0x0c, 0xc1, 0x6a, 0x8a, 0x43, 0x5e, 0x12, 0x56, 0xcf, 0xa0, 0x41, 0x81, +0x40, 0x3c, 0xa9, 0xa4, 0x07, 0x62, 0x80, 0x93, 0x6d, 0x05, 0x2f, 0x66, 0x3e, 0x98, 0xc5, 0x8c, +0xe6, 0x62, 0x70, 0xeb, 0x79, 0x5c, 0xa0, 0x74, 0xd1, 0x7f, 0x17, 0x5c, 0x58, 0x91, 0xcd, 0x08, +0x1c, 0x6f, 0xc7, 0xed, 0x96, 0xc9, 0x3c, 0x6f, 0xaa, 0xff, 0x8a, 0x4a, 0x35, 0xe5, 0xc6, 0xe0, +0x23, 0xaf, 0x54, 0x0a, 0xda, 0xab, 0x51, 0x18, 0x0a, 0x0a, 0x94, 0xe5, 0xfd, 0x9c, 0xc8, 0x08, +0x73, 0xf1, 0x3c, 0x43, 0xfb, 0xb1, 0x4d, 0x14, 0x7e, 0x2d, 0xf6, 0x69, 0x51, 0xec, 0x66, 0x73, +0xdc, 0xdb, 0xcb, 0x90, 0xa7, 0x4b, 0x0b, 0x09, 0xc6, 0x82, 0x72, 0xc3, 0xe2, 0xc4, 0x5e, 0x2a, +0x9f, 0xe7, 0x10, 0x1b, 0x84, 0x47, 0xd7, 0xe3, 0xa1, 0xc7, 0xa0, 0xbe, 0x22, 0x86, 0x2d, 0xa5, +0x79, 0xe9, 0x82, 0x68, 0xa2, 0x9c, 0xca, 0xa0, 0xd0, 0xe3, 0xe0, 0x49, 0x35, 0x19, 0x07, 0x6d, +0x30, 0x56, 0x3a, 0x4e, 0x37, 0xbf, 0x17, 0xba, 0xf0, 0xc4, 0x00, 0x35, 0x1f, 0xfe, 0xf2, 0xa4, +0x40, 0x5c, 0xe1, 0x53, 0xfe, 0x00, 0x2d, 0x4a, 0x49, 0xe7, 0x58, 0x55, 0xde, 0x6c, 0xfd, 0xd5, +0x72, 0x65, 0x5e, 0x9e, 0xd7, 0x09, 0xe0, 0xdd, 0xf1, 0x30, 0xb4, 0xd2, 0xa4, 0x08, 0x27, 0xa7, +0x57, 0xde, 0x25, 0x8d, 0x5d, 0x28, 0x5d, 0x5c, 0x4f, 0x49, 0xb1, 0xb2, 0x82, 0xe7, 0x61, 0x1e, +0xcd, 0xc8, 0x30, 0x54, 0x90, 0xe7, 0x48, 0x37, 0xfb, 0x04, 0x27, 0xc3, 0xf6, 0x37, 0x62, 0x66, +0xc6, 0xcf, 0xe2, 0x21, 0x44, 0x89, 0x19, 0x1e, 0x96, 0x95, 0x9b, 0xdf, 0xd1, 0xc5, 0xc0, 0x47, +0x16, 0x76, 0xab, 0x46, 0x09, 0x7c, 0xd4, 0x97, 0x42, 0xc9, 0x5c, 0xc0, 0x2d, 0x6a, 0x5a, 0x5f, +0xaf, 0xda, 0xf9, 0xaa, 0x09, 0x62, 0x61, 0x8c, 0xa0, 0x84, 0x1c, 0x8c, 0x17, 0xd7, 0x97, 0xa1, +0x70, 0x0c, 0x19, 0x01, 0xce, 0xf0, 0x5f, 0xc2, 0x03, 0xcc, 0x9a, 0x3f, 0xc9, 0x6b, 0x0b, 0xd9, +0x1e, 0xcd, 0xec, 0x45, 0xe8, 0xff, 0x88, 0x6c, 0x76, 0x5f, 0xc1, 0x83, 0x26, 0x00, 0xb4, 0x08, +0x69, 0x95, 0xbb, 0xe1, 0xaa, 0x3e, 0xd8, 0x6e, 0xce, 0x4b, 0x52, 0x25, 0x41, 0xe0, 0xd1, 0x1f, +0xd1, 0x23, 0x4b, 0x72, 0xa6, 0x8c, 0xe9, 0xe7, 0x60, 0x6a, 0x2a, 0x94, 0xad, 0x70, 0x4a, 0xcf, +0xd5, 0xcb, 0x11, 0x3c, 0xf8, 0x50, 0x00, 0x83, 0x0d, 0x3d, 0xf6, 0x3a, 0x3f, 0x9e, 0xc2, 0xef, +0xbc, 0x9d, 0xb4, 0xf7, 0x02, 0x74, 0xbc, 0xc5, 0x97, 0x7f, 0x28, 0x35, 0xcf, 0x1c, 0xdb, 0x4a, +0x06, 0xda, 0x0a, 0x97, 0xbe, 0x88, 0x12, 0x32, 0xbf, 0x52, 0x68, 0x56, 0xf7, 0x99, 0xe7, 0xca, +0x07, 0xa0, 0x36, 0xb6, 0xf3, 0xb9, 0x83, 0xe0, 0xc2, 0xac, 0x94, 0x3e, 0x3a, 0xb4, 0x9b, 0x30, +0xd3, 0x64, 0xdf, 0x3b, 0x19, 0x25, 0xa6, 0x57, 0x97, 0x00, 0x42, 0x0f, 0x60, 0xca, 0x72, 0x15, +0x69, 0x99, 0xa6, 0xaf, 0x11, 0xb2, 0xbd, 0x1a, 0x63, 0xb2, 0xdd, 0x0a, 0xac, 0x95, 0x1a, 0xbd, +0x8c, 0xb7, 0x8b, 0xc2, 0x77, 0x40, 0x23, 0x60, 0xcf, 0x38, 0x3e, 0x17, 0x24, 0xdc, 0x81, 0xf7, +0xe6, 0xa7, 0xf6, 0x24, 0x4b, 0x1c, 0xbc, 0xb6, 0x14, 0x81, 0x29, 0x02, 0xbb, 0x25, 0x54, 0x17, +0xdf, 0x87, 0x7d, 0x67, 0x35, 0x10, 0x5b, 0x40, 0xf9, 0x6a, 0x97, 0x74, 0xaf, 0xbe, 0x42, 0xef, +0x74, 0x51, 0xac, 0xa1, 0xb4, 0x60, 0x75, 0xda, 0x7a, 0x51, 0xdb, 0x7c, 0x62, 0x74, 0x49, 0xad, +0x13, 0xa2, 0xb6, 0xb6, 0xa6, 0xd2, 0x25, 0x59, 0xc0, 0x65, 0xfc, 0x5c, 0x40, 0xef, 0xf7, 0x53, +0x6f, 0x9e, 0xf4, 0xb6, 0xc5, 0xbb, 0x74, 0xc1, 0xd7, 0xbd, 0x05, 0x4d, 0xfa, 0x04, 0x61, 0x0c, +0x0d, 0x97, 0xd0, 0x3b, 0x99, 0xcf, 0xe2, 0xf8, 0xbd, 0x29, 0xc9, 0xfc, 0x7c, 0xdb, 0x90, 0x6a, +0xb0, 0xf6, 0x3c, 0x77, 0x18, 0xfe, 0x6e, 0x58, 0xa5, 0xb3, 0xbf, 0x2c, 0x57, 0x84, 0x6f, 0x9c, +0x0b, 0x83, 0xa1, 0xd5, 0x83, 0xb2, 0x3d, 0xca, 0x09, 0xec, 0x27, 0x43, 0x47, 0x41, 0x9f, 0x56, +0x59, 0x5c, 0xac, 0xc7, 0xb3, 0x22, 0xa7, 0x60, 0x03, 0x56, 0x53, 0xda, 0x88, 0xab, 0x36, 0xf4, +0x46, 0xe7, 0x8a, 0x95, 0xc3, 0x28, 0x58, 0x25, 0x62, 0xd4, 0x0d, 0x53, 0xb3, 0x4e, 0x51, 0xa6, +0xb7, 0x97, 0x8e, 0xbc, 0x6d, 0xcc, 0x48, 0x7f, 0xae, 0x8c, 0xcc, 0xf5, 0x2c, 0xb1, 0x79, 0x2a, +0xb8, 0x8b, 0xab, 0x25, 0x6c, 0x8d, 0x42, 0x60, 0x57, 0x42, 0x63, 0xe9, 0x7e, 0x00, 0xfe, 0x1b, +0x69, 0xe7, 0x50, 0x9a, 0x34, 0x1c, 0x7a, 0x03, 0x0b, 0xb1, 0x14, 0x9d, 0x26, 0xbd, 0x08, 0x65, +0xd2, 0xca, 0x70, 0xeb, 0x85, 0xe8, 0xb9, 0x85, 0x25, 0x52, 0x57, 0x89, 0x42, 0xec, 0xfe, 0x52, +0xfc, 0xc0, 0x5d, 0x75, 0x9a, 0x23, 0x56, 0x1b, 0xf3, 0x93, 0xb8, 0x08, 0x62, 0x42, 0xf3, 0xb9, +0x17, 0x79, 0x27, 0x89, 0x67, 0x8f, 0x31, 0x6c, 0x3d, 0xe1, 0x19, 0x96, 0xe0, 0x93, 0xe3, 0xaf, +0x7a, 0x52, 0x13, 0x8d, 0xd7, 0x7f, 0x8f, 0x90, 0x32, 0x73, 0x19, 0x73, 0xf3, 0x70, 0x39, 0xc6, +0x57, 0xbd, 0xe0, 0x38, 0xa3, 0x6f, 0x35, 0xe1, 0x09, 0x1a, 0x37, 0x08, 0x72, 0x9a, 0x5f, 0x84, +0x75, 0xaa, 0x78, 0xa0, 0x72, 0x26, 0xfc, 0x71, 0x72, 0x71, 0x45, 0x8a, 0x3f, 0x6e, 0xe6, 0x32, +0xd3, 0xce, 0x03, 0x75, 0x55, 0xb7, 0xc6, 0x8c, 0x1e, 0x0e, 0x12, 0x5c, 0x9f, 0x78, 0x53, 0x05, +0xed, 0x25, 0xe8, 0x07, 0x74, 0x74, 0xdc, 0xaa, 0x6b, 0xf7, 0xca, 0x19, 0x7a, 0x1a, 0x5b, 0x34, +0xee, 0xd0, 0xf0, 0x69, 0x3e, 0x3a, 0x1b, 0x38, 0xe6, 0x4e, 0xdc, 0x40, 0xb0, 0xb2, 0x6c, 0x9b, +0x5b, 0x2a, 0x99, 0x54, 0x06, 0xca, 0x3c, 0xbd, 0x75, 0x92, 0x20, 0xd0, 0x71, 0xbc, 0x4a, 0xfe, +0xc6, 0x4a, 0xe8, 0x0a, 0xf2, 0x7f, 0x02, 0xed, 0x3d, 0xa1, 0x0d, 0x09, 0xbe, 0xb7, 0x68, 0xee, +0xfd, 0x41, 0x89, 0x9f, 0x3f, 0x45, 0xdc, 0x47, 0x9f, 0x73, 0x99, 0x01, 0xae, 0x3e, 0xd6, 0xaf, +0xcf, 0x0d, 0x0b, 0xbf, 0xf9, 0x4a, 0x09, 0x23, 0x99, 0xba, 0xa6, 0x46, 0x91, 0xbc, 0x4a, 0x68, +0x79, 0x93, 0x77, 0xa8, 0x4e, 0x7c, 0x83, 0xe8, 0x8d, 0x2a, 0x7e, 0x64, 0x28, 0x35, 0x0c, 0x7c, +0x68, 0x8a, 0xc5, 0xf0, 0xa6, 0x8e, 0xc7, 0x4d, 0x47, 0xb0, 0x75, 0x9f, 0x2b, 0x29, 0x85, 0x19, +0xa1, 0xd7, 0x9b, 0x85, 0x54, 0xe9, 0x26, 0x94, 0x91, 0xa7, 0xa9, 0x3f, 0xc7, 0x1d, 0xdb, 0x80, +0x37, 0x9f, 0x48, 0x9c, 0x22, 0x2e, 0xc9, 0x6e, 0x73, 0xce, 0xf4, 0x29, 0xfc, 0x87, 0xf8, 0xe0, +0x9b, 0xa5, 0x9f, 0xce, 0x96, 0xf3, 0x82, 0x9e, 0x69, 0xa0, 0xed, 0x72, 0x40, 0xd9, 0x60, 0x50, +0xbf, 0x5e, 0x9a, 0xec, 0xf2, 0x11, 0x62, 0xc8, 0xa2, 0x1b, 0xa8, 0x78, 0x8d, 0x03, 0x58, 0x97, +0x3a, 0x3e, 0x3d, 0xaf, 0x97, 0x7d, 0xdc, 0xa5, 0xa9, 0xa9, 0x6b, 0x36, 0xb9, 0xc4, 0x53, 0xc4, +0x78, 0xe2, 0x05, 0xab, 0x03, 0x5b, 0x54, 0xa9, 0xdf, 0x7a, 0x42, 0xa3, 0x8b, 0x73, 0x52, 0xe8, +0x37, 0x12, 0x28, 0x62, 0x08, 0xaf, 0x59, 0x5e, 0x9f, 0x5c, 0xc8, 0xbb, 0xac, 0xf8, 0x4d, 0xe4, +0x19, 0x91, 0x01, 0x8a, 0x33, 0x9c, 0xb0, 0x8a, 0xa7, 0xc3, 0x66, 0xad, 0x18, 0x92, 0x62, 0xfe, +0x36, 0x3b, 0x21, 0x48, 0x26, 0x5e, 0xa6, 0x92, 0x17, 0xdc, 0x4a, 0xb2, 0x77, 0xa1, 0xf5, 0x6a, +0xd0, 0x06, 0x1d, 0xa9, 0xce, 0x2a, 0x60, 0x14, 0x1f, 0xba, 0x76, 0x09, 0xe8, 0x21, 0x8d, 0x4d, +0x86, 0x0a, 0x14, 0xd2, 0x1f, 0xdc, 0x39, 0xa1, 0xa0, 0x51, 0x7c, 0x17, 0x8f, 0x12, 0x57, 0x16, +0x29, 0x66, 0xd2, 0xcd, 0x17, 0x0b, 0x8b, 0xd6, 0xab, 0x1d, 0x12, 0xe0, 0xcf, 0xc2, 0x42, 0x17, +0xc4, 0x03, 0xeb, 0x1f, 0xc3, 0x52, 0x38, 0x0d, 0x29, 0xb4, 0x74, 0x80, 0xef, 0xad, 0xe4, 0xb7, +0x29, 0x06, 0x32, 0x4a, 0x24, 0x56, 0x13, 0x5c, 0x4b, 0xd9, 0xad, 0x8b, 0xe9, 0x01, 0x54, 0x80, +0x4b, 0x5a, 0x33, 0x55, 0x10, 0xb8, 0x37, 0x0e, 0xd6, 0xdf, 0x69, 0x54, 0xca, 0x9b, 0xe2, 0xd2, +0xa3, 0x06, 0x03, 0x1d, 0xc0, 0x23, 0x33, 0x9e, 0x17, 0xf5, 0x56, 0x52, 0x07, 0x7e, 0x3e, 0xdc, +0xd9, 0x30, 0xed, 0x1c, 0xb5, 0x6b, 0xe6, 0xb9, 0x8e, 0xa4, 0xe0, 0xef, 0xc7, 0x53, 0x42, 0xdf, +0x1a, 0xa9, 0xf5, 0x5d, 0x73, 0xc3, 0x7f, 0x31, 0x50, 0x0a, 0x0b, 0x7c, 0x0a, 0x00, 0x48, 0xcf, +0x3b, 0xc4, 0x24, 0xac, 0xad, 0x2c, 0x13, 0x53, 0x3a, 0xdc, 0xb9, 0x09, 0xcc, 0x7d, 0x1e, 0xb1, +0x2a, 0xbc, 0xe3, 0x00, 0xc9, 0x78, 0x0b, 0xc8, 0x5b, 0x3c, 0xb6, 0x81, 0xb2, 0x9d, 0x4e, 0x0b, +0xfa, 0xfe, 0x59, 0xde, 0xb1, 0x30, 0x73, 0x6e, 0x4d, 0xb2, 0x50, 0xfb, 0xc7, 0xe3, 0x0b, 0x8e, +0x1c, 0x8a, 0x29, 0x1c, 0x58, 0x86, 0x56, 0xc0, 0x02, 0xc3, 0x21, 0x67, 0xa2, 0x5b, 0x7d, 0xb1, +0x90, 0x26, 0xf8, 0xef, 0x1b, 0x00, 0x2a, 0xc9, 0xd7, 0x9d, 0x6e, 0xbf, 0xd4, 0xfb, 0x06, 0x4c, +0x4e, 0xe5, 0xde, 0x44, 0x8a, 0x68, 0x4a, 0x75, 0x77, 0x0d, 0x18, 0x01, 0xee, 0x3d, 0x45, 0x11, +0x43, 0xe8, 0x11, 0x21, 0x28, 0xf6, 0x0e, 0x56, 0x70, 0x9b, 0x2b, 0xb1, 0x38, 0x64, 0x63, 0x50, +0x39, 0xe2, 0x94, 0xe5, 0x6b, 0x73, 0x71, 0x02, 0xf2, 0x89, 0x0e, 0x9b, 0xc5, 0xf8, 0x3b, 0xcc, +0xb5, 0xaa, 0x42, 0xb0, 0x01, 0xa2, 0x6e, 0x19, 0x3b, 0x26, 0xff, 0xad, 0xe4, 0xee, 0xda, 0x79, +0x9b, 0x89, 0x5e, 0x77, 0xf2, 0xb5, 0x63, 0x99, 0x7e, 0xd7, 0x00, 0x61, 0x00, 0x1f, 0xa3, 0x01, +0xc0, 0x5f, 0xb0, 0x49, 0x5c, 0x68, 0x9f, 0xf7, 0x24, 0x48, 0x80, 0xc6, 0xfa, 0xc7, 0xba, 0x70, +0xad, 0x9a, 0x77, 0xf5, 0x66, 0x48, 0x9a, 0x07, 0x9e, 0x45, 0x8d, 0x35, 0x9f, 0xed, 0xc4, 0xce, +0x1d, 0x77, 0x1c, 0xd5, 0x99, 0x63, 0x46, 0x6b, 0x21, 0x4d, 0x74, 0xee, 0x70, 0xbd, 0x2c, 0xfc, +0x39, 0x87, 0x62, 0x52, 0x40, 0x2d, 0x8d, 0xea, 0x1b, 0xc9, 0x60, 0xca, 0xf3, 0x9c, 0xe0, 0xd5, +0x17, 0xcf, 0x8a, 0xe3, 0x0e, 0x9f, 0xba, 0xc3, 0xec, 0xd1, 0x15, 0x30, 0x28, 0x02, 0x63, 0x87, +0x2e, 0x1c, 0x1a, 0xc8, 0x86, 0x35, 0x2a, 0x38, 0x5a, 0x79, 0x8c, 0x71, 0x2a, 0xda, 0x33, 0x0b, +0x78, 0xad, 0x90, 0x0c, 0x2d, 0x33, 0x5a, 0x11, 0xfc, 0x8b, 0xe1, 0x32, 0x7b, 0x65, 0xc6, 0xaf, +0x5f, 0x33, 0x59, 0xa9, 0x01, 0x16, 0x19, 0xdf, 0xf9, 0x78, 0x18, 0x8c, 0x31, 0x5a, 0xa3, 0xb4, +0x76, 0xf6, 0xea, 0xbe, 0x77, 0x3c, 0x84, 0xcf, 0xe2, 0xc7, 0x06, 0xde, 0x7f, 0x22, 0xdb, 0xca, +0xad, 0xcc, 0x5f, 0x69, 0x76, 0xd0, 0xa7, 0xdb, 0x62, 0xad, 0x1b, 0x34, 0x75, 0x4b, 0x98, 0xb2, +0x95, 0x24, 0x37, 0x78, 0x1e, 0x51, 0xf8, 0x1d, 0xcf, 0xa6, 0xcd, 0xff, 0x79, 0x0f, 0xa5, 0x1c, +0x16, 0x68, 0x64, 0xbd, 0x66, 0xc8, 0x09, 0x69, 0x90, 0x51, 0xdc, 0x3b, 0xc5, 0xf4, 0x9d, 0x62, +0x67, 0x85, 0x9a, 0x6d, 0x2a, 0xf9, 0x87, 0x4c, 0xe9, 0x02, 0xd7, 0x94, 0xde, 0xd7, 0xd8, 0x30, +0xdb, 0x16, 0xfc, 0x1c, 0x05, 0x4f, 0xb7, 0xb4, 0xcb, 0x34, 0x0f, 0xd3, 0x97, 0xbb, 0x84, 0x1e, +0x71, 0xd2, 0xb0, 0xf0, 0xb8, 0x5f, 0x45, 0xe0, 0x39, 0xa5, 0xd9, 0x4c, 0xc8, 0x83, 0x28, 0xe9, +0xf8, 0xb5, 0x82, 0x34, 0x2c, 0xe7, 0x44, 0x9c, 0xae, 0xd5, 0x6e, 0xb3, 0x20, 0xe8, 0x94, 0xeb, +0xeb, 0x68, 0x39, 0x36, 0x98, 0x63, 0x38, 0x0e, 0x1b, 0xe2, 0xc2, 0x7b, 0x88, 0x55, 0x18, 0xff, +0x87, 0x32, 0xfc, 0x4a, 0x7c, 0x33, 0x34, 0x63, 0x6f, 0xa6, 0x8e, 0xaf, 0x05, 0x44, 0x97, 0xb8, +0x94, 0x33, 0x0e, 0x8f, 0x0c, 0x06, 0x60, 0x60, 0xcc, 0x90, 0x3c, 0xe8, 0x61, 0x1b, 0x6c, 0xce, +0x8a, 0x58, 0xf3, 0x86, 0x0a, 0x9f, 0x1d, 0xd6, 0x80, 0x32, 0xb2, 0x7e, 0xc2, 0x94, 0xa6, 0xc7, +0xea, 0x61, 0x89, 0xd7, 0x35, 0x5a, 0x14, 0xc2, 0xe0, 0x1f, 0x7d, 0x0f, 0xf1, 0x8c, 0xdb, 0xc8, +0x6b, 0xcb, 0x36, 0xc6, 0x93, 0xf5, 0x78, 0x91, 0x28, 0xc0, 0xef, 0x12, 0x63, 0xee, 0xdf, 0xa0, +0x7a, 0xd1, 0x35, 0x1f, 0xe3, 0x54, 0x01, 0x45, 0xd1, 0x16, 0x22, 0xa1, 0x0c, 0xca, 0x60, 0x0b, +0x9d, 0x64, 0xb6, 0x4c, 0x14, 0x1b, 0x8b, 0x11, 0x8e, 0x0a, 0x09, 0xe7, 0x22, 0x87, 0xe4, 0x79, +0xef, 0xfa, 0x2f, 0x10, 0xce, 0xdc, 0x58, 0xfc, 0xa3, 0xde, 0x74, 0x42, 0xb6, 0xf7, 0x3b, 0x39, +0x9e, 0xb2, 0xa8, 0xf7, 0x15, 0x13, 0xa7, 0xce, 0xfa, 0x9c, 0x19, 0x7f, 0x73, 0xfc, 0xdc, 0x7f, +0x49, 0x34, 0xe7, 0xfe, 0x0d, 0xb2, 0xb1, 0x95, 0xf0, 0xc2, 0x61, 0x58, 0x5d, 0x3d, 0x13, 0x8b, +0x5b, 0x83, 0x3d, 0x8f, 0x4f, 0x71, 0x6c, 0x96, 0x1c, 0x53, 0x85, 0x48, 0x1a, 0x56, 0xb0, 0xf8, +0x63, 0x4c, 0xb4, 0xc8, 0x37, 0xf9, 0xd7, 0x04, 0xf2, 0x66, 0x40, 0xc5, 0xf9, 0x4a, 0xa3, 0x64, +0xa9, 0xb5, 0x8e, 0xb4, 0x61, 0xec, 0xa5, 0xd7, 0x75, 0xa1, 0x64, 0x5f, 0xb7, 0x36, 0xfd, 0x28, +0x79, 0x2a, 0x18, 0xa8, 0x18, 0x18, 0xd3, 0x95, 0x4b, 0x79, 0xf6, 0xad, 0x06, 0xc1, 0x20, 0xcf, +0x87, 0x75, 0xde, 0xb7, 0xba, 0x3f, 0x98, 0x90, 0x7b, 0x5c, 0xa1, 0x7f, 0x48, 0x72, 0x03, 0x40, +0x50, 0xf1, 0x30, 0x99, 0x38, 0xde, 0x18, 0x69, 0xec, 0xad, 0x84, 0xd2, 0x10, 0x5d, 0x7d, 0xa9, +0x76, 0x3d, 0x78, 0xff, 0xb3, 0x6c, 0xdd, 0x66, 0x0e, 0x5b, 0xac, 0x15, 0x52, 0x98, 0xda, 0x50, +0x6d, 0xec, 0x1f, 0xad, 0x93, 0x82, 0x48, 0x30, 0xda, 0xad, 0x13, 0x3e, 0xac, 0x30, 0x2f, 0x77, +0x7f, 0xb9, 0xfd, 0x13, 0x63, 0x14, 0xc9, 0x1b, 0x21, 0xa0, 0x00, 0xcf, 0xeb, 0x9b, 0xf9, 0xfa, +0x68, 0x25, 0x30, 0x8b, 0xb2, 0xa8, 0x45, 0x39, 0x1d, 0x42, 0x49, 0xf7, 0x60, 0xc7, 0x34, 0xba, +0x4d, 0xc6, 0x18, 0xab, 0x9d, 0xe9, 0xc5, 0x95, 0x5e, 0x7c, 0xc4, 0xbf, 0x39, 0x97, 0x5d, 0x2a, +0x66, 0xfc, 0xa3, 0x2f, 0xe3, 0x8b, 0x10, 0x78, 0xe1, 0x29, 0x9f, 0xa5, 0x8e, 0x58, 0x3e, 0xab, +0xd9, 0xfa, 0x74, 0x3e, 0x42, 0x9b, 0xc6, 0x26, 0x5c, 0x2e, 0xcf, 0xcc, 0x53, 0x78, 0x12, 0x0f, +0x62, 0x8b, 0x36, 0xd2, 0xf3, 0xd1, 0x05, 0x4c, 0xbe, 0x40, 0x53, 0xde, 0x48, 0xc1, 0xef, 0x7b, +0x45, 0x4e, 0xbd, 0x44, 0x6b, 0x38, 0x74, 0xfe, 0x71, 0x8a, 0x0b, 0x22, 0x0f, 0xb4, 0x17, 0x12, +0xcf, 0xa5, 0x13, 0xd4, 0xa4, 0xe0, 0x82, 0xf7, 0x6e, 0x7a, 0x05, 0x07, 0x03, 0xdd, 0x76, 0xb6, +0x74, 0x02, 0x79, 0x71, 0xb0, 0x05, 0xe8, 0xec, 0x2f, 0x7f, 0x0c, 0x35, 0xc2, 0x61, 0x35, 0x11, +0x70, 0x25, 0x86, 0x08, 0x29, 0x27, 0x03, 0x92, 0xc6, 0xf1, 0x0e, 0xd3, 0xb8, 0xcc, 0x56, 0x5c, +0x57, 0x56, 0x50, 0x5a, 0x3f, 0x4a, 0x10, 0x46, 0x20, 0xc7, 0xc2, 0x5a, 0x7d, 0x45, 0x7f, 0xb3, +0x4e, 0xaa, 0xce, 0x29, 0x1d, 0x82, 0x31, 0xdf, 0x8a, 0x28, 0xb2, 0x16, 0xca, 0xa1, 0x58, 0x3c, +0x43, 0xc1, 0xcd, 0xc1, 0x12, 0x9b, 0xf8, 0xa6, 0xc8, 0x89, 0x5e, 0xd2, 0x91, 0x60, 0x8c, 0x9f, +0x7a, 0xf0, 0x52, 0x3c, 0x12, 0x6d, 0xbe, 0x4f, 0x94, 0x60, 0x51, 0x56, 0xc2, 0xdf, 0x6c, 0x1d, +0xa7, 0x14, 0xf8, 0x6a, 0x6d, 0x9b, 0x51, 0x1f, 0x14, 0xcc, 0x8e, 0x9f, 0x8f, 0x85, 0xde, 0x4a, +0x87, 0xc1, 0x62, 0x43, 0xba, 0x6b, 0xf6, 0x94, 0x21, 0x57, 0x92, 0xba, 0x96, 0x93, 0xf7, 0x8c, +0x1d, 0x90, 0x17, 0xcc, 0xa1, 0x36, 0xc8, 0x4c, 0x13, 0x24, 0x4a, 0x6d, 0xf4, 0x6d, 0x90, 0x2c, +0x1e, 0x45, 0x4b, 0x23, 0x54, 0xeb, 0x01, 0xbc, 0xe5, 0x8e, 0x37, 0x9c, 0x48, 0x63, 0x19, 0x46, +0x7f, 0xb9, 0xe5, 0x91, 0x69, 0xb5, 0xe6, 0x91, 0xef, 0x78, 0x8a, 0x48, 0x72, 0x0b, 0x2a, 0xdc, +0x17, 0x6a, 0x73, 0x3f, 0x4a, 0x45, 0x41, 0x8e, 0x31, 0xae, 0x7b, 0x39, 0x74, 0x81, 0xc3, 0x4d, +0x62, 0x79, 0x3a, 0xb5, 0x8c, 0x39, 0x65, 0x1a, 0xdb, 0xc1, 0x33, 0x8b, 0x77, 0x0a, 0xd2, 0x58, +0x4b, 0xae, 0xcc, 0x70, 0x6c, 0xe3, 0x63, 0x71, 0x6c, 0x49, 0xa0, 0x39, 0x6a, 0xcb, 0x1f, 0x78, +0x4a, 0x67, 0x63, 0xb4, 0x6a, 0x78, 0x6d, 0x6b, 0x3b, 0xf0, 0xa1, 0x28, 0xc8, 0x3a, 0xd5, 0xd6, +0x85, 0x09, 0x2a, 0x30, 0xfc, 0x58, 0xbc, 0x67, 0x16, 0x1c, 0x11, 0xf6, 0x99, 0x9b, 0x5f, 0xf9, +0xa7, 0x27, 0x98, 0xe9, 0x92, 0xd3, 0xb9, 0x42, 0x81, 0xa1, 0x1d, 0x60, 0xd5, 0x5d, 0x35, 0x69, +0x91, 0xf7, 0x28, 0xa2, 0x30, 0x51, 0xfb, 0x13, 0x51, 0x60, 0xe4, 0x63, 0xc2, 0xaa, 0xa5, 0x27, +0x95, 0x52, 0x56, 0x82, 0x8c, 0x0f, 0x77, 0x2d, 0x2b, 0xad, 0xeb, 0x3f, 0x3a, 0x69, 0xba, 0x3b, +0xef, 0x74, 0xce, 0x3a, 0x63, 0x9b, 0x43, 0x1d, 0x13, 0x94, 0x40, 0xb1, 0x3a, 0x65, 0x13, 0xaa, +0x25, 0xab, 0x0d, 0x3a, 0x72, 0x19, 0x3e, 0x58, 0xb3, 0x87, 0x6a, 0xc3, 0xb8, 0x57, 0xfc, 0xb4, +0x60, 0x84, 0x02, 0x09, 0x97, 0x30, 0x22, 0xa4, 0x98, 0x9a, 0xab, 0x1a, 0xfb, 0x22, 0x89, 0x00, +0x0f, 0xe4, 0xee, 0x55, 0xf1, 0x52, 0xa0, 0x9c, 0x82, 0xf8, 0x20, 0x02, 0xa3, 0x9d, 0x2e, 0xea, +0x70, 0xb2, 0x80, 0xed, 0x71, 0x8f, 0x86, 0x4f, 0xc1, 0x09, 0x9a, 0xdc, 0xd2, 0x5a, 0x49, 0x4a, +0xfd, 0xe5, 0x2c, 0xd1, 0x48, 0x66, 0x2a, 0xfd, 0xc3, 0xc3, 0xfa, 0x6e, 0x1e, 0x33, 0xd9, 0x4a, +0xf5, 0x9e, 0xcc, 0x92, 0x9d, 0x5f, 0x52, 0xbf, 0x62, 0xb5, 0x69, 0xee, 0x89, 0x0a, 0xad, 0x3c, +0xac, 0x9c, 0x6e, 0x3d, 0xc3, 0x3b, 0x9d, 0xd1, 0x65, 0x53, 0xe0, 0xd4, 0xcd, 0xf5, 0x41, 0xfe, +0xc5, 0xa3, 0xe7, 0x32, 0xc8, 0x56, 0x00, 0xe3, 0xba, 0x59, 0x2b, 0x01, 0xd0, 0x1e, 0xab, 0x1d, +0x62, 0xac, 0x2f, 0x22, 0x94, 0xfd, 0x97, 0xeb, 0x9f, 0x40, 0x12, 0xd7, 0x8b, 0xff, 0x06, 0xa8, +0x85, 0xb6, 0xd3, 0xf7, 0xb3, 0xee, 0xf0, 0x12, 0xd6, 0x2b, 0xab, 0xfa, 0x6f, 0x3d, 0xda, 0x97, +0x1f, 0x2e, 0x1e, 0x9a, 0x76, 0x5f, 0x41, 0xdd, 0x28, 0x63, 0x0b, 0xca, 0xd2, 0xb1, 0x79, 0xce, +0xa5, 0xdf, 0x05, 0x42, 0x0a, 0x62, 0x50, 0x7a, 0x14, 0xe1, 0x77, 0x79, 0x99, 0x3c, 0xd2, 0xa2, +0x40, 0x4b, 0x61, 0x58, 0xbb, 0x46, 0xa3, 0x8d, 0xcb, 0x49, 0x21, 0xb6, 0xbc, 0x57, 0xa3, 0x5b, +0x89, 0xb3, 0x6b, 0x8d, 0xf4, 0x59, 0x1d, 0x0d, 0x72, 0x18, 0x83, 0xf7, 0x85, 0x74, 0x62, 0x4f, +0x88, 0xea, 0x9d, 0xff, 0xe8, 0x09, 0x4a, 0x3e, 0x0d, 0x22, 0x3b, 0xe9, 0xb1, 0x3d, 0xd4, 0x0d, +0x1b, 0x49, 0x82, 0xb6, 0xe4, 0x69, 0x53, 0xb2, 0x70, 0x33, 0x22, 0x2a, 0x33, 0xf7, 0x5b, 0x78, +0xf7, 0x47, 0xce, 0xb2, 0xe1, 0x4b, 0x64, 0x4a, 0x10, 0x85, 0x5f, 0xd4, 0x56, 0xf0, 0x79, 0x08, +0x52, 0x06, 0xe5, 0xfa, 0xa1, 0x66, 0x85, 0xb1, 0x7c, 0x0a, 0x5b, 0x6a, 0xa2, 0x4f, 0x08, 0x11, +0xab, 0xb3, 0xed, 0x60, 0xfa, 0x5a, 0xf6, 0xe1, 0xe7, 0xf8, 0x07, 0x4d, 0xf2, 0x0a, 0xdb, 0x19, +0x60, 0xf7, 0x2e, 0x1a, 0xb2, 0xfe, 0x01, 0x6f, 0x59, 0x5a, 0x2b, 0x61, 0x51, 0x3a, 0xd7, 0x16, +0xc9, 0x13, 0xc2, 0x23, 0x20, 0x46, 0x9f, 0x9b, 0x1e, 0xd7, 0x46, 0x1d, 0x20, 0x1c, 0xeb, 0x62, +0x27, 0xfb, 0x9c, 0xb2, 0xf2, 0x6b, 0x6e, 0x15, 0x6d, 0xbf, 0xcd, 0x52, 0xc9, 0xa5, 0xc2, 0x9d, +0xc9, 0x1a, 0xbf, 0x51, 0x19, 0x3a, 0x92, 0x70, 0x5e, 0x77, 0x4e, 0xb6, 0xff, 0xc0, 0xc6, 0xaf, +0xab, 0x2d, 0xb7, 0xf7, 0x96, 0xd4, 0x5d, 0xe8, 0xe0, 0xe9, 0x16, 0x58, 0x4f, 0x23, 0x09, 0x47, +0x3a, 0xa6, 0x15, 0x9b, 0xd5, 0x4e, 0xe4, 0xc5, 0xde, 0x43, 0xc5, 0x81, 0x00, 0x06, 0xa0, 0xd4, +0x80, 0x1a, 0x1b, 0x30, 0xe8, 0x29, 0xb9, 0xd6, 0xb3, 0xac, 0x0f, 0xa9, 0xe9, 0x3b, 0x33, 0xba, +0x4d, 0xdb, 0x85, 0xbc, 0xdf, 0xa8, 0xf0, 0xff, 0x45, 0xb9, 0xa6, 0x3f, 0xf3, 0x10, 0xfe, 0xb9, +0x80, 0x87, 0x3f, 0x5c, 0x31, 0xcc, 0x20, 0xe8, 0xdd, 0xff, 0x56, 0x82, 0xed, 0x2d, 0x88, 0x5d, +0x08, 0x3e, 0xc8, 0x0b, 0xd9, 0xba, 0x49, 0x09, 0xbe, 0x5e, 0xc0, 0xae, 0xb8, 0x9c, 0xc5, 0x63, +0x39, 0x51, 0x78, 0x76, 0x23, 0x12, 0x7a, 0xfc, 0x42, 0x11, 0x8c, 0x5d, 0x8a, 0x2f, 0x3b, 0xa9, +0xb2, 0xe1, 0x5e, 0x50, 0xcd, 0x7a, 0x39, 0x23, 0xef, 0x54, 0xa1, 0x49, 0x35, 0xd9, 0x66, 0x8e, +0x6c, 0x1b, 0x53, 0x80, 0xde, 0xb4, 0xfc, 0x58, 0x4f, 0x5d, 0x49, 0x79, 0x01, 0x86, 0x8b, 0xac, +0x55, 0xa5, 0x29, 0x11, 0x8d, 0x81, 0x72, 0xea, 0x06, 0x01, 0xda, 0x8b, 0x51, 0x58, 0x50, 0xf2, +0x45, 0x3c, 0x9e, 0x87, 0x1a, 0x7f, 0xa6, 0x90, 0x1d, 0xbd, 0x6a, 0xc0, 0x64, 0xb1, 0x22, 0x63, +0x71, 0xc6, 0x45, 0x08, 0x5f, 0xc0, 0x62, 0xc1, 0xa0, 0x32, 0x60, 0x5b, 0xbc, 0x35, 0x6a, 0x6d, +0xcf, 0xee, 0x50, 0x18, 0x1b, 0xd4, 0xd5, 0xa3, 0x6b, 0x45, 0x72, 0xf0, 0xbd, 0xd7, 0xea, 0x05, +0x8f, 0x53, 0x11, 0x5c, 0x67, 0xe5, 0x82, 0x7c, 0xd3, 0xce, 0xf4, 0x34, 0x5e, 0x0b, 0x3e, 0xea, +0x5b, 0xab, 0x5c, 0x2d, 0xc3, 0xb7, 0x8d, 0x07, 0x69, 0xd5, 0xd8, 0x0e, 0xf7, 0x50, 0x98, 0x0c, +0xb5, 0x5d, 0x21, 0x34, 0xcc, 0x14, 0x24, 0xcb, 0x74, 0xb7, 0x7b, 0x09, 0x43, 0x3a, 0xa7, 0xa7, +0x6c, 0x83, 0xaf, 0x63, 0x94, 0x24, 0x2c, 0x1c, 0x48, 0x4c, 0xa0, 0x7c, 0x74, 0xc5, 0x1a, 0x59, +0xf5, 0x33, 0x4a, 0xec, 0xb9, 0xa7, 0x01, 0xbb, 0xdd, 0x05, 0x72, 0x32, 0x7b, 0x68, 0xfa, 0x26, +0x11, 0x95, 0x55, 0x81, 0x9b, 0x91, 0xe6, 0xaa, 0x46, 0x77, 0x53, 0xfd, 0x59, 0x26, 0x03, 0xe0, +0x88, 0x03, 0xff, 0xe0, 0x48, 0x8a, 0xee, 0xe2, 0xd6, 0x58, 0x5d, 0x22, 0xa6, 0x12, 0xd2, 0x59, +0x5b, 0xb5, 0xb0, 0x23, 0x0d, 0xa8, 0x4b, 0x15, 0x23, 0x39, 0xa3, 0x38, 0x49, 0x3f, 0xf6, 0xe9, +0x9f, 0x50, 0x35, 0x46, 0x91, 0x11, 0x72, 0x0b, 0xb5, 0xe7, 0x90, 0x45, 0xb3, 0x38, 0xac, 0xf8, +0x53, 0xcb, 0x97, 0x6a, 0x6d, 0xbe, 0xea, 0xdb, 0x9b, 0x03, 0xff, 0x9f, 0x82, 0xea, 0x2f, 0xc1, +0x98, 0x94, 0x15, 0xf4, 0xdd, 0x92, 0xb9, 0xfd, 0xe8, 0x25, 0x7f, 0xd8, 0x06, 0x65, 0xdf, 0x4e, +0x77, 0x95, 0xd1, 0xe2, 0xf7, 0x1d, 0xdc, 0x09, 0xd8, 0xda, 0x89, 0x3a, 0x75, 0xbc, 0x10, 0x90, +0x59, 0xd4, 0x69, 0x28, 0x66, 0x8d, 0x1c, 0x80, 0x0e, 0xe9, 0x94, 0x37, 0x1a, 0x0c, 0xe5, 0x1d, +0x08, 0x6f, 0x49, 0xa5, 0x32, 0x07, 0x94, 0x8c, 0xe7, 0x11, 0x97, 0x4e, 0x17, 0xec, 0x55, 0x71, +0x55, 0xb3, 0xde, 0x46, 0x08, 0x0e, 0x67, 0x7f, 0x26, 0xb2, 0x67, 0xfd, 0xe6, 0x9e, 0x8d, 0xf7, +0xd7, 0xe8, 0xc4, 0xed, 0x47, 0x28, 0x7e, 0x84, 0xc1, 0x07, 0x73, 0x7d, 0x9c, 0x1a, 0xc7, 0x5b, +0xf6, 0xa7, 0x8c, 0xae, 0xa7, 0xe9, 0xfd, 0xbe, 0x97, 0x67, 0xdf, 0xab, 0xa7, 0x82, 0x8d, 0x64, +0xc5, 0xb4, 0xb4, 0xd5, 0x3a, 0xaf, 0x36, 0x7f, 0xe6, 0x77, 0xb8, 0xd0, 0x5b, 0x25, 0x2b, 0x7e, +0x06, 0x68, 0x46, 0x53, 0xf2, 0xf3, 0xdf, 0xb7, 0x4e, 0xe7, 0xa7, 0x77, 0x71, 0x5d, 0x82, 0x30, +0x3e, 0xdf, 0x3b, 0xe5, 0x73, 0x4b, 0x76, 0xf8, 0xf9, 0xae, 0x30, 0x36, 0x39, 0xff, 0x92, 0x59, +0x81, 0x88, 0x4d, 0xa7, 0x42, 0xd4, 0x1e, 0xe4, 0xd0, 0x8b, 0xf7, 0x54, 0x9d, 0x0d, 0x6b, 0x5d, +0x8b, 0xe1, 0x48, 0xf4, 0x62, 0x5a, 0xc2, 0xf9, 0x58, 0x9b, 0x86, 0x29, 0x6b, 0x11, 0xe4, 0xaf, +0x12, 0x65, 0xb6, 0xad, 0x5e, 0x60, 0xd1, 0x5a, 0x6f, 0xac, 0xdf, 0xce, 0x16, 0xf7, 0x30, 0x01, +0xc0, 0x20, 0x8b, 0x60, 0x6f, 0x40, 0xd8, 0x16, 0xa0, 0x68, 0xb3, 0x44, 0x43, 0x02, 0x25, 0x05, +0x1f, 0x13, 0x75, 0x8b, 0x38, 0xa4, 0xd8, 0x68, 0xda, 0x7a, 0x16, 0xc6, 0xc4, 0xbe, 0xa9, 0xd2, +0x49, 0x76, 0x56, 0xcb, 0xe5, 0x5a, 0x5e, 0xfe, 0xcb, 0x9d, 0x1d, 0xca, 0xed, 0xea, 0x73, 0xac, +0x49, 0x2a, 0x96, 0x2b, 0x52, 0x07, 0x40, 0x7c, 0x09, 0x2b, 0x7d, 0x47, 0x7c, 0xbe, 0xe3, 0xe3, +0x07, 0x75, 0x27, 0x87, 0xf8, 0x29, 0x7d, 0x84, 0x54, 0x2a, 0xbe, 0x32, 0xc2, 0xd1, 0x18, 0xcb, +0xd0, 0x4f, 0xaa, 0x70, 0xef, 0x2b, 0x6e, 0x6e, 0xc3, 0xbb, 0x26, 0x35, 0xc3, 0x3b, 0x94, 0xce, +0xc5, 0x93, 0x8c, 0x68, 0x48, 0xd3, 0xc8, 0x2c, 0xa7, 0x5c, 0x21, 0x2e, 0x78, 0x13, 0x41, 0xc7, +0xaa, 0x2d, 0xbe, 0xe2, 0x55, 0x5b, 0x1a, 0x45, 0x67, 0x00, 0xac, 0x14, 0x89, 0x36, 0xda, 0xbb, +0x26, 0x42, 0xcf, 0x70, 0xef, 0xb0, 0xd2, 0x71, 0xc8, 0x62, 0x2d, 0x71, 0xca, 0xd6, 0x7c, 0xdc, +0x54, 0xfc, 0x5a, 0xfe, 0xfd, 0x60, 0xbb, 0x25, 0xf6, 0x58, 0x02, 0xa2, 0xc5, 0x35, 0x30, 0x2c, +0x76, 0x6f, 0x22, 0xea, 0xbf, 0x10, 0xa9, 0x08, 0x77, 0x01, 0x02, 0xf4, 0x57, 0x55, 0xc2, 0x56, +0xa6, 0xae, 0x62, 0xdc, 0x5f, 0xa2, 0xd5, 0xea, 0xdc, 0x4a, 0x70, 0xdb, 0xbf, 0x09, 0x6c, 0xd0, +0xca, 0x54, 0xa0, 0x84, 0xab, 0xaf, 0x35, 0x9c, 0x0c, 0x87, 0xf1, 0x70, 0xe6, 0xee, 0x8f, 0x8f, +0xe9, 0xb6, 0x7c, 0xd8, 0x9f, 0x52, 0x96, 0x81, 0xfd, 0x6e, 0x23, 0x66, 0x0d, 0xe5, 0xb7, 0xf5, +0x8a, 0xd1, 0xbb, 0x28, 0x44, 0xbb, 0x3c, 0x4a, 0xc3, 0x93, 0x0c, 0x1d, 0x47, 0x02, 0xac, 0xef, +0x1e, 0xb0, 0xe1, 0x54, 0x5a, 0xa0, 0x36, 0xe6, 0x47, 0xc4, 0xce, 0x75, 0xc8, 0x52, 0x92, 0x1a, +0xc0, 0x76, 0xe7, 0xff, 0xd8, 0x19, 0x4d, 0x24, 0x9d, 0x53, 0x52, 0xff, 0x47, 0xbe, 0xfd, 0x86, +0x21, 0x86, 0x27, 0x25, 0x07, 0xc8, 0x7e, 0x4d, 0x90, 0x11, 0x60, 0x7c, 0xf4, 0xdf, 0x8e, 0x2e, +0xc6, 0x9f, 0xc7, 0x18, 0x13, 0x55, 0x96, 0xda, 0x0d, 0x10, 0x2c, 0x96, 0xd4, 0x25, 0xdb, 0xdc, +0x40, 0x38, 0xfd, 0xb2, 0x1d, 0xc1, 0xf7, 0xde, 0x71, 0xb6, 0x63, 0xc4, 0x03, 0x0e, 0x0f, 0x28, +0xd5, 0xaf, 0x9b, 0xaa, 0x68, 0x16, 0x11, 0x37, 0x75, 0x6b, 0x35, 0x13, 0xab, 0x35, 0xdb, 0xff, +0x1a, 0x91, 0x4a, 0xcf, 0xd0, 0x82, 0xca, 0x62, 0xa4, 0xba, 0xf5, 0xb1, 0xa1, 0x53, 0x0a, 0xba, +0xe2, 0xa5, 0x00, 0x38, 0x56, 0x02, 0xa3, 0x63, 0xa9, 0xe0, 0xdb, 0xd5, 0xad, 0x84, 0xa5, 0x74, +0x37, 0xe2, 0xfb, 0xfa, 0xe3, 0x42, 0x7e, 0xf5, 0x7c, 0x25, 0x57, 0x0f, 0xda, 0xbd, 0xff, 0xd1, +0x0a, 0x67, 0x41, 0x27, 0x6e, 0x93, 0xd0, 0xf7, 0x67, 0x80, 0x44, 0xa3, 0xcb, 0x63, 0x7b, 0xb0, +0x7b, 0x3d, 0x23, 0xda, 0x77, 0x99, 0x76, 0xbf, 0x72, 0x16, 0x42, 0x3a, 0x01, 0x6e, 0x88, 0x86, +0xb6, 0x26, 0x32, 0x35, 0x41, 0x15, 0x6c, 0x26, 0x00, 0xee, 0x9c, 0xc5, 0x98, 0x8b, 0x3e, 0x12, +0xdd, 0xd8, 0xfa, 0xeb, 0x73, 0x30, 0x0e, 0xc5, 0xb7, 0xa4, 0xf7, 0x89, 0x7b, 0xa4, 0xa4, 0x13, +0x12, 0xf4, 0xf7, 0xec, 0x04, 0x5e, 0x0f, 0x08, 0x52, 0x95, 0x94, 0x0f, 0x98, 0x92, 0x85, 0xde, +0x66, 0xf8, 0x0d, 0x1d, 0xdc, 0xc5, 0x19, 0x1e, 0x1b, 0xaa, 0xfe, 0x4e, 0x1b, 0xff, 0xe0, 0x5e, +0xee, 0x6b, 0x38, 0xd8, 0x57, 0x3d, 0x7b, 0xcb, 0x7a, 0x8c, 0x57, 0x2b, 0x3a, 0x96, 0xc6, 0x80, +0x6c, 0xee, 0x69, 0x5b, 0x70, 0xbc, 0x00, 0x07, 0xba, 0x4d, 0x66, 0x5a, 0x96, 0xb4, 0xb4, 0x3f, +0x59, 0x66, 0xc5, 0x8e, 0xb3, 0xfa, 0xcc, 0x7b, 0x36, 0x67, 0xe1, 0xc3, 0x51, 0xe3, 0x47, 0x0f, +0x75, 0x07, 0xc7, 0x55, 0xa3, 0x24, 0x42, 0x2c, 0x27, 0x87, 0x61, 0x78, 0x5f, 0x7e, 0x49, 0xcb, +0xd0, 0x1e, 0x9a, 0x96, 0x96, 0x92, 0x76, 0xbc, 0xf0, 0xef, 0x69, 0xb0, 0xd6, 0x18, 0x0a, 0xa3, +0xc5, 0x0e, 0x5a, 0x55, 0x7b, 0x33, 0x64, 0xfa, 0x6a, 0x82, 0xe2, 0x43, 0x52, 0xcb, 0x12, 0x9f, +0x4a, 0x90, 0x99, 0xbd, 0xdd, 0xe3, 0x7b, 0xa5, 0xae, 0x24, 0xcd, 0xb6, 0xa6, 0x55, 0xae, 0xd9, +0x9c, 0x7f, 0x7e, 0xd0, 0x75, 0xf7, 0xb7, 0xbe, 0x21, 0xbc, 0x66, 0x3d, 0x3e, 0xc8, 0x9b, 0x96, +0xbe, 0xcb, 0xd2, 0x2d, 0x59, 0xb9, 0xe2, 0x6e, 0x5e, 0x4a, 0xd4, 0x9d, 0xfa, 0x8b, 0x72, 0x56, +0xd9, 0x51, 0xb4, 0x5e, 0xf0, 0x76, 0xe6, 0xa2, 0xa9, 0x11, 0x63, 0x81, 0x6d, 0x3a, 0xc1, 0x7c, +0x7d, 0x5e, 0x69, 0x09, 0x1d, 0xe7, 0xee, 0x0a, 0x52, 0x9f, 0x04, 0xa2, 0x2a, 0xdb, 0xa1, 0x6a, +0x43, 0x82, 0x78, 0x8a, 0xae, 0x81, 0xf6, 0x59, 0xc6, 0x40, 0xf6, 0xe3, 0xa7, 0x7b, 0x42, 0x18, +0x87, 0x6d, 0xbd, 0x8f, 0x14, 0xa3, 0xdf, 0x11, 0x70, 0xcd, 0x55, 0x97, 0x4d, 0x15, 0xb8, 0x9e, +0x0d, 0x6f, 0x88, 0x70, 0xbf, 0xc9, 0x82, 0xca, 0xab, 0xf9, 0x3e, 0xdc, 0x08, 0x14, 0x17, 0xda, +0xe3, 0xc2, 0x3e, 0xcc, 0xbb, 0xde, 0xb1, 0x1a, 0x60, 0xa4, 0x9c, 0x49, 0xde, 0x05, 0xcc, 0xb2, +0x98, 0x58, 0x13, 0xc3, 0xed, 0x6a, 0x30, 0xfb, 0x69, 0x17, 0x39, 0x9b, 0x8c, 0x6b, 0x1e, 0x8e, +0x71, 0x41, 0x18, 0x59, 0xaf, 0x97, 0x92, 0x3e, 0x9a, 0x4d, 0xba, 0x0b, 0xdb, 0x1c, 0xf5, 0xd4, +0x55, 0x47, 0xac, 0xa1, 0xac, 0x5f, 0xf2, 0xac, 0x6f, 0x29, 0x5a, 0x27, 0xb4, 0x2f, 0x64, 0x03, +0xe8, 0xda, 0xd0, 0x80, 0xd6, 0xcf, 0x70, 0x0c, 0x83, 0x88, 0xbf, 0xee, 0xfe, 0x1c, 0xb5, 0xb7, +0x55, 0x16, 0xa6, 0xb4, 0xc2, 0xc6, 0x0a, 0x68, 0x99, 0x91, 0xc5, 0xfc, 0xce, 0x2e, 0x75, 0x53, +0xc8, 0x9e, 0xad, 0xa6, 0xd2, 0x82, 0x98, 0x77, 0x78, 0x78, 0x16, 0x7a, 0xb4, 0x9c, 0x6d, 0x50, +0x31, 0xf2, 0x49, 0xa1, 0x6d, 0x35, 0xf0, 0x40, 0x92, 0x82, 0x90, 0xee, 0xff, 0x58, 0x69, 0xec, +0x32, 0x28, 0x63, 0x86, 0x96, 0x37, 0x21, 0x2f, 0xf2, 0x2e, 0xd1, 0x41, 0x28, 0x35, 0x27, 0x6b, +0x60, 0x4a, 0x12, 0x45, 0x4d, 0xf2, 0x10, 0x72, 0xd7, 0x7f, 0xaa, 0xa4, 0xf3, 0x12, 0x26, 0x22, +0xa7, 0x11, 0x19, 0xbc, 0x18, 0x37, 0x73, 0x6a, 0xe0, 0x6f, 0xc0, 0x17, 0xfa, 0x6b, 0xc5, 0x03, +0x30, 0xce, 0xc8, 0x31, 0x5d, 0x58, 0x58, 0xd0, 0xc1, 0xae, 0x15, 0xd4, 0xf4, 0x67, 0x66, 0xde, +0xd2, 0xf0, 0x11, 0xf4, 0x4b, 0x2c, 0xe7, 0x02, 0x45, 0x83, 0x3f, 0x95, 0xf2, 0x41, 0xad, 0xf5, +0x7b, 0x03, 0x11, 0x7c, 0x4e, 0x35, 0xc4, 0xa3, 0x99, 0x1c, 0x44, 0xe5, 0x87, 0x2b, 0x5c, 0xe2, +0x4a, 0xd8, 0x7e, 0x85, 0xa8, 0xcc, 0x0b, 0x07, 0x7e, 0x76, 0x3b, 0xae, 0xfc, 0x3c, 0x53, 0x1a, +0x9f, 0x9b, 0xe4, 0x25, 0xb2, 0x6c, 0x2e, 0x41, 0x16, 0x43, 0xfc, 0x57, 0x4b, 0x8d, 0x11, 0x78, +0x31, 0x0f, 0x42, 0xa9, 0x97, 0xb2, 0x6e, 0x9a, 0x91, 0xac, 0xa5, 0x9d, 0x9a, 0x66, 0x90, 0xac, +0x05, 0xd2, 0x95, 0xe1, 0x4b, 0x6d, 0xd8, 0x9d, 0x12, 0x48, 0x6a, 0x2d, 0x0c, 0x58, 0xcb, 0x79, +0xfc, 0x61, 0x25, 0x3d, 0xa5, 0x6f, 0x2c, 0xc7, 0x9d, 0x34, 0x9d, 0x90, 0xa2, 0x85, 0xff, 0x12, +0x97, 0x41, 0x98, 0x98, 0x55, 0xd2, 0xbe, 0x3d, 0xf6, 0xd8, 0xeb, 0xfd, 0x0e, 0x19, 0x68, 0x63, +0x70, 0x3a, 0xfa, 0xd3, 0x80, 0x13, 0x43, 0xae, 0x4a, 0x89, 0xc7, 0xf4, 0x71, 0x5c, 0x10, 0x60, +0xde, 0xd3, 0xd9, 0x8f, 0x1c, 0xdb, 0xdf, 0x55, 0xd7, 0x54, 0x29, 0x7b, 0x10, 0xa0, 0x42, 0xcf, +0x65, 0x91, 0x35, 0xc4, 0x53, 0xfe, 0x63, 0xb7, 0xb3, 0x63, 0xfa, 0x6c, 0xbf, 0xb1, 0xfb, 0x53, +0x94, 0xd1, 0x7c, 0xe9, 0x4d, 0x12, 0x16, 0xb8, 0xf7, 0x3f, 0xdb, 0x08, 0x78, 0x47, 0x7a, 0x58, +0xed, 0xc7, 0x65, 0xb1, 0x10, 0x55, 0x36, 0x8c, 0xb4, 0xd9, 0x3f, 0x64, 0x2d, 0xf5, 0xa6, 0x4a, +0x11, 0x3a, 0x0b, 0xfc, 0xd3, 0xb3, 0x54, 0xf3, 0x24, 0xb3, 0x07, 0xb1, 0x36, 0xb1, 0xc4, 0x7f, +0xbb, 0x6a, 0x40, 0x0a, 0xc9, 0x41, 0x62, 0xd3, 0x89, 0xee, 0x8a, 0x85, 0xb2, 0x9f, 0x1b, 0x9a, +0xf8, 0xbb, 0x82, 0xeb, 0xe7, 0x8a, 0x89, 0x89, 0xd9, 0x5d, 0x71, 0xca, 0x9f, 0x23, 0x64, 0xd2, +0x11, 0x88, 0xc0, 0x9d, 0xed, 0x72, 0x8a, 0x81, 0xb9, 0xd5, 0x50, 0x7a, 0x34, 0xb9, 0x81, 0x58, +0x2e, 0x9f, 0x2c, 0x1c, 0x88, 0x65, 0x18, 0xa1, 0x69, 0xb7, 0x49, 0x38, 0x8a, 0x77, 0x59, 0x59, +0xee, 0x67, 0x9f, 0x0a, 0xdd, 0x13, 0x6d, 0x86, 0xe5, 0x06, 0xf8, 0x81, 0xfa, 0xdc, 0x7c, 0x2c, +0x17, 0x72, 0x67, 0xb5, 0x7a, 0x6e, 0x46, 0x1b, 0x4d, 0x9b, 0x2c, 0x9f, 0x47, 0x12, 0xf0, 0xd0, +0x9e, 0x21, 0xc6, 0xd4, 0xa8, 0xbc, 0x2b, 0x18, 0xd1, 0x40, 0x71, 0xc9, 0x55, 0xfc, 0x02, 0x95, +0x97, 0x58, 0x5d, 0xa5, 0x11, 0xff, 0xc9, 0x91, 0x5b, 0x2b, 0x4c, 0x74, 0x7a, 0xc7, 0x7a, 0x25, +0x88, 0x84, 0xf9, 0xfe, 0x4e, 0xfa, 0x40, 0x4a, 0xb5, 0x26, 0xd1, 0x17, 0x42, 0xce, 0x03, 0xd1, +0x67, 0x4e, 0x18, 0xeb, 0xc9, 0xf0, 0x99, 0xe8, 0x20, 0x6d, 0xa2, 0xce, 0x88, 0xd2, 0xf1, 0xdf, +0xd6, 0x1e, 0x9c, 0x00, 0x01, 0xc3, 0xb6, 0xeb, 0x28, 0x3b, 0x80, 0x23, 0xc2, 0xee, 0x0e, 0xa7, +0xdc, 0x71, 0xa9, 0xf2, 0x37, 0x3b, 0xb5, 0x7c, 0xda, 0x34, 0x39, 0x4b, 0x0e, 0x45, 0x06, 0x8c, +0xba, 0xee, 0x45, 0x82, 0x00, 0xd2, 0x32, 0x0d, 0xbf, 0x5d, 0x1c, 0xe5, 0x7c, 0x99, 0x71, 0x56, +0x4f, 0x68, 0xf0, 0xb3, 0x7f, 0x7b, 0x10, 0xaf, 0x68, 0x04, 0x1b, 0x06, 0x6f, 0xee, 0xc2, 0x45, +0xf1, 0x3a, 0x0d, 0x39, 0x95, 0xed, 0xe4, 0x62, 0xc4, 0x43, 0x09, 0xbd, 0x5b, 0x1c, 0x4d, 0x3e, +0x5a, 0x55, 0x65, 0x69, 0xe7, 0xdc, 0xa9, 0x6b, 0x1a, 0xa0, 0x0e, 0xef, 0x8d, 0x27, 0x79, 0x5f, +0x07, 0x0a, 0x81, 0x88, 0x60, 0xbc, 0x93, 0x9f, 0xfe, 0x67, 0x2e, 0x63, 0xea, 0xc9, 0x9f, 0xe6, +0x2e, 0xf2, 0xba, 0x8a, 0x82, 0x1a, 0x99, 0x85, 0xdb, 0x70, 0x3a, 0x60, 0xed, 0x2a, 0x9a, 0xcf, +0xb5, 0x60, 0xf0, 0x6b, 0x98, 0xfe, 0x8d, 0xed, 0x39, 0xa2, 0xb0, 0x43, 0x93, 0xd7, 0xa2, 0x33, +0x41, 0xc5, 0x21, 0xb9, 0x45, 0xd5, 0xba, 0xf0, 0x7c, 0x94, 0x04, 0x6e, 0xa0, 0xe7, 0xf9, 0x86, +0x2e, 0x57, 0x00, 0x78, 0xc9, 0x99, 0x76, 0xd4, 0x58, 0x11, 0x8d, 0x90, 0xfe, 0xa9, 0x3d, 0x08, +0xa2, 0xa8, 0x17, 0x0b, 0xde, 0xe4, 0x80, 0x1e, 0xb5, 0x81, 0x47, 0x36, 0xcc, 0x02, 0x10, 0x1a, +0xde, 0x34, 0x41, 0x54, 0x25, 0xe1, 0x1e, 0x84, 0x25, 0xb2, 0xb5, 0xce, 0x2a, 0xa1, 0xfc, 0xe5, +0xe1, 0x4c, 0xd2, 0x09, 0x52, 0xda, 0xd6, 0x27, 0xdc, 0x30, 0x73, 0x46, 0xd7, 0xd7, 0xf8, 0x1e, +0x5c, 0x85, 0x7c, 0x5c, 0x07, 0xbe, 0xee, 0x38, 0x97, 0x22, 0x0f, 0x31, 0x13, 0x71, 0x15, 0x04, +0xe4, 0x63, 0xa4, 0xd4, 0xc3, 0x45, 0x92, 0xe9, 0x50, 0xd5, 0x0c, 0x6d, 0x4f, 0xa4, 0x30, 0x20, +0xf8, 0xc7, 0x02, 0xb6, 0x0c, 0x9c, 0x0c, 0x24, 0x06, 0x0c, 0x48, 0x69, 0x7c, 0xe1, 0xd8, 0x72, +0x37, 0x27, 0x05, 0x7c, 0x60, 0xef, 0x25, 0x58, 0x64, 0x95, 0xf3, 0x2c, 0x7e, 0x1f, 0xbf, 0x04, +0xaf, 0x3c, 0x69, 0x9b, 0x65, 0x77, 0xac, 0x4e, 0x4c, 0x7e, 0x18, 0x9b, 0x0d, 0x1f, 0xbc, 0x04, +0x1d, 0xc4, 0xe3, 0x53, 0x7f, 0xaf, 0x55, 0x85, 0x90, 0x52, 0x03, 0x9e, 0x8f, 0x24, 0xe0, 0x27, +0x90, 0xe0, 0xaa, 0xed, 0x0a, 0xbc, 0xda, 0xa1, 0xc9, 0xa3, 0xa1, 0x6a, 0x58, 0xef, 0xf5, 0x56, +0xf9, 0xc1, 0x7d, 0x44, 0xcc, 0xd0, 0xbd, 0x5e, 0x36, 0xf2, 0xea, 0x5e, 0x99, 0x2d, 0x46, 0x0c, +0xb2, 0x5a, 0x15, 0x63, 0xaf, 0xe0, 0xab, 0x3d, 0xc9, 0x5a, 0xef, 0xc7, 0x7f, 0x4d, 0x3b, 0xcb, +0x80, 0xb6, 0xd8, 0x17, 0xcf, 0xa2, 0x21, 0xac, 0x5f, 0xac, 0x20, 0xc3, 0xe5, 0x8b, 0x2b, 0xfd, +0x43, 0xe7, 0x85, 0xe6, 0x0e, 0x5d, 0xf6, 0xf1, 0x64, 0x13, 0x64, 0xe6, 0x94, 0x38, 0x95, 0x7c, +0xae, 0x8c, 0xc0, 0x4c, 0xa5, 0x2b, 0xee, 0x02, 0x69, 0xbb, 0xf4, 0x0e, 0x66, 0x81, 0xe6, 0xc7, +0x63, 0x38, 0xe1, 0x0d, 0xe2, 0x20, 0x6b, 0xe8, 0x83, 0xf3, 0x94, 0xba, 0x22, 0x6b, 0xb1, 0x64, +0xbd, 0x8f, 0x80, 0x67, 0xc8, 0x13, 0x4e, 0x54, 0xcf, 0x08, 0x72, 0x3a, 0xbf, 0xe0, 0x28, 0xb5, +0x10, 0x48, 0xfa, 0x21, 0xf9, 0x96, 0x8d, 0x31, 0xbe, 0xe4, 0x6a, 0x4b, 0x64, 0x32, 0x65, 0xce, +0x67, 0x5d, 0xd0, 0xf5, 0x94, 0x37, 0xac, 0xc1, 0xff, 0x0c, 0x06, 0xce, 0x57, 0x6f, 0x3b, 0xc1, +0x47, 0xb4, 0x75, 0x41, 0xf4, 0x1f, 0x7f, 0x06, 0x17, 0xbb, 0x94, 0xbe, 0x2e, 0x08, 0x47, 0xef, +0x23, 0xb2, 0x87, 0x78, 0x1d, 0x79, 0xa7, 0xc4, 0x7e, 0x44, 0x8f, 0x1f, 0xd2, 0x6b, 0xf6, 0xfa, +0x3f, 0x0a, 0x0f, 0x14, 0x4d, 0x79, 0x48, 0xe2, 0x21, 0xfb, 0x63, 0x14, 0x68, 0x26, 0x14, 0x9a, +0x7c, 0xcd, 0x11, 0x0a, 0xf2, 0xca, 0x9f, 0x06, 0x10, 0x7e, 0x8f, 0x20, 0x33, 0x7d, 0x20, 0xe5, +0xf8, 0x06, 0xb2, 0xfc, 0x5e, 0x65, 0x17, 0xbb, 0xa8, 0xe3, 0x0f, 0x28, 0xb3, 0x6c, 0x3c, 0x5c, +0xa3, 0x19, 0xec, 0xdf, 0xd3, 0xa4, 0xef, 0x24, 0xe0, 0xda, 0x4d, 0xed, 0x40, 0x9a, 0xe7, 0x98, +0xd5, 0xc8, 0x79, 0x2b, 0x1a, 0x5c, 0x8d, 0x13, 0x20, 0x51, 0xfc, 0x93, 0x05, 0xdb, 0x91, 0x8b, +0x87, 0xa8, 0x3d, 0xac, 0x20, 0xcf, 0x35, 0x93, 0x0a, 0xb2, 0xbe, 0x33, 0x12, 0xf4, 0x3e, 0x96, +0x38, 0xb8, 0x1f, 0xca, 0xac, 0x25, 0x7b, 0xb3, 0x09, 0xb9, 0x45, 0x79, 0x91, 0xbd, 0x4a, 0xe7, +0x7d, 0x7e, 0xf5, 0x17, 0xd3, 0x1f, 0x8f, 0x6e, 0xea, 0x6c, 0x33, 0x6c, 0x1e, 0x32, 0xa5, 0x65, +0x6b, 0x49, 0xd8, 0x9d, 0x81, 0xc8, 0x52, 0x10, 0xbf, 0x55, 0x30, 0x5f, 0x5d, 0x60, 0xe3, 0xc8, +0x5e, 0xbf, 0x62, 0x60, 0xe3, 0xab, 0x3f, 0x7f, 0x8d, 0x18, 0x2f, 0x55, 0xa7, 0x32, 0xbd, 0xbf, +0xe7, 0x64, 0xce, 0x84, 0xf4, 0xdd, 0xc3, 0x24, 0xbb, 0xc5, 0x85, 0x7c, 0x29, 0xa5, 0xd5, 0x85, +0x65, 0xe6, 0x82, 0xf0, 0xfa, 0x4b, 0xf3, 0xb9, 0x35, 0x55, 0xb8, 0x4b, 0xb4, 0x9c, 0x94, 0x25, +0xc4, 0x43, 0x2b, 0x87, 0x4c, 0xa2, 0xda, 0xfd, 0x62, 0x4f, 0xcb, 0xc9, 0x29, 0xca, 0xf9, 0x17, +0x5b, 0xe1, 0x2c, 0x05, 0xfa, 0x16, 0xbb, 0x43, 0x89, 0x8b, 0xb9, 0x3d, 0xb3, 0xcd, 0xf8, 0x38, +0xdc, 0x52, 0x5d, 0x65, 0x64, 0x40, 0x2b, 0x86, 0xe7, 0xc8, 0x3e, 0xed, 0x70, 0x4e, 0x4c, 0x5a, +0xf5, 0xff, 0x25, 0x5c, 0x25, 0x39, 0xed, 0x70, 0x1f, 0x7e, 0x91, 0x36, 0x41, 0x04, 0x8f, 0x67, +0xd5, 0xa1, 0xf3, 0x44, 0x44, 0xed, 0x2b, 0xd9, 0xc1, 0x62, 0x46, 0x09, 0x43, 0xc7, 0xde, 0x24, +0x28, 0x63, 0xb3, 0xbb, 0xe8, 0xfa, 0x3b, 0x09, 0xf5, 0x2d, 0x17, 0xe1, 0x4e, 0xc0, 0xbe, 0xa4, +0x06, 0x47, 0x0d, 0xf8, 0x7d, 0xf1, 0x23, 0x6a, 0x0c, 0x51, 0xd2, 0x50, 0x8b, 0x59, 0xe5, 0x2f, +0x76, 0xc7, 0x50, 0x94, 0x79, 0xfd, 0x06, 0xa4, 0xe4, 0x23, 0x6d, 0x06, 0x3d, 0xe5, 0x94, 0xe6, +0x63, 0x8f, 0x67, 0xc5, 0xd9, 0xad, 0x88, 0x20, 0x1b, 0x0e, 0xe1, 0x36, 0xd2, 0x5c, 0xa8, 0x73, +0x8e, 0xa0, 0xa9, 0xfc, 0x01, 0xb9, 0xfb, 0xc4, 0xeb, 0x33, 0x1d, 0x94, 0x17, 0x48, 0xe8, 0x5c, +0xfd, 0x11, 0xd9, 0xde, 0x7a, 0x27, 0xa1, 0x4d, 0x78, 0xd1, 0xcf, 0xc0, 0xdf, 0xd9, 0x61, 0x39, +0xfc, 0x59, 0xbc, 0x3d, 0xdc, 0xaa, 0xf2, 0x1b, 0xfa, 0xb1, 0x15, 0x91, 0x0d, 0xa3, 0x8a, 0x1a, +0xc4, 0xdd, 0x59, 0x9c, 0x2d, 0x16, 0xd2, 0x22, 0x32, 0xa7, 0x79, 0x95, 0x2e, 0xed, 0x44, 0x3f, +0xad, 0x2e, 0x2e, 0x33, 0xe3, 0x3a, 0x81, 0xf5, 0x9b, 0xa4, 0x6f, 0xe3, 0xfd, 0x5a, 0x18, 0x66, +0xa1, 0x68, 0xcf, 0x8a, 0x13, 0x33, 0x19, 0xdd, 0x7b, 0x25, 0x5b, 0x50, 0xcb, 0x8a, 0xf3, 0xb6, +0x45, 0xf3, 0x57, 0x84, 0x26, 0x5a, 0x83, 0x40, 0x9f, 0xf6, 0x27, 0x34, 0x3c, 0xb3, 0x74, 0xfc, +0xff, 0x9f, 0x94, 0xbf, 0xd9, 0xe2, 0xf7, 0x21, 0x30, 0xb5, 0x30, 0xc5, 0x97, 0xdc, 0xcd, 0x02, +0x8c, 0x21, 0x6d, 0xa5, 0x6a, 0x1a, 0xc0, 0x56, 0x91, 0x26, 0x8b, 0x76, 0x82, 0x93, 0xef, 0x25, +0xfb, 0x42, 0x41, 0x52, 0xcc, 0x52, 0x58, 0x67, 0x5c, 0x64, 0xb4, 0xa2, 0x27, 0x68, 0xc4, 0x06, +0xf6, 0xa3, 0x88, 0x9a, 0xcd, 0x33, 0xe4, 0x78, 0xda, 0xf5, 0xbd, 0x36, 0xc3, 0x12, 0x50, 0x22, +0x3c, 0x1f, 0x7d, 0x3b, 0xb3, 0x20, 0xaf, 0xf0, 0x36, 0x72, 0xf2, 0x34, 0x93, 0x01, 0x5e, 0xbd, +0xc2, 0xe0, 0x50, 0x6d, 0xc2, 0xde, 0xb6, 0xf1, 0x0e, 0x2f, 0xf1, 0x7a, 0xc2, 0x72, 0x48, 0x37, +0x92, 0xa9, 0x18, 0x16, 0xa9, 0x9a, 0x75, 0x6d, 0xe6, 0x5b, 0x0e, 0xfe, 0xc0, 0x86, 0xfa, 0x72, +0x5d, 0x2a, 0xac, 0xea, 0xf4, 0xaf, 0x23, 0xd8, 0xea, 0x01, 0xb1, 0xe6, 0x4d, 0x4b, 0x7b, 0x3e, +0x37, 0x97, 0xa3, 0xc4, 0x29, 0xb1, 0xa6, 0xa1, 0x34, 0x22, 0x3e, 0xe1, 0x9e, 0x62, 0xc6, 0xa7, +0x45, 0x4f, 0xea, 0xbd, 0xf6, 0xc8, 0x43, 0xa0, 0xbc, 0xb1, 0x8e, 0x5a, 0xd6, 0x7a, 0x19, 0x52, +0x11, 0x9e, 0xe3, 0x13, 0x28, 0xc4, 0x8a, 0x1b, 0xc5, 0xd9, 0x40, 0x7c, 0xad, 0x8a, 0xc2, 0xa7, +0x42, 0x12, 0x59, 0xb8, 0x16, 0xab, 0x02, 0xd3, 0xe0, 0x9f, 0xb2, 0xbc, 0x3d, 0x0e, 0x91, 0xa7, +0x5a, 0xcb, 0x3d, 0x04, 0xcd, 0xfa, 0x1f, 0xef, 0x67, 0x12, 0x04, 0xdc, 0x4e, 0x4b, 0x12, 0xb1, +0x67, 0xe2, 0xe6, 0x48, 0x53, 0xe7, 0xc5, 0x1b, 0x03, 0xac, 0xb1, 0xab, 0xe9, 0xb4, 0x24, 0xfd, +0x90, 0x68, 0x97, 0xe8, 0x51, 0x65, 0x52, 0x44, 0x7c, 0xa2, 0xe4, 0x04, 0xdc, 0x54, 0xf6, 0x93, +0xc8, 0xc8, 0xe2, 0xca, 0x02, 0x70, 0xe3, 0xa4, 0x62, 0x61, 0x0b, 0xe9, 0x6f, 0x3b, 0xd1, 0xdd, +0xc1, 0x45, 0x7b, 0xde, 0xab, 0x89, 0x68, 0x7d, 0xf2, 0x98, 0x97, 0x39, 0x61, 0x62, 0xf6, 0x61, +0x46, 0x18, 0xba, 0xaf, 0x69, 0xd7, 0xaf, 0xcd, 0x81, 0xfc, 0x1c, 0x08, 0x7b, 0x4d, 0xee, 0x09, +0x9b, 0x88, 0xc4, 0x96, 0xca, 0xba, 0x07, 0x81, 0x20, 0xc7, 0x63, 0x57, 0x8b, 0x4e, 0xdf, 0x2f, +0x65, 0x32, 0x2e, 0x4c, 0x05, 0x0c, 0xff, 0xea, 0x18, 0xe5, 0xef, 0x62, 0x02, 0xb5, 0x99, 0x06, +0x70, 0xb6, 0xcc, 0xb9, 0x96, 0xc6, 0x48, 0xa2, 0xa4, 0x6c, 0x95, 0x4b, 0x5d, 0x67, 0x4e, 0x0f, +0x5b, 0x5e, 0x0f, 0xf5, 0xf3, 0x8b, 0xaf, 0xf1, 0x5e, 0x79, 0xa4, 0x61, 0x2e, 0x1e, 0x6e, 0x14, +0x80, 0xd4, 0xcd, 0x90, 0x6f, 0x73, 0xf6, 0x96, 0x5f, 0x1f, 0x7d, 0xbc, 0xe3, 0x43, 0x72, 0x80, +0x8d, 0x45, 0x2c, 0x4e, 0x33, 0x01, 0xd4, 0x15, 0xd9, 0xec, 0xb0, 0xfa, 0x54, 0x38, 0xe8, 0x67, +0x7c, 0x7d, 0xd7, 0x63, 0x7f, 0xcd, 0xcb, 0xf5, 0x06, 0xa5, 0x6b, 0x6a, 0xf4, 0x4e, 0x92, 0x18, +0x48, 0xb6, 0x87, 0x4e, 0x62, 0xa8, 0x5c, 0xfe, 0xf9, 0x46, 0x37, 0xd6, 0x71, 0xf7, 0x10, 0xd8, +0x27, 0x65, 0xc7, 0xef, 0xd6, 0x2f, 0x72, 0xd3, 0xd1, 0x63, 0x9a, 0x37, 0x40, 0x12, 0x37, 0x86, +0xaf, 0x5b, 0xb1, 0xa7, 0x16, 0x64, 0x39, 0x06, 0xdf, 0x94, 0x94, 0xb0, 0x2c, 0x54, 0x2c, 0x68, +0x7e, 0x5d, 0x97, 0x53, 0x84, 0x7e, 0xa1, 0x55, 0x84, 0xb3, 0xb5, 0x48, 0xce, 0xae, 0x51, 0xf2, +0xa2, 0x45, 0x0e, 0x21, 0x19, 0xa4, 0x17, 0x27, 0x68, 0x8b, 0x09, 0x48, 0x72, 0x72, 0x2c, 0x53, +0xcf, 0x57, 0x3e, 0x96, 0xb8, 0xa1, 0x94, 0x41, 0xa2, 0x24, 0xc7, 0x07, 0x08, 0xbe, 0x8b, 0xce, +0xc5, 0x3a, 0x41, 0x0f, 0x69, 0x2f, 0x03, 0x1b, 0xf7, 0xb4, 0xe6, 0xb1, 0xf1, 0x10, 0x41, 0x29, +0xf3, 0x46, 0x69, 0xb2, 0xc3, 0xf9, 0xd9, 0xb7, 0x75, 0x1e, 0x89, 0xa8, 0x4e, 0x7f, 0xd9, 0x79, +0x97, 0xb0, 0xa0, 0xe8, 0x41, 0x5f, 0x72, 0x95, 0xd1, 0x05, 0xf9, 0x40, 0x6a, 0x8f, 0xbe, 0x2a, +0xdf, 0x6f, 0x83, 0x4d, 0xb0, 0xdb, 0xe9, 0x77, 0x45, 0x45, 0xce, 0xb2, 0x26, 0x2b, 0x84, 0x4d, +0x19, 0xd4, 0xfe, 0xfb, 0x9b, 0x67, 0x2b, 0x80, 0x99, 0xb9, 0x74, 0x87, 0xc9, 0xea, 0xe9, 0xa7, +0x66, 0xd5, 0x33, 0xb1, 0x89, 0xda, 0x81, 0x2b, 0xf0, 0xff, 0xdb, 0xc2, 0x89, 0x5e, 0x4d, 0x5a, +0x9e, 0xf3, 0x7b, 0x90, 0xf0, 0xae, 0x86, 0xc8, 0x6a, 0x0e, 0x4e, 0x9d, 0xc2, 0x93, 0xea, 0x8a, +0x8d, 0x23, 0x9d, 0x15, 0xf6, 0xb9, 0xbb, 0xcd, 0x90, 0x82, 0x69, 0x10, 0x30, 0xf5, 0xbe, 0x15, +0xf8, 0x89, 0xe1, 0x74, 0xc7, 0x04, 0x06, 0x94, 0x5f, 0xac, 0xe4, 0x11, 0x79, 0x27, 0xb8, 0x1f, +0x66, 0x4a, 0xbc, 0xad, 0xf5, 0xa9, 0xb3, 0x5a, 0xfc, 0x86, 0xae, 0xc9, 0x01, 0x3f, 0x3d, 0x8f, +0x89, 0x2f, 0x38, 0xf3, 0x4c, 0x22, 0xca, 0x6c, 0x61, 0x18, 0x3b, 0x23, 0x92, 0x8c, 0x68, 0xb5, +0xfe, 0xe1, 0x92, 0x87, 0xc1, 0x40, 0x56, 0x8c, 0xc9, 0x94, 0x5d, 0x69, 0xcb, 0xe1, 0x32, 0x3a, +0xa7, 0x24, 0x68, 0x65, 0x06, 0xf1, 0x3a, 0xe4, 0x72, 0x03, 0x3e, 0xc1, 0xdb, 0x4f, 0x93, 0x4f, +0x9f, 0xd9, 0x97, 0xe8, 0xf8, 0xfd, 0x0c, 0x49, 0xa2, 0x79, 0x67, 0x91, 0x63, 0xf9, 0xc8, 0xda, +0x18, 0xb0, 0xb7, 0xc3, 0x85, 0xf9, 0xe5, 0xc2, 0x20, 0xa0, 0xe8, 0x48, 0xb9, 0x49, 0x7e, 0xee, +0xc1, 0x7f, 0x21, 0x5f, 0xad, 0x6b, 0x4e, 0x2a, 0x41, 0x28, 0xb3, 0x6b, 0xc0, 0x03, 0xd2, 0x1c, +0xd8, 0x6b, 0x68, 0x0e, 0x7b, 0x87, 0xc7, 0xdf, 0xbc, 0x1b, 0x91, 0xb2, 0xe2, 0x68, 0xfa, 0x2e, +0x69, 0xa9, 0x90, 0x30, 0x18, 0xf3, 0x1d, 0x2c, 0x38, 0x1b, 0x74, 0x8a, 0xed, 0x4f, 0x65, 0xe2, +0x05, 0x53, 0x89, 0x3b, 0xbd, 0x0d, 0x80, 0xf4, 0x84, 0x0e, 0xa8, 0xa4, 0x77, 0x10, 0xf2, 0x9c, +0x4b, 0x30, 0x9d, 0x7d, 0xa6, 0xc2, 0xe0, 0x82, 0xbc, 0xe0, 0x71, 0x87, 0x45, 0x15, 0x1e, 0x29, +0xa3, 0x00, 0x3e, 0xa9, 0xb3, 0x90, 0xd5, 0x37, 0x7a, 0x7e, 0xe7, 0x90, 0xee, 0xc1, 0xc9, 0x73, +0xd5, 0x3b, 0xcc, 0x7a, 0xb4, 0xe4, 0x68, 0x93, 0xa9, 0x56, 0x04, 0xb9, 0xc8, 0x2a, 0x9e, 0x2d, +0x55, 0x89, 0xdb, 0x06, 0x87, 0xfe, 0x92, 0x5a, 0x74, 0xb6, 0x2d, 0xcf, 0x10, 0xa6, 0xaa, 0xa9, +0x90, 0xf0, 0x08, 0x35, 0xc2, 0xfc, 0x51, 0x03, 0x36, 0xed, 0x9a, 0x7c, 0x69, 0x5e, 0x47, 0x0d, +0x5a, 0xe8, 0xb0, 0x77, 0x66, 0x94, 0x09, 0x62, 0x19, 0xdc, 0xff, 0x4d, 0xa8, 0x49, 0x7f, 0x8e, +0xe6, 0x1c, 0x1a, 0x35, 0xd8, 0xd4, 0x10, 0x66, 0xb9, 0x1f, 0x42, 0xad, 0x5f, 0x11, 0x41, 0x97, +0x86, 0xdc, 0xae, 0xc4, 0x0d, 0xeb, 0x37, 0xd4, 0xb5, 0xbb, 0xed, 0xee, 0x1c, 0x7c, 0x21, 0x9f, +0xe5, 0x00, 0x5b, 0xdb, 0x58, 0x92, 0xd1, 0x57, 0x2d, 0x93, 0xef, 0x42, 0x05, 0x7c, 0xcf, 0xfa, +0x4f, 0xec, 0xaa, 0xc0, 0x52, 0x04, 0x3c, 0x5b, 0xd0, 0x12, 0xd7, 0x93, 0xc6, 0x3d, 0xfb, 0x9e, +0x0b, 0xba, 0xa0, 0x96, 0x02, 0xfa, 0x1e, 0xa5, 0x39, 0xb4, 0x6c, 0x4b, 0x9e, 0xd1, 0x86, 0x3d, +0xa2, 0xac, 0x42, 0x73, 0xfd, 0x2c, 0x1c, 0xd9, 0x7e, 0xe5, 0x85, 0x31, 0x90, 0xcd, 0x49, 0x21, +0x3d, 0x49, 0x03, 0xb5, 0xc9, 0x14, 0x30, 0x42, 0xe2, 0x7d, 0xf0, 0x6a, 0x58, 0xed, 0xfa, 0x31, +0xd6, 0x96, 0xba, 0x68, 0x35, 0x2a, 0x2e, 0xbc, 0x25, 0x67, 0x52, 0xaa, 0x52, 0x29, 0x80, 0xe5, +0xcd, 0xc8, 0xd8, 0xce, 0x43, 0x32, 0x28, 0x0f, 0x60, 0x90, 0x75, 0x59, 0xb3, 0xe6, 0xd2, 0x0c, +0x7b, 0xbe, 0x5b, 0x13, 0x81, 0xaa, 0xa4, 0x9b, 0x52, 0x97, 0x66, 0x9d, 0x6b, 0x63, 0x8b, 0x85, +0x3c, 0x85, 0xe1, 0xaf, 0xf3, 0x0f, 0x15, 0x0d, 0x61, 0x3c, 0x29, 0x24, 0x39, 0x83, 0xcc, 0x7c, +0x32, 0x42, 0x07, 0x0d, 0xae, 0x7c, 0x4e, 0x5f, 0x1d, 0xec, 0x36, 0xc8, 0x44, 0x49, 0xf3, 0x15, +0x94, 0xe7, 0xcc, 0xf8, 0x7c, 0x32, 0x87, 0x1f, 0x71, 0x37, 0x9d, 0x68, 0xe1, 0x9d, 0x23, 0xe2, +0x89, 0xd9, 0x31, 0xf0, 0x71, 0x81, 0x57, 0xb5, 0xb8, 0x9d, 0xbf, 0x20, 0x66, 0x17, 0xee, 0xbc, +0xc1, 0x6a, 0x8c, 0x45, 0x36, 0x14, 0xbb, 0xb7, 0x34, 0x3e, 0xae, 0x18, 0x96, 0x92, 0xe4, 0x74, +0x53, 0xf4, 0xd1, 0x24, 0x21, 0x42, 0xba, 0xfe, 0x45, 0xd7, 0x16, 0xab, 0xd1, 0x31, 0x06, 0x08, +0x50, 0x27, 0x58, 0x4f, 0x17, 0xd1, 0xfe, 0xa6, 0x4b, 0xa1, 0xc2, 0xfc, 0xf2, 0x14, 0x2c, 0x9a, +0x00, 0xd9, 0xd6, 0xac, 0x0e, 0xff, 0x9f, 0x74, 0x5e, 0x33, 0xd7, 0xd1, 0xa4, 0xaf, 0xb7, 0xe2, +0x9e, 0xe2, 0x40, 0x5b, 0x82, 0xc8, 0x24, 0x0a, 0xe0, 0x87, 0xd9, 0x31, 0x11, 0xf6, 0x6c, 0x5b, +0x9b, 0x90, 0xfa, 0x94, 0x39, 0x0c, 0xdc, 0x11, 0x22, 0x93, 0xf2, 0x6f, 0xcc, 0x44, 0x84, 0x64, +0xd7, 0x89, 0x0d, 0xce, 0x2a, 0x6d, 0xd1, 0x10, 0x99, 0x21, 0x0a, 0x36, 0xbd, 0x8c, 0xb3, 0xb9, +0xcd, 0xcc, 0xb4, 0x5c, 0x0d, 0xe8, 0x2a, 0xb9, 0xb3, 0x59, 0x46, 0xfb, 0x4f, 0xc7, 0xe5, 0xed, +0x71, 0xe1, 0xba, 0x28, 0x0d, 0xbb, 0x8f, 0x73, 0xa5, 0x23, 0xfa, 0x97, 0xbf, 0x92, 0x5e, 0xdf, +0xb1, 0x7f, 0x93, 0x32, 0x5e, 0x1e, 0x48, 0x70, 0xc3, 0xca, 0x10, 0x42, 0x0d, 0xc9, 0xf7, 0x73, +0xbf, 0x74, 0x81, 0xb6, 0xaa, 0x55, 0xa4, 0x8c, 0xb8, 0x8a, 0x69, 0x06, 0x06, 0x3f, 0x37, 0x9b, +0x64, 0xd3, 0xe3, 0xa4, 0xd7, 0x4a, 0x05, 0x5a, 0xbf, 0x2d, 0x9b, 0x12, 0x9d, 0xf7, 0xae, 0xcf, +0x9d, 0x7d, 0x4b, 0x31, 0xb5, 0x5a, 0xcd, 0x75, 0xf1, 0x25, 0x72, 0x30, 0xa7, 0x3a, 0xfb, 0xc6, +0xf7, 0x8f, 0xf5, 0x4c, 0x62, 0x20, 0x27, 0x13, 0xee, 0x2a, 0x65, 0x57, 0x5c, 0x40, 0xe3, 0x1d, +0x12, 0x94, 0xe2, 0x00, 0x32, 0x60, 0xe3, 0xb4, 0x3e, 0x02, 0xc5, 0x0d, 0xa3, 0x65, 0x25, 0x3a, +0x08, 0x88, 0xb6, 0x4f, 0x45, 0x74, 0x3e, 0x1d, 0x1f, 0x33, 0x52, 0x0b, 0x6b, 0xc5, 0xe7, 0x63, +0xf2, 0x26, 0xf5, 0xec, 0x2e, 0xf2, 0x01, 0x20, 0x7a, 0x91, 0xb9, 0x9c, 0xa5, 0xed, 0x9b, 0x0f, +0x0a, 0xc9, 0xe1, 0x5d, 0x87, 0x9a, 0x50, 0xb8, 0xc0, 0xe2, 0x84, 0x5f, 0xfd, 0x82, 0xdf, 0x4c, +0x58, 0x8d, 0x24, 0xbb, 0xec, 0x98, 0x0d, 0x99, 0x9e, 0x35, 0x39, 0xdc, 0x51, 0xd4, 0x79, 0xf8, +0x23, 0xa6, 0x5a, 0x30, 0xd0, 0xa6, 0x06, 0xe5, 0x29, 0xf2, 0x8a, 0x77, 0xa3, 0xaa, 0xf5, 0x89, +0xad, 0x96, 0xf2, 0x84, 0x36, 0x32, 0x19, 0xe3, 0xfa, 0x17, 0x11, 0xfd, 0x4d, 0xbb, 0x3f, 0xfa, +0xa1, 0xa5, 0x48, 0xf9, 0xfe, 0xcb, 0xba, 0x89, 0x5f, 0xfa, 0xe2, 0xdc, 0x4c, 0x47, 0x81, 0xb6, +0xd3, 0xb2, 0x8a, 0xf3, 0xae, 0xb9, 0x81, 0xe7, 0x34, 0x8f, 0xe0, 0xad, 0x3d, 0x0c, 0xd6, 0x91, +0xc8, 0x1e, 0xa6, 0x57, 0x38, 0x1b, 0xf6, 0xb2, 0x6f, 0xc6, 0x91, 0xc1, 0x9e, 0xec, 0x9c, 0xab, +0x44, 0x43, 0x19, 0x5a, 0x50, 0x44, 0x2a, 0xad, 0xf3, 0xce, 0x1f, 0x15, 0x82, 0xde, 0xd3, 0x95, +0x4d, 0x98, 0x5e, 0x61, 0x1d, 0x29, 0xe0, 0xb7, 0x76, 0x99, 0x00, 0x43, 0xe9, 0xfe, 0xc5, 0xaf, +0xbc, 0x9f, 0xae, 0x27, 0x03, 0x69, 0xa6, 0xcf, 0x16, 0x73, 0x7a, 0x42, 0x61, 0x32, 0xee, 0x48, +0xb3, 0x20, 0xf6, 0x05, 0x57, 0xd9, 0x76, 0x59, 0x9d, 0xa0, 0xd4, 0x81, 0x54, 0xf7, 0x48, 0xe0, +0xb9, 0x0a, 0x30, 0xca, 0x66, 0xbe, 0x5c, 0xa6, 0x05, 0x48, 0xf4, 0x53, 0x39, 0xf8, 0x4e, 0x89, +0xfe, 0x95, 0x9b, 0xf4, 0x8a, 0x8e, 0x4e, 0x88, 0x7b, 0x17, 0x1e, 0xe8, 0x9a, 0x2e, 0x5c, 0x4a, +0x34, 0xa2, 0x54, 0x81, 0xed, 0x90, 0x9c, 0xc2, 0x7a, 0xa7, 0xf7, 0x23, 0x73, 0xef, 0x85, 0x64, +0x80, 0x67, 0xe8, 0xa3, 0xbd, 0x54, 0xa6, 0x7e, 0x96, 0x4e, 0x84, 0x2e, 0xb6, 0xdb, 0x0b, 0xa9, +0x8b, 0x40, 0xc5, 0x48, 0x0a, 0x71, 0x2b, 0x7b, 0x08, 0xe4, 0x65, 0x2e, 0x62, 0x5d, 0x17, 0xed, +0x3e, 0x85, 0x43, 0x6d, 0xfc, 0x1a, 0x4e, 0xc5, 0xa3, 0x6a, 0x47, 0xbc, 0xf9, 0x37, 0x09, 0x13, +0x7b, 0xb3, 0xeb, 0x8e, 0xe0, 0x5d, 0xbd, 0x01, 0x42, 0xbe, 0x9b, 0xc6, 0x5c, 0xce, 0xed, 0xf0, +0x3e, 0x78, 0xf0, 0x2c, 0x2a, 0x18, 0xea, 0xe8, 0x70, 0x54, 0xad, 0xcd, 0x2e, 0x16, 0x43, 0x5d, +0x57, 0x47, 0x77, 0xbd, 0x18, 0xc7, 0xe9, 0xef, 0x98, 0x14, 0xa1, 0x6f, 0x78, 0x04, 0x84, 0x62, +0x86, 0x7f, 0x68, 0x5e, 0x92, 0x2b, 0x75, 0x26, 0x5e, 0xd4, 0x00, 0x1a, 0x65, 0x6d, 0x76, 0x2e, +0x88, 0x14, 0x66, 0x08, 0x6f, 0xee, 0x7d, 0x15, 0x1c, 0xaf, 0x95, 0xb9, 0x3b, 0x8e, 0x94, 0x9b, +0xa3, 0xa2, 0x8f, 0xf7, 0x6d, 0x5b, 0x06, 0x9f, 0xc2, 0x87, 0x5b, 0x57, 0x44, 0x6d, 0xae, 0xe6, +0x00, 0x22, 0x05, 0x0b, 0xe1, 0xa9, 0xd0, 0x17, 0xe0, 0xff, 0xbb, 0x26, 0xc9, 0x55, 0xa5, 0x13, +0x87, 0xb7, 0x7f, 0x6b, 0xfb, 0x81, 0x4d, 0x7c, 0x0c, 0x15, 0x53, 0x56, 0xa9, 0x81, 0xea, 0x5f, +0xa3, 0xea, 0x43, 0x93, 0xcc, 0x7f, 0x5c, 0x90, 0xad, 0x22, 0xac, 0x1f, 0xf0, 0x7d, 0xbd, 0xe7, +0xe1, 0xde, 0x28, 0x29, 0x4a, 0xa4, 0x5e, 0x8c, 0xa9, 0x3f, 0xe2, 0x0f, 0x2b, 0x29, 0x61, 0x6d, +0x8f, 0x8b, 0x53, 0xe1, 0xef, 0x15, 0xe7, 0xa8, 0xea, 0x4d, 0xf3, 0xfa, 0xfc, 0xf1, 0xeb, 0x54, +0x73, 0xb2, 0x17, 0x04, 0x5b, 0xa4, 0xd2, 0x33, 0x64, 0xee, 0xfd, 0x3b, 0x14, 0x81, 0xb6, 0x2a, +0xf9, 0x74, 0xaf, 0xe5, 0x12, 0x6d, 0x2c, 0x87, 0x0e, 0x4d, 0x2d, 0x4d, 0x00, 0x2b, 0x55, 0x6f, +0xed, 0x73, 0x60, 0x78, 0x8c, 0xfb, 0x3e, 0x1c, 0xbe, 0xd1, 0x54, 0xcb, 0x24, 0xed, 0xba, 0x3a, +0xeb, 0x91, 0x78, 0xec, 0x65, 0x07, 0x22, 0xdd, 0x9b, 0x2d, 0x9a, 0x88, 0x84, 0xf1, 0x40, 0xb2, +0x03, 0x61, 0xab, 0x52, 0x30, 0x20, 0x0f, 0x15, 0x42, 0x1e, 0x22, 0x1a, 0x55, 0x48, 0x95, 0x38, +0x56, 0x10, 0x57, 0x72, 0x49, 0xd2, 0x06, 0x76, 0xab, 0x64, 0xdb, 0xe8, 0x97, 0xc3, 0x11, 0x6b, +0x0f, 0x9a, 0x75, 0xa7, 0xa0, 0xe4, 0xea, 0x00, 0x8e, 0xa4, 0xb0, 0x3b, 0xcb, 0x63, 0xd4, 0xc1, +0x6f, 0xb7, 0x54, 0xcd, 0x67, 0x4f, 0x60, 0x6d, 0x99, 0xc5, 0x73, 0xd3, 0x68, 0xd6, 0xb2, 0xa5, +0x7e, 0xa2, 0x1d, 0x38, 0x11, 0x52, 0x0d, 0xb3, 0xac, 0xb6, 0xa5, 0xe4, 0x34, 0x3c, 0xd1, 0xe8, +0x17, 0x41, 0xe1, 0x6e, 0xff, 0xfa, 0xa8, 0xe3, 0xe6, 0xa1, 0xd9, 0xdd, 0xf3, 0x28, 0xfb, 0xde, +0xad, 0x63, 0x81, 0x9c, 0xf2, 0x2c, 0x9f, 0x00, 0xe8, 0x13, 0x14, 0xf9, 0xad, 0x79, 0x5d, 0x79, +0xd1, 0xab, 0xaa, 0x04, 0x6f, 0x78, 0x9b, 0xfd, 0xec, 0x77, 0xf4, 0xf6, 0xaa, 0xaa, 0xb7, 0x60, +0x39, 0x5b, 0xfb, 0x48, 0x24, 0x2a, 0xe8, 0xbb, 0x0c, 0x8d, 0xc0, 0xdf, 0xb4, 0xc0, 0x73, 0x2e, +0x84, 0xdf, 0x6e, 0x88, 0x31, 0x9e, 0x94, 0xd6, 0xa8, 0x23, 0x54, 0xe2, 0x7a, 0x5b, 0x63, 0xbd, +0x45, 0xc1, 0x96, 0x5c, 0x3b, 0x3a, 0x4c, 0x87, 0x60, 0xcb, 0x12, 0x4b, 0x9e, 0xe1, 0xb2, 0xbe, +0x29, 0x23, 0xe3, 0xa4, 0xee, 0x9c, 0x33, 0xfe, 0x11, 0xf3, 0x7f, 0xc9, 0x17, 0x38, 0x46, 0x44, +0x3e, 0x76, 0xce, 0x17, 0xea, 0xe0, 0xf7, 0x65, 0x77, 0x08, 0xa0, 0x54, 0xd7, 0x09, 0x41, 0x2d, +0xff, 0xf2, 0x5d, 0xa7, 0xb9, 0x47, 0x67, 0xcf, 0x77, 0x9a, 0x69, 0x9c, 0x70, 0x85, 0x99, 0x89, +0x1d, 0xe7, 0xfc, 0xd3, 0x84, 0xd7, 0xc5, 0x08, 0x09, 0x03, 0xe4, 0xff, 0xb0, 0x80, 0x75, 0x07, +0x4b, 0x86, 0x60, 0xf8, 0xdf, 0x39, 0x67, 0x18, 0x8d, 0x7e, 0x43, 0xd0, 0xba, 0x0f, 0x01, 0xef, +0x33, 0xd5, 0xd4, 0xc3, 0xc8, 0xef, 0x1d, 0x1e, 0x4b, 0x2d, 0xd4, 0x6c, 0xdc, 0x99, 0x43, 0x6f, +0x20, 0xa6, 0x06, 0x47, 0x11, 0x8e, 0xbf, 0x08, 0x99, 0xf4, 0x30, 0x7a, 0x7a, 0x1c, 0x14, 0xd8, +0x54, 0x63, 0x13, 0x27, 0xcc, 0x35, 0xa6, 0x1d, 0x61, 0xef, 0x13, 0x7e, 0x73, 0x3c, 0xf5, 0xcd, +0xe3, 0xeb, 0x57, 0xe0, 0x54, 0xd7, 0x28, 0xa3, 0x0c, 0x41, 0x82, 0xf8, 0xc9, 0xbb, 0xf5, 0x02, +0xa1, 0x3e, 0x7b, 0xa5, 0x17, 0x0a, 0x1c, 0xe2, 0xc8, 0x5f, 0x4a, 0x2c, 0xf7, 0x27, 0xff, 0xea, +0x70, 0xcf, 0x39, 0x7a, 0x58, 0xd3, 0x4c, 0xe0, 0xd5, 0xd5, 0x97, 0xc3, 0xf8, 0x98, 0xd2, 0xd3, +0xa2, 0x22, 0x26, 0x22, 0x21, 0x22, 0x97, 0x5f, 0xd3, 0x82, 0x83, 0x70, 0x3c, 0x64, 0x1c, 0x64, +0xd2, 0x77, 0x7b, 0xba, 0x58, 0x5d, 0x3a, 0xeb, 0x8c, 0x92, 0x2f, 0x99, 0x90, 0x7c, 0x1e, 0xb2, +0xf9, 0x06, 0xb4, 0x76, 0x72, 0xbc, 0xb5, 0x8b, 0x3b, 0xdc, 0x32, 0xe7, 0x2d, 0x06, 0x56, 0x10, +0x8c, 0x8b, 0xf4, 0xee, 0x3c, 0x46, 0x39, 0xa5, 0x2f, 0xd1, 0x43, 0x92, 0x58, 0x93, 0xf7, 0xe6, +0xc4, 0xa1, 0x5f, 0x06, 0xc3, 0xeb, 0xfb, 0x59, 0x7b, 0x04, 0x96, 0x9a, 0x64, 0x17, 0x89, 0x4a, +0x3b, 0x72, 0xb5, 0x18, 0x12, 0x76, 0x97, 0xbc, 0x5b, 0x25, 0x38, 0x55, 0xd2, 0xcd, 0x27, 0xe1, +0xc3, 0x14, 0x3d, 0xf5, 0x13, 0x87, 0x96, 0xe5, 0x87, 0x5a, 0xcd, 0xe6, 0x0e, 0x2f, 0xd1, 0xa4, +0x3c, 0x53, 0xa7, 0x5a, 0x9b, 0x28, 0x6e, 0xd9, 0xc1, 0x3b, 0x69, 0x7b, 0xd0, 0x66, 0x7a, 0x19, +0x18, 0xdb, 0x69, 0xd7, 0xdd, 0x14, 0x65, 0x0b, 0xdc, 0xfb, 0x23, 0x92, 0x69, 0x62, 0xec, 0xd6, +0x4d, 0x5a, 0x3e, 0x01, 0x4b, 0x70, 0xeb, 0xd0, 0xea, 0xa5, 0x90, 0xb9, 0x62, 0xd9, 0xe7, 0x19, +0xde, 0x08, 0x16, 0x21, 0x32, 0x4a, 0x65, 0xe0, 0xbc, 0xe5, 0xc4, 0xe0, 0xa9, 0x7c, 0x63, 0x1a, +0x6e, 0x4a, 0xdc, 0xff, 0xc1, 0xcf, 0xe7, 0x21, 0xbf, 0x5c, 0xa9, 0x18, 0xbd, 0x12, 0xac, 0x56, +0x9d, 0x88, 0xef, 0x3e, 0x71, 0x53, 0xbd, 0xee, 0x34, 0x09, 0x01, 0xb5, 0xb0, 0xa8, 0xeb, 0xe7, +0x1f, 0xf1, 0x40, 0x0c, 0x7a, 0x1f, 0x5a, 0xd3, 0x31, 0xee, 0x1a, 0x7d, 0xb9, 0x8e, 0x77, 0x81, +0x33, 0xd8, 0x03, 0x0b, 0x54, 0xfa, 0xa6, 0x10, 0xfc, 0xae, 0xfd, 0x3c, 0xe7, 0x1d, 0xf3, 0xd7, +0x09, 0x13, 0xf9, 0x5c, 0x05, 0xf1, 0x37, 0x63, 0x78, 0x41, 0xaf, 0xf1, 0x59, 0x37, 0xd6, 0xe7, +0x67, 0xc6, 0x3c, 0x17, 0xf7, 0xa5, 0x9e, 0x8e, 0x1f, 0x10, 0x55, 0xc9, 0x93, 0xcf, 0xfc, 0x56, +0x18, 0x8b, 0xef, 0xcf, 0x3a, 0x19, 0xcc, 0xe5, 0x7e, 0x31, 0xcf, 0x02, 0xf7, 0xf3, 0x88, 0x4b, +0x14, 0xb7, 0x93, 0x01, 0xd8, 0x77, 0x23, 0x67, 0xc9, 0x63, 0x1d, 0x5d, 0x18, 0x70, 0x1d, 0x47, +0x6b, 0x44, 0xeb, 0xe7, 0x1b, 0x0b, 0x9d, 0x9e, 0xbf, 0x56, 0xb0, 0x06, 0xa8, 0x47, 0x8b, 0xa1, +0xbe, 0x7f, 0xb5, 0xeb, 0xd3, 0xe1, 0xae, 0x2d, 0xaf, 0xf2, 0x72, 0x9e, 0xac, 0x60, 0xac, 0x11, +0x8d, 0x24, 0xe4, 0xcb, 0x2b, 0x4a, 0xdd, 0xf5, 0x9c, 0xb0, 0x8e, 0x8e, 0x0f, 0x6f, 0xfe, 0x6e, +0x85, 0xc4, 0x3e, 0x2d, 0xb2, 0xd4, 0x55, 0x33, 0xb5, 0x1c, 0xfb, 0x1c, 0xb1, 0xe1, 0xfb, 0x2c, +0xa7, 0x11, 0x34, 0x81, 0x05, 0xcf, 0xf5, 0xd5, 0xee, 0xcb, 0x27, 0x73, 0xbd, 0xdc, 0xd8, 0x16, +0x0c, 0x0b, 0x2f, 0x74, 0xa4, 0xf9, 0x49, 0x9f, 0xb4, 0xf3, 0xdc, 0x6b, 0x4a, 0x46, 0xb2, 0x33, +0x9a, 0x49, 0x7f, 0x9a, 0x17, 0x58, 0x4e, 0x72, 0xe3, 0x8d, 0xae, 0xe4, 0xac, 0xad, 0xef, 0x3c, +0x3a, 0x35, 0x6f, 0x1b, 0xca, 0x1a, 0x74, 0xfa, 0xb6, 0xe9, 0xd3, 0xb3, 0xe2, 0x8c, 0xba, 0x47, +0x6f, 0x7a, 0xda, 0x95, 0x1c, 0x22, 0xdb, 0xf8, 0xd2, 0x97, 0xed, 0xad, 0xa7, 0xaf, 0x90, 0x30, +0xe2, 0x95, 0x9a, 0xad, 0x63, 0x1e, 0xb7, 0xa9, 0xad, 0x44, 0x46, 0x39, 0x35, 0x75, 0x5d, 0x81, +0x8d, 0xe3, 0xad, 0x20, 0x7c, 0xa3, 0xaa, 0x03, 0x2a, 0x8d, 0x04, 0x9f, 0x84, 0x4c, 0x0f, 0x95, +0x15, 0x01, 0x49, 0xd6, 0x4d, 0xa8, 0x2f, 0x86, 0x23, 0x36, 0xf8, 0x8e, 0xf2, 0xe9, 0x91, 0xaa, +0x96, 0xdc, 0x34, 0x02, 0x93, 0x1d, 0xc0, 0x49, 0xed, 0x8d, 0x72, 0xd7, 0x6c, 0xe0, 0x26, 0xd1, +0x09, 0x8b, 0x33, 0xf5, 0xd5, 0x44, 0x40, 0xb8, 0x60, 0xb8, 0x95, 0x18, 0xe2, 0xb7, 0x8a, 0x95, +0x6f, 0x43, 0x07, 0x65, 0xcd, 0xdf, 0x4e, 0xb6, 0xee, 0xe5, 0xe8, 0x1d, 0x28, 0x76, 0x82, 0x49, +0xd7, 0x2d, 0xd4, 0x0e, 0xf0, 0x91, 0xc0, 0xad, 0xc1, 0x51, 0x02, 0xeb, 0x03, 0x98, 0x62, 0xda, +0x45, 0x30, 0x26, 0x80, 0xfa, 0x10, 0x86, 0x40, 0x79, 0x97, 0xbc, 0xf9, 0x30, 0x4e, 0x08, 0x50, +0xe5, 0x9a, 0x2d, 0xc2, 0xf6, 0x70, 0x48, 0x49, 0x7a, 0xf7, 0x67, 0x69, 0xa3, 0xd7, 0x65, 0x51, +0xff, 0xb7, 0x2c, 0xd8, 0x7d, 0x06, 0xac, 0x2b, 0x95, 0x0f, 0x74, 0x94, 0x85, 0x35, 0x69, 0x3b, +0xd9, 0x4f, 0x4a, 0x2d, 0xc5, 0x38, 0xc7, 0xbf, 0x20, 0x3b, 0x9d, 0xc2, 0x50, 0x88, 0x9e, 0x5a, +0x2f, 0x57, 0x89, 0x69, 0x65, 0xfc, 0xe6, 0xe4, 0xbb, 0xb9, 0x43, 0xec, 0x61, 0x19, 0x4b, 0xd4, +0x77, 0xae, 0x8c, 0xb5, 0x8e, 0xe1, 0x0a, 0xba, 0x73, 0xe3, 0xb7, 0x0a, 0xad, 0xc9, 0xe8, 0x1b, +0xd0, 0x1f, 0xe2, 0xdf, 0x55, 0xe5, 0x3b, 0x70, 0xd0, 0x95, 0xe0, 0x29, 0x61, 0xf4, 0x1b, 0x43, +0x5d, 0xa9, 0x23, 0xba, 0x18, 0x63, 0x12, 0xed, 0x44, 0x36, 0xf7, 0x84, 0x4b, 0x00, 0xba, 0x43, +0xdf, 0x08, 0xb0, 0x47, 0x95, 0xae, 0x13, 0x14, 0x02, 0xf5, 0x97, 0x62, 0x03, 0x2b, 0xfc, 0x7d, +0xe0, 0xf6, 0xae, 0xff, 0x41, 0x66, 0x1d, 0x12, 0x89, 0x01, 0x33, 0x7e, 0xdf, 0xc9, 0x9d, 0x1c, +0x6e, 0xd0, 0xca, 0x7d, 0xae, 0x80, 0xd1, 0x16, 0xaa, 0xa2, 0x7a, 0xb3, 0xef, 0x3c, 0x9d, 0x3f, +0xfc, 0xbc, 0x71, 0x20, 0x74, 0x2d, 0xc5, 0x14, 0xc9, 0x14, 0x8b, 0x4b, 0xe1, 0x7b, 0x62, 0xd2, +0xf2, 0x40, 0x83, 0x15, 0xab, 0x3d, 0x52, 0xff, 0xb1, 0x9d, 0xf3, 0xde, 0x7f, 0x27, 0xa3, 0x9e, +0xce, 0x51, 0x1a, 0x57, 0x82, 0x12, 0xc4, 0x71, 0xf1, 0x50, 0x4c, 0xcb, 0x71, 0x61, 0x09, 0xe7, +0x96, 0x0a, 0x5b, 0x23, 0xff, 0x9f, 0xbc, 0x5e, 0x95, 0x96, 0x51, 0x0d, 0xca, 0x4c, 0x25, 0x37, +0x79, 0x6e, 0xce, 0x01, 0x94, 0x3d, 0xab, 0xd3, 0xcb, 0xf1, 0x68, 0xad, 0xd2, 0xcc, 0x9d, 0x65, +0x4c, 0x2a, 0xcf, 0x1c, 0xd9, 0x9e, 0x8e, 0x01, 0x18, 0x34, 0xe6, 0xa2, 0x67, 0xeb, 0x4a, 0xa6, +0x6f, 0x14, 0x42, 0x75, 0x04, 0xa0, 0x2a, 0x91, 0x3c, 0x95, 0x74, 0x2a, 0xea, 0x26, 0x5c, 0xd0, +0xab, 0xa8, 0x57, 0xd3, 0x52, 0xcc, 0x8c, 0x36, 0x0b, 0x35, 0x5d, 0x1d, 0x35, 0x34, 0x25, 0xe9, +0x04, 0xdd, 0x97, 0xb0, 0xf5, 0x61, 0x8f, 0xf1, 0xea, 0xc5, 0xd9, 0xe7, 0x47, 0x0e, 0xd0, 0x77, +0x8f, 0xeb, 0xeb, 0x15, 0x74, 0x15, 0x46, 0xf5, 0x9c, 0x50, 0xe7, 0x5d, 0x9d, 0xa8, 0x32, 0xf3, +0xb8, 0xe7, 0xbc, 0x6c, 0xbe, 0x13, 0xd1, 0x0a, 0xa5, 0x6d, 0x5d, 0xe1, 0x99, 0xe6, 0xeb, 0x42, +0xdb, 0x98, 0x62, 0x3a, 0x1d, 0x4f, 0xce, 0x88, 0xef, 0xd4, 0x08, 0x54, 0x63, 0xd0, 0x95, 0xbd, +0x31, 0x26, 0xcf, 0x69, 0x52, 0x89, 0xba, 0xc7, 0xe6, 0xf4, 0xd6, 0x09, 0x9f, 0x5d, 0xd9, 0x4e, +0xd9, 0x2b, 0x4b, 0x77, 0x94, 0x40, 0x75, 0xf7, 0xe8, 0x26, 0x20, 0x57, 0xe4, 0xd3, 0xb1, 0xbd, +0xe5, 0xfb, 0xd5, 0xe8, 0xb8, 0x81, 0x5a, 0x46, 0xef, 0xfe, 0x00, 0x91, 0x1a, 0x9e, 0x37, 0x01, +0x5b, 0x00, 0x03, 0x37, 0x59, 0x98, 0x74, 0xb0, 0x36, 0x01, 0x63, 0x0b, 0x31, 0x78, 0x07, 0xc5, +0x3a, 0x00, 0x63, 0x84, 0x6b, 0xde, 0xa8, 0xf7, 0x71, 0x7a, 0x44, 0x5c, 0xb5, 0x43, 0x51, 0x0b, +0x38, 0xc4, 0x1b, 0x39, 0x93, 0x56, 0x6a, 0xca, 0x96, 0x71, 0xe4, 0x1e, 0xbe, 0x22, 0xce, 0x25, +0xe2, 0xd3, 0xd5, 0x40, 0xd7, 0x3c, 0x3b, 0x21, 0x06, 0x86, 0x10, 0x2d, 0x82, 0xaf, 0x1e, 0xcf, +0x19, 0x60, 0x53, 0x48, 0xf5, 0x5f, 0x29, 0xbc, 0xc8, 0x67, 0xbe, 0x55, 0xde, 0xe0, 0x89, 0x80, +0xc6, 0xfa, 0xb5, 0x32, 0x82, 0x81, 0xe5, 0x2d, 0x80, 0xe1, 0x53, 0x62, 0x3e, 0xb8, 0x32, 0x40, +0x90, 0x35, 0x41, 0xe9, 0x21, 0x5e, 0x3b, 0x33, 0x1f, 0xb8, 0x76, 0x3f, 0xa9, 0xb2, 0xd3, 0xce, +0xb8, 0x1f, 0x8e, 0x18, 0xb0, 0x58, 0x75, 0xf6, 0xba, 0x4b, 0xf1, 0xdb, 0x9e, 0xae, 0x22, 0x06, +0x38, 0x95, 0x14, 0x8d, 0x92, 0xcf, 0x73, 0xea, 0x48, 0x3a, 0xd0, 0x82, 0x10, 0x8e, 0x2a, 0x93, +0xc6, 0x53, 0x3d, 0x45, 0x0b, 0x56, 0x61, 0xaa, 0x47, 0xce, 0x92, 0xd5, 0x09, 0x70, 0x97, 0xa9, +0x68, 0x8b, 0xfc, 0xae, 0x63, 0x3a, 0xe1, 0xdd, 0x9c, 0x75, 0xf6, 0xb7, 0x75, 0x50, 0xae, 0x53, +0xbb, 0xbd, 0x65, 0xb5, 0x09, 0xc3, 0xbb, 0xd7, 0x13, 0x7f, 0xfe, 0xcb, 0xd0, 0xe7, 0xa7, 0x93, +0x9c, 0x19, 0xcd, 0xde, 0x0b, 0xae, 0x89, 0x5c, 0x48, 0x87, 0x43, 0x50, 0xd4, 0xae, 0x40, 0x0d, +0xae, 0x55, 0xde, 0xb0, 0xa4, 0x32, 0xe2, 0x72, 0xc8, 0xb9, 0x0f, 0x8c, 0x34, 0xb2, 0x7d, 0x72, +0x73, 0x95, 0xba, 0x48, 0x56, 0x49, 0x47, 0xd2, 0x15, 0xe3, 0x0a, 0x7c, 0x20, 0xcd, 0x01, 0x47, +0x4b, 0x4c, 0xac, 0x4d, 0x0b, 0x18, 0x1b, 0x8d, 0x92, 0xba, 0xae, 0xf4, 0x44, 0x3f, 0x9f, 0x7b, +0x53, 0x8e, 0x96, 0x45, 0x96, 0x5d, 0x02, 0xde, 0xd1, 0xba, 0xc2, 0x84, 0x55, 0xb1, 0xab, 0x4f, +0x05, 0x40, 0x3c, 0xee, 0xa8, 0x4d, 0x34, 0xfe, 0x6c, 0x3e, 0xae, 0x58, 0x74, 0xb8, 0xb6, 0xbd, +0x0a, 0x99, 0x51, 0x0e, 0xea, 0x9a, 0x38, 0xdb, 0x73, 0xdc, 0x0b, 0x3d, 0x0a, 0x6b, 0x9f, 0x52, +0x78, 0xeb, 0x3e, 0x8d, 0x41, 0xed, 0x50, 0x3d, 0xe9, 0x0d, 0xf2, 0xcc, 0xa2, 0x1c, 0x23, 0x3a, +0x45, 0xb5, 0xf7, 0xe5, 0x6a, 0x83, 0x6e, 0x1c, 0x41, 0xfa, 0x1b, 0x4d, 0x0d, 0xa9, 0xcc, 0x52, +0x2a, 0x2c, 0xe9, 0xe7, 0x79, 0x7a, 0xb6, 0x0f, 0xfb, 0xc9, 0xac, 0x74, 0x91, 0x7c, 0x5a, 0x2b, +0x7a, 0x09, 0xab, 0x25, 0xa0, 0x6e, 0x3d, 0x14, 0x8a, 0xc9, 0x02, 0x32, 0x5b, 0xbf, 0x7b, 0x7f, +0x7a, 0x52, 0xe5, 0xb4, 0xdd, 0x55, 0x60, 0x08, 0x93, 0xc8, 0x4c, 0x3a, 0xc0, 0x26, 0x67, 0xde, +0x37, 0xaf, 0x8d, 0x66, 0xff, 0x72, 0x7b, 0x13, 0x2b, 0x2e, 0x61, 0x8a, 0xd5, 0xfd, 0xc2, 0xae, +0xcf, 0xe1, 0xd4, 0x1e, 0x0f, 0x06, 0x0c, 0x7c, 0x8f, 0xca, 0x1e, 0x30, 0xa6, 0x28, 0x94, 0xff, +0x9f, 0x20, 0xfb, 0x3e, 0xa5, 0x37, 0x5f, 0xfe, 0xef, 0xc2, 0x83, 0x96, 0xf0, 0xcf, 0x11, 0x5a, +0x94, 0xbe, 0xfd, 0x9a, 0x33, 0x7e, 0x26, 0x93, 0x66, 0xed, 0x09, 0x08, 0x0c, 0xa6, 0x11, 0xfd, +0xf8, 0x3b, 0x46, 0x69, 0x8a, 0x52, 0x77, 0x73, 0x7c, 0x12, 0xd1, 0xf3, 0xfe, 0x0e, 0xb9, 0x7b, +0x5c, 0x8a, 0xb5, 0x56, 0xa2, 0xf4, 0x9d, 0x2b, 0x70, 0xb8, 0x62, 0x30, 0xe7, 0x84, 0x23, 0xfb, +0xdd, 0x45, 0xf3, 0xf7, 0x59, 0xff, 0x36, 0x72, 0x62, 0x90, 0x53, 0xa3, 0x8c, 0xf2, 0xf0, 0x39, +0xeb, 0x97, 0xf8, 0xcb, 0xcd, 0x48, 0xa1, 0xd3, 0x64, 0x6a, 0xbb, 0x5f, 0xa7, 0x4d, 0x43, 0x27, +0xd0, 0x36, 0x21, 0x74, 0x44, 0x32, 0x62, 0x91, 0x7d, 0xc7, 0x30, 0xed, 0xb9, 0x17, 0xe5, 0x71, +0x93, 0x3e, 0x47, 0xeb, 0x72, 0x03, 0xbb, 0xf8, 0x74, 0x43, 0xdf, 0x6a, 0x7c, 0xa9, 0x77, 0xbb, +0x61, 0x89, 0xa9, 0xfe, 0x27, 0x82, 0xba, 0x57, 0xde, 0x95, 0xe4, 0x68, 0x0b, 0x44, 0x46, 0x73, +0xd1, 0xf7, 0x8e, 0xe7, 0xef, 0x9d, 0xed, 0x98, 0x68, 0xd6, 0xd7, 0xb0, 0xbe, 0x19, 0x49, 0x37, +0xd8, 0xab, 0x09, 0x9a, 0x02, 0x96, 0xdc, 0xac, 0xc7, 0x52, 0x98, 0x81, 0x8b, 0x57, 0x18, 0x29, +0x46, 0x30, 0xed, 0x47, 0xe2, 0x47, 0xc2, 0x3d, 0x29, 0xcb, 0xa4, 0x3a, 0xb4, 0xb4, 0x57, 0x15, +0x4e, 0x20, 0xfc, 0x05, 0x4f, 0x08, 0x1d, 0xbf, 0x06, 0xc7, 0x84, 0x03, 0xca, 0x46, 0x4a, 0x03, +0xbf, 0x17, 0x80, 0x90, 0x5f, 0x7d, 0x93, 0x45, 0x87, 0x5b, 0xc5, 0xb0, 0x5a, 0xa6, 0x61, 0x03, +0xca, 0x5d, 0xb2, 0x40, 0x1d, 0xd3, 0x37, 0x83, 0x43, 0x64, 0x7b, 0x25, 0xac, 0xfa, 0x2d, 0xfa, +0xbf, 0x0d, 0x4f, 0x83, 0xd5, 0x0a, 0x00, 0x09, 0x85, 0x6b, 0xdb, 0xe5, 0x88, 0xe9, 0xf7, 0xbd, +0x1a, 0x66, 0xe7, 0x2c, 0xfd, 0xf1, 0x4b, 0x87, 0xa0, 0x0d, 0x83, 0x38, 0x74, 0x3a, 0x0e, 0x8b, +0x2c, 0x51, 0xf2, 0x3b, 0x93, 0x06, 0xcf, 0xf5, 0xc0, 0xb7, 0x1a, 0x44, 0xbd, 0x19, 0x12, 0x6d, +0xed, 0x0f, 0x67, 0x67, 0x0c, 0x2f, 0xa5, 0xa0, 0x50, 0xf0, 0x91, 0xb4, 0xe1, 0xb5, 0x4b, 0x7b, +0xe9, 0xd5, 0xa1, 0x25, 0x3a, 0xbd, 0x41, 0xd0, 0x59, 0xfd, 0x14, 0x7e, 0x09, 0x37, 0x76, 0x47, +0xb0, 0xaf, 0x80, 0x7f, 0x43, 0xa3, 0x1c, 0xf4, 0xc5, 0x13, 0xe9, 0x09, 0x13, 0x15, 0xfa, 0xd1, +0x15, 0xd1, 0x9b, 0x3b, 0xc9, 0xd7, 0xf3, 0xad, 0x35, 0x8f, 0xec, 0xa8, 0x13, 0x79, 0x0c, 0x97, +0x4a, 0xc8, 0x2e, 0x7b, 0x10, 0x03, 0xc6, 0x6f, 0x73, 0x4c, 0xac, 0xbd, 0x55, 0x5b, 0x23, 0x38, +0x0b, 0xb8, 0xfb, 0x2d, 0xaa, 0x21, 0xfb, 0x75, 0xa2, 0xdb, 0x59, 0xed, 0xe5, 0xbb, 0x5d, 0x15, +0x3c, 0x4f, 0x4e, 0x58, 0x3f, 0x4e, 0xea, 0xc2, 0x18, 0x8f, 0x8e, 0x9d, 0x93, 0xde, 0xe7, 0x57, +0xb9, 0x74, 0x78, 0xe8, 0xe3, 0xf5, 0xfa, 0xf8, 0xfa, 0x5c, 0x6b, 0xc7, 0x3f, 0x4b, 0xc1, 0x7f, +0x27, 0xf3, 0x59, 0xe6, 0xa4, 0x8b, 0x01, 0x28, 0x76, 0xbb, 0x3d, 0xc8, 0x92, 0x08, 0x68, 0x76, +0xd2, 0xfa, 0x9c, 0xe5, 0x44, 0xed, 0xcb, 0xb5, 0x3d, 0x7d, 0x38, 0xdd, 0x2a, 0x8a, 0x9b, 0x1e, +0x18, 0xfc, 0x20, 0x9e, 0xc6, 0x61, 0xe6, 0x57, 0x2c, 0x02, 0xd9, 0xbd, 0x7f, 0x81, 0x51, 0x48, +0x8d, 0xff, 0xd8, 0x69, 0x37, 0xaa, 0x45, 0x7e, 0x43, 0x8f, 0x98, 0x74, 0x20, 0x1d, 0x45, 0x2f, +0x9b, 0x7f, 0xa9, 0xba, 0x8c, 0xd8, 0x4a, 0x63, 0xfa, 0x55, 0xfd, 0x81, 0xe8, 0xd5, 0x6e, 0xc1, +0x64, 0x52, 0x60, 0x47, 0x15, 0x16, 0x38, 0x27, 0xf8, 0x55, 0x3e, 0xcf, 0xac, 0xe6, 0x13, 0x86, +0x8c, 0x17, 0x22, 0xc9, 0xbe, 0xcf, 0x44, 0x6a, 0xe2, 0x5a, 0x97, 0x9b, 0x40, 0xf1, 0xdb, 0x26, +0x90, 0xf0, 0xfa, 0x9b, 0x05, 0x11, 0xe5, 0xa4, 0xab, 0x96, 0x77, 0x70, 0xba, 0xa6, 0x08, 0x55, +0x09, 0x78, 0x55, 0xe4, 0x4e, 0x86, 0xd5, 0x5a, 0x3e, 0x9d, 0xee, 0xd1, 0xbe, 0x3c, 0x40, 0x97, +0x9e, 0xed, 0xb0, 0xe6, 0x47, 0xc4, 0x08, 0xf0, 0xa9, 0xfe, 0x3d, 0x78, 0xa3, 0x75, 0x2e, 0x2d, +0xb3, 0x13, 0x0a, 0x9a, 0x8a, 0xa6, 0xc5, 0x56, 0x3c, 0x9b, 0x44, 0xef, 0x2b, 0x84, 0x61, 0x4a, +0x9f, 0x19, 0x75, 0xd4, 0xeb, 0x1a, 0x6a, 0xe8, 0xe2, 0x3b, 0x4c, 0x3f, 0x5e, 0xe4, 0x1a, 0xfb, +0x50, 0xd4, 0xb8, 0x4d, 0xd5, 0x68, 0x4b, 0xd0, 0x89, 0x1b, 0x58, 0x71, 0xd0, 0x44, 0xa6, 0x4c, +0xe8, 0xd6, 0xa7, 0xae, 0xdf, 0xa8, 0x58, 0x74, 0xe8, 0x59, 0x6e, 0xd7, 0x74, 0x80, 0x5c, 0x12, +0xcc, 0x51, 0x87, 0xab, 0x8b, 0x8c, 0x72, 0x16, 0xe9, 0xb0, 0xb3, 0x29, 0x32, 0x3c, 0x18, 0x52, +0xb6, 0x6a, 0xef, 0x64, 0x3b, 0xa6, 0xf6, 0xef, 0x0a, 0x32, 0xc1, 0x41, 0x7c, 0xb0, 0x93, 0xc3, +0x0e, 0x18, 0x15, 0x06, 0xbf, 0x0e, 0x10, 0xe9, 0xff, 0xc5, 0x3b, 0x8a, 0xad, 0x15, 0xc6, 0x32, +0xc3, 0x04, 0xb8, 0x44, 0x98, 0xf9, 0x9c, 0x1e, 0x09, 0x1f, 0x52, 0x7d, 0xa0, 0xa8, 0x8c, 0x78, +0x2c, 0x52, 0x1f, 0xa6, 0xa3, 0x67, 0xea, 0x20, 0xe6, 0x68, 0xb5, 0x66, 0xe9, 0xe5, 0x71, 0x3c, +0x44, 0x52, 0xf1, 0x59, 0xf3, 0xcf, 0x3c, 0x4b, 0x06, 0xd2, 0xb5, 0x98, 0xe8, 0xd4, 0xfe, 0xe5, +0xa7, 0x70, 0x4e, 0x90, 0xef, 0x3e, 0xbf, 0x2f, 0xda, 0xee, 0x52, 0x77, 0x50, 0x9a, 0x9e, 0x66, +0x74, 0x32, 0x75, 0xb5, 0x8e, 0xe3, 0x0f, 0xea, 0xa8, 0x7c, 0xee, 0xae, 0x08, 0x97, 0xa6, 0x27, +0x5c, 0x4e, 0x79, 0xbc, 0x8a, 0x8f, 0x23, 0xfa, 0xd3, 0x1a, 0xc0, 0x5d, 0xfd, 0x9d, 0xa6, 0x76, +0x09, 0xad, 0x0a, 0x62, 0xcd, 0x02, 0x25, 0x56, 0xb4, 0x46, 0xae, 0xa3, 0x1d, 0xbd, 0xa2, 0x47, +0xc2, 0xf5, 0xa3, 0x2d, 0x70, 0x31, 0x65, 0xe9, 0x9d, 0xb6, 0x96, 0x93, 0x75, 0xd0, 0x13, 0x27, +0x86, 0xbe, 0x35, 0x6a, 0x2c, 0xde, 0x68, 0xe5, 0xf4, 0xb7, 0x4b, 0x1c, 0x56, 0xb7, 0x33, 0x31, +0xa8, 0xb2, 0xf8, 0x2f, 0x53, 0x2e, 0x83, 0x73, 0xf8, 0x47, 0x8e, 0x6b, 0x20, 0xbc, 0xae, 0xc3, +0xe9, 0xd0, 0x52, 0x16, 0x4c, 0x9b, 0x9c, 0xb7, 0x6a, 0xf7, 0x95, 0x42, 0xf1, 0x01, 0xed, 0x1b, +0xee, 0x7e, 0xa0, 0xe6, 0xe7, 0x20, 0x98, 0xdf, 0x6a, 0xbb, 0xd4, 0x23, 0xa2, 0x6a, 0x63, 0x65, +0x34, 0x59, 0xa8, 0x96, 0xaf, 0xcd, 0x4e, 0x0f, 0xd5, 0x4f, 0x0c, 0x52, 0x67, 0x8b, 0x76, 0xd5, +0xf5, 0xfc, 0x49, 0x8c, 0xbe, 0xae, 0xd5, 0xfd, 0x8c, 0x7f, 0xf0, 0xa3, 0x7a, 0x9c, 0x58, 0x35, +0x40, 0xfb, 0x8f, 0x6a, 0xd4, 0x1b, 0x6c, 0x3b, 0xad, 0xcf, 0xc3, 0x2f, 0xe1, 0x3e, 0xec, 0x88, +0x8f, 0xbf, 0x93, 0xb4, 0x1d, 0x82, 0xdb, 0x29, 0x1d, 0xd2, 0xc6, 0x1c, 0x25, 0xe1, 0xcc, 0x1b, +0x87, 0x4c, 0x06, 0xfe, 0x8b, 0x58, 0x40, 0x0d, 0xad, 0xab, 0xb4, 0xeb, 0x09, 0xb3, 0xff, 0xc1, +0x00, 0x4e, 0xc8, 0xa3, 0xaa, 0x8e, 0x43, 0xb1, 0xb9, 0x3a, 0x11, 0x74, 0x94, 0xfa, 0xd5, 0x1d, +0x1b, 0x37, 0xb2, 0x84, 0x40, 0x53, 0x65, 0x77, 0x21, 0xf7, 0x51, 0xd8, 0x4b, 0x01, 0x2d, 0x8f, +0xc6, 0x4f, 0x8e, 0xa5, 0x9a, 0xbe, 0x2c, 0x5e, 0xae, 0x8c, 0xf2, 0x94, 0xab, 0x2d, 0xb7, 0xb8, +0x57, 0x56, 0x32, 0x07, 0x43, 0x09, 0xe3, 0xe1, 0x86, 0x5c, 0xbd, 0xf5, 0x21, 0x80, 0xdd, 0x6e, +0x1f, 0x25, 0x40, 0x59, 0xa4, 0xc9, 0xc2, 0x08, 0xd8, 0xb5, 0x01, 0x31, 0x79, 0x61, 0x34, 0xa6, +0x8b, 0x14, 0x5f, 0x22, 0x15, 0xee, 0xa6, 0x5b, 0x49, 0x89, 0x97, 0xbf, 0x74, 0xe9, 0xe4, 0xa2, +0x6f, 0x77, 0x36, 0xe1, 0xfd, 0xf5, 0x60, 0x24, 0xc1, 0x2f, 0x19, 0x8f, 0x2e, 0x52, 0x0a, 0x11, +0x5f, 0xad, 0x0e, 0x6f, 0xb9, 0xf4, 0xa9, 0x07, 0xc1, 0x7c, 0xc9, 0xb4, 0x6c, 0xff, 0x5a, 0xf4, +0x5f, 0x79, 0x71, 0x68, 0x1e, 0x96, 0xad, 0x09, 0x0b, 0x02, 0x3c, 0xe5, 0x0f, 0x8d, 0xe1, 0x5a, +0xba, 0xb7, 0x7c, 0x00, 0xf2, 0x59, 0xd9, 0xb5, 0x7e, 0x98, 0x31, 0x26, 0x88, 0xec, 0x48, 0x60, +0xdb, 0xd5, 0xbf, 0xdc, 0xca, 0xc4, 0x1f, 0x26, 0xba, 0x77, 0xd9, 0x7b, 0xba, 0x76, 0xdc, 0x44, +0x01, 0xce, 0x32, 0xb1, 0x3e, 0x61, 0xef, 0xd5, 0xbc, 0x96, 0x22, 0x6a, 0x1c, 0xdb, 0xcc, 0xc5, +0x05, 0x2d, 0x7b, 0x6f, 0x03, 0xcc, 0x0c, 0xbe, 0xb7, 0x62, 0xf5, 0x73, 0x88, 0xbb, 0xa9, 0x22, +0x6c, 0x7b, 0xb2, 0xa6, 0xef, 0x58, 0x33, 0x09, 0x21, 0x3d, 0x42, 0x79, 0xed, 0x4f, 0xb9, 0x7b, +0xff, 0x00, 0x93, 0xb3, 0xcb, 0xb1, 0x99, 0x2e, 0x37, 0x29, 0x6e, 0xc7, 0x79, 0x5f, 0x6d, 0x4d, +0x79, 0x24, 0xa9, 0x22, 0xad, 0xb1, 0xd6, 0x5b, 0xb5, 0x37, 0x03, 0x40, 0xad, 0xc2, 0x38, 0x05, +0x0b, 0xae, 0xa4, 0x7a, 0xdf, 0xf5, 0x78, 0xaf, 0x59, 0xe2, 0x2e, 0x2a, 0xc8, 0xa2, 0x3c, 0x4d, +0x43, 0xee, 0x43, 0xff, 0x8e, 0xf6, 0x72, 0xa8, 0x3a, 0x20, 0x94, 0xb7, 0xa0, 0x57, 0xb6, 0x49, +0xff, 0xf1, 0x92, 0xf7, 0x3d, 0x93, 0xf2, 0x5c, 0x60, 0x57, 0x8a, 0x02, 0x7c, 0x37, 0x70, 0x81, +0x73, 0x1e, 0xb1, 0x19, 0x4c, 0x4c, 0xb5, 0x8b, 0xff, 0xce, 0xc1, 0x22, 0x0e, 0xb2, 0x4b, 0xa0, +0x49, 0x63, 0x9e, 0x98, 0xbd, 0xc1, 0x0f, 0xa4, 0xeb, 0xb8, 0xb0, 0x1d, 0xc1, 0x2d, 0xd7, 0xbc, +0x88, 0xd0, 0xba, 0x50, 0x0b, 0xdc, 0xa2, 0xcb, 0x71, 0xa8, 0x8d, 0xde, 0x0b, 0xf3, 0x09, 0xaa, +0x3d, 0xde, 0x46, 0x8e, 0xaf, 0xdf, 0x48, 0x31, 0xe4, 0x4c, 0x01, 0x92, 0x8e, 0x57, 0x35, 0xb6, +0x7c, 0x25, 0xf5, 0xdf, 0x94, 0xae, 0x19, 0x9f, 0x2e, 0x1c, 0x19, 0xbf, 0x5d, 0x5b, 0x62, 0x3a, +0xc8, 0x5d, 0x23, 0x8b, 0x0a, 0x7c, 0x7e, 0xdc, 0x41, 0xd9, 0x00, 0xb4, 0x8e, 0xa8, 0xe9, 0xc7, +0x06, 0xfc, 0x28, 0x82, 0x0c, 0xcd, 0x7d, 0x3a, 0x5a, 0x3b, 0x57, 0x9a, 0x49, 0x2e, 0xb1, 0xf9, +0xba, 0x98, 0xa7, 0x14, 0x4a, 0x40, 0x26, 0xd7, 0x2c, 0xd0, 0xbd, 0xf3, 0xb2, 0x59, 0x69, 0xe8, +0x5f, 0x81, 0x01, 0x7b, 0xe3, 0x66, 0x11, 0xc2, 0x13, 0x22, 0x71, 0xfa, 0xc4, 0x27, 0x77, 0x35, +0x61, 0xd0, 0xff, 0x7b, 0xf6, 0x76, 0xa6, 0x39, 0xad, 0x21, 0x59, 0xab, 0x21, 0x80, 0x40, 0xaa, +0xc6, 0xe3, 0x60, 0xa3, 0x7f, 0xcc, 0xe4, 0x4b, 0x58, 0x96, 0xe9, 0x31, 0x32, 0xa9, 0xcf, 0xdf, +0xbf, 0x5a, 0x60, 0xfe, 0xd8, 0x6e, 0xbf, 0xa3, 0x20, 0xe6, 0x31, 0xc2, 0x66, 0xd5, 0xab, 0xab, +0x03, 0x50, 0x58, 0x02, 0x59, 0x16, 0x72, 0x1f, 0x32, 0x6a, 0x5f, 0xc2, 0x02, 0xe0, 0x61, 0x6a, +0xe2, 0x7a, 0xec, 0x8d, 0x80, 0xde, 0x13, 0xcf, 0x2f, 0x43, 0x94, 0x76, 0xcc, 0x72, 0x72, 0x77, +0xd0, 0x90, 0x0a, 0xbf, 0xa3, 0x5b, 0x27, 0xb9, 0x06, 0xe7, 0xfd, 0x13, 0xba, 0x70, 0x8c, 0x1d, +0xb2, 0xcd, 0x2e, 0x80, 0x34, 0x48, 0x87, 0x43, 0x3c, 0x57, 0x3e, 0xf2, 0x73, 0xb4, 0xe7, 0x14, +0xb2, 0xe0, 0x8f, 0xac, 0xd7, 0x52, 0x83, 0x5b, 0x67, 0x93, 0xf9, 0x58, 0x82, 0x5b, 0xad, 0xce, +0xaf, 0x9d, 0x2a, 0xeb, 0x50, 0xb7, 0xf8, 0xa6, 0x15, 0xa4, 0xbd, 0x19, 0xd8, 0x48, 0x97, 0x0d, +0x86, 0xe2, 0xc4, 0xb8, 0xd5, 0xf6, 0xab, 0x52, 0x72, 0x49, 0xda, 0xaf, 0x70, 0x2f, 0x98, 0xf5, +0x3c, 0x67, 0x18, 0x2a, 0xa2, 0x7f, 0xa5, 0x8a, 0x20, 0xe6, 0xe4, 0xa3, 0x15, 0x7d, 0xca, 0x3f, +0xdb, 0xe2, 0xb8, 0xcf, 0xa8, 0xf8, 0x47, 0xa6, 0xcc, 0x0e, 0xd0, 0xce, 0x90, 0xff, 0xc6, 0x58, +0x2b, 0x37, 0x8a, 0xe2, 0xb8, 0xe7, 0x9e, 0x6d, 0xdd, 0xca, 0xa8, 0x76, 0x6b, 0x3d, 0x0e, 0x8a, +0x67, 0xe9, 0x56, 0x9b, 0xcf, 0x1c, 0x53, 0xee, 0x6d, 0x4a, 0x83, 0xa1, 0x9f, 0x02, 0x4d, 0x3f, +0x6b, 0x5b, 0x54, 0xd0, 0xaa, 0x5a, 0xf8, 0x01, 0x9a, 0xd6, 0x22, 0x5e, 0xda, 0xb6, 0x01, 0x92, +0xf6, 0x67, 0xe2, 0xe1, 0xf6, 0x9f, 0xbf, 0x43, 0x3d, 0x46, 0x69, 0x89, 0xf9, 0xe4, 0xac, 0xb6, +0xfe, 0x7a, 0xff, 0x65, 0x28, 0xf5, 0x99, 0xec, 0xe8, 0xa8, 0xe6, 0x92, 0x1e, 0x97, 0x28, 0x89, +0xbc, 0xa3, 0x21, 0xa9, 0x66, 0x1e, 0x77, 0x02, 0x20, 0x6d, 0xe0, 0x1a, 0xec, 0x41, 0x5b, 0x14, +0x4b, 0x23, 0x5f, 0xd5, 0xe3, 0x4f, 0xd6, 0xbb, 0x1f, 0x9b, 0x3b, 0x49, 0xe7, 0xbd, 0x70, 0x7b, +0x16, 0xb6, 0xa7, 0xbd, 0xf1, 0x83, 0xdd, 0x25, 0x7c, 0xe6, 0x9e, 0x8e, 0xb6, 0xe2, 0xbe, 0xe4, +0xa7, 0xc5, 0x9f, 0xef, 0xef, 0xd6, 0xe0, 0xfc, 0x48, 0x4d, 0x59, 0x94, 0xa4, 0x17, 0xe7, 0xb2, +0xd7, 0x47, 0x1a, 0x21, 0x0c, 0x36, 0x18, 0xf9, 0xc5, 0x5e, 0xf8, 0xa5, 0xb2, 0x35, 0x75, 0xfe, +0xf8, 0xe6, 0x77, 0x9e, 0xe8, 0x2c, 0x8e, 0x26, 0x77, 0xd0, 0xd4, 0x76, 0x0d, 0x43, 0x7e, 0xbf, +0xc8, 0xf4, 0x58, 0xac, 0x69, 0x52, 0x2d, 0xef, 0xbe, 0x22, 0xfd, 0xdf, 0x72, 0xb5, 0x90, 0x07, +0x1c, 0xf1, 0x80, 0x61, 0x7b, 0x58, 0x05, 0x38, 0xdc, 0xa4, 0xc4, 0x84, 0x3e, 0xfb, 0x5c, 0xa9, +0xd9, 0x8a, 0xc1, 0xae, 0x29, 0x68, 0x43, 0x21, 0x83, 0xdb, 0x9d, 0xdd, 0xa9, 0x46, 0xe1, 0xaa, +0xf3, 0x8c, 0xd6, 0x04, 0xb1, 0x3c, 0x9e, 0x4d, 0xb1, 0xa4, 0x32, 0x77, 0x64, 0x52, 0x0a, 0x3a, +0xb7, 0x33, 0xb2, 0x74, 0x0c, 0x1a, 0x10, 0x37, 0x82, 0xd1, 0x4b, 0xd7, 0x8d, 0x7e, 0xbc, 0xca, +0x18, 0xce, 0xf4, 0xcb, 0xa6, 0xed, 0x04, 0x3e, 0x09, 0x91, 0x19, 0xe0, 0x7c, 0x4f, 0xbf, 0x5c, +0x50, 0x3e, 0x98, 0xd0, 0xb2, 0x02, 0x7f, 0x54, 0xa4, 0xea, 0x37, 0x4e, 0x90, 0x5e, 0xd9, 0xe8, +0xd8, 0x0f, 0xaa, 0x7c, 0xe6, 0x30, 0x70, 0x05, 0x82, 0x57, 0x36, 0x2e, 0x15, 0x9c, 0x30, 0xd2, +0x4a, 0x22, 0xa2, 0x70, 0xf9, 0xd2, 0x1b, 0x7f, 0x59, 0x12, 0xe2, 0xdd, 0x3f, 0x74, 0xa9, 0xd9, +0xca, 0x0b, 0xda, 0x78, 0xc8, 0x9b, 0x0e, 0x3d, 0x30, 0x34, 0xef, 0xe5, 0xe4, 0xc3, 0xb3, 0xba, +0xda, 0x46, 0x1e, 0xb6, 0x20, 0xec, 0x7a, 0x7a, 0x6f, 0x2c, 0xb7, 0x9e, 0xbe, 0x83, 0xfc, 0x5c, +0xd3, 0xd2, 0x7f, 0x55, 0x36, 0x6c, 0xb7, 0xb0, 0x28, 0xe9, 0xe0, 0x67, 0x2e, 0x70, 0xd2, 0xdc, +0x3b, 0x93, 0xce, 0x4b, 0x8d, 0x0d, 0xfe, 0x3e, 0x09, 0xfd, 0x86, 0xfb, 0xdd, 0xec, 0xd5, 0xfe, +0xc1, 0xeb, 0xa8, 0xa6, 0x56, 0x7c, 0x7d, 0x50, 0x2d, 0x80, 0x83, 0x63, 0x60, 0x93, 0x88, 0xc2, +0x14, 0x9d, 0x75, 0x6f, 0xee, 0xf7, 0x41, 0x68, 0x87, 0x51, 0x35, 0x72, 0xe6, 0xd8, 0x03, 0x8c, +0x9e, 0xd8, 0xd0, 0xe3, 0xea, 0xaf, 0x8d, 0xbf, 0x4b, 0xa6, 0x40, 0x4b, 0x4f, 0xa9, 0xaf, 0x9f, +0xb9, 0x4f, 0x0a, 0xf7, 0xc7, 0xfa, 0x46, 0x6b, 0x2a, 0xf0, 0x6a, 0xf6, 0xd5, 0x03, 0xc4, 0x83, +0x60, 0x29, 0xbc, 0x56, 0xe5, 0xbe, 0x04, 0x61, 0xd8, 0x65, 0x63, 0xe1, 0x02, 0x29, 0x46, 0x73, +0x50, 0x7b, 0x62, 0x52, 0x60, 0x51, 0xd3, 0x69, 0x18, 0xf0, 0x3e, 0x4b, 0x79, 0x56, 0xc2, 0xc9, +0xfe, 0xb7, 0x78, 0xcd, 0x1e, 0xd1, 0xa6, 0x57, 0x7e, 0x88, 0xe5, 0x31, 0xac, 0xc9, 0x96, 0xab, +0x8a, 0xf8, 0x09, 0x31, 0x91, 0x26, 0x5b, 0x12, 0xee, 0xb3, 0xbd, 0xb8, 0x4b, 0x5b, 0x1a, 0xcf, +0x0d, 0xe6, 0xde, 0x4d, 0x0f, 0x58, 0x6a, 0x68, 0x9b, 0x85, 0xe9, 0x40, 0x0e, 0x65, 0x3b, 0x67, +0x38, 0xa4, 0x9a, 0xe4, 0xde, 0x0e, 0xb9, 0xa0, 0xcd, 0xd0, 0x60, 0x77, 0xc8, 0x0c, 0x7a, 0xe5, +0x50, 0x0c, 0xe2, 0x3f, 0x94, 0x40, 0xea, 0xd0, 0x53, 0xf9, 0x0b, 0x5e, 0xf4, 0x17, 0xe0, 0xc8, +0xc1, 0x45, 0x2d, 0xa1, 0x86, 0x6a, 0x36, 0xa4, 0xaa, 0xdc, 0x21, 0xb2, 0x93, 0x2e, 0x80, 0x0b, +0xa1, 0xa2, 0x2c, 0xf6, 0x2b, 0xcc, 0xfc, 0x50, 0xc3, 0x7f, 0x1f, 0x74, 0x03, 0x68, 0x14, 0xf1, +0xd3, 0x9a, 0x1a, 0xe7, 0x55, 0xe4, 0x2b, 0xc3, 0xc1, 0x78, 0xed, 0xe6, 0xf0, 0x13, 0x1f, 0x51, +0x6a, 0x8f, 0xf1, 0x9d, 0xbb, 0xcd, 0xd0, 0x0a, 0xe2, 0x8e, 0x0e, 0x95, 0xe0, 0x86, 0x10, 0xa8, +0xf2, 0xc0, 0xc6, 0x83, 0x5a, 0x67, 0x81, 0x26, 0xdd, 0x05, 0xe5, 0xda, 0x1b, 0xd0, 0x22, 0x26, +0xd6, 0xb2, 0x24, 0x0a, 0xec, 0x20, 0xbe, 0x1e, 0x80, 0xa3, 0x1b, 0x73, 0x7d, 0x65, 0x49, 0x0a, +0x42, 0x45, 0x1f, 0x1c, 0xa6, 0x56, 0x9b, 0x58, 0xc0, 0x22, 0xef, 0x29, 0x7c, 0x49, 0x96, 0xec, +0x8e, 0x9e, 0x9e, 0x10, 0x0c, 0x09, 0x3c, 0x23, 0x56, 0xcd, 0x3d, 0xfe, 0xa9, 0x3e, 0x1e, 0xf0, +0x95, 0x18, 0x2b, 0xea, 0x91, 0x6c, 0xf9, 0x2e, 0x15, 0xae, 0x82, 0x26, 0x27, 0xcd, 0x92, 0xb6, +0x66, 0x64, 0x51, 0x97, 0x69, 0xc0, 0xfb, 0x26, 0xb9, 0x3e, 0xeb, 0xe2, 0x3b, 0xf1, 0xc2, 0x01, +0x5b, 0x78, 0x1d, 0xdb, 0xba, 0x1f, 0x6b, 0xd6, 0x0e, 0x3d, 0x3a, 0x41, 0xe0, 0x35, 0x1a, 0x56, +0x9c, 0xdf, 0x5f, 0x8a, 0xac, 0x04, 0x33, 0x77, 0x6b, 0x39, 0x02, 0x3a, 0x0a, 0x07, 0xc8, 0xa5, +0x9e, 0x61, 0x15, 0xe2, 0x17, 0x0e, 0xa4, 0xc5, 0x78, 0x5c, 0x99, 0xd0, 0xa0, 0xe0, 0xdf, 0x90, +0x6f, 0xfe, 0x55, 0xee, 0xc3, 0xfa, 0xfb, 0xa6, 0xee, 0x6b, 0x4f, 0x7a, 0xa6, 0xbd, 0xd6, 0xf0, +0x01, 0x64, 0xcb, 0x4e, 0xc5, 0x44, 0x46, 0x60, 0x79, 0xae, 0xca, 0x56, 0xb0, 0x72, 0x95, 0x86, +0x21, 0xb3, 0x75, 0x1f, 0xd1, 0xfe, 0x92, 0x20, 0x8d, 0x0f, 0xd0, 0xb1, 0xd0, 0x55, 0x88, 0xbd, +0xb4, 0x85, 0xf0, 0x71, 0x46, 0x75, 0x27, 0x34, 0x29, 0x88, 0x0c, 0xbe, 0xf0, 0x49, 0xe8, 0x32, +0x94, 0xbf, 0xb9, 0x00, 0x52, 0x50, 0xb7, 0xf9, 0x60, 0x51, 0xe8, 0x4c, 0x11, 0x8f, 0x54, 0xbd, +0x35, 0xb7, 0xe9, 0xcb, 0x27, 0x7c, 0x47, 0xff, 0x63, 0x92, 0xa4, 0xe6, 0x26, 0xab, 0x84, 0x7c, +0x11, 0x5b, 0x10, 0x8f, 0x66, 0x29, 0xd6, 0x1e, 0xb8, 0x84, 0x43, 0x7e, 0x1e, 0xbc, 0x4c, 0xb1, +0x08, 0xaa, 0x47, 0x31, 0x99, 0x6b, 0x6c, 0x18, 0x85, 0x29, 0x89, 0x55, 0x54, 0x2f, 0x6b, 0xb4, +0xcb, 0x40, 0x9d, 0x46, 0x08, 0xb2, 0x9d, 0x6c, 0xb9, 0x75, 0xc5, 0x77, 0x5d, 0xda, 0x97, 0xb6, +0xe5, 0x3a, 0xc9, 0x53, 0xab, 0xca, 0xcd, 0x00, 0xf0, 0xe0, 0xe8, 0xda, 0x68, 0x7d, 0xbe, 0x6a, +0x48, 0xd0, 0x4a, 0x18, 0x35, 0xf4, 0x0e, 0x6a, 0xc8, 0x18, 0x72, 0xee, 0x2a, 0xb6, 0x2c, 0xee, +0x70, 0x38, 0x22, 0x5f, 0x80, 0x51, 0xff, 0xe7, 0xfd, 0x15, 0x5a, 0x6a, 0x4a, 0xb3, 0xf7, 0x5d, +0x63, 0xeb, 0x1d, 0x2a, 0xd9, 0x91, 0x1b, 0x2f, 0xbd, 0xed, 0x4c, 0x61, 0xf6, 0x1a, 0x6f, 0x1b, +0x82, 0xb4, 0x43, 0xe1, 0x3a, 0xc9, 0x38, 0x81, 0x7a, 0xbe, 0x29, 0x6b, 0x9b, 0x97, 0x2a, 0x59, +0x9d, 0x20, 0x86, 0x52, 0x2d, 0x70, 0x65, 0x6a, 0xc9, 0x3e, 0x80, 0xf6, 0xad, 0x46, 0xfb, 0x59, +0xf3, 0xc7, 0x62, 0xd8, 0xa1, 0x22, 0xc4, 0xa5, 0xe8, 0x90, 0x71, 0xe7, 0xb3, 0xc6, 0x91, 0xe6, +0xce, 0x32, 0xcf, 0x1a, 0x01, 0xc7, 0x24, 0xa9, 0x04, 0xb2, 0x06, 0xa7, 0x66, 0xe5, 0x14, 0xeb, +0xeb, 0x5e, 0x6d, 0xd5, 0xca, 0xc3, 0x7c, 0x8b, 0x04, 0x70, 0xc1, 0x2e, 0x66, 0xad, 0x2e, 0xea, +0xd9, 0xe8, 0x40, 0x99, 0x37, 0xbd, 0x6b, 0x0c, 0xa8, 0x4f, 0xc8, 0x7b, 0x3f, 0x1f, 0xb2, 0xb1, +0x11, 0x8a, 0xfa, 0x6f, 0x84, 0x41, 0x3b, 0x5e, 0x3d, 0x1d, 0xc9, 0x40, 0x52, 0x0d, 0x83, 0x79, +0xa7, 0xec, 0x12, 0x56, 0xd6, 0x6e, 0xbb, 0x7d, 0x7f, 0x23, 0xeb, 0x24, 0x73, 0x9e, 0xab, 0xf3, +0xa5, 0x09, 0x19, 0xa6, 0x13, 0xf9, 0x4e, 0xbc, 0xdd, 0x69, 0xd5, 0x74, 0x00, 0x5b, 0x73, 0xb7, +0xcd, 0x03, 0x47, 0x98, 0x91, 0xe4, 0x7f, 0x64, 0x6d, 0x00, 0x98, 0xac, 0x32, 0x9f, 0xc6, 0x29, +0xc2, 0xe4, 0x7e, 0x64, 0xa7, 0xb7, 0x63, 0xbf, 0x3d, 0xbd, 0x06, 0xdb, 0xb2, 0xf5, 0x88, 0x7f, +0x17, 0x29, 0x24, 0x00, 0x9a, 0x17, 0xe3, 0x27, 0x77, 0x33, 0xd8, 0xbd, 0x2e, 0x06, 0x89, 0xa8, +0x78, 0x92, 0x84, 0xe4, 0x4a, 0x29, 0xe5, 0x42, 0x4b, 0xc4, 0x98, 0x66, 0x07, 0xd0, 0x88, 0xf6, +0xa4, 0xe5, 0xa3, 0x6f, 0x5a, 0xc6, 0x0e, 0xa7, 0x25, 0x9a, 0x42, 0x2c, 0x2e, 0x12, 0xf2, 0xe4, +0xe8, 0x38, 0x07, 0x6c, 0x60, 0x8a, 0x45, 0x88, 0x2c, 0xbe, 0x7c, 0x8b, 0xa9, 0x13, 0x56, 0x31, +0x40, 0x86, 0xc0, 0x94, 0xac, 0x49, 0x27, 0x3b, 0x90, 0x84, 0x3e, 0x14, 0x2c, 0xc3, 0x21, 0x77, +0x32, 0x3d, 0xe0, 0xc4, 0x6b, 0x3f, 0x87, 0x3c, 0x0c, 0x15, 0xcb, 0x11, 0x8e, 0x73, 0xc3, 0x18, +0xe5, 0xeb, 0xef, 0xba, 0x9c, 0x22, 0x67, 0x9f, 0x83, 0xbb, 0xb2, 0x72, 0xc1, 0x67, 0x47, 0x31, +0x20, 0x6a, 0xc8, 0x3f, 0xa0, 0xab, 0x15, 0xa8, 0x9f, 0xc5, 0x5a, 0x7f, 0x17, 0xd9, 0xbf, 0xd3, +0xdb, 0x14, 0x8e, 0x5d, 0x7c, 0x23, 0xe6, 0x18, 0xae, 0x84, 0xa3, 0x86, 0xf8, 0xc8, 0x98, 0x1d, +0x7a, 0x96, 0x1b, 0x02, 0x29, 0x06, 0xc0, 0x64, 0xda, 0xa6, 0x46, 0x52, 0x74, 0x2c, 0x4f, 0x79, +0x3f, 0xed, 0x59, 0x77, 0x6d, 0x7a, 0xee, 0x7d, 0xb0, 0xa6, 0xdf, 0x5c, 0xa5, 0xc4, 0x63, 0xda, +0x03, 0x2e, 0x7e, 0x45, 0x29, 0x7c, 0xe3, 0x13, 0xff, 0xdf, 0xde, 0x39, 0xc0, 0x1f, 0x76, 0x71, +0xc5, 0x69, 0xde, 0x6d, 0x0b, 0xa3, 0x3b, 0xe8, 0x3f, 0x45, 0x86, 0x76, 0xe6, 0x26, 0x0e, 0xb7, +0xd7, 0x02, 0x4c, 0x6e, 0x49, 0x14, 0x59, 0x7c, 0xd2, 0x7d, 0xa5, 0xc1, 0x69, 0x02, 0xd3, 0x0f, +0x0a, 0x27, 0xe3, 0x35, 0xd9, 0x7d, 0x88, 0xbb, 0xf4, 0xd3, 0x00, 0x8c, 0x68, 0xf8, 0xae, 0x77, +0x3e, 0xcf, 0x0e, 0xd4, 0xfa, 0xfc, 0x8d, 0xbd, 0x5e, 0xd1, 0xb4, 0x93, 0xe9, 0xd8, 0x66, 0x3d, +0xc8, 0x0c, 0x31, 0x60, 0x5e, 0x4a, 0xad, 0x51, 0x63, 0x43, 0x42, 0xf6, 0xbe, 0x6d, 0x56, 0x84, +0x53, 0xda, 0xfd, 0xcc, 0x68, 0x48, 0x88, 0xcf, 0x74, 0xf3, 0x75, 0x5f, 0xa7, 0x8c, 0x0b, 0x12, +0xb5, 0x61, 0x48, 0x7e, 0xda, 0x9c, 0xba, 0xa5, 0xee, 0xb2, 0x6f, 0x5a, 0xab, 0x35, 0x22, 0xdc, +0x7d, 0x1f, 0x7c, 0x1b, 0x38, 0x24, 0xd8, 0x43, 0xe8, 0x56, 0xdd, 0x72, 0x12, 0x60, 0x66, 0x3d, +0xe1, 0x83, 0xe4, 0xce, 0x75, 0x81, 0x40, 0x2d, 0x84, 0x59, 0x28, 0xf7, 0x85, 0x4d, 0x03, 0x72, +0xeb, 0x54, 0x08, 0xbe, 0x49, 0x1a, 0x9d, 0xf2, 0xfd, 0x19, 0x02, 0x73, 0x6a, 0x7d, 0x47, 0xa2, +0x91, 0x19, 0x7f, 0xe8, 0xb4, 0x3b, 0x32, 0xd8, 0x7e, 0x3b, 0x70, 0x7a, 0x08, 0x0f, 0x25, 0x7e, +0x41, 0x49, 0xbc, 0x76, 0x52, 0x78, 0x55, 0xe3, 0x4c, 0xb2, 0xde, 0x43, 0x67, 0xa7, 0x6a, 0xcc, +0x28, 0x64, 0xf3, 0x6a, 0xa0, 0x16, 0x16, 0x28, 0xd5, 0xac, 0x95, 0xee, 0x99, 0x8f, 0x51, 0x2c, +0x2d, 0x69, 0x38, 0x92, 0x89, 0xaa, 0x2c, 0x4e, 0xd4, 0x1f, 0x40, 0xd3, 0x7d, 0x10, 0x8f, 0x6a, +0x35, 0xbd, 0x26, 0x30, 0x31, 0xb5, 0xf5, 0xa4, 0x64, 0x65, 0xed, 0x9b, 0xda, 0x40, 0x05, 0xe2, +0x37, 0xd7, 0x47, 0x5c, 0x5d, 0x61, 0xe5, 0x9c, 0x7e, 0x38, 0x19, 0x9b, 0xc8, 0x7e, 0x45, 0x5a, +0x8b, 0xe3, 0x76, 0xbf, 0x9a, 0xbf, 0xd5, 0xf1, 0xdb, 0xcd, 0xa2, 0x15, 0x11, 0x50, 0x9a, 0x70, +0xff, 0x60, 0xf2, 0x21, 0x05, 0x2f, 0x8d, 0x05, 0xc1, 0x63, 0xfe, 0x17, 0x96, 0xaf, 0x4c, 0x21, +0x95, 0x9c, 0xc4, 0x14, 0x03, 0x4f, 0x51, 0x17, 0xb6, 0x08, 0xc1, 0x77, 0x2b, 0xfb, 0xb6, 0x1d, +0x6a, 0xce, 0xf6, 0xd7, 0xfe, 0x10, 0x78, 0x56, 0xb0, 0xd2, 0xda, 0x71, 0xf1, 0xb1, 0xb6, 0xf1, +0x96, 0x94, 0x6a, 0xf8, 0x3d, 0x07, 0x20, 0x40, 0x8b, 0x67, 0xca, 0x2d, 0x31, 0x93, 0x38, 0xd1, +0xc3, 0xcf, 0xa4, 0x64, 0x91, 0x59, 0x17, 0xaa, 0x12, 0xf7, 0xba, 0x5f, 0x72, 0x3d, 0xe1, 0xff, +0xef, 0x79, 0x0f, 0x9f, 0x7d, 0x71, 0x80, 0x36, 0x8d, 0xf3, 0x5e, 0x9c, 0x8f, 0xc2, 0x5e, 0x31, +0x29, 0xe5, 0x57, 0x6e, 0x2f, 0x28, 0xc6, 0xfd, 0x85, 0xcf, 0x9f, 0x69, 0xb8, 0xb4, 0x51, 0x0b, +0xed, 0xa4, 0xcc, 0x5d, 0x13, 0xf1, 0x70, 0xf3, 0x81, 0x42, 0xd2, 0x68, 0xd6, 0xe8, 0x9b, 0x8b, +0x29, 0x49, 0x7b, 0xd7, 0x6d, 0xd5, 0xbe, 0x68, 0xea, 0x66, 0x66, 0x40, 0x86, 0x3a, 0x89, 0xdc, +0xac, 0xbe, 0x31, 0x8b, 0x65, 0xfd, 0xa0, 0x1c, 0xbb, 0x58, 0x8a, 0xc3, 0x53, 0xe5, 0xd5, 0x17, +0x45, 0x2f, 0x13, 0xb5, 0x0c, 0x92, 0xb7, 0xe7, 0x92, 0xae, 0x60, 0x0f, 0x4b, 0xba, 0xcd, 0x69, +0xfc, 0xfa, 0x75, 0xea, 0xb6, 0x88, 0x7a, 0x03, 0xf1, 0xa6, 0x96, 0x82, 0xab, 0x1d, 0x97, 0x27, +0xf9, 0xf5, 0x46, 0xfa, 0x41, 0x4e, 0x6c, 0xa8, 0xad, 0x19, 0x61, 0x19, 0xc7, 0xac, 0x64, 0xa4, +0x62, 0x56, 0x34, 0x07, 0x42, 0x81, 0x12, 0x67, 0xcf, 0x50, 0x90, 0xd4, 0xfb, 0xcf, 0x75, 0x20, +0xa6, 0x3f, 0x89, 0x7c, 0xf1, 0x7c, 0xd9, 0x4f, 0x5b, 0x99, 0x42, 0x38, 0x56, 0x44, 0xc9, 0x5b, +0xf5, 0x2c, 0xd4, 0xc6, 0x7b, 0x9e, 0x94, 0x5d, 0xc4, 0x44, 0x5a, 0x37, 0x7c, 0xe5, 0x41, 0xf5, +0x84, 0xb6, 0x55, 0x7f, 0x81, 0x7d, 0x97, 0x92, 0x4b, 0xcf, 0x15, 0x38, 0x66, 0x61, 0x9a, 0x24, +0xd6, 0x9a, 0x58, 0xe4, 0xcf, 0x7e, 0x9d, 0x9c, 0x86, 0x45, 0xdd, 0x54, 0xe9, 0xd1, 0xc1, 0xcc, +0x69, 0xc4, 0xfd, 0x9d, 0xb4, 0xfb, 0x1f, 0xe1, 0x74, 0x8d, 0x14, 0x98, 0xd3, 0x73, 0xaf, 0x63, +0x46, 0xcc, 0x2c, 0x98, 0xab, 0x64, 0x57, 0x84, 0x69, 0x3e, 0xab, 0x79, 0x6a, 0xe8, 0x95, 0x38, +0x90, 0x01, 0x05, 0xc7, 0xaf, 0x5d, 0x07, 0x80, 0xe7, 0xbb, 0xd0, 0x87, 0x96, 0x90, 0x35, 0x9b, +0xaa, 0x96, 0xb7, 0x02, 0x9e, 0x5a, 0xb8, 0xb3, 0x09, 0x9a, 0x2e, 0xed, 0x38, 0xab, 0x46, 0xbc, +0x10, 0x57, 0x1e, 0xe8, 0xe0, 0x0b, 0xcb, 0x0e, 0x87, 0xff, 0xa2, 0xfc, 0xe1, 0x72, 0x1c, 0x01, +0x2b, 0x6a, 0x97, 0xd9, 0x94, 0xd1, 0x8f, 0xf4, 0xd8, 0x1e, 0xbf, 0xe7, 0xc9, 0xe9, 0x17, 0xc1, +0x61, 0x72, 0x58, 0xe5, 0x14, 0xa1, 0xc9, 0x3e, 0xc1, 0xc3, 0x96, 0x13, 0x9e, 0xae, 0x0e, 0xf0, +0xca, 0xc4, 0xa4, 0x65, 0x5a, 0xae, 0x58, 0x8b, 0x5c, 0xa2, 0x77, 0xe0, 0x8f, 0x8c, 0x24, 0xdd, +0xc3, 0xd8, 0x94, 0xe1, 0x5d, 0x79, 0xf5, 0xfd, 0xa1, 0x77, 0xb5, 0xc4, 0xc8, 0x29, 0xf0, 0xdf, +0x5e, 0xd4, 0x27, 0x54, 0x33, 0xb4, 0x2e, 0xa3, 0x0f, 0xae, 0x80, 0x37, 0x65, 0x50, 0x04, 0xcd, +0x62, 0xc3, 0x67, 0x06, 0x27, 0x69, 0x80, 0xad, 0x99, 0xc7, 0x81, 0x69, 0xc3, 0x24, 0x21, 0x72, +0x6c, 0xa2, 0x61, 0x7f, 0x44, 0x85, 0x5a, 0xfb, 0x32, 0x11, 0xc3, 0xa8, 0x52, 0x73, 0x1d, 0x8d, +0x13, 0xfc, 0x6d, 0x0b, 0xf5, 0x7f, 0x6d, 0x52, 0x19, 0x28, 0x13, 0x2e, 0xbd, 0x19, 0x37, 0x62, +0x91, 0x7e, 0x39, 0x9a, 0x1d, 0xe8, 0x80, 0xf8, 0xbd, 0xd2, 0xc9, 0xa1, 0xf8, 0x04, 0xdc, 0x5d, +0x24, 0x01, 0x50, 0xc8, 0xbe, 0xf3, 0xe8, 0x3a, 0x2b, 0xcb, 0xdb, 0xcc, 0x1b, 0x28, 0xec, 0xdb, +0x42, 0x72, 0x9a, 0x69, 0x0a, 0x84, 0x59, 0x71, 0xfe, 0xc4, 0x91, 0xf8, 0x6a, 0xac, 0xde, 0x06, +0x98, 0x71, 0x7f, 0xd8, 0x06, 0x6f, 0x39, 0x8e, 0x03, 0x39, 0x92, 0x85, 0xdb, 0xfc, 0x70, 0xb8, +0xd2, 0xf3, 0x38, 0xf3, 0xc5, 0x5d, 0x15, 0x9c, 0x75, 0x7d, 0x6c, 0x1d, 0x24, 0xa0, 0x9d, 0x94, +0xae, 0x60, 0x18, 0x4d, 0xb6, 0x7c, 0xe2, 0x07, 0x78, 0x78, 0x0a, 0xf7, 0xa1, 0xc4, 0x5e, 0xe4, +0xaf, 0x5c, 0xda, 0xfe, 0x14, 0xc8, 0x17, 0x7b, 0x61, 0xf3, 0xdc, 0xf7, 0x05, 0xee, 0x6a, 0xb3, +0xe6, 0x99, 0x16, 0x27, 0xdf, 0xbe, 0x75, 0x6b, 0x52, 0xa7, 0xd7, 0x83, 0x16, 0x0a, 0xe2, 0x9f, +0x37, 0xd3, 0xf9, 0xb8, 0x52, 0x0c, 0x8c, 0x33, 0xf2, 0xf0, 0x11, 0xd5, 0x40, 0x9a, 0xe6, 0x3b, +0xbd, 0xd8, 0x4a, 0xde, 0xa0, 0xc2, 0xeb, 0xcf, 0x1c, 0x64, 0xd0, 0x41, 0x0a, 0x86, 0x5c, 0x39, +0xe0, 0x93, 0xa3, 0x94, 0x24, 0x09, 0x3e, 0xec, 0xa4, 0x5a, 0x34, 0x1f, 0x73, 0x8f, 0xb6, 0x75, +0xcb, 0x9c, 0xe7, 0x3b, 0x78, 0xb2, 0xf0, 0xa1, 0x10, 0x0a, 0xd9, 0xfd, 0x6d, 0x28, 0xcf, 0xb9, +0x47, 0x39, 0xbd, 0x74, 0xfe, 0xea, 0xcb, 0x21, 0x33, 0xe4, 0x17, 0x02, 0x42, 0x13, 0x58, 0xf8, +0xc3, 0x17, 0x46, 0x9c, 0x6c, 0xd5, 0x4c, 0xf7, 0x53, 0xd0, 0xe0, 0xf2, 0xed, 0x0c, 0xd8, 0x50, +0xde, 0xb2, 0x52, 0xc1, 0x88, 0x92, 0xb2, 0xc6, 0xf4, 0x8c, 0x82, 0x86, 0x26, 0x06, 0x3a, 0x39, +0x3e, 0xd5, 0x4a, 0x71, 0x14, 0xa8, 0x34, 0xd2, 0x1f, 0x93, 0xec, 0x45, 0x46, 0x7b, 0x89, 0xaf, +0x70, 0x9d, 0x72, 0x1b, 0xb6, 0x62, 0x18, 0xcd, 0x87, 0xd8, 0x11, 0x27, 0x42, 0x39, 0xbc, 0x85, +0x04, 0x29, 0x70, 0x20, 0x54, 0xa8, 0xb2, 0xad, 0xe4, 0x75, 0x64, 0x71, 0x95, 0xc0, 0x5a, 0xbc, +0xa0, 0xc2, 0x5b, 0xd3, 0xea, 0x55, 0xcf, 0x52, 0xc3, 0xa0, 0xb2, 0xa3, 0x84, 0x03, 0xa7, 0x86, +0xea, 0x7e, 0x44, 0xef, 0xe0, 0x50, 0xd2, 0x21, 0xf6, 0x7b, 0x6d, 0x62, 0x11, 0x9d, 0xa0, 0x0a, +0x9b, 0x52, 0x43, 0xfa, 0x6a, 0xce, 0x14, 0x97, 0x91, 0xfb, 0x08, 0x53, 0xa2, 0x63, 0x53, 0x2c, +0x95, 0xf6, 0xcb, 0x7f, 0xea, 0xf3, 0x3d, 0x72, 0x66, 0xd8, 0xf5, 0x61, 0xd8, 0x5b, 0xb4, 0x5d, +0x24, 0x8c, 0x25, 0x84, 0xe6, 0xbd, 0x03, 0x0a, 0x85, 0x56, 0x83, 0x61, 0x2d, 0x29, 0x23, 0x0b, +0x52, 0xce, 0x0e, 0xe0, 0xb8, 0x33, 0x67, 0x45, 0x7a, 0x63, 0x35, 0xc5, 0x08, 0xb2, 0x53, 0xe5, +0x6b, 0x32, 0x41, 0x9c, 0xbe, 0xb9, 0x89, 0x8f, 0x26, 0xe2, 0xbb, 0xe5, 0xf6, 0xd7, 0xed, 0x2e, +0x71, 0xef, 0x45, 0xa3, 0x2a, 0xa9, 0x55, 0x65, 0x6b, 0xf2, 0xef, 0x85, 0x09, 0xc7, 0x7a, 0x45, +0xaa, 0x22, 0xc4, 0xf2, 0x81, 0x9c, 0x72, 0x77, 0x68, 0xf4, 0x65, 0xeb, 0x50, 0x76, 0x8c, 0x7e, +0x84, 0x58, 0xe2, 0xcc, 0x6e, 0x3e, 0x86, 0x1a, 0x55, 0x6f, 0xd6, 0xf6, 0x92, 0x66, 0x11, 0xa5, +0xdd, 0xb4, 0xf3, 0x87, 0x50, 0xf9, 0xea, 0x64, 0x94, 0xaf, 0xff, 0x1c, 0x8f, 0x2a, 0x03, 0x28, +0xef, 0x3d, 0xee, 0x65, 0x88, 0xe4, 0xd7, 0xc9, 0xba, 0xf3, 0xa9, 0x8a, 0x04, 0x3f, 0xb4, 0x72, +0x66, 0xa1, 0x1a, 0x87, 0x87, 0xc4, 0x94, 0x1e, 0x12, 0xe1, 0x03, 0xfb, 0xa0, 0xcf, 0x0c, 0xa2, +0x95, 0x60, 0x3d, 0x5d, 0x8b, 0x3c, 0xde, 0xc3, 0x7f, 0x50, 0x85, 0x1a, 0x14, 0x4c, 0x1b, 0x3e, +0xc2, 0x2b, 0xe3, 0xbb, 0xae, 0x4e, 0x33, 0xff, 0x4a, 0x0a, 0x6d, 0x01, 0x6c, 0x23, 0xbc, 0xd7, +0x5b, 0xca, 0x4c, 0xf4, 0x8c, 0xb5, 0x4a, 0xf4, 0xee, 0xbc, 0xf2, 0xed, 0x39, 0x12, 0xd0, 0x46, +0x1b, 0xad, 0xce, 0xc8, 0x8d, 0x01, 0x33, 0xa5, 0xea, 0x35, 0xe7, 0x5d, 0x2a, 0x34, 0xd6, 0xa5, +0x6c, 0xcf, 0xe1, 0x3e, 0x2a, 0x7e, 0xaf, 0x33, 0x28, 0xe7, 0x68, 0xff, 0x68, 0x0d, 0x7f, 0x31, +0x35, 0xdf, 0x25, 0xe1, 0x19, 0x0f, 0x52, 0x03, 0x21, 0xde, 0x72, 0x8e, 0x4d, 0x55, 0x85, 0x77, +0xc1, 0x39, 0xec, 0x14, 0x0a, 0x71, 0x49, 0x51, 0x8b, 0x3f, 0x82, 0x8f, 0xb3, 0xe6, 0x40, 0x6c, +0xa0, 0xc8, 0x96, 0x34, 0xc0, 0x6c, 0xc1, 0x61, 0xc0, 0x32, 0x53, 0xac, 0xc0, 0x42, 0x27, 0xc0, +0x62, 0xd7, 0x63, 0x44, 0x97, 0x2d, 0x88, 0x65, 0x26, 0x60, 0x47, 0x69, 0x5f, 0xd9, 0xca, 0x13, +0x12, 0xfd, 0x91, 0xf8, 0xa5, 0xb9, 0x95, 0x1a, 0x37, 0xce, 0x6b, 0xd3, 0x89, 0x0d, 0x88, 0x10, +0x8d, 0x96, 0x4c, 0xd9, 0x98, 0x86, 0x00, 0xf2, 0x28, 0xd1, 0x72, 0x51, 0xc4, 0xe5, 0x8a, 0x05, +0x77, 0x7d, 0xf8, 0x5b, 0x08, 0x00, 0x6c, 0x6e, 0x76, 0xb7, 0x1e, 0x34, 0xa9, 0xfa, 0xd4, 0xb1, +0x2a, 0xfe, 0x0b, 0xd5, 0x60, 0xb3, 0x05, 0x2e, 0x1b, 0x07, 0xe7, 0x22, 0xcb, 0xb3, 0x57, 0xd7, +0x00, 0xc4, 0x1c, 0xb2, 0xbe, 0xa8, 0x36, 0x0c, 0x77, 0x91, 0x2d, 0x57, 0x76, 0x9b, 0xeb, 0x9c, +0xd6, 0xfd, 0x61, 0x38, 0xac, 0xa3, 0x40, 0x29, 0xd1, 0x13, 0xd5, 0x5f, 0xd0, 0xec, 0xab, 0x8d, +0x85, 0xa3, 0xea, 0xc3, 0x0c, 0x4e, 0x1e, 0xe6, 0xda, 0x90, 0x3b, 0x64, 0x2d, 0xa7, 0x3c, 0x81, +0x8a, 0xfa, 0x7f, 0xa3, 0x89, 0xb4, 0xa5, 0x34, 0xfe, 0x6b, 0x4e, 0x06, 0xd1, 0x14, 0xc6, 0xa9, +0x85, 0x9d, 0xcf, 0xd2, 0x8f, 0x92, 0xb1, 0x50, 0x2e, 0x56, 0xa6, 0xb5, 0xba, 0x33, 0xf4, 0xcc, +0x21, 0x40, 0xe0, 0x9e, 0xec, 0x88, 0xee, 0x07, 0xe8, 0xa9, 0xaa, 0x69, 0x39, 0x76, 0x2d, 0xd6, +0xff, 0x1b, 0x8f, 0x10, 0x4b, 0xc3, 0x6a, 0x61, 0x9b, 0x6d, 0x0b, 0xe3, 0xc8, 0x68, 0x34, 0x2f, +0x3f, 0x71, 0x9c, 0x42, 0xd3, 0x8e, 0x47, 0x78, 0x98, 0xbb, 0x4b, 0x23, 0xa6, 0xaa, 0xd0, 0x2e, +0x34, 0x93, 0xd5, 0x4b, 0xe8, 0x0e, 0x0a, 0x4c, 0x7e, 0xdc, 0xdc, 0xcf, 0x0c, 0xee, 0x06, 0x5c, +0x77, 0xfa, 0xeb, 0x25, 0x7c, 0xeb, 0x79, 0x75, 0x6f, 0xe8, 0x49, 0xc8, 0x88, 0x5e, 0xeb, 0x57, +0x6a, 0xe6, 0xf3, 0x49, 0xb5, 0xec, 0x87, 0xb8, 0x78, 0x88, 0x21, 0xa7, 0x23, 0xda, 0xbf, 0x71, +0x5e, 0x22, 0x04, 0x63, 0xf9, 0x6d, 0x1f, 0x68, 0xb9, 0xaa, 0x36, 0x42, 0x6d, 0x79, 0x87, 0x29, +0x1e, 0x1b, 0xcb, 0x1e, 0xb1, 0x10, 0x84, 0xfc, 0x22, 0xbb, 0x55, 0x92, 0x0e, 0x52, 0x2b, 0x9c, +0x7c, 0x7f, 0x4a, 0xdd, 0x54, 0x5d, 0xf5, 0x27, 0x46, 0x5d, 0x96, 0x32, 0x21, 0x06, 0x99, 0x13, +0x44, 0xa6, 0x0a, 0x89, 0xde, 0x80, 0x52, 0x56, 0x82, 0x3f, 0x61, 0xb7, 0x13, 0x77, 0x11, 0x9b, +0xe3, 0x15, 0xbe, 0x72, 0x14, 0x2d, 0xd1, 0xd2, 0xee, 0xa7, 0xbd, 0x76, 0xbd, 0x8d, 0xa9, 0xbc, +0xcd, 0xcd, 0x7f, 0x15, 0x72, 0xb2, 0xed, 0xef, 0x81, 0x10, 0x82, 0x07, 0xdd, 0xea, 0xcc, 0x1f, +0x66, 0xa5, 0x81, 0x78, 0xd3, 0x4b, 0x8e, 0xcc, 0xe1, 0x36, 0xd9, 0xf3, 0xb0, 0x1c, 0xe7, 0x70, +0xbd, 0xb6, 0x47, 0x0f, 0xb0, 0xa3, 0xe2, 0x72, 0x4f, 0x4e, 0xb1, 0x96, 0x9f, 0xb4, 0xd2, 0x97, +0x85, 0x32, 0xa3, 0xe2, 0xcb, 0x46, 0xcc, 0xfb, 0xd1, 0xf0, 0x5d, 0x54, 0xc7, 0x89, 0x73, 0x27, +0x85, 0x03, 0x1f, 0xb7, 0x7f, 0xe9, 0x58, 0x8e, 0x66, 0xb0, 0x6e, 0xa4, 0xbb, 0xd5, 0x69, 0x4f, +0xdd, 0xf7, 0xbb, 0xa8, 0x22, 0x82, 0x10, 0x6d, 0x49, 0xea, 0xdf, 0x90, 0x19, 0x45, 0x6c, 0x3b, +0x59, 0xa1, 0x76, 0xde, 0xb3, 0x09, 0x9c, 0x62, 0x96, 0x4f, 0x08, 0xde, 0x4a, 0x50, 0xa8, 0xf3, +0xe1, 0x32, 0xee, 0x53, 0x5c, 0x60, 0x4e, 0x9b, 0xfa, 0x5f, 0x80, 0x8a, 0xff, 0x6f, 0x64, 0x26, +0x9f, 0xea, 0xa8, 0xcf, 0x96, 0x1d, 0x2e, 0xfa, 0x24, 0xc5, 0xc9, 0xc0, 0x73, 0x54, 0xae, 0x8e, +0xae, 0x94, 0xd0, 0x17, 0x47, 0x1d, 0x3f, 0x0e, 0x1e, 0x03, 0xce, 0xf0, 0x66, 0xfc, 0x86, 0xfb, +0x54, 0xce, 0xd3, 0xf7, 0x43, 0x40, 0x7b, 0xfe, 0x74, 0x93, 0xde, 0x8e, 0x59, 0x7c, 0x9d, 0xc6, +0x95, 0xee, 0x9f, 0xab, 0xf9, 0xf3, 0x28, 0x5a, 0x02, 0xc6, 0xb8, 0x53, 0x9c, 0xbb, 0xe4, 0xf4, +0x83, 0xe5, 0x45, 0x9d, 0x69, 0x71, 0xe1, 0xf7, 0xe7, 0x35, 0xea, 0x1d, 0x39, 0xd9, 0xb8, 0xb0, +0x00, 0xfb, 0x74, 0x3e, 0x16, 0x59, 0x1b, 0x78, 0x18, 0x58, 0x55, 0xfe, 0x2b, 0xe2, 0x4f, 0x79, +0xe4, 0x08, 0xfe, 0xfe, 0xf8, 0x9b, 0xcb, 0x6e, 0x88, 0xbf, 0x79, 0x32, 0x8c, 0xb2, 0x17, 0x9b, +0xf3, 0x4a, 0x24, 0xd0, 0xe7, 0x8b, 0x54, 0xc1, 0x88, 0x5e, 0xa5, 0x7f, 0x2b, 0x83, 0x6d, 0x07, +0x12, 0xaf, 0x54, 0x0f, 0x47, 0x4e, 0x55, 0x63, 0x34, 0xc7, 0x42, 0x25, 0x10, 0x74, 0xa4, 0xe4, +0x91, 0x4a, 0x14, 0x92, 0x73, 0x80, 0xab, 0x5c, 0x26, 0x5a, 0xd4, 0xce, 0x3f, 0x1c, 0x3c, 0x2a, +0x8c, 0x67, 0x8a, 0x13, 0xdd, 0x26, 0xc7, 0x83, 0xde, 0xe5, 0xb8, 0x04, 0x61, 0xd5, 0xf1, 0x09, +0x64, 0x8b, 0xe5, 0x03, 0x85, 0x7e, 0xfd, 0xcd, 0x58, 0x21, 0x49, 0xa4, 0x91, 0x5d, 0x19, 0x89, +0x7e, 0xb8, 0x43, 0x83, 0xa4, 0x21, 0xe7, 0x9c, 0xcf, 0xbd, 0xad, 0x68, 0xf1, 0x47, 0xe0, 0x8f, +0xe8, 0x9c, 0x66, 0x82, 0xbd, 0xb7, 0xcf, 0x51, 0xfa, 0x2f, 0x67, 0x84, 0xe7, 0x3b, 0xf4, 0xfc, +0x3b, 0x9f, 0x27, 0x73, 0xc0, 0xf3, 0x6f, 0xc4, 0xbd, 0x51, 0xed, 0x93, 0xb5, 0x5e, 0x47, 0x9e, +0xc0, 0xe5, 0x87, 0xa3, 0x9c, 0x37, 0xda, 0xbd, 0x95, 0x22, 0x19, 0x82, 0x7e, 0xf2, 0x5b, 0xdb, +0x69, 0xae, 0x02, 0x3a, 0xa3, 0xfe, 0x09, 0x64, 0x72, 0x62, 0x7e, 0x1b, 0xb2, 0x27, 0x6d, 0x9f, +0xd6, 0x17, 0x01, 0xef, 0xd3, 0x74, 0x13, 0x92, 0x34, 0x84, 0x8d, 0x68, 0x6d, 0x05, 0x7e, 0x77, +0xde, 0x73, 0x59, 0x88, 0x83, 0x62, 0xac, 0xce, 0xc4, 0xbd, 0xe7, 0x50, 0x50, 0x19, 0xc6, 0xe4, +0x3d, 0x39, 0xe0, 0x04, 0xf1, 0x81, 0x95, 0xb8, 0x34, 0xde, 0x79, 0x66, 0xd8, 0x7c, 0x1d, 0xe5, +0x84, 0x23, 0xb5, 0xd7, 0x3d, 0x95, 0x4b, 0x7b, 0x67, 0x59, 0x9e, 0x12, 0xe0, 0xe9, 0xcc, 0x39, +0xc1, 0x4e, 0x53, 0x93, 0x38, 0x9e, 0xf6, 0xa2, 0x2b, 0x8a, 0x8a, 0x88, 0x0a, 0x34, 0x07, 0xfb, +0x31, 0xc1, 0xba, 0x67, 0x54, 0xb1, 0x00, 0xa2, 0x6a, 0xe4, 0x07, 0x52, 0x9d, 0x69, 0xdb, 0xb6, +0x0b, 0x21, 0x6e, 0x8e, 0xcc, 0x4f, 0xf2, 0xae, 0x25, 0x26, 0xa3, 0xa4, 0xf0, 0xfa, 0x0f, 0xd8, +0x39, 0x33, 0x1e, 0x65, 0xbf, 0x1c, 0xf5, 0x28, 0x1e, 0x23, 0xc3, 0x82, 0x41, 0x3b, 0xc9, 0x82, +0xa6, 0x98, 0x93, 0xba, 0x13, 0x26, 0x4e, 0x09, 0xb7, 0x55, 0x18, 0x0f, 0xde, 0x46, 0x13, 0xba, +0x6f, 0x43, 0x40, 0x32, 0xdb, 0xbb, 0x4c, 0x27, 0x84, 0x08, 0x9d, 0x55, 0xfc, 0xc4, 0x01, 0xa4, +0x64, 0xcb, 0xac, 0x84, 0x15, 0x9d, 0xda, 0xa2, 0xae, 0xc5, 0x92, 0x52, 0x06, 0xa3, 0xda, 0x00, +0xcb, 0x80, 0x75, 0x9a, 0xf2, 0x0d, 0x69, 0xfa, 0x2c, 0x7e, 0x14, 0xda, 0x96, 0x82, 0x0b, 0xc7, +0x76, 0x2f, 0x7d, 0x77, 0x98, 0xbd, 0x5e, 0x1c, 0x26, 0x7f, 0x96, 0xaf, 0x63, 0x8f, 0x3e, 0x4a, +0xa7, 0x77, 0xc3, 0xc0, 0xf1, 0x09, 0xa1, 0x81, 0x46, 0x7d, 0x00, 0x85, 0x87, 0x67, 0x75, 0xe4, +0x3c, 0xc1, 0xbc, 0x5a, 0x33, 0x20, 0x53, 0x08, 0xb4, 0xa9, 0xf1, 0xd5, 0x75, 0x00, 0x2e, 0x4c, +0x2e, 0xa9, 0x6f, 0x60, 0xe6, 0x4d, 0xf7, 0xd1, 0x4e, 0x60, 0x9a, 0x23, 0x36, 0x38, 0xc2, 0x76, +0x6b, 0x3c, 0x88, 0x8c, 0x18, 0x97, 0xc4, 0x8b, 0x7a, 0x3a, 0xe8, 0xba, 0x5b, 0x0d, 0x0b, 0x70, +0x4f, 0x98, 0xa4, 0xbf, 0x20, 0xab, 0xf3, 0x3f, 0x57, 0x89, 0xa8, 0x6b, 0xac, 0x5a, 0x27, 0x84, +0xed, 0x2f, 0x45, 0x46, 0x15, 0x12, 0x7a, 0x85, 0xc5, 0x4c, 0xee, 0xbb, 0x0e, 0xe8, 0xb3, 0xdd, +0x95, 0xf3, 0xbb, 0xc4, 0xf3, 0x0a, 0xaf, 0x5f, 0xaf, 0xa0, 0x46, 0xcf, 0xee, 0xcd, 0x2b, 0x4d, +0xa3, 0xbf, 0xb2, 0x8a, 0xaf, 0x78, 0x30, 0xce, 0xe2, 0x66, 0x34, 0x89, 0x56, 0x3d, 0x76, 0xa1, +0xb5, 0x4f, 0xda, 0xbb, 0x98, 0xaa, 0x04, 0x26, 0x63, 0x7f, 0xca, 0x43, 0x58, 0x1e, 0xeb, 0xd0, +0x45, 0x2a, 0xaf, 0x40, 0x0d, 0x66, 0x12, 0xb9, 0x13, 0x7e, 0x99, 0xb3, 0xae, 0x2c, 0x6a, 0x0a, +0xed, 0x3a, 0x06, 0x9f, 0x55, 0x17, 0x37, 0xcb, 0xc9, 0x26, 0x74, 0xfe, 0x1c, 0x73, 0xe0, 0x65, +0x20, 0x73, 0x5f, 0x1a, 0x4e, 0xbd, 0x26, 0x11, 0x38, 0x92, 0x7c, 0x21, 0x8a, 0x29, 0xce, 0xd7, +0xad, 0x12, 0xdf, 0xca, 0xff, 0x18, 0xf0, 0x74, 0x24, 0x9c, 0x08, 0x9b, 0x03, 0x7f, 0xaf, 0x49, +0x0f, 0x2b, 0x11, 0xa4, 0x31, 0x0c, 0xf0, 0x4f, 0xb3, 0x46, 0x56, 0x4b, 0xb1, 0xab, 0x4e, 0xd9, +0x9a, 0x4d, 0xe7, 0xd8, 0x87, 0xe3, 0x15, 0xc9, 0xfe, 0x47, 0x18, 0xbf, 0x60, 0x0d, 0x6b, 0x8b, +0x8a, 0x93, 0xda, 0x7c, 0xe9, 0x82, 0xde, 0x2f, 0x0f, 0x83, 0x6e, 0xd4, 0x56, 0x30, 0x6a, 0x36, +0x88, 0x27, 0x87, 0xe9, 0x27, 0xac, 0x57, 0xf6, 0x92, 0xef, 0xe8, 0xc4, 0xdd, 0x3f, 0x0a, 0x93, +0xc3, 0x1e, 0x01, 0xf5, 0x92, 0x7e, 0xa4, 0xf0, 0xed, 0xf0, 0x1f, 0x93, 0x57, 0x6a, 0xca, 0x7f, +0x76, 0x6c, 0x2c, 0xd0, 0xf0, 0xfe, 0x2b, 0xce, 0xa3, 0xad, 0x0c, 0xe4, 0x81, 0x0d, 0x51, 0x0c, +0xb5, 0x32, 0xbb, 0xb7, 0x12, 0x2c, 0x19, 0x23, 0xd0, 0xe0, 0x1c, 0x04, 0x86, 0x3b, 0x42, 0xf1, +0x3c, 0x12, 0xd5, 0xbd, 0x56, 0x60, 0xb9, 0x41, 0x30, 0x6c, 0x95, 0x46, 0xe1, 0xc7, 0xe6, 0x8a, +0xc3, 0x97, 0x07, 0x8d, 0xd4, 0x4e, 0x01, 0xee, 0x65, 0x41, 0xaa, 0x1f, 0x3d, 0x12, 0x98, 0x30, +0xd9, 0x84, 0x5b, 0x07, 0x1e, 0xcc, 0x8c, 0x68, 0x75, 0xa5, 0x85, 0x95, 0xad, 0x2c, 0x22, 0x96, +0x26, 0x19, 0xa0, 0x37, 0xd6, 0xa3, 0x0f, 0x45, 0xb0, 0xc3, 0x85, 0xc2, 0x78, 0x59, 0x22, 0xc6, +0xd4, 0x36, 0x7c, 0x9f, 0xf0, 0xbe, 0xfe, 0xc3, 0x7a, 0x27, 0x13, 0x46, 0xe1, 0xbb, 0x78, 0x80, +0x09, 0x06, 0x6a, 0x2d, 0xe9, 0x61, 0x99, 0x67, 0x90, 0xaa, 0x31, 0x12, 0x87, 0x33, 0xe4, 0xa2, +0x43, 0xba, 0x60, 0x9a, 0xb0, 0x08, 0x1e, 0x65, 0x36, 0x73, 0xd1, 0x10, 0x9d, 0xbb, 0xbf, 0x60, +0x7e, 0x45, 0x6d, 0x89, 0x54, 0x39, 0x22, 0x34, 0x79, 0x51, 0x66, 0xce, 0xcf, 0xe9, 0x7b, 0xeb, +0x38, 0xb1, 0x86, 0x31, 0x63, 0xbe, 0x4f, 0x67, 0xf5, 0x2a, 0x71, 0x96, 0x77, 0x2a, 0x2d, 0xbb, +0xd7, 0x49, 0xa4, 0x01, 0xd0, 0xb6, 0x2a, 0x0f, 0xa0, 0xd4, 0xad, 0x14, 0x7f, 0xd5, 0xbc, 0xf1, +0xfe, 0xf3, 0x3a, 0xa5, 0xa5, 0xdd, 0xa8, 0x2d, 0xe2, 0x93, 0x9f, 0xbd, 0x1a, 0xc8, 0xac, 0x12, +0x8a, 0xb9, 0xf1, 0xa3, 0x76, 0xd1, 0x2d, 0x36, 0xbc, 0xb6, 0x89, 0xa3, 0x04, 0xe2, 0x56, 0x21, +0x33, 0x81, 0x36, 0xc3, 0x22, 0xec, 0xdc, 0xe9, 0x79, 0x1c, 0x59, 0x8c, 0xac, 0x27, 0x74, 0x21, +0xb2, 0x7f, 0x97, 0x57, 0x41, 0xdf, 0x6b, 0x2d, 0x42, 0xea, 0x7c, 0x8f, 0xfc, 0x2f, 0xf5, 0x4c, +0xe4, 0xf0, 0x2e, 0x29, 0x33, 0x6f, 0xa6, 0x37, 0x13, 0x5e, 0x91, 0x9b, 0x46, 0x29, 0x92, 0x16, +0x7a, 0x7f, 0xa8, 0xae, 0xa9, 0x20, 0xcb, 0xd9, 0x9c, 0xb4, 0x46, 0x62, 0x25, 0x9a, 0x1b, 0x24, +0xb4, 0x4c, 0x7e, 0xe6, 0xa4, 0x22, 0x72, 0x27, 0x75, 0x1f, 0x17, 0x31, 0xd1, 0x3e, 0x0a, 0x0a, +0x2e, 0xf9, 0xb7, 0x43, 0x62, 0x67, 0x05, 0xf6, 0x5a, 0xc9, 0xf7, 0x99, 0xe5, 0xcb, 0x3c, 0xc1, +0x7b, 0xf4, 0xd7, 0x43, 0x83, 0xb7, 0x0f, 0x87, 0x07, 0xb8, 0x2d, 0x51, 0x19, 0xb4, 0x4b, 0x9e, +0x5d, 0x1e, 0xa0, 0x8d, 0x5d, 0xb0, 0xbb, 0x96, 0x81, 0xe3, 0x29, 0x64, 0x50, 0xfa, 0x0b, 0x56, +0xae, 0x8a, 0x6b, 0xdc, 0x7a, 0x10, 0x38, 0x24, 0x1f, 0x72, 0x08, 0xc9, 0xfe, 0xa8, 0xc1, 0x65, +0x57, 0x82, 0x47, 0xb2, 0x65, 0x26, 0x62, 0x1e, 0x27, 0x97, 0x4a, 0x2b, 0x27, 0xcc, 0x93, 0x5b, +0xd9, 0x30, 0x5c, 0x9f, 0x9c, 0x12, 0x26, 0x60, 0xd5, 0xce, 0x54, 0x69, 0x64, 0xca, 0x2a, 0x71, +0x54, 0xeb, 0x49, 0x63, 0x0c, 0xd3, 0xd0, 0x82, 0xd9, 0x59, 0xbf, 0x2b, 0x09, 0x73, 0x7e, 0xf6, +0xc0, 0xa9, 0xcb, 0x21, 0xca, 0x3c, 0x2e, 0x38, 0x2e, 0xea, 0xf3, 0x4c, 0x49, 0x93, 0xf4, 0xf1, +0x3b, 0x65, 0x3f, 0x41, 0x28, 0x7b, 0x35, 0xec, 0x2f, 0x1e, 0xd4, 0x75, 0x5a, 0x0c, 0xfb, 0xfa, +0xeb, 0x10, 0x60, 0x8a, 0x55, 0x63, 0xb1, 0x95, 0x1e, 0xca, 0x79, 0x5f, 0x92, 0x3d, 0x3f, 0x77, +0xc2, 0xd5, 0x53, 0x2e, 0xbc, 0x30, 0x03, 0x85, 0xef, 0xe8, 0x06, 0x4f, 0xd2, 0x8e, 0x93, 0xfc, +0x6f, 0xbe, 0x3b, 0x16, 0x92, 0xfc, 0x12, 0xdb, 0x6c, 0x56, 0x12, 0x4d, 0xa4, 0xfa, 0xea, 0x26, +0x2a, 0x0b, 0x77, 0xce, 0xa3, 0x91, 0x70, 0x1b, 0x6b, 0x17, 0xa4, 0x04, 0x39, 0xf3, 0x1c, 0x3f, +0x71, 0xef, 0x09, 0x19, 0xcf, 0x5a, 0xd6, 0x48, 0x05, 0xb0, 0xc1, 0x57, 0xa2, 0xdf, 0x15, 0x93, +0xc4, 0xee, 0xd7, 0x5b, 0x2f, 0x9b, 0x8b, 0x33, 0x4d, 0xf2, 0x3f, 0x58, 0x23, 0x92, 0xc1, 0xf1, +0x3f, 0x00, 0xd1, 0x55, 0xfd, 0x45, 0xc3, 0x31, 0xaf, 0x72, 0xd1, 0x10, 0x76, 0x6e, 0x3a, 0x31, +0x7f, 0x79, 0x8d, 0x4d, 0x2e, 0x05, 0xcd, 0x1c, 0x15, 0x67, 0x56, 0xbe, 0x0c, 0x31, 0x1a, 0xce, +0xbb, 0x5a, 0xce, 0x00, 0x86, 0x20, 0xde, 0x00, 0x0a, 0x8e, 0x6a, 0xc7, 0xfd, 0xa3, 0x91, 0x83, +0x42, 0xe8, 0x03, 0x5b, 0x08, 0xf1, 0x23, 0x6c, 0x12, 0x88, 0xff, 0x65, 0x34, 0x33, 0x57, 0x3e, +0xfd, 0x43, 0xd4, 0x74, 0x1d, 0xdd, 0x94, 0x19, 0x4e, 0xfd, 0x23, 0x80, 0x7f, 0xd3, 0xcf, 0x6c, +0x3e, 0xac, 0xc1, 0x10, 0xff, 0xe1, 0x61, 0x65, 0x2c, 0x1b, 0x31, 0x7e, 0x35, 0x74, 0x11, 0x7f, +0x9d, 0x16, 0xae, 0xb2, 0x87, 0xf4, 0x4f, 0xe3, 0xbb, 0xbc, 0x72, 0x83, 0x30, 0xc9, 0xee, 0xe5, +0x06, 0x32, 0x7a, 0x20, 0x61, 0x4a, 0xa4, 0xe3, 0x13, 0xee, 0xb0, 0x21, 0x75, 0xa6, 0x98, 0xfe, +0x13, 0xb2, 0xfd, 0x80, 0xe0, 0x0c, 0x35, 0x0d, 0x2d, 0xa4, 0xc7, 0x47, 0x8f, 0x45, 0x63, 0x9c, +0x6f, 0xd4, 0x72, 0xdc, 0x6f, 0xf4, 0x68, 0xcf, 0xc5, 0x03, 0xf0, 0x97, 0x7a, 0x5d, 0xc2, 0x23, +0x9a, 0x06, 0x13, 0xcd, 0xb6, 0xc2, 0x8a, 0x66, 0x50, 0x2d, 0x9e, 0x1e, 0xff, 0x5d, 0xb6, 0xe2, +0x89, 0xe9, 0x01, 0x4b, 0x0f, 0x12, 0xbd, 0xc9, 0x49, 0x81, 0x70, 0xb8, 0x73, 0x89, 0x99, 0x3e, +0x33, 0xfb, 0x5f, 0x62, 0xcc, 0xc1, 0x74, 0x1b, 0x3c, 0xea, 0x18, 0x05, 0xb3, 0xa0, 0xad, 0x41, +0x73, 0x9b, 0xf4, 0xd0, 0x51, 0x4d, 0x12, 0x0a, 0xf3, 0x32, 0x5b, 0xd1, 0xa4, 0x88, 0x11, 0xc3, +0xe2, 0x0b, 0xf2, 0x1c, 0x2a, 0x4f, 0xd1, 0xea, 0xfb, 0x8f, 0x11, 0xb7, 0xaf, 0x17, 0x99, 0x81, +0x77, 0x77, 0xa0, 0x9b, 0x3c, 0xbf, 0xae, 0xb4, 0xea, 0xca, 0xcd, 0x1e, 0x25, 0x40, 0xb9, 0xd4, +0x0d, 0x45, 0xe2, 0xf5, 0xc5, 0x90, 0xfa, 0x62, 0x8f, 0x14, 0x07, 0xac, 0x72, 0x3c, 0x43, 0x95, +0x3f, 0xa7, 0xb5, 0x3b, 0x1f, 0xd6, 0xc3, 0x43, 0x72, 0x42, 0x0f, 0xe8, 0x62, 0xab, 0xa1, 0xe1, +0x2c, 0x53, 0xb7, 0x79, 0x7c, 0xd8, 0x93, 0xb0, 0xd1, 0x8e, 0x9c, 0xc1, 0xd7, 0xdc, 0x0d, 0xf9, +0xd1, 0x2d, 0x13, 0xb1, 0xec, 0x9d, 0x9f, 0xb9, 0xa7, 0xe0, 0x6b, 0x9f, 0x56, 0x91, 0x86, 0xc2, +0xf1, 0x65, 0x53, 0xd0, 0xd1, 0x77, 0x6f, 0x66, 0x5e, 0x8e, 0x96, 0x24, 0x9d, 0x72, 0x3d, 0xf9, +0xb7, 0x25, 0x66, 0x4c, 0x47, 0xcb, 0x3a, 0x1d, 0xd3, 0x85, 0xe4, 0xe2, 0x83, 0x6e, 0x00, 0x28, +0x7c, 0x8b, 0x04, 0xba, 0xc7, 0x78, 0xe0, 0x76, 0xc2, 0x8e, 0x3d, 0x16, 0x6d, 0xad, 0xc1, 0x02, +0x64, 0x6f, 0x7c, 0x9c, 0xab, 0x88, 0xe3, 0x5c, 0x17, 0x90, 0x5b, 0x4b, 0x00, 0xee, 0xfb, 0x99, +0x01, 0xdf, 0x27, 0xa1, 0x08, 0xa6, 0x63, 0xfe, 0x19, 0xb0, 0xfa, 0xca, 0x90, 0xe7, 0xb4, 0xf4, +0x32, 0x90, 0xac, 0x50, 0xd6, 0x9f, 0xcf, 0x7c, 0x37, 0x79, 0x0b, 0xe6, 0x03, 0x17, 0x74, 0x7f, +0x3b, 0xf4, 0x7a, 0x22, 0x55, 0x78, 0x36, 0xcc, 0x0d, 0x84, 0x55, 0x44, 0xe1, 0xc0, 0x66, 0xf6, +0xbd, 0x86, 0xb3, 0x0f, 0x78, 0x96, 0xe1, 0xa9, 0xf8, 0x35, 0x15, 0x1d, 0x92, 0xaf, 0xe0, 0x41, +0x85, 0xbb, 0x5a, 0xa8, 0xf4, 0x54, 0xb0, 0xdf, 0xbc, 0x25, 0x42, 0x9b, 0xfe, 0x2e, 0xe8, 0x9d, +0xe3, 0x87, 0x6f, 0x5b, 0x5b, 0xf4, 0x7e, 0x6d, 0x4c, 0x02, 0x17, 0x9d, 0x59, 0xf8, 0x23, 0xed, +0xec, 0xef, 0xaf, 0x86, 0x1c, 0x3c, 0x31, 0xd4, 0xb4, 0xcf, 0x9e, 0xcb, 0xcc, 0x5f, 0x83, 0xbe, +0x1b, 0x6b, 0x5f, 0x1e, 0x56, 0xd2, 0xb0, 0x01, 0x89, 0xde, 0x55, 0xc4, 0x9d, 0x06, 0xe8, 0xbe, +0xa3, 0x74, 0x60, 0xb1, 0xa5, 0x0f, 0xc2, 0x21, 0x02, 0x40, 0x33, 0x23, 0x69, 0x27, 0x8e, 0x1d, +0xd8, 0x63, 0x94, 0x4e, 0x98, 0x4f, 0xbf, 0xa7, 0x62, 0x62, 0x22, 0xa1, 0x41, 0x9c, 0xc0, 0x58, +0x3e, 0x8c, 0xc2, 0xee, 0x8c, 0xfc, 0x67, 0xd4, 0x34, 0xa0, 0xec, 0x72, 0x14, 0x6e, 0x16, 0x68, +0xd2, 0x6e, 0x59, 0x31, 0x7d, 0xf8, 0x96, 0x9e, 0xe4, 0xcb, 0xa7, 0x8e, 0x7f, 0xd1, 0x97, 0x0e, +0x53, 0x8f, 0xa7, 0x30, 0x74, 0x3a, 0x6d, 0x50, 0x9e, 0xc1, 0x47, 0xdc, 0xd5, 0xcb, 0x2d, 0xcf, +0x74, 0x20, 0x1f, 0xf6, 0x2b, 0x33, 0x4f, 0x6d, 0xdc, 0x96, 0xd9, 0x08, 0x88, 0x55, 0x29, 0x8f, +0x64, 0xee, 0x09, 0x42, 0x39, 0xf0, 0x97, 0xf4, 0x4f, 0xfe, 0x1e, 0x05, 0x79, 0x01, 0x8a, 0x74, +0xb9, 0xe7, 0xb0, 0x90, 0x23, 0x25, 0xb6, 0x93, 0x70, 0x81, 0x13, 0xc7, 0xdd, 0xf5, 0x29, 0x82, +0x2f, 0x64, 0x2c, 0x41, 0xcb, 0x35, 0xef, 0x54, 0x42, 0xaf, 0x54, 0xad, 0x62, 0x92, 0x9c, 0x89, +0xe4, 0x79, 0xef, 0x47, 0x17, 0x2e, 0xba, 0x11, 0x2c, 0x8a, 0x1c, 0xae, 0x40, 0x0b, 0x09, 0x06, +0xdb, 0x67, 0x55, 0x73, 0x95, 0x0f, 0x62, 0xa2, 0x72, 0xfe, 0xfd, 0x17, 0x74, 0x8b, 0x5e, 0x24, +0x6d, 0xb6, 0x0c, 0x0c, 0x11, 0x61, 0xf3, 0xbb, 0x3a, 0x14, 0xa7, 0xa3, 0x13, 0x32, 0xff, 0x1c, +0xaa, 0x06, 0xc7, 0x28, 0xf5, 0xa3, 0x61, 0x15, 0xb3, 0x36, 0xfa, 0xc7, 0x04, 0x02, 0x46, 0xb1, +0x55, 0x35, 0xfe, 0xe6, 0xf0, 0x7d, 0xf0, 0xf1, 0x4b, 0x3e, 0xa1, 0x01, 0xfa, 0x98, 0xbd, 0xb0, +0x16, 0x37, 0x31, 0xef, 0x68, 0x08, 0x0b, 0xf9, 0x12, 0x18, 0x2b, 0xc0, 0x71, 0x44, 0x83, 0x22, +0xa0, 0xab, 0xb6, 0x30, 0x47, 0x4d, 0x36, 0xb0, 0xb2, 0x97, 0xeb, 0x30, 0xa8, 0x92, 0xac, 0xf2, +0x5d, 0x85, 0x4d, 0x16, 0x66, 0x1f, 0x20, 0x1f, 0xd9, 0xc3, 0x37, 0x2f, 0x4c, 0xa0, 0xcc, 0x8b, +0x08, 0xb4, 0xa7, 0x09, 0x52, 0x72, 0xcb, 0xc5, 0xae, 0x64, 0xfd, 0x89, 0x01, 0x4b, 0xe3, 0x66, +0x07, 0xa5, 0x2a, 0xab, 0xc5, 0x70, 0x8b, 0xf7, 0x7c, 0x4b, 0xf2, 0x29, 0xe0, 0xee, 0xab, 0xd6, +0x1f, 0x78, 0xf9, 0x88, 0x0a, 0xbc, 0xa6, 0x36, 0xb1, 0xa1, 0xa8, 0x70, 0x6c, 0x90, 0x53, 0xb1, +0xe3, 0xb1, 0x75, 0x0b, 0x7e, 0x67, 0xf1, 0xec, 0x49, 0x11, 0x47, 0x7e, 0x9e, 0x83, 0x5e, 0xa1, +0x43, 0xac, 0x7d, 0x75, 0xd3, 0xa3, 0x72, 0x4e, 0x81, 0xcb, 0x0b, 0x86, 0xcf, 0x4e, 0x7b, 0xe2, +0x4c, 0xe5, 0xc5, 0xef, 0xef, 0x85, 0x15, 0xcb, 0x3a, 0x30, 0xd5, 0x0e, 0x7f, 0xec, 0x9a, 0xd9, +0x4f, 0xae, 0xfb, 0xba, 0x58, 0x26, 0x4e, 0xde, 0x66, 0x38, 0xa0, 0x4a, 0x0e, 0x9f, 0xfa, 0xbd, +0x3b, 0xa9, 0x54, 0x10, 0x06, 0xb3, 0x00, 0xb9, 0xe6, 0xf9, 0x21, 0xf5, 0x98, 0xf6, 0x09, 0x95, +0xe1, 0x14, 0x0f, 0x77, 0x9f, 0xed, 0x69, 0xb0, 0x7d, 0x12, 0x55, 0x02, 0x9a, 0x22, 0xe4, 0x0a, +0x45, 0x24, 0x49, 0xb6, 0xb6, 0x72, 0xf0, 0x9e, 0x2f, 0x89, 0xa0, 0x0c, 0xac, 0x15, 0x3d, 0x57, +0x24, 0x7c, 0x86, 0x63, 0xe7, 0xf1, 0xd5, 0x0b, 0x26, 0xd3, 0x7e, 0x2c, 0xfa, 0x8b, 0xf5, 0xd9, +0xd4, 0x14, 0xf0, 0x3c, 0x69, 0xe8, 0x33, 0xcf, 0xb0, 0x49, 0x2f, 0x52, 0x96, 0xce, 0x87, 0x6d, +0xeb, 0x40, 0xa1, 0x9e, 0x32, 0x92, 0x0a, 0xc8, 0xc1, 0xd0, 0xa4, 0xd5, 0xce, 0xf9, 0x16, 0x4f, +0xba, 0x4a, 0xf0, 0x5b, 0xed, 0x50, 0xb4, 0xf6, 0x2b, 0xf5, 0xf4, 0x0e, 0x57, 0xbe, 0xbd, 0x1e, +0x8a, 0x08, 0x20, 0x06, 0x16, 0x09, 0x1b, 0x99, 0xb4, 0x3a, 0xca, 0xa8, 0xd6, 0x24, 0x82, 0x2a, +0x83, 0x0f, 0x97, 0x2c, 0x37, 0x4d, 0xd4, 0x76, 0x86, 0xcf, 0xfe, 0xa5, 0x34, 0x38, 0x79, 0x36, +0xd0, 0x84, 0x49, 0xa5, 0xaa, 0x6b, 0x4b, 0x1d, 0xaa, 0xd3, 0x83, 0x60, 0xeb, 0x71, 0xbb, 0xfd, +0xd7, 0x41, 0xb4, 0x1c, 0x8b, 0x4c, 0xcc, 0x9d, 0x59, 0x17, 0x43, 0x03, 0x41, 0x88, 0xb6, 0xbb, +0xae, 0xce, 0xd2, 0xfa, 0x1d, 0xf8, 0x0b, 0x79, 0xd7, 0x90, 0x0d, 0xeb, 0x93, 0x24, 0xb5, 0x54, +0xa6, 0xad, 0x46, 0x9d, 0x22, 0x50, 0xcc, 0xca, 0xe3, 0x27, 0x3a, 0x04, 0x39, 0xc0, 0x28, 0x4a, +0x35, 0xad, 0xf5, 0x7a, 0xb6, 0x35, 0x25, 0xe4, 0x75, 0xca, 0x36, 0x46, 0x14, 0x97, 0xd9, 0x27, +0x59, 0xe4, 0x42, 0xcd, 0x0d, 0x8c, 0x88, 0xce, 0x58, 0xe5, 0x3c, 0xe7, 0x63, 0xb3, 0x9f, 0xba, +0xb8, 0xd8, 0x46, 0x98, 0xe0, 0xc0, 0xae, 0xb0, 0xa8, 0xca, 0x61, 0x4e, 0xc9, 0xae, 0xf4, 0x6a, +0xbc, 0xac, 0x39, 0xcf, 0x2a, 0x1a, 0x79, 0x31, 0x1b, 0x5f, 0x41, 0x2c, 0x8e, 0x1a, 0x56, 0x4e, +0xb4, 0xb6, 0xa1, 0x13, 0xc4, 0xad, 0xd0, 0x5d, 0x84, 0xa8, 0x93, 0xb9, 0x5e, 0xa7, 0xc5, 0xf3, +0xa4, 0x45, 0x72, 0x49, 0xd2, 0xc9, 0x32, 0xad, 0xab, 0x40, 0x0e, 0x00, 0x1a, 0x23, 0xad, 0xdf, +0xed, 0x42, 0x5e, 0x6f, 0xac, 0xcf, 0x8f, 0x3b, 0x6a, 0x6d, 0xaa, 0xd1, 0xdf, 0x09, 0x74, 0x07, +0x1c, 0x9f, 0x07, 0x4e, 0xec, 0x9c, 0xd1, 0xbf, 0x21, 0x03, 0x17, 0xc4, 0xf7, 0xbd, 0xcd, 0x1e, +0xdd, 0x25, 0x14, 0x27, 0x34, 0x32, 0xa9, 0x9a, 0x24, 0x6d, 0xf8, 0x47, 0xf2, 0xa1, 0xcf, 0xd0, +0xdc, 0x4f, 0xeb, 0x67, 0xd9, 0xda, 0x58, 0xb3, 0x4b, 0xbe, 0xbf, 0x69, 0xad, 0x27, 0x7e, 0xc5, +0x37, 0x64, 0x88, 0x0a, 0xea, 0x18, 0x9f, 0x75, 0x32, 0xf2, 0x80, 0x23, 0x71, 0x06, 0x17, 0x1f, +0x91, 0x2b, 0xfc, 0xd6, 0x57, 0x0e, 0xd3, 0x36, 0xf5, 0xd5, 0x36, 0x58, 0x1c, 0xac, 0x4f, 0xde, +0xa2, 0xf5, 0xd0, 0xbd, 0x41, 0xbf, 0x87, 0xb9, 0x5d, 0xfa, 0x2c, 0x07, 0x78, 0x59, 0xce, 0xc8, +0x20, 0x04, 0xe9, 0x3c, 0x75, 0xb1, 0x23, 0x88, 0x25, 0xa8, 0xb3, 0x4d, 0x31, 0xd4, 0xe7, 0x29, +0x20, 0xb9, 0x88, 0x4b, 0x76, 0x55, 0x8e, 0x60, 0xe7, 0x61, 0x18, 0xe9, 0x97, 0x3b, 0x1a, 0x79, +0x01, 0xd7, 0x25, 0xeb, 0x9b, 0x25, 0xc5, 0x9d, 0x4e, 0x4d, 0xa8, 0x10, 0xa9, 0xb3, 0x1e, 0x14, +0xe6, 0x2e, 0xa6, 0xc2, 0xaf, 0x1e, 0x44, 0xd8, 0x70, 0xe2, 0xb0, 0x39, 0x7e, 0xb7, 0x28, 0x6c, +0xbd, 0x42, 0x70, 0x49, 0x64, 0x2d, 0x16, 0x09, 0x27, 0x4e, 0x00, 0x24, 0x90, 0xe0, 0xa7, 0xa7, +0x6a, 0xa7, 0x6e, 0xcd, 0x4f, 0x7a, 0x34, 0x0b, 0x00, 0x87, 0xc0, 0xe5, 0x97, 0x15, 0xcf, 0x3f, +0xfb, 0x62, 0x58, 0x12, 0x9e, 0x8a, 0x3a, 0x0c, 0xec, 0x51, 0x94, 0x43, 0x3a, 0xcc, 0x45, 0x7e, +0x10, 0x40, 0xcc, 0x18, 0x21, 0x71, 0x8b, 0x18, 0xe6, 0x79, 0x7e, 0x30, 0xca, 0x5e, 0x2c, 0x1e, +0x61, 0xc8, 0xa3, 0xd7, 0x2f, 0xcd, 0x5b, 0x31, 0x0c, 0x19, 0x3e, 0xce, 0x20, 0xb2, 0x14, 0x1b, +0x6b, 0x72, 0xbd, 0x70, 0x5f, 0xa1, 0x5a, 0xb9, 0x0a, 0xb6, 0xa9, 0x01, 0xaa, 0xbd, 0xfa, 0x3c, +0x9e, 0x68, 0x26, 0x66, 0x84, 0x4a, 0xc1, 0x55, 0xb6, 0x16, 0xa1, 0x94, 0xb3, 0x43, 0x7b, 0xac, +0x2e, 0xc4, 0xe0, 0x70, 0x30, 0x1b, 0x81, 0x39, 0x86, 0xb4, 0xd7, 0x51, 0x95, 0x19, 0xca, 0x91, +0x79, 0x74, 0x2d, 0xc9, 0xc7, 0xd9, 0xde, 0xbf, 0x9d, 0x6d, 0xd8, 0x1e, 0xf9, 0x90, 0x21, 0x45, +0xa8, 0xd2, 0x23, 0xc9, 0xec, 0x88, 0x47, 0xd1, 0xcd, 0xcd, 0x64, 0xbf, 0x8f, 0xb9, 0x1a, 0x03, +0xdf, 0xfb, 0x25, 0x14, 0x5b, 0xf4, 0x01, 0x4d, 0xe0, 0x63, 0xf9, 0x22, 0x2f, 0x01, 0x73, 0x6d, +0x09, 0xb2, 0x0d, 0x70, 0xf2, 0xbe, 0xcc, 0xcd, 0xa4, 0xdf, 0xd4, 0xa5, 0x35, 0x0b, 0xdb, 0x27, +0xd8, 0xd0, 0x40, 0x24, 0x84, 0xc8, 0xa1, 0x4e, 0x29, 0x4f, 0xa1, 0x70, 0x09, 0x7b, 0x9c, 0xe8, +0xe0, 0xe3, 0xeb, 0x07, 0xea, 0xaa, 0xec, 0x58, 0x91, 0x0a, 0x3c, 0xbb, 0x96, 0xe3, 0xd5, 0x7c, +0xa0, 0x80, 0xf0, 0x08, 0x04, 0x41, 0x96, 0x31, 0xee, 0x6a, 0xe9, 0xd8, 0x9c, 0xc3, 0xd0, 0x65, +0x59, 0xfd, 0x8b, 0x5b, 0x43, 0xb8, 0x4d, 0x9f, 0xae, 0x67, 0x8e, 0xc4, 0x24, 0x0a, 0xc8, 0x55, +0x66, 0x91, 0x08, 0x7e, 0x3e, 0xb5, 0x47, 0x94, 0xc1, 0xde, 0xbf, 0xff, 0x7b, 0x6b, 0xae, 0x6c, +0x32, 0xcb, 0x26, 0x5f, 0xf0, 0x0b, 0x4a, 0x56, 0x39, 0xc4, 0x93, 0x69, 0x9c, 0x6d, 0x18, 0x39, +0xa6, 0x47, 0xd4, 0x67, 0xb8, 0x37, 0xea, 0xaf, 0xb3, 0x47, 0xc0, 0x35, 0x52, 0x8b, 0x95, 0xc6, +0x56, 0x32, 0xed, 0xea, 0xbe, 0xa3, 0x8f, 0x09, 0xbd, 0xbb, 0x81, 0x3d, 0x89, 0xf5, 0xad, 0xd8, +0xfe, 0x1a, 0xa1, 0xf7, 0x7d, 0xc1, 0x1b, 0x0c, 0x22, 0x26, 0xa5, 0xcf, 0x36, 0x27, 0xfa, 0x5d, +0xf3, 0x98, 0x96, 0x9b, 0x92, 0xa4, 0x09, 0x79, 0xe6, 0x13, 0xc7, 0x35, 0xac, 0xae, 0x75, 0xf1, +0xba, 0xdf, 0x54, 0x9f, 0xb2, 0x3e, 0x72, 0xbe, 0x5c, 0xf1, 0xab, 0x99, 0x57, 0xaa, 0x10, 0xb6, +0xe6, 0xdd, 0xac, 0x27, 0x3a, 0x61, 0x00, 0xc1, 0x0c, 0x66, 0x4f, 0x80, 0xab, 0x2a, 0x77, 0xb8, +0xb8, 0xe0, 0x28, 0x1e, 0xc2, 0x1c, 0x6e, 0x45, 0x2d, 0x0a, 0x92, 0x7c, 0xca, 0x51, 0xb1, 0x58, +0xbc, 0x10, 0x67, 0x5a, 0x81, 0x8e, 0x05, 0x3e, 0xe3, 0x2d, 0x0e, 0xca, 0x84, 0xf8, 0xc6, 0x70, +0xec, 0x83, 0xc5, 0x20, 0xe6, 0x7e, 0xfe, 0x16, 0xfb, 0x6a, 0xd1, 0x82, 0x40, 0xe0, 0xbb, 0x33, +0x16, 0xd2, 0xef, 0x57, 0x49, 0x31, 0x85, 0x96, 0x20, 0x16, 0x74, 0xfa, 0x09, 0xbf, 0x08, 0xa2, +0xef, 0xa9, 0x7c, 0x55, 0x61, 0x9c, 0xb7, 0x2b, 0xf0, 0x44, 0xf2, 0x07, 0x87, 0x72, 0x7d, 0x31, +0x8a, 0xd4, 0x3c, 0xcd, 0x84, 0x14, 0x4c, 0x87, 0x1a, 0xdf, 0x94, 0x80, 0xa7, 0x81, 0x59, 0xa9, +0x14, 0x08, 0x48, 0x76, 0x57, 0xef, 0xf0, 0x52, 0x09, 0x14, 0xcd, 0x40, 0x07, 0x1c, 0xe3, 0xa1, +0xd4, 0xc8, 0x43, 0x9c, 0x17, 0xab, 0x17, 0xc3, 0x10, 0x47, 0xad, 0x23, 0xe2, 0x24, 0x41, 0xd7, +0xbd, 0xdc, 0xbf, 0x20, 0xf4, 0x93, 0x36, 0xae, 0xfa, 0x7d, 0x29, 0xad, 0x93, 0x8e, 0xbe, 0x0f, +0x7e, 0xf4, 0x68, 0xcc, 0x6f, 0xc1, 0x74, 0x31, 0x08, 0x7e, 0x4a, 0xfb, 0x04, 0xb1, 0x92, 0xa1, +0x73, 0xbf, 0x7d, 0xa9, 0x60, 0x7c, 0x08, 0xf6, 0xa1, 0x62, 0x96, 0x24, 0xcc, 0xf1, 0x98, 0x8d, +0xcf, 0x6d, 0xf1, 0xd1, 0x4a, 0xa2, 0x74, 0xcb, 0x87, 0xe2, 0xd7, 0xb0, 0x24, 0xae, 0x90, 0xf4, +0xbf, 0x57, 0xc7, 0x1a, 0xef, 0xc1, 0x08, 0x55, 0x60, 0x60, 0x3c, 0xa7, 0x71, 0x86, 0x01, 0x12, +0xd9, 0x55, 0x41, 0xe0, 0x6d, 0x96, 0xed, 0x66, 0x6c, 0x40, 0x15, 0xce, 0xc8, 0xf9, 0x3c, 0x37, +0xbb, 0xef, 0x40, 0x7b, 0x7a, 0x90, 0x06, 0x26, 0x9c, 0xd4, 0x76, 0x74, 0x4b, 0xd2, 0x42, 0x49, +0xdc, 0x17, 0x8d, 0xae, 0xdc, 0x7c, 0xce, 0x4c, 0xae, 0xe0, 0x66, 0x59, 0xcb, 0x26, 0xd2, 0x0b, +0xd2, 0x3b, 0xfb, 0x7a, 0x06, 0xf7, 0xa2, 0xe1, 0x6a, 0x5d, 0xd4, 0x24, 0x7a, 0x1f, 0x3a, 0xcb, +0x35, 0x06, 0x58, 0x59, 0x01, 0x53, 0xa3, 0x54, 0x08, 0x70, 0xe3, 0x8b, 0xdb, 0x80, 0x1d, 0x86, +0x83, 0xe1, 0x3c, 0x7d, 0xb1, 0xec, 0x11, 0x27, 0xc2, 0xd0, 0xa0, 0xb7, 0x25, 0x97, 0x6a, 0xd4, +0xb0, 0xaa, 0xeb, 0x64, 0x43, 0xcb, 0xde, 0x3d, 0xd4, 0x6c, 0xa6, 0x34, 0xed, 0x47, 0xba, 0x26, +0x99, 0x8a, 0x3f, 0xd4, 0xea, 0xe1, 0xdf, 0xb1, 0x90, 0x20, 0xe0, 0x5d, 0x1f, 0x5a, 0x71, 0xc1, +0xe7, 0x49, 0x1b, 0x6a, 0xc0, 0xe3, 0x22, 0x01, 0xf1, 0xe5, 0x61, 0xc5, 0xb1, 0x7e, 0x8e, 0x70, +0x98, 0x31, 0xa1, 0x5e, 0xa7, 0x64, 0x3f, 0xa5, 0x42, 0x97, 0xb1, 0xe1, 0xf7, 0x75, 0xca, 0x71, +0xc5, 0x4f, 0xad, 0x7d, 0x45, 0x93, 0x87, 0x1c, 0x10, 0x50, 0x08, 0xa4, 0xc8, 0x17, 0x71, 0x36, +0x54, 0xa3, 0x3a, 0x03, 0xcf, 0xf0, 0x89, 0x2b, 0xe5, 0x61, 0xa9, 0x5b, 0x8b, 0x1f, 0xbd, 0x3b, +0x8a, 0x84, 0x59, 0x55, 0x32, 0xd0, 0xf6, 0x21, 0xb1, 0xae, 0x81, 0x91, 0xda, 0x9e, 0x0e, 0x28, +0x53, 0x28, 0xaa, 0x56, 0x4b, 0x6f, 0xc8, 0x6f, 0x74, 0x92, 0x01, 0x04, 0x88, 0x1b, 0xa1, 0x41, +0x9b, 0xc1, 0x11, 0x67, 0x1a, 0xd1, 0x47, 0x61, 0x2d, 0x64, 0xfe, 0x8e, 0x74, 0xff, 0xc0, 0xc8, +0xfd, 0x55, 0x3f, 0x5e, 0xd8, 0x3a, 0xef, 0x6e, 0x70, 0x3c, 0xc5, 0x2e, 0x19, 0x86, 0x5d, 0xe6, +0x59, 0x52, 0xcf, 0xc4, 0xb5, 0x42, 0x3b, 0x84, 0x85, 0x28, 0x2f, 0x32, 0x84, 0xca, 0x7e, 0x4e, +0x0f, 0xaf, 0x10, 0x89, 0xef, 0x0c, 0x42, 0x68, 0xdf, 0x57, 0xaa, 0x80, 0x20, 0xdb, 0xfd, 0x55, +0x75, 0x78, 0xe9, 0xf4, 0xa0, 0xf4, 0x68, 0x21, 0x8a, 0x30, 0xb2, 0xf4, 0x85, 0x0b, 0xa0, 0x1b, +0x2e, 0x54, 0x03, 0x50, 0x5d, 0xc8, 0xb3, 0xdd, 0xe5, 0x33, 0x67, 0x8d, 0x89, 0x18, 0xa8, 0x13, +0x71, 0xe5, 0xd6, 0x61, 0xda, 0x64, 0x6d, 0xc2, 0x9d, 0xe1, 0x0b, 0xc9, 0xa9, 0x4f, 0x10, 0xd6, +0xe9, 0xdd, 0x40, 0x36, 0x3f, 0x71, 0xdc, 0x40, 0x9f, 0xd2, 0x05, 0x46, 0x54, 0x77, 0xc1, 0x92, +0xc7, 0x27, 0xb1, 0x96, 0x62, 0x19, 0x2a, 0x9f, 0x78, 0xd1, 0x31, 0x3d, 0xff, 0xf2, 0x52, 0xa2, +0x0e, 0x13, 0xf1, 0x65, 0x6c, 0xf9, 0x70, 0x47, 0x94, 0x75, 0x4f, 0xa0, 0x86, 0xd3, 0xbc, 0x71, +0xba, 0x32, 0x92, 0x24, 0xee, 0xd6, 0xd8, 0x65, 0xd8, 0x4e, 0xa7, 0xed, 0x1e, 0x0c, 0x56, 0x29, +0xef, 0x66, 0xd2, 0x68, 0x38, 0x1d, 0x1e, 0xbb, 0x86, 0xbf, 0x6c, 0x32, 0xbb, 0x01, 0x9b, 0x66, +0x2d, 0x15, 0x01, 0x02, 0x9e, 0x2a, 0x10, 0x84, 0xaa, 0xcd, 0xd8, 0x01, 0x37, 0x56, 0xc8, 0x19, +0xe8, 0xcb, 0xfb, 0xaa, 0x7d, 0x61, 0x91, 0x63, 0x9d, 0x27, 0x10, 0xce, 0x80, 0x9c, 0x49, 0xc0, +0xfe, 0x1d, 0xc1, 0x33, 0x16, 0x04, 0xe2, 0x98, 0x9e, 0x94, 0xc7, 0x50, 0x59, 0x27, 0x39, 0xe4, +0x08, 0xd9, 0x26, 0x48, 0x47, 0x2b, 0x5b, 0x50, 0x9b, 0xc1, 0xd7, 0x56, 0xb4, 0x16, 0x15, 0x71, +0xa8, 0x8d, 0xeb, 0x78, 0x75, 0x40, 0x58, 0x00, 0x96, 0x22, 0x95, 0xac, 0xfc, 0xa8, 0xfc, 0x6a, +0x06, 0x75, 0x03, 0x51, 0x42, 0xb1, 0x23, 0x19, 0x85, 0x5b, 0x7c, 0x42, 0xe3, 0xde, 0x35, 0x96, +0x49, 0xcd, 0x30, 0x96, 0xfe, 0x94, 0xde, 0xa0, 0xdd, 0xaa, 0xc3, 0x31, 0x08, 0x04, 0xbf, 0xba, +0x4a, 0x66, 0x79, 0xec, 0x1a, 0x09, 0xea, 0x5f, 0x68, 0xaa, 0xc6, 0x41, 0xd3, 0xd6, 0x21, 0x1e, +0xeb, 0xd4, 0x0f, 0x85, 0x55, 0xfe, 0x50, 0x00, 0x02, 0x1c, 0x76, 0x97, 0x8e, 0x1f, 0x69, 0x1d, +0x4e, 0x9d, 0xa8, 0x8a, 0xfe, 0x33, 0x13, 0xea, 0x43, 0x78, 0x9a, 0xed, 0x1e, 0x12, 0xa9, 0x10, +0xc3, 0x52, 0xd9, 0xe0, 0xfb, 0x32, 0xa4, 0x4d, 0x54, 0xa3, 0x0d, 0x64, 0x08, 0x67, 0x8e, 0x2c, +0xaa, 0x05, 0xc6, 0x7f, 0x1a, 0xc6, 0x77, 0x5c, 0xed, 0xe6, 0x44, 0xe5, 0x68, 0x3b, 0x31, 0xb0, +0xe5, 0xc4, 0x75, 0x6c, 0x32, 0xc6, 0x38, 0x1e, 0xdb, 0x10, 0xb5, 0x7c, 0x04, 0x89, 0x7b, 0xa0, +0x01, 0xa3, 0xcf, 0x11, 0xc1, 0x6a, 0xc5, 0xba, 0x4c, 0x73, 0x47, 0x57, 0x80, 0x9a, 0x63, 0x15, +0x4e, 0x9f, 0x51, 0x64, 0xaa, 0x79, 0x4d, 0x78, 0xb2, 0xa4, 0x27, 0x8c, 0xe1, 0x5c, 0x32, 0x42, +0x56, 0x1f, 0x55, 0x1f, 0x08, 0xa8, 0x5e, 0xb2, 0x76, 0xe1, 0xd0, 0xa5, 0x01, 0xe1, 0x52, 0x87, +0xa1, 0x6e, 0xff, 0x95, 0xe9, 0x4e, 0xb6, 0x69, 0xe9, 0xcc, 0xb8, 0x49, 0xa6, 0x4b, 0xf0, 0xa4, +0xff, 0x2f, 0xbc, 0x7d, 0x68, 0x34, 0xc8, 0x03, 0xa8, 0x37, 0xd2, 0x5c, 0x93, 0x81, 0x34, 0x1a, +0x1b, 0xa0, 0xe2, 0xf3, 0xdf, 0x2e, 0x0b, 0x08, 0x78, 0x75, 0x4f, 0x74, 0x64, 0x07, 0x3a, 0x97, +0x2f, 0xfb, 0xf1, 0xba, 0xf7, 0x8a, 0x05, 0xd8, 0x26, 0x45, 0x31, 0xf5, 0x2a, 0x19, 0xce, 0xa5, +0x8b, 0x7d, 0xd3, 0x8f, 0x5a, 0xf1, 0xb5, 0xc7, 0x2f, 0xe4, 0x1b, 0x3d, 0x7a, 0x76, 0xde, 0x02, +0x3d, 0x9b, 0xd3, 0x1c, 0xa8, 0x23, 0xdc, 0xc1, 0xcb, 0x42, 0xaa, 0x77, 0xe4, 0xaa, 0xef, 0x76, +0x09, 0xeb, 0x09, 0xfc, 0x21, 0x9d, 0x4f, 0xf6, 0x7b, 0x70, 0xcf, 0x1d, 0xf5, 0x87, 0x31, 0x84, +0x68, 0xb3, 0x52, 0xe5, 0xdc, 0x60, 0x5b, 0xae, 0xb5, 0x48, 0x96, 0x10, 0x30, 0x26, 0x19, 0x9a, +0x05, 0xba, 0x6e, 0x3d, 0x47, 0x64, 0xb1, 0xd1, 0x6d, 0x51, 0x60, 0x90, 0xd3, 0x26, 0x1d, 0xeb, +0xd1, 0x70, 0xcf, 0x8d, 0xd6, 0x1f, 0x5d, 0xe6, 0xcd, 0xb9, 0x5b, 0xe0, 0x7f, 0x76, 0x0a, 0xa5, +0x08, 0x39, 0x19, 0x3a, 0xb3, 0x94, 0x5c, 0xcd, 0x34, 0xf3, 0x09, 0xc3, 0xaf, 0xef, 0x16, 0x7c, +0x59, 0x12, 0x96, 0xb7, 0xa4, 0x8a, 0x72, 0x4f, 0x8e, 0x12, 0x95, 0x8c, 0xd4, 0xcb, 0xbe, 0x83, +0x42, 0x3a, 0x45, 0xa6, 0x1b, 0x3f, 0xdc, 0x94, 0x1e, 0xa8, 0x68, 0x2f, 0xbb, 0x2a, 0xb6, 0x59, +0x74, 0x1e, 0x1a, 0x48, 0x5e, 0x28, 0x4f, 0x40, 0x6c, 0x0e, 0xc9, 0x74, 0x43, 0x53, 0x19, 0x82, +0xe8, 0x76, 0x63, 0xbb, 0xe2, 0x29, 0x85, 0x44, 0xa3, 0xac, 0x6f, 0x44, 0xb0, 0x90, 0x99, 0xc8, +0xfe, 0x00, 0x18, 0xba, 0xa7, 0x60, 0x24, 0xfb, 0xe8, 0x45, 0x0e, 0x9a, 0x4d, 0x64, 0xb5, 0x85, +0xe5, 0x5f, 0x7a, 0x79, 0xec, 0xf1, 0x6b, 0x2a, 0x46, 0xd6, 0x2f, 0xae, 0x33, 0xd1, 0x6d, 0x49, +0x21, 0xd7, 0x1c, 0xdb, 0x30, 0x23, 0x22, 0x6f, 0x94, 0xf0, 0xf4, 0x56, 0x8d, 0x91, 0x73, 0x0d, +0x95, 0xf1, 0x8a, 0x71, 0xd6, 0x41, 0xdd, 0x59, 0x35, 0x47, 0xc4, 0xc5, 0x84, 0x99, 0xa2, 0x2f, +0xec, 0x40, 0x8e, 0x94, 0x2a, 0xcf, 0xf1, 0x87, 0x47, 0xa2, 0xd5, 0x9f, 0x36, 0xcb, 0x75, 0x0b, +0x5d, 0x05, 0x88, 0x7f, 0xa9, 0x4a, 0xcb, 0x3c, 0xfa, 0x6d, 0x6f, 0xde, 0x62, 0xe6, 0xa5, 0x43, +0x2e, 0xe8, 0x16, 0xd0, 0x66, 0x68, 0x73, 0xd6, 0xfd, 0x3e, 0xaf, 0xbb, 0x66, 0xf5, 0x33, 0x04, +0xeb, 0x40, 0x3f, 0x31, 0xeb, 0x46, 0x44, 0x34, 0xf4, 0x67, 0x66, 0xeb, 0xd0, 0x8f, 0x8c, 0x4b, +0xd5, 0xd3, 0x99, 0xe4, 0xe2, 0x7e, 0xab, 0x3b, 0x9d, 0x05, 0x4b, 0x92, 0x8e, 0xdc, 0xd7, 0x7a, +0x30, 0x2d, 0x6b, 0xb8, 0xf9, 0x05, 0x3f, 0x8a, 0x86, 0x5c, 0xec, 0x34, 0x52, 0xd0, 0x78, 0x8f, +0x84, 0x7d, 0x0a, 0xef, 0x50, 0x64, 0x60, 0xef, 0x7b, 0x3b, 0x6f, 0x0f, 0x5e, 0x63, 0x6b, 0x1d, +0x7f, 0x31, 0x63, 0x22, 0x83, 0x3c, 0xc5, 0xc5, 0xf7, 0xf6, 0x09, 0x77, 0x65, 0xbd, 0x68, 0x34, +0x9d, 0xd2, 0xd8, 0x69, 0x26, 0x49, 0x0f, 0x60, 0xdd, 0xe0, 0x39, 0x3f, 0x27, 0xe6, 0x21, 0xf5, +0xcd, 0xf6, 0x45, 0x80, 0xbb, 0x8e, 0xea, 0xdd, 0x9c, 0x4d, 0x61, 0x84, 0x36, 0x8c, 0xe1, 0x71, +0xd4, 0xe6, 0x79, 0x7f, 0x02, 0x1d, 0x43, 0x89, 0x45, 0x95, 0x16, 0xf1, 0xe2, 0xea, 0x8b, 0x4e, +0x97, 0x3a, 0x5c, 0x26, 0x2e, 0x76, 0xdc, 0x78, 0xd6, 0x5e, 0xcb, 0x4a, 0x6c, 0xcd, 0x2e, 0xb8, +0x40, 0xf7, 0x1e, 0x87, 0xc5, 0xe0, 0xc4, 0x33, 0x3f, 0x21, 0x1b, 0xeb, 0xe4, 0x06, 0xfa, 0xdd, +0x3e, 0x11, 0xff, 0xe5, 0x1d, 0xb8, 0x1d, 0x8e, 0x58, 0x3f, 0xf1, 0xf6, 0xe8, 0x21, 0xb2, 0x42, +0xb9, 0x59, 0x0a, 0xf4, 0xf7, 0x3b, 0x30, 0xe8, 0x00, 0x00, 0xfb, 0xb7, 0x74, 0x96, 0x9a, 0xf3, +0x62, 0x39, 0x54, 0x46, 0xc6, 0x81, 0x98, 0x30, 0x82, 0x20, 0x92, 0x11, 0xa0, 0xe9, 0x67, 0x8e, +0x1f, 0xd6, 0x02, 0x7e, 0xf0, 0xfd, 0x69, 0x1d, 0xfd, 0x04, 0x01, 0xfa, 0xc3, 0xb8, 0x96, 0xee, +0x12, 0xe8, 0x15, 0xd2, 0x31, 0x1b, 0xc2, 0x30, 0x51, 0xfb, 0x7f, 0x84, 0x09, 0x73, 0x82, 0x90, +0x1c, 0x81, 0x0c, 0xbe, 0x0f, 0xfc, 0x31, 0x20, 0x61, 0x9d, 0x51, 0xc2, 0x7c, 0xc9, 0x9d, 0x7e, +0x44, 0xc8, 0xe7, 0x8d, 0x12, 0x27, 0x66, 0x51, 0x7a, 0x4b, 0xe5, 0x6b, 0x37, 0x5a, 0x08, 0xb8, +0x48, 0x32, 0x32, 0x6d, 0xc4, 0x0d, 0x52, 0xea, 0x4d, 0x98, 0xdc, 0xe6, 0x2b, 0xd4, 0x3b, 0x7c, +0xd0, 0xda, 0x17, 0x9b, 0x98, 0xdf, 0xb7, 0x70, 0x94, 0xe8, 0x78, 0xce, 0x8a, 0xd8, 0x45, 0x74, +0xa3, 0x09, 0x47, 0x36, 0x94, 0x0d, 0x0d, 0x5d, 0x5d, 0x41, 0x44, 0xeb, 0x03, 0x71, 0xbd, 0xdb, +0x49, 0x1d, 0x1d, 0x41, 0x3b, 0xa8, 0x5a, 0xdf, 0xda, 0xf2, 0x3b, 0x0d, 0xb4, 0x49, 0x59, 0xb3, +0x84, 0x64, 0x84, 0xf6, 0xa6, 0x5d, 0xb0, 0xc9, 0x20, 0xc0, 0xb2, 0x39, 0x24, 0xd7, 0x48, 0x62, +0xc1, 0x1e, 0x22, 0x3d, 0xbe, 0xb5, 0x48, 0xc6, 0xa0, 0x5c, 0x21, 0x2b, 0xab, 0x07, 0xaa, 0xba, +0x21, 0x10, 0x28, 0x5d, 0x45, 0xbf, 0x22, 0x8c, 0x75, 0xfb, 0xf4, 0xd4, 0xdf, 0xe5, 0x9b, 0x68, +0x89, 0xea, 0x4d, 0xbb, 0xba, 0xcf, 0xd0, 0xe7, 0xca, 0x2d, 0xc5, 0xb3, 0x89, 0x6a, 0x6a, 0xc7, +0xc9, 0xa5, 0xa9, 0x9b, 0x20, 0x90, 0x3c, 0xc1, 0x88, 0x17, 0x46, 0x85, 0xe0, 0xa9, 0x39, 0x98, +0x8d, 0x45, 0xcb, 0xc6, 0x5b, 0xab, 0xda, 0xb0, 0x0a, 0xa1, 0xc2, 0x06, 0xbe, 0x98, 0x88, 0xe9, +0x89, 0xb8, 0x1f, 0x4a, 0x93, 0x67, 0x93, 0xb8, 0x4c, 0x8a, 0x4f, 0x4b, 0xd8, 0x02, 0x34, 0x34, +0x52, 0x5a, 0xfa, 0x83, 0xd0, 0xa3, 0xa1, 0x7d, 0xc1, 0x67, 0xa7, 0x42, 0x59, 0x0e, 0xde, 0xce, +0x58, 0xce, 0xdd, 0x7d, 0x94, 0xda, 0x49, 0xd7, 0x1d, 0x0c, 0x7b, 0xb3, 0xf9, 0xad, 0x77, 0x5a, +0xb1, 0xd5, 0x80, 0xff, 0x1f, 0x5b, 0x02, 0x10, 0x1b, 0xdd, 0x49, 0xe7, 0x63, 0xd2, 0x27, 0x55, +0x79, 0x06, 0xd3, 0x74, 0xc1, 0x8c, 0x10, 0x71, 0x12, 0xff, 0xc0, 0xdb, 0x8d, 0x1c, 0x93, 0x2d, +0xca, 0xa6, 0x15, 0x71, 0xb9, 0x41, 0xac, 0xce, 0xd6, 0xe7, 0xfd, 0xb6, 0xdd, 0x9c, 0xd1, 0x69, +0x58, 0x8f, 0xf5, 0xc4, 0x57, 0x44, 0x2a, 0xa4, 0xdb, 0x63, 0x7e, 0x57, 0x4c, 0x3c, 0x87, 0xbd, +0x17, 0xc6, 0xdf, 0x04, 0x94, 0x0c, 0x59, 0xf4, 0x6e, 0x6d, 0x1d, 0x57, 0xd4, 0x0a, 0x9f, 0x5d, +0xde, 0x16, 0xe6, 0x56, 0xd3, 0x96, 0xe5, 0x18, 0x65, 0x41, 0x78, 0x35, 0x71, 0xfe, 0x37, 0xc5, +0xca, 0x60, 0x43, 0xac, 0xca, 0x17, 0x21, 0xf3, 0x15, 0x84, 0x68, 0x4f, 0x34, 0x06, 0xc7, 0xd6, +0x00, 0xf9, 0xce, 0xd4, 0x6e, 0x97, 0xe1, 0xf8, 0x43, 0xdd, 0xe6, 0x68, 0xe2, 0x51, 0x21, 0xea, +0x80, 0xe2, 0xe6, 0x2f, 0xa4, 0xf3, 0x17, 0xd8, 0x42, 0x2f, 0xc2, 0xd1, 0xc4, 0x80, 0xa8, 0x77, +0x61, 0x6e, 0x62, 0xca, 0xa4, 0x1d, 0x69, 0xd0, 0x6d, 0x31, 0xd7, 0xef, 0xe3, 0x3b, 0x4e, 0xe1, +0x7e, 0x8d, 0x32, 0x12, 0xe9, 0xbd, 0xea, 0x1d, 0x8f, 0xd7, 0x15, 0xe4, 0x86, 0x84, 0xb5, 0x26, +0xf4, 0x0a, 0xbc, 0x33, 0x04, 0x09, 0x61, 0x40, 0xbb, 0x79, 0x7f, 0xea, 0xb8, 0x8b, 0x94, 0x64, +0x66, 0xd6, 0x9c, 0xac, 0x07, 0xfd, 0x56, 0xd0, 0x07, 0xd5, 0x99, 0x66, 0xf9, 0xbe, 0xfc, 0x8e, +0x61, 0xf0, 0x89, 0xd4, 0x41, 0xe3, 0x8d, 0x06, 0x85, 0x33, 0x77, 0xb8, 0x75, 0xf5, 0xdf, 0xb8, +0x58, 0xca, 0xfb, 0xcf, 0xc5, 0x3e, 0xc2, 0x9d, 0x81, 0x7a, 0x6c, 0x53, 0x0b, 0x27, 0xf8, 0xad, +0xd2, 0x56, 0xa0, 0xf7, 0x1a, 0x92, 0x64, 0x16, 0xcc, 0xbb, 0xf2, 0x1c, 0x38, 0xe8, 0x60, 0x9c, +0x81, 0x79, 0x11, 0xbf, 0x7b, 0x69, 0x12, 0xd6, 0xc4, 0x2d, 0x47, 0x48, 0x7c, 0x87, 0x89, 0x21, +0xbb, 0xc0, 0x8c, 0xd7, 0xaf, 0x51, 0xd1, 0x81, 0xf6, 0xd5, 0x78, 0x75, 0xc0, 0x94, 0xb7, 0xe9, +0x72, 0x2b, 0x93, 0xb7, 0xdc, 0xe5, 0x84, 0xf9, 0x3b, 0x18, 0x32, 0x69, 0xe7, 0xf0, 0xae, 0xd9, +0xb8, 0x24, 0x87, 0xb8, 0x58, 0xdd, 0x6a, 0x5c, 0x98, 0x95, 0x6f, 0xaa, 0x4e, 0x12, 0xaa, 0x54, +0xa4, 0x19, 0xb8, 0x8f, 0x3d, 0x69, 0xbf, 0x99, 0x0d, 0xd7, 0x85, 0x36, 0xd9, 0xaf, 0x0a, 0x69, +0x03, 0x7d, 0xa5, 0xb5, 0xaa, 0x73, 0x73, 0x19, 0xb5, 0xee, 0x86, 0x2e, 0xc1, 0x32, 0x5b, 0x75, +0x5c, 0x31, 0x2e, 0xf4, 0xc3, 0xf2, 0xe0, 0xc3, 0x85, 0x5a, 0x3a, 0x56, 0xa5, 0x39, 0xa7, 0xad, +0xbc, 0xee, 0x7d, 0xe2, 0x75, 0xb7, 0x73, 0x7f, 0xd7, 0x74, 0xa7, 0x30, 0x24, 0x3a, 0x07, 0xea, +0xc8, 0x25, 0x93, 0x22, 0x57, 0xf2, 0x15, 0xbe, 0x34, 0x47, 0x95, 0xca, 0xf6, 0x5e, 0x2a, 0x13, +0x4a, 0x9d, 0xc7, 0x74, 0xcd, 0x8d, 0x9d, 0x2d, 0xd9, 0xad, 0xec, 0xb4, 0x9e, 0x0d, 0x12, 0x36, +0xde, 0x1c, 0xe0, 0x9a, 0x72, 0x05, 0xd2, 0x02, 0xdc, 0xa8, 0x8f, 0xed, 0xd9, 0xd4, 0xa0, 0x51, +0xb3, 0x34, 0xa5, 0xb2, 0x2e, 0xf2, 0xc5, 0xb2, 0x4f, 0xba, 0xfc, 0x3e, 0x7a, 0xf3, 0x91, 0x9c, +0x51, 0x94, 0xa7, 0x79, 0x04, 0xf9, 0xc7, 0x53, 0xbd, 0xf4, 0x88, 0x3f, 0xb6, 0x25, 0x8f, 0x88, +0xc8, 0x0e, 0xc9, 0x43, 0x42, 0x29, 0x6c, 0x9f, 0x4b, 0xb0, 0x82, 0x2e, 0xf4, 0x70, 0xe8, 0x31, +0xe9, 0xbc, 0x59, 0x26, 0xdf, 0x43, 0x7e, 0xc4, 0x6a, 0xa2, 0x87, 0x63, 0x0b, 0x28, 0x1e, 0x5d, +0xf4, 0xef, 0xa1, 0xdf, 0x82, 0x46, 0x68, 0x6f, 0x72, 0xdc, 0x8e, 0x2f, 0xa0, 0x21, 0x52, 0xe2, +0x9f, 0x93, 0xee, 0x1a, 0x03, 0xe9, 0xb7, 0x31, 0x41, 0xfc, 0x3e, 0x24, 0xd6, 0x09, 0x6d, 0x6b, +0x97, 0x4f, 0xee, 0x02, 0xaf, 0xc8, 0x17, 0xcf, 0x20, 0x08, 0xca, 0xe6, 0x95, 0x0c, 0x91, 0x86, +0x67, 0xe8, 0xd8, 0x2c, 0x84, 0x9c, 0xce, 0x92, 0x50, 0xba, 0xf8, 0xdb, 0x1a, 0x35, 0x16, 0x41, +0x42, 0x98, 0x4e, 0x22, 0x63, 0x1b, 0x21, 0x3d, 0xac, 0x8e, 0x9f, 0x4e, 0x4c, 0xd0, 0xba, 0xee, +0x70, 0x71, 0x20, 0x00, 0x0b, 0x08, 0x46, 0x29, 0xbf, 0x35, 0xa0, 0x47, 0x3a, 0x41, 0x3f, 0x2b, +0x91, 0x1c, 0xd2, 0x8a, 0x75, 0x48, 0xf0, 0x1a, 0xa3, 0xed, 0xcb, 0x99, 0xfa, 0xab, 0x97, 0x7a, +0x29, 0xdc, 0x8b, 0x60, 0x4e, 0xc7, 0x6f, 0xcd, 0x7f, 0x4f, 0x31, 0x50, 0xf4, 0x58, 0x6b, 0x4f, +0x44, 0x75, 0x05, 0xbf, 0x35, 0x0d, 0xc1, 0xf0, 0xd2, 0xf9, 0x21, 0xc0, 0x85, 0x21, 0xef, 0x86, +0xc9, 0x9f, 0x44, 0xd1, 0xb0, 0x52, 0xb2, 0x0b, 0x8a, 0x11, 0x4d, 0xb8, 0xe1, 0x2b, 0xea, 0xe2, +0xf0, 0xfe, 0x67, 0x3f, 0x6e, 0x27, 0x32, 0xc3, 0x12, 0x13, 0x7a, 0x37, 0x1e, 0x22, 0xbb, 0xba, +0xbb, 0xe5, 0xae, 0x5d, 0x80, 0xcb, 0x42, 0x29, 0x87, 0x8a, 0x77, 0x74, 0xb2, 0x55, 0xa6, 0xc0, +0x06, 0xbd, 0x1e, 0x48, 0xb9, 0x33, 0xa3, 0x8a, 0xf1, 0x63, 0x24, 0x7d, 0xe4, 0xd0, 0x78, 0x1d, +0x6f, 0x64, 0xac, 0x68, 0x95, 0xdf, 0x6a, 0xc5, 0x40, 0x2d, 0xa5, 0xf8, 0xbb, 0x42, 0xba, 0xd4, +0x99, 0x0e, 0xcf, 0xed, 0x7b, 0xc6, 0x86, 0xbd, 0x05, 0x2f, 0x64, 0x9b, 0xc8, 0x7c, 0xd4, 0xc7, +0x00, 0x24, 0x84, 0x42, 0x65, 0xe3, 0x2a, 0x59, 0xfe, 0x87, 0x5e, 0x83, 0xa9, 0xc3, 0xfd, 0x6b, +0x09, 0x2d, 0x97, 0x32, 0xfa, 0x4f, 0x02, 0x6a, 0x5d, 0xda, 0x7f, 0x4e, 0xe3, 0xfa, 0x7d, 0x74, +0xd0, 0x70, 0x3a, 0x5e, 0x3a, 0x68, 0x5c, 0xc0, 0xb1, 0xc6, 0x3a, 0x2c, 0xb2, 0x23, 0xf8, 0xa4, +0x5f, 0x15, 0x71, 0xb6, 0x49, 0x8a, 0x96, 0x39, 0x4c, 0xc1, 0xff, 0x92, 0x49, 0xfc, 0xd4, 0x0d, +0x04, 0x78, 0xd5, 0xaf, 0x65, 0xac, 0xb0, 0x51, 0x02, 0xf7, 0xc0, 0x78, 0xb0, 0x45, 0x82, 0x8f, +0x63, 0xcd, 0xa1, 0x9b, 0x92, 0xa2, 0xa6, 0x42, 0x82, 0x04, 0x99, 0x6e, 0x60, 0x4a, 0xf4, 0xf0, +0x3a, 0x9f, 0xdf, 0x99, 0x7c, 0x51, 0xb1, 0x93, 0x50, 0xff, 0xb7, 0x8a, 0xe7, 0xd3, 0x75, 0x66, +0x21, 0x3d, 0x5e, 0xba, 0xc4, 0xb6, 0x92, 0x60, 0x57, 0x96, 0x1d, 0x25, 0xfe, 0xcd, 0x1d, 0xed, +0x2e, 0x42, 0xce, 0x2e, 0xcd, 0xf4, 0xf2, 0x1a, 0x0d, 0x3a, 0x70, 0xe4, 0xde, 0xbe, 0xfe, 0xd2, +0x06, 0x13, 0x81, 0x3e, 0xeb, 0xfe, 0x5c, 0x13, 0x77, 0x4f, 0xc1, 0x90, 0x74, 0xe0, 0x70, 0x14, +0xbd, 0x48, 0x25, 0xd1, 0x54, 0xfc, 0x46, 0xa9, 0x27, 0x75, 0x52, 0x0d, 0xd3, 0xdb, 0xf2, 0x97, +0x77, 0x76, 0x6c, 0x23, 0x6f, 0x89, 0xf0, 0xc8, 0xbc, 0xad, 0xb4, 0xa4, 0x58, 0xe4, 0x7e, 0xf1, +0x97, 0x7c, 0x0d, 0x71, 0xe3, 0xdd, 0x10, 0xb6, 0xa0, 0x7c, 0xd4, 0x16, 0x7e, 0x89, 0x6a, 0x65, +0x08, 0x61, 0x7a, 0x0d, 0x08, 0xc8, 0x3a, 0x4b, 0xf0, 0x13, 0x32, 0x70, 0x55, 0x70, 0x85, 0xde, +0x5d, 0xb5, 0xa2, 0x31, 0x1c, 0x8a, 0xce, 0x93, 0x85, 0x43, 0x15, 0x6d, 0x35, 0x22, 0xc9, 0x34, +0x89, 0x5f, 0x19, 0x08, 0x66, 0xcc, 0x21, 0xcc, 0x11, 0xb9, 0x2c, 0xc7, 0x4c, 0x88, 0x48, 0x17, +0xf8, 0xb0, 0x9e, 0xf5, 0xbc, 0x66, 0x01, 0xaa, 0x5e, 0xbf, 0x82, 0x32, 0x4a, 0x3f, 0xc7, 0x78, +0x24, 0x02, 0xcb, 0xc5, 0xb8, 0x96, 0xe4, 0x9f, 0xc6, 0x42, 0x8a, 0xd9, 0x5d, 0xe1, 0x90, 0x39, +0xb4, 0x9e, 0x81, 0x39, 0xd7, 0x59, 0xa3, 0x36, 0xde, 0x13, 0xd0, 0xe6, 0xc1, 0xe0, 0x6e, 0xa3, +0xd5, 0x91, 0xd8, 0x35, 0x4a, 0xc5, 0x82, 0x2c, 0xed, 0x82, 0xd5, 0x53, 0xa1, 0x68, 0xb9, 0x67, +0x1a, 0xf4, 0xa1, 0xf5, 0xb7, 0x64, 0xb7, 0x9e, 0x0f, 0x0a, 0x3e, 0x6e, 0x05, 0x76, 0xac, 0xf0, +0x53, 0xe8, 0x26, 0x7c, 0xd6, 0x01, 0xfe, 0x43, 0x51, 0x7f, 0x21, 0x85, 0x15, 0xac, 0x80, 0x09, +0x3c, 0xc6, 0x97, 0x9c, 0x17, 0xf6, 0x0b, 0x69, 0x4f, 0x02, 0x65, 0xfc, 0x3e, 0xe2, 0x11, 0x6e, +0xd6, 0x6c, 0xda, 0x51, 0x49, 0xe9, 0x4d, 0x8f, 0x8a, 0x26, 0xcf, 0xc3, 0x3d, 0x00, 0xf7, 0xf6, +0x84, 0xc7, 0x2d, 0x37, 0x9f, 0x15, 0x6d, 0xf4, 0x90, 0x3b, 0xab, 0xe1, 0xf1, 0x46, 0xd4, 0x8d, +0x98, 0xf2, 0xc8, 0xe6, 0xcc, 0xc6, 0x55, 0x1e, 0x54, 0x84, 0x3f, 0xe5, 0x6a, 0x63, 0x2c, 0xff, +0xe8, 0x56, 0xe4, 0x69, 0x03, 0xf4, 0xab, 0x08, 0x4e, 0x6e, 0x9d, 0x27, 0x65, 0xe7, 0x25, 0x3b, +0x4f, 0x4f, 0x84, 0x78, 0xf4, 0xcc, 0x18, 0xdb, 0x81, 0xb8, 0x7a, 0x02, 0x0f, 0xef, 0x61, 0x74, +0x5b, 0xfe, 0x58, 0x22, 0x41, 0x3a, 0x33, 0xbc, 0x76, 0x6e, 0xc1, 0x54, 0x78, 0xe9, 0xdc, 0xd9, +0x6d, 0x4f, 0x88, 0xf4, 0x57, 0xe6, 0xc5, 0x44, 0x61, 0xf7, 0xb0, 0x24, 0xc0, 0xaa, 0x65, 0x30, +0xb9, 0x9b, 0xfe, 0x30, 0xa4, 0xa5, 0x79, 0x34, 0x9b, 0x60, 0x3a, 0xf4, 0xd0, 0xbe, 0xa7, 0xa4, +0x54, 0x3f, 0x95, 0xfa, 0x45, 0xed, 0x79, 0x0b, 0x6c, 0xfc, 0x43, 0x8a, 0x5d, 0xcd, 0x82, 0x11, +0xb4, 0xdf, 0x64, 0xa8, 0xb9, 0x83, 0xfe, 0x4b, 0xef, 0x68, 0x3f, 0x1b, 0x36, 0x02, 0x02, 0x44, +0xbf, 0x3d, 0xce, 0x9c, 0xc6, 0xb3, 0x3a, 0x6a, 0xb3, 0xfa, 0x81, 0x15, 0x56, 0xed, 0xbf, 0x3c, +0x33, 0x76, 0x6c, 0x0f, 0x66, 0x0d, 0x22, 0x25, 0x27, 0x61, 0x90, 0x55, 0x0f, 0x9f, 0x08, 0xf4, +0x05, 0x17, 0xaf, 0xbb, 0x8d, 0xf7, 0x9f, 0x51, 0xf5, 0x80, 0xaa, 0xe6, 0x52, 0x40, 0xe8, 0xdc, +0x90, 0x2e, 0xdc, 0x69, 0xe7, 0xbd, 0xf6, 0xad, 0x38, 0xa2, 0x6c, 0x25, 0x30, 0x5e, 0x1c, 0x7a, +0x4a, 0x27, 0xb8, 0xc3, 0x13, 0x40, 0xed, 0x9c, 0x84, 0x1f, 0x0a, 0xad, 0xb5, 0xb4, 0xf8, 0x50, +0x88, 0xc9, 0x62, 0xe2, 0xb1, 0xfa, 0xc0, 0x26, 0x73, 0x9d, 0x7b, 0x2f, 0x9c, 0xd5, 0x4c, 0x92, +0xef, 0xdf, 0x84, 0x51, 0x90, 0x62, 0x89, 0xa3, 0x2c, 0x7f, 0xff, 0x6e, 0xbd, 0xcf, 0x9d, 0x89, +0x23, 0xa9, 0xe1, 0xb6, 0x7b, 0x3a, 0x72, 0x2f, 0xd8, 0x48, 0x3d, 0xe6, 0x64, 0x46, 0x24, 0x97, +0x73, 0x32, 0x10, 0x94, 0xaf, 0xc1, 0xfb, 0x7e, 0x2e, 0x89, 0xa5, 0x5f, 0x34, 0x91, 0x48, 0xd0, +0xdc, 0x63, 0xdf, 0x1f, 0xc6, 0x22, 0x98, 0xcb, 0x0b, 0x1a, 0xb2, 0xff, 0x78, 0x9a, 0xf9, 0x13, +0xac, 0xb7, 0x18, 0xae, 0x62, 0xdd, 0xfd, 0x68, 0x5b, 0x32, 0xb7, 0xbe, 0x41, 0x2a, 0x9a, 0xae, +0xd9, 0xe1, 0xa6, 0xfe, 0xfd, 0xf7, 0x2c, 0x19, 0x92, 0x82, 0x2c, 0x90, 0x58, 0xc2, 0x43, 0x08, +0x2c, 0x91, 0x31, 0xfb, 0xbf, 0x22, 0xd0, 0x53, 0x87, 0x9f, 0x18, 0x3e, 0x73, 0xfb, 0x3b, 0xa3, +0xdd, 0x7a, 0x08, 0xe1, 0xfc, 0x76, 0x21, 0x28, 0xf7, 0x70, 0x10, 0x33, 0xb4, 0x6c, 0xfd, 0x89, +0xb1, 0x2c, 0x17, 0x1a, 0x06, 0xd7, 0xd4, 0x82, 0x63, 0x1f, 0x3c, 0x55, 0x8c, 0xda, 0x4d, 0x8a, +0x44, 0x7f, 0x16, 0x18, 0x5c, 0x34, 0x18, 0x4e, 0xb9, 0x2d, 0x58, 0xfe, 0xf7, 0x96, 0x5b, 0xf8, +0x40, 0xcd, 0x8b, 0xfe, 0x83, 0x63, 0x4b, 0x43, 0x8d, 0x84, 0x94, 0xbe, 0x21, 0xb3, 0x55, 0x09, +0xd2, 0x3c, 0x0b, 0xcf, 0x21, 0x85, 0xe7, 0xb3, 0xa9, 0xeb, 0xd3, 0xb7, 0xc2, 0x27, 0x4c, 0x56, +0x25, 0x0f, 0x54, 0x4d, 0xd4, 0xb6, 0x82, 0xe4, 0x53, 0x06, 0x01, 0x2e, 0x13, 0x46, 0x13, 0x55, +0x9f, 0x6f, 0xb7, 0xb6, 0xb8, 0x33, 0xc7, 0x31, 0x33, 0xf8, 0x71, 0x38, 0x89, 0x3d, 0xc9, 0xa5, +0x6c, 0xbf, 0x77, 0xb2, 0x7f, 0xbd, 0x82, 0xd0, 0x46, 0xa4, 0x56, 0x65, 0x2d, 0xa9, 0x65, 0x57, +0x8e, 0x92, 0x5f, 0xb4, 0xa2, 0x7c, 0x9c, 0x2e, 0x23, 0x2e, 0x6e, 0xb9, 0xc0, 0xa6, 0xf1, 0xd4, +0x71, 0xb2, 0xca, 0x34, 0xbe, 0x9f, 0xe6, 0x81, 0xe4, 0x99, 0xca, 0x82, 0xda, 0x52, 0x07, 0x98, +0xae, 0xaf, 0x68, 0xf7, 0x7e, 0x8e, 0x64, 0x9e, 0xc6, 0x0e, 0x0e, 0x04, 0x9a, 0xf4, 0x4b, 0x85, +0x68, 0x99, 0x82, 0x0b, 0xd8, 0x58, 0xd6, 0xd7, 0xb2, 0xe7, 0x65, 0x49, 0xf6, 0xa2, 0xbd, 0xb3, +0x9b, 0xdb, 0x1c, 0x00, 0x31, 0x45, 0xd8, 0xbe, 0xe0, 0xa9, 0x3f, 0x33, 0xaf, 0x8f, 0xd8, 0x6c, +0xaa, 0x10, 0x1a, 0x7a, 0xb1, 0xa3, 0xa9, 0x93, 0xa2, 0x2b, 0x76, 0xb2, 0x0e, 0x24, 0xa4, 0xb9, +0x52, 0x13, 0x69, 0xff, 0x9b, 0x62, 0x0d, 0x58, 0xaf, 0x89, 0x48, 0x58, 0x2d, 0x47, 0x0f, 0x65, +0xac, 0xb8, 0x8c, 0xaa, 0xc8, 0xb2, 0x59, 0xe8, 0x26, 0xe5, 0x8e, 0x44, 0xf2, 0xbc, 0x8b, 0x97, +0x8a, 0xa0, 0x63, 0xda, 0x2b, 0xd0, 0x90, 0xb0, 0x2b, 0xd4, 0xa3, 0x61, 0x50, 0xb4, 0x53, 0x33, +0xf4, 0x95, 0xe4, 0xf4, 0xcc, 0xba, 0x52, 0x9d, 0xad, 0x2e, 0xf6, 0xc7, 0xd8, 0xcf, 0xd6, 0x19, +0x78, 0xd1, 0x7a, 0x0b, 0x6f, 0x25, 0x98, 0xd7, 0xd8, 0x03, 0x1a, 0x40, 0x89, 0xb7, 0x56, 0x8a, +0xce, 0xfa, 0xd1, 0x42, 0xfb, 0xcf, 0x5c, 0x8f, 0x9e, 0xc7, 0xe2, 0xb3, 0x25, 0x90, 0xf0, 0x2b, +0x72, 0xbf, 0xa4, 0x39, 0xb1, 0x10, 0x3f, 0x96, 0x0a, 0x37, 0xa4, 0xe6, 0x53, 0xff, 0x73, 0x14, +0xa7, 0x26, 0x3b, 0x70, 0x88, 0xfa, 0x0c, 0x59, 0x8e, 0x2d, 0x70, 0x30, 0xac, 0xc8, 0x89, 0xb9, +0xe5, 0x1d, 0x1e, 0x75, 0x76, 0xfa, 0xe8, 0xc3, 0xd2, 0xc5, 0x4c, 0x35, 0x00, 0x13, 0x2c, 0xb8, +0xbb, 0x9b, 0x0b, 0xa8, 0x7d, 0x60, 0xf4, 0x89, 0x6c, 0x3b, 0xc4, 0xfa, 0x6c, 0x2c, 0x18, 0x83, +0xcf, 0x4c, 0x63, 0xe7, 0x7c, 0x09, 0x21, 0x8c, 0xcd, 0xeb, 0xe0, 0x0d, 0x60, 0xbf, 0x6a, 0x0d, +0x6a, 0x91, 0xd8, 0xa6, 0x58, 0x6f, 0x68, 0x58, 0xbc, 0x2c, 0x18, 0xfe, 0x6a, 0x4e, 0x0c, 0x0e, +0x0d, 0x7a, 0x43, 0x2f, 0xc6, 0x6c, 0xcd, 0x73, 0xa2, 0xf3, 0xfa, 0x0b, 0x26, 0xfd, 0x33, 0x10, +0x70, 0xfc, 0x49, 0x9b, 0xcd, 0x1b, 0x78, 0x69, 0x3c, 0xdd, 0x45, 0x2b, 0x4c, 0x80, 0x2e, 0x87, +0xe4, 0x02, 0x03, 0x26, 0x7f, 0x78, 0xe2, 0xb8, 0xb6, 0xb8, 0xe7, 0x13, 0x4c, 0x29, 0x69, 0xf3, +0x5f, 0xa0, 0x1a, 0x24, 0xc8, 0x51, 0xff, 0x40, 0x5d, 0x94, 0x7e, 0x86, 0x29, 0x71, 0x71, 0x98, +0x6a, 0xfd, 0x5f, 0x5b, 0x0b, 0xe4, 0x9f, 0x85, 0x99, 0xfc, 0xf1, 0x42, 0x88, 0xc0, 0x42, 0xb9, +0xdd, 0x1a, 0xdd, 0xc6, 0xf3, 0x9a, 0xd9, 0x7f, 0xe4, 0xaf, 0x9f, 0x58, 0xfe, 0x06, 0xe3, 0x7d, +0xee, 0xdd, 0x73, 0xf0, 0xb2, 0x8b, 0x45, 0x57, 0x16, 0x86, 0x86, 0x9a, 0xcc, 0x3e, 0xcd, 0xa2, +0xa7, 0x59, 0xd8, 0x32, 0xb5, 0xfe, 0xe3, 0xc8, 0x5f, 0xed, 0xa4, 0x66, 0xb4, 0xd6, 0xfe, 0xa4, +0x8c, 0xe4, 0xf5, 0x44, 0xd7, 0x9e, 0x7b, 0x7d, 0x0d, 0x63, 0xa8, 0x93, 0xfe, 0x98, 0x90, 0xae, +0xda, 0x93, 0xeb, 0xf4, 0xee, 0x7c, 0x70, 0x7e, 0x3a, 0xef, 0x72, 0x90, 0xa8, 0x7b, 0x38, 0x44, +0x93, 0x0a, 0x74, 0x2a, 0xfe, 0x49, 0xff, 0x7f, 0x26, 0xbb, 0x84, 0x81, 0x3c, 0x56, 0xf9, 0x8a, +0x12, 0x58, 0xf9, 0x50, 0xc3, 0xc0, 0xf7, 0x44, 0xc6, 0x45, 0x95, 0xfe, 0x8e, 0x17, 0xeb, 0xb9, +0xc5, 0x1c, 0x80, 0x0a, 0x14, 0x63, 0xc7, 0x60, 0xac, 0xa2, 0xb1, 0x67, 0x2d, 0x00, 0xf0, 0xb3, +0x4d, 0xc9, 0x76, 0x9d, 0xd7, 0xf4, 0xfd, 0x49, 0x8a, 0xa7, 0x0d, 0x9e, 0x1d, 0x7b, 0xa8, 0x05, +0x3f, 0x06, 0x80, 0xee, 0x38, 0x03, 0xff, 0xd8, 0x48, 0xcd, 0x41, 0x65, 0xc0, 0xb1, 0x2b, 0x55, +0x94, 0x7e, 0x16, 0xcc, 0x5c, 0x95, 0xb8, 0x19, 0x41, 0x6a, 0x94, 0x1f, 0xf9, 0xd7, 0xb4, 0xec, +0x30, 0x62, 0xc6, 0x4e, 0xfb, 0x3c, 0xba, 0xcf, 0xbf, 0x1a, 0xcf, 0xc8, 0x3c, 0x96, 0x74, 0xbd, +0xcc, 0x92, 0xed, 0x63, 0xc0, 0xaf, 0x60, 0xd7, 0x8b, 0xa8, 0x23, 0xb8, 0xfd, 0x8f, 0x98, 0xe2, +0x51, 0x3f, 0x3b, 0xbb, 0xe6, 0x5e, 0xd5, 0x7b, 0xb5, 0x8d, 0x94, 0xc5, 0x5d, 0x29, 0x29, 0xc0, +0x51, 0x5b, 0xb8, 0x04, 0x4b, 0xeb, 0x93, 0x2f, 0xcb, 0x68, 0x5d, 0xd8, 0x37, 0x20, 0xe1, 0x7e, +0x9f, 0x63, 0x53, 0x4b, 0xe3, 0x20, 0x77, 0x63, 0x22, 0x49, 0x1e, 0x05, 0xae, 0xb0, 0xd5, 0xf1, +0x57, 0x7d, 0x72, 0x32, 0x99, 0x6c, 0xc2, 0x0a, 0xc2, 0x3f, 0xc8, 0x83, 0xe4, 0x43, 0x93, 0x84, +0x42, 0x8c, 0x95, 0x84, 0x27, 0x17, 0xaf, 0x0b, 0xb6, 0xb6, 0x10, 0xca, 0x26, 0x62, 0x08, 0x97, +0x7f, 0x48, 0xf3, 0xf0, 0xc4, 0xdb, 0xff, 0x54, 0xad, 0x32, 0xa5, 0xf5, 0x55, 0x5b, 0xb5, 0x63, +0x6d, 0xf9, 0x20, 0x55, 0x74, 0xaf, 0x8c, 0x38, 0xcf, 0xaf, 0x36, 0x9d, 0xef, 0xb9, 0x97, 0x3f, +0x0a, 0xee, 0x17, 0xff, 0x4b, 0x70, 0x8b, 0xb9, 0xd1, 0x06, 0xac, 0x09, 0x76, 0xe5, 0x2a, 0x18, +0x31, 0x44, 0xde, 0xc0, 0x9f, 0xe6, 0xd5, 0xb1, 0xc9, 0xd6, 0x82, 0xf8, 0x6a, 0x54, 0xdc, 0xba, +0xc5, 0xaa, 0x0f, 0x31, 0xa2, 0xff, 0x41, 0x3c, 0xe8, 0x42, 0x2a, 0x7c, 0xce, 0x3b, 0x3c, 0xc6, +0x16, 0xa6, 0x55, 0xb8, 0xbe, 0xa4, 0xae, 0x57, 0xd6, 0x79, 0x0d, 0x3e, 0x08, 0x82, 0x88, 0x52, +0x3e, 0x32, 0x9b, 0x13, 0x39, 0x91, 0x3d, 0x22, 0xeb, 0x28, 0x82, 0xd9, 0x5e, 0x2f, 0xed, 0x4a, +0xcf, 0x73, 0xe4, 0x1c, 0x5f, 0x42, 0x6e, 0x66, 0xe7, 0xc3, 0x2d, 0xbf, 0x66, 0x2f, 0x6d, 0x43, +0xd0, 0x67, 0xb1, 0xf3, 0x94, 0xad, 0x60, 0x63, 0x63, 0x23, 0xa0, 0x91, 0xdd, 0x8a, 0x0a, 0x97, +0xb1, 0xc5, 0x69, 0x28, 0xad, 0x38, 0xfe, 0xaf, 0xb3, 0x99, 0x38, 0x3f, 0x40, 0xa5, 0xad, 0x2f, +0xb8, 0xcd, 0x83, 0x21, 0x33, 0x77, 0x1a, 0x01, 0x3d, 0xfc, 0x33, 0xd3, 0x90, 0x66, 0x7f, 0xf9, +0x3d, 0x7a, 0x79, 0x16, 0xef, 0xdc, 0xc3, 0x87, 0x21, 0x05, 0xa5, 0x1c, 0xde, 0x7f, 0xc1, 0xba, +0xbd, 0x73, 0xb6, 0x56, 0xdb, 0x4b, 0x09, 0xd7, 0x13, 0xd9, 0x45, 0xd3, 0xaa, 0xb7, 0xa4, 0x86, +0x26, 0x2d, 0xd5, 0xfa, 0xfb, 0xb4, 0xb9, 0xf7, 0x73, 0x33, 0x9b, 0xac, 0x0b, 0x8a, 0x5e, 0x1c, +0xb8, 0xdc, 0xc7, 0xbb, 0xdc, 0x35, 0x91, 0xd3, 0x9d, 0xf1, 0x6c, 0x8b, 0xf9, 0xcf, 0x01, 0x22, +0xe1, 0x0b, 0xce, 0xfe, 0xc3, 0xe8, 0x83, 0xd4, 0x26, 0x43, 0xd2, 0x45, 0xb0, 0xf0, 0xd4, 0x3d, +0x84, 0xce, 0x6e, 0x21, 0xaa, 0x23, 0x84, 0xa4, 0x2d, 0x9f, 0x67, 0x11, 0xe4, 0x1f, 0x2f, 0x52, +0xe8, 0x00, 0x49, 0xb2, 0x0f, 0x5a, 0x07, 0xaa, 0x62, 0xf7, 0x06, 0x3d, 0xb1, 0x79, 0x5d, 0x69, +0x0f, 0xa7, 0xa2, 0xd8, 0x32, 0x3c, 0x9e, 0x19, 0x7d, 0xb9, 0xbe, 0x1e, 0x83, 0x94, 0xce, 0x7a, +0x4d, 0x43, 0x53, 0xfb, 0x97, 0xdb, 0x80, 0x15, 0xd1, 0x34, 0x50, 0xd3, 0xdf, 0xf6, 0x1c, 0x5f, +0x52, 0x8d, 0xf0, 0x23, 0x73, 0xbc, 0x60, 0x4b, 0xd3, 0xba, 0xa5, 0xa4, 0xb9, 0xa3, 0x99, 0x4e, +0x45, 0xf5, 0xf7, 0xbf, 0x7c, 0x66, 0x5d, 0x28, 0xd8, 0xc9, 0x94, 0x44, 0xfb, 0x95, 0x2d, 0x82, +0x57, 0x0f, 0x70, 0x54, 0xe0, 0xd3, 0x35, 0xda, 0x7b, 0xf9, 0x1c, 0x99, 0x5d, 0x13, 0xcd, 0x70, +0x8e, 0x78, 0x48, 0x6c, 0x57, 0xc0, 0xad, 0x44, 0x61, 0x7d, 0x8a, 0xfa, 0x47, 0x60, 0x83, 0x56, +0x6b, 0xfe, 0x38, 0x3c, 0x87, 0x05, 0x81, 0xe5, 0x1f, 0x52, 0x5f, 0x2b, 0xca, 0xaa, 0xa2, 0xf4, +0x53, 0x81, 0x2c, 0xf1, 0x4a, 0x7e, 0xa2, 0x07, 0x87, 0x5d, 0xdf, 0xce, 0xc8, 0xe8, 0x92, 0xcd, +0x40, 0xc6, 0x27, 0x82, 0xbe, 0x35, 0xc8, 0x74, 0xc8, 0x04, 0xf4, 0xd9, 0x76, 0x47, 0xd4, 0x28, +0x70, 0x28, 0x21, 0xb1, 0xb1, 0x4f, 0x07, 0x11, 0xfe, 0xbc, 0x2f, 0x1a, 0x0e, 0x7e, 0x2c, 0xc2, +0x1a, 0x05, 0x6c, 0xda, 0x2f, 0x29, 0x5e, 0x64, 0xcb, 0x49, 0xce, 0x6d, 0x56, 0xdb, 0xf3, 0x29, +0x11, 0x55, 0x6f, 0x74, 0x04, 0x3f, 0x14, 0xaa, 0xce, 0xec, 0x3c, 0x7e, 0x02, 0x83, 0x44, 0xc9, +0xfb, 0x80, 0x64, 0xdf, 0x1b, 0x00, 0x54, 0x7a, 0x9c, 0x78, 0xf5, 0x2c, 0x89, 0x12, 0x3f, 0x25, +0xf1, 0x73, 0x14, 0x25, 0x88, 0x61, 0xf8, 0xa5, 0x38, 0xec, 0x6c, 0xa4, 0x7b, 0x50, 0xe6, 0xff, +0xb8, 0x8a, 0x76, 0xda, 0x9a, 0xa1, 0xe0, 0x3f, 0xf2, 0x3e, 0xe0, 0x71, 0x9c, 0x29, 0xfe, 0x4f, +0xf6, 0xfb, 0x7e, 0x4c, 0xce, 0xc2, 0x48, 0xde, 0x54, 0x4c, 0x10, 0xa1, 0xfa, 0x53, 0x88, 0xd7, +0xe4, 0x75, 0x6c, 0x3d, 0x21, 0x65, 0xa4, 0xa6, 0xaf, 0xb0, 0x0b, 0x28, 0x88, 0x6e, 0x70, 0x20, +0x41, 0xac, 0xaf, 0xb3, 0xfa, 0x02, 0x69, 0xc1, 0x7f, 0xa6, 0x6d, 0x54, 0xd3, 0x98, 0x40, 0x5e, +0xa0, 0x1f, 0x3a, 0x3d, 0xe7, 0x88, 0x40, 0x6f, 0xb4, 0x9d, 0xc8, 0x31, 0xd9, 0xf7, 0x4e, 0x2b, +0x45, 0x99, 0x13, 0xfb, 0x88, 0x4a, 0x80, 0xf9, 0xe4, 0x39, 0xd6, 0x47, 0x0d, 0x01, 0xd8, 0x56, +0x41, 0xb2, 0xf1, 0x9c, 0x1d, 0xd0, 0xbe, 0x5f, 0x5e, 0x09, 0x2d, 0x61, 0x96, 0x8a, 0xd0, 0x0b, +0xc7, 0x49, 0xd5, 0x05, 0x6e, 0xef, 0xce, 0xdc, 0x55, 0x27, 0xd2, 0xe4, 0x05, 0x6b, 0xc2, 0x4e, +0xaa, 0x83, 0xb1, 0x71, 0x23, 0x7f, 0x1e, 0xd0, 0xc0, 0xde, 0x5a, 0x96, 0x09, 0x3c, 0xd0, 0x56, +0x60, 0x1c, 0x94, 0x64, 0x80, 0xf9, 0xb1, 0xee, 0x84, 0x8c, 0x27, 0xce, 0xe4, 0xe9, 0x13, 0x6d, +0xec, 0x21, 0x47, 0x92, 0x4f, 0x8a, 0xe9, 0x53, 0xa2, 0x1c, 0x7b, 0x54, 0x21, 0xd6, 0x2a, 0x9a, +0x18, 0xb6, 0x0c, 0xeb, 0x9a, 0xbe, 0x3b, 0x1d, 0xd7, 0x4d, 0x1c, 0x2f, 0xaf, 0x0e, 0x79, 0x73, +0x66, 0x97, 0xb6, 0x1c, 0x3a, 0xb9, 0x8b, 0xdf, 0x50, 0x19, 0x88, 0xdc, 0x36, 0xd4, 0x03, 0xf9, +0xb1, 0xfe, 0xc6, 0x53, 0xdb, 0xea, 0x94, 0x4a, 0x96, 0xd1, 0x2a, 0x47, 0x0a, 0x89, 0xf6, 0x0a, +0x9c, 0x28, 0xbd, 0x47, 0xb6, 0x00, 0x12, 0xc3, 0x44, 0xd1, 0x12, 0xd6, 0xfe, 0x1b, 0x12, 0xa9, +0x97, 0xb8, 0xe2, 0x78, 0xa8, 0x99, 0x39, 0x25, 0x73, 0x9f, 0x95, 0x79, 0xc3, 0x6b, 0xeb, 0xb7, +0x29, 0x5d, 0x34, 0x60, 0xb4, 0x3b, 0xb3, 0x1f, 0xa4, 0x5d, 0x16, 0xf1, 0x7e, 0x8d, 0x58, 0xb6, +0xae, 0x5d, 0xfc, 0x5c, 0x31, 0x30, 0x50, 0x7c, 0x4b, 0xc3, 0x7d, 0xe7, 0x3c, 0xfd, 0x81, 0x37, +0x8b, 0xa2, 0xa4, 0x35, 0x81, 0x1e, 0x91, 0x59, 0x84, 0x96, 0xe0, 0x3d, 0x6e, 0x59, 0x7a, 0xf9, +0x4d, 0xee, 0x6f, 0x28, 0xc5, 0x6e, 0x06, 0xe1, 0x7f, 0xcb, 0x63, 0x5e, 0x3c, 0x72, 0x30, 0x28, +0xf1, 0xa2, 0x24, 0x0c, 0x48, 0x3f, 0x17, 0xf8, 0x75, 0x22, 0xe3, 0x09, 0x17, 0x56, 0x19, 0xe5, +0x01, 0x8b, 0x0a, 0x94, 0x0a, 0x5a, 0xe3, 0xe4, 0xba, 0x28, 0x7f, 0xeb, 0x03, 0x97, 0x54, 0xaf, +0xe0, 0x5e, 0xa9, 0xa5, 0x15, 0x7f, 0x1a, 0x1d, 0x85, 0xed, 0x1b, 0xcc, 0xa3, 0x91, 0x6b, 0x93, +0x09, 0xe1, 0xe5, 0x01, 0x81, 0x01, 0x51, 0x11, 0x7c, 0xb9, 0x89, 0x09, 0x1d, 0x9f, 0x02, 0xe3, +0x1a, 0x20, 0x41, 0xb0, 0xdb, 0x8b, 0x9d, 0x70, 0x62, 0xb3, 0x52, 0xac, 0x31, 0x36, 0xbc, 0x6f, +0x5d, 0x1e, 0x68, 0x0f, 0xb0, 0x3f, 0xf0, 0xfd, 0xa3, 0xed, 0x56, 0xd9, 0xdd, 0x62, 0xbd, 0x34, +0x55, 0x26, 0x02, 0xc7, 0xac, 0x86, 0x9b, 0xe5, 0x59, 0xb4, 0x4f, 0x62, 0x57, 0x35, 0xc4, 0x87, +0x14, 0xa0, 0xae, 0x44, 0x50, 0xbf, 0x8b, 0xd4, 0x65, 0xdb, 0xd0, 0x78, 0x92, 0xb1, 0xbb, 0x24, +0xa1, 0x35, 0x82, 0xd1, 0xb2, 0xfc, 0xfa, 0x27, 0xeb, 0x11, 0x6a, 0x6e, 0x7d, 0x83, 0xa1, 0x32, +0x81, 0x5b, 0x8b, 0x41, 0xd2, 0x6c, 0xdb, 0xce, 0xa1, 0x72, 0x46, 0xda, 0x8c, 0xd5, 0x4f, 0xf7, +0xbf, 0x71, 0x07, 0x4a, 0x9d, 0x78, 0x48, 0xd3, 0x83, 0x8e, 0x7d, 0x5a, 0x46, 0xf5, 0x74, 0xc7, +0x06, 0xa2, 0xb3, 0x10, 0x18, 0x2c, 0xe1, 0xcf, 0xa2, 0x07, 0x04, 0x0b, 0x68, 0xf5, 0x08, 0xf7, +0x56, 0xf6, 0x2a, 0x3f, 0x12, 0x25, 0x5a, 0x13, 0x25, 0x80, 0xc7, 0x1d, 0x06, 0xd5, 0x18, 0x28, +0xe6, 0x94, 0x1f, 0xcd, 0xd4, 0x58, 0xa2, 0xd4, 0x70, 0x3f, 0xb9, 0x81, 0x4b, 0x2e, 0xa8, 0x00, +0x06, 0xce, 0xca, 0xc2, 0x9c, 0xd8, 0x24, 0x20, 0x9d, 0x16, 0xe3, 0x5d, 0x1a, 0xc0, 0xfa, 0x2d, +0x73, 0x96, 0x90, 0xd5, 0x62, 0x77, 0xe1, 0xe3, 0x2f, 0x58, 0xf4, 0x3f, 0xbd, 0x65, 0x2e, 0xeb, +0xb0, 0x2d, 0xbb, 0xad, 0x94, 0x70, 0x3c, 0xe0, 0x71, 0x97, 0x15, 0xc9, 0x95, 0x8b, 0x12, 0x64, +0x2d, 0x30, 0xc4, 0xd8, 0xd1, 0x5d, 0x99, 0x37, 0x95, 0xf1, 0xcc, 0xac, 0x11, 0x72, 0xc9, 0x53, +0x62, 0x8c, 0xc3, 0x11, 0xda, 0x36, 0xc7, 0x94, 0x55, 0x32, 0x5f, 0xe6, 0x03, 0xa5, 0x57, 0xdd, +0x11, 0x9b, 0x58, 0x00, 0x94, 0x37, 0x41, 0xa4, 0xe3, 0x26, 0x50, 0xa9, 0x77, 0x47, 0x9f, 0x88, +0xb7, 0xf9, 0xb2, 0x6d, 0x5a, 0x09, 0x8f, 0x46, 0x29, 0xdc, 0x87, 0xd4, 0x80, 0x38, 0xf3, 0x06, +0x78, 0xa5, 0xe6, 0xb4, 0x09, 0x00, 0x78, 0xaa, 0x71, 0x6b, 0x41, 0x9b, 0x21, 0x63, 0x86, 0xf9, +0x0d, 0xbc, 0x92, 0x71, 0x3e, 0x53, 0xef, 0xb4, 0x91, 0xaa, 0x86, 0xb8, 0x1e, 0x0a, 0xcd, 0x9c, +0xc9, 0x9c, 0x65, 0xc7, 0x3c, 0x61, 0xdf, 0x8b, 0x9e, 0x7e, 0x3c, 0xc3, 0xdb, 0x10, 0x8a, 0xce, +0xf9, 0xb5, 0xa1, 0x70, 0x8b, 0x3a, 0x39, 0xc1, 0x36, 0x3a, 0xe3, 0x8e, 0xd7, 0x44, 0x3e, 0x21, +0x7e, 0x8b, 0x37, 0xf3, 0xc9, 0x04, 0x8c, 0xab, 0x91, 0x8b, 0xc0, 0x5b, 0x02, 0x65, 0xf5, 0x1b, +0xf4, 0x00, 0x9a, 0xdd, 0x6a, 0x6c, 0x6e, 0x12, 0x83, 0x03, 0xc3, 0x43, 0xf4, 0x17, 0xf1, 0x65, +0x28, 0x2b, 0xcc, 0xe4, 0x02, 0x71, 0x71, 0x84, 0x38, 0x2e, 0xcc, 0xe0, 0x7a, 0xff, 0x5f, 0x24, +0x83, 0x72, 0x56, 0xa0, 0x38, 0xb0, 0x55, 0x94, 0x62, 0x04, 0x62, 0x05, 0x24, 0x1f, 0x4c, 0x51, +0xab, 0x5a, 0x16, 0xff, 0xff, 0x65, 0xb7, 0x9e, 0x88, 0xcb, 0xf5, 0x9b, 0xe9, 0x29, 0x05, 0xc1, +0xa5, 0xd8, 0x5a, 0x9e, 0xb2, 0x53, 0xc6, 0xa2, 0x80, 0xf5, 0xb3, 0x1b, 0xf3, 0x24, 0x96, 0xa1, +0xed, 0xc6, 0x7d, 0xb9, 0xe8, 0x34, 0xf8, 0x00, 0xe5, 0x7b, 0xce, 0x3b, 0x46, 0xd2, 0x32, 0x8a, +0x3c, 0x04, 0x50, 0x52, 0x18, 0x49, 0x0c, 0x36, 0x3f, 0xd2, 0xe4, 0x7e, 0x02, 0x1a, 0x05, 0x52, +0x12, 0x56, 0xf9, 0xe5, 0xa1, 0x4a, 0xaa, 0xf6, 0x2b, 0xef, 0x19, 0x5b, 0xc2, 0x04, 0xc1, 0xe9, +0xfe, 0xf7, 0x84, 0xa2, 0x55, 0xd7, 0x3f, 0xb7, 0xaa, 0xb7, 0x01, 0xd1, 0xd1, 0xe7, 0x20, 0xa3, +0x64, 0xb4, 0x2b, 0xc3, 0x85, 0x05, 0xc9, 0x93, 0x00, 0xdf, 0x94, 0x57, 0x63, 0x4e, 0x02, 0x89, +0x62, 0xea, 0x1e, 0xc2, 0x8d, 0xf9, 0xa6, 0x19, 0x71, 0x68, 0xbd, 0xbc, 0xa0, 0x5b, 0x7b, 0x79, +0xb5, 0xb1, 0xf6, 0x34, 0xe0, 0x55, 0xec, 0x44, 0xdb, 0x16, 0xd9, 0xcc, 0x18, 0x91, 0x56, 0xb1, +0x7d, 0xc5, 0xcf, 0xd8, 0xd1, 0xe9, 0x86, 0x41, 0x6c, 0x0a, 0x2b, 0xa0, 0xfd, 0x3e, 0x0d, 0x57, +0xcc, 0x91, 0x0b, 0x93, 0x25, 0xf8, 0xa9, 0x9d, 0x2e, 0x99, 0x2d, 0x2e, 0xdd, 0x14, 0x88, 0x21, +0x6b, 0x0b, 0x5a, 0x0f, 0xfe, 0xca, 0x71, 0xc4, 0xb8, 0xaf, 0x9e, 0xf7, 0x89, 0x00, 0x47, 0x8e, +0x76, 0xb9, 0xeb, 0x55, 0x5c, 0x1e, 0xcf, 0x40, 0x4e, 0x3e, 0xe3, 0x69, 0x90, 0xf9, 0x59, 0x54, +0x0b, 0x53, 0x21, 0x94, 0xf6, 0xbe, 0x48, 0x44, 0x5e, 0x01, 0x1b, 0x44, 0x36, 0xfd, 0xe5, 0x3b, +0xd8, 0x20, 0xb4, 0xc1, 0xba, 0x90, 0x0b, 0x27, 0xb9, 0x3b, 0xd3, 0x58, 0x53, 0xae, 0x27, 0x57, +0x68, 0x67, 0x5d, 0xc5, 0x0f, 0xf0, 0x26, 0xb8, 0xb8, 0x5e, 0x46, 0xf9, 0x84, 0xeb, 0x6b, 0x63, +0x28, 0x4a, 0x77, 0x65, 0x85, 0xe8, 0x27, 0x31, 0xff, 0x8f, 0x1e, 0xb9, 0xf8, 0x48, 0xeb, 0x52, +0x4b, 0x93, 0x9f, 0x00, 0xb8, 0x24, 0x5a, 0x07, 0x67, 0xd1, 0x96, 0xfc, 0x76, 0x79, 0x1b, 0xb9, +0xab, 0x56, 0xb2, 0x64, 0x5f, 0xe4, 0x70, 0x31, 0x92, 0x3f, 0x94, 0x0f, 0x89, 0x7c, 0xc1, 0x53, +0xa0, 0xdf, 0x6e, 0xf4, 0x24, 0xc5, 0x41, 0x03, 0xf8, 0x67, 0x6d, 0x71, 0x76, 0xb4, 0x02, 0x6c, +0x6c, 0xfe, 0xfc, 0x93, 0xba, 0xd1, 0xdb, 0xc3, 0x7c, 0xbb, 0x9f, 0xf2, 0x6c, 0x37, 0x81, 0x9d, +0x28, 0x40, 0xc3, 0x74, 0x01, 0xe2, 0x56, 0x34, 0xc5, 0x61, 0xe0, 0x87, 0xdb, 0x27, 0x41, 0xac, +0xff, 0x91, 0xb6, 0xe1, 0x73, 0x90, 0xaf, 0x6b, 0x5a, 0x88, 0x74, 0x0a, 0x88, 0xef, 0xde, 0x61, +0xa7, 0xb1, 0x0b, 0xf8, 0xb1, 0xfb, 0x49, 0xeb, 0xf7, 0xe3, 0xdf, 0x51, 0xa9, 0x48, 0x27, 0x6d, +0xe9, 0x58, 0x61, 0x0e, 0x3a, 0xec, 0x23, 0xc9, 0xc4, 0xcc, 0x63, 0x93, 0xc9, 0x4f, 0xdc, 0x86, +0x1e, 0xee, 0xa0, 0x2b, 0x58, 0x4a, 0xd2, 0xb1, 0x26, 0x63, 0x56, 0xda, 0x41, 0xab, 0xcb, 0x2c, +0x89, 0x04, 0x54, 0x5f, 0xdc, 0x91, 0x81, 0x61, 0x77, 0x22, 0xba, 0x83, 0xf9, 0x1c, 0x81, 0xc8, +0x8e, 0x51, 0x66, 0xe0, 0xe8, 0x13, 0xe1, 0xd0, 0xf9, 0xde, 0x9e, 0xcc, 0xe9, 0x67, 0x2f, 0x70, +0xea, 0x3a, 0xf4, 0xf9, 0xd5, 0xef, 0xa6, 0x36, 0xff, 0x4b, 0x4e, 0x6d, 0x9c, 0x6f, 0xfe, 0x4b, +0xd7, 0x7b, 0x56, 0x81, 0xb8, 0xc2, 0x6e, 0x43, 0x98, 0xcb, 0x6e, 0x3f, 0x6a, 0xd4, 0xf8, 0x38, +0xd4, 0xbb, 0x4a, 0x3f, 0xf9, 0x02, 0x29, 0x8a, 0xdd, 0x09, 0x91, 0x90, 0xb9, 0x2c, 0xf2, 0xeb, +0x07, 0xf4, 0x92, 0xba, 0x57, 0xc1, 0x0b, 0xcc, 0x06, 0x49, 0x4e, 0x18, 0x51, 0x30, 0xa8, 0x9a, +0x44, 0x4f, 0xef, 0x23, 0x37, 0xee, 0xa4, 0x04, 0xf0, 0x1e, 0x91, 0x13, 0xe2, 0xeb, 0x22, 0x2a, +0x10, 0x50, 0xe5, 0xb1, 0xc5, 0xcf, 0x0b, 0xe2, 0x27, 0x8f, 0x59, 0xda, 0x9c, 0x3d, 0xca, 0x9f, +0x06, 0x4a, 0xe2, 0xc1, 0x75, 0xff, 0x13, 0x75, 0x3c, 0x5c, 0x57, 0xa1, 0x80, 0x0c, 0xbc, 0xe4, +0x6e, 0x9e, 0x05, 0x7d, 0xc1, 0xe5, 0x2f, 0xa8, 0xf1, 0x91, 0x8a, 0x85, 0x22, 0x56, 0x2e, 0x1c, +0x6e, 0xbb, 0x60, 0xa8, 0x02, 0xdd, 0x1e, 0x6c, 0x32, 0xeb, 0xed, 0xc9, 0xaf, 0x52, 0xf1, 0x1e, +0x5f, 0xf7, 0x1a, 0x0f, 0x97, 0xa7, 0x8a, 0x6c, 0x3d, 0xef, 0xac, 0xae, 0xf3, 0x3b, 0xde, 0x87, +0x82, 0xd7, 0xbb, 0xea, 0x45, 0xa8, 0x67, 0x89, 0x9f, 0x32, 0xed, 0x5c, 0x5d, 0x05, 0x0d, 0xc7, +0xf7, 0x95, 0x09, 0x70, 0xce, 0x99, 0xad, 0x3f, 0x6b, 0x62, 0x72, 0x3f, 0x7b, 0x46, 0x35, 0x56, +0xb9, 0x51, 0x71, 0xba, 0x6a, 0x5f, 0x42, 0xea, 0x79, 0xa5, 0xed, 0x29, 0xf5, 0xbc, 0xe7, 0xf0, +0x0d, 0x1f, 0x9a, 0x57, 0xc0, 0xc1, 0x47, 0x50, 0x4a, 0xa7, 0x3a, 0xf7, 0xba, 0xff, 0x44, 0x87, +0x2e, 0x21, 0xb7, 0xef, 0x83, 0xfd, 0xc6, 0xb2, 0xe1, 0xc1, 0x31, 0x6f, 0x50, 0xf2, 0x8c, 0x0e, +0x88, 0x1c, 0xc4, 0xff, 0x8c, 0x3e, 0x05, 0x9b, 0x4e, 0x06, 0xfd, 0x96, 0xb9, 0x03, 0x09, 0xe5, +0xce, 0xcd, 0xe2, 0x34, 0x0d, 0x27, 0x03, 0xc6, 0xdb, 0x46, 0xca, 0xdd, 0x65, 0x8b, 0xac, 0x23, +0xdb, 0xdf, 0x7f, 0x06, 0xbb, 0xbd, 0x38, 0xa5, 0x35, 0x52, 0x37, 0x2e, 0x38, 0xb5, 0x9f, 0xa1, +0x40, 0xc7, 0x0f, 0x6f, 0x2a, 0x30, 0xcb, 0x22, 0x36, 0xc7, 0x38, 0x18, 0xb6, 0xb0, 0x6d, 0x3b, +0xa4, 0xfa, 0x08, 0x6d, 0x4b, 0x92, 0x56, 0x21, 0x36, 0x09, 0x17, 0xce, 0xbb, 0x4d, 0x49, 0x6e, +0x47, 0xed, 0xe7, 0xbf, 0x63, 0x30, 0xb0, 0x5a, 0xa5, 0x65, 0xa1, 0x05, 0xcf, 0xf1, 0x64, 0xb1, +0x5b, 0x19, 0xbd, 0x40, 0x62, 0x54, 0xb8, 0xcd, 0x10, 0x7f, 0xe0, 0xdb, 0x74, 0x14, 0x3a, 0x13, +0x6e, 0xcd, 0x3d, 0xb5, 0x4c, 0x51, 0xa0, 0x7d, 0xd0, 0x77, 0xf5, 0x0a, 0xba, 0x50, 0x5a, 0xe8, +0xb3, 0xc7, 0x03, 0xf9, 0xb3, 0x96, 0xd3, 0xe8, 0x8a, 0xc5, 0x5e, 0xee, 0x88, 0xe8, 0xbb, 0xb3, +0xc9, 0xc6, 0x14, 0xf0, 0xa1, 0xa3, 0xf7, 0x3e, 0x6b, 0x21, 0x9b, 0x2c, 0x1a, 0x83, 0x21, 0xaa, +0x12, 0xa6, 0xee, 0x2c, 0x8c, 0x20, 0x07, 0x1b, 0xf7, 0x24, 0x44, 0x77, 0x37, 0x59, 0x6a, 0x89, +0x6b, 0xd3, 0x02, 0x1f, 0x60, 0x59, 0x34, 0x43, 0xb4, 0x93, 0x59, 0x6b, 0xf9, 0x21, 0x95, 0x9e, +0xd2, 0xbb, 0x1c, 0x56, 0xe7, 0x46, 0xc0, 0xcc, 0xa4, 0x45, 0x5b, 0x73, 0xb0, 0x84, 0xd1, 0x36, +0xac, 0xa8, 0x92, 0x5c, 0x04, 0xe2, 0x82, 0x3f, 0x46, 0x30, 0x48, 0x7f, 0x1d, 0x70, 0x5d, 0x87, +0x0e, 0x5b, 0x84, 0x56, 0xc0, 0x14, 0xec, 0xbc, 0xc0, 0x30, 0xa6, 0x9c, 0x1a, 0x88, 0x90, 0x63, +0x3d, 0x7a, 0xfb, 0x0e, 0x65, 0x65, 0xac, 0xe6, 0xc4, 0x42, 0x0f, 0x85, 0x27, 0x9f, 0x5a, 0xa7, +0x89, 0x24, 0xce, 0x71, 0xf6, 0x56, 0xcf, 0x51, 0x77, 0x75, 0x79, 0xfc, 0xf8, 0xaa, 0xbc, 0xc5, +0x38, 0x39, 0x03, 0xe6, 0x98, 0x81, 0x1b, 0xe8, 0x26, 0x85, 0xf5, 0x5c, 0x50, 0xc1, 0x69, 0x4a, +0xf2, 0xf2, 0x09, 0x45, 0x8e, 0x5f, 0x33, 0x01, 0x15, 0x94, 0x0a, 0x52, 0x8f, 0xfb, 0x6c, 0x7f, +0x22, 0xb9, 0xf6, 0x1a, 0x13, 0xe3, 0x55, 0xcf, 0xe8, 0x17, 0x3b, 0x06, 0x7d, 0xea, 0x54, 0x66, +0xfd, 0x89, 0x0f, 0xc2, 0x7b, 0x6c, 0xb2, 0xa8, 0x28, 0x4e, 0xfc, 0x53, 0x11, 0x13, 0x35, 0xca, +0x54, 0xbb, 0x8c, 0xbe, 0x4c, 0x23, 0x3d, 0xbd, 0xed, 0x22, 0x2c, 0x09, 0x22, 0x97, 0x11, 0x9e, +0x84, 0x6d, 0xce, 0x6c, 0xd8, 0x02, 0xce, 0x64, 0xcc, 0xb2, 0x50, 0x4d, 0xf7, 0xd3, 0x3a, 0xe3, +0x1d, 0xe2, 0x6f, 0x02, 0xbb, 0xe9, 0x38, 0x3c, 0x9a, 0x8e, 0xca, 0x90, 0x79, 0x2c, 0x08, 0x4b, +0x6e, 0x45, 0xd2, 0x8b, 0x40, 0x00, 0xea, 0x8f, 0x6b, 0xc9, 0xe2, 0xcf, 0x45, 0x93, 0x01, 0x07, +0x11, 0x6e, 0x8c, 0xc7, 0xbd, 0xcc, 0x70, 0xb6, 0x96, 0x9b, 0xe1, 0x00, 0x4d, 0xec, 0x3d, 0xf3, +0xdb, 0x13, 0xae, 0x76, 0xb2, 0xe4, 0x62, 0x69, 0x7b, 0x0b, 0x77, 0x96, 0x94, 0xcb, 0x33, 0x8f, +0xee, 0xea, 0x6d, 0x36, 0x1e, 0xb3, 0x3c, 0x7c, 0x27, 0xd5, 0xe2, 0xdc, 0xb2, 0xd4, 0x1d, 0x1f, +0xbe, 0x42, 0x66, 0xfd, 0xd5, 0xec, 0x18, 0x83, 0x78, 0x89, 0x19, 0xbc, 0x25, 0xed, 0x26, 0x85, +0x4a, 0x7b, 0x5a, 0x76, 0xb8, 0x6a, 0xb2, 0xc5, 0x0e, 0xee, 0x87, 0xb1, 0x0b, 0x0e, 0xd8, 0x96, +0x1e, 0xc2, 0xae, 0x5f, 0x24, 0xf6, 0xcb, 0x31, 0x23, 0x74, 0x39, 0x34, 0xf4, 0x34, 0x2a, 0x5b, +0xbf, 0x73, 0xaa, 0xce, 0xfd, 0xb3, 0x1f, 0xe8, 0x39, 0x5e, 0x1b, 0x6d, 0x17, 0x37, 0xc3, 0xa3, +0x39, 0xa7, 0xb1, 0x68, 0x73, 0x17, 0x5d, 0xa3, 0x69, 0x60, 0x47, 0x98, 0xa3, 0xa6, 0x94, 0x2c, +0x22, 0xdf, 0xb0, 0x75, 0x6a, 0x73, 0xc0, 0x6f, 0x3c, 0xb5, 0x72, 0xe4, 0xd4, 0x0f, 0x1b, 0xeb, +0xdd, 0xb6, 0x8b, 0x10, 0x17, 0x3f, 0xb7, 0x22, 0xb0, 0x85, 0x28, 0x10, 0xed, 0x67, 0x7e, 0x15, +0x1b, 0x2a, 0xc8, 0x4e, 0x61, 0xa2, 0xb0, 0xfa, 0x81, 0x8d, 0xb9, 0x3d, 0xed, 0x0c, 0x28, 0x22, +0x1c, 0xd6, 0xfe, 0x4f, 0xb8, 0x7e, 0x93, 0x5b, 0xbb, 0x52, 0xf5, 0xf3, 0xf9, 0xeb, 0x52, 0x88, +0xd6, 0x7e, 0x84, 0x0e, 0xa1, 0x5a, 0xc6, 0x28, 0x83, 0xe8, 0x3a, 0x02, 0x28, 0x66, 0x8f, 0xd8, +0x3b, 0xd1, 0x8d, 0x3f, 0xba, 0xd6, 0xb3, 0x63, 0xe8, 0xad, 0x5f, 0x68, 0x17, 0xa4, 0x77, 0xd5, +0xe9, 0x16, 0x6b, 0x2c, 0x92, 0xb8, 0xc6, 0x64, 0x68, 0x93, 0x5a, 0x6e, 0x06, 0xb0, 0x95, 0x73, +0xf6, 0xbe, 0xc4, 0xa9, 0xa1, 0x8d, 0x53, 0xca, 0xed, 0xd2, 0xa0, 0x22, 0xcd, 0xc3, 0x99, 0xcf, +0x7c, 0x4c, 0x9c, 0x2d, 0xf5, 0x3c, 0xc4, 0xde, 0x3b, 0x8f, 0xb5, 0x6a, 0xe2, 0x3d, 0xf4, 0x28, +0x2c, 0xb2, 0x3d, 0xdb, 0xec, 0x0c, 0x6d, 0xe2, 0x64, 0x58, 0xf2, 0x3f, 0xe7, 0x3f, 0x5d, 0xac, +0x88, 0x17, 0x47, 0x2d, 0xf9, 0x99, 0x75, 0x0b, 0xdf, 0xf7, 0x6c, 0x99, 0xb7, 0x78, 0xb2, 0x88, +0xb3, 0x96, 0x50, 0x8a, 0x39, 0xc1, 0xb3, 0x12, 0x46, 0x75, 0x33, 0xb9, 0x29, 0x01, 0x69, 0x8d, +0x4b, 0x57, 0xf5, 0xf1, 0xb2, 0x31, 0x05, 0x19, 0x74, 0x4c, 0x86, 0xa2, 0xed, 0x6a, 0x0e, 0xe2, +0x01, 0x60, 0x05, 0x08, 0x14, 0xf8, 0xca, 0x5c, 0x63, 0x17, 0x30, 0x61, 0xc6, 0x24, 0x1a, 0x4e, +0x01, 0x12, 0x6f, 0x96, 0x86, 0x75, 0x57, 0xad, 0xd9, 0x8a, 0xa8, 0x64, 0x0d, 0xf3, 0xb8, 0xc4, +0x28, 0x8d, 0x03, 0xac, 0x2a, 0x9b, 0xfe, 0x87, 0x91, 0xdb, 0x91, 0xc7, 0x44, 0xe2, 0xd2, 0xda, +0xd2, 0xaf, 0x49, 0xb3, 0xe3, 0x27, 0x58, 0x66, 0x80, 0x53, 0xd4, 0x7c, 0xc3, 0x0f, 0x8a, 0xae, +0xc7, 0x0d, 0xca, 0x4e, 0x01, 0xb2, 0x05, 0x99, 0x88, 0xad, 0xc6, 0x6c, 0x86, 0x21, 0x8b, 0x52, +0x92, 0x78, 0x42, 0x7b, 0xfe, 0xfe, 0x4d, 0x1e, 0xef, 0x1a, 0x67, 0x02, 0x3e, 0x2b, 0x31, 0x60, +0x98, 0xa8, 0x71, 0x0c, 0xae, 0xcb, 0x55, 0x03, 0xaf, 0x32, 0xf4, 0x4c, 0x38, 0x05, 0xc0, 0x80, +0x00, 0x0a, 0xce, 0x17, 0x72, 0x5c, 0x52, 0x5e, 0x74, 0x27, 0x33, 0x2a, 0xb9, 0xad, 0x07, 0x00, +0x2d, 0x49, 0xca, 0x34, 0xb8, 0xc1, 0xfa, 0x28, 0x5c, 0x33, 0x51, 0x31, 0x92, 0xc9, 0xb8, 0x9a, +0x22, 0x23, 0x2a, 0x89, 0x89, 0x2e, 0x24, 0x1e, 0x4b, 0xce, 0x7e, 0x2e, 0x24, 0x66, 0xbf, 0xa4, +0x15, 0x6f, 0x0c, 0x57, 0x82, 0x5d, 0x49, 0x59, 0xef, 0x02, 0xd8, 0x4d, 0x56, 0x4c, 0xaf, 0x1b, +0x1e, 0xaf, 0x83, 0x95, 0xaa, 0x28, 0xc5, 0xf5, 0x7d, 0xe5, 0x0d, 0xbe, 0x87, 0xf4, 0xf1, 0x6e, +0xde, 0x18, 0xf4, 0xb4, 0x5f, 0x83, 0x64, 0xf7, 0xee, 0xea, 0xc0, 0x44, 0x2d, 0xc8, 0x11, 0xaa, +0xe5, 0x81, 0x9f, 0x1e, 0xd7, 0xe4, 0x12, 0x42, 0xf0, 0xa2, 0xff, 0xb9, 0x18, 0x32, 0x5c, 0xff, +0xb8, 0x16, 0x41, 0x40, 0x08, 0x4a, 0x63, 0xf9, 0x6e, 0xa6, 0xfc, 0xa6, 0x59, 0x00, 0x0f, 0x29, +0x9a, 0x9e, 0x19, 0x0a, 0xe4, 0xf1, 0x9c, 0xaa, 0x8b, 0x2b, 0xa9, 0x55, 0x77, 0x20, 0x34, 0x26, +0xf0, 0x92, 0xe4, 0x33, 0x64, 0x1e, 0xfd, 0x14, 0xe8, 0x6c, 0xc2, 0xfb, 0xa1, 0x81, 0x71, 0xed, +0x1e, 0xe8, 0xb8, 0x52, 0x83, 0x85, 0x1d, 0x29, 0xcf, 0x49, 0xce, 0x3d, 0x2d, 0xa5, 0x80, 0x5d, +0xfc, 0xe1, 0x91, 0xb2, 0x10, 0x77, 0xef, 0xfb, 0x6a, 0xea, 0xfb, 0x4c, 0x8a, 0xf6, 0xe5, 0xca, +0x33, 0x33, 0x2d, 0x93, 0xed, 0x45, 0x65, 0xc1, 0x73, 0x50, 0xc7, 0x00, 0x02, 0x54, 0x63, 0x04, +0x2f, 0xed, 0x18, 0x5b, 0x81, 0x2a, 0x36, 0x1d, 0xf0, 0x26, 0xef, 0x04, 0x04, 0xa5, 0x91, 0x07, +0xb0, 0x5a, 0xb1, 0x2c, 0xc6, 0xb2, 0x8d, 0x97, 0x69, 0x50, 0xa1, 0x7a, 0x0a, 0x8a, 0x06, 0xb3, +0xbb, 0x10, 0x65, 0x12, 0xaf, 0x6b, 0x7d, 0xc7, 0x03, 0x22, 0x08, 0x7c, 0xad, 0x3e, 0xda, 0x49, +0xb4, 0x00, 0x84, 0x55, 0x7a, 0xc2, 0x73, 0x10, 0x28, 0x6b, 0x2b, 0xca, 0x43, 0x82, 0x60, 0x84, +0xd3, 0x70, 0xf6, 0x11, 0x91, 0x28, 0x61, 0xd1, 0x04, 0xb2, 0x82, 0xac, 0xde, 0xb2, 0x6e, 0xbf, +0x18, 0xb2, 0x4b, 0x46, 0x45, 0x78, 0xef, 0xc5, 0x22, 0xb6, 0x49, 0xdf, 0xc1, 0x7d, 0xf6, 0xe1, +0x08, 0x0b, 0x9b, 0xe7, 0x54, 0x9d, 0xbf, 0xcb, 0x4c, 0x4c, 0x3f, 0x6b, 0xf2, 0x93, 0xd2, 0x12, +0x8b, 0x37, 0x1c, 0x8b, 0x8f, 0x0d, 0xa6, 0xeb, 0x37, 0x90, 0x7c, 0xd8, 0x8b, 0x92, 0x3f, 0x01, +0xc9, 0xa1, 0x94, 0x55, 0xf2, 0xb3, 0xbe, 0xd8, 0x1f, 0x97, 0x6b, 0x2e, 0x9a, 0xfe, 0x75, 0xf1, +0x7c, 0x38, 0x0d, 0x5a, 0x4b, 0xb9, 0x9e, 0x62, 0xe1, 0x9d, 0xd7, 0x21, 0x3b, 0x83, 0x86, 0x50, +0xe6, 0x44, 0x60, 0xf3, 0xc8, 0xbd, 0xeb, 0x8c, 0xc9, 0x58, 0x39, 0xdd, 0xf0, 0x5b, 0xf3, 0xac, +0xb4, 0x34, 0x45, 0x0b, 0x57, 0x11, 0x7b, 0x02, 0xcb, 0x45, 0xa7, 0x86, 0xd8, 0x67, 0xa3, 0x91, +0xb2, 0x81, 0xc2, 0xec, 0xdf, 0x0d, 0xb8, 0x8c, 0x12, 0x99, 0xa5, 0x71, 0x1b, 0x7b, 0x4f, 0x72, +0x80, 0x76, 0x48, 0xd1, 0xdc, 0x7a, 0x1c, 0x82, 0x90, 0xae, 0x82, 0x4c, 0xc5, 0x39, 0xfa, 0x75, +0x62, 0xf0, 0x99, 0x04, 0x4e, 0x4b, 0xfb, 0xf1, 0x21, 0x39, 0x41, 0x30, 0x12, 0x80, 0xe4, 0x6a, +0x86, 0x67, 0x99, 0xc8, 0xd3, 0x05, 0xd9, 0x67, 0x73, 0x63, 0x99, 0xd0, 0xe4, 0x4c, 0xe5, 0x43, +0x0e, 0x21, 0x52, 0xbd, 0x9a, 0xbc, 0x84, 0x16, 0xf8, 0xd3, 0x38, 0xf8, 0xb4, 0x90, 0xbf, 0x19, +0x47, 0xad, 0xb9, 0x9b, 0x2d, 0xff, 0xec, 0xf3, 0x2d, 0xe8, 0xd5, 0xda, 0xf7, 0x6f, 0x8e, 0xf4, +0x8e, 0xe9, 0xf5, 0x2f, 0xf2, 0x18, 0xcd, 0xf6, 0x4d, 0x09, 0xd9, 0x30, 0x29, 0x41, 0x78, 0x8d, +0xa4, 0xf3, 0x80, 0x98, 0x30, 0x2e, 0xb6, 0x1c, 0x79, 0xbe, 0xc9, 0x4d, 0x0e, 0xed, 0xdf, 0xf6, +0x1d, 0x34, 0xc7, 0xe3, 0xcd, 0xdb, 0x48, 0x8a, 0xec, 0x9d, 0xc4, 0xf8, 0xce, 0x37, 0x9a, 0xc1, +0x79, 0x68, 0x6f, 0x6a, 0xdf, 0x5d, 0xd2, 0x4b, 0xf8, 0x4f, 0x0a, 0x28, 0x0f, 0x62, 0x6d, 0x88, +0xd6, 0x2e, 0xd0, 0x28, 0x56, 0x85, 0x82, 0x1c, 0x7d, 0xaa, 0x33, 0x19, 0x1b, 0xdd, 0x78, 0x09, +0xeb, 0x7d, 0xf7, 0x62, 0x8c, 0xc7, 0x0c, 0xb1, 0x2d, 0x0f, 0xe8, 0xd0, 0xa0, 0x39, 0xb8, 0xc6, +0xfd, 0xec, 0x89, 0xde, 0x59, 0x38, 0x95, 0xd6, 0x8d, 0xd6, 0x51, 0x43, 0x2d, 0x42, 0x68, 0x04, +0xe6, 0xcb, 0x3c, 0x2d, 0x9a, 0x1e, 0x31, 0xfe, 0xc9, 0x24, 0x1b, 0x2e, 0xb2, 0x9b, 0xf0, 0xa3, +0xd9, 0xc7, 0xc8, 0x74, 0xf5, 0x42, 0xec, 0x3e, 0x60, 0x85, 0x1b, 0xf5, 0x40, 0x20, 0x84, 0xf4, +0x27, 0x8e, 0xac, 0xd7, 0xcf, 0x5f, 0xab, 0x9b, 0x79, 0x3f, 0x3b, 0x53, 0xf0, 0x02, 0x88, 0x17, +0x47, 0x38, 0x19, 0x5c, 0x9d, 0x05, 0x8c, 0x19, 0xff, 0x4b, 0x9f, 0xcc, 0x95, 0xe1, 0xcd, 0x6d, +0x78, 0x4a, 0xb7, 0x95, 0x54, 0xad, 0xf6, 0x4c, 0xdf, 0xe7, 0x75, 0xb9, 0x0a, 0xaf, 0x8c, 0x4f, +0xc5, 0xc4, 0xfe, 0x06, 0x1b, 0x32, 0x95, 0xbb, 0x0d, 0xbb, 0x11, 0x72, 0x02, 0x6b, 0xdf, 0xfc, +0x9e, 0x83, 0xab, 0x06, 0xb9, 0xd5, 0x1b, 0x80, 0xb0, 0x6a, 0x80, 0x97, 0x16, 0x1d, 0xf2, 0x34, +0xd4, 0x74, 0x5c, 0x23, 0x4b, 0xdf, 0xee, 0x1e, 0x2d, 0x18, 0x2d, 0x36, 0x5d, 0x5e, 0x32, 0x61, +0x17, 0xce, 0x86, 0xf7, 0x47, 0x0f, 0x6c, 0xf6, 0x86, 0x63, 0x5a, 0x93, 0xa3, 0xa8, 0xa4, 0xe5, +0x4c, 0xa3, 0x83, 0xc1, 0x21, 0x19, 0xf1, 0x74, 0xa5, 0x1d, 0x08, 0xe0, 0xde, 0xbd, 0xca, 0x55, +0x6d, 0x16, 0x9e, 0xf0, 0x32, 0x0a, 0x52, 0xe6, 0x35, 0x21, 0x59, 0x8c, 0x2b, 0xc4, 0xee, 0x5b, +0x09, 0x2b, 0x8a, 0x10, 0x69, 0xbb, 0xec, 0x4c, 0x2d, 0x73, 0x84, 0x42, 0xcb, 0x81, 0x41, 0x0e, +0x11, 0x22, 0x5e, 0x3a, 0xd4, 0x23, 0x3c, 0x75, 0xfe, 0x25, 0x47, 0xcf, 0x0e, 0x69, 0xf4, 0x89, +0xae, 0x2d, 0xa6, 0x03, 0x7d, 0x1f, 0x9d, 0x82, 0xb6, 0xa9, 0xb9, 0x8f, 0x42, 0xd1, 0xee, 0x19, +0xdd, 0xa5, 0x89, 0x4a, 0x83, 0xb6, 0x22, 0xe7, 0xf4, 0x0d, 0x23, 0x31, 0x3f, 0x0c, 0xfa, 0xb0, +0x9f, 0xac, 0x98, 0xe6, 0x12, 0x17, 0x01, 0xba, 0x07, 0x72, 0x95, 0x0f, 0xc5, 0xf6, 0xa8, 0xa4, +0xc8, 0x5d, 0x15, 0xd4, 0xc6, 0xe3, 0xbb, 0x4a, 0x74, 0xf5, 0x14, 0x3b, 0xf1, 0x4a, 0xb3, 0x7f, +0x78, 0xda, 0xb3, 0xc3, 0xc2, 0xf0, 0x93, 0xb2, 0x04, 0xc5, 0x71, 0xd9, 0x89, 0xcf, 0x6e, 0x68, +0xb0, 0xb2, 0x11, 0x9e, 0x19, 0x48, 0xf0, 0x2f, 0x8f, 0xa8, 0xf9, 0x7a, 0x9b, 0xa4, 0xbd, 0xd7, +0x42, 0xc3, 0x80, 0xd1, 0x91, 0x3c, 0x6a, 0x46, 0x35, 0x0e, 0x45, 0x93, 0xa7, 0xc9, 0x3e, 0x0b, +0x31, 0x0b, 0x19, 0x31, 0xd7, 0x5d, 0xb7, 0xd8, 0x27, 0x6c, 0x90, 0x02, 0x62, 0x87, 0x06, 0x65, +0x1f, 0x08, 0x97, 0xea, 0x9d, 0xc9, 0x43, 0x79, 0x92, 0x0b, 0x64, 0x01, 0x94, 0xf8, 0xa8, 0x4f, +0x13, 0x1d, 0xe5, 0xeb, 0xbf, 0x5b, 0xbd, 0xc3, 0xe8, 0x80, 0x19, 0xee, 0x54, 0x7d, 0x4b, 0xbc, +0x45, 0x68, 0x42, 0x5e, 0x41, 0xd4, 0x29, 0x60, 0xff, 0x7c, 0x67, 0xaa, 0x9d, 0x45, 0xd3, 0x7a, +0x73, 0x5b, 0x3e, 0x91, 0x4d, 0x3a, 0xae, 0x18, 0x4f, 0x85, 0x6a, 0x1e, 0xcc, 0x82, 0xb7, 0xe1, +0x3b, 0x68, 0xd3, 0x4b, 0xf8, 0xa3, 0x51, 0xf0, 0xf3, 0x62, 0x2c, 0x3c, 0x78, 0x07, 0x75, 0xdb, +0x36, 0xce, 0xf8, 0x61, 0xd8, 0x97, 0xf3, 0x72, 0xa5, 0x2d, 0x1e, 0x40, 0x79, 0x67, 0x2d, 0x76, +0xff, 0xee, 0x08, 0x7c, 0x72, 0x17, 0xd0, 0x1d, 0xf0, 0x46, 0xbb, 0x88, 0xc1, 0x2a, 0x71, 0x30, +0xbc, 0xbc, 0x8f, 0xd1, 0xc1, 0x63, 0xe8, 0xd8, 0xe7, 0x36, 0x1f, 0xbd, 0xe7, 0xc1, 0xc6, 0x2f, +0x5e, 0x05, 0xb3, 0x56, 0x8b, 0xfa, 0xe3, 0xa4, 0xf6, 0x05, 0xab, 0x9b, 0xc9, 0x9d, 0xd6, 0xb3, +0xba, 0x1c, 0x80, 0x65, 0xe0, 0x95, 0x65, 0xc3, 0xa9, 0xde, 0x94, 0x09, 0x85, 0x38, 0x58, 0xc8, +0x78, 0x05, 0x7b, 0x82, 0x42, 0xbb, 0x0f, 0xe2, 0x06, 0xbe, 0x3f, 0xd8, 0x0e, 0xe8, 0x1b, 0xea, +0x1e, 0x2a, 0xdb, 0x67, 0x25, 0x8d, 0x4e, 0xeb, 0xd4, 0x54, 0x79, 0x3d, 0x7c, 0x65, 0x2e, 0x4d, +0x66, 0x2e, 0xe0, 0x8b, 0xe6, 0x2d, 0x6b, 0x2d, 0xf7, 0xa6, 0x1a, 0x43, 0x6e, 0x87, 0xe8, 0xef, +0xc8, 0xb8, 0x9b, 0x34, 0xdc, 0xeb, 0xa7, 0x4c, 0x4b, 0x79, 0xb7, 0xba, 0xbd, 0x18, 0x42, 0x25, +0xca, 0x66, 0x56, 0x52, 0x51, 0xab, 0x04, 0x6d, 0x28, 0xf2, 0x1f, 0x03, 0x78, 0xb6, 0xe9, 0x3a, +0xd2, 0xe2, 0xcf, 0xab, 0xa6, 0xd6, 0xc5, 0xeb, 0x99, 0xac, 0xef, 0x64, 0x7f, 0xf6, 0x9e, 0x01, +0x89, 0x32, 0x77, 0x23, 0x80, 0x7e, 0x90, 0xdf, 0xc9, 0x7d, 0xcf, 0x69, 0x10, 0xfb, 0xbc, 0x39, +0x5b, 0x27, 0x7a, 0x6a, 0xcc, 0xb7, 0x88, 0x2a, 0x87, 0x0e, 0x80, 0xb4, 0xbd, 0x79, 0x8e, 0xfd, +0x1f, 0xa5, 0xa8, 0x3e, 0x06, 0x30, 0x4a, 0xdf, 0x2f, 0xeb, 0xdd, 0xd4, 0x13, 0x30, 0x11, 0xad, +0x03, 0xd5, 0x42, 0x73, 0xae, 0xa0, 0x5e, 0xee, 0xbc, 0xdc, 0x5d, 0xfc, 0xab, 0x5f, 0x92, 0xb8, +0x03, 0x02, 0x6d, 0xc4, 0x0f, 0xb0, 0x75, 0x51, 0xcd, 0x7e, 0x8f, 0xb2, 0x41, 0xec, 0xde, 0xa5, +0x40, 0xe3, 0x59, 0xb9, 0x25, 0x82, 0x26, 0x58, 0x3b, 0xc3, 0x9b, 0xc6, 0x17, 0x4a, 0x20, 0xc7, +0x85, 0x25, 0x50, 0x67, 0xcd, 0x1c, 0x51, 0xa8, 0x37, 0x91, 0xe8, 0xa0, 0x5f, 0x48, 0x4b, 0x37, +0x43, 0xde, 0x62, 0x72, 0x9b, 0x85, 0xa9, 0x69, 0xa3, 0x44, 0x13, 0xa4, 0xc4, 0x5e, 0x57, 0x41, +0xdc, 0x42, 0xe9, 0x4d, 0x77, 0x6f, 0x25, 0xed, 0xd5, 0xef, 0x74, 0x0a, 0x83, 0x90, 0x4c, 0xd9, +0xab, 0x5d, 0xb7, 0xda, 0x8a, 0xf9, 0x90, 0xfe, 0x3a, 0x2b, 0x45, 0x7c, 0x51, 0x73, 0xce, 0xe0, +0xb6, 0x0b, 0xe5, 0x16, 0xbe, 0xc6, 0xb0, 0x96, 0x70, 0x43, 0x69, 0x54, 0x29, 0x4e, 0xff, 0x39, +0xab, 0xc5, 0xb3, 0x26, 0xf5, 0x62, 0xd8, 0xfc, 0x21, 0x7e, 0x2f, 0xbe, 0xf9, 0x04, 0x69, 0x9c, +0xa0, 0x2f, 0x35, 0xbb, 0x75, 0x60, 0x9d, 0xbf, 0x7e, 0x7a, 0x99, 0x8c, 0x6c, 0x49, 0xc6, 0xc1, +0xd7, 0xc9, 0xc8, 0x3f, 0xda, 0x86, 0xe9, 0x10, 0xbc, 0xd4, 0xa9, 0x56, 0x94, 0x24, 0x24, 0x52, +0x79, 0x27, 0x31, 0x78, 0x2c, 0xa1, 0xe6, 0x7a, 0x7b, 0x15, 0xac, 0xf2, 0xc1, 0x81, 0xc5, 0xc2, +0x68, 0x86, 0x6d, 0x30, 0xde, 0x08, 0xe2, 0x5a, 0x53, 0x3d, 0x38, 0x22, 0xbc, 0x04, 0xa6, 0x64, +0x29, 0x6c, 0xb5, 0x06, 0xde, 0x9a, 0xba, 0xe3, 0xc9, 0x6f, 0x6c, 0x01, 0x32, 0xb1, 0x51, 0x02, +0xf0, 0x9c, 0x74, 0x69, 0x99, 0x9f, 0xf6, 0x64, 0x03, 0xa4, 0x10, 0x59, 0x66, 0x44, 0x25, 0xa3, +0x4f, 0x66, 0x95, 0x40, 0x4f, 0xa8, 0xd5, 0xc3, 0xd2, 0xd7, 0x9d, 0x52, 0x30, 0x89, 0x1a, 0x5a, +0xcd, 0x88, 0xbb, 0x7f, 0x5a, 0x34, 0x89, 0xa9, 0xc6, 0xa4, 0x95, 0xa1, 0x21, 0x7a, 0x90, 0x29, +0x74, 0x14, 0x1c, 0x70, 0x81, 0xd3, 0xaf, 0xe7, 0x62, 0x78, 0x85, 0x5c, 0xa0, 0x89, 0xe6, 0x59, +0x49, 0xfb, 0x50, 0x89, 0xb3, 0x69, 0x52, 0xe2, 0x0f, 0x10, 0x87, 0x74, 0xf2, 0xec, 0xb5, 0x72, +0x7d, 0x3c, 0x4b, 0xef, 0xab, 0x4b, 0x2f, 0x9b, 0x75, 0x5e, 0xdd, 0xe4, 0xb0, 0x15, 0x61, 0xa9, +0x8c, 0xad, 0xd8, 0x18, 0x5f, 0x05, 0x49, 0x5e, 0xc7, 0xe5, 0x62, 0xfa, 0xd7, 0x4b, 0x87, 0x19, +0x2c, 0x00, 0xfd, 0xa9, 0x1a, 0xbb, 0xb3, 0x03, 0x49, 0x2d, 0xc8, 0xf8, 0x84, 0x65, 0x8d, 0x8f, +0x9c, 0xf8, 0x39, 0xbf, 0xd1, 0xc9, 0xa2, 0x73, 0x19, 0xdd, 0x73, 0x0a, 0xfa, 0x0a, 0x30, 0x18, +0x1c, 0xb3, 0x0f, 0x05, 0xf3, 0x72, 0x25, 0x37, 0x2d, 0x65, 0xe6, 0x52, 0xfc, 0x05, 0xdd, 0x55, +0x2b, 0x9c, 0x30, 0x05, 0xc3, 0xc6, 0x61, 0xaa, 0x33, 0x75, 0xb3, 0xfb, 0xb2, 0xf9, 0x69, 0x99, +0x3c, 0x94, 0x14, 0x66, 0x97, 0xa9, 0x60, 0xbf, 0x34, 0x01, 0x77, 0x67, 0xc5, 0x0b, 0x20, 0x58, +0xa1, 0xf6, 0x10, 0x3a, 0x96, 0xd4, 0x63, 0x1d, 0x66, 0x86, 0x6d, 0x51, 0x34, 0xc0, 0x70, 0x72, +0xc7, 0x43, 0xca, 0x4a, 0xb3, 0x1d, 0x15, 0x6e, 0x53, 0xa0, 0xba, 0x58, 0xe0, 0x0b, 0x24, 0xa3, +0x95, 0xf7, 0x40, 0x4b, 0x21, 0xcd, 0xa5, 0x79, 0x6e, 0x51, 0x19, 0x61, 0x12, 0x40, 0x36, 0x65, +0x48, 0x16, 0xa9, 0x43, 0x72, 0xa6, 0x1f, 0xf1, 0xf4, 0x07, 0x19, 0x39, 0x9c, 0x26, 0xea, 0xda, +0x55, 0x38, 0x6f, 0x60, 0x0e, 0x43, 0xc9, 0x4a, 0x15, 0x30, 0xbb, 0x01, 0x01, 0x5e, 0xaa, 0xb0, +0x56, 0xdc, 0xfc, 0x52, 0x7d, 0xcc, 0xcc, 0x39, 0x47, 0xa5, 0x50, 0xbf, 0xe6, 0x64, 0xc7, 0xc8, +0xc3, 0x2e, 0x75, 0x8c, 0x1d, 0xcd, 0x44, 0x8a, 0x0b, 0xe2, 0xb3, 0x88, 0x61, 0x19, 0x61, 0x82, +0x29, 0xff, 0xdf, 0x6d, 0xa1, 0x1f, 0xd6, 0xbc, 0xe0, 0xd0, 0x88, 0x23, 0x05, 0xc0, 0x65, 0x2e, +0x16, 0xec, 0x6a, 0x31, 0xc3, 0x56, 0xfd, 0x04, 0xa0, 0x10, 0x6e, 0xab, 0x73, 0xba, 0x49, 0x96, +0x45, 0x30, 0x58, 0xb9, 0x30, 0xb2, 0x3f, 0xae, 0x69, 0x29, 0x1b, 0x7c, 0x54, 0x1b, 0x6c, 0x3f, +0x49, 0x9b, 0x83, 0x92, 0xf2, 0x58, 0x06, 0x9e, 0x3c, 0x2e, 0x0b, 0xd0, 0xca, 0x89, 0x94, 0xb8, +0xe0, 0x10, 0x19, 0x58, 0x88, 0xd0, 0x45, 0x06, 0xd8, 0x78, 0x45, 0xfb, 0x46, 0x9b, 0xe8, 0xe4, +0xa7, 0x40, 0x41, 0xc5, 0x0f, 0xbf, 0x44, 0x45, 0x53, 0x08, 0x9c, 0x60, 0x59, 0x74, 0x8b, 0x74, +0xfb, 0xe1, 0x0d, 0x27, 0x7a, 0xbe, 0xc3, 0x36, 0x4a, 0x54, 0x9f, 0x55, 0x68, 0x05, 0x80, 0x71, +0x3a, 0x3c, 0x0a, 0xb4, 0x10, 0x65, 0x0c, 0xe5, 0xc0, 0x83, 0x62, 0xb1, 0xf0, 0x3f, 0xca, 0xa2, +0x48, 0x3d, 0xb6, 0x1a, 0xc6, 0x83, 0x31, 0xaa, 0xdd, 0x50, 0xb4, 0x5c, 0x04, 0x39, 0x5d, 0xb0, +0xac, 0xc6, 0x43, 0x4a, 0x21, 0xe8, 0xa4, 0x32, 0xdf, 0x67, 0xf3, 0x8c, 0x31, 0x0e, 0x4f, 0x97, +0x85, 0xa9, 0x82, 0x39, 0x01, 0xde, 0x3f, 0x51, 0x4e, 0x21, 0x90, 0x26, 0xfd, 0xeb, 0x2c, 0xab, +0x41, 0x74, 0xc0, 0xb4, 0x7c, 0x95, 0x11, 0xe3, 0xea, 0x13, 0x38, 0x75, 0xda, 0x97, 0x05, 0xb6, +0x12, 0xcd, 0x50, 0x48, 0xf5, 0x66, 0xf6, 0x38, 0x8c, 0xf3, 0xf0, 0x02, 0x00, 0x9c, 0xc6, 0x47, +0x3f, 0xa0, 0x14, 0x5e, 0x6f, 0x9d, 0x1a, 0xc6, 0x02, 0x53, 0x0f, 0x6f, 0x81, 0x3d, 0xdd, 0x1f, +0x32, 0xc7, 0x62, 0x3d, 0x0b, 0x1c, 0xa9, 0x0e, 0xd0, 0xc5, 0x04, 0xf9, 0x82, 0xb4, 0x1f, 0xb4, +0x03, 0x4f, 0x93, 0x17, 0x2d, 0xa4, 0xf8, 0x42, 0x3e, 0x1c, 0x95, 0x78, 0xde, 0x58, 0x17, 0x7a, +0xab, 0xf1, 0x19, 0x68, 0x5d, 0x06, 0xec, 0xed, 0xf1, 0x12, 0xb9, 0xed, 0xa9, 0xce, 0x1a, 0x24, +0x1f, 0xd4, 0x2e, 0xc2, 0x8b, 0x52, 0xee, 0xd0, 0x2b, 0x67, 0xcb, 0xdc, 0x65, 0x28, 0xff, 0x16, +0xc5, 0xe4, 0x77, 0xd7, 0xe4, 0x87, 0xfa, 0x77, 0x17, 0x8d, 0x8c, 0x41, 0x25, 0x53, 0x75, 0xb7, +0x39, 0x4a, 0x82, 0x85, 0x7f, 0x69, 0xbc, 0x21, 0x3e, 0x63, 0xb4, 0xe1, 0xbd, 0x6f, 0x62, 0x7f, +0x23, 0xee, 0x7f, 0x30, 0xde, 0x78, 0xae, 0x7e, 0xe6, 0xd1, 0x00, 0x22, 0xf2, 0xc1, 0x9e, 0x4c, +0xcc, 0x8a, 0xc0, 0x3f, 0x2d, 0xbf, 0x59, 0xd9, 0x94, 0x49, 0xef, 0x54, 0x21, 0x30, 0xb1, 0x8e, +0xfe, 0x69, 0xc2, 0x83, 0x05, 0x8c, 0x52, 0xed, 0xc2, 0x32, 0x8b, 0xbb, 0x28, 0x3e, 0x5e, 0x45, +0xc4, 0xcb, 0x95, 0xa1, 0x65, 0xef, 0x59, 0x15, 0x94, 0xe4, 0xab, 0x95, 0x2f, 0xa6, 0x2f, 0xfe, +0x97, 0x62, 0x15, 0x2a, 0x67, 0x89, 0x81, 0x47, 0xb6, 0xb3, 0x4b, 0x81, 0x37, 0xcc, 0x6a, 0x4b, +0xbf, 0xc5, 0x7d, 0xe7, 0x1f, 0xc3, 0xb3, 0xa0, 0x24, 0x8e, 0x4f, 0x83, 0xa8, 0x7e, 0x8e, 0x66, +0x66, 0xde, 0xd7, 0xd0, 0xa4, 0x5b, 0x36, 0x15, 0x8c, 0xb1, 0xbc, 0x19, 0xa9, 0xd7, 0xef, 0x61, +0xc3, 0xf0, 0xf8, 0x36, 0xa0, 0x58, 0x43, 0xe7, 0xce, 0xf9, 0x91, 0x54, 0x0a, 0x6a, 0x22, 0x1e, +0x73, 0x18, 0xd2, 0x98, 0x17, 0x9a, 0xc1, 0x68, 0x6d, 0xdf, 0x2f, 0xde, 0xac, 0x48, 0x65, 0x7a, +0x65, 0x89, 0xe5, 0x5e, 0xf2, 0x23, 0x5c, 0xfd, 0x72, 0x47, 0x74, 0x24, 0xab, 0xe3, 0x85, 0xb0, +0x0f, 0x33, 0x1d, 0xaa, 0x8d, 0xfe, 0x0a, 0xe9, 0xfc, 0xe3, 0xd8, 0xa7, 0x2e, 0x8e, 0x2a, 0x32, +0xa7, 0xa6, 0xff, 0x53, 0x90, 0x84, 0x0a, 0x34, 0x82, 0x00, 0x1e, 0x0a, 0x5a, 0xd3, 0x13, 0x76, +0xa3, 0x0b, 0x76, 0xf5, 0x4b, 0x34, 0x90, 0x14, 0xbb, 0xb6, 0x23, 0x7d, 0x59, 0xb2, 0xbd, 0x13, +0xa8, 0xfc, 0x26, 0xf4, 0x4d, 0x59, 0xe4, 0x00, 0xce, 0x43, 0x47, 0x8b, 0x0e, 0xde, 0x2f, 0xaa, +0x71, 0x52, 0xd6, 0x73, 0xda, 0xa5, 0x9d, 0xab, 0x03, 0x59, 0x07, 0xbf, 0x6c, 0xf9, 0x16, 0x4b, +0xdb, 0x11, 0xc6, 0xad, 0x47, 0x2b, 0x46, 0x1a, 0x02, 0x13, 0x0e, 0x4e, 0x7c, 0xbf, 0xd6, 0xfc, +0xd5, 0x67, 0xf5, 0x5f, 0x79, 0xac, 0x9c, 0xc0, 0xf1, 0xd4, 0xf1, 0x9f, 0xfe, 0x83, 0x2d, 0x5f, +0x86, 0x4f, 0xcc, 0xf2, 0xc9, 0xb1, 0x18, 0x2c, 0x22, 0xc4, 0x03, 0x98, 0x7d, 0xbe, 0x1f, 0x28, +0x55, 0xe0, 0x1e, 0x6e, 0xed, 0x9f, 0x09, 0x0c, 0x90, 0x84, 0xd1, 0xb3, 0xb6, 0x68, 0x67, 0x0b, +0x8c, 0x20, 0xa9, 0xd1, 0x9b, 0x53, 0xff, 0x9d, 0x04, 0xb4, 0x29, 0x29, 0x8e, 0x56, 0xd6, 0x48, +0x1c, 0xb0, 0x7c, 0x1a, 0x12, 0x53, 0x8e, 0x92, 0xc6, 0x82, 0x89, 0x23, 0xb5, 0x60, 0x32, 0x51, +0xda, 0x61, 0x6d, 0x43, 0x3c, 0x9b, 0xc2, 0x03, 0xa5, 0x41, 0x05, 0xb1, 0x85, 0x30, 0x8c, 0x63, +0xa6, 0xe6, 0x6f, 0xdc, 0x1f, 0xb2, 0xe7, 0x53, 0x59, 0x4e, 0x61, 0x4f, 0xb2, 0xf8, 0x41, 0x6e, +0x7b, 0x11, 0x59, 0x4d, 0x90, 0x09, 0x08, 0xa3, 0xe9, 0xab, 0xea, 0x37, 0xe8, 0x84, 0xea, 0xdd, +0xfe, 0xb1, 0xbe, 0xf6, 0x70, 0x9e, 0xcc, 0x6c, 0x23, 0xd1, 0x1a, 0xa0, 0x04, 0xbc, 0x08, 0x42, +0xbd, 0x70, 0x3d, 0x71, 0xbe, 0x8c, 0x02, 0x6c, 0xd8, 0xf2, 0x93, 0x4e, 0xdd, 0x5a, 0x3f, 0x97, +0x27, 0x27, 0xbb, 0x19, 0x49, 0x94, 0x12, 0xc9, 0x92, 0x2e, 0xfd, 0xc2, 0x09, 0x6e, 0x32, 0x62, +0xa8, 0x6f, 0xf4, 0xc2, 0x4c, 0x5f, 0x53, 0x0d, 0x4f, 0x7a, 0x1d, 0x9d, 0x12, 0x9c, 0x68, 0x60, +0x3a, 0xb3, 0x7c, 0xcc, 0x23, 0x99, 0xda, 0x0c, 0x64, 0x09, 0x4f, 0x63, 0x8b, 0xf9, 0x82, 0x5e, +0xb2, 0x2d, 0xb1, 0x31, 0x4b, 0x94, 0x2d, 0x0f, 0x16, 0x9b, 0xdc, 0xa0, 0x0a, 0x66, 0x51, 0xcf, +0xef, 0x59, 0xbd, 0x99, 0x79, 0xa2, 0xb4, 0x89, 0x2b, 0xd8, 0x4a, 0x30, 0x8f, 0x96, 0x2a, 0x5f, +0x4d, 0xf5, 0xf2, 0xe5, 0x4b, 0x36, 0xcb, 0x55, 0x7c, 0xec, 0x75, 0x94, 0x09, 0x11, 0xf7, 0xa3, +0x3a, 0x39, 0x50, 0xf1, 0xe4, 0xdf, 0xc4, 0x46, 0xe1, 0x71, 0xef, 0xbb, 0x0a, 0x79, 0xa4, 0xb3, +0x2b, 0x9c, 0x44, 0x6e, 0x26, 0xeb, 0x65, 0xe6, 0xb0, 0x0d, 0x3f, 0x2c, 0x33, 0xaf, 0x22, 0x62, +0x8b, 0xd9, 0xc4, 0x10, 0xb9, 0xa5, 0x69, 0xc6, 0xb3, 0x42, 0x0a, 0x86, 0xf1, 0x98, 0x8e, 0xdb, +0x18, 0x01, 0x18, 0xe7, 0x34, 0x8e, 0x8d, 0x3e, 0xb9, 0xc8, 0x48, 0xf5, 0x6a, 0x33, 0xe5, 0x84, +0xf1, 0x78, 0xe8, 0xfc, 0xc8, 0x6b, 0x65, 0x21, 0xe9, 0xdd, 0x49, 0x1b, 0x9d, 0x8d, 0xca, 0x71, +0xcb, 0x40, 0x60, 0xb2, 0x57, 0xcc, 0x02, 0xb9, 0x0e, 0xc9, 0xa3, 0xbb, 0x59, 0x33, 0xd9, 0x91, +0x54, 0x80, 0x34, 0x78, 0x89, 0x2c, 0xb4, 0x3c, 0xb2, 0xd4, 0xef, 0x73, 0x86, 0x87, 0xce, 0xd6, +0x9e, 0xc4, 0xae, 0x69, 0x92, 0x9a, 0x94, 0x4e, 0x8a, 0xd7, 0xf7, 0x22, 0x1f, 0xbc, 0x04, 0xc9, +0xec, 0x19, 0x9a, 0x08, 0xa1, 0xc5, 0xbd, 0x39, 0xb9, 0xad, 0x7d, 0x99, 0x40, 0x37, 0x4a, 0xfe, +0x26, 0x34, 0x07, 0x7f, 0xcb, 0xe8, 0x4b, 0xe0, 0x9e, 0xd3, 0x90, 0x11, 0xe5, 0xda, 0x15, 0xe9, +0x6e, 0x92, 0x16, 0x55, 0x88, 0x12, 0x18, 0x34, 0x78, 0xf0, 0xf4, 0xa4, 0xdc, 0x5d, 0xf6, 0xba, +0xa0, 0xd3, 0x7a, 0x85, 0x35, 0xb6, 0xe9, 0x94, 0xf4, 0xb3, 0x52, 0xae, 0xf2, 0x4f, 0x15, 0xf8, +0x7a, 0x63, 0x6b, 0x31, 0x1b, 0x7f, 0xd3, 0xfc, 0xe9, 0xca, 0x97, 0xe9, 0xa1, 0x6b, 0x3b, 0x75, +0x07, 0x83, 0xb7, 0x56, 0x1f, 0x0a, 0xf9, 0xeb, 0xfb, 0x68, 0x0b, 0x03, 0xf7, 0xc3, 0xc2, 0x92, +0xf0, 0xaa, 0x1f, 0x2d, 0xe2, 0x77, 0xb4, 0x00, 0xa6, 0xbd, 0x7e, 0xbd, 0x06, 0x00, 0x5e, 0x63, +0xb6, 0xd2, 0xbf, 0x56, 0x69, 0xdc, 0xc3, 0x4b, 0x14, 0x49, 0x0f, 0x9e, 0x01, 0x66, 0x1c, 0x07, +0x4f, 0x6c, 0x22, 0x43, 0xc1, 0x0b, 0x2c, 0xa2, 0xc5, 0xc1, 0xb7, 0x8e, 0x4c, 0x42, 0x40, 0x2b, +0x2d, 0x7c, 0xd4, 0x11, 0xf5, 0x19, 0x12, 0xd6, 0xd6, 0xdc, 0x17, 0xe5, 0x42, 0x40, 0x78, 0x7b, +0xfc, 0x61, 0xca, 0x7a, 0x49, 0x6f, 0x1d, 0xca, 0x77, 0x06, 0x49, 0x7d, 0x24, 0xd7, 0x05, 0xb7, +0x8b, 0x23, 0x96, 0xa8, 0xb4, 0x77, 0x8f, 0x5f, 0x17, 0x34, 0x41, 0x53, 0xa3, 0xe2, 0x30, 0xba, +0xc5, 0xb5, 0x19, 0xb5, 0x31, 0x2d, 0xcd, 0x63, 0xa9, 0x9e, 0xdd, 0xeb, 0xab, 0xc2, 0xd0, 0xd9, +0xc0, 0xb0, 0x81, 0x87, 0xe8, 0x7d, 0xf9, 0x59, 0xb8, 0xa9, 0x77, 0xaa, 0xe7, 0x3c, 0x81, 0x8e, +0x09, 0x19, 0xc0, 0xc0, 0x2d, 0x4d, 0x62, 0x10, 0x55, 0x55, 0x53, 0x0d, 0x0b, 0xd2, 0x1d, 0x4e, +0x6a, 0xe3, 0xa9, 0x8f, 0x64, 0x6f, 0x43, 0x58, 0xd6, 0x04, 0x71, 0x7f, 0x4a, 0xc1, 0xd9, 0xc7, +0x89, 0x2b, 0x06, 0x6d, 0xfd, 0xbe, 0x41, 0xfb, 0xd6, 0x0d, 0xc8, 0xaa, 0x9a, 0x88, 0xd3, 0x3a, +0xbd, 0x92, 0x5c, 0x92, 0x7c, 0x72, 0x7c, 0x4f, 0xd2, 0xbb, 0x49, 0xfe, 0xd5, 0x95, 0x14, 0x39, +0xa0, 0xbf, 0x4f, 0x2e, 0xcf, 0xdb, 0x32, 0x3d, 0x3d, 0x14, 0x70, 0xa1, 0x20, 0xa2, 0x4b, 0x68, +0x96, 0xaa, 0x8d, 0xba, 0x72, 0xb7, 0x0f, 0x82, 0x6f, 0x0e, 0xfb, 0x37, 0xd2, 0xe2, 0x29, 0xe7, +0x13, 0x0b, 0x77, 0xe2, 0xf4, 0x98, 0xd4, 0x6e, 0x01, 0xb2, 0xe2, 0x32, 0xc2, 0x76, 0xca, 0x00, +0x2c, 0x5c, 0xb8, 0xe2, 0xca, 0x19, 0x5c, 0x53, 0x11, 0x33, 0x5a, 0x41, 0xce, 0xeb, 0xf4, 0xe6, +0x39, 0xe8, 0x90, 0x7d, 0x1c, 0x6a, 0xf0, 0xf7, 0x88, 0xb1, 0x86, 0x85, 0xa1, 0x4c, 0x15, 0xca, +0x00, 0x73, 0xfa, 0x77, 0xff, 0x5d, 0x75, 0xce, 0x15, 0x2a, 0xa6, 0x1f, 0xd8, 0x20, 0x88, 0xd4, +0x9b, 0x51, 0x46, 0x8b, 0xdc, 0x1b, 0x96, 0x0a, 0x2f, 0x4a, 0xf6, 0x44, 0x89, 0x9f, 0x51, 0x48, +0x99, 0x1f, 0x52, 0x70, 0xe4, 0x91, 0xa2, 0x6e, 0x49, 0x80, 0x24, 0x73, 0x28, 0x83, 0x85, 0xe5, +0x7a, 0x6b, 0xfc, 0x78, 0x26, 0x9f, 0xdf, 0x01, 0x08, 0x99, 0xc7, 0x9a, 0x2a, 0x03, 0xf7, 0x89, +0x46, 0xb8, 0x01, 0x7a, 0x47, 0xea, 0x49, 0x16, 0x57, 0x3d, 0xf6, 0xd5, 0x0a, 0xff, 0x12, 0x81, +0x27, 0x82, 0x46, 0xa1, 0xb5, 0x1a, 0x60, 0xa2, 0x59, 0xa1, 0x06, 0x30, 0xd5, 0x00, 0x04, 0x44, +0x30, 0x3d, 0xa6, 0xb8, 0xb7, 0xbe, 0x92, 0x99, 0x46, 0xb3, 0xa5, 0xe8, 0xcf, 0x14, 0x05, 0x72, +0x09, 0x2c, 0x3a, 0x9a, 0x22, 0x6e, 0x01, 0xa8, 0xb4, 0xf5, 0xc7, 0x40, 0xf1, 0x2a, 0xce, 0xe7, +0x25, 0x40, 0xc1, 0x80, 0x4c, 0x6d, 0x34, 0x76, 0x4b, 0xc9, 0xce, 0x3e, 0x75, 0x98, 0x76, 0x24, +0xaf, 0x14, 0x57, 0x31, 0x7e, 0x56, 0xdc, 0x2b, 0xef, 0x9a, 0xdd, 0x50, 0x95, 0x6a, 0x89, 0xbc, +0x85, 0x59, 0x8b, 0xb5, 0xcb, 0x5a, 0x60, 0x8a, 0xe9, 0x17, 0x2d, 0xe0, 0x29, 0xfd, 0xc9, 0x10, +0xdd, 0xee, 0xc0, 0xc7, 0x43, 0x05, 0x7f, 0xbd, 0x8c, 0x69, 0xf8, 0x39, 0x84, 0x46, 0x8c, 0xf8, +0x7a, 0xc1, 0x33, 0x73, 0xa6, 0x67, 0x4b, 0x66, 0xc9, 0xe8, 0x50, 0x4c, 0x31, 0x26, 0x2e, 0x05, +0x24, 0xad, 0x0a, 0x89, 0xf9, 0x3c, 0x90, 0xc9, 0xd8, 0x60, 0xcc, 0xfc, 0x3a, 0x4f, 0x76, 0x17, +0xb5, 0x76, 0x2f, 0x01, 0x81, 0x04, 0xf0, 0x59, 0xd6, 0x9f, 0x4d, 0xb1, 0x29, 0xb9, 0xe9, 0x44, +0x97, 0xf9, 0x49, 0x24, 0x63, 0x2a, 0xdd, 0x81, 0x94, 0x3e, 0xd5, 0xd8, 0x1d, 0x8f, 0xc0, 0xd8, +0x5d, 0x09, 0xd9, 0xf2, 0x03, 0xaa, 0xff, 0xf4, 0x89, 0x10, 0xfa, 0x91, 0xb5, 0x1f, 0x6a, 0xd0, +0x2a, 0x37, 0x3a, 0x8d, 0x7f, 0x58, 0x20, 0x9a, 0x6f, 0xd9, 0x23, 0xb8, 0x86, 0xe0, 0x0c, 0x29, +0x79, 0x55, 0x53, 0xe8, 0xb4, 0x71, 0xab, 0xfd, 0x3c, 0x0d, 0xf6, 0xab, 0x62, 0x8c, 0xd4, 0x51, +0xf0, 0x16, 0x15, 0xfc, 0x29, 0x7b, 0x96, 0x8f, 0x26, 0xb3, 0xbd, 0xcc, 0xfa, 0x7d, 0xed, 0x6d, +0xcf, 0xe0, 0x5c, 0x79, 0x6c, 0xa6, 0xc8, 0x18, 0x4b, 0x84, 0x63, 0x50, 0xcf, 0x57, 0x1a, 0x8e, +0xe2, 0x5f, 0xbf, 0x06, 0xd0, 0x4a, 0x13, 0x51, 0x0a, 0xb4, 0xaf, 0x1e, 0x69, 0x2d, 0x1c, 0xf5, +0xbd, 0x30, 0xb2, 0xbb, 0x9b, 0x48, 0x10, 0x4a, 0x13, 0x15, 0x1f, 0xb2, 0x51, 0x28, 0x9a, 0xcc, +0xa1, 0x97, 0x63, 0x8f, 0x0a, 0xad, 0x24, 0x26, 0x9a, 0xc8, 0xb6, 0xba, 0xf5, 0x1c, 0x09, 0xc3, +0x2f, 0x4d, 0xe6, 0x89, 0xc9, 0xf4, 0xdc, 0x4e, 0x0b, 0x43, 0xfd, 0xe6, 0x25, 0x7e, 0x47, 0xb8, +0xbe, 0x05, 0x0b, 0x53, 0x37, 0xab, 0xec, 0x9f, 0xd0, 0xa8, 0xb0, 0x56, 0xfa, 0x1d, 0xa9, 0x4f, +0xa4, 0xbc, 0x31, 0xe4, 0x1c, 0x0d, 0x01, 0xc5, 0x18, 0x34, 0x87, 0x5c, 0x6e, 0xe4, 0xd3, 0xa6, +0x46, 0x36, 0xc1, 0x1a, 0x9a, 0x7c, 0x5f, 0xe2, 0x0c, 0x37, 0xd2, 0xd1, 0xcf, 0xb4, 0xf4, 0x9d, +0xe6, 0xf6, 0x8b, 0x41, 0xbc, 0xc0, 0x52, 0x55, 0x5f, 0x1f, 0x65, 0x83, 0xcd, 0x27, 0x20, 0x37, +0x02, 0x86, 0xae, 0xfb, 0xb5, 0x43, 0xef, 0x85, 0xba, 0x1a, 0xf0, 0x0f, 0x23, 0xf2, 0xc8, 0x17, +0x3b, 0x9b, 0xf6, 0x56, 0x8b, 0xf1, 0x18, 0x49, 0x3d, 0x15, 0x39, 0xed, 0x6c, 0x92, 0x88, 0xe3, +0x4f, 0x18, 0x38, 0xf9, 0x6d, 0xa5, 0x4c, 0x3d, 0x7f, 0x24, 0x3f, 0xcf, 0xe5, 0x3a, 0xd8, 0xcf, +0x6b, 0x3d, 0xc9, 0x1b, 0x64, 0x35, 0x47, 0xf6, 0x81, 0xb1, 0xd0, 0x62, 0xb1, 0xdd, 0xe8, 0x38, +0x0b, 0xf8, 0x8f, 0x4c, 0x1f, 0x59, 0xf5, 0x16, 0xde, 0xfc, 0x92, 0x4e, 0x45, 0x90, 0xef, 0x04, +0x0e, 0x3a, 0xc1, 0x6a, 0xd9, 0x4f, 0x11, 0x62, 0xf2, 0x94, 0xb2, 0x49, 0xee, 0x76, 0xf1, 0x69, +0xec, 0x55, 0x65, 0xda, 0xeb, 0x34, 0x07, 0x57, 0x22, 0x2b, 0x58, 0xbf, 0xc7, 0xe8, 0x10, 0xa9, +0xc6, 0xa5, 0x27, 0xb1, 0xa7, 0x36, 0x9e, 0xad, 0x84, 0x94, 0xfc, 0x7e, 0xe6, 0x00, 0xa1, 0x77, +0x63, 0x17, 0xfa, 0x91, 0x44, 0xdc, 0x9a, 0x94, 0x34, 0xf3, 0x42, 0x7f, 0xa2, 0x09, 0xe1, 0x07, +0x98, 0xb5, 0xb6, 0x8b, 0x76, 0xf7, 0x49, 0x51, 0xef, 0x0b, 0xa7, 0x8e, 0xe7, 0x19, 0x03, 0xa0, +0x0e, 0x17, 0x16, 0x57, 0x84, 0xb7, 0xe2, 0x27, 0x0f, 0x6c, 0x79, 0xda, 0x5a, 0xfe, 0x16, 0x4a, +0xb1, 0x8b, 0x5b, 0x3e, 0x05, 0x23, 0xb2, 0x64, 0x7a, 0xe4, 0x04, 0x82, 0x4b, 0x10, 0xdd, 0xc3, +0x61, 0xf3, 0xbe, 0x29, 0x4e, 0xf4, 0x58, 0x20, 0x6b, 0x0d, 0x2d, 0x13, 0x9d, 0x47, 0x58, 0x3b, +0x07, 0xcb, 0xaf, 0xb0, 0xd1, 0xb6, 0x40, 0x33, 0xd1, 0x7d, 0x00, 0x1d, 0x22, 0x18, 0x8e, 0x66, +0x1b, 0x2f, 0xa0, 0xf3, 0xc8, 0xaa, 0x1a, 0x12, 0x10, 0x84, 0xf6, 0x68, 0xae, 0x44, 0x49, 0xa3, +0x78, 0x75, 0xfe, 0x8e, 0x11, 0xfd, 0x9a, 0x79, 0xde, 0x4b, 0xf6, 0xe9, 0xab, 0x4f, 0xb0, 0x2a, +0x43, 0x20, 0x31, 0x1a, 0x1f, 0xf4, 0x22, 0x96, 0x1b, 0xc8, 0x76, 0x35, 0xcf, 0x2f, 0x8d, 0x63, +0x8f, 0xfd, 0x01, 0xc6, 0x99, 0xac, 0x2c, 0x88, 0x7b, 0xfe, 0x5d, 0xe1, 0x6d, 0x2a, 0x6e, 0x2a, +0x85, 0x84, 0x72, 0xe0, 0x91, 0xa9, 0xc9, 0x1c, 0x3e, 0x94, 0x59, 0xbc, 0xff, 0x16, 0xfa, 0xf4, +0x26, 0xf9, 0x06, 0x1e, 0x94, 0x95, 0x22, 0xab, 0x0d, 0xeb, 0xf6, 0xfe, 0x23, 0xb0, 0x96, 0xdd, +0xf2, 0x1e, 0xe5, 0x18, 0x18, 0xab, 0x34, 0x4c, 0x30, 0x75, 0x1b, 0x6b, 0xf1, 0x3d, 0xe4, 0x7d, +0x13, 0x7d, 0x98, 0x97, 0xc4, 0xfb, 0x99, 0xd0, 0xa3, 0x13, 0x7d, 0xb9, 0x9e, 0x01, 0x30, 0x93, +0x20, 0x39, 0xe0, 0x48, 0x3e, 0x6c, 0xa9, 0xaa, 0x74, 0x06, 0x73, 0x53, 0xb3, 0x94, 0x26, 0xa1, +0x99, 0x60, 0x3d, 0x70, 0x9c, 0x35, 0x66, 0x80, 0x80, 0x1e, 0x4f, 0xbd, 0x3e, 0x21, 0x71, 0xd6, +0xda, 0x4e, 0x71, 0x9a, 0x15, 0x88, 0x11, 0xe7, 0x85, 0x26, 0xf2, 0x08, 0x39, 0xd3, 0x8a, 0xd5, +0xbe, 0x9e, 0xdd, 0xa2, 0x14, 0x30, 0x78, 0xcf, 0x77, 0x80, 0x03, 0x35, 0xea, 0xf3, 0xe4, 0x84, +0x5b, 0x85, 0x0c, 0x9c, 0xc5, 0xa7, 0x95, 0x77, 0xda, 0x91, 0xa3, 0xe6, 0x2b, 0xe4, 0xa1, 0x56, +0xbc, 0xda, 0x89, 0xfe, 0xa8, 0xb7, 0x7d, 0x15, 0x54, 0x2f, 0x67, 0xb1, 0x8c, 0x61, 0x79, 0x3c, +0xb3, 0x64, 0x8c, 0x16, 0x4d, 0xf2, 0x04, 0x98, 0xd4, 0xd7, 0xc2, 0x7f, 0x5e, 0xc3, 0x6d, 0x20, +0x21, 0x63, 0x2d, 0xbe, 0xeb, 0x0e, 0x30, 0xf0, 0x48, 0x1d, 0x44, 0xb0, 0xef, 0x52, 0x05, 0x09, +0xe4, 0x32, 0xe0, 0xfe, 0x63, 0x78, 0x68, 0x26, 0x36, 0x32, 0x36, 0x70, 0xc9, 0x17, 0xbb, 0x67, +0xcf, 0xc6, 0x8f, 0x1f, 0x71, 0xf5, 0x22, 0xba, 0x4f, 0x9f, 0x73, 0x01, 0xb5, 0x9f, 0xdd, 0x14, +0x4a, 0x55, 0x9b, 0x2a, 0x75, 0x17, 0xf7, 0xe0, 0xf6, 0x1d, 0x66, 0xc6, 0x35, 0xb1, 0xe4, 0x0d, +0x1e, 0xdc, 0xda, 0x25, 0x2e, 0x6d, 0xb0, 0xd0, 0x70, 0x53, 0x47, 0xc2, 0x02, 0x5f, 0x51, 0x41, +0x5c, 0xe9, 0xbd, 0xf5, 0x81, 0xda, 0x82, 0xbc, 0x3a, 0x59, 0x92, 0x30, 0xc9, 0x04, 0x3d, 0x63, +0x36, 0x6c, 0x24, 0x66, 0x64, 0xdb, 0x05, 0x7c, 0x6e, 0xb1, 0x83, 0xb9, 0x64, 0x53, 0x6a, 0x59, +0x08, 0xa1, 0xc1, 0xa7, 0x39, 0xd0, 0x3f, 0xef, 0x05, 0x35, 0x58, 0x18, 0xe9, 0x53, 0x63, 0x84, +0x1f, 0x72, 0xf2, 0xc7, 0x74, 0xab, 0x0e, 0xf5, 0x32, 0xa2, 0x6c, 0xe4, 0x52, 0x9a, 0x48, 0xea, +0x93, 0xba, 0xd3, 0x2d, 0xb9, 0x6c, 0xda, 0x2e, 0xc8, 0x38, 0xc5, 0x0c, 0xe2, 0xa7, 0x53, 0x13, +0xa8, 0x11, 0x13, 0xf7, 0x63, 0xc4, 0xfd, 0x79, 0x0d, 0x85, 0x15, 0xb3, 0x7b, 0xf3, 0x0d, 0x13, +0xf9, 0x87, 0x1f, 0x66, 0x80, 0x03, 0xfd, 0x5b, 0x18, 0xd1, 0xcc, 0x75, 0x92, 0x52, 0x3b, 0x2a, +0x8b, 0xf3, 0x1a, 0xa5, 0xdd, 0x93, 0xd2, 0x2f, 0x47, 0x71, 0xbc, 0xe3, 0x4e, 0x16, 0x5b, 0x0a, +0xee, 0x9d, 0x8c, 0x47, 0xa5, 0xf2, 0x8f, 0x8c, 0x3b, 0xca, 0xe3, 0x59, 0x30, 0xd1, 0x83, 0xcb, +0x69, 0xcc, 0xfd, 0xe4, 0x3b, 0xc2, 0x78, 0x6e, 0x7c, 0x95, 0x5b, 0xef, 0x29, 0xee, 0x45, 0x21, +0xd6, 0x52, 0x0c, 0x6f, 0x5c, 0x49, 0x8f, 0x54, 0x1a, 0x38, 0x62, 0xab, 0x0b, 0x0e, 0xfc, 0xe3, +0xd0, 0x8f, 0x23, 0xb3, 0xee, 0x52, 0x59, 0xe6, 0x2e, 0x61, 0x25, 0xbc, 0x12, 0xc2, 0x60, 0x51, +0x6f, 0x4e, 0xa7, 0x96, 0xdb, 0x34, 0x7e, 0xc1, 0xa6, 0xd3, 0xda, 0xde, 0x83, 0x7f, 0x95, 0xba, +0xc3, 0xcb, 0x5e, 0x35, 0x83, 0x61, 0xe3, 0x87, 0xbf, 0xd3, 0xd7, 0x2c, 0x08, 0x37, 0x79, 0x2a, +0x03, 0x75, 0x47, 0xc2, 0x37, 0x41, 0xdd, 0x91, 0xc6, 0xd5, 0x74, 0x99, 0x64, 0x86, 0xcf, 0x63, +0x37, 0xfd, 0x57, 0x3c, 0x31, 0x22, 0x6b, 0xec, 0x57, 0xd4, 0x93, 0xf1, 0x0a, 0xb7, 0x40, 0x96, +0x7a, 0x31, 0x54, 0x01, 0x21, 0x59, 0x34, 0x0a, 0xd6, 0x79, 0xa0, 0x48, 0x30, 0xb1, 0x17, 0xef, +0x81, 0x33, 0xd0, 0x5c, 0x79, 0x92, 0xd3, 0xfb, 0xba, 0xd8, 0x8f, 0x5a, 0xca, 0x5a, 0x76, 0xb1, +0x96, 0x1e, 0xba, 0x78, 0xca, 0x87, 0x39, 0xf7, 0xb4, 0x85, 0xdd, 0xf6, 0x65, 0x4c, 0xb4, 0x83, +0x32, 0x3f, 0x30, 0xf1, 0xa6, 0x35, 0x41, 0x1b, 0xcb, 0x69, 0x5b, 0x2c, 0xc4, 0x30, 0xa8, 0xd4, +0xd0, 0xaa, 0x71, 0x52, 0x83, 0x06, 0xb5, 0x67, 0x70, 0x30, 0x76, 0x2f, 0x64, 0xc9, 0x27, 0x36, +0x9f, 0xea, 0xe2, 0xae, 0x1d, 0x6c, 0xc4, 0x7b, 0x5c, 0xb9, 0xfe, 0x31, 0x49, 0x48, 0x7b, 0x03, +0xdf, 0x51, 0x41, 0x43, 0x21, 0x07, 0x38, 0xea, 0xa3, 0x75, 0x29, 0xcc, 0xea, 0xd7, 0x83, 0x10, +0xac, 0x60, 0x6c, 0xd6, 0x65, 0xf8, 0x09, 0x8e, 0x33, 0xb7, 0x66, 0x1e, 0x2d, 0xbc, 0xbb, 0x0f, +0x6b, 0x04, 0xa4, 0xea, 0x3c, 0x09, 0x27, 0xfe, 0xdf, 0x2a, 0xd3, 0x9e, 0x4a, 0x3e, 0x48, 0x24, +0x9a, 0x63, 0x60, 0x23, 0x0e, 0xb3, 0x43, 0xae, 0xbd, 0xad, 0x84, 0x4c, 0x8a, 0xca, 0xb7, 0xd6, +0x04, 0x01, 0x14, 0x81, 0x7b, 0x00, 0x53, 0xa6, 0x53, 0xcc, 0x59, 0xc8, 0x22, 0xdf, 0x63, 0x4d, +0x00, 0x3f, 0x82, 0x56, 0xaa, 0xbb, 0xf0, 0x90, 0xa2, 0xd6, 0x75, 0xcb, 0xfd, 0x0e, 0x38, 0x58, +0xe6, 0x03, 0x6c, 0x3d, 0x84, 0xc0, 0xfe, 0xd1, 0x9e, 0x95, 0xbf, 0x79, 0xd6, 0x24, 0xb2, 0xc6, +0x46, 0x46, 0x2d, 0xf6, 0x58, 0xf1, 0x0b, 0xd0, 0x96, 0xc7, 0xf9, 0xea, 0x97, 0xfa, 0x42, 0x5b, +0xa9, 0x92, 0x42, 0xbe, 0xb9, 0xb6, 0x32, 0xb4, 0x63, 0x3b, 0xc0, 0xcb, 0x61, 0x8a, 0x74, 0x39, +0x58, 0x73, 0xdb, 0xf4, 0x39, 0x29, 0x2c, 0xaf, 0x2e, 0x2c, 0xa7, 0x20, 0x0c, 0xc6, 0x78, 0x4d, +0x8a, 0xbf, 0xe4, 0xae, 0xe2, 0x8a, 0x47, 0x8e, 0xb2, 0x5e, 0x8b, 0x7a, 0x11, 0x75, 0x07, 0x5a, +0xcd, 0x56, 0x94, 0xa0, 0x2a, 0x93, 0xd8, 0xe5, 0x17, 0x41, 0x31, 0x94, 0xcd, 0x74, 0xd7, 0xab, +0x4f, 0x65, 0xab, 0x30, 0xb4, 0xae, 0xa7, 0x0a, 0x6f, 0x28, 0x60, 0xd3, 0x71, 0x35, 0x77, 0xcc, +0xa9, 0x2d, 0x43, 0x7d, 0x2b, 0x6c, 0x06, 0x2d, 0x9b, 0xc3, 0x1c, 0x2e, 0x12, 0xae, 0x10, 0x80, +0x1c, 0x57, 0x48, 0xc0, 0xb0, 0x4b, 0x80, 0xe7, 0x48, 0xce, 0x10, 0x3b, 0x17, 0xe6, 0x43, 0x85, +0xd3, 0x85, 0xe2, 0x69, 0xc9, 0x19, 0x96, 0x8e, 0xc9, 0xe6, 0x61, 0x4c, 0xa3, 0x9c, 0x5e, 0xca, +0x37, 0x42, 0x26, 0x25, 0x7a, 0x1e, 0x22, 0x4d, 0xcb, 0x57, 0xfe, 0xf3, 0x8f, 0xfa, 0x6b, 0x24, +0xfe, 0xfc, 0xd4, 0x0f, 0x7c, 0x5d, 0x2e, 0x51, 0xf0, 0x31, 0x69, 0x24, 0xfa, 0x4c, 0x4b, 0x6b, +0x04, 0xbc, 0x5e, 0x0b, 0x5d, 0xf3, 0x69, 0xbc, 0x71, 0x92, 0xc1, 0x8f, 0xc9, 0xaa, 0x1f, 0x13, +0x72, 0xfe, 0x86, 0xbb, 0xdf, 0x67, 0xb4, 0x9a, 0xb2, 0x4c, 0xc8, 0x2f, 0xac, 0x5e, 0xa3, 0x0c, +0x59, 0xfd, 0x22, 0xef, 0xa5, 0x92, 0xf5, 0x3a, 0x3c, 0x75, 0xd4, 0x8c, 0x28, 0x19, 0x55, 0x22, +0xac, 0xe2, 0x03, 0xa9, 0x09, 0x02, 0x86, 0xd4, 0x2f, 0x3d, 0xf4, 0xc9, 0x47, 0x67, 0xb1, 0x0d, +0x10, 0x98, 0x48, 0x02, 0xc0, 0xc9, 0x7f, 0x1d, 0xa0, 0xb6, 0x92, 0xc8, 0x36, 0xfd, 0x0b, 0xaf, +0x69, 0x5d, 0xae, 0x02, 0x62, 0x87, 0xfc, 0x97, 0x84, 0x9a, 0xcc, 0x46, 0x5c, 0xab, 0x2f, 0x92, +0x72, 0xc7, 0xc4, 0x08, 0x38, 0x77, 0xb9, 0x01, 0xef, 0xe6, 0x3b, 0xba, 0xde, 0x98, 0x9c, 0x44, +0xaa, 0x75, 0xbc, 0x73, 0x4d, 0x41, 0x4a, 0x72, 0xdf, 0x3e, 0x17, 0x80, 0xfd, 0xcc, 0x4d, 0xa4, +0xcf, 0xd8, 0xdc, 0xbd, 0x74, 0x02, 0x7a, 0x70, 0x12, 0x3e, 0x0a, 0xef, 0x33, 0x1f, 0x53, 0xb5, +0x0d, 0xf2, 0xd3, 0xd2, 0x5f, 0xc9, 0xf1, 0xdd, 0xb6, 0xdc, 0xb5, 0xf3, 0xec, 0xbe, 0x31, 0xe0, +0x09, 0x42, 0xf7, 0xa1, 0x96, 0x35, 0x01, 0xb0, 0x47, 0x82, 0x87, 0x17, 0x88, 0x46, 0x95, 0x22, +0xe6, 0x84, 0x48, 0x0c, 0x7f, 0xcf, 0x0a, 0x77, 0x77, 0x87, 0x6a, 0xef, 0x0c, 0xc7, 0xfc, 0x9f, +0x44, 0xd1, 0x1a, 0xce, 0x41, 0x0e, 0x1f, 0x01, 0xf9, 0x44, 0x04, 0x4a, 0xc2, 0x7a, 0x7a, 0xa1, +0xeb, 0x6b, 0x2e, 0x2c, 0xd6, 0xf1, 0x24, 0xce, 0x2f, 0xe2, 0xba, 0x17, 0x61, 0xed, 0x78, 0xea, +0x35, 0x35, 0x3b, 0x06, 0xf2, 0x56, 0xba, 0xe0, 0x28, 0xde, 0x35, 0x92, 0x43, 0xa8, 0x89, 0xeb, +0xcb, 0xec, 0x22, 0xc7, 0x51, 0xc0, 0x73, 0x2d, 0x1e, 0x87, 0xe3, 0x74, 0x3c, 0x6a, 0xe7, 0x26, +0x61, 0xc2, 0x83, 0x85, 0x33, 0xe7, 0xa2, 0xfa, 0xab, 0x8e, 0x5f, 0x14, 0x8b, 0xd4, 0xb4, 0x03, +0x76, 0x32, 0x81, 0xf0, 0x01, 0xad, 0x60, 0xce, 0x85, 0xa2, 0xa7, 0x1b, 0x31, 0xed, 0xfc, 0x8c, +0x30, 0x6e, 0x9f, 0x3d, 0x51, 0x53, 0x11, 0x91, 0x2e, 0x6b, 0x3e, 0x7b, 0xd2, 0x23, 0xde, 0xfb, +0x57, 0xfb, 0x1f, 0x80, 0x98, 0xd3, 0x2c, 0xde, 0x4d, 0xf6, 0xf4, 0x5d, 0xab, 0x79, 0x54, 0x54, +0x44, 0xba, 0x12, 0x26, 0xd2, 0x73, 0x2f, 0x65, 0xbb, 0x5b, 0x4c, 0xec, 0xa2, 0xbe, 0xc5, 0x8d, +0x6b, 0xf7, 0xca, 0x9d, 0xcb, 0x24, 0x31, 0xd2, 0x4c, 0x2b, 0x9d, 0xe8, 0x4d, 0xde, 0x36, 0x29, +0x30, 0xc7, 0x73, 0x2d, 0xb2, 0x5a, 0x22, 0xe3, 0x26, 0xf3, 0x38, 0x5c, 0x9b, 0x25, 0x0a, 0x57, +0x45, 0x21, 0x54, 0x44, 0x43, 0xd9, 0x60, 0xfe, 0xd1, 0x84, 0xe1, 0x45, 0x0e, 0xd3, 0x69, 0x86, +0xe8, 0x7f, 0xbc, 0xc6, 0x23, 0x17, 0x51, 0xe6, 0xfd, 0xcc, 0xb2, 0x7b, 0x75, 0xa4, 0x48, 0xd7, +0xc3, 0x55, 0xe2, 0x32, 0x59, 0xa9, 0x30, 0xc6, 0x68, 0x32, 0x32, 0xbd, 0xaf, 0x9f, 0xfb, 0x20, +0x91, 0xe7, 0xd6, 0xeb, 0x46, 0x30, 0x26, 0x44, 0xda, 0xc5, 0x7a, 0x14, 0xee, 0x03, 0xd3, 0xc2, +0xba, 0x0d, 0x10, 0xab, 0x36, 0xd0, 0x2b, 0xf3, 0x22, 0xb5, 0xe6, 0x44, 0x4b, 0xde, 0x9e, 0x53, +0x80, 0xef, 0x26, 0x5b, 0xd1, 0x32, 0xb1, 0xef, 0xa2, 0x9a, 0x1d, 0xdc, 0x26, 0x62, 0x5b, 0x3f, +0x7e, 0x4f, 0x8e, 0xa2, 0xf7, 0xca, 0xb6, 0x0a, 0x6d, 0x09, 0x69, 0x67, 0xf6, 0x87, 0x2b, 0x64, +0xca, 0x7d, 0x05, 0x95, 0x9e, 0xe2, 0x9e, 0x8c, 0xea, 0xd8, 0xe8, 0x7a, 0x40, 0x9d, 0xdd, 0xac, +0xc0, 0x6d, 0x34, 0x5a, 0x85, 0x4b, 0xa9, 0x81, 0x7f, 0xa0, 0x16, 0xe7, 0xbb, 0x99, 0xb5, 0x61, +0x15, 0x4b, 0x09, 0xfc, 0xba, 0x1b, 0x7e, 0x2a, 0x2d, 0xb1, 0x59, 0x8d, 0x94, 0x37, 0xfa, 0xf5, +0x50, 0x58, 0xff, 0xd8, 0x57, 0xa1, 0x63, 0xa4, 0xe5, 0xbd, 0x70, 0x08, 0x3d, 0xab, 0xf7, 0x52, +0x1a, 0xae, 0x35, 0x11, 0xd1, 0x33, 0x13, 0xc9, 0x06, 0xd3, 0xaa, 0x0f, 0xe7, 0x00, 0x73, 0x70, +0xf1, 0x1e, 0x82, 0x9d, 0x97, 0xe8, 0x33, 0x1b, 0x26, 0x7c, 0xcd, 0x2b, 0x40, 0x08, 0x53, 0x34, +0x05, 0x4e, 0x14, 0x52, 0x61, 0x8f, 0x58, 0x9a, 0x5f, 0x91, 0x7b, 0xd8, 0x79, 0x3a, 0xe3, 0x62, +0xce, 0x8c, 0x7c, 0xeb, 0xa1, 0xb9, 0x0d, 0xea, 0x83, 0x79, 0x95, 0x3b, 0xc2, 0x10, 0x83, 0x6c, +0x7c, 0x67, 0x79, 0x8b, 0xf7, 0x38, 0xd4, 0xb6, 0xd0, 0x2a, 0xc1, 0x30, 0xef, 0x5b, 0xd6, 0x3f, +0x4e, 0xcd, 0x60, 0xba, 0x51, 0x38, 0x53, 0x19, 0x86, 0x76, 0xfe, 0x14, 0x8c, 0x76, 0x3f, 0x0c, +0x1d, 0xa1, 0x4f, 0xab, 0x05, 0xce, 0x8e, 0xc9, 0xf9, 0xb9, 0x54, 0x9d, 0xfa, 0xf1, 0xe0, 0x1d, +0x2d, 0xd7, 0x26, 0x8b, 0x6f, 0x49, 0xd2, 0xf5, 0xf0, 0x9d, 0xfd, 0xb2, 0x6d, 0xa5, 0x4b, 0xec, +0x3b, 0x74, 0x4b, 0x07, 0xea, 0x71, 0x89, 0xf8, 0x58, 0xc4, 0x88, 0x21, 0x20, 0x34, 0x13, 0x15, +0xd4, 0x87, 0x95, 0x63, 0x9c, 0xfd, 0x33, 0x90, 0xcb, 0x10, 0xd4, 0x1e, 0x32, 0xbc, 0x74, 0x8d, +0xfa, 0xb9, 0x39, 0xc9, 0x57, 0xee, 0x23, 0x0f, 0x2d, 0x7c, 0xb4, 0xfa, 0x7f, 0x63, 0xce, 0x0b, +0x62, 0xc1, 0xbe, 0x3b, 0x94, 0x91, 0x7a, 0xda, 0x8c, 0x6f, 0x4e, 0x50, 0x53, 0xdf, 0x19, 0x9a, +0x66, 0x29, 0x00, 0x80, 0x2d, 0x04, 0x33, 0xaf, 0xa2, 0xfa, 0x35, 0xd1, 0x41, 0xe0, 0xe8, 0x88, +0x7c, 0x88, 0xae, 0xc6, 0xea, 0x7e, 0x6c, 0x49, 0xaa, 0xc8, 0x9d, 0x5f, 0xa7, 0xe6, 0xe5, 0x59, +0xa5, 0x70, 0x2e, 0x1c, 0x22, 0xff, 0x85, 0x30, 0x17, 0xf3, 0xb6, 0xdc, 0x76, 0x34, 0x4e, 0xf7, +0xb0, 0x62, 0x64, 0xab, 0x47, 0xe1, 0x74, 0x54, 0xb3, 0x0f, 0x45, 0xf1, 0x31, 0x3e, 0x26, 0xf9, +0x68, 0x24, 0xb3, 0x75, 0x54, 0x67, 0x59, 0x3c, 0x52, 0x88, 0xd5, 0x64, 0x30, 0x06, 0xa4, 0x2b, +0x65, 0x56, 0x4b, 0xcb, 0x0a, 0x63, 0x08, 0x4e, 0xd8, 0xce, 0xfb, 0xc1, 0x25, 0x8e, 0x11, 0x38, +0xc5, 0x3a, 0xa5, 0xfc, 0x84, 0x63, 0x1d, 0x46, 0x24, 0x97, 0xca, 0x00, 0xc1, 0x85, 0x15, 0x77, +0x4d, 0x31, 0x3a, 0xc5, 0x93, 0x3b, 0x71, 0xbe, 0xba, 0x1a, 0xde, 0xb4, 0x76, 0x20, 0xaa, 0x11, +0x7e, 0x9b, 0xc7, 0x10, 0x55, 0x86, 0x96, 0xdd, 0x30, 0x9a, 0x09, 0xc0, 0xea, 0xc7, 0x15, 0x9b, +0xa6, 0x21, 0xcc, 0x4d, 0x0e, 0x53, 0x6a, 0x95, 0x78, 0x2b, 0x64, 0xf5, 0x0d, 0x23, 0x87, 0x56, +0x87, 0xea, 0x5b, 0x1d, 0x82, 0x09, 0x54, 0xab, 0x34, 0xd6, 0x14, 0x5e, 0x34, 0x49, 0x2f, 0x8e, +0x5c, 0xdb, 0x55, 0x5d, 0xaa, 0x1c, 0xc1, 0x5f, 0x4b, 0x1d, 0x61, 0x0d, 0x4e, 0x9b, 0x5d, 0xe5, +0x1b, 0x65, 0x78, 0x94, 0x1f, 0xfd, 0xcb, 0xd1, 0x1e, 0xd4, 0xd4, 0x4e, 0xec, 0x0a, 0xe0, 0x91, +0x4a, 0xa2, 0x3e, 0x13, 0x17, 0x0c, 0xe3, 0x80, 0xc4, 0x96, 0xf7, 0x3c, 0x2a, 0xbe, 0xde, 0x10, +0x8b, 0xae, 0x41, 0x34, 0x89, 0x7a, 0xd0, 0xeb, 0xaa, 0x92, 0x07, 0xbe, 0xd6, 0xc6, 0xe9, 0xfa, +0x06, 0xe3, 0xb2, 0x0f, 0x2a, 0x2c, 0x0c, 0xfa, 0x44, 0x72, 0x74, 0x44, 0x3b, 0x26, 0x9a, 0xd5, +0xae, 0x6f, 0x93, 0xfa, 0xba, 0x4d, 0x37, 0xbe, 0x5d, 0xc3, 0xda, 0x8f, 0xab, 0x12, 0x12, 0x06, +0x6a, 0x23, 0x58, 0x7d, 0x06, 0x07, 0xa7, 0x2d, 0x70, 0x68, 0x81, 0xb7, 0xac, 0x46, 0x1a, 0xd5, +0xbf, 0xe3, 0x79, 0x09, 0x44, 0xfa, 0x76, 0x4a, 0xba, 0x78, 0x80, 0xa3, 0xbd, 0x24, 0xfa, 0x66, +0xda, 0xe7, 0xc4, 0x09, 0xa8, 0x0c, 0x5e, 0x33, 0x1a, 0x2a, 0x70, 0x2f, 0x6c, 0x12, 0x82, 0x82, +0xf2, 0x93, 0x40, 0xea, 0x2a, 0x43, 0x18, 0x32, 0xcd, 0x20, 0x61, 0x9c, 0x67, 0xb5, 0xb9, 0x64, +0x14, 0x23, 0xfe, 0x84, 0xd9, 0xba, 0xbf, 0x76, 0x15, 0xeb, 0xe3, 0xdf, 0x45, 0xa8, 0x9d, 0xea, +0xcd, 0x11, 0x3d, 0xf2, 0xef, 0x6c, 0xaf, 0x77, 0x50, 0x1a, 0xd5, 0x23, 0x4d, 0x85, 0xb0, 0xb1, +0x58, 0x1c, 0x34, 0xbe, 0x06, 0x3c, 0x35, 0xc6, 0xde, 0x66, 0xd1, 0x55, 0x37, 0xb1, 0x73, 0x33, +0x18, 0x68, 0x66, 0x1b, 0xe5, 0x1f, 0xb0, 0xe1, 0x40, 0xcf, 0x4c, 0x83, 0xc5, 0xbd, 0x70, 0xfd, +0xd0, 0x0d, 0x08, 0xd6, 0x8f, 0xe2, 0x4e, 0x92, 0xd2, 0xf7, 0x9f, 0x75, 0xbb, 0x6d, 0x11, 0xe8, +0x33, 0x92, 0x27, 0xfb, 0x2f, 0x22, 0x05, 0x61, 0xdf, 0x10, 0xad, 0xe6, 0x40, 0x17, 0x50, 0x4e, +0x3f, 0x84, 0x01, 0x3c, 0x60, 0xcc, 0xa6, 0x60, 0xf5, 0xef, 0xb0, 0x3d, 0x6f, 0x52, 0x4e, 0x5b, +0x9e, 0x57, 0x08, 0xcd, 0x20, 0xbe, 0xc7, 0x6b, 0xfd, 0x78, 0x20, 0x6e, 0x2f, 0x72, 0xb9, 0x24, +0x4d, 0xc6, 0xf9, 0xf9, 0x5a, 0xd4, 0xfd, 0x6f, 0xe3, 0xed, 0x1e, 0x96, 0xb9, 0x3b, 0xbf, 0x86, +0x27, 0x51, 0xbf, 0xc9, 0x9f, 0x66, 0xc3, 0xf4, 0x1e, 0x5d, 0xe3, 0x59, 0x41, 0x73, 0x51, 0xa7, +0x3d, 0x1d, 0xc9, 0xab, 0x8b, 0xcb, 0x94, 0x9f, 0xa3, 0x56, 0x6f, 0x0a, 0x3a, 0x40, 0x8e, 0x4e, +0x25, 0xea, 0x66, 0xb6, 0x0e, 0x5e, 0xbb, 0x8d, 0x80, 0x5e, 0x26, 0x24, 0x28, 0xa8, 0x8c, 0x12, +0xe5, 0xf5, 0xb3, 0x0a, 0x99, 0x24, 0xb6, 0x58, 0x65, 0x01, 0xac, 0xe2, 0x25, 0xfd, 0xd5, 0xbf, +0xdf, 0x68, 0x3b, 0x0f, 0xa0, 0x60, 0x10, 0x1d, 0x97, 0x3c, 0xbc, 0x02, 0x4c, 0x0c, 0x44, 0xaf, +0xe2, 0x26, 0x10, 0x38, 0xed, 0xbf, 0xfc, 0x9c, 0xc9, 0x6c, 0xa6, 0x69, 0x2e, 0x67, 0x96, 0x9b, +0xfe, 0x28, 0xf6, 0x71, 0x36, 0xb3, 0x41, 0xdc, 0xca, 0xac, 0xeb, 0x27, 0x6f, 0x85, 0x1c, 0x96, +0x9c, 0x23, 0xc7, 0xa9, 0x5e, 0xd2, 0x52, 0x5e, 0x04, 0xc6, 0x20, 0x13, 0x6b, 0xae, 0x49, 0x9c, +0x9f, 0x45, 0xc5, 0x70, 0x7c, 0x9e, 0xbc, 0xb9, 0xaf, 0xcf, 0x9f, 0x90, 0xd7, 0x7e, 0x34, 0x03, +0x69, 0x2c, 0x23, 0xca, 0xa0, 0x5c, 0x6a, 0xbd, 0x1d, 0xaf, 0x0b, 0x70, 0xf6, 0xbc, 0xdb, 0x65, +0xce, 0x11, 0x85, 0xbc, 0xf5, 0xcf, 0x2b, 0x99, 0x6d, 0xa8, 0xfc, 0x61, 0x50, 0x88, 0x3f, 0xe2, +0x69, 0x86, 0xac, 0xc0, 0xcc, 0x9c, 0xec, 0xcf, 0xac, 0x5c, 0x5a, 0x91, 0x38, 0x8f, 0x99, 0x59, +0xd6, 0x01, 0x2e, 0x7e, 0x74, 0x61, 0x01, 0xec, 0x38, 0xf0, 0xcd, 0x9f, 0x19, 0x35, 0x1e, 0x7c, +0xcf, 0x41, 0x5a, 0x17, 0xb3, 0xe7, 0x39, 0x21, 0x95, 0xed, 0x93, 0x2a, 0x75, 0x1a, 0x75, 0x8a, +0x4d, 0xca, 0x05, 0x29, 0xba, 0x4d, 0x6c, 0xf5, 0x55, 0x80, 0x7f, 0x69, 0x34, 0x4d, 0xa7, 0x1a, +0x32, 0xed, 0xc8, 0x91, 0x69, 0x9d, 0x02, 0x3c, 0xc6, 0xc0, 0x35, 0x83, 0xc7, 0xee, 0x20, 0x5f, +0xc9, 0xb6, 0x75, 0xcd, 0xc0, 0xb6, 0xc4, 0x9c, 0x33, 0x4d, 0xad, 0x45, 0x01, 0xc9, 0x29, 0x37, +0x9c, 0xba, 0xb2, 0x8d, 0x79, 0x81, 0x92, 0x47, 0x30, 0x66, 0x46, 0xaa, 0x06, 0xed, 0x07, 0x31, +0x8c, 0xcd, 0xe5, 0xd6, 0x3a, 0x0c, 0x2d, 0xa9, 0x64, 0xfb, 0x61, 0x4a, 0x5f, 0x79, 0x63, 0xd9, +0x88, 0x3b, 0x06, 0x09, 0xf9, 0x6a, 0x5e, 0x5d, 0x07, 0x48, 0x82, 0x7e, 0xdd, 0xd6, 0x47, 0x7a, +0xfe, 0x23, 0x61, 0xe2, 0x93, 0xe7, 0xee, 0x6a, 0x5f, 0xf2, 0xe8, 0x36, 0x03, 0x15, 0x7a, 0xbd, +0x9b, 0x1c, 0x20, 0x7d, 0xb5, 0x92, 0x34, 0x62, 0x52, 0x4a, 0x6d, 0xf2, 0x6b, 0x75, 0x75, 0x5e, +0xbf, 0xf2, 0x30, 0x99, 0x4c, 0x5c, 0x50, 0x9c, 0x96, 0xf9, 0xbe, 0x6f, 0x2c, 0xdb, 0xf3, 0xe7, +0x3a, 0x83, 0xb6, 0xd6, 0xeb, 0xb8, 0x46, 0x6c, 0xf5, 0x48, 0x06, 0x67, 0x84, 0x2e, 0x43, 0x30, +0x6e, 0x62, 0x38, 0xc6, 0x02, 0xb4, 0x27, 0x62, 0x6e, 0x1c, 0x85, 0x97, 0xb7, 0xd1, 0x22, 0x0b, +0x60, 0xd8, 0x94, 0x3f, 0xcb, 0x14, 0x95, 0x66, 0xf1, 0x3c, 0x85, 0x33, 0x85, 0xae, 0x4a, 0xc3, +0x3f, 0x9c, 0xe3, 0xa5, 0x98, 0x85, 0x02, 0xda, 0x36, 0x18, 0x81, 0xdf, 0x6f, 0xfd, 0x2f, 0x5e, +0xa6, 0x59, 0x36, 0x2b, 0x5f, 0x49, 0xa6, 0x03, 0x40, 0x85, 0xab, 0x13, 0xb7, 0xde, 0xe6, 0x4b, +0x24, 0xec, 0x8d, 0xa1, 0xa8, 0xdc, 0x4b, 0x68, 0xb3, 0x77, 0xaf, 0x56, 0xab, 0x48, 0x76, 0x98, +0x29, 0xa8, 0xf9, 0x43, 0xaa, 0x14, 0xc3, 0x93, 0x6d, 0x4a, 0x71, 0xd8, 0x61, 0x15, 0xc9, 0xe7, +0x35, 0xfe, 0x5e, 0x72, 0x75, 0x8a, 0x62, 0x87, 0x7c, 0xdb, 0x86, 0xcc, 0xea, 0x9d, 0x97, 0x16, +0x41, 0x6f, 0x1c, 0x25, 0xa0, 0x6d, 0x62, 0x8b, 0x8c, 0x8a, 0x96, 0xfd, 0x8b, 0xdf, 0xec, 0x64, +0x76, 0x9b, 0xc1, 0xb5, 0xe6, 0x73, 0xee, 0xb6, 0x79, 0x3c, 0xae, 0xc0, 0x07, 0xe8, 0x8f, 0xa5, +0x3c, 0x1f, 0xb7, 0x55, 0x31, 0x2e, 0xec, 0xec, 0xad, 0x89, 0xb5, 0xea, 0xff, 0xa2, 0x2c, 0xdf, +0xcc, 0x28, 0x72, 0x30, 0x7c, 0x78, 0x65, 0x5e, 0x6c, 0x24, 0x28, 0xd8, 0x37, 0xcd, 0xe3, 0xa0, +0x50, 0x7c, 0x77, 0xa2, 0xd2, 0x40, 0x0f, 0xcd, 0xfd, 0x15, 0x09, 0x9e, 0x8a, 0x87, 0xb9, 0x8f, +0xdb, 0x6f, 0x2a, 0xa0, 0x5d, 0x46, 0x51, 0x13, 0x93, 0xf9, 0x31, 0x3a, 0xb1, 0x6d, 0x94, 0xc5, +0x50, 0x1e, 0x83, 0xb3, 0xcd, 0x20, 0xfb, 0xba, 0x64, 0x05, 0xf2, 0xcc, 0xc2, 0x3c, 0x70, 0x64, +0x72, 0xdd, 0x69, 0xc9, 0xac, 0xed, 0xc3, 0x8b, 0x7a, 0xa0, 0x45, 0x06, 0xf9, 0x1d, 0xc5, 0xc3, +0xc5, 0xa9, 0x5c, 0x5b, 0x26, 0xbc, 0x6f, 0xd4, 0x02, 0xdc, 0x65, 0x35, 0x7e, 0x12, 0x72, 0xf9, +0xa2, 0x9a, 0x25, 0x43, 0xd9, 0x29, 0x06, 0x1b, 0x6b, 0xa7, 0x65, 0x04, 0xf9, 0xb9, 0x13, 0xc6, +0xe0, 0x0d, 0xee, 0x0d, 0x41, 0x77, 0xbe, 0x59, 0x18, 0x95, 0xef, 0xc8, 0xea, 0x43, 0xea, 0x64, +0x57, 0x67, 0x41, 0x47, 0xcb, 0x5b, 0x07, 0xb2, 0x10, 0xfc, 0x58, 0xe9, 0x84, 0x40, 0xd9, 0x78, +0x34, 0x49, 0xd0, 0xeb, 0xbd, 0x41, 0xc6, 0xd0, 0xbf, 0x89, 0x30, 0x62, 0xfb, 0x46, 0x8f, 0x1e, +0x65, 0x18, 0x46, 0x55, 0xcd, 0x66, 0xaa, 0xbe, 0xb9, 0x11, 0xfb, 0xb6, 0xd9, 0x02, 0x72, 0x77, +0xd1, 0xad, 0xc0, 0x66, 0x0a, 0x2b, 0xf5, 0x7e, 0x14, 0x7b, 0x30, 0x04, 0xba, 0x9a, 0x00, 0x69, +0x71, 0x8a, 0xf0, 0xdc, 0x99, 0x77, 0xaf, 0xa9, 0xd5, 0xc2, 0x7f, 0x77, 0x1a, 0x18, 0x73, 0x5e, +0xdd, 0xcb, 0x16, 0x37, 0x43, 0x60, 0xed, 0x06, 0xf4, 0xa9, 0x25, 0xbe, 0xea, 0x3e, 0xa0, 0x13, +0xad, 0x52, 0x33, 0xce, 0xad, 0xca, 0x57, 0x9b, 0x23, 0x28, 0x67, 0xe1, 0xf2, 0x91, 0x06, 0xcf, +0xc6, 0xb6, 0x30, 0xef, 0xef, 0xb8, 0x8a, 0x2e, 0x9a, 0xfe, 0x78, 0xac, 0x34, 0x8f, 0xb8, 0xba, +0xe6, 0xcb, 0xa1, 0x28, 0x83, 0x8e, 0x2e, 0x44, 0x6c, 0x77, 0x9b, 0x4b, 0x09, 0xf9, 0xde, 0xdc, +0xee, 0xa6, 0x57, 0xe8, 0x7a, 0x12, 0x87, 0xa3, 0x9f, 0xcd, 0xd8, 0xa1, 0x45, 0xb6, 0x9a, 0x93, +0x41, 0x68, 0x32, 0x1f, 0xcf, 0xa0, 0xdb, 0x6f, 0x3f, 0xda, 0xca, 0x6b, 0x25, 0x5e, 0x14, 0xbc, +0x54, 0x1b, 0xf5, 0x55, 0x3f, 0x1d, 0xca, 0x59, 0x05, 0x63, 0x9f, 0x86, 0xda, 0xfb, 0x9e, 0x69, +0xb5, 0xe6, 0xde, 0x39, 0x81, 0x05, 0x9f, 0xec, 0xf9, 0x26, 0x26, 0x22, 0x2d, 0xfd, 0xf8, 0xe7, +0xa3, 0x64, 0x96, 0x1f, 0x87, 0xaa, 0xdb, 0x16, 0x70, 0xf5, 0x52, 0xc1, 0x52, 0xbd, 0xb0, 0xdd, +0x32, 0xb9, 0x52, 0x56, 0x2f, 0x34, 0xdf, 0x09, 0x47, 0xe7, 0x41, 0xf7, 0x72, 0x71, 0x6c, 0xf6, +0xa8, 0x29, 0xfe, 0x91, 0x0b, 0x76, 0x1d, 0x7a, 0x75, 0x27, 0x9d, 0xf1, 0xe1, 0xb7, 0xdc, 0xec, +0x29, 0xf5, 0xfd, 0xc0, 0x1c, 0xbb, 0x4b, 0x04, 0x3c, 0xde, 0xac, 0x4d, 0x82, 0xcb, 0xcd, 0x5b, +0x58, 0x6e, 0x81, 0x65, 0xbd, 0x30, 0x70, 0xe1, 0xeb, 0xa8, 0x72, 0x60, 0xcc, 0xc1, 0x10, 0xc8, +0x96, 0x52, 0xc1, 0xda, 0x9f, 0x7c, 0x27, 0xa0, 0xdf, 0x71, 0xff, 0xdb, 0x08, 0xce, 0x69, 0x15, +0x9f, 0x27, 0x29, 0x1b, 0xe6, 0xad, 0x0c, 0x49, 0xf8, 0xd4, 0x9f, 0x26, 0x17, 0x14, 0xac, 0x9a, +0x6a, 0x8c, 0x8f, 0x03, 0x30, 0x4e, 0xbf, 0x12, 0x1d, 0x7b, 0xd0, 0x2a, 0xbc, 0xd7, 0xd1, 0xbb, +0xc3, 0xb2, 0xf9, 0xb0, 0xa8, 0x9e, 0xcd, 0x2e, 0x5b, 0x97, 0xda, 0x0c, 0xf0, 0xac, 0xb4, 0x83, +0xa3, 0xcb, 0x26, 0xfd, 0xa7, 0x0e, 0x6b, 0xfd, 0x08, 0x79, 0x18, 0x73, 0xd8, 0xef, 0x97, 0x02, +0xb1, 0x9e, 0x7a, 0x22, 0x8e, 0xcc, 0x66, 0xb9, 0xd0, 0xf8, 0xb6, 0xbb, 0xf9, 0x33, 0x1b, 0xdb, +0x01, 0xba, 0xf5, 0xa1, 0x13, 0x6b, 0xd2, 0xd0, 0x84, 0x1b, 0x24, 0x6e, 0xdd, 0xf4, 0x16, 0x54, +0xd2, 0x87, 0xaf, 0xc7, 0xaa, 0x30, 0x1e, 0x27, 0x86, 0x95, 0xa8, 0x4a, 0xa0, 0x8a, 0xbf, 0xd4, +0x6e, 0x0a, 0x78, 0x3f, 0xeb, 0x8d, 0xf8, 0xcc, 0x35, 0xad, 0xea, 0x22, 0x8d, 0xc6, 0xbd, 0x5d, +0xab, 0x7e, 0x46, 0xb3, 0xe7, 0x5c, 0x5c, 0x73, 0xe6, 0x59, 0xfd, 0x77, 0x89, 0x58, 0x40, 0x0f, +0x4f, 0xbc, 0xb3, 0xb5, 0x36, 0x41, 0xa4, 0xf6, 0x71, 0x2a, 0x33, 0xe0, 0xe5, 0x54, 0x86, 0x8f, +0x5a, 0x2f, 0x1c, 0xa1, 0xc5, 0x9e, 0x51, 0x5e, 0x35, 0xfa, 0x55, 0xe1, 0xe0, 0x6d, 0x62, 0x76, +0x55, 0x4f, 0xd5, 0x41, 0xc2, 0xe0, 0xee, 0x6a, 0x29, 0x25, 0xf9, 0x84, 0xc7, 0xd4, 0x6a, 0x32, +0x25, 0xde, 0x42, 0x20, 0x6a, 0x13, 0xca, 0xbb, 0x68, 0x81, 0x6f, 0xbe, 0x89, 0x9c, 0x2d, 0xc1, +0xbc, 0xe1, 0xd0, 0x40, 0x2e, 0x5c, 0x96, 0xec, 0x63, 0x6a, 0x12, 0xe9, 0x94, 0x1a, 0x2c, 0x6d, +0x14, 0x64, 0x65, 0x3b, 0x18, 0x69, 0x6e, 0x65, 0x26, 0x82, 0x31, 0xce, 0x9d, 0xe8, 0x0f, 0x67, +0x8e, 0x80, 0x15, 0x3c, 0xd2, 0x49, 0x69, 0x42, 0xdc, 0xb1, 0x74, 0x2e, 0xcc, 0x73, 0x41, 0x44, +0xf8, 0x0c, 0x5a, 0x88, 0xb5, 0x65, 0xde, 0x44, 0x9a, 0x91, 0xfe, 0x55, 0x7e, 0xe6, 0xaa, 0xdc, +0x8f, 0xb8, 0x10, 0x48, 0xd6, 0x8b, 0x2a, 0x7b, 0x72, 0x1d, 0xf1, 0xdf, 0x5d, 0xd3, 0x85, 0xb7, +0xcf, 0x98, 0xc3, 0x65, 0x8a, 0xe9, 0xe9, 0xf2, 0x27, 0x02, 0x74, 0xc6, 0x8c, 0x57, 0x7b, 0x46, +0x6a, 0xc3, 0xa9, 0x93, 0xbc, 0x4c, 0x5f, 0x1b, 0x9b, 0x3e, 0x4b, 0x5d, 0x1d, 0x01, 0xbc, 0x6b, +0x51, 0x93, 0x6b, 0x61, 0x5c, 0x3a, 0xec, 0x8e, 0xc9, 0x2f, 0x02, 0xa2, 0x5b, 0x1d, 0x51, 0x37, +0x3b, 0xc4, 0x59, 0xa2, 0x3f, 0x2d, 0x3c, 0x33, 0x6c, 0xc4, 0x49, 0xed, 0x59, 0xd7, 0x86, 0x03, +0x5d, 0x6b, 0x2a, 0x79, 0x24, 0x30, 0xf7, 0xd7, 0x20, 0xf6, 0x64, 0x0b, 0xc9, 0x39, 0x03, 0x12, +0xca, 0x8a, 0xf9, 0x4b, 0xe7, 0x47, 0x50, 0x54, 0xf9, 0xef, 0xf0, 0x9b, 0xc3, 0xca, 0xb4, 0x72, +0x43, 0xce, 0xf0, 0x5c, 0x09, 0x99, 0x6f, 0xaf, 0x26, 0xf2, 0xaa, 0xb3, 0x88, 0x10, 0x48, 0x1a, +0x39, 0x84, 0xf3, 0xda, 0x5e, 0x99, 0xc8, 0x13, 0x2b, 0x19, 0xe2, 0x92, 0x35, 0xd2, 0x77, 0x38, +0xbd, 0xfb, 0x8b, 0x50, 0x91, 0xd7, 0x30, 0x2b, 0x54, 0x1e, 0x59, 0xd4, 0xf0, 0x91, 0x62, 0x4b, +0x95, 0x8f, 0xe1, 0x85, 0x9b, 0x8a, 0xab, 0xa5, 0x51, 0x30, 0x14, 0x01, 0x1b, 0xff, 0x5d, 0x37, +0x30, 0xe8, 0x9b, 0x74, 0x88, 0x18, 0x22, 0x78, 0xaa, 0x4b, 0x43, 0x52, 0x47, 0x20, 0xae, 0x84, +0xbf, 0x17, 0xf3, 0x65, 0xd2, 0x9a, 0x37, 0x31, 0xc3, 0x8c, 0x00, 0x34, 0x7a, 0xfc, 0xe0, 0xbe, +0xcd, 0x0c, 0x69, 0x80, 0x0a, 0x4a, 0x60, 0xa4, 0x20, 0xe7, 0x05, 0x0c, 0x83, 0x19, 0x47, 0xa6, +0x3b, 0xa0, 0x32, 0x18, 0x58, 0xa9, 0x85, 0x02, 0x7e, 0x3a, 0xe3, 0x3c, 0xed, 0x15, 0x83, 0xc6, +0x3f, 0x6a, 0x1f, 0x58, 0x7b, 0x49, 0x16, 0xc5, 0xca, 0xaa, 0x49, 0x86, 0x51, 0x06, 0xf1, 0xf0, +0xb0, 0xdd, 0x7e, 0x42, 0xcf, 0xec, 0xa3, 0x40, 0x55, 0x88, 0xf7, 0x21, 0xe7, 0xba, 0xe5, 0xc5, +0xd1, 0xd7, 0xe3, 0x57, 0x00, 0xca, 0xb4, 0xe4, 0xeb, 0x49, 0x51, 0x2b, 0x1e, 0x56, 0xdf, 0x27, +0x16, 0x1d, 0x08, 0x8b, 0x97, 0x7e, 0xc3, 0x49, 0x57, 0xae, 0x5f, 0xf3, 0x42, 0x67, 0xad, 0x24, +0x71, 0x70, 0xa6, 0xfe, 0x7e, 0x2d, 0x1a, 0xe2, 0xc6, 0x0c, 0xa7, 0x56, 0xe7, 0x15, 0xe8, 0x88, +0xce, 0x9a, 0x51, 0x1a, 0x10, 0xc4, 0xec, 0x02, 0x88, 0x98, 0xd1, 0x03, 0x3d, 0x5c, 0xa0, 0x97, +0x6b, 0x80, 0xa6, 0xc0, 0x77, 0xb3, 0x9c, 0xfd, 0x69, 0x94, 0xdf, 0xf1, 0x26, 0x77, 0x0c, 0xe8, +0x9f, 0xd2, 0x65, 0x8d, 0x07, 0xb4, 0x59, 0xbf, 0x6d, 0xed, 0x69, 0xd4, 0x77, 0x00, 0x43, 0xf8, +0xf0, 0x99, 0xc8, 0xca, 0x28, 0x62, 0x6f, 0x98, 0xe5, 0x0a, 0x96, 0x74, 0x40, 0xab, 0xe5, 0x8d, +0x3e, 0xf0, 0x03, 0x2e, 0x98, 0xc8, 0x2e, 0x0e, 0xc3, 0x7b, 0x89, 0x96, 0xed, 0x62, 0x52, 0x16, +0x8f, 0xba, 0x68, 0x88, 0x1f, 0xd2, 0x9b, 0x88, 0x0a, 0x66, 0x65, 0x9f, 0x99, 0x01, 0x1b, 0xd0, +0xc6, 0xc6, 0x36, 0x32, 0x5a, 0x8d, 0x59, 0xa1, 0x84, 0xb9, 0x8f, 0x6a, 0x23, 0x13, 0xff, 0xa8, +0x3d, 0x20, 0x8c, 0xdf, 0x74, 0xa1, 0xba, 0x9f, 0x48, 0xc4, 0xe1, 0xd0, 0x60, 0x82, 0xfb, 0xc9, +0xa8, 0x1c, 0x62, 0x69, 0xfe, 0xd7, 0x76, 0x1e, 0x52, 0x4b, 0x48, 0x75, 0x76, 0x23, 0xe3, 0x15, +0x98, 0xcc, 0xeb, 0xcd, 0x50, 0x89, 0xaf, 0x58, 0x39, 0x3d, 0x69, 0x6a, 0x96, 0x6e, 0x15, 0xb8, +0x92, 0x60, 0x44, 0xb9, 0x32, 0xd2, 0xfa, 0xc9, 0xde, 0x2b, 0x27, 0xf8, 0xdc, 0x77, 0xbb, 0xe9, +0x5c, 0xf9, 0xde, 0x87, 0xfb, 0xda, 0xc4, 0x9e, 0xfb, 0x69, 0xa6, 0x5c, 0x0b, 0x0f, 0xef, 0xdd, +0xc7, 0x55, 0x72, 0xea, 0xce, 0x64, 0xa5, 0x7e, 0x2f, 0x0c, 0x2b, 0x7f, 0xc8, 0xd7, 0xbe, 0x33, +0xc0, 0x4a, 0x3e, 0x89, 0x83, 0x16, 0xc8, 0xe4, 0x84, 0xb9, 0xe3, 0x16, 0xc3, 0x15, 0x30, 0xf1, +0xc1, 0x2c, 0x5b, 0x21, 0x86, 0xeb, 0x85, 0x17, 0x89, 0x60, 0x76, 0x25, 0xee, 0x98, 0xd1, 0xc7, +0x9b, 0x70, 0x75, 0xba, 0x6b, 0xde, 0x6a, 0x12, 0xc3, 0x94, 0xc9, 0x3e, 0x93, 0x17, 0xcf, 0x37, +0x3d, 0x6e, 0xe6, 0x5f, 0x33, 0x86, 0x71, 0x7e, 0xe7, 0xdb, 0x77, 0xb6, 0x7d, 0x45, 0xfd, 0xa9, +0x8b, 0x67, 0x6a, 0xa3, 0xe0, 0x4a, 0x64, 0xb7, 0xfe, 0xa5, 0xdc, 0xd7, 0x10, 0x1f, 0x8e, 0xc3, +0x28, 0xa5, 0x80, 0xee, 0x76, 0xcd, 0xfe, 0xb0, 0xac, 0x6d, 0xa7, 0xf1, 0xc2, 0x02, 0xe2, 0x73, +0xe2, 0x83, 0xc4, 0x58, 0xad, 0xe7, 0x93, 0x31, 0xe8, 0x67, 0xf8, 0x4d, 0x9d, 0x09, 0x29, 0xc8, +0xcb, 0xc2, 0x12, 0x82, 0x2a, 0x18, 0xf3, 0x18, 0xf1, 0xd7, 0x7f, 0xc6, 0xcc, 0x6e, 0xb7, 0x29, +0x8e, 0xc1, 0x2e, 0x68, 0x23, 0x04, 0x78, 0x15, 0x94, 0xc6, 0x03, 0xc9, 0x11, 0x15, 0x37, 0x49, +0x00, 0xaf, 0x81, 0x76, 0x4c, 0x42, 0x6d, 0xf6, 0x1f, 0xd1, 0x5f, 0x02, 0x5e, 0xc1, 0xb2, 0xd2, +0x3b, 0xb0, 0x19, 0x72, 0xc2, 0x2a, 0x22, 0x03, 0x7f, 0x35, 0x22, 0x93, 0x76, 0xec, 0x42, 0x30, +0x2b, 0xe0, 0x6f, 0xa1, 0xd0, 0xed, 0xfe, 0x26, 0xd3, 0xef, 0x3c, 0x8f, 0x8e, 0x63, 0x78, 0xc7, +0xea, 0x0b, 0x0a, 0x86, 0x3f, 0x09, 0x12, 0x2b, 0xb7, 0x7f, 0xc0, 0x25, 0x20, 0x7c, 0xab, 0x74, +0xaa, 0x46, 0x89, 0x55, 0x38, 0x7d, 0xc0, 0x6c, 0xb6, 0x43, 0xa5, 0x7f, 0x47, 0xeb, 0x15, 0x0b, +0x86, 0x4e, 0xe4, 0xcf, 0xc2, 0xd1, 0x7a, 0xbc, 0xd9, 0xdf, 0xcd, 0xd9, 0x80, 0x61, 0x9c, 0x70, +0x62, 0x7a, 0xe4, 0xae, 0xf3, 0xf7, 0x3e, 0x12, 0x79, 0xde, 0x68, 0xfb, 0xc2, 0x9e, 0x12, 0x2f, +0x0f, 0xfc, 0x5f, 0x78, 0xcf, 0x98, 0x1f, 0x52, 0xfe, 0x03, 0xa3, 0xd7, 0x5f, 0x0c, 0x66, 0x39, +0x64, 0x80, 0xc2, 0x0e, 0xee, 0xf2, 0xaf, 0x4d, 0xba, 0x1c, 0x38, 0x48, 0x28, 0x8f, 0xb8, 0x08, +0xe1, 0x9c, 0x2e, 0xe3, 0xce, 0xda, 0x02, 0x16, 0x61, 0x4d, 0xc2, 0x58, 0x11, 0x2b, 0x65, 0xed, +0x2d, 0xc2, 0xcc, 0xc1, 0xf4, 0x19, 0xec, 0x2d, 0xe8, 0xe2, 0x52, 0x8c, 0xde, 0x07, 0xc1, 0x88, +0x06, 0xee, 0xd3, 0x47, 0x29, 0xb4, 0x76, 0x15, 0xe6, 0xd1, 0xbc, 0x05, 0x67, 0xab, 0xef, 0x7c, +0xe9, 0x3c, 0xe7, 0xe0, 0x47, 0x04, 0xc2, 0x0a, 0xd5, 0x3f, 0x6a, 0x32, 0xce, 0x76, 0x71, 0xc9, +0x5b, 0x29, 0xbf, 0x2e, 0x23, 0x3e, 0xc1, 0xed, 0xa8, 0xd1, 0xfc, 0xff, 0xe3, 0xe8, 0x81, 0xbb, +0x20, 0xb0, 0x46, 0x60, 0x30, 0x3f, 0x89, 0x26, 0x47, 0xbb, 0xe1, 0x35, 0xa0, 0x65, 0x94, 0xec, +0x72, 0x8a, 0x28, 0x9d, 0xb1, 0x4b, 0x85, 0xdd, 0x2d, 0x02, 0x75, 0x5f, 0x65, 0xec, 0x60, 0x32, +0x57, 0x6c, 0x1b, 0x97, 0x2e, 0x05, 0x78, 0x43, 0x43, 0x8e, 0x45, 0x93, 0x70, 0xe1, 0xb7, 0x15, +0x0d, 0x45, 0xc8, 0x32, 0x92, 0xc4, 0x64, 0x46, 0x49, 0x6e, 0xc6, 0x4e, 0x18, 0x6d, 0xcb, 0x3e, +0x79, 0x04, 0x88, 0x65, 0x4e, 0x45, 0x78, 0xe5, 0xc4, 0x51, 0x84, 0x04, 0xdd, 0xaf, 0x78, 0x11, +0x71, 0x3f, 0x1c, 0x6a, 0x81, 0x18, 0xc7, 0x94, 0x59, 0x20, 0xa9, 0x7e, 0xad, 0xbb, 0xda, 0xf4, +0x02, 0xdd, 0x76, 0x51, 0x53, 0x08, 0xac, 0xb3, 0x7a, 0xc9, 0x5a, 0x9a, 0x0e, 0xfb, 0x2a, 0x9a, +0xa0, 0x1c, 0xb5, 0xc2, 0xca, 0xd7, 0x7c, 0x06, 0x69, 0x0d, 0x98, 0x2d, 0xf8, 0x3c, 0x7f, 0xc0, +0x6b, 0x9c, 0x2e, 0x77, 0xaa, 0xea, 0x3d, 0x57, 0x49, 0xcf, 0xfd, 0xb3, 0x33, 0x4c, 0x9e, 0x04, +0x71, 0x6f, 0xf6, 0xbd, 0x53, 0xfa, 0x1e, 0xf6, 0xad, 0xae, 0xee, 0x0f, 0xc4, 0x9a, 0xd4, 0x73, +0x84, 0xf2, 0x60, 0x1b, 0xbf, 0xff, 0x20, 0x24, 0x57, 0x36, 0xcd, 0x70, 0x34, 0x2d, 0xdd, 0x87, +0x73, 0xce, 0xb5, 0x5c, 0xee, 0x60, 0xdf, 0x7b, 0x09, 0xec, 0x73, 0x52, 0x11, 0xf9, 0xc0, 0xe5, +0x48, 0x6e, 0xfc, 0x5c, 0x4d, 0x99, 0xfb, 0x0b, 0xa8, 0xae, 0x27, 0x59, 0x4f, 0x7b, 0xda, 0xcc, +0xde, 0x21, 0x42, 0x3b, 0x61, 0xbb, 0xbd, 0x7d, 0x88, 0xf6, 0x60, 0x4b, 0x1d, 0x5d, 0x4d, 0x88, +0x6b, 0x39, 0x59, 0x8c, 0xc3, 0xef, 0x6e, 0x39, 0xa1, 0x7f, 0xcc, 0x0a, 0x4e, 0xbd, 0xfb, 0xf0, +0xa9, 0xde, 0xc1, 0x77, 0xfc, 0xfd, 0xb4, 0x3a, 0x51, 0x42, 0x19, 0x42, 0x88, 0x55, 0x9b, 0xe8, +0xfa, 0x0b, 0x7f, 0x6c, 0x0e, 0x2c, 0x50, 0x30, 0x76, 0xa7, 0x56, 0x83, 0x88, 0x5a, 0xac, 0x3f, +0xf5, 0x59, 0x42, 0x1a, 0x8a, 0x29, 0x35, 0x0c, 0x21, 0xd7, 0xfd, 0x0d, 0xf4, 0xd0, 0xe2, 0x83, +0xed, 0x59, 0x53, 0x99, 0x44, 0x7e, 0xb9, 0xb8, 0x26, 0x17, 0x84, 0x12, 0x08, 0xec, 0xdc, 0x80, +0x3d, 0xa9, 0x66, 0x4a, 0x40, 0x9d, 0x97, 0x48, 0xe2, 0x04, 0xcc, 0x2a, 0x81, 0x4d, 0xff, 0xe1, +0x0f, 0xb4, 0x75, 0xf6, 0x40, 0x28, 0xbe, 0x8f, 0xae, 0x1a, 0x5a, 0x9b, 0x1d, 0x5a, 0x59, 0xea, +0x16, 0xd0, 0x7c, 0xd4, 0x3f, 0x1e, 0x86, 0xc3, 0x22, 0x55, 0xdf, 0xe0, 0xaf, 0x69, 0xdd, 0x2d, +0x59, 0x1e, 0x04, 0xfa, 0xdf, 0xfe, 0xe9, 0x85, 0x87, 0x6d, 0x9c, 0x58, 0x75, 0x33, 0xc5, 0x69, +0x54, 0x98, 0xb8, 0xb8, 0x6b, 0x78, 0x25, 0xb8, 0xf5, 0x59, 0x9d, 0xab, 0x11, 0xd4, 0x67, 0x62, +0x9a, 0xa5, 0xe0, 0x94, 0xa5, 0xcf, 0xfc, 0x6f, 0xf4, 0xf7, 0xae, 0x6e, 0xf8, 0x84, 0xb4, 0xcd, +0x71, 0x6a, 0xf4, 0x34, 0x7e, 0xd0, 0x29, 0xbe, 0x26, 0x36, 0x08, 0xd1, 0x4b, 0x75, 0xf2, 0x91, +0x65, 0x39, 0x77, 0x06, 0x17, 0xc9, 0x48, 0x56, 0x46, 0x41, 0xca, 0x57, 0x44, 0x46, 0x41, 0x81, +0x3e, 0x5e, 0x8b, 0xf2, 0x1c, 0x64, 0xfe, 0x60, 0x2f, 0x6d, 0xc3, 0xd3, 0x4b, 0xc7, 0xc3, 0x3a, +0xd3, 0x2f, 0xcf, 0x6c, 0xaf, 0xbf, 0xd2, 0x36, 0xab, 0xc1, 0x24, 0x69, 0x71, 0x25, 0x3d, 0x35, +0xff, 0x20, 0x1e, 0x9b, 0x1b, 0x02, 0x9f, 0xc6, 0x78, 0x2a, 0xc7, 0xc1, 0xd5, 0x8f, 0x9b, 0x4c, +0x2c, 0xdf, 0x48, 0x20, 0xf1, 0x89, 0xa0, 0x0c, 0xe0, 0x92, 0x55, 0x8a, 0x79, 0x02, 0xf7, 0xbc, +0x67, 0x8b, 0x3e, 0x39, 0x42, 0x33, 0xa5, 0xc1, 0xff, 0xe1, 0xcd, 0x02, 0x60, 0x1e, 0x9b, 0xc2, +0xf6, 0xce, 0x54, 0xe9, 0x3b, 0x04, 0x4d, 0x03, 0x3f, 0xed, 0xd3, 0x75, 0xea, 0x33, 0x92, 0xeb, +0x24, 0xf5, 0x53, 0x64, 0xbe, 0x9e, 0x5a, 0xd7, 0xf4, 0x81, 0x07, 0xca, 0x6a, 0xa0, 0x2a, 0xcf, +0xd9, 0x57, 0xf2, 0x51, 0xb8, 0x1a, 0xdc, 0x37, 0x1a, 0xc7, 0xaf, 0xa1, 0xf7, 0x8a, 0x06, 0xf1, +0x4e, 0x21, 0x2e, 0x78, 0x64, 0x70, 0x52, 0x3c, 0xcf, 0x6c, 0xd0, 0xf2, 0x94, 0x27, 0x8c, 0x41, +0xca, 0xad, 0xa2, 0x6b, 0xea, 0xe2, 0x20, 0xbd, 0x58, 0x97, 0x6c, 0xe5, 0xcb, 0x08, 0x08, 0x48, +0x0b, 0xd4, 0x9d, 0x70, 0xee, 0xfc, 0x72, 0x2b, 0x04, 0x2d, 0x28, 0x5b, 0xdb, 0x38, 0x32, 0xde, +0xa8, 0xed, 0xeb, 0x34, 0x55, 0x34, 0xa1, 0x36, 0xf9, 0x02, 0x95, 0xa8, 0x8c, 0x70, 0x0d, 0x62, +0x84, 0x4c, 0xce, 0x82, 0x55, 0x06, 0x19, 0xd1, 0x3a, 0x69, 0x01, 0x88, 0x27, 0x93, 0x95, 0xac, +0xaa, 0x58, 0x46, 0x14, 0x69, 0x57, 0x70, 0xc0, 0x7c, 0xdf, 0xa4, 0xb5, 0x84, 0xe7, 0x0d, 0x9a, +0xd9, 0x14, 0x6c, 0x1c, 0xca, 0xe0, 0x73, 0x31, 0x67, 0x3f, 0x6f, 0x43, 0xc1, 0xf2, 0xfc, 0xf2, +0x2a, 0x66, 0xb4, 0x1e, 0x72, 0xbe, 0x73, 0x2f, 0xc1, 0x42, 0x7f, 0x25, 0xc1, 0xaf, 0x7e, 0xd9, +0x38, 0x10, 0x75, 0xda, 0xae, 0xd3, 0x34, 0x26, 0xfb, 0x1b, 0x2b, 0x59, 0xc8, 0xe2, 0xcc, 0xf6, +0x41, 0xca, 0xfc, 0xd1, 0x7b, 0xd4, 0xc5, 0x73, 0x15, 0xbe, 0x20, 0xdf, 0x9a, 0xb6, 0xca, 0x9b, +0x9e, 0x54, 0x8e, 0x65, 0x42, 0xaa, 0xfa, 0x35, 0x7b, 0x44, 0x34, 0x66, 0x6a, 0xbe, 0x55, 0xe4, +0xf3, 0x9c, 0x42, 0x13, 0x99, 0xd6, 0x25, 0x7d, 0x46, 0xfc, 0x2f, 0x71, 0xd8, 0x69, 0x1d, 0x6c, +0xf4, 0xed, 0xca, 0x7b, 0x52, 0x89, 0xb7, 0xa3, 0xb9, 0xde, 0xc2, 0xd5, 0x92, 0x46, 0xc1, 0xe7, +0xfb, 0x17, 0xf0, 0xd3, 0x2b, 0xb4, 0x7a, 0xf6, 0x7d, 0x82, 0x77, 0x2c, 0xe2, 0xd9, 0x6e, 0x78, +0xfd, 0x5c, 0x6e, 0x20, 0x3e, 0xd2, 0xc6, 0x74, 0x9c, 0x91, 0xfe, 0xa6, 0x59, 0xd0, 0x0b, 0x45, +0x1d, 0x09, 0xc0, 0x36, 0x8f, 0xab, 0x52, 0xef, 0x1b, 0x48, 0x3f, 0xf9, 0xf8, 0x2b, 0x61, 0xcb, +0xf6, 0x01, 0x4c, 0x0b, 0xdf, 0x3c, 0xa4, 0x8d, 0x2b, 0x73, 0xb7, 0x26, 0xc4, 0xa5, 0x3c, 0x64, +0x86, 0x2c, 0x23, 0x27, 0xe2, 0xc1, 0xfc, 0x65, 0xea, 0x5e, 0x64, 0xe6, 0x9c, 0x81, 0x3e, 0x0d, +0x9f, 0xe0, 0x20, 0xcf, 0xd9, 0xdd, 0x1e, 0xcb, 0xf4, 0x94, 0x74, 0x3b, 0xe9, 0x3b, 0x12, 0xa5, +0x95, 0x96, 0x34, 0x09, 0x15, 0x5c, 0x2b, 0x3f, 0x09, 0xdf, 0xf5, 0x25, 0x48, 0x8b, 0x53, 0xee, +0x8d, 0x44, 0xf4, 0x9b, 0xd6, 0x05, 0x71, 0x64, 0x50, 0x30, 0x28, 0x17, 0xf1, 0xb4, 0x5e, 0xd0, +0x2a, 0x4a, 0xfb, 0xa7, 0xbd, 0xd8, 0xc5, 0x22, 0x00, 0x54, 0x66, 0x78, 0x34, 0x29, 0x1a, 0xd7, +0x59, 0x58, 0x01, 0x39, 0x90, 0xa2, 0xd0, 0xe1, 0x4d, 0xab, 0x23, 0x34, 0x2a, 0xd4, 0x72, 0x73, +0x7f, 0x65, 0xd6, 0x38, 0x97, 0x79, 0x53, 0x36, 0x29, 0xd9, 0x68, 0xa1, 0xd7, 0x71, 0x99, 0xb6, +0xf6, 0x8d, 0x05, 0xbe, 0xb4, 0xf6, 0x46, 0xa5, 0x65, 0x23, 0x29, 0x9b, 0x4a, 0xcc, 0xca, 0xf7, +0xd9, 0x81, 0xc0, 0xd3, 0xd3, 0xc0, 0xf2, 0x3c, 0xc9, 0x39, 0x42, 0x8d, 0x19, 0x52, 0x5a, 0x30, +0x2e, 0x95, 0xf4, 0xd0, 0xa4, 0x48, 0x03, 0x9b, 0x87, 0xe9, 0x7a, 0x27, 0x69, 0x1e, 0xbe, 0xf5, +0xac, 0xf6, 0x74, 0x30, 0xae, 0xc1, 0x93, 0xcd, 0xc6, 0x34, 0xb6, 0x52, 0xb0, 0xe0, 0x1d, 0xf0, +0xa4, 0xc1, 0xc6, 0xdd, 0xef, 0x68, 0x5e, 0x3a, 0xe1, 0x00, 0x14, 0xf7, 0xdd, 0xef, 0xb7, 0xa2, +0x62, 0xfc, 0x96, 0xd1, 0xc3, 0xb7, 0x0f, 0x4c, 0xba, 0x7f, 0x70, 0xd8, 0xa6, 0xc7, 0x23, 0x1b, +0xaa, 0x95, 0xae, 0xc3, 0xcd, 0x8f, 0x51, 0x81, 0x9e, 0xaf, 0x02, 0xe9, 0x3e, 0x85, 0x81, 0x1c, +0xf0, 0x14, 0x4b, 0x6a, 0x29, 0x3c, 0x73, 0x05, 0xde, 0x7f, 0x6e, 0x48, 0x67, 0x4f, 0xd7, 0xa2, +0x2d, 0x28, 0x7b, 0xab, 0x9f, 0xef, 0x74, 0x2c, 0x5c, 0xc4, 0x8c, 0xc1, 0xa4, 0x36, 0xcf, 0x4f, +0x0a, 0xad, 0xba, 0xd3, 0xf6, 0x5d, 0xa5, 0x6f, 0xdf, 0xca, 0x43, 0xe9, 0x58, 0x8c, 0xbd, 0x83, +0xfc, 0x28, 0x5b, 0x5e, 0x3d, 0x99, 0x36, 0x6c, 0xfb, 0xcb, 0x4a, 0x6c, 0xee, 0xa1, 0x05, 0xc5, +0x0e, 0xdd, 0x73, 0xcd, 0xca, 0xc8, 0x18, 0x23, 0x54, 0x6b, 0xef, 0xab, 0x8d, 0xfb, 0x1e, 0x8b, +0x8f, 0x45, 0xe0, 0x38, 0x93, 0x23, 0xd0, 0x0f, 0xfa, 0x48, 0x59, 0xfc, 0xf2, 0x00, 0x50, 0x69, +0xbe, 0xe6, 0x79, 0xc6, 0xbb, 0xff, 0xc0, 0xf7, 0x1b, 0x9f, 0x21, 0xcd, 0x89, 0xed, 0x7e, 0xa8, +0xce, 0x0a, 0x25, 0x9d, 0x9f, 0x69, 0xb4, 0x62, 0x05, 0x66, 0x3f, 0x6f, 0x93, 0x0a, 0x43, 0x13, +0x98, 0xd0, 0x74, 0xa8, 0x3b, 0xaf, 0x83, 0x0f, 0x3c, 0x6c, 0x63, 0xef, 0xd1, 0x37, 0xd1, 0x96, +0x2f, 0x4d, 0x7f, 0xa3, 0xfa, 0x10, 0x36, 0xcf, 0xa8, 0x86, 0xb9, 0xb1, 0xd4, 0x0d, 0xef, 0x3e, +0x71, 0xfa, 0xce, 0xb5, 0x9c, 0xf7, 0x27, 0x98, 0xd3, 0x63, 0x54, 0xdd, 0xe9, 0x25, 0xa9, 0xd1, +0x3c, 0xe2, 0xfe, 0xd1, 0x9c, 0x40, 0x48, 0xd3, 0xce, 0x5a, 0x9b, 0xf1, 0x9f, 0x2a, 0xaf, 0xa9, +0x3e, 0x94, 0x77, 0xac, 0x40, 0x7b, 0x90, 0x82, 0xe5, 0xca, 0xa8, 0x41, 0xc7, 0x93, 0x8a, 0xd1, +0xf4, 0x5c, 0xfd, 0x53, 0xdc, 0x88, 0x77, 0x7f, 0xb7, 0xc8, 0xc8, 0x8d, 0x35, 0x10, 0x31, 0xef, +0x5b, 0x3b, 0xd3, 0xdf, 0x28, 0xbb, 0xc4, 0xe5, 0xc5, 0x5d, 0x0a, 0x80, 0xbe, 0x75, 0x0f, 0xcc, +0xbd, 0x06, 0xf9, 0xfb, 0x98, 0x46, 0xd7, 0x09, 0x31, 0x15, 0xaf, 0xa9, 0x13, 0x7d, 0xc2, 0xfe, +0x78, 0xcb, 0x9d, 0xa9, 0x94, 0xc2, 0x0e, 0xe2, 0x0f, 0x3c, 0x1d, 0xb7, 0xad, 0x8b, 0x37, 0xcd, +0x32, 0x6d, 0x28, 0x85, 0x7a, 0xd4, 0x28, 0x24, 0x37, 0xa4, 0x84, 0xdc, 0xd2, 0x8f, 0x83, 0xc1, +0x17, 0xf8, 0x1c, 0x67, 0x20, 0xf5, 0x7e, 0x17, 0x38, 0xe8, 0x6c, 0x18, 0x61, 0x6b, 0xb5, 0x31, +0x65, 0xea, 0x45, 0x81, 0x60, 0xcc, 0xf5, 0x23, 0xe4, 0xe3, 0xd8, 0x0f, 0x0b, 0x6b, 0x73, 0xe6, +0x66, 0xb6, 0xa2, 0x58, 0xf4, 0xc5, 0xf0, 0xcd, 0xa7, 0xb9, 0x90, 0x91, 0x4c, 0x90, 0x54, 0x25, +0x59, 0x9f, 0x9a, 0xf0, 0x39, 0x46, 0xe1, 0xe1, 0x3f, 0xe3, 0x91, 0x89, 0x8e, 0x80, 0xfa, 0xeb, +0x10, 0xf2, 0x28, 0xd3, 0xab, 0x55, 0xe0, 0x69, 0x3a, 0x31, 0xcb, 0xad, 0x29, 0x68, 0x57, 0xc4, +0x8e, 0x7f, 0x03, 0x63, 0x45, 0x9a, 0x2b, 0x11, 0x7c, 0xc0, 0x32, 0x3f, 0x64, 0xe0, 0x1e, 0x79, +0xb1, 0x78, 0xbc, 0x0d, 0xac, 0x2b, 0x93, 0xee, 0xcb, 0xcc, 0xac, 0x84, 0x4e, 0x33, 0x72, 0x89, +0x4a, 0x4b, 0x0a, 0xf4, 0x1d, 0xe4, 0x51, 0xb8, 0x0e, 0x3d, 0x43, 0x71, 0xc4, 0xb5, 0x0f, 0xde, +0x22, 0x11, 0x2f, 0x95, 0x7f, 0xb8, 0xab, 0xf4, 0x63, 0xd0, 0x4d, 0xa2, 0x59, 0x1d, 0xda, 0x87, +0x31, 0x34, 0xe2, 0x33, 0xa0, 0x36, 0xb4, 0x9e, 0x7e, 0xc7, 0x3e, 0x1d, 0xe1, 0xca, 0x88, 0x3a, +0x3d, 0x14, 0x5e, 0x03, 0x96, 0x63, 0x0f, 0x6d, 0x0c, 0xb1, 0x35, 0x51, 0x37, 0x80, 0x61, 0x43, +0xc4, 0xef, 0xbd, 0xb3, 0x13, 0x18, 0xf7, 0x0c, 0x7c, 0x90, 0x68, 0x80, 0xa0, 0x48, 0x77, 0x8c, +0xb1, 0x65, 0x25, 0xb7, 0xc2, 0x23, 0x0a, 0x9f, 0x6d, 0x41, 0x9f, 0x59, 0x7d, 0xd8, 0xf1, 0xa2, +0xd4, 0x0d, 0xc4, 0xc2, 0x2a, 0x42, 0x80, 0xb1, 0x0d, 0xb1, 0xb4, 0xaf, 0x21, 0xe1, 0xa7, 0x6e, +0x9c, 0x14, 0x4d, 0x26, 0xf0, 0x5b, 0x73, 0x35, 0x54, 0xf9, 0x72, 0x75, 0x11, 0x24, 0x77, 0xdb, +0xc6, 0xdc, 0x74, 0x35, 0x46, 0x9e, 0x89, 0x95, 0xd2, 0x85, 0x4e, 0xfc, 0x96, 0x6b, 0xce, 0x52, +0x33, 0x3e, 0x81, 0x58, 0xd0, 0x99, 0xdb, 0xcd, 0x43, 0x03, 0xe1, 0x83, 0x82, 0x0c, 0xeb, 0xae, +0x45, 0x5f, 0xbe, 0xfc, 0xe6, 0x4a, 0x01, 0xcf, 0x89, 0x69, 0x97, 0x33, 0x7e, 0x66, 0xed, 0xeb, +0x50, 0xb6, 0x8b, 0xf1, 0x74, 0x92, 0x3e, 0xd4, 0xaf, 0xcf, 0x31, 0xc0, 0xe3, 0x82, 0xf6, 0x44, +0xe7, 0xf0, 0xa2, 0x3a, 0x5a, 0xe0, 0x1e, 0xad, 0xfe, 0x46, 0x5f, 0x46, 0x2c, 0x31, 0xbe, 0xde, +0x4c, 0xf9, 0x9e, 0x68, 0xb1, 0x9a, 0x81, 0x3a, 0x87, 0x30, 0x2d, 0xe9, 0x84, 0xad, 0x86, 0xd3, +0x58, 0x82, 0xb2, 0x8f, 0x6e, 0x03, 0xe9, 0x08, 0x94, 0x5c, 0xad, 0x6b, 0x7a, 0x7b, 0xcf, 0x8a, +0x2a, 0xc1, 0x4a, 0xf7, 0x32, 0x0c, 0xf1, 0xb4, 0xba, 0x63, 0xb3, 0xdd, 0x65, 0xf6, 0xd6, 0x59, +0x72, 0x0f, 0xac, 0x89, 0x73, 0xfe, 0xfb, 0xa2, 0x0b, 0x9a, 0x56, 0xf4, 0xb0, 0x13, 0xc4, 0xe6, +0xee, 0xec, 0xda, 0x0e, 0xbc, 0x3a, 0x1f, 0xc3, 0x34, 0x0f, 0xbd, 0xac, 0x04, 0x18, 0x8a, 0x1e, +0x78, 0xe7, 0x07, 0xab, 0x82, 0x73, 0xb6, 0x50, 0x2e, 0xa2, 0x22, 0x82, 0x2f, 0x82, 0xa6, 0x7e, +0x16, 0x56, 0x0f, 0x9b, 0x88, 0xe8, 0x42, 0xbc, 0x89, 0x6f, 0xf5, 0x8f, 0x1c, 0x1c, 0xcc, 0x4d, +0xe5, 0xd5, 0xf5, 0x1b, 0x2e, 0xee, 0xb5, 0x19, 0xf3, 0x96, 0x1b, 0x60, 0xa0, 0xc2, 0xda, 0x20, +0x75, 0x55, 0x91, 0x01, 0x11, 0xbf, 0xd4, 0x3a, 0xf7, 0x35, 0x14, 0xa3, 0x29, 0xa3, 0x3a, 0x4b, +0xbf, 0x54, 0xbd, 0xb2, 0x86, 0x29, 0xa8, 0x7c, 0x59, 0xa5, 0x52, 0x8b, 0xc0, 0xc4, 0x00, 0xc7, +0x03, 0x32, 0x3f, 0x60, 0x15, 0xdb, 0xd7, 0x15, 0x06, 0x55, 0x43, 0x9f, 0x62, 0x8a, 0x12, 0x23, +0x9a, 0x59, 0x51, 0x94, 0x0b, 0x77, 0x2d, 0x25, 0x1b, 0xb1, 0xfa, 0xe8, 0xea, 0x2e, 0x6a, 0x40, +0x6a, 0x54, 0x84, 0xe3, 0xaf, 0x1f, 0xe6, 0xea, 0x47, 0x87, 0x68, 0x68, 0x61, 0x1c, 0x5d, 0x09, +0x9c, 0xcd, 0x77, 0xa9, 0x59, 0xe5, 0xa9, 0x2a, 0x68, 0x9d, 0x54, 0x0c, 0x88, 0xfe, 0x69, 0x93, +0xcb, 0xa8, 0xc2, 0x7f, 0xc1, 0x88, 0x2b, 0x86, 0x3b, 0xeb, 0x5c, 0xe3, 0xce, 0xcf, 0x66, 0x56, +0x82, 0xaf, 0x6b, 0xfb, 0x6e, 0x21, 0x8a, 0xe4, 0x25, 0xe9, 0x9d, 0xcd, 0xff, 0xfc, 0xd5, 0x31, +0xdc, 0x1a, 0x8a, 0xa1, 0x7e, 0xfe, 0x9b, 0xbd, 0x63, 0x3d, 0xf5, 0x45, 0xc2, 0x51, 0xb2, 0x55, +0x28, 0x36, 0x89, 0xd0, 0x78, 0x9e, 0xcb, 0x95, 0x89, 0xad, 0xbe, 0x73, 0xd1, 0xfa, 0x37, 0xbb, +0xd6, 0x78, 0xff, 0x3f, 0x93, 0x6e, 0x82, 0xf0, 0x84, 0x79, 0x66, 0xbb, 0x91, 0x46, 0x5a, 0x6e, +0xd9, 0xf5, 0x3f, 0x24, 0x28, 0x1e, 0x8d, 0x55, 0xc4, 0x27, 0xde, 0x47, 0xda, 0x94, 0xfd, 0x35, +0x43, 0x49, 0x49, 0x7d, 0xaf, 0xf2, 0x2d, 0x71, 0xa9, 0x3a, 0x64, 0xed, 0x2a, 0x39, 0x66, 0xc7, +0x32, 0x16, 0x64, 0x39, 0x8d, 0xdd, 0x78, 0xae, 0x1b, 0xaf, 0x72, 0x46, 0x2b, 0x00, 0x72, 0x52, +0xea, 0xb2, 0x06, 0x3d, 0x0c, 0xf0, 0x95, 0xad, 0x2e, 0x31, 0x13, 0xc5, 0x9b, 0x05, 0x93, 0x1d, +0xb5, 0x86, 0x5a, 0x0b, 0xa3, 0x51, 0x24, 0xf7, 0x6c, 0xe4, 0xf2, 0x5f, 0xb4, 0x34, 0x6e, 0x3a, +0xfb, 0xfa, 0xfb, 0x79, 0xc9, 0x87, 0x7c, 0xc3, 0x66, 0x37, 0x31, 0x7d, 0xd8, 0x54, 0x59, 0x36, +0x81, 0x79, 0x14, 0x36, 0x6d, 0x93, 0x2f, 0x62, 0x4e, 0x37, 0xde, 0x81, 0x14, 0x36, 0x60, 0x89, +0x79, 0x1f, 0xf4, 0x44, 0xe8, 0xdc, 0x37, 0x07, 0x94, 0x41, 0xea, 0xd2, 0x5a, 0x4b, 0xbe, 0x21, +0xdd, 0xec, 0x4e, 0xb3, 0x7d, 0x75, 0x00, 0xbf, 0x18, 0xa5, 0x22, 0xff, 0x3c, 0xe3, 0x2d, 0x4f, +0xa9, 0x5d, 0x2d, 0x7c, 0x04, 0x06, 0xd9, 0xa4, 0xed, 0x83, 0x2c, 0xa8, 0x2e, 0x23, 0x15, 0xc2, +0x3b, 0xde, 0x3f, 0xd4, 0x11, 0x74, 0x60, 0xaa, 0xc6, 0x10, 0xa6, 0x7d, 0xce, 0xb2, 0xd3, 0x42, +0xef, 0x73, 0xc9, 0xcd, 0x6c, 0x86, 0x5c, 0x51, 0x3e, 0xef, 0xfc, 0x0e, 0x96, 0x23, 0xbe, 0x1f, +0x15, 0x3d, 0x27, 0x77, 0x9c, 0x5f, 0xd2, 0x64, 0xed, 0xba, 0x96, 0x25, 0xbe, 0xb0, 0xb5, 0x2b, +0xc4, 0x85, 0xdc, 0x40, 0x47, 0x73, 0xbb, 0x10, 0x5d, 0x43, 0x37, 0x81, 0xad, 0x18, 0x24, 0x12, +0x89, 0xb5, 0x9b, 0x83, 0x26, 0x80, 0xe0, 0x56, 0xa1, 0x3a, 0x16, 0xea, 0xdc, 0x68, 0x42, 0xfd, +0x5b, 0x59, 0xbc, 0xc2, 0x7c, 0x49, 0x0f, 0xd5, 0xc4, 0x55, 0x69, 0x31, 0xec, 0xef, 0x11, 0xc5, +0xa0, 0xa3, 0xcb, 0x51, 0x85, 0xac, 0xee, 0xa3, 0x40, 0x49, 0x82, 0xd6, 0xb9, 0x7b, 0xf9, 0xf4, +0x42, 0x40, 0x1c, 0x81, 0x58, 0x21, 0x10, 0x45, 0xe6, 0xb1, 0xb6, 0x58, 0xd5, 0x69, 0xa2, 0xbe, +0x88, 0xe1, 0xc8, 0x27, 0x19, 0xa6, 0x32, 0xa5, 0xc6, 0x3b, 0xd8, 0x1a, 0xbe, 0x88, 0x1e, 0x24, +0xa9, 0x5c, 0x90, 0x26, 0x8e, 0xed, 0xdf, 0x98, 0x05, 0x57, 0x6d, 0x93, 0xcd, 0xaa, 0x6a, 0x2e, +0x82, 0xe6, 0xe5, 0x57, 0x6e, 0xcd, 0x55, 0x5c, 0xaa, 0x2b, 0xfc, 0x87, 0x9b, 0x82, 0x03, 0x39, +0x7c, 0x7f, 0x59, 0xbe, 0x60, 0x72, 0x71, 0x4f, 0xf1, 0xe7, 0xd9, 0x27, 0x9e, 0x5b, 0xd5, 0xbc, +0xb4, 0xe8, 0x7d, 0x19, 0x18, 0x52, 0xb7, 0xfe, 0xef, 0x1a, 0x9c, 0xde, 0xc9, 0x12, 0x11, 0x5f, +0xb1, 0x9a, 0xa9, 0x59, 0x4a, 0xd3, 0xd9, 0xf4, 0x9a, 0xf8, 0xd5, 0xf5, 0x67, 0xcf, 0x34, 0x2e, +0x23, 0x4f, 0x97, 0xfd, 0xe2, 0x1b, 0xe9, 0x86, 0xc8, 0x12, 0xe1, 0x56, 0xb4, 0x57, 0xa6, 0x51, +0xce, 0x9a, 0x0a, 0x04, 0xa9, 0xb4, 0x06, 0x87, 0xc4, 0xca, 0xa6, 0x62, 0x46, 0x81, 0xa3, 0x84, +0x87, 0xd9, 0x56, 0x95, 0xdd, 0xa6, 0xbc, 0x39, 0xa2, 0x1e, 0x2f, 0xa8, 0x4e, 0x33, 0x7c, 0x6c, +0x47, 0x8b, 0x25, 0x0a, 0x46, 0xf0, 0x10, 0xef, 0xef, 0x0f, 0x9b, 0xb2, 0xa9, 0xa3, 0x41, 0x0e, +0xa1, 0x61, 0xc0, 0x7b, 0x75, 0x7a, 0xc5, 0xf4, 0x82, 0x89, 0xc7, 0x8f, 0x82, 0x2a, 0x2d, 0x99, +0x11, 0x63, 0xab, 0xea, 0x22, 0x99, 0x36, 0xcd, 0xe4, 0xa2, 0x9a, 0xdb, 0xf1, 0x21, 0x7b, 0x48, +0x63, 0x82, 0xc4, 0xce, 0x66, 0x79, 0x2e, 0x69, 0x33, 0x4d, 0x28, 0x3d, 0x67, 0xe6, 0xfd, 0x7d, +0x58, 0xeb, 0x70, 0xa6, 0x37, 0x04, 0x7a, 0x4c, 0x6c, 0x4d, 0x5c, 0x41, 0x18, 0x24, 0x13, 0x52, +0xb1, 0xbb, 0x96, 0x4e, 0xe8, 0x79, 0x99, 0xac, 0xea, 0xa0, 0x0f, 0x57, 0x54, 0x09, 0xc7, 0x9d, +0x71, 0x60, 0x65, 0x0f, 0x7a, 0xb9, 0xf2, 0xd7, 0x03, 0xee, 0xcb, 0x81, 0xde, 0x96, 0x11, 0x44, +0x56, 0xbe, 0xc9, 0x70, 0x3a, 0xad, 0xf2, 0x31, 0xc0, 0xff, 0x94, 0x44, 0xa0, 0x3c, 0x43, 0x18, +0xc2, 0xb1, 0x81, 0x7d, 0xf7, 0xf9, 0x48, 0x00, 0xe8, 0x3c, 0x32, 0xfa, 0x18, 0x31, 0xde, 0xae, +0xe2, 0xd3, 0x0a, 0xce, 0xb6, 0x90, 0xca, 0x0e, 0xf5, 0xd0, 0xa4, 0x86, 0x1f, 0x4a, 0x27, 0x1c, +0x5f, 0xe0, 0x99, 0xfe, 0x80, 0x2c, 0xd5, 0x18, 0xcc, 0x1c, 0x99, 0xb4, 0xad, 0x59, 0x6e, 0x29, +0x9e, 0x8f, 0xac, 0xbb, 0x1e, 0x35, 0x8c, 0xfd, 0x9a, 0x3b, 0x9b, 0x3b, 0x6a, 0x66, 0x5a, 0x49, +0x9f, 0xfc, 0x5d, 0xc4, 0x7a, 0xbc, 0xdf, 0xe0, 0xe5, 0x62, 0xd0, 0xf2, 0xd1, 0xff, 0xe1, 0x22, +0xdf, 0x1b, 0x51, 0x73, 0x3a, 0x2e, 0x72, 0x64, 0xdf, 0x24, 0x04, 0x88, 0xe4, 0x78, 0x72, 0x7d, +0x68, 0xb1, 0x65, 0x21, 0xc6, 0xbb, 0xe4, 0x14, 0xe8, 0x4f, 0xb0, 0x5a, 0xba, 0x50, 0xdc, 0x93, +0xb8, 0x0c, 0xcb, 0x06, 0xdb, 0xf2, 0x11, 0x36, 0x4e, 0xcf, 0xf0, 0xdf, 0x54, 0xdc, 0x2a, 0x7b, +0x0e, 0xda, 0xbc, 0xc2, 0x83, 0xf9, 0x27, 0x2e, 0xb5, 0x71, 0x2b, 0xf3, 0xa3, 0x66, 0xa0, 0xfc, +0x56, 0x11, 0x26, 0xc0, 0x72, 0x33, 0x13, 0xb2, 0x63, 0xdd, 0x66, 0x8b, 0xf3, 0x66, 0xcb, 0xbb, +0xca, 0x09, 0xf1, 0x51, 0xbe, 0xb1, 0x32, 0x66, 0x50, 0xae, 0xaf, 0xab, 0x51, 0x5b, 0xb7, 0x18, +0x60, 0x32, 0xfc, 0xf7, 0x32, 0xde, 0xb5, 0x01, 0x00, 0x49, 0x23, 0xfd, 0x8b, 0x94, 0x21, 0xe9, +0xf0, 0x96, 0xdc, 0xd6, 0x32, 0xac, 0xf3, 0x43, 0x4a, 0xb6, 0xe3, 0x77, 0x3b, 0xa6, 0x12, 0xb3, +0x46, 0xfe, 0xb5, 0x7e, 0xeb, 0x53, 0x1b, 0x16, 0x9b, 0xfd, 0xec, 0x35, 0x3f, 0xfe, 0xc0, 0xb2, +0x7f, 0x11, 0xcd, 0xc0, 0x1b, 0xf2, 0x72, 0x4c, 0x0c, 0x9d, 0xca, 0xfc, 0x5e, 0x7a, 0x7f, 0x30, +0x7b, 0xb8, 0x14, 0xfd, 0xd2, 0x8a, 0x54, 0x53, 0x4a, 0x44, 0xef, 0x2c, 0x81, 0x2f, 0x89, 0x8a, +0xb7, 0x34, 0x8d, 0xed, 0xc3, 0x03, 0xec, 0xf5, 0xfa, 0x26, 0x57, 0x26, 0x4e, 0x65, 0x0d, 0x7c, +0x62, 0x86, 0xdd, 0x18, 0x9e, 0xdc, 0x95, 0xdf, 0x55, 0x88, 0x1b, 0xe0, 0x82, 0xca, 0xd6, 0x45, +0x67, 0x89, 0xbf, 0xf2, 0x7b, 0xc5, 0xc8, 0xdf, 0x68, 0x59, 0xd5, 0xeb, 0x47, 0x65, 0xe4, 0xc4, +0xd0, 0xa7, 0x64, 0x9d, 0x9f, 0x18, 0x84, 0x48, 0x8f, 0xac, 0x41, 0x8b, 0x76, 0x3c, 0xcd, 0xf1, +0x85, 0x85, 0x99, 0xdb, 0xc7, 0xa5, 0xbb, 0x7e, 0xdd, 0xf7, 0x34, 0x84, 0x27, 0x37, 0x74, 0x31, +0x0a, 0xe9, 0xd8, 0x4a, 0x3d, 0x91, 0x2e, 0x8c, 0x72, 0x19, 0x9c, 0x42, 0x49, 0xee, 0xbc, 0xe1, +0x1c, 0x21, 0x12, 0x75, 0xec, 0x71, 0x35, 0xe9, 0xa8, 0xf1, 0x7c, 0xe6, 0xe8, 0x58, 0x27, 0x1b, +0x4b, 0x7d, 0xa8, 0x50, 0xf8, 0xa6, 0xf9, 0x31, 0xc3, 0x32, 0xc9, 0x2b, 0xfd, 0x7d, 0x88, 0xe6, +0x9f, 0x1d, 0xc6, 0x05, 0xc9, 0xb5, 0xd2, 0xe8, 0x4b, 0x1f, 0x93, 0x0b, 0x2e, 0xbf, 0x51, 0x5d, +0xc2, 0xaf, 0xdf, 0x64, 0x5f, 0x6d, 0xef, 0xdf, 0xd1, 0xb1, 0x34, 0x3d, 0x7c, 0x9f, 0x2c, 0x33, +0x02, 0x71, 0x9f, 0xbf, 0x4b, 0xb1, 0x6e, 0xe7, 0xef, 0xb4, 0x04, 0x04, 0x8e, 0x90, 0x1e, 0x10, +0x50, 0x38, 0x51, 0x74, 0x52, 0xfa, 0x82, 0x1b, 0x5d, 0xf2, 0x9e, 0x3c, 0xf8, 0x48, 0x9a, 0xbc, +0xd8, 0x00, 0x8d, 0x73, 0xe3, 0x13, 0x9d, 0xbc, 0x5a, 0x09, 0xc5, 0x09, 0x7b, 0xfd, 0x3c, 0x1d, +0x83, 0xa5, 0xbd, 0xed, 0x04, 0x8d, 0xf8, 0x27, 0xa3, 0x25, 0xb2, 0x03, 0x44, 0xe6, 0x8d, 0x7a, +0xd4, 0x4d, 0xf9, 0x0e, 0x35, 0x45, 0xb2, 0x4c, 0x8e, 0x03, 0x5e, 0xbb, 0x93, 0xbc, 0xda, 0xce, +0xb7, 0x24, 0xbf, 0xa4, 0x15, 0x6c, 0x2a, 0xcb, 0xab, 0xb8, 0x1c, 0x7f, 0xb0, 0xe3, 0x27, 0x23, +0x39, 0xe6, 0xc9, 0xcd, 0x55, 0x37, 0xe6, 0x5d, 0xab, 0xc4, 0x69, 0x06, 0xca, 0xd0, 0x61, 0x9c, +0x10, 0x20, 0x28, 0xd9, 0xa9, 0xb9, 0x2a, 0x08, 0x98, 0x0b, 0xae, 0x67, 0x7a, 0xd1, 0x34, 0x5f, +0x09, 0x6b, 0x24, 0x54, 0x1d, 0xba, 0x30, 0x90, 0x23, 0x50, 0xfa, 0xf0, 0xfa, 0x77, 0x16, 0xa3, +0xa1, 0xa8, 0xb8, 0x30, 0xa8, 0x1d, 0xe7, 0x1b, 0xa6, 0x51, 0x8b, 0x86, 0xa9, 0xe3, 0x07, 0x51, +0x29, 0x22, 0x45, 0x42, 0x4a, 0x9b, 0x82, 0x5e, 0x06, 0x42, 0x2c, 0x9d, 0xb1, 0x85, 0x6f, 0x37, +0xa6, 0xc6, 0xa6, 0xb9, 0x51, 0x28, 0x25, 0x6f, 0x96, 0x07, 0xb5, 0x15, 0x25, 0x2f, 0x33, 0x4d, +0xb5, 0xea, 0xb5, 0x9e, 0x66, 0xda, 0x5d, 0x02, 0x9e, 0x54, 0xbf, 0x31, 0x79, 0x49, 0xa3, 0xb9, +0x94, 0x0e, 0xe5, 0xd8, 0xca, 0x0b, 0xa1, 0x06, 0xa0, 0x25, 0x36, 0x07, 0x10, 0x0d, 0xbd, 0x87, +0xb6, 0x0b, 0x00, 0x04, 0x43, 0x3c, 0xf0, 0x4e, 0x65, 0x93, 0x8b, 0xf7, 0x51, 0x7a, 0xed, 0x48, +0x90, 0x13, 0x1d, 0x99, 0x74, 0x16, 0xd5, 0xa2, 0x75, 0xfe, 0xae, 0xee, 0xfc, 0x31, 0xe6, 0x8e, +0x07, 0x41, 0x95, 0x50, 0xec, 0xd6, 0x47, 0x30, 0x69, 0x7d, 0x62, 0x8d, 0x71, 0x35, 0x57, 0x5c, +0xc4, 0xba, 0xa8, 0x07, 0x79, 0xa7, 0x34, 0xb2, 0x03, 0xb7, 0x49, 0xd0, 0x17, 0x4d, 0xe8, 0x07, +0xf3, 0x0d, 0xfd, 0x36, 0x71, 0x05, 0x02, 0x90, 0xa2, 0xec, 0xfd, 0xe3, 0x0f, 0x9f, 0xec, 0xd7, +0x30, 0xd6, 0xc0, 0x79, 0x3b, 0xd3, 0xdf, 0xbd, 0x5e, 0xc0, 0xc2, 0x38, 0x06, 0xec, 0x3a, 0x02, +0x9f, 0x12, 0x2d, 0xba, 0x87, 0x9c, 0x99, 0x1f, 0x83, 0x89, 0x03, 0x93, 0x78, 0xf1, 0x2a, 0x0d, +0x5a, 0x3b, 0x00, 0xc2, 0x7a, 0xab, 0x90, 0x8d, 0xda, 0x25, 0x93, 0xf6, 0x2a, 0xf3, 0xa3, 0xcf, +0xdc, 0x3f, 0x7f, 0xac, 0x1c, 0x8b, 0x46, 0x84, 0x6f, 0x15, 0x6c, 0xdb, 0x25, 0xda, 0x4c, 0x0a, +0xc0, 0xbc, 0xd4, 0x54, 0x23, 0x2e, 0x86, 0x5d, 0x17, 0x56, 0xa5, 0xd7, 0xfb, 0x17, 0x98, 0xa7, +0xd3, 0xfb, 0x90, 0x05, 0x6d, 0xaf, 0xb5, 0xa3, 0x12, 0xf7, 0x77, 0x9f, 0xde, 0xba, 0x9e, 0x79, +0xc2, 0x6e, 0x38, 0xda, 0x64, 0x46, 0x6e, 0x5a, 0x0d, 0x03, 0xc8, 0xfa, 0x81, 0xd1, 0x34, 0xf3, +0xd3, 0x36, 0xb4, 0x61, 0x35, 0x1b, 0xe0, 0x5c, 0xd1, 0x79, 0xc7, 0xed, 0xee, 0x85, 0x74, 0x39, +0x4d, 0x4a, 0xc6, 0x7b, 0xec, 0x44, 0x05, 0x08, 0xb4, 0x28, 0xdd, 0x48, 0x9b, 0x81, 0xa0, 0x41, +0x2f, 0xb8, 0x04, 0xdc, 0x5b, 0xf4, 0x3b, 0x6b, 0x0d, 0x07, 0x8f, 0x7c, 0xf2, 0x3e, 0x9a, 0xde, +0x47, 0x53, 0xaf, 0x75, 0x7c, 0x72, 0x56, 0x10, 0xf6, 0x29, 0x6e, 0xca, 0x97, 0x3f, 0x02, 0x6e, +0x8c, 0xa7, 0x88, 0xc1, 0xff, 0xe5, 0x95, 0x47, 0x75, 0x41, 0x58, 0xbc, 0xb8, 0x04, 0xfa, 0xe9, +0xcb, 0xb6, 0xbc, 0x09, 0x3c, 0x5a, 0xcf, 0x61, 0x24, 0x37, 0xea, 0x5b, 0x4e, 0x85, 0x4c, 0x34, +0xb8, 0xc0, 0x03, 0x93, 0x2e, 0xaa, 0xa3, 0x7c, 0x38, 0x8e, 0xad, 0x02, 0xe8, 0x04, 0xc1, 0x15, +0xad, 0x05, 0x4e, 0xb6, 0x65, 0x33, 0xe0, 0xa9, 0x92, 0xc5, 0x1e, 0xf6, 0xec, 0xbe, 0x1c, 0x3c, +0xaf, 0x37, 0x2a, 0xb6, 0xd1, 0x76, 0xe5, 0x27, 0x30, 0xe3, 0x99, 0xd0, 0x46, 0xe9, 0x24, 0x89, +0x7a, 0x61, 0xa2, 0xd8, 0xbf, 0xbf, 0xd7, 0x75, 0xec, 0xa4, 0x61, 0xfc, 0xca, 0x43, 0x22, 0xe2, +0xad, 0x0b, 0x7f, 0x0e, 0xe9, 0x80, 0xe4, 0x45, 0xe7, 0xe6, 0xcb, 0x30, 0x84, 0x99, 0x83, 0xe9, +0x80, 0xe4, 0xe1, 0x54, 0x02, 0xa3, 0xc9, 0xa6, 0x40, 0xf2, 0x6d, 0xc6, 0x10, 0x07, 0xd0, 0x1e, +0xbc, 0x20, 0xae, 0x8e, 0x87, 0xa9, 0xd9, 0xa9, 0xb8, 0xeb, 0xa8, 0x1a, 0x0d, 0xd5, 0xfd, 0x0b, +0x19, 0x1a, 0x08, 0x96, 0xa3, 0x8b, 0x9e, 0x9d, 0x33, 0xdc, 0x78, 0x0b, 0xd6, 0xdd, 0x5e, 0xad, +0x33, 0x6e, 0x23, 0xa1, 0x42, 0x71, 0x57, 0x2d, 0x1a, 0xd3, 0xd9, 0x7e, 0x89, 0x9c, 0x69, 0xc8, +0x38, 0x05, 0x34, 0xab, 0x3d, 0x8a, 0xef, 0x4e, 0xb4, 0xf5, 0xb3, 0x38, 0x7e, 0x67, 0xff, 0x72, +0x9c, 0xed, 0x8e, 0xda, 0x27, 0xb4, 0xe8, 0xbb, 0x9c, 0x41, 0xca, 0x26, 0xe6, 0xa5, 0x2b, 0x0a, +0x25, 0x61, 0x13, 0x08, 0x90, 0x4f, 0x25, 0x0e, 0x1e, 0x44, 0xc9, 0x0c, 0x14, 0x9f, 0x08, 0x34, +0x25, 0x04, 0x1a, 0x8a, 0x3e, 0xcb, 0xca, 0xd1, 0x47, 0x7a, 0x53, 0x20, 0x61, 0xeb, 0x64, 0x8e, +0xcd, 0x9e, 0x5b, 0x6a, 0xf9, 0x9d, 0x53, 0xb0, 0xb9, 0x85, 0xda, 0x4a, 0x24, 0x3a, 0xb0, 0x37, +0xfd, 0x58, 0xa9, 0x45, 0x6f, 0x64, 0x8d, 0xd3, 0x19, 0x4a, 0xc8, 0x84, 0x9a, 0xb9, 0xfa, 0x74, +0x51, 0xe6, 0xf9, 0x26, 0x1e, 0x1f, 0x98, 0x78, 0x1e, 0x1a, 0x6f, 0x60, 0x66, 0x05, 0xb6, 0xfa, +0x14, 0x8b, 0x26, 0xca, 0xb6, 0x65, 0x86, 0xa9, 0xb4, 0xc2, 0x76, 0x8f, 0xb2, 0x60, 0x9f, 0x9d, +0x66, 0x86, 0x2a, 0xb7, 0xa8, 0x7c, 0x6a, 0x24, 0xcb, 0x02, 0x6b, 0xc3, 0x02, 0x7e, 0x62, 0xf6, +0xbe, 0xc9, 0x03, 0x21, 0xf6, 0x78, 0xed, 0xff, 0xd2, 0x24, 0x2a, 0x97, 0x69, 0x1e, 0x03, 0xec, +0xf5, 0x03, 0x1f, 0xba, 0xf0, 0x11, 0x90, 0xdd, 0x84, 0xee, 0xad, 0x81, 0x4d, 0xaa, 0x99, 0xc4, +0x77, 0xbe, 0x36, 0x18, 0x53, 0x6b, 0x0f, 0x64, 0x33, 0x20, 0xcb, 0x7f, 0xa9, 0x06, 0x2b, 0x92, +0xca, 0xde, 0xdd, 0x4c, 0x50, 0xe6, 0xeb, 0x2b, 0x2a, 0xff, 0xda, 0xd2, 0x1e, 0xc1, 0x6b, 0xa1, +0xbc, 0x84, 0xa1, 0x59, 0x92, 0xb7, 0x74, 0x7d, 0x30, 0xa8, 0xb2, 0x38, 0x3b, 0xdd, 0x8a, 0x06, +0x98, 0xc4, 0x4b, 0xd9, 0x22, 0x10, 0x41, 0xc3, 0xc8, 0xf7, 0x7f, 0x45, 0xb1, 0x6f, 0x51, 0x75, +0xb3, 0xb4, 0xe8, 0x53, 0x9b, 0x18, 0xe7, 0xf6, 0xa7, 0xad, 0x7c, 0x69, 0xac, 0x70, 0xeb, 0x18, +0x48, 0x41, 0x85, 0xf4, 0x6f, 0xfa, 0xef, 0xb2, 0x9c, 0x7c, 0x38, 0x2b, 0xf6, 0x2e, 0xeb, 0x38, +0xa1, 0x9d, 0x7f, 0xf1, 0x40, 0x27, 0xc2, 0x9f, 0x46, 0x3a, 0xeb, 0x13, 0x14, 0xb7, 0xb0, 0x0e, +0xed, 0xad, 0xa0, 0x3d, 0x2d, 0xf9, 0x59, 0x3a, 0x01, 0x3e, 0x4e, 0x60, 0x80, 0xdc, 0xb0, 0x95, +0x3a, 0x11, 0x5d, 0xae, 0x40, 0xca, 0x70, 0x39, 0x30, 0x77, 0x01, 0x7f, 0x65, 0x8b, 0x14, 0x16, +0x4d, 0x32, 0x3a, 0xfd, 0xe4, 0x4b, 0xdb, 0xb7, 0x43, 0x0f, 0x87, 0x4f, 0x88, 0x8e, 0x28, 0x2b, +0x69, 0xb6, 0x4d, 0x77, 0xcc, 0x04, 0x26, 0x7d, 0xd4, 0x71, 0xf9, 0xc3, 0x53, 0xc2, 0x08, 0x6b, +0x95, 0xfc, 0xb9, 0x08, 0x14, 0xd5, 0xb8, 0x78, 0xee, 0x3a, 0xd5, 0x8a, 0xe1, 0x32, 0x6e, 0xfe, +0xeb, 0x79, 0xca, 0xef, 0xd8, 0x0d, 0xbd, 0x0b, 0x49, 0xbd, 0xb7, 0xd1, 0x04, 0xc1, 0x44, 0x3e, +0x60, 0x15, 0xe6, 0xef, 0x7b, 0xa2, 0x06, 0x57, 0xff, 0xd4, 0x3d, 0xdf, 0x5c, 0xef, 0x8e, 0xc5, +0xfd, 0xd6, 0x25, 0x1a, 0x09, 0x39, 0xd4, 0xf0, 0x0e, 0x9d, 0x24, 0x71, 0x7b, 0x27, 0xe1, 0xb3, +0x27, 0xba, 0x4d, 0xf3, 0xb6, 0xf2, 0xbb, 0xb9, 0xc7, 0x58, 0xf0, 0xe5, 0x15, 0xf2, 0x4a, 0x61, +0x90, 0xaa, 0xf7, 0x48, 0x20, 0xc6, 0x17, 0x0c, 0xf7, 0xd9, 0x38, 0xf0, 0xe6, 0x89, 0x64, 0x63, +0x09, 0xd5, 0xc7, 0x5d, 0x5e, 0x6e, 0xb7, 0xa6, 0x79, 0x75, 0x4d, 0x7a, 0xab, 0xc0, 0xbd, 0x0d, +0x71, 0x08, 0x1d, 0x9f, 0x81, 0x63, 0x00, 0xd7, 0x06, 0x4d, 0x94, 0x89, 0x66, 0x2c, 0x0a, 0x4b, +0x9c, 0xbf, 0x82, 0xe0, 0x1a, 0x28, 0x6d, 0xee, 0x71, 0xb3, 0x31, 0x9c, 0x8b, 0x62, 0x14, 0xe0, +0x4f, 0xda, 0xde, 0xc5, 0xc4, 0xc9, 0xdf, 0x2e, 0x97, 0x46, 0x3b, 0x71, 0x96, 0x10, 0x82, 0x9a, +0x27, 0xec, 0xd7, 0x5a, 0xca, 0xf2, 0x45, 0x64, 0x13, 0x78, 0x1c, 0x70, 0x8e, 0xfd, 0x5f, 0x8f, +0x66, 0x81, 0xbd, 0x40, 0xdf, 0xe0, 0xc4, 0x92, 0x5d, 0xde, 0x42, 0xf2, 0xeb, 0x91, 0x70, 0x36, +0x3c, 0xdf, 0x18, 0xf5, 0x05, 0x67, 0x1d, 0x62, 0xa0, 0x17, 0x95, 0x4e, 0x56, 0xe0, 0xd0, 0x1b, +0x6d, 0x56, 0x45, 0xb3, 0x0e, 0x49, 0xc6, 0x0a, 0x83, 0x97, 0x7c, 0xed, 0xfc, 0xfa, 0x5c, 0xdb, +0x37, 0xfc, 0xa7, 0x79, 0x34, 0x6e, 0x04, 0xe2, 0xa6, 0xbe, 0x00, 0x1f, 0xd1, 0x2d, 0xbb, 0x35, +0x4a, 0x9a, 0x11, 0x34, 0xbb, 0x11, 0x5e, 0x79, 0x58, 0x1d, 0x77, 0x22, 0x33, 0x6f, 0x67, 0xca, +0x3a, 0x48, 0x8a, 0xdd, 0xe3, 0xd5, 0x2e, 0xa0, 0x45, 0xe3, 0x3d, 0x73, 0x1e, 0xb1, 0x45, 0x69, +0x83, 0x83, 0xe5, 0x59, 0x9e, 0x4d, 0xb5, 0x5d, 0x6a, 0xb8, 0xdd, 0x43, 0xf7, 0x21, 0x63, 0x14, +0x52, 0x0d, 0xc7, 0xa7, 0xa2, 0x65, 0xa7, 0x42, 0x84, 0xf5, 0x54, 0xc5, 0xba, 0xaf, 0xce, 0x5d, +0x53, 0xb7, 0x56, 0xc3, 0xe1, 0x9d, 0xa9, 0x8b, 0x73, 0x61, 0x7d, 0x31, 0x75, 0x69, 0x81, 0xf1, +0x41, 0x1f, 0x85, 0xe7, 0x37, 0xd4, 0x03, 0xf0, 0xb1, 0x98, 0x88, 0xd0, 0x54, 0xb3, 0xd7, 0xc0, +0x62, 0xa5, 0xe4, 0xeb, 0x13, 0x7c, 0xa9, 0xaf, 0x25, 0x37, 0xd4, 0xca, 0x79, 0x5e, 0xc6, 0x0d, +0xba, 0x41, 0xce, 0x26, 0xf0, 0xb1, 0xa2, 0xef, 0x55, 0x33, 0x19, 0xb4, 0x1f, 0xf5, 0x21, 0x32, +0x00, 0x03, 0xaa, 0x27, 0x35, 0x94, 0x71, 0xa9, 0xb6, 0x00, 0x91, 0xb7, 0xc7, 0x6a, 0x2d, 0xb3, +0x7a, 0x48, 0xfb, 0x9d, 0x6d, 0x3b, 0xcd, 0x13, 0x96, 0x04, 0x87, 0xec, 0xd7, 0xed, 0x48, 0x0c, +0xe0, 0xfb, 0xb2, 0xc9, 0xe5, 0xcf, 0x09, 0xe4, 0x4a, 0x8e, 0x2d, 0xe5, 0x2b, 0x79, 0x86, 0x29, +0xff, 0x31, 0xf1, 0x81, 0x31, 0xfe, 0x50, 0xe8, 0x9b, 0x92, 0x68, 0xda, 0x0d, 0xf3, 0xe3, 0x27, +0xd1, 0xc5, 0x87, 0x13, 0x01, 0xcf, 0x92, 0x4b, 0xf5, 0x73, 0x13, 0x0a, 0xe1, 0x19, 0x8c, 0xe0, +0x51, 0xf3, 0x29, 0xd5, 0xbf, 0x7b, 0x42, 0x04, 0xe5, 0x65, 0xfa, 0xfa, 0x1a, 0x23, 0x1f, 0x95, +0x31, 0xeb, 0x86, 0xff, 0x2d, 0x53, 0xe1, 0x0f, 0x2b, 0x61, 0x03, 0x0b, 0xbe, 0xfd, 0x91, 0xc0, +0x93, 0x06, 0xb2, 0x15, 0x2f, 0xf0, 0xa1, 0xcc, 0xb8, 0x9a, 0xba, 0xe5, 0x1d, 0xce, 0xb0, 0xef, +0x08, 0x1e, 0x23, 0x99, 0xcb, 0x83, 0x13, 0x94, 0x3a, 0xb9, 0x4e, 0xaa, 0x30, 0xb2, 0xce, 0x5a, +0xe5, 0x70, 0xfb, 0x3e, 0xbe, 0x99, 0xa2, 0x01, 0xf5, 0x10, 0xa7, 0x4c, 0x2f, 0x2c, 0x09, 0x4f, +0xf4, 0x87, 0x4d, 0xb9, 0xc6, 0xc2, 0x17, 0xd0, 0xc4, 0x99, 0x67, 0xd8, 0x2b, 0x8c, 0x83, 0x3e, +0xd6, 0x6b, 0x22, 0x58, 0xc4, 0x50, 0x6d, 0x5d, 0x4f, 0xa7, 0x20, 0x8b, 0x02, 0x97, 0x9e, 0xc8, +0x00, 0x2e, 0x34, 0x56, 0xb9, 0x54, 0x03, 0x55, 0xf5, 0xd3, 0xb5, 0x4a, 0x16, 0x02, 0x97, 0x5d, +0x84, 0x0f, 0x35, 0xa2, 0xd7, 0x5c, 0xef, 0xfa, 0x0b, 0x33, 0x67, 0x2d, 0x7f, 0x88, 0xb2, 0x74, +0xb0, 0x05, 0x1d, 0x03, 0xa6, 0x6f, 0xbc, 0xec, 0xde, 0x15, 0xbb, 0x26, 0x0a, 0x6f, 0x38, 0xfd, +0x3a, 0x03, 0x8b, 0x28, 0x0f, 0x17, 0xe7, 0xea, 0x8d, 0x6c, 0x62, 0x2c, 0x14, 0x2f, 0x0a, 0x17, +0xcf, 0x98, 0xdd, 0xe3, 0xa4, 0x07, 0x6b, 0xdb, 0x72, 0x36, 0x50, 0x7f, 0x64, 0x4d, 0x2a, 0x83, +0x9e, 0xfa, 0xda, 0x8f, 0xde, 0x5a, 0x1b, 0x80, 0xa3, 0xc8, 0x04, 0x33, 0x50, 0x70, 0x85, 0x62, +0x52, 0xb6, 0x9b, 0x20, 0x62, 0x13, 0x70, 0x23, 0x2e, 0x43, 0xed, 0x85, 0x01, 0x39, 0x41, 0xfd, +0x0a, 0x3a, 0x20, 0x19, 0xde, 0x35, 0x07, 0x54, 0xde, 0x3e, 0xda, 0x4a, 0x8f, 0x9a, 0x1e, 0x9d, +0xec, 0x95, 0x5a, 0xb0, 0x9b, 0xf6, 0xd8, 0x30, 0x07, 0xad, 0x3e, 0x23, 0x74, 0x52, 0xf4, 0xfe, +0x30, 0xb4, 0x5a, 0x23, 0xa7, 0x32, 0x34, 0x57, 0x16, 0x86, 0x73, 0x61, 0xdd, 0xca, 0x01, 0x4c, +0x78, 0x12, 0x56, 0x69, 0x84, 0x28, 0x75, 0x87, 0xdb, 0x58, 0x9b, 0x56, 0xdd, 0x18, 0x17, 0x29, +0xd7, 0x1d, 0x5e, 0x1d, 0xc6, 0x36, 0x2e, 0x3d, 0x49, 0xa9, 0xef, 0x38, 0x63, 0x14, 0xa7, 0x02, +0x39, 0x45, 0x07, 0xa9, 0xd0, 0xa5, 0x1e, 0x97, 0x4c, 0xfc, 0x2e, 0xd4, 0x51, 0x83, 0xdf, 0xbe, +0xf6, 0xb8, 0xb7, 0xd4, 0xe2, 0x2a, 0x89, 0x98, 0xee, 0x7a, 0x83, 0x98, 0xb6, 0x59, 0x98, 0xe6, +0xed, 0xa0, 0x02, 0xe1, 0x2c, 0x42, 0x1b, 0x02, 0xc9, 0x11, 0xcc, 0x6a, 0x8e, 0xda, 0xcd, 0x51, +0x32, 0xec, 0x2a, 0x53, 0x2d, 0x27, 0xfc, 0x3f, 0xe0, 0xec, 0x5c, 0x43, 0x09, 0x52, 0xa2, 0x0d, +0x34, 0xe9, 0x4a, 0xc3, 0x29, 0x8b, 0x9a, 0xa7, 0x98, 0x5d, 0x40, 0x02, 0xc8, 0x3a, 0xc6, 0x2c, +0x78, 0xd8, 0x15, 0x5b, 0xde, 0xfa, 0x95, 0x2b, 0xa7, 0x35, 0x42, 0xdb, 0xa1, 0x0e, 0x20, 0x98, +0x45, 0x65, 0xab, 0x75, 0x83, 0x2b, 0x3f, 0x60, 0x4f, 0x55, 0xc9, 0x4c, 0xeb, 0xe7, 0x5e, 0x15, +0xd5, 0x4b, 0x59, 0x15, 0xff, 0xc0, 0xe1, 0x30, 0x8b, 0x4c, 0x71, 0x54, 0x9b, 0xbc, 0x0a, 0x1e, +0xc5, 0xda, 0x2d, 0x0d, 0x46, 0x41, 0xd6, 0xa0, 0xca, 0xa2, 0x3a, 0x66, 0x7d, 0x8d, 0x7c, 0x39, +0x03, 0xa0, 0xf1, 0x4c, 0x49, 0x86, 0x25, 0xff, 0x82, 0xfb, 0xb2, 0x67, 0xc4, 0x0a, 0xfa, 0x0d, +0x6c, 0x10, 0xfe, 0xfc, 0x27, 0x71, 0xf7, 0x1c, 0x83, 0x98, 0x15, 0x62, 0xb1, 0x77, 0xc4, 0x9b, +0x52, 0x3f, 0x1d, 0xd8, 0xa8, 0xfd, 0x0f, 0xff, 0xde, 0xb4, 0xf3, 0x2b, 0xf7, 0xaf, 0xa8, 0xd9, +0xf0, 0x71, 0xbe, 0x27, 0x9b, 0xc5, 0x0e, 0xf4, 0xa3, 0x57, 0x54, 0x4a, 0x5a, 0x24, 0x1f, 0x80, +0x80, 0x2c, 0x8d, 0xf0, 0xb4, 0x56, 0xd1, 0xed, 0x25, 0x7f, 0x0d, 0x1a, 0xab, 0x4f, 0xf4, 0xbc, +0xf8, 0x95, 0x04, 0x10, 0x39, 0xd9, 0x16, 0x98, 0xe4, 0xf3, 0x92, 0x3d, 0x8e, 0xab, 0x75, 0x17, +0x25, 0x94, 0xef, 0x37, 0x10, 0x6b, 0x71, 0xe6, 0x99, 0x7b, 0xf8, 0x9f, 0xe9, 0xe3, 0x56, 0x5e, +0xb0, 0xc5, 0x01, 0xdb, 0xcb, 0x96, 0x60, 0x9d, 0x12, 0x7e, 0x36, 0xfa, 0x84, 0x5f, 0x0f, 0xf8, +0x48, 0xd0, 0xa3, 0xb1, 0xfa, 0xa8, 0x80, 0x7b, 0x96, 0x99, 0x96, 0xac, 0xb2, 0x8b, 0xcd, 0xc1, +0xe6, 0x3f, 0x73, 0x45, 0x07, 0xd3, 0x94, 0x88, 0xcc, 0x31, 0x44, 0xb8, 0xa7, 0xc0, 0xe4, 0x1e, +0xc9, 0x09, 0x7a, 0x01, 0x4e, 0x1d, 0x87, 0x90, 0xfb, 0x25, 0xc3, 0x42, 0xbc, 0x3b, 0x6c, 0x0c, +0xa7, 0x34, 0xf0, 0x29, 0x0a, 0x5f, 0x3b, 0x25, 0x48, 0x98, 0x9b, 0x9a, 0x51, 0x9b, 0x82, 0xa6, +0x34, 0x07, 0x80, 0x41, 0xf9, 0x77, 0x65, 0xa8, 0xa2, 0x39, 0x73, 0x3d, 0xc0, 0x43, 0x4f, 0x42, +0xdb, 0x04, 0x96, 0xbc, 0x95, 0xa2, 0xdf, 0xbf, 0x15, 0xd9, 0xd5, 0x8d, 0x27, 0xd3, 0x0e, 0x84, +0x26, 0x84, 0x79, 0xcf, 0x62, 0x0f, 0x5c, 0x27, 0x1b, 0x8f, 0x75, 0xfa, 0xc6, 0x46, 0x2b, 0xe7, +0xd7, 0x55, 0x66, 0x5c, 0x1b, 0xb5, 0x2e, 0xaa, 0xbf, 0xcf, 0x7d, 0x95, 0xbc, 0x37, 0x3c, 0xcd, +0x4c, 0x7d, 0x11, 0xdd, 0xc4, 0x0e, 0x7a, 0x97, 0x72, 0xc9, 0xbd, 0xbd, 0x43, 0xcc, 0xb9, 0xb4, +0x9a, 0xd3, 0x2e, 0x41, 0x1c, 0x69, 0xa9, 0x65, 0x8f, 0xa7, 0x05, 0xd0, 0x2b, 0x0d, 0x70, 0x02, +0x22, 0x06, 0x2d, 0x2a, 0xef, 0x83, 0x1c, 0x02, 0xf7, 0x71, 0x81, 0x7b, 0xf7, 0x53, 0x26, 0x15, +0xc9, 0x0f, 0x05, 0x54, 0x22, 0x5e, 0xcf, 0xaf, 0x04, 0x3a, 0x1a, 0x63, 0xc2, 0x86, 0xb0, 0x02, +0x2e, 0x3e, 0x0c, 0xd1, 0x92, 0x83, 0xc4, 0x86, 0x59, 0x5d, 0x2a, 0xf4, 0xcb, 0x42, 0xf4, 0x13, +0x06, 0x29, 0x98, 0xc6, 0x47, 0xb2, 0x5b, 0xfe, 0xd0, 0xf1, 0x0c, 0x51, 0x65, 0x94, 0x59, 0x8b, +0x2b, 0x14, 0x2f, 0x5e, 0x8b, 0xbf, 0xee, 0xa3, 0x45, 0xff, 0x3f, 0x4f, 0xe0, 0xdf, 0xc6, 0x2c, +0x24, 0x8b, 0xad, 0x13, 0x70, 0xd6, 0x1f, 0xdf, 0x33, 0xad, 0x9b, 0xde, 0x28, 0xaa, 0x48, 0x77, +0x4d, 0xcc, 0xf3, 0x97, 0x4d, 0x2e, 0xeb, 0x19, 0x7e, 0x08, 0x11, 0x7d, 0x73, 0x34, 0xd0, 0x22, +0x32, 0x65, 0x59, 0x4d, 0x2e, 0x90, 0xed, 0xaf, 0xf5, 0xe6, 0x87, 0xa3, 0x14, 0x1d, 0xaa, 0xae, +0x9e, 0x0a, 0x4f, 0x2f, 0x4a, 0x65, 0x02, 0x4d, 0x00, 0xa0, 0x2b, 0xcf, 0x85, 0x65, 0x73, 0x96, +0x7e, 0xa7, 0xa3, 0x9e, 0x9e, 0xc9, 0x61, 0x2e, 0xad, 0x32, 0x6b, 0x8a, 0x59, 0xcf, 0x6d, 0x2d, +0xed, 0x13, 0x0c, 0x11, 0xf0, 0x30, 0x52, 0x41, 0xb6, 0xd2, 0x3b, 0xaf, 0xbf, 0xd1, 0xa7, 0x7c, +0x76, 0x89, 0xdd, 0x7b, 0x27, 0x83, 0x92, 0xc2, 0x57, 0x60, 0x10, 0x7e, 0x41, 0xd8, 0x6b, 0xad, +0x08, 0xb9, 0x4b, 0xbe, 0x7c, 0x29, 0xef, 0xf8, 0x5a, 0xd4, 0xd1, 0x03, 0x82, 0x9c, 0x2d, 0xd1, +0x16, 0x14, 0x4d, 0x0c, 0x9d, 0xe0, 0xab, 0x82, 0x6b, 0x30, 0x48, 0x5f, 0x8c, 0x42, 0x2b, 0xf7, +0xab, 0x74, 0x11, 0x03, 0xbf, 0xa7, 0x83, 0x03, 0xbd, 0x09, 0x72, 0xad, 0xbb, 0x1a, 0xba, 0x8c, +0xb4, 0xf2, 0xe3, 0x0e, 0x37, 0x9a, 0x49, 0xb2, 0x54, 0x7b, 0xe8, 0xbe, 0x5f, 0x63, 0xb5, 0x85, +0x44, 0xb3, 0xb0, 0x94, 0x0a, 0x9e, 0x71, 0xb7, 0x8f, 0xaf, 0x80, 0x13, 0x76, 0x57, 0x59, 0x24, +0xa3, 0x91, 0x9a, 0x25, 0x54, 0x22, 0x2f, 0xae, 0x3c, 0xd9, 0xb2, 0x2e, 0xbe, 0xcf, 0x2b, 0xc5, +0x09, 0x6c, 0xb7, 0xaa, 0xa1, 0xa4, 0x85, 0x47, 0x84, 0x05, 0xef, 0xc8, 0x7b, 0x10, 0x66, 0x33, +0x15, 0x51, 0xfe, 0xbf, 0x99, 0x71, 0x93, 0x1f, 0x77, 0xf3, 0x94, 0xb7, 0x46, 0xbc, 0x5c, 0x85, +0xe1, 0xe4, 0xb8, 0x84, 0x72, 0x50, 0x9c, 0x45, 0x0c, 0x29, 0x5e, 0xe4, 0xb1, 0x86, 0x12, 0xd7, +0xfd, 0xd3, 0x5a, 0x38, 0x53, 0xc8, 0xdb, 0x4d, 0x2b, 0x88, 0xfb, 0x5c, 0xf8, 0x0e, 0x3a, 0x30, +0x85, 0xdb, 0xd8, 0x9b, 0xc2, 0x60, 0x4d, 0xb7, 0x94, 0x98, 0x5e, 0xdc, 0x44, 0xd9, 0x45, 0xc9, +0x12, 0x8c, 0xd4, 0x09, 0x19, 0x63, 0x71, 0x14, 0x01, 0x09, 0xd1, 0xd8, 0x3d, 0xea, 0x75, 0xcc, +0xdd, 0x94, 0x49, 0x97, 0x44, 0x64, 0x4d, 0xec, 0x7d, 0x64, 0x7b, 0xc6, 0x78, 0x12, 0x58, 0xa5, +0xc9, 0x01, 0x53, 0x32, 0x8b, 0x60, 0xe8, 0x42, 0x12, 0xad, 0x5a, 0xa7, 0xb9, 0x98, 0xff, 0x8c, +0x96, 0x09, 0xa5, 0x53, 0x04, 0x89, 0x8b, 0x19, 0x77, 0xfa, 0x29, 0x42, 0x52, 0xcb, 0x7b, 0x43, +0x31, 0x53, 0x7d, 0xde, 0xf2, 0x42, 0xed, 0x4e, 0xda, 0x1a, 0xa8, 0x81, 0x04, 0xce, 0x42, 0x17, +0x53, 0x75, 0x6d, 0x3d, 0xbb, 0x26, 0x6d, 0xb2, 0x70, 0x84, 0xa0, 0x22, 0x2a, 0xe5, 0xd1, 0x6f, +0xcf, 0x2b, 0xc4, 0xba, 0x40, 0xa9, 0x35, 0x3e, 0x85, 0x0a, 0x68, 0xf2, 0xad, 0x66, 0xcb, 0x63, +0xc5, 0xb5, 0x3c, 0x32, 0x23, 0x46, 0xb7, 0x27, 0x16, 0x9a, 0x8f, 0x04, 0x7b, 0x04, 0x4d, 0x3f, +0xae, 0x56, 0x5e, 0x46, 0xa9, 0x5d, 0x96, 0xa8, 0x10, 0x6e, 0x22, 0x27, 0xac, 0x96, 0xb8, 0xc8, +0x26, 0x25, 0x2b, 0x06, 0x62, 0xbd, 0x40, 0x06, 0x0d, 0x28, 0x42, 0x64, 0x0c, 0x4c, 0x02, 0xc3, +0x60, 0x67, 0x03, 0x75, 0xb5, 0xfd, 0x36, 0x0d, 0xe4, 0x56, 0xf9, 0x5f, 0x97, 0xf3, 0x7e, 0xae, +0xfd, 0x40, 0xdc, 0xa1, 0xf6, 0xd7, 0x36, 0xa4, 0xc4, 0x3f, 0x94, 0x2c, 0xab, 0xbb, 0xb3, 0x5e, +0xf8, 0xa6, 0x58, 0xf5, 0xfe, 0x7c, 0x96, 0x80, 0x00, 0x3e, 0x0d, 0x2b, 0x7b, 0x5d, 0xa0, 0x54, +0x66, 0x9d, 0x5b, 0x67, 0x4d, 0xd5, 0x44, 0x71, 0xdf, 0xba, 0x36, 0x49, 0x49, 0xcd, 0x2d, 0x85, +0x35, 0x7a, 0xdc, 0x9c, 0x1f, 0xd7, 0xa8, 0x11, 0xc1, 0xb0, 0x12, 0x27, 0x97, 0x9a, 0xd9, 0x35, +0xf1, 0xaf, 0x49, 0xec, 0x34, 0x5f, 0xbf, 0xd8, 0x0f, 0x77, 0x00, 0x1e, 0xa2, 0xb1, 0x18, 0x5d, +0x6e, 0x39, 0x21, 0x88, 0xba, 0xe8, 0x19, 0x07, 0x52, 0x04, 0x09, 0x65, 0xa4, 0x95, 0x05, 0x14, +0x02, 0x48, 0x34, 0x69, 0x7e, 0xe5, 0xa3, 0x5e, 0x34, 0xde, 0x49, 0x58, 0x92, 0xe3, 0xdd, 0xf3, +0x7d, 0x69, 0x21, 0xc9, 0x53, 0xc6, 0x9e, 0x5d, 0x4c, 0x6c, 0xa6, 0xe2, 0xfa, 0x0e, 0x64, 0xd4, +0xef, 0xf8, 0xb0, 0x9f, 0xa3, 0x98, 0xb0, 0xd3, 0x63, 0x24, 0x77, 0x45, 0x37, 0xa8, 0xd1, 0x3e, +0x21, 0x3e, 0x25, 0xe1, 0xb7, 0x64, 0x5c, 0x78, 0x6d, 0x49, 0x7c, 0x02, 0x1b, 0x74, 0x29, 0x89, +0xe8, 0xba, 0x8b, 0x74, 0x31, 0x03, 0x8b, 0xda, 0x79, 0x95, 0x0a, 0x2d, 0x78, 0x6c, 0xa2, 0x96, +0xf0, 0x50, 0x0c, 0x42, 0x1d, 0xd4, 0xad, 0x4d, 0x4a, 0x0b, 0xd6, 0x74, 0x97, 0xc2, 0x3b, 0x6d, +0xfd, 0x48, 0x67, 0xa4, 0x96, 0xe9, 0x23, 0xad, 0x88, 0x9f, 0xb2, 0xdb, 0x60, 0x0d, 0x9b, 0xe4, +0x94, 0x2f, 0xaf, 0x0d, 0x79, 0x3d, 0x0b, 0x65, 0x40, 0x0b, 0xc3, 0xb9, 0x0a, 0xe0, 0xa0, 0x65, +0x56, 0xe8, 0x21, 0x23, 0x39, 0xd4, 0xe7, 0xe3, 0x1a, 0x86, 0x2c, 0x02, 0x9a, 0x75, 0x27, 0x01, +0x48, 0x1f, 0x37, 0x93, 0xab, 0xa7, 0x58, 0x0f, 0xf7, 0x67, 0xb4, 0x8c, 0xe5, 0x8a, 0x72, 0x3d, +0xf7, 0x0c, 0x70, 0x72, 0x7a, 0x8e, 0xdd, 0x09, 0x01, 0x7c, 0xd2, 0xdd, 0x83, 0x93, 0x83, 0x30, +0x74, 0x5b, 0xf5, 0x61, 0xa5, 0x98, 0x83, 0x1c, 0xc0, 0x5d, 0x03, 0x54, 0xeb, 0xd3, 0x26, 0x65, +0xaf, 0x3f, 0x13, 0xa2, 0xe0, 0x97, 0x27, 0xb6, 0xc0, 0xb6, 0x63, 0x46, 0xb8, 0xa3, 0xce, 0xe9, +0x3c, 0x7b, 0x63, 0xb9, 0xcb, 0xa9, 0x09, 0xaa, 0xd0, 0x60, 0xb7, 0xac, 0x53, 0x67, 0x3c, 0xad, +0x45, 0x95, 0xbe, 0x83, 0x42, 0x22, 0xc3, 0xfd, 0x02, 0x72, 0x85, 0xf3, 0xff, 0x5f, 0x30, 0x21, +0x43, 0x5a, 0x96, 0x9b, 0x36, 0xc4, 0x4b, 0x57, 0xd3, 0x2d, 0x66, 0xe6, 0x8e, 0x08, 0xec, 0x14, +0xc4, 0x2e, 0xb8, 0xb1, 0x33, 0xc6, 0x3a, 0x51, 0x71, 0xb3, 0xb4, 0x45, 0x6a, 0xac, 0x35, 0x10, +0xf0, 0x8d, 0xbe, 0x13, 0x00, 0x3e, 0x11, 0xef, 0x69, 0xe4, 0xea, 0x30, 0xa3, 0xaf, 0x1b, 0x89, +0xce, 0xec, 0x64, 0x35, 0x7a, 0xa1, 0x10, 0x05, 0xb1, 0x37, 0xd2, 0xbb, 0xdf, 0x62, 0x53, 0x65, +0x1e, 0xa2, 0x92, 0xf4, 0xaf, 0xa7, 0x88, 0x5a, 0x0b, 0x95, 0x91, 0x0a, 0x00, 0xdb, 0xce, 0xda, +0x0e, 0x97, 0x08, 0x3e, 0xfd, 0x31, 0x7b, 0xea, 0xa2, 0x1a, 0x6b, 0x3e, 0x71, 0x31, 0x08, 0xa6, +0xce, 0x4c, 0xc3, 0x60, 0x6b, 0x8b, 0x7c, 0x37, 0x91, 0x8c, 0x4c, 0xbe, 0xfc, 0x3a, 0x9a, 0x93, +0xe2, 0x2d, 0xbb, 0x18, 0x71, 0xfb, 0x6d, 0xef, 0x6d, 0x03, 0xcb, 0x79, 0x5d, 0x2a, 0x37, 0x21, +0x19, 0x81, 0xe4, 0xcf, 0x64, 0x35, 0x96, 0xd4, 0x24, 0x0b, 0x5e, 0xcd, 0xc5, 0x45, 0x27, 0x25, +0x0a, 0xa1, 0x74, 0x61, 0x61, 0x80, 0xbd, 0x01, 0x6f, 0x29, 0xfa, 0xb9, 0x2a, 0xca, 0x0d, 0x4b, +0x07, 0x5e, 0xed, 0xdb, 0x69, 0xc9, 0xe4, 0xe8, 0x8e, 0xa8, 0xb4, 0xc0, 0x8a, 0x0d, 0x9d, 0x2a, +0xea, 0xc9, 0x76, 0xd0, 0xc7, 0x4d, 0x9a, 0x82, 0x3b, 0xd1, 0x97, 0x2a, 0xff, 0xb7, 0x35, 0xc4, +0xed, 0xa5, 0x99, 0x38, 0x1f, 0x01, 0x0d, 0x25, 0x3c, 0x01, 0x82, 0x5c, 0xed, 0xeb, 0x2d, 0x6d, +0x06, 0x17, 0x13, 0x82, 0xcd, 0x88, 0x16, 0x66, 0xa0, 0x39, 0xaa, 0xff, 0xa8, 0xce, 0x51, 0xde, +0x2e, 0xfb, 0xfb, 0xf1, 0xdd, 0x13, 0xcb, 0x1d, 0x67, 0x0e, 0x7b, 0xf0, 0xbf, 0xcf, 0x40, 0xd5, +0xc3, 0xf0, 0xea, 0xf3, 0x74, 0x65, 0x25, 0x8d, 0xa5, 0xbb, 0x0b, 0x3a, 0x48, 0x6e, 0x97, 0x3e, +0x18, 0xea, 0x9f, 0x33, 0x83, 0x2b, 0xc2, 0xef, 0xe8, 0x83, 0x75, 0x6b, 0x30, 0x3d, 0x02, 0x35, +0x72, 0xe1, 0x6d, 0xb3, 0x50, 0xc0, 0xce, 0xbb, 0x3b, 0x52, 0x31, 0x48, 0xe3, 0x12, 0x5b, 0xa3, +0x68, 0xa6, 0x41, 0xad, 0x27, 0x9e, 0x73, 0xb1, 0x39, 0xbb, 0xd2, 0x15, 0xe7, 0x88, 0x94, 0x5f, +0x85, 0x1d, 0x16, 0x0d, 0x49, 0x3b, 0x1f, 0x51, 0x1f, 0xc4, 0xfc, 0x36, 0x2a, 0x37, 0x60, 0xa9, +0xac, 0x15, 0x1b, 0x2a, 0x31, 0x4e, 0x57, 0xe8, 0xfa, 0x9c, 0xad, 0x28, 0x1e, 0x97, 0x4e, 0x8c, +0x66, 0x43, 0xc0, 0x1f, 0x4f, 0xdc, 0x15, 0x46, 0xdc, 0x57, 0x60, 0xc9, 0x06, 0xaf, 0x5d, 0x4b, +0x59, 0xc1, 0x11, 0xd7, 0xfd, 0x72, 0xe2, 0x59, 0xcc, 0xa0, 0x1a, 0x2f, 0x09, 0x49, 0xf8, 0x85, +0xc4, 0x9c, 0xbc, 0x9f, 0x7d, 0x9e, 0x1d, 0xdd, 0x1b, 0xb6, 0xae, 0x19, 0x7d, 0xd3, 0xb2, 0xbc, +0xa2, 0x82, 0xa9, 0x3e, 0xc2, 0x79, 0x48, 0xb6, 0x5b, 0x58, 0xe6, 0xdc, 0xa2, 0x21, 0x76, 0x98, +0x9d, 0x5b, 0xfb, 0x59, 0xa6, 0xf5, 0x62, 0x36, 0x54, 0x2f, 0xad, 0x59, 0x89, 0xe7, 0xa4, 0xd4, +0x9a, 0x4c, 0x44, 0xd6, 0xd8, 0xa9, 0xbf, 0xdd, 0x0d, 0x35, 0xe4, 0xa2, 0x41, 0x3c, 0x1b, 0x4b, +0xaf, 0x6a, 0x51, 0x8f, 0xc6, 0xc3, 0x89, 0x3b, 0x7c, 0xf7, 0xe9, 0x21, 0x1f, 0x65, 0x96, 0xd0, +0xa8, 0x50, 0x44, 0x54, 0x27, 0x73, 0x6b, 0x4f, 0x19, 0x9e, 0x5a, 0x11, 0xb2, 0x23, 0x75, 0xfb, +0xb2, 0xd3, 0x97, 0x1e, 0x51, 0xf6, 0xa6, 0x9f, 0x19, 0xa7, 0x95, 0x41, 0x29, 0x44, 0x02, 0xbe, +0x0b, 0xc1, 0xbd, 0xc1, 0x4c, 0x3e, 0x60, 0x59, 0x74, 0xc2, 0x12, 0x59, 0xc8, 0xe7, 0xfe, 0x80, +0x33, 0xf9, 0x55, 0xe5, 0xf4, 0x1e, 0xb7, 0x2d, 0xbe, 0x3f, 0x0d, 0x8b, 0xca, 0x6c, 0x96, 0x00, +0x7f, 0xc1, 0x5c, 0x70, 0xf3, 0x8b, 0x5c, 0x04, 0x9f, 0x6a, 0x54, 0x88, 0x5b, 0x3f, 0x24, 0xe1, +0xbb, 0x43, 0x1f, 0x69, 0xa3, 0xa5, 0xcb, 0x54, 0x74, 0xcb, 0xee, 0x5f, 0x9c, 0xc1, 0x5b, 0xb7, +0x89, 0x71, 0xfd, 0xc0, 0xac, 0x6f, 0x16, 0x13, 0x06, 0x1c, 0x0e, 0x7d, 0x18, 0x7f, 0xcb, 0x79, +0x8f, 0x04, 0x28, 0x09, 0x75, 0x0c, 0x20, 0x61, 0x1e, 0xa8, 0x8a, 0x12, 0xca, 0xd5, 0x29, 0x1f, +0x55, 0xbf, 0xb5, 0x71, 0x9d, 0x64, 0x82, 0x1b, 0x0e, 0xaa, 0x43, 0x67, 0x0e, 0xff, 0x9c, 0xd4, +0x9f, 0xe6, 0x5d, 0x1d, 0x17, 0x37, 0xa3, 0x4f, 0x88, 0x7b, 0xfa, 0x90, 0x1b, 0xb5, 0xf5, 0x32, +0x6b, 0x6e, 0x1d, 0xb4, 0xac, 0xc5, 0xfb, 0xc1, 0x59, 0x51, 0x09, 0x99, 0x7f, 0x39, 0x7f, 0xb4, +0xcc, 0x13, 0x60, 0x73, 0xdd, 0x4b, 0xbf, 0x56, 0xb6, 0x49, 0xcb, 0xeb, 0x55, 0x51, 0xbb, 0x64, +0xfe, 0x6c, 0xb0, 0xeb, 0x3f, 0x4b, 0xfa, 0xc0, 0xa6, 0xa1, 0x16, 0xcf, 0x58, 0x53, 0x2e, 0xb7, +0x39, 0x90, 0xdb, 0xd4, 0x1d, 0x23, 0x73, 0x33, 0xfe, 0x4f, 0x57, 0xf4, 0xe5, 0xc5, 0x8a, 0x89, +0x0e, 0x68, 0xf3, 0x2d, 0x9e, 0xa5, 0xf8, 0xfb, 0xb8, 0xcc, 0x60, 0x37, 0x03, 0x4d, 0x49, 0xf9, +0x3d, 0x49, 0x42, 0x48, 0xb7, 0x9a, 0xcc, 0x9b, 0x50, 0x26, 0xc6, 0xc6, 0xc1, 0x97, 0x0c, 0x47, +0x98, 0xc3, 0x0b, 0x42, 0x2d, 0x96, 0x14, 0xf4, 0x5c, 0x9f, 0x2b, 0x0f, 0xa3, 0x7e, 0xb3, 0x0c, +0xe1, 0xd0, 0x2d, 0x57, 0xf9, 0x5f, 0x2b, 0xd7, 0x8d, 0x3b, 0x0b, 0x22, 0xb4, 0x62, 0xf0, 0x87, +0x85, 0x05, 0xb9, 0xba, 0x3c, 0xf4, 0x2b, 0x48, 0x03, 0x60, 0xf0, 0xf0, 0x0b, 0xa5, 0x5f, 0xf5, +0xd1, 0x89, 0xc7, 0x1e, 0x9e, 0xa3, 0x11, 0xad, 0xe6, 0xe6, 0x61, 0x02, 0x52, 0x09, 0xf9, 0x31, +0xf2, 0x85, 0x12, 0x2a, 0x70, 0x1b, 0x59, 0x52, 0x18, 0x6d, 0x3e, 0xaa, 0xd8, 0xff, 0x01, 0x3a, +0xc8, 0x55, 0x62, 0x4e, 0xc8, 0xc5, 0x2d, 0x70, 0x0f, 0x65, 0xfa, 0x6f, 0x65, 0xed, 0x32, 0x22, +0xf4, 0xd6, 0x36, 0x2f, 0x53, 0xb5, 0x68, 0xc5, 0x0f, 0x0e, 0xa4, 0x4d, 0x60, 0xb5, 0x30, 0xb8, +0x40, 0x13, 0x98, 0xfd, 0x58, 0xbc, 0xce, 0x57, 0xcc, 0x89, 0xcc, 0x10, 0x73, 0x36, 0x0f, 0x3c, +0xcf, 0x55, 0x23, 0x66, 0x56, 0xda, 0x00, 0x4e, 0xaf, 0x25, 0x7a, 0x9a, 0xc4, 0x52, 0x0e, 0xd9, +0x73, 0x33, 0x1e, 0x5a, 0x3f, 0x0f, 0xc4, 0x69, 0x09, 0xaf, 0x34, 0x9c, 0x6e, 0x43, 0x24, 0x71, +0xb1, 0x9e, 0xab, 0x70, 0x48, 0xc6, 0xce, 0xbc, 0x2f, 0xc9, 0xac, 0x79, 0x00, 0xba, 0xb6, 0x59, +0xef, 0x41, 0x0a, 0x9d, 0xba, 0xae, 0xca, 0x33, 0x94, 0x2b, 0x8f, 0x4f, 0x7c, 0x75, 0xc7, 0x02, +0x20, 0x5b, 0xab, 0x51, 0xac, 0x99, 0x85, 0x14, 0x34, 0xb3, 0xf9, 0x44, 0x7a, 0x28, 0xd2, 0xc1, +0x45, 0xa4, 0xa5, 0x2d, 0x77, 0xcb, 0x68, 0xa1, 0x48, 0x99, 0x70, 0x44, 0x34, 0xd4, 0xb4, 0xc6, +0xdf, 0x8e, 0xc9, 0xfa, 0x65, 0x33, 0x9d, 0x08, 0x92, 0xc5, 0x76, 0x4f, 0x8d, 0x7b, 0x0b, 0x0c, +0xc0, 0xb5, 0x9e, 0xcb, 0xed, 0xd0, 0xa0, 0xa6, 0x33, 0x31, 0x0a, 0xa0, 0x26, 0x74, 0xb1, 0xb1, +0x80, 0x04, 0x10, 0x45, 0x41, 0xbd, 0xe0, 0xc3, 0x65, 0x68, 0xed, 0xca, 0x19, 0xa5, 0xc6, 0x6a, +0xb3, 0x00, 0x23, 0xf8, 0x39, 0x84, 0x26, 0x0a, 0x07, 0x15, 0x20, 0xbf, 0xf7, 0xca, 0x89, 0x14, +0x93, 0x51, 0x8e, 0x75, 0xa0, 0x39, 0x16, 0x58, 0x76, 0xf7, 0xc1, 0x12, 0x20, 0xbb, 0xe5, 0xbf, +0xa4, 0xf0, 0xab, 0x0f, 0xe0, 0xe0, 0x40, 0x79, 0x02, 0xa6, 0x1c, 0xda, 0x52, 0x59, 0x18, 0x53, +0x3d, 0x6c, 0xd8, 0x07, 0x0a, 0x5b, 0x5a, 0xc8, 0x97, 0x71, 0xc8, 0x8f, 0xba, 0x48, 0x4f, 0xcc, +0xcc, 0x05, 0x7e, 0x6d, 0x1c, 0xf3, 0xcb, 0xf5, 0x1c, 0xea, 0xef, 0x80, 0x1c, 0xe5, 0x2b, 0x61, +0x98, 0x3e, 0x5b, 0x9f, 0x55, 0x38, 0x6f, 0x74, 0xdd, 0x61, 0xe5, 0xa2, 0x55, 0xd3, 0xe3, 0xd6, +0x5e, 0x80, 0xe3, 0x6a, 0x5f, 0x54, 0x54, 0xd2, 0x88, 0x37, 0x1d, 0x73, 0x96, 0x40, 0x27, 0x3c, +0x78, 0x62, 0x09, 0x8a, 0x70, 0x2c, 0xfb, 0xab, 0x93, 0xb6, 0xfe, 0xb7, 0x94, 0x84, 0xa6, 0xcd, +0xf3, 0xac, 0x04, 0x8d, 0x6d, 0x33, 0xe6, 0x5c, 0xb3, 0x31, 0xf7, 0xe8, 0xd1, 0xc1, 0x29, 0x3d, +0x17, 0x7d, 0xfe, 0x4d, 0xf9, 0x78, 0xb3, 0xfb, 0x0f, 0x4c, 0xe4, 0xf6, 0x42, 0x88, 0x3c, 0x2e, +0x2d, 0x4b, 0x23, 0x68, 0x02, 0x96, 0x70, 0x31, 0x5c, 0xdb, 0xdf, 0xf5, 0xb7, 0xcf, 0x3a, 0x54, +0xde, 0x50, 0x66, 0x8d, 0x03, 0x67, 0x06, 0xb3, 0x7f, 0x3e, 0x54, 0xbd, 0x44, 0x54, 0x41, 0x8b, +0x4f, 0x4d, 0x20, 0x3b, 0x0a, 0xad, 0x61, 0x6b, 0xf7, 0x29, 0x08, 0xcc, 0xfc, 0xec, 0x0c, 0x12, +0x08, 0x6c, 0x49, 0x82, 0xac, 0x94, 0x16, 0x4f, 0x6a, 0x1c, 0x4f, 0x94, 0x1a, 0x89, 0xff, 0xa8, +0xf0, 0xce, 0x31, 0x1f, 0xea, 0xc1, 0x32, 0xa9, 0x89, 0x86, 0xcf, 0x90, 0x2a, 0xee, 0xaa, 0xdd, +0x1e, 0xcd, 0x25, 0x28, 0x26, 0x12, 0xac, 0x70, 0x23, 0x04, 0x30, 0x3c, 0x9c, 0x84, 0x26, 0x21, +0xf1, 0xb9, 0xcf, 0xe9, 0xa5, 0x36, 0xa3, 0xa7, 0x60, 0x72, 0xf1, 0xdf, 0x05, 0xcb, 0x90, 0xf2, +0x5f, 0x0e, 0x44, 0xd1, 0xc2, 0x43, 0x2d, 0x92, 0x83, 0x3a, 0x8a, 0x8a, 0xfb, 0xf4, 0xba, 0x5b, +0xa7, 0x98, 0x5b, 0xd3, 0x28, 0x9e, 0xa6, 0xd5, 0x96, 0xa0, 0xcd, 0x1f, 0x49, 0x47, 0x4a, 0x10, +0x3f, 0x3c, 0x52, 0x19, 0xbb, 0x22, 0xd8, 0x82, 0x0e, 0x61, 0x91, 0x6d, 0x05, 0x3b, 0x50, 0x35, +0xd2, 0x1d, 0xea, 0x38, 0x36, 0xe3, 0x3a, 0x22, 0xc7, 0x49, 0xd8, 0x53, 0x98, 0xdb, 0x25, 0x93, +0x39, 0xe6, 0xb3, 0xf6, 0x98, 0xc9, 0xdf, 0x59, 0x04, 0x77, 0x9d, 0xb9, 0xc6, 0x31, 0x27, 0xdf, +0x77, 0xab, 0x0b, 0x15, 0x5f, 0x23, 0x39, 0xfa, 0x6a, 0xeb, 0xf9, 0x2b, 0xe2, 0xc5, 0x01, 0x5c, +0xde, 0xb4, 0x34, 0xde, 0x79, 0xa6, 0x4b, 0xc9, 0x38, 0x79, 0x99, 0xc3, 0x94, 0x1f, 0xa9, 0x1a, +0xa4, 0x39, 0x87, 0x6a, 0x64, 0x7f, 0x97, 0xec, 0x7d, 0xfc, 0x48, 0x32, 0x3c, 0xf9, 0xe7, 0xdb, +0x1a, 0x2f, 0x69, 0x86, 0xbb, 0x40, 0x2a, 0x0e, 0x7c, 0x91, 0xb9, 0xe3, 0xe7, 0x36, 0x24, 0x83, +0x70, 0xfa, 0xf6, 0xc5, 0x00, 0x68, 0xd4, 0x67, 0xe6, 0x53, 0xf8, 0x44, 0x5f, 0x25, 0xdb, 0x8a, +0xb2, 0x1e, 0x4c, 0xd7, 0xc0, 0x8e, 0x2f, 0x30, 0xab, 0xae, 0x72, 0xd5, 0x18, 0x2f, 0x43, 0xfe, +0x1b, 0x01, 0x8f, 0xf2, 0x83, 0x2b, 0x83, 0x2b, 0x30, 0x3e, 0x17, 0x46, 0xd6, 0x55, 0x59, 0x5d, +0xfb, 0xcc, 0x35, 0xc7, 0x2b, 0x5f, 0x9b, 0xac, 0xa5, 0xf2, 0x00, 0xb8, 0x1b, 0xe7, 0x74, 0x31, +0xf4, 0x86, 0x8e, 0x24, 0xee, 0x2d, 0x26, 0x6e, 0x10, 0x33, 0xa4, 0x61, 0xf5, 0xaa, 0x5b, 0x49, +0xb4, 0x8d, 0x04, 0x61, 0xc7, 0x50, 0x77, 0x04, 0x71, 0xa0, 0x58, 0x2e, 0xc1, 0xa9, 0xfc, 0x27, +0xbc, 0xa6, 0xdd, 0x8c, 0x91, 0xcb, 0xa7, 0x97, 0x39, 0xf9, 0xde, 0xc7, 0x1d, 0x57, 0x74, 0x6d, +0xfa, 0xa5, 0x6b, 0x9f, 0xc4, 0x19, 0x28, 0x70, 0xcb, 0x56, 0x16, 0x4a, 0x72, 0x74, 0x48, 0xf1, +0x37, 0x7a, 0xad, 0x91, 0xa3, 0x11, 0x00, 0x68, 0xc5, 0xd7, 0xd5, 0x06, 0x80, 0x3d, 0xd4, 0x33, +0x23, 0xd2, 0xe3, 0xf5, 0xd3, 0xd7, 0x5e, 0x13, 0xa8, 0xfb, 0xd8, 0x59, 0x15, 0xc6, 0x8e, 0x8b, +0xde, 0xc3, 0x79, 0xcb, 0xe3, 0x89, 0xc6, 0x9a, 0xd4, 0x69, 0x6b, 0x29, 0xd5, 0x5e, 0xe9, 0xb5, +0x60, 0x50, 0xbe, 0x9f, 0x02, 0x15, 0x01, 0x81, 0xf9, 0xb6, 0x51, 0x20, 0x7c, 0xf9, 0x8f, 0x11, +0x3c, 0xe3, 0xca, 0x41, 0xf2, 0xad, 0x84, 0xf8, 0xc3, 0xe9, 0xb3, 0x8d, 0xe0, 0x26, 0x85, 0x11, +0xe2, 0xed, 0xff, 0x71, 0x1a, 0x4a, 0xe3, 0x17, 0x84, 0xdb, 0xa5, 0x2d, 0x9e, 0x35, 0x3d, 0x40, +0x92, 0x88, 0x20, 0xcc, 0xea, 0xe0, 0x6c, 0x24, 0x51, 0x22, 0xbd, 0x5d, 0xe1, 0xd6, 0x8d, 0x6a, +0x67, 0xc3, 0xeb, 0x43, 0xd1, 0xd5, 0x81, 0x14, 0x7c, 0x7e, 0xd8, 0x33, 0xcf, 0xae, 0x97, 0xa8, +0x89, 0x1e, 0xc1, 0xf5, 0xf9, 0xad, 0x50, 0x72, 0x85, 0x11, 0xe8, 0x67, 0x64, 0x22, 0x08, 0x01, +0x7b, 0x16, 0x22, 0xe5, 0x93, 0xed, 0x64, 0xe7, 0x9c, 0x71, 0x97, 0xda, 0x37, 0x1b, 0x6c, 0x91, +0x46, 0xdc, 0xda, 0x23, 0xec, 0x0e, 0x90, 0x01, 0xbd, 0xd0, 0xc8, 0x93, 0x11, 0xf7, 0xf8, 0x25, +0x63, 0x6c, 0x7b, 0xc9, 0x03, 0xd0, 0x12, 0xf4, 0xa7, 0x4f, 0x02, 0x43, 0x30, 0x37, 0x50, 0xdd, +0xdd, 0xe5, 0x3e, 0x88, 0xfb, 0xc0, 0xea, 0x7c, 0xcd, 0x7a, 0x01, 0x94, 0x1d, 0x1d, 0x63, 0x21, +0xd3, 0x44, 0x0e, 0x73, 0xf4, 0x97, 0xd7, 0x6d, 0x0d, 0x7b, 0xcd, 0x1c, 0x62, 0xa6, 0x8d, 0x40, +0xeb, 0xe6, 0xc5, 0xfb, 0x8d, 0x76, 0x51, 0x27, 0xa7, 0xd4, 0xac, 0x46, 0x44, 0xf6, 0x57, 0x81, +0xa6, 0x0d, 0xe4, 0x54, 0xc0, 0xfd, 0x3e, 0x07, 0xae, 0x83, 0x23, 0x95, 0x9c, 0xdc, 0xd5, 0x89, +0xf7, 0x31, 0xcc, 0x0b, 0x49, 0xed, 0xe0, 0xf6, 0x17, 0x73, 0x03, 0xad, 0x07, 0x8c, 0xd5, 0x44, +0xf9, 0x71, 0xc0, 0xc1, 0x7b, 0xda, 0x9c, 0x42, 0x8a, 0xcf, 0xd0, 0x01, 0xd5, 0xf8, 0x75, 0x8a, +0x3b, 0x13, 0x4f, 0x4b, 0x22, 0xf0, 0x87, 0xdb, 0xd4, 0xff, 0x56, 0x5c, 0x3a, 0x27, 0x16, 0x92, +0xfb, 0x74, 0x32, 0xda, 0xe6, 0x33, 0xa1, 0x75, 0xc8, 0x2a, 0x06, 0xf6, 0x47, 0x3d, 0xb3, 0xef, +0x13, 0x1f, 0x61, 0xf9, 0x8f, 0xd6, 0xe9, 0x1f, 0x3c, 0x03, 0xab, 0x91, 0xc3, 0xb1, 0x09, 0xaa, +0x45, 0xb9, 0x08, 0x00, 0x25, 0x73, 0x8c, 0x19, 0x34, 0xd6, 0xc0, 0xc8, 0x6f, 0xa5, 0xc4, 0x86, +0xe7, 0x71, 0x29, 0xaa, 0x5c, 0x4c, 0xed, 0x51, 0x2e, 0x60, 0x7a, 0xcc, 0xa0, 0xb4, 0x6c, 0xa6, +0x50, 0x85, 0x06, 0x52, 0xa8, 0xc4, 0xdb, 0xb1, 0x2d, 0x25, 0x16, 0x1a, 0x3b, 0x1c, 0x04, 0xe4, +0x4a, 0x8d, 0x01, 0x18, 0xe6, 0x96, 0xd9, 0xf1, 0xb0, 0xb7, 0x9c, 0x4e, 0x48, 0x1a, 0x87, 0xdc, +0xa1, 0x99, 0x3b, 0x10, 0x6a, 0x6b, 0x4d, 0x13, 0xa3, 0x76, 0x59, 0x6a, 0xfc, 0x57, 0x5a, 0xa7, +0x84, 0x5e, 0x28, 0x46, 0x3c, 0x2c, 0xd2, 0x2f, 0xad, 0xc4, 0x69, 0xd6, 0xfa, 0xc6, 0xd7, 0xe7, +0xc9, 0x90, 0x15, 0x28, 0xc9, 0x26, 0x35, 0x9f, 0x53, 0xb5, 0x24, 0x6e, 0x60, 0x96, 0x10, 0x57, +0x05, 0x80, 0x25, 0x11, 0x2a, 0x5a, 0x95, 0x69, 0x04, 0xe9, 0x8b, 0xda, 0x3f, 0x9a, 0xbc, 0x95, +0xcd, 0x25, 0x42, 0x6f, 0x17, 0x7a, 0x00, 0x80, 0x69, 0x81, 0x02, 0x49, 0x61, 0x5f, 0xc1, 0xb9, +0x76, 0xbf, 0x06, 0xe7, 0xeb, 0x9f, 0x89, 0x6d, 0x23, 0x4c, 0x7e, 0xb1, 0x0e, 0x22, 0x4d, 0x63, +0xb3, 0x37, 0xde, 0x82, 0x05, 0x45, 0x86, 0x1d, 0x38, 0xa7, 0x17, 0xd8, 0x06, 0xbe, 0xc7, 0xc4, +0x39, 0x49, 0xcd, 0x6c, 0x61, 0x0a, 0x22, 0x23, 0xaa, 0x43, 0xbc, 0x9c, 0x1a, 0xed, 0xc0, 0x67, +0xa8, 0x38, 0x2e, 0xae, 0xa7, 0x23, 0x0c, 0x86, 0x7d, 0xb0, 0xcb, 0xcd, 0x17, 0x0b, 0x54, 0x92, +0x2a, 0x12, 0x1d, 0xe3, 0xb6, 0xa7, 0x39, 0x5d, 0x5f, 0xff, 0xce, 0x09, 0x14, 0x54, 0xa7, 0xe8, +0xe4, 0x90, 0x56, 0x5e, 0xb6, 0xf0, 0xaa, 0xef, 0xe7, 0xdd, 0x15, 0x33, 0xdc, 0xde, 0x78, 0xc4, +0x1b, 0x87, 0x42, 0x09, 0x72, 0x43, 0xb4, 0x0e, 0xf6, 0x90, 0x19, 0xa0, 0x30, 0x62, 0x96, 0x65, +0x53, 0x4b, 0xb2, 0x2e, 0x9f, 0x7c, 0xf5, 0x92, 0x87, 0x8c, 0xe0, 0x6f, 0x0b, 0x56, 0xdd, 0xde, +0xf8, 0x65, 0x58, 0xc2, 0x17, 0x43, 0x79, 0xd0, 0xf8, 0x24, 0x2e, 0x26, 0x03, 0xac, 0x84, 0xfd, +0x34, 0x81, 0xe8, 0x7d, 0x71, 0x94, 0x12, 0x13, 0xa6, 0x15, 0xd8, 0x3a, 0x93, 0xd8, 0x4d, 0x99, +0xae, 0x4a, 0x55, 0x2e, 0x8c, 0x91, 0x93, 0x3b, 0x1f, 0x05, 0x83, 0x45, 0xe0, 0x14, 0x84, 0x97, +0x41, 0xdb, 0xf9, 0x39, 0x7c, 0x9e, 0xeb, 0x64, 0x5d, 0x78, 0x7b, 0x2c, 0x16, 0x63, 0xcf, 0x54, +0x92, 0xb1, 0x94, 0x54, 0xc2, 0xed, 0x5b, 0xc1, 0xc3, 0x8c, 0x02, 0xbe, 0x43, 0x38, 0x68, 0x52, +0x5c, 0xab, 0xae, 0x29, 0x39, 0x28, 0xad, 0x02, 0xed, 0xae, 0x7b, 0x6f, 0xcc, 0x02, 0xf4, 0x78, +0x10, 0x96, 0xcd, 0xfe, 0xf6, 0x90, 0xd5, 0xd1, 0xb3, 0x10, 0x38, 0x22, 0x36, 0x74, 0x27, 0x6c, +0x65, 0xda, 0x96, 0x6f, 0xe7, 0xc0, 0x53, 0x8e, 0xde, 0x14, 0x73, 0xea, 0xed, 0x66, 0x8f, 0xa4, +0xc6, 0xd5, 0xe3, 0xd1, 0x43, 0x87, 0xe4, 0x6d, 0x19, 0x74, 0x22, 0x4c, 0xe5, 0xba, 0x8b, 0x9b, +0xb0, 0x01, 0xd3, 0x43, 0x6d, 0xd1, 0x8e, 0x3b, 0x87, 0x33, 0x42, 0x1e, 0x89, 0xe8, 0x10, 0x15, +0x56, 0xde, 0xbc, 0xd3, 0xb2, 0xa6, 0xf2, 0xc9, 0x9f, 0x7b, 0x34, 0x3f, 0xd1, 0x12, 0x1a, 0xa4, +0x81, 0x81, 0xcf, 0x15, 0xf0, 0x01, 0xed, 0xa3, 0x31, 0x12, 0xe4, 0xb0, 0x62, 0xde, 0xc7, 0xf7, +0x29, 0x3c, 0xec, 0x2a, 0xed, 0xd3, 0x13, 0xb8, 0x93, 0x74, 0x61, 0x02, 0x27, 0x84, 0x5e, 0xeb, +0xbd, 0x92, 0x30, 0xd8, 0xf7, 0xd7, 0xa0, 0xfe, 0x79, 0x8b, 0x13, 0x24, 0x6c, 0x9e, 0x66, 0xb1, +0x88, 0xbd, 0x62, 0x9a, 0x17, 0xa7, 0xd4, 0x5b, 0x18, 0x4b, 0xb0, 0x2c, 0xf5, 0x57, 0x15, 0x14, +0x4d, 0x76, 0xaa, 0xa6, 0x69, 0xf1, 0xc4, 0xde, 0xba, 0xcf, 0x7a, 0x56, 0x56, 0x0e, 0x3b, 0x21, +0xeb, 0x44, 0xb3, 0x99, 0xb5, 0xf2, 0x28, 0xb5, 0x38, 0x90, 0x10, 0x56, 0xea, 0x24, 0x0f, 0x6d, +0xd0, 0xf5, 0x93, 0x14, 0xee, 0x83, 0xfb, 0x44, 0x58, 0x7e, 0xb2, 0xb4, 0x24, 0xd5, 0x99, 0xcd, +0x2c, 0x7d, 0x98, 0x95, 0xa0, 0xa9, 0xdb, 0x11, 0xc5, 0xc2, 0x9e, 0x0f, 0x6a, 0x4c, 0x7d, 0xde, +0xeb, 0xf8, 0x2c, 0x78, 0x0b, 0x1c, 0xef, 0x2a, 0x03, 0x7b, 0x5f, 0xd5, 0xf9, 0xd5, 0x6d, 0x37, +0xd8, 0xeb, 0x40, 0xac, 0x97, 0xda, 0xd8, 0xc5, 0x2e, 0x16, 0xef, 0x89, 0x6b, 0x2f, 0x4b, 0x8d, +0x67, 0xc1, 0x4e, 0x00, 0x22, 0x73, 0x76, 0x33, 0x81, 0x53, 0xa4, 0x84, 0x0f, 0x27, 0x85, 0xaf, +0x98, 0xc7, 0x8e, 0x64, 0xbc, 0xc1, 0xde, 0xbe, 0xcb, 0x3f, 0xc2, 0x16, 0xd5, 0xa6, 0x0c, 0x83, +0x13, 0xb8, 0x51, 0x73, 0x80, 0x02, 0x1b, 0x99, 0xe9, 0x98, 0x8d, 0xb9, 0x12, 0x28, 0x78, 0xc5, +0xa0, 0x59, 0x74, 0xcc, 0xd1, 0x5b, 0x0d, 0xaf, 0xe4, 0xd9, 0x2a, 0x20, 0xa0, 0x04, 0xf7, 0xb8, +0x9f, 0x17, 0x52, 0x45, 0x38, 0x20, 0xda, 0x61, 0xc4, 0xee, 0x4e, 0x84, 0xbd, 0x7a, 0x3c, 0xeb, +0x41, 0x3a, 0xac, 0x3d, 0xbe, 0x5c, 0x81, 0x43, 0xc0, 0x00, 0xbc, 0xb0, 0x06, 0x58, 0xa6, 0x2b, +0xeb, 0x67, 0x66, 0x50, 0x8d, 0x2d, 0xab, 0x1d, 0xbd, 0xda, 0x41, 0xcc, 0x85, 0x00, 0xa5, 0x28, +0x19, 0xcc, 0x73, 0xf5, 0x5a, 0xd8, 0xc3, 0x71, 0xb2, 0x68, 0x12, 0x20, 0x6f, 0xbe, 0xba, 0x8d, +0xc7, 0x75, 0x03, 0xbf, 0x9a, 0xe7, 0x46, 0x97, 0x2f, 0x16, 0xd5, 0x88, 0x27, 0x40, 0xb4, 0x5c, +0xb9, 0xd3, 0x10, 0x9a, 0x4e, 0x05, 0xae, 0xcb, 0xbe, 0x30, 0x04, 0xe1, 0xae, 0xc5, 0x5e, 0x79, +0x49, 0x64, 0x99, 0x97, 0x80, 0x76, 0x45, 0x51, 0xaa, 0x04, 0xae, 0x10, 0x5f, 0x0e, 0x37, 0x03, +0x68, 0x50, 0x2c, 0xb9, 0xf5, 0xae, 0x73, 0x97, 0xd5, 0x05, 0xaf, 0xca, 0x6d, 0xd0, 0x04, 0x0b, +0x93, 0xfc, 0xdf, 0xa8, 0xf3, 0xa5, 0xd2, 0xb8, 0x04, 0x99, 0xe4, 0x47, 0x0f, 0xb3, 0xc7, 0x96, +0xa3, 0xba, 0xe0, 0xc1, 0x07, 0x65, 0x41, 0x90, 0x76, 0x99, 0xd8, 0x2d, 0x67, 0x99, 0xa9, 0x63, +0x89, 0x05, 0x49, 0xde, 0xae, 0x9a, 0xa8, 0xa0, 0x99, 0x46, 0x77, 0x5a, 0xd3, 0x3d, 0x23, 0x99, +0x54, 0x45, 0x5a, 0x4b, 0xd0, 0xe5, 0xc1, 0x6f, 0x1f, 0xde, 0x85, 0x21, 0x3f, 0xa8, 0x44, 0x91, +0x0c, 0x9b, 0xaf, 0x42, 0x3e, 0xcd, 0x09, 0x9f, 0x18, 0x01, 0x98, 0x34, 0xa2, 0x39, 0xf2, 0xb3, +0x96, 0xdb, 0xfd, 0x0b, 0xff, 0x6c, 0xdf, 0x92, 0x11, 0x01, 0x24, 0x92, 0x28, 0x8a, 0x4b, 0x83, +0x4a, 0x77, 0x12, 0x8e, 0x20, 0x96, 0x08, 0xf2, 0x1f, 0x87, 0x77, 0xc4, 0x8c, 0x19, 0xfe, 0xf7, +0x7b, 0x9a, 0xed, 0x20, 0x73, 0xd8, 0x89, 0xae, 0x34, 0x5f, 0xf6, 0xf6, 0xd9, 0x31, 0x8b, 0x33, +0xf0, 0x21, 0xea, 0x91, 0x67, 0x07, 0x49, 0x35, 0x41, 0x33, 0x46, 0x65, 0x43, 0xeb, 0xbe, 0x04, +0x24, 0x3e, 0x8f, 0x58, 0xa4, 0x54, 0x0e, 0x05, 0x93, 0x76, 0xc6, 0x8c, 0xed, 0xca, 0x9f, 0xe6, +0xda, 0x09, 0xec, 0x92, 0x6a, 0xc1, 0x44, 0x56, 0x5f, 0xd1, 0x7b, 0x44, 0x82, 0xa1, 0xe1, 0x9a, +0xbd, 0xb8, 0x04, 0xa0, 0xf3, 0xa0, 0xc5, 0xfb, 0xed, 0xb3, 0xf6, 0xae, 0x8b, 0xac, 0xb1, 0xcc, +0x73, 0xc1, 0xfc, 0x9a, 0x7b, 0xc7, 0xb0, 0x93, 0x1a, 0x4e, 0xe5, 0x54, 0x2d, 0xdf, 0x55, 0x98, +0x55, 0xc4, 0x18, 0xff, 0x50, 0xa9, 0x7f, 0x65, 0xec, 0x54, 0x62, 0xda, 0xe5, 0x1b, 0x97, 0x35, +0x3d, 0x32, 0x17, 0x98, 0x2f, 0x43, 0x6f, 0xb7, 0xfb, 0x18, 0x72, 0xbc, 0xb4, 0x0c, 0x95, 0x7f, +0x90, 0xa1, 0x84, 0x55, 0xbf, 0x85, 0x37, 0x58, 0xd0, 0x99, 0xd4, 0x20, 0xc9, 0xf1, 0xea, 0x90, +0x12, 0xcc, 0x99, 0x90, 0x90, 0x1a, 0xe2, 0x89, 0xce, 0x76, 0xb1, 0x4f, 0xd4, 0x1b, 0xda, 0x4e, +0xa3, 0x21, 0xf0, 0xa5, 0x7d, 0x94, 0x34, 0xe0, 0x4b, 0xad, 0x5c, 0x69, 0x61, 0xd2, 0x61, 0x5e, +0x1d, 0x57, 0x75, 0xbf, 0xe2, 0x42, 0x22, 0x84, 0xca, 0x8e, 0xe9, 0xab, 0xe0, 0xa7, 0xad, 0x2f, +0x3e, 0xde, 0xe8, 0x5e, 0xcd, 0xd2, 0x73, 0xda, 0x16, 0xc7, 0x5e, 0xce, 0x76, 0x3c, 0x28, 0xd6, +0x7d, 0xca, 0x78, 0xc7, 0x44, 0x07, 0x7d, 0xea, 0xdf, 0x22, 0xb0, 0xa5, 0xb8, 0x8e, 0x82, 0x12, +0xd0, 0xa6, 0x1e, 0xc4, 0xc8, 0x7c, 0x0f, 0x54, 0xaa, 0x55, 0x90, 0xd3, 0xc7, 0xe2, 0x7d, 0x0f, +0xef, 0x66, 0x9a, 0xac, 0x09, 0x62, 0xdd, 0x67, 0x1d, 0x42, 0x0e, 0xae, 0x51, 0xc7, 0xba, 0x75, +0xa4, 0x05, 0x24, 0x0f, 0x2a, 0x39, 0xcd, 0x24, 0x92, 0x66, 0x74, 0x8a, 0xe6, 0x48, 0x69, 0x27, +0x4a, 0x9f, 0xc4, 0xe2, 0xf2, 0x31, 0x94, 0xf4, 0xbe, 0x48, 0x37, 0xef, 0xae, 0x32, 0x4f, 0x36, +0x96, 0x2f, 0xf9, 0xda, 0xa8, 0x81, 0x60, 0xc6, 0x8e, 0xcf, 0x2e, 0x4f, 0x57, 0x57, 0x09, 0x88, +0x21, 0x90, 0x16, 0x8a, 0x06, 0x72, 0xb3, 0x14, 0xa3, 0xb3, 0xb0, 0xac, 0xb8, 0xdf, 0x94, 0xbb, +0x71, 0xb9, 0x6f, 0x13, 0x6d, 0x6c, 0x76, 0xca, 0x10, 0x3f, 0xfd, 0x4d, 0x9e, 0x7a, 0x5b, 0x14, +0xfc, 0xbf, 0x6a, 0x5f, 0x02, 0x30, 0xd0, 0x20, 0xc0, 0x86, 0x4e, 0x89, 0xaf, 0xc8, 0xaf, 0x03, +0x88, 0x6b, 0x82, 0x29, 0x93, 0xab, 0xbc, 0x05, 0x60, 0x49, 0xf4, 0xc1, 0x15, 0xcf, 0xad, 0x83, +0xec, 0xef, 0x76, 0xe8, 0xa9, 0xb2, 0x70, 0x33, 0x4a, 0x70, 0x28, 0xbd, 0xe4, 0x6a, 0x0a, 0xf7, +0x11, 0xe3, 0x12, 0x5a, 0x50, 0xde, 0x1e, 0x01, 0x75, 0xf7, 0x38, 0x4a, 0xbc, 0x2a, 0x20, 0x7b, +0x4a, 0x16, 0xcd, 0xad, 0x3b, 0x5c, 0x55, 0x76, 0xde, 0xfe, 0x9d, 0x26, 0x82, 0x8d, 0x08, 0xc1, +0xd7, 0x30, 0xba, 0xa5, 0x6c, 0x8c, 0x22, 0xfd, 0xe8, 0x94, 0x85, 0x3f, 0xfa, 0x34, 0xe3, 0x97, +0x57, 0x40, 0xc2, 0x27, 0x60, 0x8b, 0x28, 0x3a, 0x02, 0x3c, 0x1c, 0x1c, 0x30, 0x50, 0xe3, 0xcc, +0x59, 0x72, 0x9f, 0x69, 0x8c, 0x03, 0x8f, 0xda, 0x7a, 0x2a, 0x1a, 0x6a, 0x71, 0xfe, 0x99, 0x23, +0x1f, 0xcb, 0x1c, 0x06, 0x88, 0x0f, 0x38, 0x1b, 0xeb, 0x3c, 0xe1, 0xfc, 0x98, 0xc6, 0x59, 0x17, +0xa7, 0x1b, 0xfc, 0x92, 0x54, 0x5b, 0x0e, 0xcb, 0x54, 0x83, 0x2b, 0x86, 0xa3, 0xde, 0x11, 0xa9, +0x03, 0x72, 0xd8, 0x6b, 0x15, 0x7d, 0xd4, 0xcb, 0xb0, 0x7f, 0x1f, 0x9c, 0x40, 0x9d, 0xf5, 0x6d, +0x8d, 0x39, 0xf1, 0x6f, 0xe7, 0xa9, 0xc8, 0x06, 0xe1, 0xf7, 0x4b, 0x18, 0x79, 0x64, 0x2d, 0x7d, +0x5d, 0x64, 0x30, 0x65, 0x51, 0x0c, 0xb2, 0x6b, 0x16, 0x2a, 0xf4, 0xe6, 0x16, 0x50, 0x9a, 0xb4, +0x95, 0xf3, 0xc1, 0x2d, 0xa3, 0x57, 0x1d, 0x52, 0xdc, 0x53, 0x7c, 0xc5, 0x79, 0x51, 0xd6, 0xa0, +0xf9, 0x1e, 0xc3, 0xe9, 0xd4, 0x89, 0xed, 0x05, 0xa7, 0x18, 0x9f, 0xc3, 0x9f, 0xa4, 0x63, 0xeb, +0xbf, 0xb4, 0x53, 0x49, 0x12, 0x40, 0x1a, 0x39, 0x6c, 0x04, 0x77, 0x34, 0xb9, 0x2a, 0xa3, 0xc5, +0x0c, 0xcf, 0x04, 0x50, 0x0b, 0x47, 0x94, 0x70, 0x12, 0x3a, 0x61, 0xfd, 0x12, 0xe8, 0x54, 0xa5, +0xaf, 0x7b, 0x4a, 0xdc, 0x4f, 0x16, 0xf1, 0x43, 0x2d, 0x3d, 0xab, 0xed, 0xda, 0xbf, 0xc3, 0x3e, +0xca, 0x63, 0xbc, 0x2d, 0x4a, 0xa7, 0x63, 0x8e, 0x2c, 0xe4, 0x29, 0x55, 0xf7, 0x26, 0xfd, 0x75, +0x99, 0x42, 0x88, 0x9c, 0x51, 0x27, 0x1b, 0x60, 0x56, 0xb8, 0x5a, 0xe4, 0x1d, 0xe4, 0x21, 0x0a, +0xa2, 0x53, 0x42, 0xac, 0x1a, 0xd8, 0x4f, 0x63, 0x28, 0xc9, 0x3a, 0xad, 0xbc, 0xd3, 0x73, 0xa2, +0x90, 0x47, 0x31, 0x64, 0x7a, 0xac, 0xbf, 0x72, 0xc0, 0x4b, 0x56, 0xb0, 0x6b, 0x5b, 0x98, 0x8f, +0xd1, 0x3f, 0x72, 0x1e, 0x6f, 0x82, 0x72, 0xa4, 0x19, 0xb5, 0x4d, 0xe3, 0x5d, 0xb4, 0x5e, 0x5a, +0x8e, 0xeb, 0xd5, 0xa1, 0xec, 0x0d, 0x0f, 0x2f, 0xec, 0xc1, 0x39, 0xf0, 0x2b, 0x73, 0x0a, 0x36, +0x0d, 0xb3, 0x41, 0x96, 0x8c, 0xc2, 0x27, 0x4f, 0xef, 0x28, 0x95, 0x16, 0xf3, 0x1a, 0x45, 0x5c, +0x2e, 0xb9, 0x0d, 0x7f, 0xa4, 0x2e, 0x11, 0x9b, 0x57, 0xb4, 0x69, 0xa3, 0x97, 0x03, 0xff, 0x78, +0xa7, 0xdc, 0x41, 0xf0, 0xbd, 0xf3, 0x0b, 0x51, 0x28, 0x3f, 0x5b, 0xb1, 0x35, 0xf4, 0xba, 0xee, +0x03, 0x90, 0x86, 0xa4, 0xbd, 0x1a, 0xb6, 0x54, 0x39, 0xe2, 0xb0, 0xb9, 0x68, 0xb6, 0xb5, 0x94, +0xc8, 0x48, 0x1d, 0x3e, 0x20, 0x4e, 0x69, 0x93, 0x58, 0xb2, 0x89, 0x69, 0xa1, 0x7b, 0xad, 0xb9, +0x42, 0xf4, 0x65, 0xea, 0x3c, 0x54, 0x3b, 0x38, 0xa1, 0x4f, 0x45, 0xa8, 0xa5, 0x4b, 0xe5, 0x24, +0x1f, 0x80, 0x3e, 0x64, 0x35, 0x8d, 0xc8, 0x97, 0xb2, 0x56, 0xf4, 0xe3, 0xb2, 0xd9, 0x29, 0x32, +0x30, 0x33, 0x62, 0x04, 0x72, 0x7e, 0xde, 0x5f, 0xe1, 0x4e, 0x36, 0x7a, 0xcb, 0x97, 0x88, 0x80, +0x7d, 0x3a, 0x86, 0x34, 0x6a, 0xd7, 0x84, 0xf8, 0x03, 0x08, 0x9b, 0x8c, 0xd2, 0xe9, 0xfb, 0x38, +0x65, 0xe5, 0x11, 0xd2, 0x3f, 0xa0, 0x8b, 0x27, 0xa1, 0x2a, 0xd4, 0x2e, 0x60, 0x95, 0x7f, 0x81, +0x15, 0xb8, 0xcb, 0x0a, 0x95, 0x63, 0xf6, 0xed, 0xa8, 0x61, 0x3c, 0x00, 0xd9, 0x99, 0x59, 0xeb, +0x23, 0x3a, 0x90, 0x80, 0xcf, 0xca, 0x53, 0x23, 0x34, 0xb5, 0x47, 0x44, 0xb6, 0x2b, 0x60, 0xd4, +0x8f, 0x02, 0x69, 0x8d, 0x12, 0xf5, 0x55, 0xf4, 0x1b, 0xef, 0x3d, 0xef, 0xc8, 0x54, 0x04, 0xdf, +0xe4, 0xaf, 0x6f, 0x79, 0x2b, 0xd2, 0x44, 0x1f, 0x34, 0x4a, 0xf8, 0xb3, 0xa6, 0xe0, 0x07, 0x6b, +0x8c, 0x19, 0xda, 0x98, 0xc0, 0x5a, 0x46, 0xae, 0x89, 0x58, 0xd7, 0x8e, 0x6c, 0xa5, 0x9b, 0x37, +0x40, 0xd8, 0xfa, 0x84, 0x2e, 0xc1, 0xd7, 0x9d, 0xac, 0x27, 0x76, 0x67, 0xa5, 0xfd, 0x62, 0x25, +0xd0, 0xb0, 0x20, 0x71, 0x42, 0x72, 0x66, 0xd2, 0xef, 0xff, 0xb7, 0xa4, 0x5f, 0xbb, 0xc3, 0x72, +0x40, 0x8a, 0xc3, 0x73, 0xb2, 0x09, 0x47, 0x3b, 0x06, 0x4f, 0xe9, 0x2c, 0x55, 0x4c, 0x0b, 0x47, +0x37, 0x48, 0x7c, 0xe4, 0xd0, 0x44, 0x83, 0xef, 0x22, 0x27, 0x0b, 0x44, 0xdc, 0x2e, 0xc7, 0x58, +0x3d, 0x3f, 0xbb, 0x1b, 0x4e, 0x0f, 0x21, 0x29, 0x30, 0xad, 0x71, 0xa5, 0xe5, 0x65, 0x33, 0xe9, +0xb3, 0x82, 0x6f, 0x49, 0xa8, 0xc7, 0xa8, 0xf8, 0xa9, 0x5b, 0x5b, 0x70, 0x42, 0xae, 0x83, 0x35, +0x2a, 0x62, 0xe5, 0xea, 0x64, 0x32, 0xb9, 0xf9, 0x82, 0xf7, 0x25, 0x5b, 0x8a, 0x8e, 0x23, 0x04, +0x68, 0x2c, 0xeb, 0xaa, 0x07, 0xee, 0x05, 0x83, 0x31, 0x40, 0x03, 0x08, 0x29, 0xa3, 0x0b, 0x55, +0x2a, 0x77, 0xb1, 0x91, 0x6f, 0x0f, 0x77, 0xb8, 0xc2, 0x4d, 0x09, 0x3b, 0x27, 0x94, 0xfd, 0xe1, +0x24, 0xf8, 0x5a, 0xf8, 0x93, 0x2c, 0x81, 0xbe, 0xae, 0x0a, 0xc6, 0xc5, 0xeb, 0xc9, 0x15, 0x3b, +0x2f, 0xc5, 0x96, 0x41, 0x90, 0x97, 0x7c, 0x24, 0x2a, 0x46, 0x1a, 0x1c, 0xd5, 0x32, 0x78, 0x05, +0x3d, 0xf9, 0xa2, 0x54, 0x34, 0x0d, 0x38, 0x9c, 0x57, 0x3d, 0xbb, 0x25, 0xbf, 0x6e, 0x82, 0xc6, +0x6f, 0x57, 0x5f, 0xbb, 0x81, 0xf3, 0xfb, 0x10, 0xa3, 0x8e, 0xdc, 0x45, 0x27, 0xeb, 0xe3, 0x48, +0x93, 0xf1, 0x7b, 0x89, 0x46, 0xec, 0xce, 0xe8, 0x92, 0x1e, 0xbd, 0x7d, 0x1d, 0xee, 0xd4, 0x66, +0x80, 0x36, 0xa4, 0x42, 0x03, 0x25, 0x6e, 0x02, 0x41, 0x99, 0x0b, 0xcf, 0x02, 0x88, 0xb1, 0x36, +0x95, 0xd7, 0x32, 0x7b, 0xb0, 0xae, 0x1a, 0x8a, 0x42, 0x88, 0x0f, 0x90, 0xa8, 0x00, 0x3f, 0x37, +0x67, 0xcc, 0x5e, 0xbf, 0x43, 0x6e, 0x50, 0xd6, 0x79, 0x62, 0xa6, 0xfb, 0x40, 0xe6, 0xa3, 0x1f, +0xb1, 0x20, 0x63, 0xa6, 0x05, 0xa2, 0x88, 0x90, 0x7c, 0x59, 0x88, 0xdd, 0x4b, 0xb4, 0xcd, 0xb9, +0x27, 0xa7, 0x46, 0xe3, 0x71, 0x17, 0x03, 0xf9, 0x5d, 0xec, 0x58, 0x77, 0xc6, 0x60, 0xed, 0x2c, +0x3f, 0x08, 0x87, 0xb6, 0xe0, 0x2b, 0x17, 0x91, 0x4c, 0xa3, 0x57, 0xdc, 0x21, 0x4e, 0x2d, 0x78, +0xd3, 0x1d, 0xbb, 0xd2, 0xaa, 0x74, 0xad, 0x66, 0xb2, 0xc0, 0x51, 0x3c, 0xe2, 0xc4, 0xd6, 0x54, +0xc8, 0x6d, 0x00, 0x81, 0x78, 0xd5, 0x4d, 0xd4, 0x88, 0x87, 0x90, 0x22, 0x9f, 0x6a, 0x7d, 0x2e, +0x16, 0x77, 0xd7, 0xa1, 0x7e, 0x5f, 0x37, 0x74, 0x56, 0x69, 0x0d, 0xe5, 0xec, 0x29, 0xa6, 0x99, +0xe2, 0xba, 0x4d, 0xab, 0x45, 0x28, 0xaa, 0x0c, 0x72, 0x9b, 0x54, 0x01, 0x92, 0x8d, 0xf1, 0x9a, +0xe6, 0xef, 0xa8, 0xd5, 0xa4, 0xad, 0xcc, 0xa3, 0x35, 0xbd, 0x94, 0x56, 0xe8, 0x89, 0x3d, 0x53, +0xbb, 0xdf, 0x2e, 0x85, 0x82, 0xd4, 0x32, 0x26, 0xb2, 0xfd, 0xd3, 0x24, 0xe5, 0x8a, 0x37, 0xf9, +0x41, 0xb3, 0x7f, 0xb2, 0x60, 0x21, 0xb8, 0x04, 0x42, 0xeb, 0xc5, 0x13, 0xc3, 0x3b, 0x2d, 0xcc, +0x7b, 0x36, 0xa4, 0x48, 0x63, 0x83, 0xb6, 0xa6, 0x30, 0x2d, 0x0f, 0x1f, 0x4a, 0x55, 0xa8, 0xaa, +0xb1, 0xb9, 0xcc, 0x14, 0x1b, 0xdd, 0x34, 0x1c, 0x87, 0x50, 0x95, 0x20, 0x93, 0x61, 0xb8, 0x48, +0x12, 0x70, 0xa7, 0xfd, 0xbb, 0x10, 0x8b, 0x01, 0x45, 0x10, 0xd3, 0xc5, 0xf8, 0x92, 0x51, 0xb8, +0xbd, 0xef, 0xbc, 0x1d, 0xba, 0xfa, 0x87, 0x5f, 0x14, 0x2f, 0x86, 0x98, 0x0f, 0x8d, 0xc8, 0xdd, +0x90, 0x77, 0x7b, 0xe5, 0xfd, 0x43, 0x83, 0xed, 0x5e, 0x9c, 0x5a, 0x94, 0x34, 0x49, 0x81, 0xd6, +0x51, 0x18, 0xb7, 0xf3, 0x82, 0x02, 0x9f, 0xaf, 0x58, 0x2f, 0xe7, 0xf3, 0x7d, 0x0d, 0x63, 0x6e, +0x00, 0x92, 0x1d, 0x78, 0x99, 0x2d, 0x70, 0x68, 0xfe, 0xd2, 0x93, 0xa6, 0x2c, 0x8b, 0x4a, 0x24, +0xa7, 0xa4, 0x1e, 0xcd, 0xae, 0x07, 0xef, 0x92, 0xb1, 0x4b, 0x00, 0xcc, 0x13, 0x4e, 0xb0, 0x7b, +0x88, 0x85, 0xb4, 0x8b, 0x59, 0xde, 0xaa, 0x9c, 0x34, 0x4d, 0x88, 0x08, 0xbe, 0xd1, 0x01, 0x1a, +0xc1, 0x01, 0x4f, 0xd7, 0x4c, 0xa9, 0x00, 0xb2, 0x5d, 0xac, 0xc9, 0x14, 0x93, 0xdd, 0xf2, 0x79, +0xd7, 0x6c, 0x18, 0xff, 0x01, 0x39, 0xbe, 0xbe, 0xc1, 0xf0, 0x3e, 0x7c, 0xb1, 0xde, 0x9f, 0x42, +0x6d, 0x8c, 0x4f, 0x17, 0xd4, 0xea, 0x61, 0x73, 0x18, 0xf9, 0x39, 0x59, 0xd9, 0xf0, 0x13, 0xa4, +0xac, 0xee, 0xa9, 0x00, 0xbd, 0x09, 0xe8, 0xcd, 0x14, 0xb0, 0x25, 0x4f, 0x16, 0x20, 0xd8, 0xf0, +0x44, 0xe9, 0xd5, 0x4a, 0xf3, 0x1a, 0x4c, 0x44, 0xda, 0xc0, 0x1b, 0x7b, 0x32, 0xc8, 0x00, 0x46, +0xd6, 0xed, 0x83, 0xde, 0x04, 0xc3, 0x52, 0x3b, 0x07, 0x25, 0x3d, 0x82, 0x4c, 0x59, 0x3c, 0xc2, +0x1e, 0x7b, 0x69, 0xf9, 0x5e, 0xf8, 0x34, 0xc2, 0xaa, 0x68, 0x59, 0x94, 0x0a, 0xda, 0xef, 0xbd, +0x74, 0xdf, 0x21, 0xba, 0x0f, 0x34, 0xf5, 0x69, 0x53, 0xe7, 0x1b, 0x7b, 0xf4, 0xd1, 0x22, 0x94, +0xff, 0x6b, 0xcc, 0x45, 0xbc, 0xc6, 0xb6, 0x3b, 0xa6, 0x2d, 0x17, 0x41, 0x0c, 0x21, 0xe7, 0x2a, +0x32, 0x20, 0xc0, 0x81, 0x4e, 0x35, 0x41, 0xb7, 0xb7, 0x4e, 0xc5, 0xe5, 0xa0, 0x92, 0x6a, 0xa8, +0x5a, 0xc8, 0x77, 0xc0, 0xb6, 0x45, 0xd4, 0x86, 0x56, 0xba, 0xe8, 0x94, 0xaa, 0x4d, 0xff, 0x3e, +0xe5, 0xe8, 0xd2, 0xd5, 0x3c, 0x59, 0x12, 0x33, 0xbb, 0xb8, 0xbb, 0x18, 0x72, 0x76, 0x5e, 0xe2, +0x8a, 0x60, 0x12, 0x99, 0xc3, 0x52, 0xf1, 0x54, 0x91, 0x5f, 0xb8, 0xe3, 0x92, 0x31, 0xac, 0xa0, +0x6b, 0x76, 0x46, 0x44, 0xd8, 0x9d, 0x6b, 0xb6, 0xcf, 0x05, 0x62, 0x9a, 0x67, 0xdd, 0xc4, 0xd5, +0xed, 0x29, 0xac, 0x6b, 0xc6, 0x89, 0x7d, 0x7a, 0x33, 0x65, 0x55, 0x0b, 0x38, 0xf4, 0x44, 0x81, +0x1f, 0xdb, 0x86, 0x7a, 0xb3, 0x95, 0xce, 0xb7, 0x1f, 0xfb, 0x3f, 0x6c, 0x02, 0xce, 0x7c, 0xbe, +0x4d, 0x51, 0x6a, 0x9e, 0xdf, 0x74, 0x27, 0x3e, 0xd2, 0x5d, 0x96, 0x5e, 0xc6, 0xab, 0x2e, 0xba, +0x13, 0x80, 0x9d, 0x5e, 0xc9, 0x74, 0x5a, 0x19, 0x0c, 0xa0, 0x51, 0x1c, 0x13, 0x3c, 0x31, 0x16, +0x46, 0x5a, 0xb2, 0xe5, 0x64, 0x08, 0x8e, 0x0c, 0x12, 0x66, 0x01, 0xa7, 0x80, 0xff, 0x42, 0x62, +0xb3, 0x93, 0x91, 0x45, 0x0a, 0xf9, 0xfe, 0xf0, 0xd6, 0xf6, 0x9f, 0x08, 0xe6, 0x47, 0x47, 0x67, +0x08, 0x7f, 0x54, 0x53, 0xe0, 0x5f, 0xdc, 0x0d, 0x2a, 0xd8, 0x90, 0x97, 0x17, 0xd7, 0x6b, 0xe2, +0xaf, 0xcc, 0xb8, 0x57, 0x5f, 0xe8, 0x4e, 0x77, 0x2f, 0x31, 0xa1, 0x28, 0x4e, 0x7d, 0x93, 0x11, +0x1c, 0xb1, 0x46, 0x78, 0xbb, 0xa2, 0x25, 0x1e, 0xde, 0x43, 0x8b, 0x9a, 0x4f, 0x9e, 0x72, 0x4d, +0x6d, 0x96, 0xaf, 0xf2, 0xfa, 0x6c, 0x2a, 0x91, 0x66, 0x3e, 0xf5, 0x18, 0xa8, 0x64, 0x74, 0xa1, +0x56, 0xbc, 0x78, 0xaf, 0xde, 0xfb, 0xa5, 0x27, 0x93, 0x3f, 0x10, 0xf7, 0x80, 0xdd, 0x22, 0x33, +0x0a, 0xb2, 0x2b, 0x31, 0xd0, 0x71, 0x04, 0x65, 0x53, 0x93, 0xec, 0x8a, 0x50, 0x96, 0x5a, 0xde, +0x15, 0x0b, 0x7c, 0xd4, 0x91, 0xcb, 0x10, 0x06, 0xbe, 0x4f, 0x4b, 0xd0, 0x78, 0x0a, 0x64, 0x6c, +0x18, 0x90, 0xac, 0xa6, 0x8f, 0xcc, 0x30, 0x10, 0x19, 0x5b, 0x7e, 0x8e, 0x9f, 0xa5, 0xc6, 0x17, +0xf4, 0x11, 0xdb, 0xbe, 0x49, 0x0b, 0xa7, 0xb8, 0x49, 0xfe, 0xa3, 0xce, 0xff, 0x64, 0xa9, 0x24, +0x52, 0x45, 0x11, 0x5b, 0xab, 0x76, 0x1b, 0x81, 0xfd, 0x1f, 0x5f, 0x8f, 0x3b, 0xff, 0x27, 0x5d, +0xef, 0x5c, 0xdb, 0xd9, 0xce, 0x8b, 0xf2, 0xab, 0xae, 0xa5, 0x3d, 0xae, 0x93, 0x43, 0xdc, 0x41, +0x7e, 0x12, 0x56, 0x31, 0xa5, 0x71, 0xda, 0x19, 0x6c, 0xff, 0x64, 0x34, 0x76, 0xd5, 0x10, 0xea, +0xf1, 0x30, 0x08, 0x23, 0x58, 0xcd, 0xe0, 0x6d, 0x47, 0x09, 0xee, 0xea, 0x6a, 0x1b, 0x4c, 0xb1, +0x28, 0xff, 0x67, 0xcb, 0x39, 0x60, 0x6f, 0xec, 0x15, 0xf4, 0xef, 0xa8, 0xd2, 0xc5, 0xee, 0x67, +0x5b, 0x28, 0x9f, 0x57, 0x8c, 0x8c, 0xf5, 0x9e, 0xe7, 0x9f, 0x2d, 0xa0, 0xa5, 0x97, 0x7d, 0xa8, +0xa1, 0xec, 0x29, 0x03, 0x72, 0x84, 0x4f, 0xb2, 0xa9, 0x23, 0x13, 0x31, 0x92, 0xe2, 0xf0, 0x05, +0xb0, 0xce, 0xac, 0xfa, 0x32, 0x82, 0xaa, 0xbe, 0x1f, 0x15, 0xa5, 0x09, 0xec, 0x6b, 0xb2, 0xd3, +0x89, 0x67, 0xcb, 0x66, 0xce, 0x70, 0xf8, 0x15, 0x66, 0xb0, 0x8f, 0x3f, 0xc3, 0x83, 0x20, 0xe5, +0x37, 0x05, 0x57, 0xf8, 0xd2, 0x9a, 0xea, 0xdd, 0x67, 0x80, 0xa8, 0x9e, 0xd0, 0x7a, 0x4a, 0x61, +0x6f, 0x00, 0xa6, 0xc5, 0x71, 0xd1, 0x3b, 0x5e, 0x15, 0x8d, 0xdb, 0x2b, 0xeb, 0x92, 0x41, 0x44, +0xed, 0x8b, 0x29, 0x68, 0x6b, 0x7a, 0xd2, 0xf0, 0x1a, 0xa7, 0x4a, 0xb4, 0xca, 0x10, 0xd4, 0x81, +0x71, 0xc0, 0x9e, 0x87, 0x60, 0x81, 0xb3, 0x2c, 0xb7, 0x0a, 0x50, 0xb2, 0xa5, 0x34, 0x72, 0xa1, +0xeb, 0xbe, 0x42, 0xef, 0xa9, 0x5c, 0x71, 0xab, 0x19, 0x67, 0xcf, 0xdb, 0xa1, 0x36, 0xad, 0x05, +0x79, 0xe5, 0x89, 0x78, 0xe4, 0x81, 0x48, 0x71, 0x03, 0xb2, 0x2e, 0x1b, 0xac, 0xac, 0x8a, 0x31, +0xaf, 0x24, 0xba, 0x49, 0x46, 0x87, 0xd8, 0x65, 0x07, 0x8f, 0x84, 0x88, 0x68, 0x0d, 0xac, 0x7c, +0xbf, 0x87, 0x07, 0x9c, 0x91, 0x52, 0xd7, 0x97, 0xa3, 0x29, 0x2a, 0x25, 0x46, 0x4f, 0x2c, 0x2b, +0x6e, 0xe5, 0xed, 0x7c, 0xa2, 0xcd, 0x9f, 0x5e, 0x6d, 0x4f, 0x62, 0xa2, 0xe3, 0x5e, 0x33, 0x9c, +0x30, 0x4a, 0xfd, 0xca, 0x6e, 0xf9, 0x9e, 0x73, 0xde, 0xf0, 0x99, 0xb1, 0x4e, 0x83, 0x3d, 0x92, +0x9c, 0xc1, 0xd9, 0x1c, 0x40, 0xde, 0x26, 0xc4, 0xc7, 0x9c, 0x26, 0x9f, 0x46, 0x62, 0x1b, 0x8b, +0x66, 0x59, 0x96, 0x8c, 0x8c, 0x2f, 0x43, 0x55, 0x3e, 0xd0, 0x93, 0x1b, 0xaf, 0xb6, 0xd2, 0x22, +0xf3, 0x1a, 0xd0, 0x52, 0x7e, 0xe4, 0x17, 0x54, 0x9c, 0xb9, 0x97, 0x24, 0xb3, 0xe2, 0x73, 0x83, +0x82, 0xe1, 0x06, 0x80, 0x98, 0x74, 0xc8, 0xd8, 0xc4, 0xf7, 0x96, 0xf3, 0x29, 0xce, 0x99, 0xc2, +0x03, 0x12, 0x52, 0x0d, 0xe5, 0xc6, 0xc4, 0xcc, 0xbf, 0x2c, 0x6a, 0x61, 0x96, 0xe9, 0xab, 0xd5, +0x0f, 0x61, 0xbb, 0x79, 0x3b, 0x02, 0xb0, 0x5d, 0xe3, 0x7f, 0xf0, 0xdb, 0x35, 0xb7, 0xd5, 0x3a, +0x30, 0x8d, 0x21, 0xc6, 0xac, 0xb9, 0x7f, 0x2d, 0x97, 0xaf, 0x9b, 0xff, 0xc5, 0x29, 0x11, 0x59, +0x48, 0x3c, 0x27, 0x75, 0x48, 0xa3, 0x7b, 0x4e, 0xa6, 0x50, 0x79, 0x01, 0xc5, 0xaf, 0x58, 0x0a, +0x89, 0x93, 0xd5, 0x40, 0x43, 0xcd, 0x2b, 0xf9, 0x4b, 0x37, 0x93, 0x39, 0x06, 0xf2, 0xc3, 0xe5, +0x50, 0x82, 0xd3, 0x1e, 0x5e, 0xbc, 0x91, 0xa2, 0xd7, 0x7b, 0x9b, 0x10, 0xd8, 0x96, 0x8a, 0x74, +0x25, 0x02, 0x15, 0x93, 0xe3, 0xb9, 0xe0, 0x93, 0x6f, 0x1d, 0xa7, 0xb0, 0x34, 0x46, 0x4b, 0x5a, +0xbf, 0x6b, 0x66, 0x27, 0xe9, 0x74, 0x1a, 0x8a, 0x0b, 0x18, 0x91, 0x7f, 0xcf, 0x9b, 0x5a, 0x42, +0x7e, 0x0f, 0xb5, 0xb7, 0x92, 0xbc, 0x5f, 0xc0, 0x64, 0x5b, 0x91, 0x8a, 0xb9, 0x35, 0xed, 0xe3, +0x8d, 0x63, 0x68, 0x65, 0x1d, 0x4a, 0xed, 0xc9, 0x61, 0x8d, 0x22, 0x3e, 0x13, 0x9b, 0xc2, 0x3b, +0x67, 0x1d, 0x13, 0x6f, 0xd8, 0x48, 0x10, 0x73, 0xa1, 0xe3, 0xc3, 0xf5, 0xc0, 0x5e, 0x3b, 0x95, +0x90, 0xb0, 0xcd, 0x37, 0x81, 0xd5, 0x1f, 0x11, 0xbc, 0x2e, 0xd2, 0xb2, 0x49, 0x25, 0x38, 0x93, +0x6a, 0x55, 0x6d, 0x33, 0xb3, 0x2c, 0x07, 0xd0, 0xb0, 0x0b, 0x6e, 0x33, 0x73, 0x6b, 0xae, 0x36, +0xa9, 0x52, 0x52, 0xd3, 0x43, 0xab, 0x92, 0x68, 0x7a, 0xca, 0xfd, 0xa7, 0xc2, 0x77, 0x96, 0x39, +0x54, 0xb6, 0x03, 0xc0, 0x7c, 0x04, 0x5b, 0x47, 0x36, 0x6b, 0x35, 0x37, 0x10, 0x9f, 0xf4, 0xea, +0x1d, 0x9a, 0x88, 0x72, 0x80, 0x59, 0x3d, 0x28, 0xa8, 0x82, 0xea, 0x27, 0x33, 0xf9, 0x44, 0x17, +0x4d, 0xb0, 0x8f, 0x58, 0x03, 0x64, 0x34, 0xe3, 0xd2, 0x9a, 0x56, 0xf7, 0x27, 0x9f, 0x94, 0x28, +0xb9, 0xa5, 0xde, 0x56, 0x9c, 0xb9, 0x38, 0xa9, 0x24, 0x68, 0x26, 0xc7, 0xfe, 0x2f, 0x80, 0xb0, +0x26, 0xe5, 0xa1, 0x96, 0x8d, 0xdf, 0x70, 0x67, 0xc6, 0xce, 0xce, 0x22, 0x09, 0xbd, 0x5f, 0x9f, +0xc4, 0x46, 0x72, 0xb0, 0x15, 0xd0, 0x95, 0xdd, 0xe2, 0xbf, 0xf6, 0x9b, 0xe2, 0xc2, 0xff, 0x95, +0x4d, 0xaf, 0x18, 0xba, 0x8e, 0x4b, 0xaf, 0xd8, 0x9a, 0x28, 0xe1, 0x16, 0x59, 0xfd, 0x51, 0x95, +0x4c, 0xcc, 0xbe, 0x53, 0x2c, 0x19, 0x02, 0x3b, 0x04, 0xed, 0xa0, 0x39, 0x56, 0xe5, 0x85, 0xc2, +0xdb, 0xda, 0xee, 0xab, 0x33, 0x8b, 0xcc, 0x30, 0x10, 0x25, 0xa5, 0xff, 0x71, 0x92, 0x00, 0x85, +0x47, 0xe9, 0xb2, 0x5b, 0xc9, 0xd2, 0xd0, 0xbb, 0xf7, 0x9f, 0x84, 0x1a, 0x61, 0xaf, 0x7a, 0x97, +0x4a, 0x87, 0x12, 0xec, 0xa9, 0x4b, 0x07, 0x88, 0xeb, 0xda, 0x10, 0x10, 0x10, 0xcd, 0xcc, 0x63, +0x80, 0x0f, 0xdf, 0xb0, 0xac, 0xa6, 0x61, 0x34, 0xda, 0x4c, 0x81, 0x6f, 0x73, 0x76, 0x07, 0x9b, +0xd9, 0x4a, 0x0f, 0x16, 0x3d, 0x9f, 0xb2, 0x37, 0xf2, 0xbc, 0x44, 0x27, 0xc1, 0x53, 0x6d, 0x8f, +0x6e, 0xa5, 0xf1, 0x36, 0x3a, 0xf7, 0x39, 0xd6, 0x59, 0xe2, 0xe8, 0x8c, 0x52, 0x04, 0x4b, 0x3e, +0x31, 0xf4, 0xa1, 0xdb, 0x7b, 0xa2, 0x26, 0x07, 0xc2, 0x0a, 0xf5, 0x2a, 0x78, 0xd5, 0x66, 0x68, +0x3a, 0x8f, 0xe6, 0xe3, 0xcc, 0xfa, 0x3e, 0xab, 0x62, 0x87, 0x9d, 0xbb, 0x01, 0x0a, 0x2a, 0x31, +0x12, 0x76, 0xcf, 0xcb, 0x1a, 0x84, 0xdb, 0x6c, 0x88, 0x08, 0x16, 0x7b, 0x3e, 0xc1, 0x00, 0x7e, +0xf0, 0xe1, 0xd9, 0x3e, 0x9a, 0x6c, 0x00, 0x9f, 0x4a, 0x25, 0x73, 0xbf, 0x62, 0x67, 0x13, 0x91, +0xd9, 0x74, 0xf5, 0x7c, 0xba, 0x77, 0xe5, 0x7e, 0xdc, 0xb6, 0xa1, 0x54, 0xf7, 0x9a, 0xa3, 0x4c, +0xfd, 0x39, 0x0e, 0x5d, 0xa7, 0x40, 0xdd, 0x90, 0xf5, 0x07, 0x9a, 0x03, 0x1c, 0xa0, 0xca, 0x34, +0x25, 0x7e, 0x5f, 0x5a, 0x25, 0x58, 0x46, 0xa5, 0xc1, 0xa3, 0x92, 0x38, 0x3a, 0x21, 0x35, 0x39, +0xb6, 0x4d, 0xef, 0xb8, 0x38, 0x05, 0xac, 0x97, 0x0d, 0xcd, 0xdd, 0x9d, 0x5a, 0xeb, 0xf6, 0x6f, +0xfe, 0xf7, 0x90, 0xf5, 0x33, 0x62, 0x40, 0x83, 0x2d, 0x22, 0x9d, 0x82, 0xeb, 0x41, 0xb8, 0xca, +0x38, 0xe1, 0xbe, 0x78, 0x75, 0xf9, 0x2a, 0xb6, 0x82, 0x4f, 0xf0, 0xb2, 0x65, 0x36, 0x88, 0x4e, +0xd3, 0x1b, 0x5a, 0xb3, 0x6d, 0xec, 0xa7, 0x65, 0x58, 0x5d, 0xbe, 0xa3, 0xbb, 0x5f, 0x12, 0x23, +0x73, 0x4b, 0xb1, 0xa7, 0xfc, 0x57, 0xdb, 0x2e, 0x6b, 0x14, 0x7a, 0x52, 0x32, 0xff, 0xc3, 0xe8, +0x82, 0xae, 0x92, 0xbe, 0x69, 0xc6, 0xb7, 0xa4, 0x99, 0x8e, 0x79, 0xf5, 0xb2, 0x95, 0x8e, 0x9e, +0x9e, 0x70, 0xc0, 0xad, 0xb7, 0x4b, 0x64, 0xb6, 0xf7, 0xee, 0x9b, 0xcf, 0x29, 0x6d, 0x2f, 0xaf, +0x68, 0x37, 0x51, 0x67, 0x4b, 0x57, 0x00, 0x8c, 0x9b, 0xe6, 0xf2, 0x4e, 0x9e, 0x35, 0xad, 0x3d, +0x6e, 0x77, 0x41, 0x59, 0x0e, 0x6d, 0xa8, 0x3b, 0x58, 0x34, 0x85, 0x8a, 0xa5, 0x7d, 0xd6, 0xc9, +0x9b, 0x9a, 0xc5, 0xa1, 0xbc, 0xb5, 0x55, 0x47, 0x4e, 0x85, 0xe1, 0xd9, 0xd3, 0x91, 0xdc, 0xc2, +0x0d, 0x12, 0xb0, 0x80, 0x8a, 0xd4, 0x61, 0x4f, 0x2b, 0x73, 0xbd, 0x62, 0xce, 0x7f, 0x8b, 0xad, +0x75, 0xae, 0x94, 0xd3, 0x2b, 0x31, 0xe6, 0x9e, 0x12, 0x01, 0x7b, 0xd2, 0x84, 0xa6, 0x2d, 0xff, +0x28, 0x34, 0x4f, 0x7c, 0x42, 0x68, 0xe2, 0xa8, 0xbe, 0xaf, 0x1a, 0x2c, 0xff, 0x43, 0xef, 0x32, +0x66, 0xa2, 0xae, 0xfd, 0x44, 0xc6, 0x66, 0x45, 0x1f, 0xbd, 0x7a, 0xb2, 0x7b, 0x5b, 0x89, 0x04, +0xbd, 0x40, 0xcd, 0x8e, 0x13, 0x6b, 0xb3, 0x5f, 0xfe, 0x93, 0xe4, 0xad, 0x1c, 0x27, 0xbf, 0x18, +0xd6, 0xc1, 0xd0, 0xb1, 0x9a, 0x23, 0xca, 0x76, 0xac, 0xf6, 0x2d, 0xbe, 0xb4, 0x36, 0xee, 0xd2, +0xfd, 0xc4, 0xa8, 0x33, 0xdf, 0xbb, 0xcb, 0x38, 0x4e, 0xc3, 0x7a, 0x95, 0xf8, 0x2d, 0x85, 0x39, +0xdc, 0xa3, 0x43, 0xef, 0x55, 0x2e, 0xa2, 0x14, 0x5e, 0xbd, 0xcd, 0x9d, 0x56, 0x1a, 0x9a, 0xab, +0x39, 0x03, 0x39, 0xc4, 0xd0, 0x8a, 0x22, 0x7f, 0x01, 0xa6, 0x5d, 0x4b, 0xac, 0xe7, 0x38, 0x35, +0xe5, 0x31, 0x5c, 0x68, 0x91, 0xd5, 0x47, 0x90, 0x2d, 0x86, 0x6e, 0xeb, 0xfa, 0x5c, 0xad, 0x65, +0x4d, 0xb4, 0xb0, 0xee, 0xc3, 0x98, 0x97, 0x87, 0x90, 0xb5, 0x87, 0x8b, 0x40, 0x80, 0x29, 0xc2, +0x97, 0xe5, 0x01, 0x8a, 0x36, 0x8d, 0x5d, 0x22, 0x39, 0xb6, 0x25, 0xb9, 0x0d, 0xfa, 0xcf, 0x20, +0x38, 0x56, 0x77, 0x9b, 0x11, 0x4b, 0xbf, 0x8f, 0xe1, 0x7a, 0x69, 0xb3, 0xaa, 0xe3, 0x71, 0x59, +0xe0, 0x20, 0x20, 0x8c, 0xf6, 0x0b, 0x0d, 0xd7, 0x59, 0x5c, 0x0b, 0x0b, 0x43, 0x44, 0xcd, 0xef, +0xa7, 0x36, 0x88, 0xca, 0x66, 0xc5, 0x9c, 0x4c, 0x13, 0xad, 0x79, 0x8d, 0x62, 0x0a, 0x92, 0xd2, +0x1b, 0xe9, 0x47, 0xfe, 0xb3, 0x2d, 0x20, 0x42, 0x57, 0xfd, 0xe8, 0x05, 0x4a, 0x45, 0x32, 0xa6, +0xaf, 0xe8, 0x19, 0xbc, 0x86, 0xe1, 0x0a, 0xf7, 0x27, 0xdf, 0x21, 0xaa, 0xd3, 0x91, 0x27, 0x29, +0x8e, 0x7d, 0x1b, 0x17, 0xbb, 0x50, 0x97, 0x8f, 0xab, 0x53, 0x1c, 0x1d, 0x18, 0xca, 0x82, 0xb2, +0xc4, 0xee, 0xfe, 0x7d, 0xea, 0x04, 0xbd, 0x97, 0x89, 0xca, 0x87, 0xfb, 0x12, 0x93, 0x0d, 0xd5, +0xe5, 0x38, 0x31, 0x9f, 0x9c, 0x41, 0x18, 0xe9, 0x77, 0x38, 0x29, 0xdf, 0x91, 0x3c, 0x27, 0xed, +0xcf, 0x13, 0x60, 0x98, 0x9b, 0xe0, 0x88, 0x94, 0xd7, 0xa8, 0x84, 0xcf, 0x1a, 0xbb, 0x85, 0x3f, +0x09, 0x7b, 0x48, 0xf8, 0x02, 0x3f, 0x57, 0x5c, 0x2e, 0xa4, 0x55, 0x4b, 0xb4, 0x6a, 0xaa, 0x13, +0x30, 0x00, 0xe4, 0xa7, 0xc4, 0x74, 0x8b, 0x72, 0x79, 0xea, 0x5b, 0xee, 0x0a, 0xcd, 0x50, 0xeb, +0xac, 0x35, 0x7d, 0x33, 0x2d, 0x7a, 0x95, 0x40, 0xb8, 0xee, 0x60, 0x3d, 0xd5, 0x73, 0x8b, 0x23, +0xc2, 0x98, 0x39, 0xba, 0xe1, 0xd5, 0x54, 0x61, 0x51, 0x03, 0xd1, 0x1a, 0x5a, 0x37, 0x86, 0xbf, +0xa6, 0x14, 0x0e, 0xfc, 0x84, 0xd1, 0x35, 0xaa, 0xa0, 0x52, 0x62, 0x3f, 0x80, 0xc5, 0xfa, 0xaf, +0x72, 0xef, 0xa2, 0xa1, 0x03, 0x6e, 0xa4, 0x5c, 0x0d, 0xe6, 0xbf, 0xe2, 0x2b, 0x53, 0xc9, 0xda, +0x9f, 0x71, 0x44, 0x2e, 0x2e, 0xdb, 0x97, 0xfb, 0x63, 0x50, 0x66, 0xb9, 0xdf, 0x33, 0x9d, 0x5f, +0xbe, 0x59, 0x40, 0x12, 0xb5, 0x1c, 0x27, 0xad, 0x78, 0x45, 0xb1, 0x68, 0x2c, 0xa5, 0xf1, 0x4a, +0x93, 0x27, 0xe4, 0xc3, 0x96, 0x66, 0xf1, 0x4b, 0x0c, 0x63, 0x75, 0x48, 0xfd, 0xe8, 0x16, 0x0d, +0xcb, 0xd8, 0xd3, 0x38, 0x0d, 0xe7, 0x27, 0xf3, 0x31, 0x48, 0x24, 0x24, 0x39, 0xf3, 0x81, 0xc8, +0x6b, 0x84, 0x88, 0x7c, 0xbb, 0x22, 0xb8, 0x70, 0xf4, 0xed, 0xb8, 0xdf, 0x09, 0xc5, 0x14, 0x08, +0x9d, 0x45, 0x46, 0x04, 0x5b, 0xe2, 0x01, 0x61, 0xa9, 0x2a, 0xff, 0x6a, 0x0d, 0xc4, 0x21, 0x68, +0x56, 0x5e, 0x86, 0x19, 0x64, 0x7f, 0xfc, 0xa0, 0xa4, 0x22, 0x3a, 0x50, 0x09, 0x18, 0x14, 0x12, +0xd0, 0x15, 0x4e, 0xc2, 0x3e, 0x83, 0xec, 0x6d, 0x7b, 0xdb, 0xa8, 0x8d, 0xaf, 0x00, 0x93, 0x06, +0x2e, 0x70, 0xd6, 0x14, 0xea, 0xd1, 0x6c, 0x3d, 0xb0, 0x09, 0xb1, 0x90, 0x45, 0xc3, 0x9a, 0x33, +0xeb, 0xfc, 0xe2, 0xd9, 0x24, 0x91, 0xa2, 0x7f, 0x21, 0x70, 0x15, 0xa3, 0xf2, 0xf6, 0xe8, 0xec, +0xbd, 0xbc, 0xe5, 0x02, 0xd4, 0x0d, 0xaa, 0x95, 0xf4, 0xe9, 0x70, 0xd3, 0xc8, 0xbc, 0xfe, 0xbd, +0x4b, 0x4c, 0xc9, 0x0e, 0x5a, 0x59, 0x56, 0x62, 0x86, 0x03, 0xa2, 0xf3, 0xa2, 0x4d, 0x97, 0xdc, +0x66, 0xf9, 0xc5, 0x8a, 0x3a, 0xfa, 0xc5, 0x35, 0x57, 0x2b, 0xb4, 0xcd, 0x0e, 0x54, 0x4c, 0x3c, +0x3d, 0x9e, 0x4e, 0xa7, 0x65, 0xa4, 0x35, 0x43, 0x06, 0xcb, 0xde, 0xeb, 0x76, 0x0b, 0xa8, 0x7f, +0x51, 0x1c, 0x43, 0x1a, 0xbe, 0xba, 0x38, 0xfe, 0x5a, 0x51, 0x3a, 0x4c, 0xeb, 0x47, 0xa9, 0x36, +0x77, 0xcc, 0xbc, 0x10, 0x09, 0x03, 0xc4, 0x5d, 0x64, 0xae, 0xe3, 0xdc, 0xc4, 0x5d, 0x32, 0xc7, +0x48, 0x49, 0x99, 0x93, 0xb9, 0x46, 0x21, 0xda, 0x9a, 0x84, 0xc8, 0x47, 0x35, 0xec, 0xa7, 0xbf, +0x5a, 0xee, 0xdc, 0x7c, 0xfb, 0x25, 0x41, 0x5d, 0xf6, 0xbf, 0x26, 0xb4, 0xe7, 0x5f, 0xfd, 0x54, +0xc4, 0x9a, 0x7e, 0xc7, 0x41, 0xbc, 0xb2, 0x22, 0xb3, 0x31, 0xe8, 0x7a, 0x84, 0xe0, 0xb6, 0x2c, +0xe9, 0xa3, 0x87, 0x8a, 0x48, 0x82, 0x9b, 0xfb, 0xf5, 0xf5, 0xa5, 0x73, 0x3b, 0xe8, 0x77, 0x9c, +0x1e, 0x7f, 0x82, 0x1a, 0xae, 0x01, 0x11, 0x4e, 0x71, 0x28, 0xfd, 0x69, 0x2c, 0x0c, 0xe8, 0xc3, +0x6e, 0x0f, 0xb0, 0xda, 0xf6, 0xf9, 0x2a, 0x67, 0xfc, 0xc4, 0x4e, 0x6f, 0x08, 0xa2, 0x02, 0x7e, +0x51, 0x9b, 0x6c, 0xe7, 0xa2, 0xb2, 0x93, 0x6b, 0x9f, 0x02, 0x32, 0xd7, 0x6f, 0xb8, 0x25, 0x44, +0x37, 0x8b, 0x1a, 0x83, 0x90, 0x2c, 0x03, 0xd4, 0x4b, 0x25, 0x6f, 0x4e, 0x85, 0x65, 0xaf, 0x64, +0xd5, 0x55, 0x90, 0xaf, 0x8e, 0xd4, 0x3a, 0xcc, 0x82, 0x05, 0x5f, 0x81, 0x1a, 0x12, 0xfb, 0x56, +0x3f, 0x95, 0x88, 0x1f, 0xca, 0x88, 0xf6, 0x43, 0x67, 0xcb, 0x87, 0x6a, 0x55, 0xac, 0x04, 0x5a, +0x6b, 0x97, 0x20, 0xa6, 0xaf, 0x7a, 0x13, 0xff, 0x78, 0x57, 0xec, 0xac, 0x4b, 0xfc, 0xb4, 0xb1, +0x94, 0x82, 0x83, 0xe6, 0xd5, 0x5e, 0xa2, 0xa1, 0xc5, 0xe0, 0xee, 0x6e, 0xe9, 0xb1, 0xa6, 0x6f, +0x02, 0x2b, 0x66, 0x4b, 0x25, 0xc0, 0x25, 0x08, 0x76, 0x6a, 0x37, 0xf4, 0xe6, 0xcd, 0x04, 0x1e, +0x29, 0x1f, 0xf7, 0x52, 0xb9, 0x9b, 0x6e, 0x20, 0x87, 0x16, 0x69, 0x0d, 0xc9, 0x32, 0xde, 0x19, +0x2e, 0xe7, 0x42, 0x27, 0x5e, 0x57, 0xce, 0x1e, 0xab, 0x6d, 0xd2, 0x28, 0x60, 0xf6, 0xd7, 0x22, +0x20, 0xb1, 0x15, 0x50, 0x40, 0x3e, 0xb8, 0xc9, 0x89, 0x46, 0x5a, 0xe6, 0x40, 0xf8, 0xb8, 0x84, +0xbe, 0x41, 0x19, 0x90, 0x38, 0x46, 0x4e, 0xcf, 0xb9, 0x69, 0xd5, 0x4e, 0x16, 0xe4, 0xb2, 0x27, +0x4c, 0x78, 0x65, 0x19, 0x98, 0x45, 0x32, 0x19, 0xe0, 0xfe, 0x0d, 0x94, 0x88, 0xae, 0x56, 0x67, +0x73, 0xec, 0x21, 0xa8, 0xe5, 0x26, 0xcc, 0x00, 0xfc, 0x2f, 0xc5, 0x82, 0x4c, 0x2e, 0x9c, 0x69, +0xc5, 0xc8, 0xe2, 0xbe, 0x66, 0x1c, 0x6d, 0x9a, 0x4f, 0x95, 0x77, 0x3e, 0x06, 0xb6, 0xb9, 0xa0, +0xcd, 0x5b, 0x82, 0x33, 0xb3, 0xba, 0xd6, 0x38, 0x3d, 0x2d, 0xce, 0x16, 0x4f, 0xbf, 0xd1, 0x09, +0x80, 0x01, 0x6d, 0x71, 0xfa, 0x6e, 0xd1, 0x2c, 0xad, 0xdd, 0x8f, 0xc5, 0xbf, 0xe6, 0x29, 0xda, +0x99, 0x6f, 0x47, 0x7f, 0x67, 0x22, 0x5c, 0x02, 0xe0, 0x80, 0xe7, 0xed, 0x21, 0xea, 0x45, 0xed, +0x95, 0x57, 0xb1, 0xf8, 0xe4, 0xc8, 0xbe, 0xbe, 0x6e, 0xae, 0x37, 0x0d, 0x5c, 0x60, 0x1f, 0x5b, +0x09, 0xde, 0xcb, 0xee, 0x87, 0xdb, 0x02, 0x7b, 0xd5, 0xbc, 0x25, 0x76, 0x01, 0x25, 0x67, 0x96, +0xa4, 0xe8, 0x6f, 0x4b, 0x6f, 0x86, 0xe3, 0xdf, 0xb2, 0x17, 0x4e, 0xf2, 0xd5, 0x7f, 0x57, 0x63, +0x10, 0x5c, 0x1c, 0x62, 0xed, 0xe5, 0x7f, 0xd3, 0x09, 0x15, 0xf8, 0x5c, 0x65, 0x45, 0x10, 0x08, +0xb4, 0x15, 0xcc, 0x1f, 0xbf, 0x91, 0x2d, 0x21, 0x33, 0x5a, 0x61, 0xa5, 0xc6, 0xe5, 0x90, 0xf1, +0xb5, 0x2e, 0x53, 0x21, 0xdd, 0x27, 0x02, 0x9f, 0x1f, 0x79, 0x4c, 0x09, 0xc2, 0xb3, 0xe5, 0xd3, +0x07, 0x44, 0xe0, 0xe2, 0x50, 0xd6, 0xd7, 0x15, 0x28, 0xdb, 0xea, 0x67, 0x34, 0xbf, 0x4c, 0x4d, +0x46, 0xe6, 0x41, 0x08, 0xd4, 0x04, 0x7d, 0x54, 0xc3, 0x14, 0x72, 0x54, 0x41, 0x86, 0x5c, 0x8a, +0x0c, 0x48, 0x81, 0x55, 0x29, 0xde, 0x64, 0x0b, 0xa6, 0xe7, 0x9c, 0x90, 0x42, 0xb2, 0xd7, 0x68, +0x93, 0x95, 0x8c, 0x5e, 0xe7, 0xde, 0x54, 0x98, 0x0c, 0x5c, 0xfd, 0x54, 0x84, 0x5a, 0x75, 0x9f, +0x3d, 0xfe, 0xc1, 0x2d, 0xb6, 0x3b, 0xb7, 0x84, 0x36, 0xbd, 0xe8, 0xda, 0x59, 0xd2, 0xd6, 0x23, +0x4f, 0x01, 0x81, 0x61, 0x9e, 0xc3, 0xc2, 0xd2, 0x30, 0xce, 0xda, 0x8c, 0x96, 0x85, 0xa9, 0xb4, +0x97, 0xdc, 0x3d, 0xd2, 0x6e, 0x70, 0x06, 0x86, 0xe6, 0x1c, 0x6b, 0x0a, 0x4b, 0xbb, 0x9b, 0x02, +0x01, 0x35, 0xaf, 0x72, 0xa8, 0x55, 0x2f, 0xf5, 0x2f, 0x71, 0x56, 0x6e, 0xae, 0x18, 0x87, 0xc5, +0x6e, 0xda, 0x23, 0x92, 0xc9, 0xd3, 0x34, 0xb9, 0xe6, 0xfd, 0x35, 0x99, 0xd4, 0x5a, 0x23, 0xef, +0x4c, 0x40, 0x7d, 0xd3, 0xb3, 0x6e, 0x1f, 0xb1, 0xbc, 0x6c, 0x47, 0xe9, 0x69, 0x03, 0xe5, 0x9a, +0x49, 0x74, 0x2e, 0x5c, 0x85, 0x8a, 0xb6, 0x84, 0xca, 0xe7, 0x7b, 0x05, 0xaf, 0x88, 0xa1, 0x14, +0x3c, 0x07, 0x08, 0xb8, 0x4a, 0xbd, 0xc7, 0xf9, 0x43, 0xfb, 0xe1, 0xab, 0x11, 0xcf, 0x42, 0x89, +0x2c, 0xfb, 0x11, 0xdc, 0xd4, 0xa2, 0xa6, 0x5b, 0x73, 0x71, 0xaa, 0x85, 0xbb, 0x8e, 0x5b, 0xe6, +0xf5, 0xbd, 0xaf, 0x79, 0xb4, 0x32, 0x4e, 0x8e, 0xdb, 0x79, 0xd7, 0xc7, 0xfb, 0xfa, 0x3d, 0xc0, +0xcb, 0xa7, 0x78, 0x48, 0x8a, 0x9e, 0xbc, 0x32, 0xd1, 0x36, 0xde, 0x49, 0x9a, 0x25, 0xbf, 0x3c, +0x88, 0xd1, 0xb9, 0xd3, 0xfe, 0x00, 0x70, 0xb3, 0xe6, 0xbd, 0xde, 0x3e, 0xdc, 0x2d, 0x1c, 0x75, +0xe7, 0x17, 0x59, 0x49, 0x23, 0x43, 0x41, 0x11, 0xb7, 0xb3, 0x51, 0x6e, 0x5b, 0xf6, 0x80, 0x7f, +0x13, 0x02, 0x77, 0x37, 0x8d, 0xaa, 0xa2, 0xf2, 0x40, 0xd1, 0x8f, 0xb4, 0x15, 0x31, 0xce, 0x4c, +0x79, 0xab, 0x91, 0x7e, 0x46, 0xf4, 0xf6, 0x9c, 0xf2, 0x1a, 0x59, 0xb7, 0x66, 0x03, 0x5f, 0x96, +0x3d, 0x31, 0x4a, 0xbe, 0xfd, 0x2e, 0xb7, 0xa1, 0x19, 0x7c, 0x64, 0xb5, 0x42, 0x7e, 0xac, 0x6f, +0xa3, 0x57, 0xe0, 0x7f, 0x21, 0x4e, 0xa7, 0xf2, 0x01, 0xef, 0x44, 0x26, 0x99, 0x81, 0x0f, 0x18, +0xfd, 0x83, 0x16, 0xe0, 0xbe, 0x91, 0x90, 0xd8, 0xc0, 0x1d, 0x95, 0x93, 0xa3, 0xf0, 0xc5, 0xca, +0xbf, 0x29, 0xc7, 0xfa, 0xd2, 0xb7, 0xcd, 0xb2, 0xa1, 0xf0, 0xc2, 0x21, 0x11, 0xd5, 0xfa, 0x0b, +0x54, 0x35, 0x74, 0x08, 0x8f, 0xf7, 0x3c, 0xf9, 0x8d, 0x0c, 0x02, 0x3e, 0x39, 0xbe, 0xd2, 0x07, +0xfa, 0x44, 0x83, 0xd1, 0x37, 0x84, 0xfd, 0x22, 0xfc, 0x90, 0x1c, 0x8a, 0x7f, 0xc1, 0x9f, 0x43, +0x88, 0xda, 0xf5, 0x88, 0xa8, 0xa8, 0x28, 0x56, 0x0b, 0x06, 0x99, 0x9b, 0x30, 0x28, 0xa9, 0x5a, +0x1a, 0xe1, 0xe1, 0x91, 0xd5, 0x49, 0x6c, 0x93, 0xa4, 0x7f, 0x1f, 0xdc, 0x0d, 0xc2, 0x33, 0x1a, +0xd2, 0xfd, 0xdd, 0xb4, 0x03, 0x08, 0x2f, 0xdf, 0xee, 0x11, 0xd4, 0x28, 0x9d, 0x98, 0x37, 0xd4, +0x47, 0xae, 0x4a, 0x09, 0x4f, 0xa9, 0xb7, 0x5a, 0xc3, 0x19, 0x3a, 0xe6, 0xbb, 0xf3, 0x27, 0x5d, +0xc8, 0x8b, 0x09, 0xaf, 0x59, 0x31, 0xbe, 0x4a, 0x71, 0x47, 0x79, 0xdc, 0x60, 0xa0, 0x2c, 0x7c, +0x3a, 0x7c, 0x1d, 0x09, 0x32, 0xbb, 0xcc, 0x03, 0xad, 0x3c, 0xad, 0x82, 0xd0, 0x44, 0xc3, 0x30, +0xdc, 0xfa, 0x2f, 0x70, 0x67, 0x43, 0xe0, 0xf4, 0xc7, 0xae, 0xee, 0xbd, 0x80, 0x84, 0xc2, 0x27, +0xe2, 0xbb, 0x76, 0xef, 0xab, 0x23, 0x81, 0x68, 0x29, 0xb0, 0x4e, 0x4c, 0x98, 0x1f, 0x52, 0x12, +0x86, 0xa8, 0x94, 0xa8, 0xaf, 0x9f, 0xad, 0x72, 0x2d, 0x63, 0x31, 0x64, 0xb4, 0x32, 0xc6, 0xcc, +0xa9, 0x16, 0xe7, 0xc0, 0x1f, 0xf0, 0xe1, 0xda, 0x38, 0x0a, 0xbb, 0x10, 0x6a, 0x59, 0x2b, 0x3d, +0xa8, 0x8a, 0x0c, 0xf2, 0x0e, 0xb2, 0xda, 0x59, 0xf8, 0x48, 0xf1, 0x50, 0x3b, 0x09, 0xb6, 0xd6, +0x97, 0x08, 0x8f, 0x4e, 0xc4, 0x92, 0x5c, 0x10, 0xb1, 0xb2, 0x76, 0x64, 0x21, 0xb2, 0xc7, 0x13, +0xa5, 0xdb, 0xa0, 0xa0, 0xa4, 0xc8, 0x2f, 0xd8, 0x56, 0x05, 0x96, 0x09, 0xe7, 0x34, 0x9e, 0x79, +0xf6, 0x57, 0x05, 0x6a, 0xda, 0xe1, 0x0d, 0x69, 0xd9, 0xaf, 0xfb, 0xba, 0x17, 0x2b, 0x46, 0xb0, +0x39, 0xd1, 0xce, 0xf3, 0xaa, 0x70, 0x1b, 0x32, 0xdd, 0x86, 0x99, 0x6c, 0x97, 0xda, 0xcf, 0x65, +0x1d, 0x47, 0xed, 0x68, 0x93, 0xc9, 0x61, 0x6f, 0x84, 0x8e, 0x00, 0xdb, 0xae, 0x8d, 0x97, 0x01, +0xce, 0x07, 0x08, 0x49, 0x17, 0xf3, 0x3e, 0x74, 0x81, 0x08, 0xe4, 0xb1, 0x64, 0xd7, 0xa6, 0x25, +0x52, 0x50, 0x00, 0xfb, 0x7c, 0x96, 0x81, 0xee, 0xb7, 0x8a, 0x61, 0xbf, 0x33, 0xee, 0x33, 0x8d, +0x68, 0x19, 0xd9, 0xe8, 0x5c, 0x00, 0x30, 0xf2, 0xbd, 0x6a, 0x1c, 0x67, 0x35, 0xb3, 0xd8, 0x36, +0x1f, 0x0f, 0xd6, 0xc6, 0x96, 0x12, 0xed, 0xf9, 0xc8, 0xf8, 0xfc, 0x1a, 0x31, 0x80, 0x26, 0xba, +0xad, 0x32, 0x04, 0xd4, 0x8a, 0x32, 0x22, 0xd3, 0x19, 0x1f, 0x44, 0xf9, 0x0a, 0x77, 0x57, 0x16, +0x4f, 0x93, 0xf9, 0x78, 0x53, 0x1a, 0x20, 0xae, 0x67, 0x38, 0x5b, 0x50, 0x6e, 0x17, 0x75, 0x7f, +0xb9, 0xb6, 0x84, 0xb5, 0x95, 0xee, 0x1e, 0x1b, 0xc4, 0xdb, 0xe3, 0xa9, 0xdc, 0x68, 0xfa, 0xd2, +0xfa, 0x0a, 0x00, 0x6b, 0xac, 0x21, 0x4c, 0x51, 0xbb, 0x38, 0x78, 0x51, 0x0b, 0xa5, 0x31, 0xcc, +0x69, 0xba, 0x6c, 0x59, 0x49, 0x60, 0x5d, 0x00, 0xc8, 0x87, 0x90, 0xa4, 0xa6, 0xe2, 0xf1, 0x87, +0x29, 0xa8, 0xfc, 0xcc, 0x2c, 0xfc, 0xd5, 0xae, 0x00, 0x4f, 0x6e, 0x5d, 0x40, 0xd6, 0xc3, 0xe9, +0x42, 0xf5, 0xf7, 0x39, 0x97, 0xbe, 0x1d, 0x93, 0x66, 0x42, 0xcc, 0x13, 0x4a, 0x7e, 0x28, 0xfe, +0xc8, 0xa0, 0xec, 0x25, 0xb1, 0x60, 0x45, 0xc8, 0x1d, 0xbe, 0x22, 0x85, 0xa7, 0x44, 0xae, 0x68, +0xb3, 0x58, 0x08, 0xac, 0x23, 0x0b, 0x08, 0xeb, 0x3b, 0x65, 0xf3, 0xaa, 0x5e, 0x48, 0x33, 0xa5, +0xed, 0x3e, 0xec, 0x3b, 0x48, 0x51, 0x20, 0x5a, 0x4b, 0x04, 0x16, 0x3d, 0xd0, 0x52, 0xea, 0x07, +0x1c, 0x24, 0x64, 0x6d, 0x72, 0x62, 0x97, 0xbe, 0xd9, 0x4c, 0x53, 0x91, 0xf6, 0x62, 0x1a, 0x7a, +0x99, 0x5a, 0xe0, 0x2a, 0x6c, 0x69, 0x8c, 0xbe, 0xa4, 0x91, 0xec, 0x13, 0x93, 0x9d, 0xd3, 0x42, +0x66, 0x1e, 0x1c, 0x47, 0x35, 0x96, 0xb4, 0xc2, 0x0a, 0xc1, 0x61, 0x4d, 0xf2, 0x8b, 0x61, 0xb1, +0xa8, 0xb0, 0xe0, 0x41, 0x69, 0x7f, 0x8b, 0xf5, 0x57, 0x58, 0x68, 0xf1, 0x1d, 0xa8, 0x30, 0xba, +0xfb, 0x4f, 0x2f, 0xc3, 0x50, 0xdc, 0xe1, 0x3d, 0xae, 0xcd, 0xe6, 0x0d, 0x1f, 0xdd, 0xa4, 0x7f, +0x07, 0x72, 0x20, 0x1e, 0xf1, 0x36, 0x0d, 0x82, 0x2b, 0xac, 0xed, 0x87, 0xb9, 0x9b, 0x36, 0xbf, +0xe4, 0x13, 0xd4, 0xe0, 0xfa, 0xc5, 0xe0, 0x86, 0xe9, 0x7f, 0x18, 0x32, 0x26, 0xd3, 0x76, 0x78, +0x71, 0x0e, 0x69, 0x8d, 0xe0, 0xaf, 0x64, 0xa0, 0xde, 0x79, 0x7e, 0x0b, 0x3b, 0x82, 0xca, 0x9d, +0x12, 0xdf, 0x5e, 0x47, 0x1a, 0x85, 0xf1, 0xfd, 0x28, 0x37, 0x7b, 0x2c, 0xfa, 0x1c, 0x7a, 0xdc, +0x35, 0x97, 0xef, 0xc4, 0x1d, 0x7a, 0xb1, 0xac, 0x36, 0x08, 0xe9, 0x74, 0x05, 0x6a, 0x01, 0x0a, +0xe0, 0x55, 0x0a, 0x39, 0xc3, 0xcb, 0x9f, 0xb5, 0x47, 0xb9, 0x7b, 0xd8, 0xd9, 0x3a, 0x5e, 0xa0, +0xe4, 0x9e, 0x07, 0xd4, 0x17, 0x50, 0x7d, 0x75, 0x32, 0xff, 0xc7, 0x8a, 0x52, 0xc0, 0x0d, 0x86, +0xd0, 0x0a, 0x51, 0xcc, 0x27, 0xa4, 0x68, 0xd2, 0x74, 0xc1, 0x13, 0xa5, 0x41, 0xdd, 0x37, 0x36, +0xda, 0x32, 0x1b, 0x78, 0xcb, 0x6d, 0xc9, 0xe2, 0x0c, 0x35, 0xd2, 0x14, 0x62, 0x00, 0x77, 0x54, +0x41, 0xe3, 0xe5, 0x87, 0xa3, 0x4a, 0x1d, 0xe5, 0x18, 0x34, 0x24, 0xa5, 0xb4, 0x4a, 0x58, 0x75, +0x52, 0x2f, 0x63, 0x81, 0x64, 0x1b, 0x74, 0xf1, 0xba, 0x3a, 0xe7, 0xb3, 0xc2, 0x94, 0xf9, 0xc7, +0x1e, 0x73, 0x96, 0xe2, 0xfc, 0xf6, 0xf5, 0xaf, 0x58, 0xaa, 0xe2, 0x9a, 0x1b, 0xca, 0x14, 0x72, +0xfe, 0x58, 0xbb, 0x06, 0x8a, 0xd8, 0x40, 0xb6, 0x3e, 0xc5, 0x93, 0x28, 0x02, 0xac, 0xca, 0x03, +0xb2, 0xf7, 0xb8, 0x50, 0x43, 0xaa, 0x80, 0x12, 0x66, 0xd2, 0x43, 0xef, 0xa6, 0xa3, 0xf1, 0x3d, +0x51, 0x27, 0x5f, 0xa4, 0xf8, 0x2d, 0x11, 0x50, 0xdc, 0x7f, 0x5f, 0xc6, 0xa8, 0xab, 0x8c, 0x87, +0xc1, 0x7b, 0x3c, 0xb7, 0xd3, 0x7c, 0x3b, 0xb8, 0x16, 0x2b, 0xea, 0x00, 0x1a, 0x23, 0x4e, 0xfe, +0xdd, 0x1c, 0x4d, 0x00, 0x83, 0x45, 0xf4, 0x20, 0x72, 0x5d, 0x10, 0xe2, 0xa9, 0xf6, 0x01, 0x0c, +0x4a, 0xed, 0xbb, 0x25, 0x49, 0x73, 0xb1, 0xcd, 0xe3, 0x19, 0xa0, 0x05, 0xbd, 0x21, 0x33, 0x02, +0x80, 0x59, 0x39, 0x08, 0x3d, 0xbf, 0xc5, 0x05, 0x91, 0x3d, 0xae, 0xb7, 0xd7, 0x0d, 0x74, 0x99, +0xf4, 0xf9, 0xcd, 0x66, 0xff, 0xe7, 0xa2, 0xae, 0x0b, 0x42, 0xbf, 0x4a, 0x4c, 0x5c, 0x2b, 0x6f, +0xed, 0xfb, 0x69, 0x7a, 0x0a, 0x26, 0xd3, 0x8e, 0xbd, 0x95, 0x7f, 0x57, 0xfc, 0xee, 0x3d, 0x40, +0x04, 0xa0, 0x21, 0x1a, 0xd6, 0xa3, 0x80, 0x8d, 0xb5, 0x04, 0x99, 0x5f, 0xeb, 0x2c, 0x4d, 0x3d, +0x4e, 0x46, 0x4b, 0xae, 0x4c, 0xcf, 0x69, 0x40, 0x04, 0x3a, 0x89, 0xbf, 0xc9, 0xe4, 0xb0, 0x08, +0xfe, 0x2b, 0xab, 0x8c, 0x79, 0xc0, 0x78, 0x9f, 0x1a, 0xe0, 0xdd, 0xdb, 0x7f, 0xb7, 0xb8, 0x41, +0x31, 0xcb, 0x9f, 0x86, 0x78, 0x53, 0xca, 0xdb, 0xe2, 0x81, 0x2d, 0x32, 0x01, 0xd8, 0x16, 0xb5, +0xee, 0x80, 0x0a, 0xa9, 0x17, 0x00, 0x55, 0x5f, 0x98, 0x7a, 0x63, 0x11, 0x89, 0xed, 0x6c, 0x94, +0x6e, 0xd9, 0x47, 0xe1, 0xb0, 0xac, 0x8e, 0x4b, 0x06, 0x68, 0x1c, 0xbd, 0xca, 0xb1, 0x0a, 0x14, +0x6f, 0x82, 0xdc, 0xc8, 0xee, 0xed, 0xfa, 0x24, 0x81, 0x4a, 0x33, 0x99, 0x54, 0xa3, 0x30, 0x5c, +0xc8, 0x38, 0x51, 0xc0, 0x93, 0x24, 0x8f, 0x0a, 0x49, 0x7f, 0xaa, 0xec, 0x83, 0x32, 0x67, 0x6d, +0x35, 0xa0, 0x3d, 0xff, 0x8f, 0x23, 0xbe, 0x5c, 0x8b, 0x22, 0xef, 0x51, 0xcc, 0xd9, 0xec, 0x8e, +0x31, 0x4f, 0xe4, 0x03, 0x37, 0x68, 0x84, 0x8c, 0xed, 0xb4, 0x8b, 0xc1, 0xa8, 0x37, 0xc2, 0xe0, +0x38, 0x10, 0xb4, 0x95, 0xf4, 0x49, 0x64, 0xff, 0x59, 0x39, 0x88, 0x72, 0x89, 0xf9, 0x69, 0x6b, +0x4a, 0xb4, 0x94, 0x5e, 0xd9, 0x3f, 0x5e, 0x98, 0x88, 0x8a, 0x34, 0xba, 0xde, 0x7a, 0xa0, 0x77, +0xe6, 0x55, 0xa3, 0x8a, 0xdb, 0x61, 0xb7, 0xd0, 0x1b, 0xc1, 0x1c, 0xdb, 0x75, 0xd7, 0x2b, 0xcb, +0x9c, 0x7a, 0xf3, 0x0e, 0x8d, 0x84, 0xe1, 0x36, 0x0e, 0x2e, 0x4d, 0x24, 0xff, 0x4b, 0xcd, 0x58, +0xc5, 0xc7, 0xcb, 0x0f, 0x8b, 0x1b, 0x2a, 0xd1, 0x75, 0xc6, 0x40, 0x42, 0xfb, 0xe1, 0xe6, 0xd3, +0x54, 0x12, 0x6c, 0x4b, 0xa5, 0x96, 0x05, 0xbe, 0x79, 0x73, 0xcb, 0x0c, 0x9e, 0xe4, 0x5d, 0x5a, +0x9c, 0xb3, 0xf3, 0xf0, 0x65, 0x9c, 0x26, 0x02, 0x38, 0x0a, 0xef, 0xaf, 0x72, 0xf3, 0xad, 0x4d, +0xe3, 0x03, 0xc5, 0xb1, 0x38, 0x83, 0xf2, 0xdc, 0x29, 0x18, 0xae, 0xae, 0xcd, 0x42, 0xe9, 0xb9, +0xd0, 0xb4, 0x98, 0x5b, 0xe6, 0xb1, 0x57, 0xf1, 0xc2, 0x82, 0x40, 0x1e, 0x62, 0x73, 0x2e, 0x02, +0xd0, 0xa7, 0x99, 0xaf, 0x35, 0x0e, 0x9c, 0x44, 0x7f, 0x63, 0x4f, 0xc4, 0x4d, 0xe2, 0x3e, 0x56, +0x8a, 0x2e, 0x34, 0x0e, 0x94, 0xa9, 0x65, 0x24, 0x91, 0xf6, 0xa1, 0xff, 0xd4, 0x36, 0x73, 0x4d, +0x81, 0x86, 0x29, 0xf2, 0xb7, 0x46, 0x5d, 0xf5, 0x1e, 0x1b, 0xd3, 0x49, 0x36, 0xbc, 0xba, 0xc6, +0x71, 0x83, 0xb1, 0x21, 0x4d, 0xda, 0xe4, 0xfe, 0xf4, 0x26, 0x55, 0x58, 0x5c, 0xcd, 0x2f, 0xff, +0xd4, 0x37, 0x4c, 0x9d, 0x8f, 0xac, 0x6a, 0x93, 0x9d, 0xb1, 0x59, 0xf0, 0x31, 0x2a, 0x91, 0x45, +0xb2, 0xff, 0x05, 0x83, 0x1b, 0xc9, 0x60, 0xb1, 0xb7, 0x9e, 0xad, 0x06, 0xd5, 0x9d, 0x94, 0x6c, +0x2f, 0x6c, 0x25, 0x42, 0x3c, 0x2f, 0x30, 0x25, 0x08, 0xeb, 0xe0, 0x09, 0x83, 0x9a, 0x31, 0x2c, +0x65, 0x77, 0xf9, 0xfd, 0xb6, 0x5d, 0x89, 0xcc, 0xcd, 0xd4, 0x1e, 0x59, 0x2b, 0xb9, 0xb6, 0x04, +0x4d, 0x79, 0x7b, 0xea, 0xab, 0x03, 0x75, 0x08, 0x9c, 0xaf, 0x6c, 0xcd, 0xeb, 0xa0, 0x90, 0xca, +0x3d, 0xd4, 0xfb, 0x35, 0x31, 0x46, 0x74, 0x6e, 0xc9, 0xb3, 0xbd, 0x36, 0xe4, 0x09, 0xbf, 0xa6, +0xab, 0xc3, 0xf0, 0x70, 0x69, 0x4e, 0x48, 0xea, 0xd2, 0x7d, 0x16, 0x15, 0xdd, 0xaa, 0x1d, 0x78, +0x0a, 0x38, 0xac, 0xff, 0x6a, 0x33, 0x14, 0xfe, 0x33, 0x80, 0x6c, 0x99, 0xed, 0x39, 0x4f, 0x83, +0xda, 0x78, 0xf2, 0x2a, 0xa5, 0x81, 0x78, 0x93, 0xf1, 0x2b, 0x9b, 0x03, 0xe7, 0x1b, 0xb2, 0x7a, +0x9f, 0x59, 0xd5, 0x7d, 0x91, 0x4c, 0x82, 0x64, 0x9c, 0x6c, 0x75, 0x88, 0xe0, 0x71, 0xb4, 0x38, +0x03, 0x6e, 0x56, 0xc3, 0x47, 0x86, 0x91, 0xf5, 0xad, 0x5e, 0x37, 0x4a, 0xcc, 0xb4, 0x7b, 0xfa, +0xae, 0x77, 0x7d, 0xbe, 0x58, 0xf0, 0x89, 0x7d, 0xcf, 0xba, 0xba, 0xbb, 0x7b, 0x60, 0x77, 0x5e, +0x26, 0xd4, 0xfb, 0xd3, 0x25, 0x21, 0x54, 0x89, 0x3b, 0xba, 0x97, 0x58, 0x24, 0x60, 0x6d, 0x46, +0xf1, 0xc3, 0xaa, 0x08, 0x39, 0xe3, 0xa7, 0xbd, 0x50, 0x39, 0x5f, 0xa9, 0xc4, 0xa9, 0xc3, 0x8d, +0x99, 0xd0, 0xf8, 0x38, 0x90, 0xe9, 0xca, 0x44, 0x36, 0x64, 0x6f, 0x4b, 0x4c, 0xe8, 0xb6, 0xbd, +0x95, 0x60, 0xf4, 0xce, 0x94, 0xaa, 0x20, 0xbf, 0xbe, 0x38, 0x94, 0x3f, 0xc5, 0xc5, 0x6e, 0xb9, +0x55, 0x84, 0xa3, 0x3a, 0x1c, 0xc0, 0xaf, 0x05, 0x1e, 0x71, 0xb8, 0x41, 0x4e, 0x51, 0x1d, 0x17, +0x08, 0x7d, 0xff, 0x87, 0x35, 0xec, 0x73, 0x26, 0xfb, 0x4a, 0x6b, 0x85, 0x04, 0x11, 0x83, 0x57, +0x4a, 0xc6, 0x96, 0xf1, 0xf8, 0x41, 0x10, 0xf9, 0x90, 0x11, 0x83, 0xf0, 0x56, 0xdb, 0x42, 0xd5, +0xdb, 0xfc, 0x0f, 0x02, 0xf6, 0x41, 0xd5, 0x67, 0x1e, 0x00, 0xf7, 0x62, 0xff, 0x93, 0x70, 0xe9, +0x8f, 0x14, 0xf0, 0x6f, 0xcc, 0x33, 0x31, 0xaf, 0xd6, 0x28, 0x90, 0x2b, 0xea, 0xc1, 0xc3, 0x17, +0x9c, 0x54, 0x6b, 0x5c, 0x19, 0xca, 0x0b, 0x48, 0xad, 0x3b, 0x02, 0xbf, 0xc0, 0x9f, 0x31, 0xdd, +0x15, 0x7d, 0x95, 0x0f, 0xdc, 0x7e, 0x60, 0xda, 0x5f, 0xc0, 0x36, 0x93, 0x5a, 0xa7, 0xf8, 0xd3, +0x9e, 0xf1, 0x02, 0x26, 0x37, 0x3a, 0x73, 0x04, 0x4b, 0xe0, 0xba, 0xae, 0xf1, 0x70, 0x6e, 0x76, +0xa6, 0x4d, 0xb1, 0x91, 0xf4, 0xb8, 0xcc, 0xba, 0x77, 0xb5, 0x18, 0xc2, 0x33, 0x47, 0x19, 0xab, +0x8e, 0x0a, 0x8c, 0x07, 0x89, 0x56, 0xc9, 0x21, 0xcd, 0x46, 0x80, 0xef, 0x83, 0x0e, 0xfb, 0xd4, +0xe9, 0x03, 0x0b, 0xe8, 0xbc, 0x88, 0x8a, 0x30, 0x7a, 0xfc, 0x6b, 0xab, 0x70, 0xf3, 0xfb, 0xb5, +0xe2, 0x6f, 0x71, 0x12, 0x75, 0xb8, 0x9b, 0x8d, 0x86, 0x5d, 0xbb, 0xba, 0x5f, 0x80, 0x99, 0xbe, +0x8c, 0x8f, 0x50, 0xfe, 0x7d, 0xb8, 0xfb, 0x19, 0xa8, 0xd6, 0x15, 0x01, 0x53, 0x48, 0xe6, 0x94, +0x4d, 0x2a, 0x8e, 0x7c, 0xb8, 0x87, 0x18, 0xfa, 0x37, 0x14, 0x32, 0x78, 0x5a, 0x82, 0x05, 0x18, +0x2b, 0x8c, 0x67, 0x39, 0x69, 0x5d, 0xd0, 0x09, 0xa5, 0x60, 0x73, 0xdf, 0x0b, 0x5b, 0x89, 0x22, +0xe3, 0xc3, 0x6f, 0x36, 0x40, 0x72, 0x99, 0xb3, 0xcc, 0xe8, 0x6a, 0x01, 0x03, 0x9d, 0x03, 0x1b, +0xdd, 0xfb, 0xae, 0xcd, 0x7c, 0xf1, 0xc5, 0x71, 0xe9, 0x8c, 0xb3, 0x59, 0x41, 0xc6, 0x86, 0x1f, +0xda, 0xfa, 0x64, 0x46, 0x35, 0x5f, 0xeb, 0xcc, 0xcf, 0x31, 0x22, 0xf7, 0xbf, 0x98, 0x1c, 0x20, +0x46, 0xeb, 0xcd, 0x72, 0x52, 0xc1, 0xd7, 0xd4, 0xf0, 0xe5, 0x8e, 0x6c, 0xfc, 0xe2, 0x69, 0x5f, +0xe0, 0xcb, 0xec, 0xe2, 0xfe, 0x19, 0xc4, 0x06, 0xd7, 0x8d, 0xc5, 0xff, 0x52, 0x5f, 0x95, 0x69, +0x7d, 0x94, 0xda, 0x31, 0x75, 0xf9, 0xd0, 0xc6, 0xa2, 0x8c, 0x1b, 0x5c, 0x2a, 0xc2, 0x21, 0x3b, +0xbb, 0x38, 0x80, 0x02, 0x69, 0x1b, 0xee, 0x28, 0x9f, 0xdd, 0x6b, 0x1a, 0x53, 0xde, 0x0c, 0xd8, +0xc2, 0xa5, 0x81, 0x50, 0xc8, 0xfb, 0x84, 0x13, 0xf0, 0x17, 0xca, 0x93, 0xcc, 0x9b, 0x56, 0x5f, +0xdb, 0xca, 0x4e, 0xcf, 0x1c, 0x44, 0x60, 0xa8, 0x05, 0x8c, 0xd0, 0x18, 0x1e, 0xb1, 0x73, 0x3c, +0x93, 0x4d, 0xd6, 0x6b, 0x6d, 0x67, 0x02, 0x54, 0xcd, 0x0e, 0x84, 0x48, 0xbd, 0x35, 0x6f, 0x2a, +0x9f, 0x10, 0x40, 0x10, 0xf1, 0xb6, 0x3b, 0xf5, 0x14, 0xc2, 0x12, 0x1d, 0x8e, 0x22, 0x92, 0xf7, +0xb6, 0x92, 0xe6, 0x06, 0x1f, 0xe1, 0x59, 0x28, 0x03, 0xb9, 0x96, 0x38, 0xeb, 0xf1, 0xd7, 0x17, +0x62, 0xbe, 0x15, 0x5b, 0x42, 0x6f, 0x17, 0xfc, 0x8c, 0x58, 0x75, 0x6f, 0x6d, 0x02, 0xda, 0x03, +0x7a, 0xd7, 0xb5, 0x77, 0x82, 0x84, 0x22, 0x43, 0x6a, 0x2d, 0xd1, 0x32, 0x3e, 0x74, 0x92, 0xa4, +0x94, 0x75, 0x58, 0x02, 0x90, 0xc1, 0x03, 0x76, 0x9a, 0xa1, 0x80, 0x6d, 0x98, 0xa5, 0x97, 0xa2, +0x3e, 0xfa, 0xf2, 0x0a, 0x7d, 0x31, 0xca, 0x43, 0xe2, 0xba, 0x46, 0x2d, 0x7e, 0x83, 0xe5, 0xaf, +0x2e, 0x07, 0x1e, 0xf9, 0xb5, 0xdf, 0x5d, 0x4e, 0x90, 0xc8, 0x1e, 0x03, 0x22, 0x67, 0x6e, 0x25, +0x22, 0x48, 0xa1, 0x07, 0xfe, 0xa7, 0xa6, 0x8f, 0xee, 0x76, 0xd3, 0x8c, 0x23, 0x3d, 0xbe, 0x26, +0x6a, 0x0c, 0x6a, 0xa8, 0x1e, 0x6e, 0x19, 0x9e, 0x0b, 0xc6, 0x8b, 0x73, 0x37, 0x2d, 0x13, 0x56, +0x48, 0xc0, 0xd9, 0x69, 0x1d, 0x02, 0xfa, 0x72, 0xca, 0x67, 0x8e, 0x29, 0x9b, 0x59, 0x5c, 0xa1, +0x35, 0xf6, 0xad, 0x97, 0x81, 0x50, 0x49, 0xcd, 0xd6, 0x70, 0xb6, 0x8d, 0x67, 0x1f, 0x15, 0x62, +0xf3, 0x62, 0x8e, 0x70, 0xda, 0xe0, 0xe2, 0x7c, 0x26, 0xd2, 0x8b, 0x10, 0xad, 0x3c, 0x87, 0x46, +0x82, 0x17, 0x38, 0xcf, 0x58, 0xa4, 0xfc, 0x68, 0xad, 0xb7, 0x3d, 0x75, 0x8c, 0x36, 0xfc, 0x81, +0xf3, 0x9d, 0x25, 0x75, 0x48, 0x35, 0xd3, 0x18, 0x8f, 0x1e, 0x44, 0x3b, 0x0e, 0x74, 0x7e, 0xaa, +0x2b, 0x0a, 0x71, 0x77, 0x63, 0xb4, 0xc4, 0xfd, 0x3b, 0x03, 0xdf, 0x07, 0x7a, 0xdb, 0x82, 0xfb, +0xd4, 0x2a, 0xe3, 0x3b, 0xce, 0x9d, 0x9e, 0x82, 0x44, 0x40, 0xea, 0x0f, 0x8c, 0xc8, 0xf1, 0xac, +0x81, 0x6d, 0xd7, 0x9c, 0x48, 0xdd, 0xf0, 0x5c, 0x27, 0x85, 0x2f, 0xfa, 0xa8, 0x4d, 0xc4, 0x15, +0xbc, 0x6c, 0x8b, 0x4e, 0xf9, 0x27, 0xe0, 0x30, 0x08, 0xf6, 0xd5, 0x57, 0xf2, 0x5c, 0x53, 0x21, +0xde, 0xc0, 0x5d, 0x0a, 0x3b, 0x8c, 0xe8, 0xf6, 0xf5, 0xb0, 0xdc, 0xf9, 0xa1, 0x22, 0x90, 0x14, +0x21, 0x12, 0x02, 0xbd, 0xb8, 0xa9, 0x12, 0xc2, 0x64, 0x6b, 0x4e, 0x15, 0x10, 0x0b, 0xd3, 0x52, +0x84, 0xe6, 0x6e, 0xc9, 0x55, 0x5d, 0xae, 0xf8, 0x44, 0xaf, 0x34, 0xd7, 0x9f, 0x89, 0xff, 0xa3, +0x08, 0x68, 0x5e, 0x9e, 0x11, 0x0a, 0x80, 0xb4, 0xef, 0x9f, 0xc9, 0x5a, 0x0e, 0xb9, 0x78, 0xc6, +0x1e, 0xd8, 0x93, 0xb0, 0xde, 0x0a, 0x36, 0x7a, 0x93, 0x1b, 0xd2, 0x8d, 0x4e, 0x36, 0x7b, 0xb9, +0x48, 0x80, 0xc3, 0x68, 0xf6, 0x17, 0xa5, 0xaa, 0xbe, 0x1a, 0xe3, 0xdc, 0x72, 0x56, 0xeb, 0x2c, +0x89, 0x0f, 0x70, 0x1a, 0x1b, 0x95, 0xe3, 0xcd, 0xdc, 0x17, 0x5e, 0x46, 0xca, 0xee, 0xc1, 0x73, +0xfd, 0xbb, 0x48, 0x03, 0x10, 0xc0, 0x31, 0xe2, 0xc1, 0x48, 0x03, 0x55, 0x1b, 0xcd, 0x4d, 0x04, +0x28, 0x0e, 0xea, 0xe0, 0x86, 0x77, 0x31, 0x0e, 0xc2, 0x54, 0xd1, 0x09, 0x96, 0x6a, 0xa0, 0x90, +0x5d, 0x0c, 0x44, 0x30, 0x9e, 0xc1, 0xab, 0x47, 0xc4, 0x77, 0x6d, 0x86, 0x6f, 0x36, 0xb3, 0x4c, +0xa8, 0x17, 0x58, 0xf2, 0xc3, 0x92, 0xab, 0x6e, 0x8a, 0x84, 0xba, 0x2c, 0x74, 0x93, 0x9c, 0x0a, +0x6b, 0xf9, 0x3e, 0x25, 0x82, 0x1b, 0x89, 0x4b, 0xf4, 0xad, 0x31, 0x64, 0xc1, 0x13, 0x0e, 0xa7, +0x00, 0xea, 0xd8, 0x32, 0xf5, 0x9c, 0x0f, 0x00, 0x0a, 0xfe, 0xda, 0x21, 0xf9, 0x16, 0x12, 0x3f, +0x13, 0xad, 0xb6, 0xca, 0x4c, 0x5d, 0x94, 0x7f, 0xf1, 0xdf, 0xcc, 0xdd, 0xb0, 0xec, 0x3f, 0x2a, +0xea, 0x3a, 0x63, 0x98, 0x0b, 0x7c, 0xfd, 0xc6, 0x62, 0xa6, 0x59, 0x1c, 0x39, 0x2e, 0xff, 0xe5, +0xda, 0xd2, 0xd2, 0xf3, 0x81, 0xed, 0xe1, 0x92, 0x65, 0x65, 0x9a, 0xb4, 0x57, 0x1f, 0xae, 0x42, +0xa2, 0xa6, 0x94, 0xe4, 0xf7, 0xc3, 0x45, 0x4d, 0xa4, 0x69, 0x40, 0xe3, 0x11, 0x83, 0xa1, 0x7f, +0xac, 0xfd, 0x0f, 0xe3, 0x1c, 0xa5, 0xb6, 0x40, 0x3d, 0xb0, 0x3a, 0x2d, 0x58, 0xd2, 0x99, 0x5e, +0xad, 0xc2, 0x55, 0x0f, 0x9b, 0x83, 0x52, 0x13, 0x0a, 0x3b, 0xeb, 0x6f, 0x21, 0xc9, 0x18, 0x7e, +0xd0, 0xe4, 0x37, 0x70, 0xbe, 0xa8, 0x20, 0x32, 0x67, 0xc2, 0x63, 0xcd, 0x62, 0x38, 0x0e, 0x34, +0xc6, 0x8a, 0x57, 0x63, 0x5a, 0xad, 0x11, 0xe8, 0x95, 0x56, 0x31, 0x90, 0x61, 0xe3, 0x57, 0x96, +0xac, 0x67, 0x08, 0x38, 0x4b, 0xc2, 0xde, 0xd8, 0xec, 0xbe, 0x7b, 0xe5, 0x78, 0x26, 0x7b, 0x41, +0xe0, 0x46, 0xad, 0x07, 0x8d, 0xe9, 0xda, 0xd2, 0x38, 0x9a, 0x45, 0x18, 0x7e, 0x4b, 0x33, 0x16, +0xa2, 0x32, 0xe8, 0x5a, 0x47, 0x30, 0x7e, 0xe9, 0x4a, 0xd4, 0x53, 0x09, 0xab, 0xcc, 0x00, 0xc1, +0x48, 0xa6, 0xae, 0x90, 0x25, 0x88, 0x77, 0x02, 0xd7, 0x8d, 0x91, 0xae, 0x44, 0x00, 0x13, 0x8f, +0x00, 0x84, 0xc1, 0x53, 0xe9, 0x5a, 0x40, 0xb5, 0x73, 0xd0, 0x6e, 0xad, 0x73, 0x68, 0x4e, 0x8e, +0x89, 0x68, 0x9e, 0xed, 0x7f, 0x84, 0xf2, 0x1c, 0x26, 0x0e, 0x6b, 0x8b, 0x6f, 0xa1, 0x4d, 0x32, +0x1d, 0x4e, 0x61, 0xf1, 0x38, 0x33, 0x85, 0xa9, 0x63, 0xe5, 0x0d, 0x43, 0xd4, 0xdb, 0xca, 0x0d, +0xa4, 0xd9, 0x4f, 0xb6, 0xfc, 0xdc, 0xce, 0xa2, 0x62, 0x0e, 0x31, 0xf7, 0xee, 0x97, 0x3c, 0xd1, +0x5f, 0x87, 0x2b, 0x9c, 0x5e, 0xb0, 0x1b, 0x69, 0x46, 0x23, 0xc4, 0x89, 0x28, 0xa7, 0x37, 0xdc, +0x7a, 0x79, 0xe1, 0x61, 0x34, 0x34, 0x09, 0xdf, 0xdd, 0xbd, 0x14, 0x60, 0x76, 0x1b, 0x26, 0xac, +0x8c, 0x9d, 0x5f, 0x06, 0xfb, 0xea, 0x9d, 0xaf, 0x9e, 0x37, 0xe8, 0x7b, 0xb2, 0x04, 0x52, 0x8d, +0xe0, 0xea, 0x7a, 0xb1, 0xe4, 0xaf, 0x00, 0xfc, 0x21, 0x75, 0x8b, 0xbe, 0x32, 0xe5, 0x4e, 0x98, +0xcd, 0x6a, 0x6b, 0xcc, 0xc2, 0xf8, 0xdf, 0xda, 0x38, 0xf4, 0x84, 0xa7, 0x7c, 0x26, 0xec, 0x2b, +0x33, 0x19, 0x97, 0x42, 0x56, 0xd6, 0x42, 0xa3, 0x48, 0xb7, 0x6f, 0xea, 0x5f, 0x82, 0x94, 0xb5, +0xd2, 0x05, 0xc7, 0x13, 0x6f, 0x85, 0x90, 0x0a, 0x4b, 0xcd, 0x82, 0x96, 0x13, 0x1c, 0xb2, 0xc9, +0x4d, 0xf6, 0x3e, 0xee, 0xc8, 0xb2, 0x79, 0xad, 0x31, 0xcd, 0x85, 0xbd, 0x6d, 0xcc, 0xb4, 0xfb, +0x71, 0x6e, 0x85, 0x09, 0x4c, 0x44, 0xce, 0x3f, 0x0b, 0x25, 0xcd, 0xb1, 0x37, 0x78, 0x91, 0x65, +0x54, 0xbb, 0x52, 0xa9, 0x54, 0xcb, 0xcd, 0x21, 0x3d, 0x7c, 0x11, 0x18, 0xb7, 0xd3, 0x28, 0x0b, +0xb2, 0xa7, 0x2b, 0x3e, 0xd2, 0x27, 0xb5, 0xd6, 0x51, 0x0c, 0x43, 0x1a, 0xa7, 0x33, 0x07, 0xca, +0xf4, 0x8e, 0x22, 0x02, 0xff, 0xb5, 0x45, 0xf9, 0x43, 0x7b, 0xb4, 0x49, 0x3f, 0xe7, 0xa9, 0x13, +0x4a, 0x75, 0x64, 0x00, 0xa9, 0x94, 0x39, 0xa3, 0xd0, 0x49, 0x46, 0xbe, 0x3a, 0xe5, 0x77, 0x0f, +0x31, 0xe1, 0x05, 0xcd, 0x9f, 0xdc, 0xe9, 0x27, 0xab, 0xe7, 0x55, 0xcf, 0x65, 0x4c, 0x7b, 0x15, +0x5a, 0x62, 0x43, 0xc7, 0x6f, 0x14, 0x40, 0x60, 0x5d, 0x6f, 0xa4, 0x4a, 0xe6, 0xaa, 0xc1, 0x5c, +0x0a, 0x8b, 0xe9, 0x31, 0xf9, 0x75, 0xed, 0x2c, 0x6f, 0x0a, 0x03, 0x32, 0x8b, 0xbe, 0x04, 0xdc, +0xbe, 0xeb, 0x09, 0x2c, 0xcc, 0x6a, 0x02, 0x15, 0x8f, 0x5e, 0x7a, 0x0f, 0x13, 0x48, 0x9d, 0x41, +0xf9, 0x72, 0xdb, 0x32, 0x44, 0xb2, 0x77, 0x42, 0x4a, 0x39, 0xf7, 0xf6, 0x2f, 0x16, 0xd1, 0x8f, +0xf6, 0xcd, 0xae, 0x91, 0x6b, 0x06, 0xf3, 0x0c, 0x93, 0xd1, 0x95, 0x73, 0xf8, 0x26, 0xd4, 0x92, +0xdf, 0x6a, 0x38, 0x4d, 0x2f, 0x7d, 0xb6, 0x07, 0x4d, 0xd6, 0x6c, 0x97, 0x49, 0xac, 0x61, 0x3b, +0xb1, 0xe9, 0x32, 0x04, 0x3f, 0x25, 0x48, 0xaa, 0xc1, 0x6d, 0xd3, 0x4e, 0x95, 0x24, 0x45, 0x59, +0x2d, 0x91, 0x74, 0x5e, 0xbb, 0xe8, 0x9e, 0x9a, 0x68, 0x14, 0x6d, 0x54, 0x19, 0x76, 0x41, 0x6e, +0xc5, 0x86, 0x27, 0xd9, 0x9f, 0x7a, 0xab, 0x76, 0x12, 0xdf, 0x58, 0xa9, 0x7c, 0xb7, 0xdf, 0xff, +0xee, 0x04, 0x27, 0xa2, 0xcb, 0x39, 0xc0, 0xbe, 0xab, 0x50, 0xce, 0xee, 0xec, 0xac, 0x89, 0x32, +0x2a, 0x25, 0xd6, 0x1d, 0x20, 0xfe, 0x3a, 0x68, 0x4b, 0xb2, 0x4f, 0xab, 0x06, 0x8e, 0x59, 0x2d, +0x08, 0xf1, 0x4e, 0xfc, 0xaa, 0x09, 0x73, 0xc0, 0x89, 0x37, 0xed, 0xd7, 0x84, 0x7d, 0xde, 0x17, +0x3c, 0x91, 0xff, 0x72, 0xbf, 0x7c, 0xeb, 0x61, 0xc9, 0x9b, 0xb5, 0x43, 0x1d, 0xc9, 0x91, 0xff, +0x08, 0x77, 0xa8, 0xc1, 0xa8, 0x4d, 0x3d, 0xc3, 0xcb, 0x17, 0xf2, 0x0b, 0x39, 0x15, 0xa2, 0x83, +0x38, 0x22, 0x57, 0x6e, 0x5a, 0xb1, 0x06, 0x65, 0xd9, 0xf7, 0xf5, 0xc0, 0x4b, 0xd2, 0x30, 0x56, +0x00, 0x97, 0xfe, 0x5d, 0xd2, 0xdc, 0x0f, 0x0b, 0x5e, 0x5e, 0xd8, 0x90, 0x0d, 0x9f, 0x7a, 0xa3, +0x0c, 0x6e, 0x5a, 0x2b, 0xb1, 0x20, 0x80, 0x20, 0xd1, 0xc9, 0x89, 0x68, 0xc0, 0xa6, 0xf9, 0x48, +0xd1, 0x75, 0xc7, 0xe4, 0x5e, 0x5e, 0xc8, 0x1a, 0x95, 0x7c, 0xd1, 0x6b, 0xd1, 0x8a, 0xec, 0x83, +0x3d, 0x24, 0x69, 0x51, 0x36, 0x7c, 0x3e, 0x31, 0x22, 0x6f, 0xf0, 0xec, 0x4b, 0x58, 0x76, 0xc6, +0x46, 0xee, 0xc6, 0xc8, 0x36, 0x7f, 0x16, 0xfe, 0x58, 0x85, 0x1e, 0xc5, 0xec, 0x04, 0x88, 0xf1, +0x3b, 0x04, 0x30, 0xd4, 0xa6, 0xd0, 0x75, 0x37, 0x61, 0x77, 0x6b, 0x7e, 0xda, 0xa2, 0x5c, 0xfe, +0x14, 0x89, 0x17, 0x87, 0x12, 0x44, 0x85, 0xdd, 0x82, 0xfe, 0x9a, 0x4e, 0xb6, 0x08, 0x66, 0xa5, +0x8d, 0x3d, 0x76, 0x66, 0xe8, 0xf2, 0xac, 0x89, 0xce, 0xd9, 0xcb, 0x9f, 0xfb, 0x89, 0x7c, 0xde, +0xa5, 0x7b, 0x9e, 0x66, 0x5e, 0xc1, 0x0b, 0xb3, 0x7c, 0xb7, 0x97, 0x2b, 0x2e, 0xb0, 0x83, 0x53, +0x8d, 0xc7, 0x63, 0x96, 0x07, 0xa9, 0xb7, 0xb3, 0x82, 0x8d, 0xcb, 0x8f, 0xb3, 0xae, 0x5b, 0x84, +0x15, 0xd3, 0xd8, 0xcb, 0xb5, 0x1e, 0x36, 0x61, 0x2c, 0xa1, 0x8b, 0x01, 0xad, 0xbb, 0xee, 0xea, +0xc3, 0xb0, 0x76, 0xe4, 0x36, 0x28, 0x17, 0x93, 0x01, 0xca, 0x16, 0xdb, 0x9a, 0x1b, 0x3a, 0xc5, +0xc1, 0xc9, 0xba, 0x8f, 0xff, 0xef, 0x38, 0x1f, 0x92, 0x86, 0x92, 0x22, 0xe1, 0x27, 0xcb, 0x82, +0x65, 0x1a, 0xad, 0xbe, 0x36, 0x55, 0x9f, 0x74, 0x85, 0x15, 0xb7, 0x94, 0x7a, 0xa4, 0x86, 0x04, +0xe4, 0x6d, 0xb2, 0xbe, 0xf0, 0x7a, 0xd0, 0x79, 0x4d, 0xda, 0x7a, 0x25, 0x4d, 0x5c, 0xde, 0x52, +0x7d, 0xf7, 0x61, 0xb5, 0xbd, 0x79, 0x38, 0x38, 0x35, 0x80, 0x03, 0xb7, 0xf4, 0x91, 0xd9, 0x45, +0xb5, 0xd3, 0xba, 0x0b, 0x6f, 0x5b, 0xcc, 0xff, 0xfa, 0xb4, 0xdc, 0xa3, 0xec, 0x1e, 0xbb, 0x8e, +0xa3, 0xe6, 0x38, 0xbb, 0x23, 0x8f, 0xf4, 0x3f, 0xae, 0x65, 0x7a, 0xf9, 0x95, 0xab, 0x94, 0x0b, +0x69, 0x47, 0x32, 0x69, 0xa5, 0x09, 0x8a, 0xc7, 0x49, 0xac, 0xc4, 0x89, 0xb5, 0xa3, 0xa3, 0x47, +0x92, 0xa2, 0x27, 0xb5, 0x0f, 0x18, 0x6c, 0x61, 0x7f, 0x7a, 0x0e, 0x90, 0x68, 0xf8, 0xb7, 0xa5, +0x70, 0x61, 0xc0, 0x08, 0x77, 0x2f, 0x23, 0x5c, 0x59, 0x9e, 0x82, 0x1d, 0xbd, 0x0c, 0xf3, 0x8a, +0x45, 0xfc, 0x7b, 0x38, 0x86, 0xf0, 0x42, 0x33, 0xff, 0xa4, 0x6d, 0xcd, 0xde, 0xdd, 0x2e, 0x8e, +0x5a, 0x6b, 0xb2, 0x02, 0x22, 0xa9, 0xe5, 0x8d, 0x53, 0xf9, 0xb4, 0x1d, 0xd5, 0x90, 0x04, 0x4d, +0x1d, 0x04, 0x7f, 0x42, 0x1f, 0x53, 0x78, 0x28, 0x79, 0x77, 0xe8, 0xa0, 0x9c, 0x63, 0x9e, 0x7a, +0xf2, 0x22, 0x28, 0x91, 0x30, 0xd5, 0x09, 0x1e, 0x94, 0x5c, 0x34, 0x13, 0x23, 0x28, 0xa2, 0xa7, +0x1e, 0xb9, 0x67, 0x15, 0x3c, 0x96, 0x7e, 0xc8, 0xae, 0x75, 0x7b, 0xbb, 0x1b, 0xc5, 0xff, 0x2c, +0x94, 0x75, 0xd4, 0x29, 0x38, 0x7d, 0xc4, 0x2f, 0xcf, 0xd4, 0x06, 0xbd, 0x31, 0x6e, 0x22, 0xb4, +0x2a, 0x2d, 0x02, 0x88, 0x63, 0x62, 0x4f, 0x68, 0xe3, 0x16, 0x1c, 0x09, 0x89, 0xd4, 0x52, 0x00, +0xd1, 0x6b, 0xee, 0x62, 0x16, 0xb8, 0xc7, 0x2f, 0x7f, 0x85, 0x5e, 0xfc, 0xa1, 0x19, 0x77, 0x2c, +0xe7, 0x80, 0x2c, 0xc2, 0x89, 0xfd, 0x90, 0x5c, 0xf6, 0x82, 0xff, 0x62, 0xf1, 0x70, 0x02, 0x40, +0xe1, 0x3b, 0x8b, 0xfa, 0x14, 0x58, 0xfd, 0x8e, 0x6a, 0x98, 0xaa, 0x4b, 0x23, 0x24, 0x2a, 0x17, +0x76, 0x34, 0xa2, 0xe1, 0x0f, 0xaf, 0x0e, 0x93, 0x55, 0x96, 0x27, 0x1f, 0xe9, 0xfe, 0xa1, 0xd8, +0x82, 0xdd, 0x36, 0xec, 0xa6, 0x81, 0x3e, 0xd1, 0xeb, 0x02, 0xfb, 0xc8, 0x3d, 0x7f, 0x1e, 0xfb, +0x84, 0xa7, 0x33, 0x51, 0xa1, 0x41, 0xa9, 0x38, 0xb0, 0xc9, 0x3c, 0x5b, 0x72, 0x3b, 0x20, 0xb0, +0xb1, 0xd1, 0x23, 0x20, 0x72, 0x49, 0x10, 0xd5, 0xd2, 0x58, 0x4c, 0x9e, 0x26, 0x3c, 0x88, 0xf2, +0x8c, 0x53, 0x94, 0xc8, 0x5d, 0x34, 0x86, 0xc3, 0xcd, 0xf8, 0xed, 0x78, 0x86, 0xa6, 0x4d, 0x42, +0xc0, 0x41, 0x63, 0x21, 0x95, 0x81, 0xc4, 0x85, 0x09, 0x09, 0x33, 0x30, 0x27, 0x79, 0x7b, 0x76, +0x06, 0x01, 0x57, 0x26, 0x25, 0x71, 0x1c, 0x98, 0x34, 0x63, 0xbc, 0x05, 0x74, 0x2a, 0x01, 0x29, +0x8e, 0x84, 0xf5, 0x0d, 0x61, 0x39, 0xe7, 0xb7, 0x7b, 0x8f, 0x32, 0x6c, 0x6d, 0xed, 0x7a, 0xa8, +0xc9, 0x76, 0xb1, 0x53, 0x0a, 0x84, 0xea, 0x54, 0xcb, 0xad, 0xad, 0xc5, 0x34, 0xe1, 0xd0, 0x34, +0xae, 0x04, 0x76, 0xa3, 0x8b, 0xc8, 0xb1, 0x96, 0x4c, 0xab, 0x32, 0xf2, 0x9a, 0x15, 0x62, 0xa3, +0xd9, 0xf5, 0x60, 0x15, 0xa4, 0x61, 0x80, 0x79, 0xcc, 0x2b, 0x48, 0xf2, 0xac, 0x23, 0xb7, 0x6e, +0x3f, 0xf1, 0x73, 0x91, 0x9e, 0xe2, 0x43, 0x03, 0x04, 0x6d, 0x9b, 0x24, 0x6a, 0x05, 0xe7, 0xee, +0x6d, 0xe8, 0x9a, 0xaf, 0x89, 0x7c, 0x51, 0x6b, 0xb9, 0xc2, 0xa1, 0xde, 0x6a, 0xe6, 0x46, 0xe5, +0x31, 0xb2, 0x98, 0x42, 0xe6, 0x6f, 0xb4, 0x4f, 0xad, 0xc1, 0x3a, 0xb3, 0x20, 0x5f, 0xfb, 0x6a, +0x53, 0x29, 0x7d, 0xb8, 0x41, 0x76, 0x2f, 0x05, 0x42, 0xb3, 0x0a, 0xca, 0x3e, 0xe9, 0x33, 0x99, +0xff, 0x55, 0x6e, 0xad, 0x21, 0x2a, 0xb2, 0x20, 0xa5, 0x1f, 0x84, 0x82, 0x38, 0xfc, 0x47, 0x09, +0xb5, 0x8f, 0xf8, 0x1a, 0x78, 0x78, 0x89, 0x15, 0x3b, 0xf3, 0x79, 0xd6, 0x03, 0x59, 0x1c, 0x36, +0xfd, 0x72, 0xbe, 0xe9, 0xd9, 0xdf, 0x62, 0x39, 0x62, 0x2f, 0xe6, 0xbf, 0xce, 0xa1, 0x37, 0x00, +0x4e, 0xc5, 0xdb, 0x0e, 0xaa, 0x2a, 0xeb, 0x03, 0xc6, 0x68, 0x5f, 0x5c, 0x45, 0x41, 0xd6, 0x13, +0x71, 0x42, 0xf2, 0xe6, 0xcb, 0x70, 0xfd, 0x7a, 0x57, 0xaa, 0x13, 0xe9, 0x56, 0x09, 0xbe, 0x10, +0xbd, 0x8c, 0x7c, 0xca, 0xd3, 0xab, 0xb1, 0xbe, 0x4b, 0x5c, 0x5e, 0xb3, 0x32, 0xaf, 0x06, 0xc5, +0xdb, 0xc5, 0x11, 0xbb, 0xe9, 0x16, 0x53, 0x52, 0xee, 0xa6, 0xac, 0xfb, 0x28, 0xd1, 0xc7, 0xb3, +0xac, 0x9e, 0xda, 0x03, 0xc3, 0x3a, 0xeb, 0x58, 0x28, 0xfd, 0xa0, 0x3a, 0x9d, 0x3c, 0xfe, 0x47, +0xfa, 0xe8, 0x7d, 0x7e, 0xf2, 0x7c, 0x78, 0x7d, 0xc7, 0xda, 0x4d, 0xba, 0x17, 0xc7, 0xe1, 0x4e, +0x53, 0x03, 0x68, 0xfa, 0x8d, 0xb3, 0xae, 0x32, 0xba, 0x0d, 0xe0, 0xf4, 0xe7, 0x05, 0xc1, 0x9f, +0xdf, 0x68, 0xdd, 0x68, 0x66, 0xf8, 0x08, 0xb8, 0xf0, 0x23, 0x2e, 0x2e, 0x92, 0x56, 0x63, 0x14, +0xae, 0x94, 0x3d, 0xb2, 0x1f, 0xff, 0x67, 0x05, 0xdf, 0x2c, 0x9f, 0x0f, 0x90, 0x4a, 0x7e, 0xe0, +0xc0, 0xce, 0x03, 0xe8, 0xf9, 0x71, 0x25, 0x9c, 0xc5, 0x5e, 0x25, 0x86, 0xea, 0x01, 0x70, 0x3f, +0xda, 0xff, 0x4e, 0x1a, 0x4a, 0xd6, 0x51, 0xc9, 0x54, 0xeb, 0x1c, 0x55, 0x76, 0x60, 0x66, 0x63, +0xaa, 0xb3, 0xb0, 0x00, 0xcd, 0xda, 0x69, 0xe1, 0xbd, 0xb2, 0x98, 0xd0, 0xca, 0xd3, 0xfe, 0xa3, +0x5b, 0xbc, 0x9d, 0x79, 0x12, 0xf2, 0xce, 0x4a, 0xbf, 0x1b, 0x6e, 0xdd, 0xb1, 0xa6, 0x7b, 0x11, +0x1e, 0xe2, 0xc4, 0x32, 0x8f, 0xb9, 0xfa, 0xce, 0x0a, 0xcb, 0x1c, 0x36, 0x40, 0x87, 0x97, 0x77, +0x35, 0x2c, 0x82, 0xe3, 0x5e, 0x36, 0x8d, 0x0e, 0x3d, 0xff, 0x8c, 0x43, 0x04, 0x59, 0xca, 0x36, +0x7d, 0xfd, 0xff, 0x63, 0x5c, 0x08, 0x17, 0xa8, 0x0c, 0xea, 0xb4, 0x21, 0xd8, 0x59, 0xf3, 0xd4, +0x6b, 0x00, 0x61, 0xba, 0x00, 0x46, 0x40, 0x6b, 0x8d, 0xcd, 0xc4, 0x1e, 0x16, 0x80, 0x53, 0x0f, +0xa4, 0xe4, 0x94, 0x05, 0x9d, 0x95, 0xef, 0x0a, 0xc0, 0x96, 0x98, 0x9f, 0x03, 0xfe, 0xb2, 0xe9, +0xff, 0x67, 0x34, 0x38, 0x16, 0x57, 0x77, 0xf6, 0xe6, 0xa5, 0x66, 0xb8, 0xa3, 0xca, 0xa0, 0x39, +0x45, 0xc9, 0x42, 0xdf, 0xca, 0x6f, 0x70, 0x3b, 0xef, 0x5b, 0x36, 0x1d, 0x27, 0xe7, 0xc5, 0x2f, +0x46, 0xd7, 0x64, 0x0f, 0x73, 0x11, 0x3b, 0x01, 0xce, 0x7d, 0xce, 0x86, 0x0b, 0xc0, 0x1e, 0xef, +0x06, 0x30, 0x95, 0x2b, 0x01, 0x09, 0xbc, 0x57, 0xb7, 0x0d, 0x9f, 0xd2, 0xef, 0xeb, 0x4c, 0xa1, +0x6b, 0xfd, 0xbf, 0x7c, 0x8a, 0xcf, 0xa6, 0xab, 0xc9, 0x57, 0x54, 0x2a, 0x45, 0x9c, 0xcb, 0x59, +0x61, 0xed, 0x2c, 0xd2, 0xa1, 0xf4, 0x58, 0x0c, 0xa1, 0x5a, 0xe7, 0x55, 0x7a, 0x2c, 0x33, 0x45, +0x45, 0x7b, 0x66, 0x79, 0x2e, 0x5b, 0x83, 0xa7, 0xbc, 0x42, 0x17, 0x09, 0xe6, 0x2f, 0x80, 0xb1, +0xb2, 0xf7, 0x6a, 0xd4, 0xff, 0xad, 0x17, 0x80, 0x24, 0x33, 0xbf, 0x8b, 0x34, 0x59, 0xf0, 0xef, +0xc2, 0x39, 0xdf, 0x2e, 0xf5, 0x71, 0x86, 0x55, 0x32, 0xe1, 0x5b, 0xb6, 0x45, 0x55, 0x2f, 0x29, +0xec, 0x04, 0x10, 0x14, 0x53, 0x4d, 0xcf, 0xe3, 0x09, 0x2a, 0xf4, 0x04, 0x14, 0x82, 0xf9, 0x27, +0xdd, 0xdd, 0x4c, 0xc4, 0xd5, 0x74, 0x5a, 0x62, 0x46, 0x36, 0x13, 0x93, 0x20, 0x17, 0x40, 0xe5, +0xc1, 0xae, 0x29, 0xdf, 0x4e, 0xa4, 0x52, 0x86, 0xdf, 0x77, 0x28, 0xfc, 0x5d, 0x2a, 0xcb, 0xc9, +0x36, 0x28, 0x8e, 0xd7, 0x55, 0xa6, 0x3a, 0x4b, 0x64, 0x37, 0xf6, 0x0b, 0x42, 0xd0, 0x51, 0x75, +0x4b, 0x67, 0x80, 0xbd, 0x65, 0x36, 0x53, 0xd8, 0xda, 0xf0, 0xea, 0x3d, 0x4d, 0x63, 0xf8, 0x4f, +0xec, 0x72, 0x4a, 0x8b, 0x9e, 0xab, 0x52, 0x08, 0xd2, 0x6b, 0x52, 0x4d, 0x7c, 0xcf, 0x15, 0x8c, +0xda, 0xad, 0x0a, 0xd4, 0xcf, 0x7d, 0xa1, 0xba, 0x8a, 0x03, 0x25, 0x46, 0xad, 0x64, 0x7f, 0x25, +0xd2, 0x2e, 0xa9, 0xc1, 0xf3, 0xc2, 0xb5, 0x94, 0xb9, 0xeb, 0xc2, 0x74, 0x4d, 0xca, 0x7b, 0xf9, +0x35, 0xb9, 0x59, 0x31, 0x12, 0xd1, 0x4e, 0xbf, 0x28, 0x4c, 0x86, 0xfb, 0xc1, 0x06, 0x1a, 0xdf, +0x86, 0x50, 0xca, 0x7a, 0xdc, 0x51, 0x17, 0x2d, 0x0c, 0xb6, 0xce, 0xfd, 0x4c, 0xa5, 0x72, 0x31, +0x14, 0x04, 0x8b, 0x76, 0xbf, 0x49, 0x15, 0xe8, 0xe5, 0xb6, 0x5b, 0xe5, 0x12, 0x87, 0x3c, 0xe4, +0xa2, 0x77, 0x69, 0x27, 0x26, 0x7f, 0xb2, 0x74, 0x0d, 0xdc, 0xd2, 0xca, 0x0a, 0x0f, 0xbb, 0x6f, +0x5e, 0x05, 0xa5, 0x87, 0xc8, 0x0a, 0x6a, 0x47, 0x5e, 0xd7, 0x61, 0x88, 0xe3, 0x7d, 0xa9, 0xb3, +0x5c, 0xbc, 0xeb, 0xc1, 0x23, 0x01, 0x31, 0x1a, 0xc1, 0xe2, 0xfb, 0xf6, 0xd2, 0xd2, 0x6a, 0x54, +0xb0, 0x4a, 0x3a, 0x3c, 0xff, 0xf3, 0xd4, 0x1b, 0x12, 0xa7, 0x30, 0xfa, 0xc1, 0xd5, 0xfb, 0xe4, +0xfa, 0x29, 0x34, 0x76, 0x26, 0x8f, 0xe4, 0xf4, 0x05, 0x15, 0x07, 0x77, 0x9f, 0xe3, 0x10, 0x8a, +0x56, 0x97, 0x70, 0x9c, 0x40, 0xcb, 0x2e, 0x5a, 0xde, 0x0b, 0xc1, 0x5c, 0x2a, 0xc3, 0x53, 0x7c, +0xe3, 0xf8, 0xdb, 0x62, 0x44, 0x77, 0x7c, 0x47, 0x19, 0x82, 0x40, 0xe5, 0x44, 0x8c, 0x61, 0xf9, +0x85, 0x66, 0x25, 0x54, 0x14, 0x49, 0x5a, 0xec, 0x46, 0xbb, 0xbc, 0x20, 0xae, 0xbf, 0x92, 0x8d, +0xc5, 0x2f, 0x21, 0x1e, 0xaf, 0xa1, 0x81, 0x41, 0xe8, 0x70, 0xc3, 0xaf, 0x78, 0xe2, 0x6f, 0xba, +0x37, 0x22, 0x8c, 0xdc, 0x05, 0x2a, 0xe8, 0xf5, 0xf3, 0xcf, 0x03, 0xf7, 0xd4, 0x4d, 0x0f, 0xca, +0x70, 0xca, 0xb1, 0xbf, 0x49, 0x76, 0x89, 0x2a, 0x2e, 0x6d, 0x73, 0xb7, 0x96, 0x85, 0x6d, 0x06, +0xa4, 0x24, 0x04, 0xc8, 0xa9, 0x9d, 0x0c, 0xce, 0x28, 0xd9, 0x49, 0x98, 0xb5, 0x95, 0x96, 0xb9, +0x66, 0xee, 0x75, 0x0f, 0xcc, 0x14, 0xaa, 0x8a, 0xb3, 0x16, 0x70, 0x88, 0x86, 0x5b, 0x51, 0xf7, +0x3a, 0x3a, 0x60, 0xb2, 0xc7, 0x5e, 0xae, 0x27, 0x85, 0x54, 0x03, 0xb3, 0x1a, 0x1c, 0x88, 0x63, +0x4a, 0x72, 0x52, 0x74, 0x8d, 0x77, 0x33, 0xa2, 0x7c, 0xd0, 0x2a, 0x46, 0x2f, 0x21, 0x91, 0xb1, +0x62, 0xf2, 0x25, 0x2f, 0xfb, 0x88, 0xcb, 0xdb, 0xaa, 0x16, 0x23, 0xab, 0xfb, 0x4c, 0x0c, 0xdc, +0x41, 0x18, 0x79, 0x3a, 0x83, 0x44, 0xbc, 0x40, 0x13, 0x15, 0x84, 0xf5, 0x3c, 0x8f, 0x3d, 0x40, +0x1d, 0x28, 0xaf, 0x07, 0xb2, 0x29, 0x25, 0x61, 0xea, 0x98, 0x83, 0x82, 0xc5, 0x78, 0x00, 0x91, +0xcf, 0xcd, 0xb2, 0x22, 0x10, 0x45, 0x40, 0x98, 0x5c, 0xc5, 0xe0, 0xd9, 0xf1, 0x91, 0x75, 0xe1, +0x6f, 0x2e, 0x36, 0x21, 0x01, 0x8d, 0x69, 0x81, 0x17, 0xce, 0x71, 0x3c, 0x12, 0x6a, 0xdd, 0xa3, +0x0b, 0xf9, 0xf7, 0x59, 0x00, 0x58, 0x3b, 0x1c, 0xa2, 0x9a, 0xbe, 0x71, 0x15, 0x1e, 0x4f, 0xbe, +0xf1, 0xd7, 0x40, 0xb8, 0xe0, 0xba, 0x39, 0xb5, 0xa1, 0xcc, 0x7a, 0x4e, 0x0d, 0xca, 0xe0, 0x23, +0x5e, 0xfa, 0xb0, 0xf0, 0x08, 0xee, 0xa9, 0xf3, 0x19, 0x88, 0xe6, 0xcd, 0xa6, 0xc2, 0x40, 0x13, +0xa3, 0x55, 0x3d, 0xd2, 0xd1, 0xb9, 0xa6, 0x6c, 0xed, 0x36, 0x32, 0x70, 0xae, 0x52, 0xab, 0xff, +0xda, 0xf0, 0xa5, 0xf5, 0x01, 0xa1, 0x6f, 0xb8, 0x5a, 0xa0, 0xd9, 0x20, 0xb1, 0x91, 0x34, 0x97, +0x81, 0x8c, 0xf0, 0x92, 0xc4, 0x8f, 0x5a, 0x6c, 0xc9, 0x8d, 0x92, 0x6c, 0x8c, 0x8b, 0xc6, 0x7e, +0xa8, 0xe3, 0x45, 0x92, 0x98, 0x47, 0x5f, 0x2d, 0x7d, 0x00, 0x1b, 0xf9, 0x86, 0x8e, 0xe0, 0xc1, +0x44, 0xa7, 0x9f, 0xb1, 0xd3, 0x8f, 0xfc, 0x54, 0x10, 0xfc, 0xa2, 0x38, 0x4c, 0xb9, 0x7b, 0x4e, +0xf9, 0x3a, 0xe4, 0x5f, 0xc5, 0x40, 0xfe, 0x66, 0x10, 0x46, 0x43, 0x7e, 0x3b, 0xaa, 0x24, 0x69, +0x02, 0x1f, 0xf8, 0xd3, 0xdc, 0xe9, 0x8b, 0x36, 0x7a, 0x7b, 0x20, 0x01, 0x5e, 0x4f, 0x3d, 0xfc, +0xd4, 0x60, 0x91, 0x00, 0xc8, 0x41, 0x2c, 0x92, 0x66, 0xc7, 0x48, 0x58, 0x63, 0x68, 0x83, 0xf0, +0xa1, 0x7d, 0xec, 0xac, 0x60, 0xb1, 0xb5, 0x11, 0x88, 0xbc, 0x9a, 0x5f, 0xeb, 0xd3, 0xc8, 0x74, +0x30, 0x40, 0xe0, 0x0d, 0x22, 0x81, 0xe8, 0xce, 0x8e, 0x80, 0x59, 0x39, 0x88, 0x0e, 0xed, 0x0d, +0x60, 0xc5, 0xe1, 0x37, 0x58, 0x44, 0x9a, 0x08, 0x64, 0x7c, 0xf0, 0x61, 0xa9, 0x16, 0xfd, 0x7c, +0x03, 0x10, 0xde, 0x8e, 0xb4, 0x5f, 0xdf, 0xb3, 0xd8, 0x93, 0xec, 0x9e, 0x18, 0x9e, 0x29, 0xe1, +0xc0, 0x78, 0x01, 0x8a, 0x61, 0x1f, 0x52, 0x6b, 0xf2, 0xd6, 0x79, 0x4b, 0x96, 0x1b, 0xe9, 0xde, +0xcd, 0xc8, 0xab, 0x4a, 0x25, 0x83, 0xaf, 0x0d, 0x94, 0x9c, 0xe9, 0x77, 0x5e, 0xd5, 0x9b, 0xf8, +0x7f, 0x80, 0xcd, 0x59, 0x00, 0x7c, 0xd7, 0x8e, 0x42, 0xcb, 0xef, 0x2b, 0xaf, 0x9c, 0x4b, 0xc2, +0xc9, 0xf0, 0x23, 0x49, 0x3e, 0x80, 0x8b, 0x80, 0x97, 0xf8, 0xbd, 0xb4, 0xe0, 0x36, 0x93, 0x9f, +0xc8, 0x87, 0xcd, 0x77, 0xe6, 0x3a, 0xe5, 0x38, 0x37, 0x3f, 0xdf, 0x7f, 0xe1, 0x48, 0x9a, 0xf4, +0x89, 0x2d, 0xad, 0x3d, 0x0d, 0x15, 0x9f, 0xb5, 0xab, 0xae, 0x7e, 0xa7, 0xe6, 0xd6, 0xae, 0x00, +0xd8, 0x33, 0xf5, 0x64, 0x59, 0x28, 0x34, 0x6f, 0x6c, 0x8f, 0x85, 0x91, 0x91, 0x93, 0x15, 0xcc, +0xcd, 0xd9, 0x07, 0x4d, 0xcf, 0x0f, 0xdc, 0x9d, 0x24, 0x9e, 0x87, 0x25, 0x60, 0x4b, 0xf3, 0x95, +0x39, 0x5b, 0xc0, 0x2c, 0xf2, 0xe6, 0xf3, 0x66, 0xfc, 0x64, 0xaf, 0x43, 0x8f, 0x07, 0x50, 0xb6, +0xc7, 0xbf, 0xf3, 0x12, 0x65, 0xce, 0xf5, 0x98, 0x60, 0xbc, 0x5a, 0x62, 0xe3, 0xfb, 0xec, 0x9c, +0xe1, 0xab, 0x92, 0x17, 0x88, 0x82, 0x3e, 0xad, 0x78, 0x9c, 0xff, 0xa6, 0x28, 0xf8, 0x4a, 0x3b, +0xdb, 0xaa, 0x21, 0x35, 0x21, 0xed, 0x29, 0x7d, 0x7b, 0xd9, 0xb4, 0x3a, 0xd5, 0x31, 0xcf, 0xc0, +0x89, 0x88, 0x24, 0x14, 0xfc, 0x8a, 0x99, 0x84, 0x20, 0x6b, 0x9e, 0xfa, 0xb0, 0x65, 0x92, 0xaf, +0xef, 0x82, 0x85, 0xed, 0x87, 0xa8, 0x4e, 0x28, 0xa6, 0xf6, 0x56, 0x09, 0x3e, 0xef, 0xb7, 0x31, +0x0a, 0x77, 0x76, 0x25, 0xfa, 0x09, 0x14, 0x17, 0x3f, 0x96, 0xf3, 0xbc, 0xc6, 0x0d, 0x54, 0x2f, +0xd5, 0x2b, 0x84, 0xc2, 0xf0, 0x8f, 0x32, 0xfb, 0xb4, 0x25, 0xf7, 0xcb, 0x95, 0xa9, 0x1d, 0xcf, +0x27, 0x70, 0x68, 0x38, 0xd2, 0xee, 0x32, 0xdb, 0xe0, 0x4c, 0x16, 0x00, 0x07, 0x94, 0x69, 0x54, +0x00, 0x2c, 0x43, 0x0b, 0x81, 0x98, 0xd8, 0xd2, 0x19, 0x9c, 0xd3, 0x30, 0xd5, 0xa4, 0x2c, 0xc5, +0x4a, 0x64, 0x48, 0xca, 0x3b, 0x11, 0x6e, 0x39, 0xa9, 0xcf, 0x8e, 0x70, 0x63, 0xc5, 0x98, 0x53, +0x35, 0x69, 0xad, 0x03, 0xed, 0xc9, 0xdf, 0xa8, 0x20, 0xdd, 0x17, 0x70, 0x29, 0x5a, 0x69, 0xc2, +0xc0, 0x97, 0x98, 0x2e, 0x82, 0x27, 0x0c, 0x88, 0x5e, 0xc6, 0x65, 0xc0, 0x17, 0xdd, 0x21, 0xea, +0x64, 0x61, 0xf4, 0xca, 0x8e, 0x51, 0xf5, 0xd4, 0xad, 0xf2, 0xff, 0xea, 0xba, 0x98, 0xdb, 0xbe, +0x1c, 0xda, 0x94, 0xd2, 0x77, 0x81, 0x07, 0x33, 0x83, 0xf4, 0xd2, 0xd1, 0x91, 0x94, 0xae, 0xab, +0x2f, 0x36, 0x5a, 0x75, 0x83, 0x17, 0x1c, 0xed, 0xda, 0x3f, 0x5b, 0x15, 0xbc, 0xd9, 0x15, 0xeb, +0xba, 0xb8, 0xd5, 0xe0, 0x0d, 0x76, 0xee, 0x6f, 0x6b, 0xf9, 0xdc, 0x24, 0xaf, 0x28, 0x54, 0x17, +0x24, 0x89, 0x3e, 0x70, 0x1b, 0x3b, 0x74, 0x7c, 0x7a, 0x30, 0xfa, 0x84, 0x9e, 0x07, 0x52, 0x29, +0xdb, 0x8c, 0xe8, 0x1a, 0x43, 0x3a, 0x34, 0x45, 0x95, 0x62, 0xe4, 0x00, 0x4c, 0x4e, 0x6f, 0x1b, +0x4f, 0x80, 0x99, 0xf6, 0xdb, 0x38, 0xe9, 0x4b, 0x6f, 0xfb, 0xa4, 0x30, 0xde, 0xcb, 0x67, 0xaa, +0xca, 0x4a, 0x68, 0x87, 0x8a, 0x8b, 0x9b, 0x20, 0x62, 0x9d, 0x9d, 0x57, 0xef, 0x72, 0x7a, 0x49, +0x8f, 0x65, 0x25, 0xf8, 0x54, 0x86, 0x8e, 0x9a, 0x91, 0x66, 0x22, 0xdf, 0x28, 0x03, 0x7e, 0x89, +0x54, 0x0d, 0xb4, 0x22, 0x34, 0x5c, 0x25, 0xb4, 0x00, 0x36, 0xaa, 0x5f, 0x09, 0xc5, 0x92, 0x9e, +0x3a, 0x69, 0x58, 0xdd, 0x59, 0x89, 0x33, 0xd8, 0x95, 0x39, 0x2d, 0x9e, 0x24, 0xb9, 0x77, 0x5a, +0x94, 0x19, 0x25, 0xf4, 0x9f, 0x7a, 0x3a, 0x60, 0x68, 0x29, 0x33, 0xbc, 0x57, 0x96, 0x8c, 0x0e, +0xc7, 0x89, 0xd8, 0xcc, 0x7a, 0xaa, 0x03, 0x2e, 0xb7, 0x06, 0x61, 0x67, 0xc1, 0x74, 0xe3, 0x98, +0x8b, 0xa8, 0xf0, 0x2e, 0x4e, 0xe7, 0x3e, 0xff, 0xde, 0x16, 0x02, 0x5d, 0x52, 0xc1, 0xaf, 0x10, +0x76, 0xe8, 0x94, 0x30, 0x3b, 0xa9, 0x53, 0x36, 0x2c, 0x9e, 0x01, 0x33, 0x0d, 0xe9, 0x55, 0xb8, +0xb7, 0xf9, 0xf9, 0x9b, 0xfd, 0x88, 0x57, 0x3e, 0x89, 0xf4, 0x55, 0x21, 0x36, 0x55, 0xae, 0xfe, +0xa1, 0x0e, 0xe9, 0x8f, 0x21, 0x0a, 0x6b, 0xa7, 0xa6, 0x7d, 0xa0, 0x73, 0x3a, 0x89, 0x93, 0x72, +0x48, 0x4f, 0x43, 0x10, 0xf8, 0xeb, 0xd1, 0x6c, 0x83, 0x0c, 0x83, 0x43, 0xcc, 0x96, 0xf3, 0x26, +0x96, 0x45, 0xf8, 0x59, 0xff, 0x60, 0xd8, 0x0e, 0x0e, 0xef, 0x14, 0xed, 0x64, 0x08, 0x6e, 0x56, +0xcd, 0xe2, 0x78, 0x05, 0x9d, 0x96, 0xa8, 0x38, 0x64, 0xb5, 0xd6, 0x06, 0x67, 0xaa, 0x7d, 0x2c, +0x0e, 0xc0, 0x03, 0x40, 0x1d, 0x1d, 0x21, 0x55, 0x8a, 0xd3, 0x75, 0x32, 0xae, 0x3f, 0xef, 0x4d, +0x57, 0xbf, 0xef, 0x65, 0x43, 0x43, 0x30, 0xcb, 0xdc, 0xc6, 0x84, 0xae, 0x45, 0xa0, 0xae, 0xc7, +0x1d, 0xc8, 0x76, 0x83, 0xdd, 0x77, 0xac, 0x03, 0x2f, 0xa3, 0xc2, 0x12, 0x01, 0x45, 0xf2, 0xe0, +0xc1, 0x2f, 0x48, 0x57, 0x81, 0x27, 0xad, 0x8f, 0x74, 0x65, 0x25, 0x3f, 0x1b, 0x8f, 0x95, 0xb5, +0x5b, 0xc2, 0x2b, 0xc1, 0xf8, 0x0e, 0xc8, 0x93, 0x97, 0x9c, 0xa9, 0x0f, 0x6f, 0xf6, 0x9b, 0xe9, +0x38, 0xa4, 0x6e, 0xa9, 0x32, 0x80, 0x2a, 0x38, 0x93, 0x7e, 0xe5, 0x19, 0x48, 0x6b, 0x74, 0xc0, +0x66, 0x66, 0x4d, 0xfc, 0x76, 0x76, 0x79, 0x91, 0x19, 0x8b, 0x5a, 0x5f, 0xd1, 0xe2, 0x46, 0x43, +0xf5, 0x07, 0xd0, 0xaa, 0x02, 0x14, 0xe0, 0xbe, 0x51, 0xa7, 0x8d, 0xd6, 0x13, 0xe6, 0x5e, 0x50, +0x2f, 0x71, 0xd4, 0xd8, 0xd5, 0x5d, 0x04, 0xcd, 0x5f, 0xb1, 0x55, 0x04, 0xc7, 0x25, 0x37, 0x19, +0x78, 0x7d, 0x07, 0x86, 0x6f, 0x4e, 0x88, 0x41, 0x0b, 0xd8, 0x6d, 0x05, 0x5b, 0x0e, 0x12, 0xf9, +0xfd, 0x2c, 0x66, 0x8f, 0x07, 0x45, 0x5b, 0x32, 0x69, 0xf6, 0x95, 0x34, 0xd1, 0x31, 0x88, 0xee, +0x3b, 0x41, 0x29, 0xd1, 0xeb, 0x4c, 0x89, 0xa3, 0x24, 0x0a, 0xdb, 0xcb, 0x70, 0x6c, 0xe9, 0x8a, +0x2b, 0x90, 0xbc, 0xcb, 0x41, 0x97, 0x08, 0x38, 0x93, 0x28, 0x16, 0x02, 0x71, 0xcc, 0x7a, 0xd5, +0x5e, 0xc9, 0x07, 0xbe, 0xa0, 0x15, 0xbd, 0xc5, 0xc9, 0x0d, 0xb5, 0xc8, 0x46, 0x3f, 0xdf, 0x10, +0xf7, 0x00, 0x1d, 0x95, 0x57, 0xb6, 0xbe, 0xb1, 0x4a, 0xc0, 0x5c, 0x22, 0xfa, 0xaa, 0xfe, 0x50, +0xf5, 0xba, 0x6a, 0xf0, 0xe5, 0x9b, 0xa7, 0x06, 0xbc, 0x7e, 0xef, 0xdb, 0x5b, 0x77, 0xac, 0xf5, +0x9d, 0xa5, 0x4d, 0xa7, 0x0e, 0x76, 0xd1, 0xd6, 0x19, 0x58, 0xa5, 0x7c, 0x61, 0xa2, 0xea, 0x4c, +0xc6, 0xef, 0x1b, 0x26, 0x6e, 0x79, 0x52, 0x03, 0xdb, 0x47, 0x50, 0xfc, 0x2b, 0x15, 0x55, 0x61, +0xa4, 0xaa, 0x49, 0x8d, 0xdb, 0xb1, 0xfe, 0x8d, 0xc8, 0x64, 0xcf, 0x26, 0x60, 0xb2, 0x27, 0xe9, +0x4e, 0x2d, 0xec, 0x45, 0x26, 0xd0, 0xe7, 0xa6, 0x2a, 0x6d, 0xc8, 0x76, 0x67, 0xfb, 0x60, 0xbc, +0xdf, 0x32, 0xbc, 0x76, 0x31, 0x34, 0x0a, 0xd6, 0x4d, 0x16, 0xd3, 0xcf, 0xbe, 0x5b, 0x8b, 0xe6, +0x41, 0x4e, 0x79, 0xf6, 0xe0, 0x3e, 0x34, 0xce, 0xb4, 0x35, 0x02, 0x86, 0x32, 0x6e, 0x28, 0xae, +0x79, 0xd5, 0x41, 0x03, 0x06, 0x15, 0xe2, 0xdd, 0xdf, 0x0c, 0x16, 0x17, 0x6b, 0x03, 0x40, 0x8c, +0x79, 0x22, 0x24, 0x86, 0x23, 0xb7, 0x83, 0x6d, 0xb5, 0xdc, 0x0e, 0x73, 0xb6, 0xe4, 0xdf, 0xd1, +0x9d, 0x7a, 0x70, 0xc7, 0xd3, 0x08, 0xf4, 0x1b, 0x0b, 0x79, 0xc8, 0x83, 0x38, 0xc7, 0x31, 0xb8, +0x3b, 0xec, 0x6c, 0x07, 0x7e, 0x79, 0x3d, 0x24, 0xd4, 0x96, 0xf7, 0x92, 0x99, 0xc8, 0x07, 0xec, +0x04, 0x3c, 0x74, 0xb0, 0xc6, 0x69, 0xa7, 0x0f, 0xc2, 0x63, 0x7c, 0x15, 0x69, 0x37, 0x02, 0x09, +0xae, 0x05, 0xe8, 0xff, 0x61, 0x0e, 0x36, 0x9d, 0x5d, 0x55, 0xf5, 0xeb, 0x32, 0x5f, 0x13, 0xcd, +0x77, 0xe2, 0x51, 0xfa, 0x26, 0x16, 0xdf, 0x07, 0x1a, 0xe5, 0xeb, 0x19, 0x24, 0x00, 0xfd, 0x13, +0xad, 0x9c, 0x46, 0x13, 0x09, 0xe3, 0x2c, 0x90, 0x36, 0x6c, 0xad, 0x9f, 0x83, 0x94, 0xbc, 0x4a, +0x3f, 0xa1, 0xed, 0x4a, 0x66, 0xe7, 0xf3, 0xe6, 0xe0, 0x92, 0x5c, 0x4d, 0x37, 0xe9, 0x03, 0x57, +0x49, 0x82, 0xc4, 0xcc, 0x9f, 0xad, 0x4f, 0x90, 0x9b, 0xb0, 0x5c, 0xbb, 0xf6, 0x43, 0x97, 0x65, +0x32, 0x45, 0xb6, 0xc8, 0x9b, 0x8f, 0xd9, 0x1d, 0x01, 0xf5, 0x11, 0xae, 0x1e, 0x89, 0x99, 0x80, +0x19, 0x6c, 0x58, 0x7f, 0x71, 0xca, 0x9d, 0xfc, 0xf9, 0xfa, 0x8f, 0x0e, 0x3b, 0x63, 0x7d, 0x58, +0x77, 0x64, 0x8a, 0x2d, 0xe2, 0x1e, 0x1f, 0x8b, 0x40, 0xe1, 0x5b, 0xcb, 0x0a, 0xca, 0x0c, 0x3e, +0x94, 0xb8, 0x79, 0xaa, 0xea, 0x8c, 0xef, 0x16, 0x03, 0xc3, 0x05, 0x71, 0x01, 0x35, 0xc2, 0x6d, +0x20, 0x33, 0xcb, 0x22, 0x32, 0xe6, 0x32, 0xf9, 0x1f, 0x35, 0xbb, 0xbb, 0xe1, 0xc5, 0xb6, 0xba, +0x2f, 0x20, 0xf6, 0xf3, 0xb5, 0xcd, 0x42, 0xc0, 0xe8, 0xa5, 0x2a, 0x61, 0xb5, 0xfa, 0xd8, 0x94, +0x49, 0x1b, 0x78, 0x3d, 0x73, 0x04, 0xb2, 0xf1, 0x4f, 0x7a, 0x92, 0xe5, 0x97, 0x7d, 0xb7, 0x92, +0x48, 0x5e, 0xac, 0xaa, 0x6b, 0xbd, 0x70, 0xa8, 0xe8, 0x34, 0x4e, 0xb9, 0x33, 0xb2, 0x95, 0xa3, +0xb1, 0x39, 0x2a, 0xf7, 0x63, 0x28, 0x59, 0xd4, 0x34, 0x0c, 0x04, 0x5d, 0x25, 0x24, 0xc8, 0x30, +0x6d, 0x05, 0x9f, 0x94, 0x00, 0x66, 0xd7, 0xea, 0x46, 0xfd, 0x23, 0x63, 0x5a, 0x92, 0xdc, 0xfc, +0xb5, 0x41, 0xb9, 0x84, 0x4d, 0x36, 0x32, 0xc8, 0xc6, 0x52, 0x40, 0xee, 0x83, 0xa4, 0x92, 0x46, +0xad, 0x0d, 0x12, 0x5e, 0x1a, 0x4a, 0x3a, 0x84, 0x58, 0x17, 0x8d, 0xd0, 0x13, 0x6d, 0x28, 0xf5, +0x67, 0x1f, 0x3d, 0x6a, 0x46, 0xe0, 0xca, 0xd7, 0x83, 0x26, 0x42, 0x7b, 0xaa, 0x1d, 0xd2, 0xaf, +0xc4, 0xb0, 0xab, 0xd4, 0x24, 0x3b, 0x2b, 0x79, 0xdb, 0x32, 0xc8, 0x1c, 0xaf, 0x18, 0x66, 0x37, +0xf9, 0xfc, 0x42, 0xf4, 0x68, 0x28, 0x55, 0x36, 0x7d, 0xc0, 0xc0, 0x06, 0x8e, 0xd8, 0xaa, 0xf5, +0xde, 0xab, 0x5f, 0x04, 0xc1, 0x05, 0xa9, 0xd7, 0x94, 0xdd, 0x4d, 0x03, 0x51, 0xa5, 0xdb, 0xf6, +0x6f, 0x1d, 0x49, 0xf4, 0xf9, 0xf1, 0xa2, 0xce, 0x03, 0x2f, 0xee, 0x54, 0x0f, 0xf4, 0x5d, 0xfb, +0x72, 0xd6, 0xe4, 0xbd, 0x00, 0x77, 0xe9, 0xed, 0x4b, 0x5a, 0xba, 0xdf, 0x79, 0x8e, 0x0a, 0xa4, +0x9e, 0xe6, 0x73, 0xbb, 0xbb, 0x6a, 0x63, 0xa8, 0x85, 0x02, 0x98, 0x06, 0x71, 0x8a, 0xb8, 0xe7, +0xb2, 0x3a, 0xf6, 0x39, 0x13, 0xbe, 0x5b, 0x6f, 0x07, 0x5e, 0xba, 0xad, 0x50, 0x6e, 0x8d, 0x83, +0xca, 0x61, 0x6b, 0x3f, 0x11, 0xc6, 0x1a, 0xe4, 0x12, 0xa4, 0x90, 0xbc, 0x6e, 0xc9, 0xe3, 0xd5, +0x01, 0xb3, 0xc6, 0x82, 0x2a, 0x38, 0x98, 0x08, 0xbb, 0xe7, 0x8c, 0x43, 0x0e, 0x25, 0x5f, 0xa9, +0xc3, 0xea, 0x38, 0xcc, 0x85, 0x17, 0xad, 0x80, 0xa4, 0x2f, 0xcd, 0x6c, 0xe4, 0xa9, 0x43, 0x1a, +0x1e, 0xb6, 0x92, 0x2b, 0x50, 0xfe, 0x15, 0x2c, 0xd8, 0xdd, 0x5a, 0x85, 0x05, 0x99, 0x22, 0x51, +0xe5, 0x95, 0x33, 0x18, 0x2a, 0x69, 0x4e, 0x13, 0x18, 0x8e, 0xec, 0xb7, 0x91, 0xb5, 0x7c, 0x64, +0xf3, 0x5a, 0xed, 0xde, 0xcc, 0x9a, 0x79, 0xa5, 0xba, 0x29, 0xf1, 0x35, 0x54, 0xb3, 0xf7, 0x5e, +0x57, 0x3f, 0x15, 0xa1, 0x2d, 0x07, 0xa9, 0x62, 0x71, 0x48, 0x1f, 0x27, 0x70, 0xc9, 0x51, 0xa7, +0x27, 0x34, 0x03, 0x9f, 0x25, 0x44, 0x9a, 0xaf, 0xcf, 0x2e, 0xf9, 0x18, 0x00, 0xf3, 0x57, 0x1c, +0x7c, 0x0b, 0x98, 0x35, 0x2b, 0xa5, 0x80, 0xe3, 0xf6, 0xa5, 0x85, 0xec, 0x70, 0x8a, 0xc0, 0x9f, +0x0d, 0x45, 0x8f, 0x34, 0xe1, 0x8e, 0xdb, 0x82, 0x80, 0x29, 0x8e, 0x67, 0x50, 0x7a, 0xb1, 0x6a, +0x66, 0x19, 0x8b, 0xb2, 0xf7, 0x26, 0x1e, 0x0f, 0xfa, 0xee, 0x74, 0x90, 0x5c, 0x4e, 0x0e, 0xaa, +0x14, 0xd5, 0xaf, 0x77, 0x97, 0xa5, 0xeb, 0x2d, 0x40, 0x7f, 0x04, 0x51, 0x96, 0x43, 0xb4, 0x18, +0xf2, 0x68, 0x6d, 0x30, 0x36, 0xfe, 0x1e, 0xa9, 0xf1, 0xd2, 0x79, 0x0e, 0x59, 0x19, 0xb5, 0xe2, +0x65, 0xc7, 0x68, 0x1a, 0x87, 0x86, 0xbb, 0x32, 0x53, 0x86, 0x79, 0x89, 0xf6, 0xa8, 0x60, 0x4b, +0xf6, 0x49, 0x25, 0xa9, 0xbc, 0x10, 0x5f, 0xc4, 0xb9, 0x94, 0x71, 0x26, 0x0e, 0x86, 0x9a, 0xc3, +0xda, 0xf6, 0x76, 0xf4, 0xc9, 0x1c, 0xae, 0xaa, 0x27, 0x79, 0x82, 0xfe, 0xe9, 0xdc, 0x48, 0x04, +0x8c, 0xde, 0x8c, 0xa0, 0x30, 0x41, 0x4e, 0x1b, 0xcb, 0xa5, 0x34, 0xff, 0x69, 0xc4, 0x71, 0x01, +0xbf, 0xdb, 0x86, 0xe1, 0x70, 0x38, 0xb3, 0xf9, 0x51, 0x2e, 0xe1, 0xb4, 0xae, 0xdf, 0x0e, 0xb2, +0x71, 0x7f, 0xde, 0x7d, 0xd9, 0x1d, 0x31, 0x7a, 0xe9, 0x79, 0xda, 0xce, 0x00, 0x5d, 0xfe, 0x88, +0xb5, 0x9b, 0xf8, 0x15, 0x29, 0x66, 0xf2, 0x1b, 0x7b, 0x5c, 0x90, 0x3a, 0xa6, 0xa3, 0x6b, 0xf1, +0xa0, 0xec, 0xd7, 0x15, 0xca, 0x2e, 0xa5, 0x8b, 0xff, 0x6b, 0xf8, 0xac, 0xfb, 0xf5, 0x8f, 0xa2, +0xe0, 0xb2, 0x49, 0x7f, 0x72, 0x68, 0x50, 0xba, 0xfa, 0xf6, 0x92, 0xf1, 0xe7, 0x6a, 0x85, 0x45, +0x24, 0xb7, 0x6d, 0xa1, 0xfc, 0x42, 0x46, 0xce, 0xa6, 0x87, 0x5c, 0x85, 0x8a, 0x85, 0xe0, 0xb8, +0xc8, 0x90, 0x5f, 0x68, 0x9e, 0x8e, 0xa7, 0xbc, 0xc6, 0x73, 0x6a, 0x5c, 0xb0, 0x8c, 0x34, 0x40, +0xef, 0x9d, 0xdd, 0x56, 0xd9, 0x8e, 0x51, 0x12, 0x66, 0x7d, 0x93, 0x39, 0xe3, 0x36, 0x40, 0x45, +0x3b, 0xd5, 0x58, 0xf9, 0x19, 0x5e, 0x7d, 0xb0, 0xf1, 0xd2, 0x29, 0x08, 0xa1, 0x46, 0x92, 0x94, +0x86, 0x68, 0x6b, 0xf4, 0x5d, 0xff, 0x19, 0x37, 0xd2, 0x06, 0xeb, 0x5c, 0x3a, 0xe4, 0x6e, 0x24, +0x28, 0xdc, 0xe1, 0xc6, 0x8d, 0x9b, 0x29, 0x23, 0xa6, 0x5a, 0x35, 0xa9, 0xf3, 0xa5, 0x41, 0xb4, +0x0b, 0x54, 0xdf, 0x5e, 0x9a, 0xf9, 0xa8, 0xfc, 0x15, 0x28, 0xe4, 0x9e, 0x7a, 0xf5, 0x9e, 0xf4, +0x58, 0xc9, 0xff, 0xf5, 0x67, 0x81, 0x7a, 0x04, 0x55, 0xff, 0x3f, 0x71, 0x33, 0xae, 0x3c, 0x2a, +0x4e, 0x46, 0x91, 0xc5, 0x5f, 0x7d, 0x31, 0xbf, 0xc7, 0x66, 0x89, 0xb3, 0x1b, 0x2f, 0x4c, 0x70, +0x51, 0xb2, 0xed, 0xe9, 0x9a, 0x65, 0xcb, 0x64, 0x12, 0xdb, 0x97, 0x59, 0x11, 0xf1, 0x39, 0x37, +0x4c, 0xab, 0xad, 0xc1, 0xa6, 0x58, 0xf0, 0xc4, 0x02, 0x0f, 0xda, 0xd7, 0x63, 0x90, 0x67, 0x51, +0xe2, 0x25, 0x44, 0x55, 0x09, 0x8d, 0x44, 0x78, 0x1a, 0xbc, 0xae, 0xc9, 0xe4, 0x18, 0xcd, 0x91, +0xde, 0xe6, 0xb2, 0x9b, 0x52, 0x0b, 0x91, 0x33, 0xf1, 0xae, 0x42, 0x6e, 0x8b, 0x66, 0x13, 0xeb, +0xcb, 0x3a, 0x61, 0xd6, 0x81, 0xe6, 0x92, 0xf3, 0xfe, 0x5d, 0xaf, 0x1c, 0x78, 0x25, 0x74, 0xd1, +0x71, 0x58, 0xe7, 0xe0, 0xa0, 0x4e, 0x9e, 0xf4, 0xa2, 0xbc, 0xbb, 0x01, 0x11, 0x7c, 0x77, 0xc5, +0x62, 0x8b, 0x4d, 0xf6, 0xd7, 0x40, 0x9c, 0x51, 0x29, 0xc3, 0x1a, 0xc0, 0xaa, 0x14, 0x87, 0xda, +0xbc, 0x00, 0x77, 0x28, 0x88, 0x86, 0xa1, 0xaf, 0xb2, 0x26, 0x0b, 0xc3, 0x6b, 0x29, 0x73, 0x67, +0xb4, 0x9c, 0x88, 0xad, 0xc7, 0xbf, 0x6c, 0xe5, 0xdf, 0xe7, 0xbc, 0x4f, 0xce, 0x72, 0x77, 0xd6, +0xe0, 0x18, 0xe8, 0x75, 0x95, 0x4e, 0xfd, 0x3d, 0xac, 0x28, 0xdc, 0x9e, 0x01, 0xf5, 0x69, 0x5d, +0xf1, 0xfa, 0xb1, 0xc9, 0x1e, 0x97, 0x31, 0x2c, 0x23, 0xda, 0x3b, 0xf2, 0xa9, 0x04, 0xba, 0xec, +0x70, 0x4f, 0x8e, 0xe9, 0xea, 0xbc, 0x2e, 0xb0, 0x0e, 0xf1, 0xa9, 0x19, 0x17, 0x85, 0x56, 0x13, +0x83, 0x54, 0x29, 0xfd, 0x8e, 0x0f, 0x1b, 0x57, 0x3c, 0x0b, 0x16, 0xe1, 0xc7, 0x17, 0xed, 0xa1, +0x46, 0x03, 0x81, 0x68, 0xff, 0x81, 0x84, 0x0c, 0x1d, 0xd9, 0x2d, 0x0e, 0x68, 0x19, 0xc1, 0x45, +0x2e, 0x71, 0x8c, 0xbc, 0xe0, 0x32, 0xac, 0x6c, 0xd1, 0x59, 0x29, 0xb2, 0x5c, 0x06, 0x65, 0x44, +0xdb, 0xd0, 0xca, 0x91, 0x41, 0xa0, 0x3a, 0x5c, 0xf0, 0x18, 0x77, 0x5f, 0x74, 0xed, 0x10, 0x89, +0x8a, 0xce, 0x93, 0x71, 0x74, 0xf6, 0xf2, 0x84, 0x00, 0x75, 0x1d, 0x36, 0x91, 0x00, 0x21, 0xc7, +0x0f, 0x64, 0xbd, 0x56, 0x47, 0xa9, 0xda, 0x37, 0x40, 0xf7, 0x00, 0x6d, 0xe0, 0xfc, 0xb3, 0x5e, +0xa6, 0xd3, 0x90, 0x90, 0x29, 0x28, 0x5d, 0xf7, 0x8a, 0x26, 0x67, 0x77, 0xb2, 0xc2, 0xa1, 0x2a, +0x04, 0x31, 0x7f, 0x63, 0xc6, 0x0a, 0x1a, 0xb2, 0xb0, 0x35, 0xe5, 0xd4, 0x71, 0x08, 0x3c, 0x8e, +0x4b, 0xcb, 0xd4, 0x75, 0x6d, 0x3c, 0x06, 0xc5, 0x0b, 0x9f, 0xae, 0x21, 0x68, 0xdf, 0xdc, 0xe7, +0x1e, 0x14, 0xe7, 0x16, 0x23, 0x01, 0x8b, 0x43, 0xef, 0x44, 0xb0, 0xa0, 0x87, 0xa5, 0x85, 0x36, +0x55, 0x21, 0x4a, 0x74, 0x5a, 0x33, 0x03, 0x6e, 0x84, 0x8a, 0xf7, 0x6d, 0x2c, 0x39, 0x5e, 0x4c, +0xdc, 0x89, 0xaa, 0xa0, 0x43, 0x77, 0x59, 0x27, 0xd4, 0x96, 0x76, 0xd7, 0x95, 0xa6, 0xe0, 0x19, +0xd2, 0x74, 0x70, 0x95, 0xae, 0xa2, 0x30, 0xa8, 0xdb, 0x5f, 0xf3, 0xa8, 0x34, 0xc6, 0xcd, 0x46, +0xc1, 0x09, 0xbb, 0x79, 0x35, 0x7f, 0x13, 0xdb, 0xd5, 0xc8, 0x76, 0xc8, 0x31, 0x04, 0x7d, 0x70, +0x1d, 0x6a, 0x34, 0x72, 0x2a, 0x9a, 0xcb, 0xc8, 0xdf, 0xad, 0xe3, 0x89, 0xc8, 0x9a, 0x9a, 0x11, +0xd1, 0xc2, 0x5f, 0xb5, 0x41, 0x0d, 0x12, 0xaa, 0x55, 0xf4, 0x9f, 0x51, 0xfb, 0x25, 0xd2, 0x47, +0x8c, 0xf6, 0x59, 0x91, 0xda, 0xc6, 0x04, 0x79, 0x23, 0x73, 0x47, 0xc9, 0xcb, 0xae, 0x38, 0xb1, +0x58, 0xc5, 0x86, 0x1a, 0xf0, 0x89, 0x60, 0x07, 0x0d, 0x0c, 0xc1, 0xf7, 0x9b, 0x2b, 0x8c, 0xfe, +0xf9, 0xe8, 0xf3, 0x34, 0x3d, 0x7e, 0x63, 0x87, 0xa9, 0x78, 0xe7, 0xcb, 0x57, 0xbc, 0x7b, 0x17, +0xdc, 0x55, 0x43, 0x09, 0x9c, 0xdc, 0x9b, 0x83, 0x49, 0x2b, 0xd6, 0x12, 0xb4, 0x87, 0xb5, 0x0d, +0xbf, 0xc5, 0x85, 0x86, 0x58, 0xf2, 0x90, 0xbe, 0x3c, 0x36, 0xca, 0xdc, 0x04, 0xb8, 0x48, 0xae, +0x92, 0x0d, 0x44, 0xaf, 0xaa, 0xb4, 0x7e, 0xe0, 0xa9, 0x5e, 0xb6, 0xd1, 0xcf, 0x82, 0x64, 0x10, +0xc1, 0x2c, 0x98, 0xca, 0xda, 0x02, 0x92, 0x79, 0x65, 0xae, 0xaa, 0xe1, 0xff, 0xe4, 0x6b, 0x16, +0xc1, 0x8d, 0x75, 0x13, 0x41, 0x77, 0xfd, 0xce, 0xf1, 0x46, 0x47, 0xb0, 0x9f, 0x61, 0x58, 0xa1, +0xe3, 0x25, 0xb7, 0x10, 0x98, 0xcb, 0xfd, 0x03, 0x2c, 0xe0, 0xe4, 0x4d, 0x4f, 0xfd, 0x72, 0x42, +0x57, 0xb1, 0x89, 0x78, 0xe9, 0xf9, 0xae, 0xcb, 0xd6, 0xc0, 0xc9, 0x18, 0xae, 0x76, 0x2e, 0x0e, +0x81, 0xb9, 0xcc, 0x0d, 0x8f, 0x62, 0xa1, 0xfe, 0xea, 0xb9, 0xe5, 0xcd, 0x7f, 0x51, 0x63, 0xf7, +0x1c, 0xd1, 0xad, 0x94, 0xa1, 0xfa, 0x00, 0x25, 0x17, 0xbf, 0xd7, 0x86, 0x7b, 0xa9, 0xc1, 0xac, +0xe9, 0xa3, 0xb6, 0xbd, 0x4b, 0xf6, 0x60, 0x5b, 0xcb, 0x3a, 0xe3, 0x30, 0x7a, 0xe2, 0xdf, 0x3a, +0x8d, 0x84, 0xf5, 0xdc, 0xaa, 0x1f, 0xe9, 0x02, 0xef, 0xe8, 0xc8, 0xba, 0x66, 0xb9, 0x63, 0x8d, +0xc4, 0xf4, 0x05, 0xa0, 0x22, 0x6b, 0x08, 0x47, 0x0b, 0x4f, 0x51, 0x59, 0xf4, 0xa6, 0x34, 0x9f, +0x4d, 0xdb, 0x4f, 0xc4, 0x7a, 0x71, 0x4f, 0x66, 0x50, 0x2e, 0x44, 0x23, 0x4f, 0x44, 0x28, 0xf0, +0x62, 0x22, 0x50, 0x05, 0x69, 0x3b, 0x92, 0x16, 0x31, 0xa3, 0x14, 0xc9, 0x58, 0x89, 0x39, 0x61, +0x3d, 0xca, 0x29, 0x0b, 0xb5, 0xd2, 0x85, 0x86, 0x68, 0xe3, 0xdc, 0xb8, 0xec, 0x25, 0xfb, 0x79, +0x3d, 0x0c, 0xf3, 0x27, 0x06, 0x98, 0xbc, 0x77, 0xad, 0xd3, 0x61, 0xbf, 0xc3, 0xd0, 0x27, 0x43, +0x5a, 0x49, 0xfc, 0xd0, 0x7b, 0x7e, 0xa8, 0x3a, 0x77, 0xbb, 0x3d, 0xe4, 0x95, 0x23, 0x4c, 0x6f, +0x14, 0x03, 0x07, 0xda, 0x87, 0x58, 0xb3, 0x67, 0x43, 0x40, 0x3e, 0x49, 0x31, 0x5c, 0x8b, 0x97, +0xba, 0xce, 0xdc, 0x8b, 0x2b, 0xfa, 0x98, 0xfd, 0xe6, 0x79, 0x00, 0x72, 0x66, 0x9a, 0x99, 0xf9, +0x22, 0xac, 0x7d, 0xc3, 0x3d, 0x52, 0xd1, 0x09, 0xc3, 0x2a, 0xa1, 0xff, 0x9d, 0x0d, 0x67, 0x77, +0x1e, 0x14, 0x31, 0xd7, 0x4a, 0x03, 0x7d, 0xf6, 0x3e, 0x76, 0x5a, 0x52, 0xbe, 0x11, 0x9e, 0x07, +0xdf, 0x16, 0x7c, 0x45, 0x6e, 0x30, 0x14, 0x55, 0x40, 0x47, 0x13, 0xc8, 0x28, 0x39, 0xff, 0xb0, +0xc7, 0x76, 0x7d, 0xf7, 0x7c, 0x9a, 0xe3, 0x8a, 0x80, 0x09, 0x2d, 0x08, 0x6f, 0x6c, 0x4d, 0x73, +0xb4, 0x95, 0xf1, 0xb6, 0xa0, 0x45, 0xf0, 0xb2, 0x2d, 0x4b, 0xb8, 0x03, 0x49, 0x0d, 0xee, 0xaf, +0xc2, 0x61, 0xfd, 0x5d, 0xe7, 0x6e, 0xaa, 0x7f, 0xf6, 0x7c, 0xbd, 0x75, 0xd8, 0xce, 0x62, 0xa0, +0x3c, 0x19, 0x0c, 0x6f, 0xb4, 0x00, 0x96, 0x7b, 0x4d, 0x87, 0x2c, 0xbb, 0x26, 0xb6, 0xbe, 0x51, +0x4c, 0x6b, 0x93, 0xe4, 0x0d, 0x9d, 0x53, 0x71, 0x0c, 0xbe, 0x85, 0xcd, 0xd8, 0x33, 0x41, 0x9a, +0xcf, 0x0b, 0x1b, 0xb1, 0xbe, 0x59, 0x99, 0x0b, 0x68, 0xa7, 0x88, 0x50, 0xda, 0x8b, 0x5c, 0xf2, +0x30, 0x01, 0xa7, 0x2a, 0x7b, 0x9d, 0xb5, 0xb7, 0x2a, 0x4a, 0xd4, 0xdc, 0x00, 0xc2, 0x42, 0xec, +0x70, 0x14, 0x6a, 0x4f, 0x68, 0x03, 0x0d, 0x09, 0x6c, 0x4b, 0x58, 0x1c, 0xf2, 0xf4, 0x27, 0x7a, +0x33, 0x7f, 0xda, 0xb0, 0x97, 0x70, 0x65, 0xd6, 0x54, 0xc9, 0xd3, 0xb2, 0x56, 0xd6, 0x57, 0xa6, +0x91, 0x59, 0x42, 0x30, 0x19, 0xca, 0xea, 0x9e, 0xc9, 0xe3, 0xab, 0x31, 0xe2, 0x60, 0xe9, 0xfa, +0x75, 0x74, 0xb8, 0x3d, 0x02, 0xac, 0xe6, 0xc4, 0x0f, 0x2d, 0x47, 0x2f, 0x24, 0x3d, 0x5c, 0xd0, +0x61, 0x0c, 0x3d, 0x06, 0x30, 0xaa, 0x50, 0x6f, 0x1d, 0xea, 0x81, 0x12, 0x7a, 0xac, 0x8f, 0x03, +0x4f, 0xc5, 0x34, 0xbb, 0x54, 0xac, 0xc7, 0x42, 0x6f, 0x12, 0x4e, 0x8c, 0x77, 0xa4, 0xd1, 0xed, +0x4c, 0x46, 0x12, 0xd1, 0x10, 0xd9, 0xa7, 0x61, 0xc6, 0x74, 0x46, 0x76, 0x7f, 0xc4, 0x9f, 0x88, +0xe9, 0x45, 0x15, 0x33, 0x4e, 0xb6, 0x05, 0xd8, 0x3e, 0xf6, 0x68, 0x9e, 0x56, 0xb4, 0x83, 0x98, +0xe8, 0x6a, 0xab, 0x98, 0x35, 0x39, 0x9f, 0xb9, 0xd8, 0xb3, 0x1d, 0x9c, 0x6c, 0x0d, 0x2b, 0xd0, +0xb1, 0x85, 0x6f, 0xd0, 0xce, 0xc8, 0x01, 0x82, 0x28, 0x89, 0xf0, 0x2f, 0x60, 0x77, 0xa4, 0xb8, +0x9f, 0x3d, 0xf3, 0x6e, 0x30, 0xde, 0xe3, 0xbc, 0x39, 0x0d, 0xec, 0x05, 0x7d, 0x8b, 0x7d, 0xb7, +0x40, 0x8c, 0xc0, 0x9f, 0xe9, 0xf3, 0x6a, 0xdd, 0x87, 0xbb, 0xe7, 0x2f, 0xf1, 0xcc, 0x6f, 0x0d, +0x2b, 0x9d, 0x46, 0x96, 0xd2, 0xf8, 0xda, 0xe8, 0x65, 0xd0, 0x19, 0xf1, 0xcd, 0xac, 0xf5, 0xfa, +0xd2, 0xfa, 0xf9, 0x05, 0xfb, 0x48, 0x8a, 0x74, 0x1e, 0x11, 0x0c, 0xfa, 0x8a, 0xa3, 0x86, 0x2e, +0x7e, 0x4d, 0x96, 0xd0, 0xd8, 0x43, 0x45, 0x34, 0x00, 0x6b, 0x8b, 0xe3, 0x41, 0x77, 0x98, 0x77, +0x71, 0xd7, 0x05, 0xa1, 0xb5, 0x7e, 0x24, 0xf2, 0x1c, 0x2b, 0x15, 0x80, 0xb5, 0x7d, 0x36, 0x96, +0x2b, 0x70, 0xe8, 0x40, 0x65, 0xd6, 0xd9, 0xf2, 0x9b, 0xc2, 0xad, 0xc0, 0x99, 0x81, 0xc2, 0xa0, +0x6d, 0x2a, 0x6e, 0x6e, 0xc5, 0x20, 0xf3, 0x6a, 0x4c, 0x7f, 0x7a, 0x12, 0x27, 0x6b, 0x78, 0xfd, +0x1b, 0xb5, 0x16, 0x96, 0x03, 0x57, 0x1e, 0x75, 0x1b, 0xfd, 0x41, 0x5a, 0xe8, 0x16, 0x26, 0x94, +0xd9, 0x58, 0x7b, 0x99, 0xaa, 0x43, 0x65, 0x9b, 0x33, 0x9b, 0xd8, 0xa3, 0x63, 0x67, 0x99, 0xe9, +0x42, 0x38, 0x24, 0x71, 0xc2, 0x43, 0x53, 0x53, 0xec, 0x72, 0x59, 0x0a, 0xb8, 0x64, 0x40, 0x2c, +0xcd, 0x3d, 0x9f, 0x1c, 0xea, 0xe7, 0x50, 0xe9, 0x7d, 0xa4, 0x0f, 0x61, 0x81, 0x2c, 0x8c, 0x0f, +0xcc, 0xe7, 0xca, 0x88, 0xc5, 0xe6, 0xc2, 0x6c, 0x12, 0x39, 0x66, 0xbc, 0x47, 0xa3, 0xec, 0x0e, +0x65, 0x3e, 0xdd, 0x2a, 0xc0, 0xed, 0x9d, 0x20, 0x51, 0x0b, 0xc5, 0x0e, 0xfe, 0xbf, 0xac, 0xa8, +0x55, 0xed, 0x18, 0x9d, 0xed, 0x9f, 0x1e, 0xd3, 0xb6, 0xad, 0x50, 0x65, 0xa2, 0x76, 0xe2, 0x7c, +0xd3, 0xca, 0x4c, 0x36, 0x91, 0xb7, 0x02, 0x29, 0x94, 0x01, 0xb6, 0x18, 0xcc, 0x31, 0xd6, 0xc9, +0xd1, 0x60, 0x8a, 0x12, 0x1b, 0xb3, 0xf4, 0x30, 0xca, 0xdd, 0x76, 0x17, 0xa5, 0x36, 0x90, 0x5d, +0x7e, 0xeb, 0xbb, 0xc6, 0x59, 0xba, 0xba, 0xc9, 0xac, 0x79, 0x23, 0x0a, 0x2c, 0xc4, 0x44, 0x8a, +0x98, 0x11, 0xe4, 0x77, 0xeb, 0x52, 0x82, 0x19, 0x8d, 0x45, 0x00, 0x19, 0x42, 0xbc, 0x67, 0x2c, +0x30, 0x18, 0x81, 0x9d, 0xdb, 0x6c, 0x0e, 0xc0, 0xf1, 0x17, 0x78, 0x46, 0x01, 0x26, 0xf4, 0xc5, +0x94, 0xda, 0x36, 0xe0, 0xf3, 0xda, 0x90, 0xe8, 0x5c, 0x93, 0x64, 0x43, 0xfe, 0x63, 0x8a, 0x24, +0x06, 0x89, 0x01, 0x7d, 0xb7, 0xe7, 0xa0, 0x42, 0x4d, 0xbf, 0xb5, 0xf2, 0xc2, 0x35, 0x61, 0xa2, +0xa4, 0xa3, 0xc5, 0xc4, 0xc2, 0x5e, 0x4c, 0x3c, 0x5b, 0x16, 0x58, 0x91, 0x3d, 0x4d, 0xda, 0x2e, +0xab, 0x6e, 0x3d, 0xe7, 0x17, 0xd8, 0x22, 0xee, 0x8f, 0xaa, 0x97, 0x72, 0x0f, 0xba, 0x39, 0x7a, +0xd4, 0x8b, 0x30, 0x7a, 0xff, 0xc9, 0xf9, 0xb3, 0xbe, 0x49, 0x2a, 0xd0, 0x70, 0x01, 0x6d, 0xfb, +0x8b, 0x50, 0x4e, 0x93, 0x49, 0xe5, 0x71, 0x10, 0xe1, 0x41, 0x80, 0xe3, 0xb7, 0x95, 0xd6, 0x0c, +0xbe, 0xd9, 0x83, 0xb0, 0x3a, 0x88, 0x6e, 0x32, 0xb0, 0xae, 0xa2, 0xe2, 0x50, 0x3e, 0x82, 0x09, +0x5c, 0x8f, 0x79, 0x68, 0x82, 0x40, 0x77, 0xb7, 0x7a, 0x52, 0x04, 0x33, 0x94, 0x6d, 0xae, 0x66, +0x51, 0x70, 0x8f, 0x67, 0xe3, 0x3c, 0xfa, 0x3b, 0x20, 0xe1, 0x84, 0xcd, 0x0a, 0xdc, 0x1d, 0x6b, +0x31, 0xf1, 0xa9, 0x2d, 0x19, 0xdc, 0x1a, 0x5d, 0x43, 0xa7, 0x79, 0xb8, 0xbd, 0xd4, 0xf6, 0x7b, +0xcb, 0xfd, 0x93, 0xeb, 0x03, 0x6f, 0x16, 0x15, 0xd3, 0x6d, 0xc5, 0x99, 0x28, 0xd8, 0xa3, 0xba, +0x30, 0xc0, 0x55, 0x39, 0x8f, 0x75, 0x6c, 0x0a, 0xc3, 0xfc, 0x1b, 0x3f, 0x80, 0x4c, 0x7f, 0xb2, +0x14, 0x6c, 0x7e, 0xe6, 0x47, 0x53, 0xae, 0xc2, 0x99, 0x11, 0xd6, 0x20, 0x0f, 0x5b, 0xd8, 0xaf, +0x20, 0x81, 0x8b, 0x74, 0x67, 0xb4, 0x27, 0x69, 0x40, 0xb9, 0x9c, 0x1e, 0xa4, 0x20, 0x4b, 0x57, +0xb9, 0x02, 0xcc, 0xe3, 0x51, 0x2b, 0x33, 0xca, 0x6f, 0xae, 0x70, 0xcb, 0xa1, 0x6f, 0xfc, 0xaf, +0xdb, 0x87, 0xc8, 0x78, 0x5f, 0x7c, 0xe7, 0xff, 0x75, 0xf6, 0xaf, 0x24, 0xde, 0x30, 0x18, 0x3a, +0x0d, 0x73, 0x21, 0x0b, 0x26, 0xa7, 0x41, 0xb2, 0xa8, 0x81, 0x7e, 0xd5, 0x3a, 0xd8, 0x04, 0x9a, +0x64, 0xa9, 0x55, 0x29, 0xb4, 0x83, 0x8d, 0xcb, 0x6c, 0xa5, 0x7f, 0x1e, 0x42, 0xad, 0xbc, 0xbd, +0xb1, 0x79, 0xac, 0xab, 0x0b, 0x9c, 0x19, 0xcf, 0x59, 0x1f, 0x5a, 0x1f, 0x33, 0x80, 0xe8, 0x6d, +0x06, 0xcc, 0xfb, 0x70, 0xc8, 0x39, 0x1b, 0xc1, 0x27, 0xdf, 0x0e, 0x51, 0x3a, 0xc3, 0xd0, 0x47, +0x86, 0xb4, 0x91, 0xcb, 0x01, 0x19, 0x05, 0x3f, 0xf3, 0xc9, 0xe6, 0x08, 0x7e, 0x0c, 0x99, 0x5c, +0x9a, 0x9e, 0xb4, 0x76, 0xc4, 0x81, 0x12, 0x17, 0xc5, 0x32, 0x5f, 0x35, 0x7f, 0xee, 0x46, 0x2b, +0x61, 0xbb, 0x3a, 0x1a, 0xbc, 0x4c, 0x48, 0xcb, 0x7a, 0xad, 0xf7, 0xda, 0xb3, 0xc7, 0xb9, 0x68, +0x2f, 0x83, 0x9b, 0x78, 0x2d, 0x36, 0xb4, 0x00, 0xab, 0x89, 0x88, 0xa2, 0x23, 0x47, 0x56, 0x47, +0x93, 0x69, 0x54, 0xfe, 0xcb, 0x45, 0xb9, 0x91, 0xdd, 0x78, 0x2c, 0x42, 0x88, 0x43, 0xd1, 0xd8, +0x9a, 0xb7, 0x5c, 0xe3, 0xf1, 0x26, 0xb6, 0x36, 0xa5, 0x88, 0xa3, 0x29, 0xbd, 0x7b, 0x92, 0x60, +0xd8, 0x0e, 0x53, 0x6a, 0xaa, 0xc4, 0x3d, 0x38, 0x0d, 0x69, 0x31, 0xba, 0x8a, 0x4d, 0xac, 0xb4, +0x0b, 0xaf, 0xe2, 0xc2, 0x5d, 0x9c, 0x6c, 0x56, 0x9f, 0x56, 0x6a, 0xc0, 0x99, 0x14, 0x21, 0xd3, +0x06, 0x84, 0xc3, 0xbd, 0x16, 0x24, 0x44, 0xf7, 0xa0, 0x1e, 0x7b, 0xc7, 0xf6, 0xb2, 0x15, 0x9b, +0x01, 0xe4, 0xdc, 0x6c, 0x2b, 0xa6, 0x5b, 0x97, 0xc1, 0x8d, 0x12, 0xfc, 0x84, 0x77, 0x01, 0x4d, +0xa7, 0x45, 0x86, 0x82, 0xc4, 0xe5, 0xe7, 0xf3, 0xed, 0x35, 0xb9, 0x95, 0x46, 0xa9, 0x50, 0x51, +0xa7, 0xdf, 0x68, 0x02, 0x95, 0xc2, 0x71, 0x21, 0xec, 0xca, 0x1f, 0xe8, 0xdc, 0x49, 0xcf, 0x61, +0xbc, 0xf6, 0x32, 0x26, 0xa4, 0xa3, 0xe5, 0x44, 0x98, 0xe4, 0x2a, 0x6b, 0x94, 0x5c, 0x11, 0x11, +0xd1, 0x97, 0x13, 0x48, 0x47, 0x8f, 0x51, 0xef, 0xf6, 0x7a, 0x3c, 0xc0, 0xcb, 0x26, 0x28, 0xca, +0x30, 0xb0, 0xad, 0x81, 0xba, 0xd0, 0x93, 0x46, 0x48, 0x20, 0xfb, 0x6a, 0x22, 0x0b, 0x9b, 0x73, +0x7a, 0x80, 0x9f, 0x12, 0xe8, 0x36, 0xa5, 0x54, 0x49, 0xcb, 0xd3, 0x9a, 0x58, 0x4d, 0xd7, 0x9d, +0x2e, 0x51, 0xbf, 0xf7, 0xb9, 0xd1, 0xf8, 0x7c, 0x5d, 0x29, 0x6c, 0x03, 0x10, 0x49, 0xa0, 0x8d, +0x2d, 0x31, 0x68, 0x8c, 0x0a, 0xf3, 0xbc, 0xba, 0xf9, 0xc3, 0x21, 0xad, 0x01, 0xce, 0xd9, 0xd9, +0x3c, 0xc2, 0xcc, 0xb2, 0xbd, 0xfc, 0x72, 0xfe, 0xe1, 0xc9, 0xcf, 0xb7, 0x69, 0xab, 0xc5, 0x1a, +0x18, 0x03, 0x41, 0x69, 0xb0, 0xe6, 0x22, 0x08, 0xfa, 0xb8, 0x23, 0x8a, 0xf0, 0xb1, 0x12, 0xd8, +0x50, 0x06, 0xd0, 0x92, 0x47, 0x34, 0xc5, 0xd0, 0x52, 0x06, 0x17, 0x95, 0xe7, 0x79, 0xa0, 0x02, +0x8e, 0xc4, 0x57, 0x16, 0xc8, 0xa7, 0x1a, 0x94, 0x5f, 0x3d, 0x57, 0x0c, 0xfd, 0x51, 0x52, 0x1b, +0x19, 0x24, 0xbb, 0x3c, 0x57, 0x21, 0x45, 0xf7, 0xdd, 0xaa, 0xf7, 0xe2, 0x4a, 0x05, 0x9c, 0x7f, +0x59, 0xdc, 0x0a, 0xfc, 0x9e, 0x4a, 0x31, 0x19, 0x34, 0x89, 0x22, 0x10, 0xe5, 0x6b, 0xd8, 0x39, +0xd2, 0x47, 0xca, 0x9e, 0x8e, 0x6b, 0x18, 0xbe, 0x62, 0x02, 0xfd, 0x27, 0x11, 0xf3, 0x1b, 0x40, +0x40, 0xaf, 0x47, 0xad, 0x4d, 0x40, 0xbd, 0x05, 0x58, 0xe3, 0x27, 0xfc, 0x29, 0x92, 0xc6, 0x23, +0xdc, 0x54, 0xd2, 0x69, 0xde, 0x25, 0x85, 0xa6, 0xfe, 0x75, 0x13, 0x40, 0x65, 0xce, 0x40, 0x23, +0x2e, 0xaa, 0x2f, 0xd2, 0x3e, 0x36, 0x2b, 0x2a, 0x8c, 0xdd, 0x3d, 0xb7, 0xbf, 0x3b, 0xc1, 0x38, +0x59, 0xf7, 0xb5, 0xe0, 0x5a, 0xc1, 0x41, 0xc3, 0xb7, 0x6c, 0x70, 0x4f, 0xea, 0xd2, 0xd1, 0xdb, +0x3b, 0x1b, 0xd9, 0xc0, 0xe0, 0x5f, 0x7a, 0x4b, 0xb5, 0xa2, 0x0f, 0xea, 0xe8, 0x51, 0x2a, 0x30, +0xc2, 0xbe, 0x2d, 0x80, 0x83, 0x0e, 0xa7, 0x17, 0xba, 0xf3, 0x66, 0x02, 0x4d, 0x51, 0x6c, 0xd9, +0xe6, 0x11, 0x03, 0xe6, 0x8e, 0x46, 0x99, 0x89, 0x64, 0x10, 0x26, 0x20, 0x63, 0x09, 0xb3, 0xa0, +0xfc, 0x90, 0x8f, 0x6d, 0x34, 0xa1, 0x74, 0x08, 0x24, 0x58, 0xd4, 0xe0, 0x3a, 0x39, 0x47, 0xa1, +0x74, 0xc8, 0x01, 0x57, 0x5d, 0xdc, 0x73, 0xb4, 0xfe, 0xf8, 0x27, 0x63, 0x78, 0x93, 0x36, 0x21, +0x07, 0xf2, 0xbd, 0xc1, 0x06, 0x9f, 0x3c, 0x6a, 0x02, 0x29, 0xd8, 0x50, 0x0e, 0x6b, 0xed, 0x64, +0x2a, 0xc0, 0x97, 0xe2, 0x35, 0x60, 0x02, 0x68, 0xa2, 0x64, 0xcf, 0x34, 0x90, 0x63, 0x75, 0x0b, +0x49, 0x93, 0x61, 0xfa, 0xec, 0xc0, 0xff, 0x46, 0xf3, 0x50, 0xdf, 0x31, 0x17, 0x77, 0x82, 0x1f, +0x55, 0x78, 0x5e, 0x58, 0x99, 0x65, 0xf7, 0xd4, 0xd4, 0x17, 0x66, 0x5d, 0x27, 0xc4, 0xd9, 0xe4, +0x84, 0x35, 0xf5, 0x74, 0x20, 0x84, 0x3c, 0x87, 0xff, 0x7b, 0x22, 0x49, 0x21, 0xae, 0x78, 0x09, +0x3b, 0x98, 0x08, 0xd2, 0xfa, 0x07, 0x93, 0x41, 0xef, 0xff, 0xc2, 0x7b, 0x52, 0xf2, 0x6f, 0x86, +0xb4, 0xc2, 0x3d, 0x1a, 0x40, 0x5a, 0x0b, 0x79, 0x8b, 0x83, 0xc2, 0x69, 0xa3, 0xb1, 0xea, 0xec, +0x0e, 0xe9, 0x18, 0xa7, 0x1d, 0x98, 0x17, 0xd9, 0x10, 0xb8, 0xec, 0xb5, 0x05, 0xd5, 0x53, 0x99, +0x05, 0x8d, 0x2d, 0x29, 0x43, 0xe3, 0x76, 0x37, 0x77, 0x3a, 0x6f, 0xa3, 0x32, 0x1d, 0x4a, 0x23, +0xf4, 0xbc, 0xf3, 0x2a, 0x10, 0xf9, 0x99, 0xc7, 0x85, 0x22, 0xb9, 0x80, 0x4d, 0x91, 0x7e, 0x98, +0x7a, 0x8b, 0x8c, 0xc0, 0x91, 0x8d, 0x17, 0xa4, 0x51, 0x0b, 0x9b, 0xb0, 0x91, 0xc9, 0xc2, 0xdf, +0x72, 0x0e, 0xf3, 0xfb, 0xfa, 0x5c, 0x1d, 0x0a, 0x07, 0x13, 0x80, 0x4e, 0xcc, 0x59, 0x9c, 0x6c, +0x04, 0xde, 0x96, 0x79, 0x55, 0xf1, 0xb6, 0x39, 0xcf, 0x01, 0xd1, 0x47, 0x8d, 0xba, 0x06, 0x13, +0xcd, 0x8d, 0x26, 0x9f, 0xe8, 0xf0, 0x36, 0x72, 0x5e, 0x44, 0xbb, 0x79, 0x8c, 0x70, 0xe2, 0xa5, +0xb3, 0xac, 0x13, 0x0d, 0x2f, 0x60, 0x84, 0x34, 0x13, 0x68, 0x25, 0xe4, 0x13, 0x41, 0xfa, 0x64, +0xef, 0x18, 0x1a, 0x3e, 0x27, 0x13, 0x71, 0x47, 0xa9, 0x58, 0xa2, 0xdb, 0x8e, 0x01, 0x59, 0x86, +0x35, 0x69, 0x27, 0x90, 0x5b, 0xca, 0x96, 0xad, 0x8b, 0xce, 0x4e, 0xaa, 0xbf, 0xba, 0x4a, 0x76, +0x16, 0x58, 0x0e, 0xf7, 0x5c, 0xf9, 0x4d, 0xb6, 0x4c, 0xb8, 0x2b, 0x36, 0x2e, 0x93, 0x40, 0x22, +0xbb, 0xc9, 0xe3, 0xd2, 0x1d, 0x4b, 0x04, 0x44, 0x33, 0x6b, 0x82, 0xd4, 0xbb, 0x8c, 0x9a, 0x86, +0xb7, 0xde, 0x8d, 0x99, 0x55, 0x25, 0x1d, 0x41, 0x71, 0xb2, 0x6f, 0x62, 0x5e, 0x75, 0x54, 0x05, +0x98, 0x8c, 0xab, 0x38, 0xfe, 0x98, 0xf7, 0x21, 0xb5, 0x5a, 0xce, 0x1f, 0x0c, 0x39, 0x53, 0x00, +0x0e, 0x0a, 0x00, 0x8a, 0xfa, 0x20, 0xe8, 0xf9, 0xb0, 0x77, 0x0b, 0x87, 0x34, 0x4d, 0xba, 0x5b, +0x17, 0xd0, 0x06, 0x65, 0xfb, 0x4d, 0xfa, 0x32, 0x98, 0x17, 0x0e, 0x2f, 0xba, 0x6a, 0x71, 0x2b, +0x1f, 0xde, 0x1f, 0x52, 0x92, 0x28, 0xcd, 0x36, 0x1b, 0x42, 0x65, 0x77, 0xef, 0xb6, 0x5e, 0x5b, +0x4b, 0x58, 0x00, 0x54, 0xcb, 0xb3, 0xdf, 0x0c, 0x42, 0xbb, 0x99, 0x20, 0x73, 0xca, 0xce, 0xa2, +0xc3, 0x3e, 0x73, 0x36, 0x67, 0x72, 0x97, 0x6b, 0xbe, 0xd9, 0x98, 0x49, 0x75, 0xeb, 0xaa, 0xbb, +0x62, 0x07, 0x62, 0x65, 0x1f, 0xc3, 0x08, 0x07, 0x79, 0x84, 0xc4, 0x54, 0xf4, 0x06, 0x4c, 0x8e, +0x0e, 0x09, 0xbe, 0x3b, 0xa6, 0xfe, 0xd7, 0x30, 0x94, 0xf7, 0x97, 0x85, 0xe9, 0xc9, 0xcd, 0xb5, +0x1a, 0x45, 0x8f, 0x4a, 0x98, 0x5d, 0x44, 0x74, 0x4f, 0xb1, 0xbe, 0x62, 0x92, 0xb2, 0x44, 0x6d, +0x48, 0xa8, 0xea, 0x11, 0xd1, 0x84, 0xba, 0x48, 0xe7, 0x75, 0xcf, 0x08, 0x7e, 0xe8, 0x7f, 0x9b, +0x6d, 0x5c, 0x94, 0x56, 0xe8, 0xac, 0x46, 0x93, 0xb8, 0x5f, 0x42, 0x68, 0xa2, 0xde, 0x1a, 0xc9, +0x1a, 0xd6, 0xa0, 0xf1, 0xed, 0xea, 0x95, 0x92, 0xfb, 0xe1, 0x1c, 0xf1, 0x1d, 0x20, 0xf8, 0xb9, +0x72, 0xc4, 0x9b, 0xe4, 0x9c, 0x36, 0x1f, 0xdf, 0xe3, 0x8a, 0xc2, 0x40, 0xae, 0x4e, 0xc9, 0x1d, +0x59, 0x1c, 0xd4, 0xed, 0x8f, 0x03, 0xe8, 0x69, 0x3c, 0xdc, 0x22, 0xe9, 0x34, 0xa5, 0x19, 0x6f, +0xa6, 0xbf, 0x43, 0xb8, 0x65, 0xe0, 0x4f, 0xcb, 0x75, 0x8a, 0xfe, 0x7f, 0x75, 0xc0, 0xf3, 0xb7, +0xb3, 0xd4, 0xca, 0x59, 0x59, 0x3c, 0x36, 0x5c, 0x33, 0xc4, 0x83, 0x6f, 0xc8, 0xe4, 0x41, 0xdb, +0x36, 0x89, 0x08, 0xa8, 0x0d, 0x18, 0xfb, 0x8d, 0x56, 0xa1, 0xff, 0xb6, 0x2e, 0xaa, 0x30, 0x59, +0x90, 0x59, 0x82, 0x7c, 0x1a, 0x81, 0x05, 0x34, 0xa8, 0x07, 0xca, 0xca, 0xec, 0xdd, 0x14, 0x68, +0x11, 0x5a, 0x9a, 0xe4, 0xd5, 0x48, 0xf0, 0x91, 0x79, 0x26, 0x8d, 0xcc, 0x11, 0xf5, 0x80, 0xf3, +0x19, 0x19, 0x4c, 0xc8, 0x5d, 0xd5, 0x00, 0x98, 0x39, 0xab, 0x54, 0xec, 0x02, 0x53, 0x4d, 0xb3, +0xa5, 0x33, 0xbb, 0x5d, 0x52, 0xec, 0x46, 0xfa, 0x37, 0x99, 0x90, 0xda, 0x6a, 0x28, 0x7c, 0x3f, +0x42, 0xe3, 0xf5, 0x7c, 0x70, 0x64, 0x86, 0x3b, 0x4e, 0x88, 0x7d, 0x8c, 0xc9, 0xef, 0x59, 0xc9, +0x26, 0x6c, 0xa0, 0x47, 0x5b, 0xb0, 0x3c, 0x9a, 0xec, 0xf3, 0x79, 0x58, 0x5d, 0x53, 0x46, 0xd3, +0xcb, 0xc9, 0xba, 0x58, 0x5f, 0xab, 0x38, 0xfb, 0xd6, 0x68, 0xca, 0x84, 0xff, 0xd1, 0x0f, 0x80, +0x69, 0xd2, 0x31, 0x82, 0x84, 0xa5, 0xe6, 0x30, 0x25, 0x55, 0xb6, 0x30, 0xa6, 0xd9, 0xdf, 0x0b, +0x91, 0xc2, 0x68, 0x4e, 0xc5, 0xa0, 0xf6, 0x54, 0xf6, 0x5c, 0xd0, 0x8e, 0x15, 0xa4, 0xb5, 0x48, +0x22, 0x88, 0x87, 0x5e, 0xbe, 0xfc, 0x0e, 0x25, 0x4a, 0x55, 0x64, 0xf5, 0x76, 0x18, 0xeb, 0x23, +0x1d, 0xe0, 0xf6, 0x2c, 0x2b, 0x8c, 0x45, 0xdb, 0xc5, 0x9f, 0x76, 0x78, 0xb9, 0x15, 0x36, 0x83, +0x38, 0xb1, 0x90, 0x5d, 0x59, 0x40, 0xa6, 0x25, 0xa2, 0x4f, 0xee, 0xca, 0x45, 0xc1, 0xc2, 0x5e, +0x25, 0xbf, 0x39, 0xf1, 0x0e, 0x3f, 0x9f, 0x3f, 0xd9, 0x0e, 0x60, 0xc5, 0x30, 0xce, 0xca, 0xff, +0x2e, 0x13, 0x83, 0xf2, 0xc9, 0x9e, 0xc0, 0x9a, 0x29, 0xce, 0xd4, 0x65, 0xdd, 0xc5, 0x7e, 0x63, +0x00, 0x48, 0xc0, 0xd8, 0x25, 0x7c, 0x7d, 0x75, 0x81, 0x22, 0x2a, 0x88, 0x27, 0x51, 0x80, 0xf2, +0x17, 0x2b, 0x9d, 0x6a, 0x94, 0x45, 0x0d, 0xff, 0x19, 0x83, 0x6d, 0xef, 0x08, 0x59, 0xee, 0x75, +0x0c, 0x70, 0x27, 0x35, 0xa5, 0x77, 0xb7, 0x05, 0x05, 0x70, 0xb0, 0x8f, 0x93, 0xea, 0xbc, 0xf2, +0x7c, 0xb1, 0x86, 0xa5, 0xaa, 0x63, 0x41, 0x10, 0x35, 0x8d, 0x2c, 0xa2, 0x9c, 0x1e, 0x60, 0x0a, +0x23, 0x15, 0x58, 0x8a, 0xc6, 0x81, 0xb0, 0xfe, 0x59, 0x02, 0x66, 0xc0, 0xc5, 0x29, 0xba, 0x81, +0xbe, 0x3a, 0xfa, 0x8e, 0xc7, 0x87, 0xb6, 0x10, 0xc2, 0x9f, 0xb2, 0x00, 0x42, 0x76, 0xe0, 0x9d, +0xe7, 0x9e, 0xf5, 0x3c, 0x10, 0x0f, 0xb2, 0xaf, 0xe6, 0x85, 0xec, 0xf9, 0x08, 0xb0, 0xf9, 0x69, +0xc3, 0x54, 0xc9, 0x6a, 0x3b, 0x97, 0x9d, 0xcf, 0x3f, 0xcf, 0x92, 0x22, 0xf3, 0x7a, 0xcf, 0x66, +0xc6, 0x0a, 0x1d, 0x66, 0xf0, 0x95, 0x04, 0x04, 0xd9, 0xb7, 0xe3, 0x58, 0x26, 0xcf, 0xf5, 0xd9, +0x07, 0x99, 0x73, 0x17, 0xab, 0x6b, 0xc8, 0x72, 0x15, 0xcb, 0x2e, 0x9a, 0x26, 0x6e, 0x13, 0x57, +0xfd, 0xb1, 0x71, 0xa6, 0x07, 0x55, 0x72, 0x9a, 0x28, 0xb9, 0x44, 0x08, 0x73, 0x2b, 0x11, 0x31, +0xb3, 0xdd, 0xce, 0x37, 0x49, 0x68, 0x9c, 0x74, 0x16, 0x51, 0x5e, 0x63, 0xfc, 0x09, 0x01, 0x79, +0x63, 0x84, 0xb3, 0x89, 0xf3, 0xd8, 0x54, 0xec, 0x24, 0x07, 0x5e, 0xcf, 0xa7, 0xe3, 0x10, 0x31, +0x51, 0xea, 0x25, 0xde, 0x00, 0xf8, 0xcd, 0x79, 0xdc, 0xcc, 0x8e, 0x15, 0xaf, 0xf0, 0xf1, 0x10, +0xc8, 0x3e, 0xec, 0x43, 0x48, 0xf5, 0x43, 0x22, 0x97, 0x26, 0xeb, 0xc4, 0x87, 0x6f, 0x69, 0xb7, +0xec, 0x4a, 0xe0, 0x86, 0xcf, 0xe8, 0x80, 0x4a, 0xbc, 0x9a, 0x12, 0xff, 0x45, 0x7d, 0x53, 0x24, +0x20, 0x7b, 0x72, 0xac, 0x39, 0xd0, 0x18, 0xed, 0x8b, 0x2b, 0x55, 0xfe, 0x05, 0x08, 0xab, 0xe0, +0xd0, 0x4f, 0x1f, 0x71, 0x26, 0x2b, 0xf5, 0xc2, 0xe1, 0xb7, 0x56, 0xcb, 0x8b, 0xb0, 0xaf, 0x20, +0xb1, 0x9a, 0x54, 0x06, 0x61, 0xb5, 0x10, 0x37, 0x19, 0x3e, 0xd4, 0xc0, 0x39, 0x86, 0x3a, 0xba, +0xad, 0x1d, 0x01, 0xd7, 0xee, 0xe3, 0x14, 0x1e, 0xb7, 0x8c, 0x6f, 0x88, 0x8d, 0xa8, 0x49, 0x62, +0x19, 0xf1, 0xc9, 0x4a, 0x92, 0x65, 0x5d, 0x37, 0x47, 0x0b, 0x78, 0x53, 0x68, 0x98, 0xd4, 0xa4, +0xf1, 0x8d, 0x9c, 0xa4, 0x65, 0xa4, 0x54, 0xec, 0xbb, 0x57, 0x32, 0xc8, 0x86, 0x36, 0x0a, 0x18, +0x01, 0x8c, 0x4f, 0xf1, 0xbb, 0x0b, 0xe1, 0x15, 0x53, 0xf9, 0xbe, 0xc3, 0x18, 0xb5, 0x5b, 0x3a, +0xe9, 0x6c, 0xac, 0xae, 0x7a, 0x48, 0xa2, 0xea, 0x61, 0x5b, 0x8a, 0x0d, 0xd6, 0x6d, 0xba, 0x31, +0x7f, 0xe1, 0x87, 0x0f, 0x1c, 0x83, 0x7e, 0xf4, 0x13, 0x34, 0xc9, 0xf3, 0x29, 0x84, 0x74, 0x64, +0x1d, 0xa6, 0x10, 0x32, 0x5f, 0x35, 0x32, 0x00, 0x3e, 0xff, 0xa5, 0x11, 0x78, 0x17, 0xc8, 0xb7, +0x50, 0x09, 0xce, 0x2e, 0x7e, 0xa0, 0xcd, 0xec, 0xa6, 0x6f, 0x8f, 0xf6, 0x92, 0x3e, 0x97, 0x77, +0x00, 0x9f, 0x27, 0x54, 0x42, 0xc7, 0x6c, 0x28, 0x68, 0x40, 0x6a, 0xb5, 0xb2, 0x20, 0xf1, 0x2c, +0x58, 0x95, 0x19, 0x1a, 0x5c, 0x5a, 0x8c, 0xeb, 0x0f, 0xd8, 0x2e, 0xf8, 0xc5, 0x24, 0xc8, 0xfa, +0x81, 0x26, 0xf1, 0xa8, 0xb8, 0x28, 0x13, 0x0b, 0x6c, 0x4b, 0xb8, 0x72, 0x7b, 0xda, 0x71, 0x50, +0xc4, 0x13, 0x58, 0x05, 0x48, 0xfc, 0x85, 0x4e, 0x62, 0x98, 0x59, 0xe4, 0xb4, 0x2d, 0xdd, 0x5d, +0x5d, 0xf5, 0x41, 0x16, 0x9d, 0x1c, 0x89, 0x9d, 0x17, 0x4e, 0x0e, 0xea, 0xea, 0x19, 0x75, 0x42, +0x4a, 0x01, 0x91, 0x3c, 0x16, 0x42, 0x39, 0x24, 0x3a, 0xb3, 0x2c, 0xa7, 0x9d, 0x17, 0xc7, 0xd9, +0x0c, 0x8b, 0x51, 0xde, 0x86, 0x8a, 0xcc, 0x91, 0x0a, 0xdc, 0x54, 0xab, 0xf9, 0x27, 0x8b, 0xff, +0x04, 0xfc, 0x42, 0x28, 0x3f, 0x9e, 0xd1, 0x59, 0x3e, 0x00, 0x84, 0x8a, 0x8c, 0x69, 0x43, 0x7e, +0xe4, 0x7f, 0x8a, 0x15, 0x61, 0x37, 0x5a, 0xb3, 0x2c, 0xe0, 0x16, 0x0d, 0xac, 0x96, 0xc5, 0xe4, +0xd8, 0x28, 0xe2, 0xd8, 0x8e, 0xc9, 0x27, 0x62, 0x4b, 0xce, 0x04, 0xb4, 0x83, 0x3e, 0x80, 0x82, +0x41, 0x42, 0x28, 0xae, 0x95, 0x7f, 0x15, 0x4e, 0x28, 0x9c, 0xe1, 0xd2, 0x39, 0xad, 0x08, 0x10, +0x0d, 0x55, 0xcf, 0xbd, 0x3b, 0x81, 0x51, 0x7a, 0x50, 0x6c, 0x33, 0xa1, 0xb8, 0xe7, 0x5c, 0x3b, +0xa4, 0x1a, 0x05, 0xcc, 0xb4, 0x01, 0x7a, 0xf2, 0x86, 0xd2, 0xdf, 0x97, 0x64, 0x7d, 0x42, 0x4f, +0x90, 0x27, 0x4a, 0xbe, 0xfc, 0x33, 0xa5, 0x2d, 0xb8, 0xfb, 0x84, 0x59, 0x25, 0x02, 0x22, 0x1f, +0xec, 0x72, 0x40, 0xc4, 0xc1, 0x42, 0xc2, 0x9e, 0xaf, 0xd4, 0x64, 0xea, 0xad, 0x24, 0x9e, 0x5e, +0x07, 0x44, 0xfe, 0x09, 0xf4, 0x2d, 0xee, 0xba, 0xc5, 0xca, 0x11, 0x05, 0x00, 0x9b, 0x53, 0x56, +0x0e, 0x58, 0x84, 0xf0, 0x62, 0x8c, 0x2c, 0x16, 0xb4, 0x2b, 0x96, 0x4a, 0x15, 0xd6, 0x94, 0x7a, +0x46, 0x96, 0x84, 0x85, 0xae, 0xf7, 0xe3, 0xeb, 0x57, 0xc8, 0x69, 0xa4, 0xc7, 0x31, 0x8b, 0x1b, +0xa8, 0x57, 0xcb, 0x0e, 0x2a, 0xca, 0x37, 0x44, 0xc4, 0x51, 0x02, 0x6e, 0x0f, 0x4e, 0x01, 0xbd, +0x07, 0x89, 0x5c, 0x63, 0xdb, 0x6e, 0x73, 0xa9, 0x51, 0xc5, 0x85, 0xc6, 0xae, 0xd5, 0xac, 0xf9, +0x2c, 0x75, 0x23, 0xcc, 0x2a, 0x1c, 0x53, 0x3e, 0xd3, 0x6a, 0x1c, 0xbb, 0xe3, 0x84, 0xa0, 0x37, +0x5c, 0x9b, 0x92, 0xce, 0xfb, 0xc7, 0x83, 0xb7, 0x31, 0xd6, 0xc9, 0x9f, 0x01, 0xe2, 0xce, 0xc7, +0xc3, 0xab, 0x98, 0xd0, 0xda, 0xb7, 0x80, 0xa9, 0x89, 0xe3, 0xee, 0x9e, 0x82, 0x1f, 0xd2, 0x87, +0xb1, 0x73, 0xf9, 0xd9, 0x18, 0x4d, 0xfb, 0x42, 0x80, 0x33, 0x27, 0x36, 0xf5, 0x7b, 0x42, 0x5c, +0xac, 0x91, 0x60, 0x35, 0xd3, 0x33, 0x71, 0xbc, 0xf5, 0xb6, 0x94, 0x46, 0x2b, 0x7c, 0x1a, 0x04, +0x43, 0xa5, 0x61, 0xbd, 0x0a, 0x47, 0xef, 0x77, 0x07, 0x45, 0x02, 0xc4, 0x00, 0x62, 0x48, 0x87, +0x88, 0xf2, 0xaf, 0x03, 0xeb, 0x23, 0x95, 0xfa, 0xab, 0x57, 0x10, 0xf4, 0x06, 0xc7, 0xd2, 0x9b, +0xa3, 0x09, 0x34, 0xd5, 0x2a, 0x68, 0xc9, 0x0f, 0x4e, 0xf4, 0x45, 0xab, 0x73, 0x78, 0x61, 0x48, +0xbe, 0x95, 0xc9, 0x18, 0x9b, 0x61, 0x31, 0x0a, 0x0c, 0x50, 0xa3, 0x91, 0xf6, 0x74, 0xe8, 0xd0, +0xcd, 0x47, 0x43, 0x9f, 0x7f, 0xdd, 0xd1, 0xd8, 0xd8, 0xcc, 0x18, 0x51, 0x45, 0x89, 0x8f, 0xcd, +0x38, 0xcf, 0x45, 0x38, 0xad, 0x0c, 0x62, 0xc1, 0xd4, 0xfb, 0xdb, 0x8e, 0x9a, 0x28, 0x4f, 0x65, +0x47, 0x17, 0xb6, 0x83, 0x18, 0x67, 0x13, 0x9b, 0x6f, 0x6f, 0x91, 0x07, 0x8e, 0x6b, 0x51, 0x13, +0x3f, 0x39, 0x4e, 0x5a, 0x45, 0xb9, 0xc6, 0xcc, 0x2a, 0x5b, 0x36, 0xa1, 0x9d, 0x9c, 0xb1, 0xb4, +0xea, 0xbb, 0x2b, 0x16, 0x30, 0x68, 0x6f, 0xc9, 0x4e, 0x58, 0xf6, 0x85, 0x0c, 0x6c, 0xd7, 0x68, +0x51, 0x8b, 0x98, 0x41, 0x9a, 0x29, 0x94, 0x5d, 0x49, 0xc8, 0xda, 0x87, 0x80, 0xa7, 0x12, 0x87, +0xde, 0x38, 0xae, 0xed, 0x3e, 0x31, 0xcb, 0xc4, 0x12, 0xd4, 0x66, 0x17, 0xd4, 0xd4, 0xaa, 0xb3, +0x05, 0x56, 0xbd, 0x7b, 0x23, 0x69, 0xab, 0xc9, 0xf4, 0x0d, 0xec, 0x41, 0xbf, 0xbd, 0xec, 0xac, +0x56, 0x28, 0x10, 0xd4, 0x73, 0xb6, 0x3d, 0x78, 0x4b, 0x61, 0x86, 0xef, 0x4c, 0xf2, 0x9d, 0x4e, +0xf0, 0x1c, 0x54, 0x70, 0x40, 0x44, 0xcd, 0x53, 0x96, 0x85, 0xdc, 0x65, 0xce, 0xa5, 0xee, 0xe8, +0x63, 0x7f, 0xdd, 0x11, 0x7e, 0x64, 0x35, 0x4e, 0x51, 0x23, 0xca, 0x50, 0x27, 0x9c, 0xdf, 0x09, +0x33, 0xda, 0xb1, 0x7a, 0xa6, 0x3b, 0x4f, 0xc5, 0x66, 0x37, 0x49, 0x9e, 0x4e, 0x4e, 0xfc, 0x34, +0x20, 0x42, 0xe5, 0x50, 0x3a, 0x5e, 0xba, 0x2a, 0xce, 0x78, 0x00, 0xf7, 0x20, 0x13, 0xde, 0x2c, +0x7f, 0x33, 0xec, 0xed, 0xf7, 0xab, 0xe2, 0x70, 0x9f, 0x18, 0xcf, 0x03, 0x7e, 0x87, 0x7b, 0x4d, +0x7e, 0xc5, 0x27, 0x8f, 0x1a, 0xf3, 0x3a, 0x1b, 0x45, 0xd6, 0x13, 0x81, 0x85, 0x69, 0x9f, 0xa7, +0x49, 0x7f, 0x07, 0xe1, 0x6e, 0x51, 0xec, 0x45, 0x14, 0xa7, 0x4e, 0xa1, 0x25, 0x34, 0x41, 0x1e, +0x36, 0xb6, 0x88, 0x49, 0xae, 0x37, 0xc8, 0x0c, 0xf4, 0xc1, 0x94, 0x90, 0x7d, 0xcf, 0xfc, 0x54, +0x68, 0xd3, 0x6b, 0x4b, 0x92, 0xee, 0x0e, 0x70, 0xcf, 0x1b, 0x3b, 0x13, 0x00, 0x05, 0x68, 0xe9, +0x60, 0x1d, 0xd1, 0x0e, 0xc8, 0x66, 0xb1, 0xe0, 0x4f, 0x29, 0xb3, 0x07, 0xb8, 0x41, 0xbb, 0x13, +0x24, 0x45, 0x6f, 0xce, 0x48, 0x29, 0x91, 0x9e, 0x9b, 0x63, 0x7b, 0xb9, 0xf5, 0x2b, 0x2f, 0x6f, +0xad, 0xeb, 0xda, 0xcd, 0x41, 0xd7, 0xb8, 0x4f, 0x3f, 0x67, 0xdf, 0x36, 0xd7, 0xc8, 0x2c, 0x8f, +0xe7, 0xb9, 0xbb, 0xf7, 0x30, 0xaf, 0xab, 0x29, 0x1d, 0xb4, 0xed, 0x27, 0xaf, 0x1e, 0x99, 0x13, +0x9b, 0x43, 0xf5, 0xd4, 0xfc, 0x08, 0xcc, 0xd0, 0x3e, 0x47, 0x5b, 0x29, 0x43, 0xea, 0xe3, 0xf3, +0x51, 0xc1, 0x8b, 0x4f, 0x71, 0x07, 0x70, 0x60, 0x55, 0x56, 0xd3, 0x98, 0x72, 0x7a, 0x75, 0x02, +0xb3, 0xff, 0x66, 0x7e, 0x7f, 0x0a, 0xc8, 0xa5, 0x06, 0x5a, 0x69, 0x74, 0xf0, 0xbd, 0x56, 0x42, +0xe2, 0x3e, 0x06, 0x91, 0xd8, 0x03, 0x1b, 0x74, 0x7b, 0x18, 0xec, 0x7a, 0xac, 0x85, 0x6c, 0x23, +0xdb, 0xdb, 0xc4, 0xfa, 0x82, 0x17, 0xe7, 0x02, 0xf7, 0xe3, 0xe6, 0x07, 0x32, 0x9e, 0x16, 0x6e, +0x1b, 0x8e, 0xde, 0x19, 0x31, 0xd4, 0x4c, 0x83, 0xd8, 0x36, 0x6c, 0x81, 0x7b, 0xa8, 0x6f, 0x18, +0xc0, 0x7a, 0xb2, 0xd3, 0x3e, 0x1f, 0x1a, 0xac, 0x87, 0x8c, 0xc2, 0x71, 0x8e, 0x72, 0xce, 0x4a, +0xb2, 0x49, 0xd7, 0xc5, 0x8c, 0x82, 0x34, 0x4b, 0x19, 0x89, 0x8e, 0xe5, 0x4d, 0xb2, 0xca, 0xf4, +0x9a, 0xfd, 0x9d, 0x48, 0x2f, 0xa6, 0xbf, 0x40, 0xb3, 0x23, 0x61, 0x45, 0xd0, 0xa4, 0x62, 0x32, +0x0b, 0x20, 0xbc, 0x7f, 0xea, 0x2a, 0x46, 0x67, 0x46, 0xfa, 0xfe, 0x45, 0x62, 0x75, 0x85, 0x55, +0x16, 0x1d, 0x58, 0xdd, 0x14, 0x6b, 0xba, 0x09, 0x26, 0x36, 0x92, 0x92, 0xbb, 0xbb, 0xdc, 0xa4, +0x13, 0x5b, 0x9d, 0x1a, 0x85, 0xdc, 0xbc, 0x73, 0x5f, 0xfa, 0xf6, 0x11, 0xef, 0x47, 0x4d, 0x2a, +0xd3, 0xee, 0xf5, 0x7a, 0x59, 0xed, 0xf6, 0xb5, 0x88, 0x67, 0x66, 0xd5, 0xc4, 0x96, 0x5b, 0xe4, +0xbc, 0xfb, 0xc5, 0xd8, 0xac, 0x72, 0xa3, 0xf7, 0x74, 0x3c, 0x30, 0x9b, 0x04, 0x0d, 0xa5, 0xe3, +0xfa, 0x11, 0x7c, 0xd6, 0x58, 0xd3, 0xb6, 0x09, 0x4e, 0x4e, 0x2b, 0x6e, 0x97, 0xef, 0x12, 0x3d, +0xb9, 0xaa, 0xa8, 0xf2, 0xaf, 0x75, 0x0b, 0x25, 0x46, 0x32, 0xac, 0x64, 0x69, 0x14, 0xd0, 0x06, +0x13, 0xbf, 0xf5, 0xd3, 0xd7, 0x3d, 0xdd, 0x94, 0x8b, 0x50, 0x25, 0xef, 0x95, 0xca, 0x46, 0x47, +0x40, 0x6e, 0x7b, 0xbf, 0xb7, 0xe4, 0x74, 0x1f, 0x20, 0x5a, 0xa3, 0x0b, 0xa6, 0x9a, 0x60, 0xe2, +0x78, 0x31, 0xc4, 0x21, 0xd5, 0x5e, 0x89, 0x54, 0x5c, 0x04, 0x10, 0x01, 0xb2, 0x5d, 0x13, 0x23, +0xce, 0x08, 0x92, 0x66, 0x32, 0xa2, 0x66, 0xbf, 0x45, 0x35, 0xfc, 0x12, 0x69, 0x7d, 0x79, 0x44, +0xfb, 0xd0, 0xac, 0xe3, 0x22, 0x6c, 0x86, 0xc5, 0xa8, 0xec, 0x9f, 0x10, 0xbe, 0x18, 0x40, 0x43, +0xbf, 0xc5, 0x01, 0xd3, 0xbc, 0x92, 0xac, 0x46, 0xed, 0xae, 0xa6, 0x21, 0x39, 0x16, 0xcc, 0x22, +0xd8, 0xc7, 0x2d, 0x48, 0x55, 0xe7, 0xfc, 0xf3, 0x69, 0xe9, 0xb7, 0x4c, 0x6e, 0x4a, 0x40, 0xfa, +0xd5, 0x83, 0xd9, 0x1a, 0xe7, 0x4d, 0xfd, 0x57, 0x46, 0x24, 0x98, 0x10, 0xd5, 0x75, 0x23, 0xd9, +0xd3, 0xea, 0xec, 0x0b, 0x24, 0xbb, 0x6b, 0x34, 0x2e, 0x43, 0x63, 0xe8, 0x41, 0xab, 0x0b, 0xa4, +0x13, 0xa5, 0xff, 0x13, 0x37, 0x51, 0x13, 0x45, 0x4d, 0xd9, 0x71, 0x84, 0x17, 0x4f, 0x8d, 0xa4, +0x4d, 0x9f, 0x4a, 0x1c, 0x6d, 0x2c, 0xf5, 0xca, 0x77, 0x2f, 0x56, 0xde, 0x34, 0xbd, 0x2d, 0xe8, +0x00, 0x3a, 0x32, 0x94, 0x69, 0x3f, 0xec, 0x88, 0x2c, 0x4c, 0x47, 0x6f, 0x94, 0x01, 0xe8, 0xbc, +0xe8, 0x49, 0x74, 0x1d, 0xe3, 0xa1, 0x85, 0x5f, 0x6c, 0xa6, 0xfc, 0x06, 0x19, 0x0d, 0x3e, 0x5e, +0x70, 0x44, 0x20, 0x30, 0xb3, 0x47, 0xbf, 0x2c, 0xa3, 0x22, 0x2d, 0x04, 0x07, 0x35, 0xbb, 0x0a, +0xa6, 0xb9, 0xf4, 0x24, 0xa7, 0x37, 0x45, 0xc0, 0xe0, 0xfd, 0xd6, 0xd2, 0xc0, 0x92, 0x47, 0x87, +0x64, 0xca, 0xde, 0x47, 0x31, 0x20, 0x3d, 0x20, 0xac, 0x2b, 0x04, 0x7b, 0xe6, 0xc0, 0xcc, 0xba, +0xc1, 0x2d, 0xa8, 0x2b, 0xc1, 0x77, 0xde, 0x57, 0xe5, 0x7c, 0xa8, 0x66, 0x0b, 0x1a, 0x1b, 0x53, +0x87, 0xaf, 0x5a, 0x38, 0x5e, 0x99, 0xd3, 0xa7, 0x6b, 0x60, 0x73, 0x3c, 0x8d, 0x32, 0x7c, 0x21, +0x13, 0xc7, 0x19, 0x5c, 0xe3, 0x7b, 0xd6, 0x3e, 0xcc, 0xbb, 0x01, 0xb8, 0x89, 0x84, 0x3d, 0xa8, +0x68, 0xba, 0xdf, 0x86, 0x4f, 0x73, 0x9f, 0xac, 0x87, 0x9c, 0x5c, 0xab, 0xb6, 0x11, 0x17, 0x85, +0x14, 0x2d, 0x2b, 0xaa, 0x25, 0x98, 0xb8, 0x95, 0x00, 0x07, 0x3b, 0x38, 0x14, 0xb7, 0xbc, 0x38, +0x46, 0xed, 0xb7, 0x47, 0x8a, 0x0a, 0x8d, 0x15, 0x30, 0xfc, 0xd2, 0xe7, 0xe1, 0x1d, 0x05, 0xa4, +0x92, 0x84, 0xed, 0x49, 0x20, 0xdc, 0x59, 0x89, 0xd6, 0xaf, 0x21, 0xc7, 0x37, 0x60, 0x84, 0xf6, +0x40, 0xb6, 0x3e, 0x4c, 0x70, 0xf0, 0x13, 0x8b, 0x64, 0xc1, 0x4c, 0x34, 0xaa, 0xc5, 0xbc, 0xf6, +0xb5, 0x20, 0x4a, 0x3f, 0xfe, 0xbd, 0x83, 0x57, 0xe9, 0xbe, 0x11, 0x49, 0x41, 0x44, 0x3c, 0x3a, +0x17, 0xe3, 0xb4, 0x7c, 0x57, 0x68, 0x02, 0x42, 0xd6, 0x94, 0xf3, 0x97, 0xd6, 0x11, 0xaa, 0x14, +0xed, 0x98, 0x1c, 0xe0, 0xf2, 0x23, 0x9d, 0x62, 0x1a, 0x58, 0xde, 0x4e, 0x71, 0x21, 0x83, 0x87, +0xe2, 0xcc, 0x7c, 0x67, 0x37, 0x93, 0x12, 0x7f, 0xfe, 0x19, 0x01, 0x52, 0x3d, 0xd3, 0x12, 0x51, +0xc5, 0xfe, 0xa1, 0xd2, 0xbd, 0xa2, 0x9a, 0x87, 0xb4, 0x98, 0x2f, 0xa7, 0x7d, 0x10, 0xf2, 0xbc, +0xef, 0xdc, 0xdb, 0x9f, 0xdc, 0xc9, 0x71, 0x38, 0x7a, 0xed, 0x4d, 0xa4, 0xc6, 0x3d, 0x3c, 0x35, +0xea, 0x18, 0x78, 0x3b, 0x80, 0x8b, 0xf0, 0xb4, 0x6e, 0xdb, 0x69, 0x62, 0x62, 0x28, 0x01, 0xe2, +0x12, 0x55, 0x5d, 0x67, 0x58, 0x05, 0x3a, 0x51, 0xab, 0x29, 0xac, 0x6a, 0x23, 0x61, 0xbe, 0xa6, +0x41, 0xd3, 0x66, 0x6d, 0x68, 0xd6, 0x7a, 0x78, 0x7c, 0xfe, 0x0b, 0x64, 0xbc, 0x4a, 0x67, 0x32, +0x24, 0x7c, 0x22, 0x33, 0x11, 0xe0, 0x90, 0xb5, 0x63, 0xd3, 0x65, 0x68, 0xb3, 0x6f, 0x05, 0xd8, +0xf7, 0xc3, 0x04, 0xbd, 0xc4, 0x2f, 0x6f, 0x8f, 0x11, 0xd1, 0x31, 0xb2, 0x1f, 0xe4, 0xa0, 0x71, +0x1b, 0xae, 0x09, 0x63, 0x59, 0xe7, 0x7d, 0x98, 0x94, 0xa7, 0x78, 0xa4, 0xa0, 0xfc, 0xcc, 0x50, +0x4b, 0x30, 0xcf, 0xa3, 0xef, 0x2a, 0x1b, 0xdf, 0xc0, 0x92, 0x3c, 0xf1, 0x64, 0x3c, 0xff, 0xd3, +0x1e, 0x61, 0x9b, 0x75, 0xfa, 0x8a, 0x8a, 0x2a, 0x6d, 0xd1, 0xe5, 0x17, 0x53, 0xe1, 0xfc, 0x25, +0xaa, 0x95, 0xd2, 0x95, 0x13, 0x3d, 0x4d, 0x4e, 0x5e, 0xf3, 0xc6, 0x01, 0x61, 0xd4, 0xdc, 0x37, +0x38, 0xfd, 0x36, 0x01, 0xea, 0x86, 0xe9, 0xc8, 0xad, 0x65, 0x80, 0x46, 0x49, 0xd6, 0x38, 0x21, +0x0f, 0x46, 0xb5, 0xdc, 0x8d, 0x14, 0x7f, 0xb5, 0x4a, 0xde, 0x64, 0x6f, 0x2f, 0x79, 0xa9, 0x1c, +0x60, 0x1d, 0x92, 0x50, 0xf0, 0x73, 0x5b, 0x5c, 0x60, 0x0a, 0xc0, 0x7c, 0xde, 0xde, 0x5e, 0x34, +0x42, 0x76, 0x62, 0x9a, 0x01, 0x19, 0x48, 0x69, 0x73, 0x0c, 0xaf, 0x8b, 0x94, 0x98, 0x8c, 0x29, +0xbd, 0x8f, 0xe2, 0x5a, 0x43, 0xd5, 0xca, 0xf6, 0xfc, 0xc7, 0xb7, 0x3d, 0x91, 0x16, 0x78, 0x94, +0xe7, 0x36, 0xc0, 0xbc, 0x83, 0x8a, 0x41, 0x31, 0x9d, 0xd1, 0xbb, 0x6b, 0xf8, 0x92, 0x65, 0xa1, +0xc2, 0x72, 0xf3, 0xa1, 0x24, 0x49, 0x64, 0x35, 0xfc, 0x07, 0xc9, 0xbb, 0x9e, 0x9e, 0x8b, 0x68, +0x8b, 0x1d, 0x97, 0x95, 0xe6, 0x59, 0x33, 0xc6, 0xb9, 0x55, 0xc9, 0x96, 0xd9, 0x1b, 0x0e, 0x5e, +0x59, 0xd0, 0x25, 0x5e, 0x6a, 0xc3, 0xde, 0x46, 0x39, 0x70, 0x6f, 0x5b, 0xee, 0xab, 0xf5, 0xb2, +0xd8, 0xbb, 0xbf, 0xe1, 0x48, 0xb7, 0x7e, 0x32, 0x77, 0x40, 0xf5, 0x56, 0x93, 0xf8, 0xb5, 0xf5, +0x4e, 0x18, 0x6d, 0xa0, 0x91, 0x77, 0x68, 0x46, 0x82, 0xc3, 0x03, 0x57, 0x8c, 0x5b, 0xea, 0x31, +0xfc, 0xaf, 0x4c, 0xe2, 0x37, 0xa3, 0x02, 0xf1, 0x83, 0x6e, 0x82, 0x36, 0x49, 0xfb, 0xd9, 0x3e, +0x37, 0x08, 0x21, 0x50, 0x3c, 0x0f, 0xb8, 0x82, 0xeb, 0x42, 0xaf, 0x9d, 0x44, 0x80, 0x38, 0x4f, +0xcc, 0x3f, 0x0c, 0xb5, 0x5a, 0x90, 0xef, 0x10, 0xe6, 0x43, 0x60, 0x59, 0xbd, 0xc5, 0x52, 0xf4, +0xea, 0x6d, 0xe4, 0x7a, 0xaa, 0xa7, 0x68, 0xcf, 0x15, 0x1a, 0xd9, 0xc9, 0x5a, 0xdb, 0xa1, 0x0f, +0xb4, 0x68, 0x46, 0x50, 0xe1, 0x43, 0x13, 0xb0, 0x3d, 0x39, 0xf3, 0xda, 0x85, 0x4c, 0x79, 0x22, +0x26, 0x72, 0x91, 0x29, 0xc0, 0x28, 0xe8, 0xa5, 0xc4, 0x6c, 0xbc, 0x53, 0x11, 0xdd, 0x3e, 0xb0, +0xf2, 0x1f, 0x47, 0x3b, 0xac, 0x95, 0xa3, 0x62, 0x45, 0x62, 0x34, 0x36, 0x3c, 0xd8, 0x45, 0x09, +0x09, 0x35, 0xf5, 0x40, 0x14, 0x40, 0xc4, 0xd1, 0x9b, 0xce, 0xf1, 0x8f, 0xb2, 0x68, 0x02, 0xe6, +0xbe, 0x21, 0xc1, 0x0e, 0xd8, 0xa4, 0x54, 0x34, 0x4f, 0xfd, 0x55, 0xae, 0x0b, 0x94, 0x1b, 0x61, +0x08, 0x4e, 0x5f, 0x15, 0x5f, 0x38, 0x4e, 0xaa, 0xa5, 0xe2, 0x9b, 0xd6, 0xbb, 0xd3, 0x33, 0x53, +0xb8, 0x57, 0x17, 0xdf, 0x45, 0x3a, 0x14, 0xe5, 0x34, 0x93, 0xfd, 0xb3, 0x3c, 0x57, 0x1a, 0x86, +0x85, 0xf4, 0x98, 0x82, 0x15, 0xde, 0x74, 0x18, 0xf3, 0xfc, 0xbb, 0x29, 0xfc, 0x70, 0x5b, 0xa6, +0xb7, 0x13, 0x92, 0x8a, 0x03, 0x3d, 0x3d, 0x81, 0xa3, 0xc5, 0x8f, 0x00, 0x70, 0xf6, 0xe4, 0xba, +0x1b, 0x7e, 0xd1, 0xdc, 0x62, 0x1a, 0x91, 0x01, 0x25, 0x9f, 0x7b, 0x34, 0x49, 0x00, 0x52, 0x74, +0x51, 0x69, 0x30, 0x41, 0x61, 0xe9, 0x49, 0xa7, 0x47, 0x65, 0x1e, 0x88, 0xd0, 0xe5, 0x38, 0xa1, +0x96, 0xd8, 0x96, 0x97, 0xbd, 0xd4, 0x81, 0xa0, 0xe7, 0xce, 0xaf, 0x62, 0x71, 0xfb, 0xe0, 0x0f, +0x89, 0xc2, 0x7a, 0x89, 0x0f, 0x61, 0xbc, 0xe4, 0xd5, 0x74, 0x04, 0xcb, 0x93, 0x83, 0xb5, 0x89, +0x83, 0x02, 0x1e, 0xbd, 0x2a, 0xcf, 0x2b, 0x67, 0x3b, 0x03, 0x68, 0xea, 0xec, 0x1f, 0x09, 0xfe, +0x79, 0x3a, 0x16, 0x2e, 0x01, 0x35, 0x9e, 0x91, 0xf3, 0x0f, 0x63, 0xe4, 0x3a, 0xd1, 0x8c, 0x96, +0x27, 0x28, 0x5f, 0xe5, 0x4c, 0x87, 0x8d, 0x51, 0xa7, 0x48, 0xa8, 0xc3, 0x61, 0x63, 0x1c, 0x45, +0x0e, 0x3b, 0x75, 0x95, 0xa0, 0xdf, 0x6e, 0xd9, 0xf0, 0x47, 0xe7, 0xe0, 0x75, 0x6d, 0x5b, 0xdb, +0xbb, 0x19, 0xa0, 0xb3, 0x91, 0x5b, 0x9e, 0x0c, 0x9a, 0x0a, 0x7b, 0x60, 0x94, 0x02, 0x46, 0xe1, +0x9d, 0xd7, 0xed, 0x6e, 0x23, 0xa5, 0x8c, 0x5d, 0xbb, 0xed, 0x20, 0x77, 0xb4, 0x73, 0xd1, 0x51, +0x9a, 0x3b, 0xef, 0xfb, 0xe4, 0xae, 0x73, 0xf0, 0xc6, 0x0b, 0x3d, 0x14, 0x0e, 0xcb, 0xae, 0xd0, +0x75, 0x42, 0x9e, 0xe0, 0xfd, 0x0f, 0x27, 0x38, 0x4a, 0x5a, 0x26, 0x69, 0xa6, 0x88, 0xdf, 0x8d, +0xfc, 0x00, 0x66, 0x81, 0xa0, 0x8a, 0x4a, 0x7d, 0x52, 0xda, 0x26, 0xa2, 0x44, 0xe6, 0xf6, 0xfe, +0x2d, 0x4b, 0x91, 0x4c, 0x41, 0xb1, 0x59, 0x22, 0x5b, 0xaf, 0xc7, 0x34, 0x06, 0xef, 0x17, 0x96, +0xc9, 0x80, 0x6a, 0x2a, 0xba, 0xfb, 0xc1, 0x61, 0x8e, 0xf1, 0xe4, 0xda, 0xc7, 0x09, 0xe0, 0xc7, +0x1f, 0x5f, 0x66, 0x25, 0x0f, 0xe5, 0x0f, 0xd8, 0x22, 0x99, 0x3d, 0x01, 0xe9, 0x1d, 0x40, 0xf5, +0x01, 0x0f, 0x3c, 0x32, 0x16, 0xb5, 0x3e, 0xcd, 0x12, 0x10, 0xaf, 0x02, 0xd9, 0x88, 0x2a, 0xdf, +0x2a, 0x85, 0x38, 0x94, 0xb0, 0x69, 0xb9, 0xc3, 0xd3, 0xe0, 0xf2, 0x04, 0x59, 0x88, 0xcd, 0x09, +0xb9, 0x4e, 0x83, 0x34, 0xbe, 0x57, 0x09, 0x80, 0xa4, 0x59, 0xb7, 0x70, 0x19, 0x48, 0x3e, 0x18, +0xb7, 0xa0, 0xae, 0x64, 0xae, 0xba, 0x00, 0x80, 0x51, 0xf9, 0x08, 0x03, 0x52, 0x97, 0x4c, 0xd7, +0x1c, 0x43, 0xfb, 0xb8, 0x4f, 0x22, 0x16, 0x27, 0x0d, 0x58, 0x0e, 0xd5, 0xf4, 0x21, 0xa9, 0xf9, +0x2e, 0x93, 0x2b, 0xa8, 0xba, 0x92, 0x18, 0x98, 0xda, 0x35, 0xb6, 0x6c, 0x42, 0xc7, 0x17, 0x32, +0xed, 0x13, 0x0e, 0x27, 0x66, 0xfe, 0x6b, 0x13, 0x9d, 0xf8, 0xa4, 0x16, 0xd9, 0xc4, 0x3c, 0x23, +0xcd, 0x23, 0x99, 0xe8, 0x9d, 0x94, 0x2e, 0xf9, 0x48, 0x29, 0x09, 0x71, 0x95, 0x69, 0xaa, 0x95, +0xd8, 0xf0, 0xb7, 0x3b, 0xe0, 0x8f, 0x92, 0xca, 0xb1, 0x81, 0xdf, 0xe4, 0xbf, 0x84, 0x3e, 0x1e, +0x12, 0x99, 0x3a, 0xc5, 0x00, 0x34, 0xee, 0x41, 0xc8, 0x01, 0xd7, 0x68, 0x68, 0xaa, 0xfc, 0x64, +0xbc, 0x62, 0x49, 0x72, 0x2c, 0xe0, 0x9c, 0xe3, 0xd5, 0xde, 0x25, 0x9f, 0x56, 0x26, 0x1d, 0x73, +0x32, 0x9e, 0xb6, 0x96, 0x3e, 0x84, 0x18, 0x60, 0xc1, 0x47, 0x6b, 0xd3, 0x25, 0x44, 0x38, 0x05, +0x5d, 0x9f, 0x6e, 0x8f, 0x2f, 0xfa, 0x70, 0xe0, 0x84, 0x2d, 0x7c, 0x4e, 0xe5, 0xf0, 0x21, 0xdd, +0x4a, 0xde, 0x64, 0x89, 0x33, 0x9e, 0xc2, 0x83, 0x02, 0xbd, 0xf2, 0x83, 0xb6, 0x30, 0x9d, 0xd0, +0xa7, 0xf1, 0x63, 0xaa, 0xd2, 0xe1, 0x2d, 0x8d, 0xe4, 0xda, 0x85, 0x9e, 0xbc, 0x87, 0xd0, 0x71, +0xf4, 0x6d, 0x28, 0x55, 0x00, 0x75, 0x21, 0xd2, 0xc8, 0x0b, 0x57, 0x84, 0xe3, 0x3b, 0x0f, 0xd0, +0xfb, 0xf3, 0xb4, 0x82, 0xbe, 0x74, 0x64, 0xa5, 0xc4, 0x41, 0xda, 0x76, 0xdd, 0x9e, 0x1a, 0x69, +0xa4, 0x11, 0xeb, 0x76, 0x19, 0x3d, 0xf2, 0x80, 0xda, 0xff, 0xaa, 0xff, 0x34, 0xa8, 0xb8, 0x7b, +0x91, 0x2e, 0x2f, 0xde, 0xe0, 0xa5, 0x88, 0xd6, 0xc7, 0xce, 0xaa, 0xdd, 0x8f, 0x86, 0xd5, 0x9e, +0x61, 0x7b, 0x17, 0xd0, 0xeb, 0xcb, 0xf4, 0x8d, 0x58, 0x82, 0xbf, 0x40, 0x96, 0xc7, 0xb6, 0x14, +0x2a, 0x82, 0x8e, 0xd7, 0x6b, 0x06, 0x2e, 0x97, 0xea, 0xe4, 0xf3, 0x05, 0xeb, 0xc3, 0x90, 0x07, +0x80, 0x13, 0x29, 0xb8, 0x55, 0xa0, 0xd1, 0x39, 0x07, 0x1c, 0x3c, 0xb4, 0x52, 0x55, 0xd6, 0x79, +0xdf, 0xc2, 0x4f, 0x8c, 0x6d, 0xc3, 0xb2, 0xc6, 0x86, 0x58, 0xb6, 0xd0, 0x0d, 0x82, 0xed, 0xd5, +0xc9, 0xbe, 0xd0, 0xad, 0x42, 0x1e, 0x7b, 0xae, 0x45, 0xbf, 0x7d, 0xdd, 0x30, 0xd7, 0x88, 0x7e, +0x4a, 0xe8, 0x9b, 0x10, 0x72, 0x1a, 0x73, 0xfc, 0x2b, 0xdf, 0xe4, 0x23, 0x4a, 0xe2, 0x5d, 0x82, +0xde, 0x9d, 0xcf, 0xf8, 0x5e, 0x6d, 0x89, 0x11, 0x25, 0xb5, 0xa0, 0xc4, 0x2e, 0x11, 0x1c, 0xa1, +0xee, 0xe0, 0x5f, 0x86, 0x0d, 0x99, 0x42, 0x55, 0xbd, 0x22, 0x74, 0xb0, 0x1c, 0x30, 0xb3, 0x4e, +0xa6, 0x68, 0x2f, 0x6f, 0x25, 0xad, 0xe7, 0xa9, 0x96, 0x18, 0x70, 0xc9, 0xef, 0x77, 0x0a, 0x39, +0xcd, 0xfb, 0x17, 0x23, 0xae, 0x7e, 0xa0, 0x86, 0xe1, 0x08, 0xdc, 0x34, 0x35, 0xc4, 0xc0, 0xab, +0xd3, 0x04, 0xff, 0xdf, 0x16, 0x82, 0xb1, 0xb2, 0xb0, 0x7d, 0x60, 0x60, 0x1d, 0x56, 0x9e, 0x97, +0x51, 0xe5, 0xfb, 0xd8, 0x79, 0xdb, 0x44, 0x5b, 0x60, 0xe6, 0x91, 0x69, 0x45, 0xac, 0x78, 0x94, +0x15, 0x80, 0x52, 0x00, 0xaa, 0xb0, 0xdd, 0x20, 0xa0, 0x56, 0x79, 0x65, 0xd3, 0xe5, 0x77, 0x71, +0x5c, 0xc1, 0xc6, 0x42, 0xf9, 0xd2, 0x09, 0x8a, 0x1c, 0xbc, 0x88, 0x96, 0x3a, 0x9e, 0xd3, 0xe3, +0xd9, 0xe6, 0x0f, 0x7b, 0x1c, 0x0a, 0x59, 0x10, 0xf1, 0x5f, 0xe3, 0xd8, 0xff, 0x9f, 0xf4, 0xa8, +0x69, 0xa6, 0xf9, 0xb1, 0x75, 0xc5, 0x46, 0x0b, 0xcb, 0xb4, 0x3b, 0xcb, 0xf8, 0x0f, 0xad, 0x90, +0x49, 0x85, 0x1f, 0xb3, 0x3a, 0x0d, 0x94, 0xbf, 0xc8, 0x27, 0x3c, 0xd0, 0x97, 0xe8, 0x69, 0xb9, +0xad, 0x08, 0xd2, 0xf8, 0x07, 0x65, 0xd0, 0x40, 0xf5, 0x6d, 0x7a, 0x97, 0x72, 0x45, 0xcb, 0x11, +0xd6, 0x63, 0x41, 0xd0, 0x48, 0x12, 0xc8, 0x99, 0x1d, 0xf7, 0xae, 0x08, 0xde, 0x31, 0x28, 0xc0, +0x0b, 0x33, 0x99, 0x11, 0x74, 0xce, 0xa8, 0xcc, 0x88, 0x81, 0x2e, 0xad, 0xa6, 0x22, 0xb3, 0x3c, +0x93, 0x02, 0x08, 0x9b, 0xde, 0x83, 0xf4, 0x36, 0x0c, 0xd6, 0x3b, 0x08, 0x42, 0xc7, 0x9b, 0x5a, +0x57, 0xff, 0x7d, 0x38, 0x4d, 0x57, 0xea, 0xd8, 0x36, 0x53, 0xd8, 0xe5, 0x92, 0xed, 0x83, 0x47, +0xac, 0xc8, 0xf1, 0x59, 0xb8, 0x44, 0x34, 0x31, 0x45, 0x0b, 0xce, 0x67, 0x85, 0x52, 0x59, 0x1c, +0xa6, 0x4b, 0x89, 0x3c, 0x91, 0x87, 0x64, 0x3e, 0x04, 0xd2, 0x8f, 0xc4, 0xc4, 0x52, 0x5b, 0x58, +0xfc, 0xc6, 0xa6, 0xd4, 0x0e, 0x84, 0xc7, 0x9d, 0xc3, 0xe1, 0x4c, 0x5f, 0x11, 0x61, 0xee, 0x62, +0x4d, 0xa1, 0x0e, 0x4c, 0x95, 0x7d, 0x28, 0x40, 0x77, 0x8a, 0xeb, 0x06, 0xbb, 0xa7, 0xf1, 0x7c, +0x96, 0x4e, 0xeb, 0xd6, 0xff, 0xd1, 0x59, 0xdc, 0xec, 0x84, 0xd7, 0x4e, 0x41, 0xf6, 0x7a, 0x40, +0xcc, 0x8f, 0x4c, 0x25, 0xae, 0x0f, 0xe2, 0x3a, 0x0b, 0xe4, 0xf8, 0xb4, 0x51, 0x21, 0x67, 0x4f, +0x84, 0x96, 0xaa, 0xd5, 0x1e, 0xb5, 0x78, 0x7f, 0xd9, 0xf1, 0x11, 0xb9, 0x87, 0x5d, 0x20, 0x6a, +0xfe, 0x0d, 0xe7, 0xfd, 0x0e, 0x1c, 0x5d, 0xf4, 0x45, 0xab, 0x6e, 0xb4, 0x23, 0x09, 0x8a, 0xe3, +0x67, 0x21, 0x25, 0x24, 0x77, 0x64, 0x20, 0x55, 0x16, 0x96, 0x43, 0xde, 0x23, 0x38, 0xd8, 0xb8, +0xa6, 0x22, 0x82, 0x1b, 0xd3, 0x12, 0xb3, 0xe8, 0xbe, 0xc1, 0x72, 0x1d, 0x77, 0x0b, 0xa7, 0x95, +0x29, 0x3d, 0x3b, 0xeb, 0x53, 0xe1, 0x67, 0x2e, 0x3b, 0xd7, 0x74, 0xee, 0x3e, 0x11, 0x17, 0x8a, +0x72, 0x35, 0x24, 0xaf, 0x9f, 0xc4, 0xbb, 0x5d, 0xe3, 0xff, 0xfe, 0xeb, 0x4a, 0xc1, 0x2d, 0xe1, +0xd3, 0x4a, 0xa5, 0x5c, 0xf4, 0x4c, 0xeb, 0x45, 0xa3, 0x08, 0x05, 0xb8, 0x88, 0xe8, 0x32, 0x31, +0xf1, 0xc6, 0x6d, 0x71, 0x09, 0x1b, 0x77, 0x8d, 0xc0, 0x97, 0x5a, 0x59, 0x6a, 0x65, 0xf4, 0xa6, +0x63, 0xc6, 0x52, 0x7e, 0x7d, 0xab, 0xd5, 0xed, 0xaf, 0x2a, 0xcf, 0x58, 0x2b, 0xe8, 0x54, 0xcd, +0xd5, 0xc1, 0xe6, 0xa3, 0x0e, 0x94, 0xbc, 0xb1, 0x83, 0x7d, 0x9b, 0x17, 0x48, 0xbd, 0xad, 0xdc, +0x21, 0x5a, 0xfb, 0xaf, 0xef, 0x65, 0x4e, 0x58, 0x81, 0x5c, 0x05, 0x39, 0x6d, 0xbc, 0x48, 0x77, +0xc7, 0xe2, 0x5a, 0xd9, 0x80, 0xc8, 0x55, 0xfb, 0xf0, 0x6a, 0x2c, 0x55, 0xa0, 0x8a, 0x0a, 0x1f, +0x3b, 0x74, 0xff, 0xe1, 0xcd, 0xd6, 0x90, 0xb4, 0x8f, 0x5f, 0x95, 0x37, 0x0f, 0x7f, 0x0c, 0xa0, +0xb1, 0xd2, 0x50, 0x3d, 0xed, 0x62, 0xfc, 0x55, 0x3d, 0xf4, 0x45, 0x18, 0xb5, 0xa4, 0x28, 0x4a, +0x1d, 0x96, 0xf1, 0xb0, 0x1b, 0x1c, 0x6e, 0xeb, 0x1b, 0xb9, 0xba, 0xb7, 0xd9, 0xac, 0x8c, 0xbd, +0x16, 0x87, 0xe5, 0x0d, 0xee, 0x16, 0x15, 0xcc, 0xf8, 0x4c, 0xfb, 0xa7, 0x37, 0xc5, 0xea, 0x98, +0xa5, 0xdb, 0xdc, 0x1a, 0xa4, 0x1e, 0xe9, 0xdf, 0xf6, 0x84, 0x8c, 0x5a, 0x0a, 0x56, 0xda, 0xd3, +0x16, 0x3e, 0x7a, 0x0e, 0xba, 0xf0, 0x35, 0xa3, 0x56, 0xb6, 0xcf, 0x32, 0x19, 0xdd, 0xc7, 0x4a, +0x82, 0xc8, 0x4f, 0x2a, 0xcd, 0xee, 0xb0, 0xc0, 0xdc, 0x9a, 0xd2, 0x19, 0xa6, 0x84, 0x3b, 0x0c, +0xf0, 0x7a, 0x9d, 0xd7, 0x24, 0x5a, 0x95, 0x80, 0x49, 0x59, 0x81, 0x42, 0x11, 0xaf, 0xd8, 0x4e, +0xea, 0x0a, 0x39, 0x9c, 0xa7, 0xff, 0xd3, 0x3b, 0xd1, 0xd9, 0xca, 0x2b, 0x20, 0x2e, 0xbf, 0xb3, +0x62, 0x78, 0x6b, 0x08, 0xa1, 0x85, 0x9d, 0x9d, 0x14, 0xff, 0x95, 0xd9, 0x08, 0x93, 0x58, 0x4e, +0x9a, 0xce, 0xd0, 0x7f, 0x29, 0x12, 0x76, 0x3f, 0x89, 0x9b, 0xc3, 0x69, 0xca, 0x94, 0xac, 0x83, +0x2b, 0x84, 0x31, 0x20, 0xda, 0xa4, 0xf7, 0x7e, 0x46, 0x15, 0x25, 0xcb, 0xf3, 0xf2, 0x26, 0xda, +0xd6, 0xb6, 0x8e, 0x09, 0x15, 0x40, 0x6e, 0xf6, 0x4d, 0x28, 0x0d, 0xc8, 0x2e, 0xff, 0x98, 0xff, +0xfb, 0x4a, 0x96, 0xb4, 0xcb, 0x05, 0x68, 0xa8, 0xc6, 0x06, 0xdd, 0x92, 0x22, 0x59, 0x5e, 0x8f, +0xab, 0x7d, 0x83, 0x7a, 0xd4, 0x11, 0x9f, 0xc0, 0xc1, 0xa8, 0xfa, 0xcd, 0x66, 0x10, 0x15, 0x9f, +0x3f, 0x19, 0x52, 0x71, 0x4d, 0xc4, 0xc9, 0x2c, 0xf4, 0x4d, 0xdb, 0x44, 0xfd, 0x1d, 0xbc, 0xf1, +0x60, 0xfb, 0x08, 0x44, 0x00, 0xa1, 0x84, 0x77, 0xd8, 0x9e, 0x09, 0xd4, 0x4a, 0x2a, 0xff, 0x39, +0xea, 0x3f, 0x20, 0xca, 0x5c, 0x44, 0x36, 0x33, 0xa8, 0x89, 0x52, 0xac, 0x02, 0x7a, 0x17, 0xac, +0xa4, 0xc7, 0xd0, 0x0c, 0x80, 0x47, 0xdb, 0xc5, 0x73, 0x04, 0xea, 0x5d, 0xdb, 0x39, 0x81, 0xad, +0x04, 0x93, 0xe3, 0xe2, 0x1f, 0xf4, 0x36, 0xfe, 0x3b, 0x8c, 0x35, 0x31, 0x0a, 0x92, 0xab, 0x8a, +0x49, 0x1b, 0x4d, 0xaa, 0x8d, 0xe3, 0x90, 0x8c, 0x17, 0xac, 0x68, 0x42, 0xd3, 0x8a, 0xe2, 0x50, +0x20, 0x9a, 0x6e, 0x8d, 0x0e, 0x91, 0x98, 0x35, 0x27, 0xcd, 0xe6, 0x7d, 0xf1, 0x77, 0x18, 0xa1, +0xf9, 0x0f, 0x5a, 0xc6, 0x7a, 0xb1, 0xad, 0x2b, 0x9f, 0x5c, 0xb4, 0x6d, 0x2f, 0x70, 0x30, 0x08, +0xc3, 0xe9, 0xb6, 0x4d, 0x80, 0x08, 0x5c, 0x06, 0xef, 0x14, 0xbc, 0x6a, 0xaf, 0x51, 0x18, 0x69, +0x13, 0x43, 0xa6, 0xe4, 0xd5, 0xd9, 0x9e, 0x92, 0xcc, 0xcc, 0xd3, 0xfe, 0x76, 0xd3, 0x43, 0xda, +0x45, 0xf9, 0x9f, 0x68, 0xc6, 0xfb, 0x30, 0x30, 0xc2, 0x85, 0x52, 0xec, 0x73, 0xf7, 0x3c, 0xdb, +0xbd, 0x31, 0xf1, 0xc6, 0x38, 0x77, 0x1c, 0xf8, 0x29, 0x82, 0x85, 0x52, 0xe0, 0xc0, 0xfb, 0x76, +0x8d, 0xeb, 0xf1, 0xdf, 0xd4, 0x63, 0x1e, 0x2d, 0x1d, 0xce, 0x4a, 0xae, 0xac, 0x7f, 0x21, 0x10, +0xe4, 0xce, 0xbf, 0x5a, 0xe6, 0x09, 0x91, 0xbb, 0x71, 0x2a, 0x18, 0x0c, 0x3a, 0xd4, 0xe1, 0xe6, +0xd5, 0xf2, 0x88, 0xdc, 0xf6, 0x5b, 0x47, 0x0e, 0x82, 0x70, 0xb5, 0x6b, 0x15, 0xed, 0xbd, 0x07, +0x2f, 0x9f, 0x18, 0xc9, 0xc8, 0xcb, 0x7f, 0xb5, 0x77, 0xd9, 0x50, 0x0d, 0x99, 0xe7, 0xec, 0x62, +0xf7, 0xa4, 0xc8, 0xba, 0x77, 0x88, 0x0c, 0xe0, 0x08, 0xa3, 0x84, 0x37, 0x31, 0x4e, 0x36, 0x27, +0xdf, 0xf8, 0x7f, 0x02, 0x55, 0x2d, 0xf7, 0x0b, 0x8b, 0xd9, 0xda, 0xac, 0x43, 0x62, 0x1a, 0x6c, +0x1d, 0x51, 0x3a, 0xd4, 0x9d, 0x0c, 0x03, 0x3b, 0xaa, 0xc8, 0xde, 0xa6, 0xbe, 0x2a, 0xf1, 0x2f, +0x6a, 0x9e, 0xea, 0xe7, 0xe2, 0x6a, 0xdf, 0x5c, 0x7e, 0x89, 0x70, 0x8a, 0xe3, 0x62, 0xc0, 0xc2, +0x39, 0x0c, 0x8a, 0xf7, 0xf7, 0x44, 0x8e, 0xd2, 0x17, 0xa7, 0xf8, 0x69, 0x87, 0x7c, 0xd3, 0x45, +0x73, 0xf2, 0x68, 0x79, 0x39, 0x35, 0xf4, 0x9a, 0xfa, 0x78, 0xd5, 0x35, 0x67, 0xa3, 0x2c, 0x9f, +0xb6, 0x91, 0x9a, 0x12, 0x01, 0x6b, 0xa4, 0x41, 0xbb, 0xe6, 0xe5, 0xdb, 0xad, 0xdd, 0xea, 0x97, +0x45, 0x10, 0x5c, 0x61, 0x42, 0xea, 0x05, 0x6b, 0x30, 0xc5, 0x0d, 0x8a, 0xfb, 0x6e, 0x77, 0x7e, +0x11, 0x5d, 0xa7, 0x9f, 0xaa, 0xaf, 0x73, 0x8f, 0xaa, 0xc1, 0x5d, 0xb3, 0xd3, 0x84, 0x43, 0x47, +0x59, 0xcf, 0x35, 0x23, 0x83, 0x4d, 0x0e, 0xf9, 0xcf, 0xbd, 0x29, 0x3f, 0xef, 0x4e, 0xab, 0x76, +0xd5, 0x5b, 0x58, 0xb6, 0x0b, 0x95, 0xe0, 0x8c, 0xb7, 0x77, 0x5c, 0x58, 0x08, 0xd2, 0xf0, 0xfb, +0xa0, 0xf5, 0x98, 0x2a, 0x37, 0x58, 0x8b, 0x9e, 0xec, 0x00, 0x9f, 0xd2, 0xc9, 0x0b, 0x0b, 0xc9, +0x4e, 0x5a, 0x42, 0x4c, 0xc8, 0x69, 0x3b, 0xd6, 0x30, 0xbf, 0xa3, 0xd9, 0x4a, 0x0f, 0xa4, 0x07, +0x58, 0x6b, 0xb0, 0x66, 0x23, 0x34, 0x90, 0x7a, 0x70, 0x42, 0x20, 0x81, 0x4e, 0x54, 0xdd, 0x0f, +0x73, 0xc2, 0x4d, 0xc7, 0x44, 0xe2, 0x5c, 0xcc, 0xc2, 0x69, 0x3b, 0x55, 0xd7, 0x3a, 0x25, 0xd3, +0xfd, 0x03, 0xf1, 0x56, 0xc5, 0x32, 0x90, 0xec, 0xb6, 0x9d, 0x93, 0x63, 0x92, 0x4f, 0xa7, 0x85, +0x92, 0x80, 0x2f, 0x13, 0x32, 0xe7, 0xc3, 0x81, 0xca, 0x90, 0xdb, 0x64, 0x5a, 0x7b, 0x9e, 0x35, +0x88, 0xa5, 0x4d, 0xcf, 0x9d, 0x53, 0xf0, 0x9b, 0x36, 0x8c, 0x35, 0x56, 0x6b, 0x05, 0xdc, 0xdb, +0x1e, 0xac, 0x32, 0x86, 0x05, 0xc2, 0x49, 0x64, 0x8a, 0x6e, 0x9a, 0x0c, 0x1e, 0xba, 0xc6, 0x4f, +0xfe, 0x2a, 0x37, 0x52, 0x71, 0xe6, 0x6e, 0x11, 0x5c, 0x7b, 0x1e, 0x05, 0xa4, 0x58, 0x4f, 0xd2, +0x39, 0x06, 0xb2, 0x5f, 0x69, 0x6a, 0x14, 0x1c, 0x15, 0xd0, 0xb5, 0xb7, 0x1f, 0xbd, 0x7d, 0x55, +0x2b, 0xeb, 0xaf, 0x27, 0x8d, 0x42, 0xf3, 0xfd, 0x4d, 0x82, 0x1b, 0xcb, 0xa9, 0xa1, 0x00, 0xf6, +0x35, 0x4c, 0x1c, 0x7b, 0x3f, 0x3d, 0x6e, 0xdc, 0x16, 0x26, 0xe5, 0x39, 0x56, 0x89, 0xb4, 0x00, +0xef, 0xd8, 0x9c, 0xa5, 0x69, 0xfe, 0xb2, 0xc8, 0xbc, 0x17, 0xe9, 0xe6, 0x10, 0xba, 0x26, 0xaa, +0xaa, 0x6f, 0x2a, 0xc0, 0x82, 0x1e, 0x46, 0x9b, 0x1c, 0x19, 0x0e, 0x35, 0x34, 0x1a, 0x9d, 0x8b, +0xe5, 0xf8, 0x4d, 0x31, 0xae, 0x49, 0xa1, 0xf8, 0x20, 0x7c, 0xe4, 0xb9, 0x9a, 0x78, 0x44, 0xd2, +0xe1, 0x5e, 0x99, 0x3b, 0x4d, 0xbf, 0xa0, 0x54, 0x8e, 0x4d, 0x27, 0x11, 0xd3, 0x81, 0x0c, 0x3b, +0x7c, 0x73, 0x0f, 0x2b, 0x0c, 0x56, 0x58, 0xcf, 0x54, 0xa0, 0x9c, 0xb8, 0x22, 0xbd, 0xb3, 0x73, +0x02, 0xb3, 0x2b, 0xb6, 0x43, 0x46, 0x78, 0xbd, 0xf1, 0x63, 0x8b, 0x96, 0x8a, 0x3a, 0xad, 0xfe, +0x02, 0x68, 0x0e, 0xde, 0x6d, 0x24, 0x32, 0x16, 0x25, 0x5a, 0x1d, 0x97, 0x3b, 0x93, 0x83, 0x40, +0x2a, 0x71, 0xd3, 0x1a, 0x00, 0x79, 0x7f, 0x0c, 0xc9, 0xe8, 0x34, 0x93, 0x32, 0xf5, 0x1c, 0xe5, +0x4e, 0x4e, 0x8c, 0x82, 0x45, 0x38, 0x25, 0x4f, 0x7a, 0xe3, 0xee, 0x38, 0x15, 0x62, 0x95, 0xe9, +0xab, 0x41, 0x9c, 0x9f, 0x23, 0x1b, 0xee, 0x36, 0xb4, 0x69, 0x6e, 0xb9, 0x0f, 0x12, 0xdd, 0x87, +0x53, 0xdb, 0xe4, 0xc6, 0x52, 0x32, 0x61, 0x8f, 0xa3, 0xc6, 0xba, 0x38, 0xb3, 0xf0, 0xd4, 0x1d, +0xca, 0x52, 0xf7, 0x54, 0x7c, 0x3a, 0xce, 0x82, 0x38, 0xd3, 0x2b, 0xf6, 0xed, 0xc2, 0x43, 0x7e, +0x36, 0xb2, 0xd1, 0x48, 0x02, 0xa6, 0x57, 0xa0, 0x8b, 0xa5, 0xb5, 0x09, 0x8d, 0x58, 0x72, 0x9d, +0x7d, 0x52, 0x6c, 0xf3, 0x6d, 0x45, 0x5a, 0xf5, 0xb3, 0xf7, 0x9a, 0x94, 0x7b, 0x06, 0xe2, 0xc9, +0xb0, 0xd8, 0xe0, 0x2c, 0x5c, 0x96, 0x91, 0xac, 0xf4, 0xce, 0x76, 0xc8, 0xc3, 0xb0, 0x89, 0x12, +0xc8, 0x70, 0x17, 0x3c, 0x85, 0x09, 0xe5, 0xf3, 0x5d, 0xa2, 0xc5, 0x0c, 0xe5, 0x47, 0xac, 0x2c, +0xd9, 0xee, 0x39, 0xc9, 0x6c, 0xcf, 0x67, 0x6b, 0xad, 0x68, 0x4c, 0x69, 0xd8, 0x63, 0x75, 0x3e, +0xeb, 0xdd, 0xc3, 0x24, 0x46, 0xea, 0x93, 0xcf, 0x7d, 0xf1, 0xf2, 0x25, 0x4d, 0xfa, 0x3d, 0xb7, +0x20, 0x8a, 0x09, 0xfc, 0xd5, 0x93, 0x05, 0xe9, 0x0e, 0x29, 0x7b, 0xb0, 0x24, 0x3a, 0xe4, 0x8c, +0x96, 0xd8, 0x75, 0xac, 0x5d, 0x53, 0x35, 0x46, 0x5c, 0x7c, 0x83, 0x35, 0xbd, 0x6e, 0x58, 0xa6, +0xc9, 0xfb, 0x20, 0x00, 0xc4, 0x42, 0x8a, 0xdf, 0xc4, 0xbd, 0x67, 0xee, 0x82, 0xfa, 0xd1, 0xc3, +0x2a, 0x6e, 0xaa, 0x13, 0xb8, 0x88, 0x9f, 0xec, 0x5c, 0xb6, 0x4c, 0x0d, 0x30, 0x16, 0xeb, 0xdd, +0xec, 0x88, 0xe9, 0x77, 0xc0, 0x7a, 0x5e, 0x33, 0x5f, 0x6e, 0xfd, 0x77, 0x4a, 0x12, 0x53, 0x62, +0xd5, 0x38, 0x9f, 0x6f, 0x2c, 0xd2, 0x88, 0x31, 0xeb, 0x95, 0x7b, 0xed, 0x27, 0xd9, 0x57, 0x73, +0xfd, 0xf4, 0x63, 0x1f, 0x40, 0x4e, 0x34, 0x0d, 0x83, 0xde, 0x81, 0x66, 0xe6, 0x40, 0xb1, 0x4e, +0xdc, 0x24, 0xea, 0xe6, 0xd7, 0x38, 0x13, 0x9a, 0x4c, 0x53, 0xc2, 0xa4, 0x39, 0xae, 0x05, 0x03, +0x61, 0xed, 0x81, 0xfd, 0x30, 0x7b, 0x78, 0x52, 0x5e, 0x85, 0xc8, 0x93, 0x42, 0x45, 0x13, 0x0b, +0xd5, 0xee, 0x79, 0xf3, 0xde, 0x77, 0xb9, 0x29, 0xab, 0x16, 0xf4, 0x28, 0x5c, 0x5d, 0x8e, 0x64, +0xa4, 0x91, 0x77, 0x1e, 0x0b, 0x65, 0xd1, 0x04, 0x14, 0x75, 0x31, 0xab, 0xbc, 0x6c, 0x1d, 0xaf, +0x61, 0x71, 0x10, 0x1c, 0xe6, 0x44, 0xd0, 0x40, 0x32, 0x04, 0x66, 0xe0, 0x50, 0x3f, 0xe9, 0xbd, +0x04, 0xca, 0x90, 0x5b, 0x06, 0xdf, 0xbd, 0xf2, 0x48, 0x21, 0x26, 0xf0, 0x4e, 0xac, 0x06, 0xbd, +0xf5, 0xec, 0x10, 0xd6, 0x11, 0x44, 0x15, 0x76, 0x94, 0xab, 0x30, 0x67, 0x95, 0xa6, 0x4e, 0xba, +0x91, 0xa4, 0x12, 0x01, 0xa0, 0x7e, 0x80, 0x97, 0xba, 0xe8, 0x1f, 0xc5, 0xc5, 0xc2, 0xfb, 0x68, +0xa5, 0xcd, 0x62, 0xbd, 0xaf, 0x7b, 0xfa, 0xc4, 0x15, 0x38, 0xd6, 0xba, 0x4d, 0xbe, 0x18, 0xe4, +0xda, 0xf8, 0x36, 0xa8, 0xe6, 0x36, 0x56, 0xda, 0x41, 0xce, 0x4d, 0xe9, 0x95, 0x66, 0x37, 0x03, +0x61, 0x54, 0xdc, 0xd7, 0xb6, 0x17, 0x7b, 0xdc, 0xb8, 0x46, 0xc5, 0xd7, 0x9c, 0xd5, 0x48, 0x55, +0x2a, 0xdd, 0x3b, 0x79, 0x2a, 0x83, 0x29, 0x64, 0xf4, 0xef, 0xb6, 0xd8, 0xb1, 0x84, 0x3d, 0x3f, +0xdb, 0x74, 0x0f, 0x33, 0x82, 0xa9, 0xf8, 0xb1, 0xf7, 0x77, 0x8d, 0x33, 0xc9, 0xbe, 0x2a, 0x62, +0xfd, 0xd7, 0xce, 0x73, 0x25, 0x1e, 0xdc, 0xf4, 0xe9, 0x21, 0x85, 0x53, 0xd7, 0x55, 0x9d, 0x5a, +0x5f, 0x5f, 0x61, 0xcc, 0xe5, 0x0d, 0x53, 0xff, 0x5d, 0x68, 0x71, 0xef, 0x14, 0xca, 0xc7, 0xdb, +0x24, 0xb1, 0x88, 0xb0, 0x54, 0x01, 0xb6, 0x20, 0x0e, 0xc5, 0x66, 0x32, 0x11, 0x11, 0x2d, 0xfa, +0x2e, 0x17, 0x61, 0x59, 0x81, 0x79, 0xdf, 0x40, 0x5a, 0x1a, 0x21, 0x18, 0x89, 0xb4, 0xa2, 0x49, +0x59, 0xf2, 0xcb, 0xec, 0x02, 0x0d, 0xd2, 0xcc, 0x84, 0x0d, 0x95, 0x03, 0x17, 0x99, 0xba, 0xe8, +0xf0, 0xad, 0x3a, 0xb0, 0x39, 0x6b, 0xf0, 0x50, 0xfa, 0x86, 0x79, 0x3c, 0xac, 0x27, 0xb8, 0x8b, +0xe8, 0xf8, 0x36, 0x07, 0x12, 0x90, 0x62, 0xcb, 0x9b, 0xad, 0x4e, 0x22, 0x3d, 0x3b, 0x57, 0xe0, +0x4a, 0xd7, 0x64, 0x6b, 0x20, 0xcf, 0x16, 0x30, 0x10, 0x27, 0x75, 0x90, 0xde, 0x76, 0x86, 0xce, +0x5e, 0x58, 0x2f, 0xda, 0xcc, 0x8c, 0x4e, 0xf2, 0x7b, 0x44, 0x91, 0x6c, 0x49, 0x93, 0x88, 0x95, +0x6d, 0xc3, 0x5a, 0x2f, 0xff, 0x22, 0x38, 0x5a, 0xb8, 0xc4, 0x47, 0x3e, 0xbc, 0x85, 0x65, 0xfb, +0x89, 0xe6, 0x51, 0x33, 0x25, 0xae, 0xd4, 0x85, 0xdc, 0x90, 0x91, 0x96, 0xb3, 0x5f, 0xa5, 0x5a, +0x2b, 0x57, 0x32, 0x50, 0xc5, 0x94, 0x54, 0x11, 0xa0, 0xad, 0xe5, 0xd3, 0x6f, 0x02, 0x1f, 0x79, +0x14, 0x67, 0x65, 0x81, 0x7b, 0xc3, 0xf3, 0xc5, 0x47, 0x94, 0x64, 0x14, 0x51, 0x68, 0x75, 0xf8, +0x8b, 0x2d, 0x53, 0x31, 0xa5, 0xb5, 0xbc, 0xc5, 0x6f, 0x04, 0x61, 0xb8, 0xc6, 0x35, 0x82, 0xea, +0xd4, 0x2d, 0xc1, 0xbc, 0x3f, 0x30, 0x66, 0x95, 0x29, 0xb2, 0xca, 0xa5, 0x79, 0xf8, 0x71, 0x96, +0x54, 0x84, 0xbe, 0x2c, 0xe2, 0xd5, 0x0c, 0xa7, 0x6f, 0x71, 0x90, 0xef, 0x6b, 0x72, 0x21, 0x5d, +0x11, 0x16, 0x4e, 0x39, 0x96, 0x4e, 0x5d, 0x62, 0x3b, 0x9b, 0xfe, 0x70, 0x6d, 0x60, 0xcb, 0x8f, +0xc5, 0xa8, 0x2b, 0x04, 0x47, 0x2d, 0x10, 0x7d, 0x12, 0x85, 0xa8, 0xa0, 0xce, 0x00, 0x49, 0xd4, +0x3a, 0x59, 0xcd, 0x07, 0x05, 0xa9, 0xe7, 0x5a, 0x5b, 0x29, 0x22, 0xe7, 0x76, 0xaf, 0x8b, 0xc2, +0x79, 0x0c, 0x9d, 0x91, 0xca, 0x65, 0xc8, 0x8e, 0x7c, 0x75, 0x5e, 0xc0, 0x67, 0x7e, 0x8d, 0xa1, +0x1d, 0x5a, 0xb8, 0x36, 0x79, 0xe6, 0x7f, 0x2b, 0xa9, 0x7a, 0x2d, 0xbd, 0xe0, 0xe6, 0xc2, 0x9d, +0xf3, 0x05, 0x5c, 0x04, 0x31, 0xcc, 0x55, 0xda, 0xc9, 0x05, 0x5d, 0x82, 0x58, 0x6a, 0x70, 0x6d, +0xec, 0xac, 0xf3, 0x41, 0xa6, 0x5e, 0x8b, 0xd4, 0xe5, 0x3f, 0xa4, 0xd4, 0x2b, 0x39, 0x95, 0xe9, +0x09, 0x0d, 0x2e, 0x83, 0xc8, 0xf4, 0xd0, 0xd9, 0xe4, 0x22, 0x6b, 0xd3, 0x75, 0x2b, 0x7d, 0x31, +0x13, 0x58, 0x06, 0x1d, 0x2d, 0xca, 0x8e, 0xc9, 0x9b, 0xea, 0x8e, 0xef, 0xd5, 0x5f, 0x81, 0xc3, +0x38, 0x53, 0x03, 0xaa, 0x09, 0xf3, 0x07, 0x95, 0xb7, 0x44, 0xb2, 0x13, 0xf9, 0xd2, 0x9b, 0x3f, +0xef, 0xff, 0x05, 0x42, 0xf5, 0xc1, 0x9a, 0xc1, 0x91, 0x65, 0xe5, 0xc7, 0x9b, 0xf8, 0xdc, 0x9e, +0xf6, 0xea, 0x6e, 0x2f, 0xad, 0x31, 0xf1, 0xc3, 0x5d, 0x26, 0x0d, 0x34, 0x7c, 0x74, 0x77, 0x16, +0x7f, 0xf5, 0x43, 0x52, 0x6f, 0x24, 0x7a, 0x01, 0xe4, 0xec, 0x48, 0x4d, 0xf3, 0x33, 0xae, 0x5a, +0x78, 0x05, 0x2f, 0x2c, 0xa5, 0x26, 0xe8, 0xec, 0xbb, 0xd4, 0xec, 0xe2, 0x4f, 0x96, 0x30, 0x12, +0x24, 0x83, 0x0a, 0x57, 0xcd, 0x88, 0x67, 0x1f, 0xbd, 0x02, 0xb0, 0x9d, 0x91, 0xab, 0xbe, 0xb2, +0xd4, 0x1b, 0x4a, 0x69, 0xb6, 0xf6, 0x53, 0xdc, 0x68, 0x04, 0x4a, 0x26, 0x09, 0x89, 0x46, 0xd7, +0xd5, 0x04, 0xa2, 0x64, 0xaa, 0x20, 0x10, 0xda, 0xb8, 0x8b, 0xc4, 0x58, 0x00, 0x1c, 0x0b, 0xd4, +0x26, 0x46, 0x0d, 0x25, 0x9d, 0x05, 0xa3, 0x27, 0x1d, 0x07, 0x07, 0xb8, 0x7d, 0x79, 0xd2, 0x03, +0xbe, 0xac, 0x47, 0xf3, 0x9e, 0xa4, 0x9d, 0x2d, 0x9f, 0x89, 0x8c, 0x8f, 0x11, 0xb2, 0xe2, 0x6a, +0x66, 0x09, 0x4d, 0xb6, 0x4d, 0xa1, 0xb4, 0x0b, 0x76, 0x59, 0x3a, 0x40, 0xd9, 0x71, 0x0b, 0x23, +0x3e, 0xb1, 0x9a, 0x2d, 0x2c, 0x84, 0x4c, 0x0c, 0x8f, 0x0d, 0x60, 0x3d, 0xf7, 0xef, 0xaa, 0x26, +0xf7, 0xaa, 0x7e, 0x1f, 0xb6, 0x72, 0x73, 0x39, 0xe0, 0x7f, 0x85, 0x16, 0x32, 0xf3, 0x29, 0x12, +0x72, 0xa5, 0x9d, 0x07, 0x75, 0x0b, 0xb1, 0x6a, 0x3c, 0x66, 0xca, 0x32, 0xdc, 0x83, 0x7a, 0x6f, +0x53, 0x00, 0x75, 0x59, 0x05, 0xdd, 0x44, 0x14, 0x7c, 0x4d, 0x19, 0xa3, 0xb9, 0x8d, 0x7a, 0x95, +0xb4, 0x90, 0xb6, 0xc8, 0x97, 0x00, 0x79, 0x37, 0x28, 0xbb, 0x65, 0x3a, 0x80, 0x0d, 0xbc, 0x4d, +0x5f, 0xef, 0x3e, 0x26, 0x62, 0x19, 0xef, 0x98, 0x00, 0x9f, 0x24, 0x69, 0x0c, 0x81, 0x8b, 0xfa, +0x80, 0xe3, 0xaa, 0x71, 0x6e, 0x09, 0x7a, 0x24, 0xe7, 0x76, 0xe4, 0x12, 0x12, 0x99, 0xa9, 0x33, +0x1d, 0x2e, 0x26, 0xc8, 0x7f, 0x63, 0x4c, 0x21, 0xe2, 0xf4, 0xd0, 0x7c, 0x36, 0x37, 0xad, 0x7e, +0xe8, 0x71, 0x11, 0xf3, 0xa7, 0x92, 0xab, 0x7b, 0xb7, 0xba, 0x2f, 0xd9, 0xe1, 0x1d, 0xbc, 0xd8, +0x3e, 0xb5, 0x05, 0x0e, 0x80, 0x81, 0x85, 0x69, 0x66, 0xe9, 0x7a, 0x6d, 0xd2, 0xab, 0x3c, 0xd2, +0xee, 0x59, 0x20, 0x09, 0x59, 0xc6, 0xbb, 0xa5, 0x3d, 0x1f, 0x72, 0x2c, 0x35, 0x7e, 0x53, 0x4e, +0x17, 0x29, 0x42, 0xb6, 0x8c, 0xe0, 0xd0, 0x45, 0x78, 0x1e, 0x86, 0x6f, 0xbf, 0xe8, 0x85, 0xcd, +0x94, 0x17, 0xbd, 0x58, 0xf1, 0x6d, 0xae, 0x61, 0x91, 0x82, 0x15, 0x1a, 0x95, 0xd3, 0x20, 0x07, +0x02, 0x2a, 0x3c, 0x5c, 0x3a, 0x60, 0xe5, 0xfb, 0x0e, 0xba, 0xde, 0xaf, 0xb4, 0x61, 0xb8, 0x98, +0x8f, 0xd7, 0xca, 0xe0, 0x65, 0x78, 0x19, 0x27, 0x8f, 0xe4, 0x0a, 0xe8, 0x0a, 0xaa, 0x0f, 0x4e, +0xe6, 0xb9, 0x24, 0xee, 0xc0, 0xb3, 0xcb, 0x67, 0x22, 0x4d, 0x74, 0x23, 0x56, 0x16, 0x98, 0xf7, +0x77, 0x51, 0xdc, 0x84, 0xe5, 0x80, 0x75, 0x74, 0xfc, 0xde, 0x81, 0x42, 0xa9, 0x9c, 0x96, 0xe5, +0xc5, 0x40, 0x22, 0x4d, 0x7a, 0xdf, 0xea, 0x90, 0x41, 0xab, 0x6b, 0x33, 0x9d, 0x75, 0xde, 0x9d, +0xdd, 0xe7, 0x2f, 0xbc, 0xe6, 0xdd, 0x66, 0x12, 0xfb, 0xc7, 0x3a, 0xbb, 0x2e, 0x82, 0xcf, 0xba, +0x97, 0x1f, 0x7a, 0x07, 0x13, 0xaf, 0x09, 0xb2, 0x65, 0xcb, 0x5e, 0x04, 0xb1, 0x1d, 0xf9, 0x97, +0x6d, 0x60, 0xfb, 0x2d, 0xe7, 0x7b, 0x7c, 0x49, 0xe4, 0xb2, 0x36, 0x29, 0xb4, 0x05, 0x6c, 0x41, +0x26, 0xa8, 0xf2, 0x04, 0xb3, 0x7e, 0x9b, 0xb7, 0x50, 0x18, 0x59, 0x62, 0x48, 0x69, 0x91, 0x6f, +0x09, 0x33, 0x44, 0x75, 0x73, 0x1f, 0x35, 0x6d, 0x93, 0xd9, 0x49, 0x8d, 0x43, 0x1d, 0x6a, 0x5b, +0x1d, 0xf6, 0xf3, 0x0b, 0x0a, 0xdb, 0x14, 0x30, 0xf8, 0xa3, 0x09, 0xb5, 0x5d, 0xd2, 0x00, 0xce, +0x9b, 0x01, 0x04, 0xb9, 0x94, 0x26, 0x70, 0x96, 0xd7, 0xb4, 0xb1, 0x2d, 0x8d, 0x3f, 0x8d, 0xac, +0xb6, 0x12, 0x10, 0x3c, 0xe0, 0xc9, 0xc9, 0xfb, 0xf8, 0x29, 0xc1, 0x38, 0xf4, 0x1d, 0x77, 0x76, +0xd4, 0x1d, 0xe2, 0xcc, 0x6e, 0x41, 0xc6, 0xcc, 0x55, 0x0e, 0x0b, 0xd8, 0x22, 0x2a, 0xeb, 0x31, +0xf3, 0xaa, 0x36, 0x3a, 0x7d, 0xb0, 0x13, 0x3b, 0x5f, 0x59, 0xa2, 0x06, 0xd5, 0xbf, 0x0e, 0x0a, +0x71, 0x2c, 0xe6, 0xd2, 0xd2, 0xe3, 0x2b, 0x73, 0xb4, 0xd7, 0xf5, 0x95, 0x2c, 0xf0, 0xfc, 0xce, +0x16, 0x11, 0xef, 0x2b, 0xfd, 0x87, 0x4a, 0x78, 0x31, 0x58, 0x53, 0xc1, 0xa0, 0xce, 0x6f, 0x21, +0x73, 0xf8, 0x1c, 0xde, 0x75, 0x9a, 0xd0, 0xda, 0x03, 0xed, 0x4b, 0xdf, 0xe4, 0xcf, 0xe1, 0x03, +0xeb, 0xb3, 0x45, 0x8e, 0xf4, 0xb7, 0x4c, 0x59, 0xfa, 0x07, 0x59, 0xe9, 0xd6, 0xaa, 0xac, 0xfb, +0x12, 0xf6, 0xf3, 0xaa, 0x60, 0xbb, 0xcc, 0xed, 0x91, 0x89, 0xe1, 0xa9, 0x5e, 0xf7, 0xaa, 0x5b, +0x57, 0x0c, 0x53, 0x8e, 0x9d, 0xcc, 0xbe, 0x05, 0xfb, 0x88, 0xb5, 0xb3, 0x57, 0xab, 0x76, 0x42, +0xb7, 0x58, 0x41, 0x0d, 0xca, 0x40, 0x85, 0x9b, 0x00, 0x49, 0x44, 0xed, 0xc5, 0xc7, 0x62, 0x1a, +0xea, 0x98, 0xcc, 0x8a, 0xae, 0x8b, 0xbd, 0x4c, 0x82, 0x6d, 0xe0, 0xac, 0xbd, 0x1b, 0x18, 0xe8, +0x69, 0x2d, 0x40, 0x2e, 0x6d, 0x47, 0x30, 0x57, 0x60, 0xad, 0x1a, 0xd8, 0x5a, 0x6b, 0xa0, 0xe7, +0xd8, 0xc8, 0x8a, 0xc7, 0x22, 0x28, 0x2e, 0xd2, 0x83, 0xb2, 0x4f, 0x5c, 0x5c, 0xe4, 0xed, 0x04, +0x06, 0x13, 0x42, 0xfe, 0xa0, 0x1b, 0x9e, 0xa7, 0x79, 0xff, 0x6c, 0x6b, 0xb4, 0x0b, 0xe0, 0x36, +0x40, 0xd5, 0x2c, 0x26, 0xa2, 0x46, 0x6f, 0x15, 0x8b, 0x03, 0x33, 0xa0, 0x6f, 0xf8, 0x33, 0xac, +0xff, 0x2c, 0x54, 0x52, 0x28, 0x25, 0x60, 0x43, 0xc3, 0x2d, 0x7e, 0x3a, 0x69, 0x17, 0x97, 0x5f, +0x74, 0xc2, 0x52, 0x58, 0x4b, 0x27, 0xa5, 0xf6, 0xda, 0x3c, 0x33, 0xe0, 0xca, 0xe6, 0x2a, 0x30, +0x5b, 0xf2, 0xcd, 0xff, 0x27, 0x77, 0x41, 0x95, 0xfd, 0x1c, 0x7d, 0xc1, 0x47, 0x8b, 0x44, 0xc4, +0x08, 0x17, 0x23, 0x12, 0xa7, 0x1b, 0xe2, 0x57, 0xae, 0x31, 0x04, 0xfc, 0x3c, 0x4b, 0xde, 0xc1, +0x4a, 0x63, 0x0a, 0x9f, 0x12, 0x5a, 0x7c, 0x8e, 0x3a, 0x3c, 0xc0, 0xe0, 0x47, 0x20, 0x19, 0xa8, +0x30, 0xe1, 0xf2, 0x11, 0x55, 0x1d, 0xc4, 0xb6, 0xfd, 0xe4, 0x76, 0x26, 0x91, 0x7d, 0xc7, 0x25, +0x93, 0xa4, 0x5f, 0x05, 0x43, 0xbf, 0xa6, 0x84, 0xdb, 0x12, 0x62, 0x0d, 0x25, 0x1f, 0xb7, 0xc7, +0xb9, 0xd4, 0x96, 0x60, 0x7c, 0xfd, 0x92, 0x35, 0x35, 0x5c, 0x4a, 0x29, 0x9e, 0x99, 0xcd, 0xd2, +0xa9, 0x1b, 0x5c, 0x0d, 0xe0, 0x11, 0x79, 0xa9, 0x53, 0x4e, 0x2e, 0xf5, 0xcc, 0x5c, 0x80, 0xed, +0x1e, 0x1a, 0xb7, 0xcb, 0xbf, 0x69, 0xd9, 0x79, 0x15, 0xa2, 0xbd, 0xff, 0x61, 0x95, 0x09, 0x10, +0x4d, 0x7a, 0xfc, 0x29, 0xa9, 0x1b, 0x5c, 0xdf, 0xa4, 0x4b, 0x62, 0xac, 0x31, 0x3c, 0x66, 0x84, +0x15, 0x41, 0xaf, 0xb3, 0xb1, 0x0e, 0xc5, 0x9b, 0x2e, 0x68, 0x2a, 0x97, 0x72, 0x2f, 0xaf, 0xc6, +0x71, 0x63, 0x59, 0x61, 0xe7, 0x55, 0x6f, 0xa5, 0x6c, 0x2b, 0x18, 0x56, 0x6b, 0x2b, 0x92, 0x52, +0xcb, 0x05, 0x40, 0x00, 0xb0, 0xa7, 0xc2, 0x17, 0x6b, 0xca, 0xec, 0x82, 0xb1, 0xe0, 0x82, 0xd7, +0xf7, 0x06, 0x51, 0x3d, 0xca, 0xfd, 0x31, 0x24, 0xa0, 0xa2, 0x53, 0xbf, 0x57, 0x18, 0xcd, 0xfc, +0x1d, 0x6a, 0x81, 0xee, 0x35, 0x5f, 0x51, 0xbe, 0xff, 0x13, 0xfd, 0x8a, 0x6d, 0x84, 0x6d, 0x67, +0xe0, 0xe0, 0x46, 0x1b, 0x16, 0x5f, 0xc0, 0xd2, 0xa8, 0x21, 0x52, 0xb3, 0x3f, 0xf0, 0x9e, 0x6a, +0x03, 0xb8, 0xbb, 0x4c, 0x71, 0xb8, 0xa8, 0xaf, 0xfa, 0xf6, 0x8b, 0xe0, 0x11, 0xd4, 0x4e, 0x3b, +0xfe, 0x98, 0xfa, 0xbe, 0x74, 0x37, 0x14, 0xcd, 0x74, 0xb5, 0x9b, 0x48, 0x5a, 0x39, 0x60, 0x27, +0x2d, 0x45, 0xc9, 0xa8, 0xd0, 0x99, 0x36, 0x94, 0x8d, 0x9f, 0xd0, 0x1f, 0x89, 0x66, 0xb2, 0xaf, +0x49, 0xdb, 0xcf, 0xa2, 0xb0, 0x45, 0x97, 0x47, 0x08, 0x79, 0x0a, 0x96, 0xd9, 0xd6, 0x29, 0x86, +0x35, 0xe1, 0xbf, 0x67, 0x2a, 0xe5, 0x59, 0xcb, 0x5e, 0xc9, 0x62, 0x08, 0x12, 0x8a, 0xca, 0x5d, +0x5c, 0x28, 0x07, 0x8c, 0xd5, 0xe3, 0x23, 0x50, 0x01, 0x4d, 0xf6, 0xce, 0x9d, 0x52, 0x50, 0xa9, +0x02, 0x8c, 0xa3, 0x0b, 0x52, 0x4c, 0x60, 0xfb, 0x49, 0xdf, 0x97, 0x90, 0xb8, 0xf4, 0x69, 0x77, +0x55, 0x82, 0x52, 0x28, 0xed, 0x82, 0x5c, 0x51, 0x10, 0x95, 0x42, 0x46, 0x22, 0x65, 0xf2, 0x74, +0xfe, 0x0e, 0x89, 0x65, 0x55, 0xa6, 0xef, 0x29, 0xf3, 0xf4, 0xfb, 0x7c, 0x10, 0xab, 0x1b, 0xec, +0x26, 0x24, 0xf8, 0x46, 0xe8, 0xd2, 0xc7, 0xda, 0x61, 0xbf, 0xd3, 0x36, 0x50, 0x9b, 0xfa, 0xbb, +0x7f, 0xdf, 0x61, 0x90, 0xf6, 0xb7, 0x6e, 0xe4, 0x9c, 0xdb, 0xb5, 0x59, 0x83, 0x83, 0x5a, 0x54, +0xe4, 0xec, 0x04, 0xac, 0x0d, 0xc3, 0x76, 0xc9, 0x2c, 0xee, 0x8a, 0xba, 0x08, 0x7d, 0x48, 0xb0, +0xd0, 0xa0, 0xa7, 0xea, 0x0d, 0x5b, 0xa5, 0x68, 0x59, 0x3a, 0xe2, 0xcd, 0x14, 0x90, 0x7e, 0xe5, +0xf5, 0xfc, 0x50, 0xfb, 0x2d, 0xf0, 0x51, 0x9f, 0xaa, 0x4b, 0x75, 0xa3, 0x01, 0x5d, 0x3a, 0x18, +0xe4, 0x4a, 0x76, 0xb9, 0x10, 0x8c, 0x27, 0x08, 0x4a, 0xde, 0xac, 0xc0, 0xec, 0xfc, 0x6c, 0x5b, +0x85, 0x86, 0x1d, 0xd8, 0xc5, 0x74, 0xce, 0x7b, 0x52, 0xb5, 0x6c, 0x6f, 0x0e, 0x95, 0x95, 0x18, +0x94, 0x8f, 0x55, 0xe2, 0x35, 0x8a, 0x13, 0xeb, 0xd9, 0x2e, 0xfc, 0xc0, 0x98, 0x8d, 0x79, 0xd2, +0xdd, 0x0b, 0x19, 0xc6, 0x2f, 0xd9, 0x39, 0x6d, 0xb9, 0xf1, 0x0e, 0x75, 0x2c, 0x5a, 0x51, 0x74, +0xd6, 0x20, 0xa3, 0x15, 0xcc, 0xcf, 0x07, 0x79, 0xc5, 0xad, 0x8f, 0x23, 0x5a, 0x2b, 0x49, 0xa4, +0x1a, 0xd1, 0x09, 0xdc, 0x7e, 0xa1, 0x15, 0x59, 0x2a, 0x6a, 0xf4, 0xda, 0xf7, 0xcc, 0xee, 0x41, +0x80, 0x77, 0x9e, 0xf4, 0x43, 0x29, 0x13, 0x41, 0x1a, 0xd2, 0x5e, 0xda, 0xef, 0x2a, 0xb3, 0x81, +0x66, 0xe1, 0x8d, 0x75, 0x74, 0x11, 0x18, 0x4d, 0x4c, 0x9b, 0x58, 0x2e, 0x15, 0xaa, 0x18, 0xf1, +0x01, 0x7a, 0xac, 0x65, 0xc6, 0x41, 0xbb, 0x4c, 0x2f, 0xd7, 0x23, 0xea, 0x8d, 0xa8, 0xe6, 0xf8, +0x75, 0x3e, 0x44, 0xa9, 0x40, 0x11, 0xa1, 0xf6, 0x47, 0x37, 0x80, 0xe2, 0x88, 0x1f, 0xc5, 0x98, +0x9f, 0xc7, 0x2a, 0x99, 0x7e, 0x88, 0xdf, 0x49, 0xdf, 0x58, 0xc1, 0xe2, 0xf8, 0x7e, 0x68, 0x51, +0x3e, 0x97, 0xac, 0x84, 0x22, 0x38, 0x1c, 0x9c, 0xac, 0x8d, 0x2b, 0x10, 0x42, 0x09, 0xed, 0x99, +0x72, 0x4c, 0xa6, 0xd1, 0x1a, 0x7a, 0x42, 0x12, 0xdf, 0x5a, 0xd7, 0x23, 0x08, 0xed, 0x8f, 0xd3, +0x3c, 0x1a, 0x36, 0x1c, 0x7d, 0x11, 0x06, 0x26, 0xa6, 0x75, 0x50, 0x62, 0x45, 0xb1, 0x72, 0x55, +0x7b, 0x5c, 0x5e, 0x28, 0xa1, 0x37, 0xa8, 0x2b, 0x26, 0xde, 0x51, 0xaf, 0x44, 0xc2, 0xd9, 0x7d, +0x1f, 0x10, 0x66, 0x3c, 0x9c, 0x80, 0x31, 0x9e, 0x0c, 0x60, 0x2e, 0xec, 0x95, 0x87, 0xc3, 0xdb, +0xb2, 0x33, 0x06, 0xd9, 0xf8, 0xfa, 0x68, 0xdc, 0x9b, 0x76, 0xc3, 0xa7, 0xef, 0xec, 0xd1, 0x0b, +0xce, 0x2c, 0xe3, 0x90, 0xb0, 0x7e, 0xb2, 0x3f, 0x24, 0xf2, 0xae, 0x38, 0xd1, 0x1b, 0xbd, 0x33, +0xb8, 0x0f, 0xc5, 0x84, 0x1d, 0xa1, 0x6f, 0x1a, 0xf3, 0xca, 0x2a, 0x71, 0xca, 0xc1, 0x7f, 0xf7, +0x77, 0x26, 0x1f, 0x25, 0x59, 0x19, 0xb6, 0x4b, 0x37, 0xe6, 0xc3, 0xab, 0xaf, 0x33, 0xa1, 0x26, +0x08, 0xc0, 0x68, 0x51, 0x01, 0xfa, 0xb6, 0xf5, 0xea, 0x68, 0x4a, 0x84, 0x42, 0x2b, 0xd5, 0xe1, +0xe6, 0xd8, 0x46, 0xae, 0x1b, 0x5a, 0x75, 0x06, 0xed, 0xb2, 0x4b, 0x05, 0x19, 0x2a, 0x92, 0x97, +0x64, 0x9b, 0x3e, 0xc7, 0xa4, 0x90, 0xa8, 0xaf, 0xa1, 0x34, 0x0c, 0xed, 0xdf, 0x23, 0xce, 0x69, +0x1c, 0x26, 0x17, 0x67, 0xec, 0x02, 0x66, 0xfa, 0x30, 0x61, 0x57, 0xf8, 0x59, 0xde, 0x26, 0x06, +0x7c, 0x76, 0xb8, 0x95, 0xf7, 0xba, 0x7f, 0x56, 0xa3, 0x68, 0x27, 0xb4, 0x87, 0x3a, 0x23, 0x51, +0xe1, 0x47, 0x1e, 0x45, 0x0c, 0x2b, 0xc3, 0x77, 0x33, 0x6c, 0xc9, 0x0b, 0x9b, 0x04, 0x26, 0xfc, +0x78, 0x46, 0x36, 0x81, 0x61, 0x6c, 0x7f, 0x29, 0x78, 0xb5, 0x6b, 0x15, 0x29, 0x5d, 0x03, 0x4d, +0xfe, 0xec, 0x13, 0x4c, 0x7b, 0x5e, 0x15, 0x50, 0x2d, 0x03, 0x4b, 0x80, 0x72, 0xcd, 0x36, 0x03, +0xef, 0xe9, 0xa0, 0x95, 0xc5, 0x87, 0xa9, 0x1c, 0xfb, 0x73, 0x09, 0x82, 0xb2, 0x1d, 0xd2, 0x97, +0xd8, 0x4b, 0x0a, 0x0e, 0x5e, 0xb7, 0x32, 0xa0, 0x89, 0x29, 0x35, 0x0c, 0x1f, 0x15, 0x98, 0xd5, +0x74, 0xcb, 0x9c, 0xeb, 0x5b, 0x24, 0x33, 0x73, 0xc8, 0x6f, 0xb6, 0x3c, 0x95, 0x24, 0x9b, 0x38, +0x4a, 0x5a, 0xf6, 0xe2, 0x57, 0xfd, 0x73, 0xbf, 0xc8, 0x55, 0x4e, 0xbd, 0x2c, 0x51, 0x0f, 0x53, +0x72, 0xfd, 0x0e, 0xd0, 0xa3, 0xed, 0x29, 0x8e, 0x43, 0xfe, 0x03, 0xb5, 0x5f, 0xad, 0x3c, 0xc3, +0x38, 0x32, 0x38, 0xf0, 0xab, 0xc5, 0x5d, 0xc4, 0xaa, 0x71, 0xc6, 0xff, 0x6b, 0x4b, 0x15, 0x18, +0x85, 0x69, 0xaf, 0xb4, 0x44, 0x7b, 0xd4, 0xbf, 0xef, 0xde, 0x48, 0xcd, 0xc3, 0xe1, 0x32, 0xe4, +0x56, 0x55, 0x3d, 0xeb, 0xf9, 0xf9, 0x66, 0xb5, 0x2b, 0xed, 0x36, 0x2b, 0x7b, 0x3d, 0x1d, 0xe6, +0xa8, 0xcf, 0x54, 0xc1, 0xf1, 0xcc, 0xec, 0x97, 0x90, 0xa1, 0xc7, 0x79, 0xb5, 0x64, 0xae, 0x3b, +0x65, 0x6c, 0x0a, 0xb9, 0xce, 0xd0, 0x81, 0x5d, 0x68, 0x18, 0x4a, 0xcc, 0x36, 0x78, 0x9d, 0x5d, +0xd6, 0x28, 0xb5, 0x24, 0x87, 0xcf, 0x8a, 0x6f, 0x03, 0x1b, 0x42, 0x4b, 0xa6, 0x8e, 0x07, 0xb6, +0x59, 0x19, 0x85, 0xf3, 0x3e, 0xc6, 0xc1, 0x76, 0x9e, 0xc2, 0xd8, 0x61, 0x0d, 0x2a, 0xba, 0x88, +0x8f, 0xda, 0x93, 0x9d, 0x25, 0x27, 0xeb, 0x78, 0x56, 0xd3, 0xe9, 0x1f, 0xbf, 0x65, 0x62, 0x52, +0xb4, 0x67, 0x52, 0xa8, 0xa2, 0xd5, 0x3d, 0xa1, 0x4e, 0x26, 0x10, 0xa5, 0xdf, 0x10, 0x6d, 0x15, +0x41, 0xfc, 0x94, 0x7e, 0x23, 0x27, 0xd3, 0x19, 0x3f, 0x34, 0x97, 0x5a, 0x75, 0xaa, 0x84, 0xbf, +0x4e, 0xf9, 0x90, 0x75, 0x5b, 0xfe, 0x2c, 0x4e, 0xb5, 0x27, 0x92, 0x4b, 0xd7, 0xd8, 0x15, 0x44, +0x04, 0x00, 0x51, 0x12, 0x02, 0x06, 0x15, 0xba, 0xd3, 0xff, 0x95, 0x6e, 0x3b, 0x21, 0x57, 0xcb, +0xd0, 0xfb, 0xb9, 0x2d, 0x22, 0x4d, 0x85, 0x17, 0xaf, 0xea, 0xaf, 0x47, 0x65, 0xf0, 0xcd, 0x25, +0xee, 0xbe, 0xca, 0x81, 0xb4, 0xd3, 0xad, 0x25, 0xcf, 0x28, 0xa0, 0xe7, 0x9d, 0xed, 0x4a, 0xcf, +0xd2, 0x17, 0x87, 0x70, 0x50, 0x33, 0xb5, 0x20, 0x06, 0x15, 0x70, 0x44, 0xfb, 0xd4, 0x8e, 0xb3, +0x69, 0x23, 0x09, 0x69, 0xd3, 0x2d, 0x44, 0x02, 0x0b, 0x07, 0x2a, 0xce, 0xe2, 0x70, 0x42, 0xd5, +0xfb, 0x3b, 0x37, 0x62, 0x03, 0x78, 0x1d, 0xb3, 0xfd, 0x23, 0xc1, 0x5c, 0xd1, 0xfb, 0x6c, 0x1a, +0x7c, 0x0e, 0xd1, 0xe3, 0x92, 0x1d, 0x7d, 0xab, 0xcc, 0x91, 0x38, 0x35, 0xd1, 0xe2, 0xce, 0xdd, +0x06, 0xf7, 0xe3, 0xbe, 0x0c, 0x2f, 0x84, 0xa7, 0x04, 0xe2, 0x71, 0x5a, 0x0c, 0xb6, 0xfd, 0x89, +0xbb, 0x1b, 0xf0, 0x10, 0x96, 0x87, 0x7c, 0x40, 0x7c, 0x6e, 0xf4, 0x9b, 0x6c, 0x2a, 0xca, 0xdf, +0xd4, 0x2a, 0xbe, 0x90, 0x28, 0xba, 0x50, 0x2e, 0xdd, 0x21, 0x8c, 0xea, 0xe7, 0x17, 0xba, 0x5b, +0x05, 0x6b, 0x70, 0x1c, 0xe2, 0x4c, 0xf0, 0x7b, 0x37, 0x67, 0x4b, 0x0f, 0x32, 0xf4, 0xa3, 0xe9, +0x9e, 0x77, 0x91, 0x29, 0x12, 0x4d, 0x7b, 0x81, 0x1d, 0xc8, 0x22, 0xe3, 0x7c, 0xe6, 0x6c, 0x37, +0x32, 0x5d, 0x52, 0x5e, 0x8e, 0xee, 0xdb, 0x9c, 0x44, 0x76, 0xd8, 0x0b, 0x80, 0x7a, 0x1c, 0x46, +0xc2, 0x89, 0xb5, 0xd8, 0x20, 0xfe, 0x5f, 0xda, 0x53, 0xc4, 0xd1, 0x9b, 0x01, 0xed, 0x83, 0x95, +0xf9, 0xaa, 0x75, 0x20, 0x7f, 0xbc, 0x5d, 0x9f, 0xae, 0x62, 0xd5, 0x9a, 0x44, 0x3f, 0x02, 0x6b, +0xe9, 0x78, 0x8c, 0xca, 0x69, 0x2f, 0xcf, 0xa5, 0xe2, 0xe1, 0xbb, 0x1d, 0x02, 0xa4, 0xec, 0x8c, +0x39, 0x33, 0x3d, 0x50, 0x72, 0x19, 0x40, 0x5b, 0x18, 0x3d, 0x68, 0xcf, 0x7d, 0x2b, 0xde, 0x93, +0xd9, 0x0c, 0x96, 0x5c, 0x4e, 0xf2, 0x2e, 0xab, 0x6c, 0x49, 0x37, 0x4d, 0x13, 0x47, 0x0f, 0xe3, +0x58, 0x21, 0xcf, 0x33, 0xce, 0x4f, 0x47, 0x6a, 0x2e, 0x47, 0x0c, 0x6d, 0xa9, 0xc1, 0xb7, 0x46, +0xcc, 0x92, 0x33, 0xb9, 0xe4, 0x1a, 0xbe, 0xc9, 0xe3, 0x59, 0x2c, 0x93, 0xc5, 0xcb, 0x67, 0xe9, +0x9b, 0xcd, 0x6d, 0x17, 0xc5, 0x96, 0xc1, 0xcb, 0xe9, 0x25, 0x6b, 0xd7, 0x8f, 0x7d, 0xd8, 0xd3, +0xdd, 0xd7, 0x92, 0xc9, 0xfe, 0xfe, 0xe1, 0x46, 0xa1, 0x95, 0x59, 0xac, 0xfd, 0x2a, 0x81, 0xfb, +0x15, 0x94, 0xec, 0xc2, 0xfe, 0xda, 0x04, 0x0a, 0x4b, 0xbb, 0x0c, 0x16, 0x26, 0x7f, 0xcf, 0x7c, +0x90, 0x9e, 0x7e, 0x46, 0xd9, 0x7e, 0x19, 0x5e, 0x7e, 0x2f, 0x20, 0x6f, 0xa6, 0xf5, 0xde, 0x69, +0x81, 0x81, 0xee, 0xa2, 0x7a, 0xba, 0x41, 0x65, 0xc8, 0xf3, 0x48, 0x1e, 0xd2, 0x93, 0x49, 0x3c, +0x60, 0xac, 0x21, 0x50, 0xb0, 0x6c, 0x6d, 0x61, 0xf9, 0x10, 0xd9, 0x87, 0xd3, 0xc7, 0x20, 0x1a, +0x0b, 0x89, 0xd7, 0xca, 0x76, 0x4a, 0x33, 0xb7, 0x10, 0xed, 0xdf, 0x19, 0xae, 0x26, 0xbc, 0xa9, +0xdd, 0xd8, 0x13, 0x68, 0x15, 0x75, 0x27, 0xcc, 0x93, 0x2e, 0x0b, 0x8b, 0x8a, 0x2a, 0xa6, 0x75, +0x8e, 0x14, 0x33, 0x84, 0x9a, 0xb4, 0xf5, 0xea, 0x24, 0xe0, 0x5e, 0xf5, 0x52, 0xc0, 0x61, 0xa8, +0x19, 0x02, 0x2e, 0xbc, 0x53, 0xdf, 0xbc, 0xf2, 0x42, 0x0d, 0x59, 0x89, 0x39, 0x09, 0xca, 0x5e, +0x3f, 0x36, 0x48, 0xcc, 0xc9, 0x3c, 0x07, 0x6e, 0xdc, 0xec, 0x11, 0xec, 0x37, 0x9a, 0x54, 0x6b, +0x0c, 0x70, 0x13, 0xef, 0x6e, 0x38, 0xa4, 0x74, 0xea, 0x15, 0xcc, 0x85, 0x32, 0x94, 0xae, 0xb0, +0x66, 0xdf, 0x6b, 0xe4, 0xe8, 0x92, 0xf1, 0xa7, 0x27, 0xfc, 0x63, 0x5d, 0xda, 0x2c, 0x9f, 0x76, +0xb4, 0xf5, 0x07, 0x73, 0x93, 0x24, 0x7c, 0x60, 0xce, 0xf2, 0x9e, 0x3e, 0xc9, 0x66, 0x3e, 0x45, +0x6a, 0xda, 0xc4, 0x25, 0x83, 0x52, 0x32, 0x63, 0x8b, 0xeb, 0x15, 0x46, 0xd0, 0x48, 0x18, 0xda, +0x96, 0x26, 0x69, 0x31, 0xda, 0x9c, 0xa1, 0x8f, 0x2c, 0xe3, 0xb4, 0xb7, 0x38, 0x93, 0xa7, 0x5b, +0x83, 0xf7, 0xff, 0x79, 0x0b, 0x74, 0x9c, 0x2b, 0xfb, 0x6f, 0x5c, 0x5f, 0xb3, 0x45, 0x22, 0x51, +0xb9, 0xb2, 0x78, 0x22, 0xfb, 0x11, 0x9f, 0x84, 0xae, 0x1f, 0xdc, 0xd4, 0x42, 0x1e, 0xf9, 0xe5, +0x63, 0x60, 0xb0, 0x2e, 0xc7, 0x30, 0xc3, 0xdf, 0x21, 0xa6, 0xe5, 0x72, 0xbb, 0xce, 0x13, 0xef, +0xf0, 0xe2, 0x1f, 0x85, 0xf1, 0xce, 0xa9, 0x82, 0x76, 0x60, 0x93, 0x72, 0xee, 0xe0, 0x47, 0x37, +0x99, 0x13, 0xd9, 0x68, 0xf6, 0x29, 0x64, 0x69, 0x6c, 0x44, 0x65, 0xa0, 0x93, 0xaa, 0x49, 0x30, +0x05, 0x08, 0xc6, 0x4e, 0x59, 0x91, 0xb0, 0x93, 0xfd, 0xbb, 0x9b, 0xad, 0x6b, 0xb1, 0x71, 0xc8, +0x0c, 0xc1, 0x86, 0x76, 0x6c, 0xd2, 0xa7, 0x47, 0x3e, 0x52, 0x59, 0x9d, 0xda, 0x52, 0x33, 0x20, +0x94, 0xfa, 0x5d, 0x5d, 0xba, 0xbf, 0xc3, 0x83, 0xe8, 0x77, 0x0d, 0x7c, 0x7d, 0x6b, 0x3b, 0xed, +0xa2, 0x85, 0xe6, 0x60, 0x75, 0x05, 0xac, 0x59, 0xa7, 0x8a, 0x27, 0x69, 0xd9, 0x48, 0x69, 0xb8, +0x77, 0x78, 0x67, 0x7a, 0xd7, 0xa6, 0xfb, 0xda, 0x32, 0xc0, 0x98, 0x92, 0xf3, 0x53, 0xe2, 0x1d, +0xd0, 0xb5, 0xc2, 0xcf, 0xda, 0x0c, 0x73, 0x83, 0xcf, 0x7e, 0xc4, 0xdf, 0x0b, 0xb1, 0x37, 0x88, +0xc9, 0x9b, 0xf9, 0xca, 0xde, 0x3c, 0x10, 0x8a, 0xed, 0xec, 0xc2, 0x50, 0x60, 0x39, 0x68, 0x67, +0xde, 0x52, 0x52, 0x5a, 0xcf, 0x41, 0x4c, 0x07, 0x18, 0xdb, 0xf3, 0xef, 0x87, 0xc8, 0x49, 0xcc, +0xb2, 0x09, 0x5c, 0x9d, 0xf7, 0x82, 0xef, 0x87, 0x61, 0x32, 0x3d, 0xd3, 0xc5, 0x18, 0x45, 0x8c, +0x55, 0x82, 0x90, 0xc9, 0x01, 0xb5, 0x9f, 0x9a, 0x7c, 0xfe, 0x19, 0xdf, 0x5a, 0x43, 0xdd, 0xfa, +0x8a, 0xe8, 0xc0, 0xc2, 0xc0, 0xa8, 0x38, 0xa3, 0x76, 0xc2, 0x05, 0x12, 0xb7, 0x9b, 0x95, 0xe1, +0xca, 0x12, 0xf8, 0xdb, 0x2a, 0x8a, 0xdb, 0xec, 0xff, 0x65, 0x1e, 0x08, 0xd9, 0x2b, 0xe6, 0x54, +0xac, 0xbd, 0xec, 0xee, 0xe6, 0x40, 0x8f, 0x54, 0x71, 0x3f, 0x37, 0x8f, 0x01, 0xaa, 0x32, 0xeb, +0xc9, 0x9e, 0x49, 0x21, 0x0d, 0x97, 0xe6, 0x3a, 0xbf, 0x8a, 0xbb, 0xc8, 0x63, 0x8a, 0x3e, 0x13, +0xe6, 0xd3, 0xbf, 0xff, 0x03, 0x60, 0x67, 0x9c, 0xa4, 0x26, 0xe8, 0xa2, 0xd7, 0x43, 0x06, 0x7d, +0x8b, 0xf4, 0x08, 0x94, 0x6f, 0x44, 0x42, 0xf6, 0xcd, 0xb2, 0x90, 0x21, 0x77, 0x80, 0xba, 0xaf, +0x1c, 0x46, 0x34, 0x8a, 0x98, 0x0b, 0xff, 0x4e, 0x02, 0x16, 0xd6, 0x4c, 0x59, 0x44, 0x65, 0x52, +0x2d, 0x25, 0x54, 0x4a, 0xbf, 0x98, 0x1b, 0x86, 0x59, 0xd6, 0x2d, 0x49, 0xf9, 0xbf, 0x92, 0xe1, +0x9d, 0x27, 0xa2, 0xc5, 0xe1, 0xfa, 0xa4, 0x5d, 0x9a, 0x64, 0x75, 0x03, 0x9a, 0xa7, 0x9a, 0xb8, +0x9b, 0xd5, 0x2b, 0xbb, 0x7d, 0xb0, 0x57, 0x03, 0xa6, 0x8f, 0x7b, 0x1a, 0x99, 0xd5, 0xb3, 0x13, +0xb8, 0x67, 0xb3, 0x02, 0x8a, 0xc6, 0xd4, 0x50, 0xe9, 0x83, 0x8d, 0x08, 0xb7, 0x1c, 0x1d, 0x2b, +0x84, 0xb1, 0x93, 0xda, 0x7d, 0xb3, 0x76, 0xab, 0x87, 0xc5, 0x88, 0xb6, 0x1f, 0x8f, 0xa4, 0xa5, +0x8f, 0x2a, 0xd2, 0xcc, 0x6a, 0x3a, 0x4d, 0x72, 0x6b, 0xa2, 0xf1, 0x1c, 0x3b, 0xd7, 0x0b, 0x37, +0x75, 0xfc, 0x97, 0xb9, 0x56, 0x4f, 0x83, 0x9a, 0xbc, 0xf4, 0x68, 0x24, 0xca, 0x11, 0x80, 0x52, +0xba, 0xa3, 0xc4, 0x35, 0x63, 0x49, 0xb0, 0xa9, 0xfc, 0xf2, 0x7f, 0xcd, 0x7d, 0x16, 0x68, 0xc6, +0x0e, 0xcf, 0xc1, 0xba, 0xa3, 0x3c, 0xfb, 0xea, 0x58, 0x27, 0xc7, 0x61, 0x1f, 0x13, 0xd4, 0x7e, +0xf2, 0x3b, 0x0d, 0x4e, 0xe4, 0x29, 0x8a, 0xd7, 0x20, 0x9b, 0x62, 0x05, 0x43, 0x09, 0x2a, 0x49, +0x00, 0xd2, 0x8e, 0x7e, 0x18, 0x51, 0x00, 0x09, 0xd9, 0xd7, 0x6e, 0x11, 0x91, 0x24, 0xd1, 0x6a, +0xf1, 0x29, 0x23, 0xe2, 0xc9, 0xe4, 0xe6, 0x19, 0x27, 0x9b, 0xed, 0x1c, 0xf2, 0x16, 0x16, 0x2b, +0x67, 0xe3, 0xd4, 0x42, 0x9b, 0x05, 0x3e, 0xef, 0x51, 0xa3, 0x09, 0x2b, 0x23, 0x3a, 0x70, 0x69, +0x35, 0xa2, 0xce, 0x15, 0x3c, 0xb4, 0x42, 0x06, 0x13, 0x42, 0x8c, 0xe8, 0xf1, 0xb3, 0x6c, 0x7f, +0x5e, 0x02, 0x8e, 0x4f, 0xd3, 0x5f, 0x98, 0x85, 0x9f, 0xf3, 0xa5, 0x79, 0xd7, 0x29, 0x0d, 0x2b, +0x00, 0x15, 0xb4, 0x33, 0x63, 0x2c, 0x5e, 0x95, 0xb7, 0xdb, 0x5a, 0xd0, 0x33, 0x01, 0x02, 0x28, +0x92, 0x39, 0x50, 0x14, 0xb5, 0x38, 0x5e, 0xb6, 0x3c, 0xe0, 0xd7, 0x0b, 0xf5, 0x7f, 0x25, 0xec, +0x51, 0x4e, 0x98, 0x4f, 0x6d, 0x67, 0xa3, 0xf3, 0xc7, 0x87, 0xd4, 0x8f, 0xdb, 0x06, 0xf4, 0x3d, +0x01, 0x44, 0x98, 0xbd, 0x77, 0xe3, 0xe2, 0x40, 0x9d, 0x95, 0x62, 0xd4, 0xad, 0xd8, 0x11, 0xf5, +0xe9, 0xf6, 0xef, 0x69, 0xe8, 0x56, 0xec, 0x6f, 0x89, 0x70, 0xd1, 0x1a, 0x02, 0x36, 0x15, 0x46, +0xcb, 0xcf, 0xa6, 0xe3, 0xdc, 0x63, 0x2e, 0xd6, 0x66, 0x81, 0x0b, 0xa9, 0xcd, 0x90, 0x45, 0x79, +0x04, 0x48, 0x05, 0x94, 0x67, 0x76, 0x4f, 0xeb, 0x5d, 0x23, 0x57, 0x2f, 0x8f, 0x4e, 0x2e, 0x70, +0x2a, 0x58, 0x11, 0x6e, 0xe9, 0x3e, 0x7d, 0x42, 0x4d, 0x9c, 0x91, 0xb3, 0xfe, 0xf8, 0x0c, 0xfa, +0x1e, 0x32, 0x8c, 0xd0, 0x2c, 0x17, 0x4d, 0xa8, 0x04, 0x56, 0xa8, 0x70, 0x7d, 0xad, 0xa1, 0xfb, +0xd4, 0x15, 0x3c, 0xfe, 0xf2, 0x18, 0xd4, 0xac, 0x0a, 0x03, 0xcf, 0x71, 0x02, 0xed, 0x46, 0xfa, +0xd0, 0xa2, 0x28, 0xe9, 0x93, 0x03, 0x13, 0xf5, 0x80, 0xd5, 0xac, 0xd2, 0x8a, 0x42, 0x7a, 0x2c, +0xb9, 0xbc, 0x4f, 0x70, 0xd5, 0x1c, 0x30, 0xb8, 0xe8, 0x20, 0x7c, 0xc0, 0x62, 0x0c, 0x73, 0xf9, +0x34, 0xf7, 0x52, 0xf8, 0x50, 0x39, 0xa1, 0xe3, 0x9f, 0x9b, 0x37, 0xc2, 0x22, 0x29, 0x36, 0x36, +0x20, 0xa3, 0xb5, 0x42, 0x83, 0xb6, 0x53, 0x69, 0xbe, 0x0c, 0x99, 0x15, 0xac, 0xa8, 0xe1, 0x5a, +0x46, 0x5e, 0xfa, 0x40, 0xaf, 0x03, 0x61, 0xfe, 0x3b, 0x63, 0x1c, 0xc0, 0xe2, 0xf4, 0x7e, 0xf0, +0x22, 0xaa, 0x6f, 0xb9, 0x1d, 0xae, 0x45, 0xe1, 0xa0, 0x15, 0xc1, 0xfa, 0x17, 0x83, 0x35, 0xae, +0x2f, 0x4a, 0xda, 0xd6, 0x3f, 0x9d, 0x32, 0x35, 0x08, 0x0f, 0x7b, 0x9a, 0x14, 0x21, 0x31, 0x49, +0x01, 0x23, 0xf5, 0xb1, 0x26, 0xf0, 0x77, 0x5a, 0xd7, 0x92, 0xb3, 0x4d, 0xf9, 0xdb, 0xba, 0x7b, +0x3f, 0x6f, 0x5d, 0x72, 0xfb, 0x66, 0xec, 0xd5, 0xc0, 0x11, 0x73, 0xfc, 0x60, 0xfa, 0x4b, 0x06, +0x16, 0xf8, 0x18, 0x52, 0xe7, 0x39, 0xfe, 0x95, 0x0e, 0x6c, 0x2f, 0x08, 0x70, 0xb7, 0xa4, 0x31, +0x35, 0xc9, 0xda, 0x93, 0xf6, 0xf3, 0x56, 0x22, 0x0e, 0x59, 0x54, 0xff, 0x7e, 0x8b, 0xde, 0x62, +0x83, 0x62, 0xcc, 0x3a, 0xf3, 0x6c, 0xea, 0x79, 0xfe, 0xf9, 0xd5, 0xa1, 0xcf, 0xf6, 0x47, 0x23, +0x94, 0xb3, 0x94, 0xbb, 0x67, 0x86, 0xf2, 0x80, 0x60, 0x2b, 0xf3, 0x1e, 0x39, 0xe1, 0x02, 0xba, +0xf4, 0x15, 0xb0, 0x51, 0x0e, 0x75, 0x07, 0x3f, 0xd2, 0x5a, 0xee, 0xd5, 0xdc, 0x21, 0xaa, 0xa9, +0xe9, 0xe6, 0x4a, 0x17, 0xb1, 0x12, 0x22, 0xc0, 0x3c, 0xa0, 0x2d, 0xa2, 0x82, 0x15, 0xd7, 0x31, +0x96, 0x0d, 0x94, 0x75, 0xd1, 0xab, 0x69, 0x12, 0x4f, 0x56, 0x4c, 0x95, 0x6a, 0xe4, 0x0b, 0xa9, +0xf1, 0xd9, 0x13, 0xcf, 0xd1, 0x41, 0x7f, 0xfb, 0x9d, 0xb5, 0x01, 0x3e, 0x41, 0x71, 0x30, 0xa8, +0x9f, 0xd3, 0x29, 0x46, 0xc4, 0x12, 0xe5, 0x59, 0x3e, 0xf6, 0xab, 0xfb, 0xb3, 0x46, 0xca, 0x26, +0xc1, 0x74, 0x00, 0xe2, 0xf6, 0xbf, 0x4e, 0x13, 0x82, 0x85, 0x17, 0x4d, 0x8b, 0xc4, 0x5d, 0xed, +0x70, 0x16, 0x74, 0xa1, 0x0b, 0x6c, 0xaa, 0xea, 0x52, 0xea, 0xdd, 0x80, 0x7b, 0x39, 0xfa, 0x93, +0x7c, 0x5c, 0xbb, 0x5b, 0xc4, 0xdf, 0x0c, 0x97, 0xa0, 0x92, 0x00, 0x9f, 0x64, 0xdf, 0x07, 0x94, +0x0b, 0x3e, 0xee, 0x0e, 0x70, 0xe9, 0x80, 0x9b, 0x23, 0xcf, 0xb8, 0xdd, 0x71, 0x28, 0x8c, 0xbf, +0x02, 0x53, 0x48, 0x29, 0x5a, 0x2a, 0xd9, 0x03, 0x9c, 0xbf, 0x36, 0x21, 0xe4, 0x6e, 0x37, 0x0f, +0xef, 0xf6, 0x6a, 0x87, 0xa7, 0x9d, 0x25, 0x39, 0x31, 0xe7, 0x3b, 0xfd, 0x49, 0x72, 0xbc, 0x35, +0x74, 0xbb, 0x21, 0xd0, 0xc5, 0x81, 0x96, 0x53, 0xa3, 0xd6, 0xd4, 0xbe, 0x55, 0xc8, 0x2d, 0x58, +0x20, 0x23, 0x15, 0x06, 0xf2, 0x43, 0xbd, 0x2e, 0x76, 0x4b, 0x1d, 0x85, 0x49, 0x9f, 0xa3, 0xc3, +0xaf, 0x30, 0xc1, 0x6a, 0x52, 0xec, 0xfe, 0x58, 0x1a, 0x9b, 0xa4, 0x9c, 0xe9, 0x1c, 0x83, 0xae, +0xba, 0x6c, 0xee, 0xd6, 0xaf, 0xd6, 0x20, 0x08, 0x25, 0x3e, 0xeb, 0x7d, 0x04, 0x8b, 0x2a, 0x4e, +0x8b, 0x2b, 0x33, 0x58, 0x94, 0x56, 0xcc, 0x10, 0x3d, 0xcd, 0x33, 0xe7, 0xac, 0x66, 0x68, 0xcb, +0xd6, 0x9b, 0xd8, 0xd9, 0x59, 0x36, 0xc8, 0x8c, 0x5e, 0x46, 0x6a, 0xab, 0x11, 0x30, 0x6d, 0xaa, +0xab, 0x4d, 0xb8, 0x9e, 0xe2, 0xe8, 0x21, 0xe6, 0x7d, 0x2b, 0xa5, 0x65, 0xd4, 0xd9, 0xe7, 0x61, +0xdf, 0xe3, 0xfd, 0x51, 0x5d, 0x46, 0xc3, 0xd9, 0x14, 0x18, 0xb1, 0xdb, 0x66, 0xff, 0xc9, 0x80, +0x06, 0xf5, 0xc0, 0xa8, 0x6f, 0x5e, 0xa4, 0x16, 0x77, 0xb0, 0x12, 0xdc, 0xf0, 0x1d, 0xb7, 0x23, +0xad, 0xcf, 0xa0, 0xb3, 0x81, 0xd0, 0xf0, 0x5a, 0xe3, 0xb0, 0x1d, 0x8d, 0x30, 0xbf, 0x5b, 0x80, +0x8a, 0x91, 0x45, 0x37, 0xeb, 0x08, 0x0d, 0x1e, 0xc4, 0xa7, 0xe2, 0x94, 0x00, 0xaa, 0xa6, 0x9a, +0xae, 0x0f, 0x21, 0xe3, 0x7a, 0x11, 0x24, 0x0c, 0x88, 0x51, 0x88, 0x17, 0x8a, 0x5c, 0xe5, 0xed, +0x31, 0xe9, 0x2c, 0x1f, 0x46, 0xe9, 0x4c, 0x7f, 0x59, 0x98, 0xa1, 0x32, 0xb9, 0x88, 0xbc, 0xdd, +0xd3, 0x46, 0xbb, 0x5c, 0x73, 0x2a, 0x26, 0xae, 0x85, 0x82, 0x5f, 0x41, 0xb1, 0xcb, 0xdb, 0x88, +0x34, 0x09, 0x40, 0xb4, 0xf9, 0xe6, 0xff, 0x62, 0xd6, 0xe4, 0x93, 0xb4, 0x4a, 0x62, 0xe8, 0xfc, +0x0c, 0x87, 0x77, 0x4c, 0x67, 0xc1, 0xbd, 0xf5, 0x02, 0xc0, 0x04, 0xad, 0x59, 0x2f, 0x9b, 0xf3, +0x84, 0xd7, 0x0c, 0x96, 0x1e, 0x30, 0xd7, 0xd5, 0xab, 0xb8, 0xf8, 0xac, 0xe1, 0x9f, 0x52, 0x17, +0x59, 0xb8, 0xdb, 0xc4, 0x5a, 0xa5, 0x08, 0x9b, 0x7b, 0xc8, 0x79, 0x99, 0xe1, 0xb0, 0xda, 0xc4, +0x1f, 0xb4, 0x33, 0x28, 0x72, 0x30, 0xd8, 0x91, 0x25, 0x67, 0x87, 0x5f, 0xdc, 0x21, 0xe4, 0x8c, +0x99, 0xb4, 0xdd, 0xb4, 0xf8, 0x11, 0x86, 0xc5, 0xa5, 0xdb, 0xe3, 0x23, 0xe4, 0xd7, 0xdf, 0x26, +0xdc, 0xfe, 0x35, 0xe4, 0x46, 0xc6, 0x9d, 0x46, 0x69, 0xf4, 0x6a, 0x49, 0x92, 0x30, 0xd5, 0x48, +0xbb, 0xbe, 0x46, 0xd6, 0xb5, 0x54, 0x93, 0xab, 0x02, 0x59, 0xb5, 0x0d, 0xac, 0x57, 0x0d, 0x02, +0xd4, 0xf0, 0x6d, 0xe6, 0xb6, 0x67, 0x36, 0xa0, 0x5f, 0x85, 0xf1, 0x8e, 0xd5, 0x11, 0xcb, 0x96, +0x60, 0x87, 0xcd, 0x15, 0xcd, 0x15, 0xe6, 0x2d, 0x57, 0x7e, 0xf3, 0xea, 0x45, 0x72, 0xc9, 0x84, +0xa9, 0xf4, 0x1e, 0xaf, 0x7f, 0xb1, 0xba, 0xe5, 0x6f, 0xdc, 0x94, 0x6a, 0x35, 0xd2, 0x80, 0xe3, +0xd2, 0xbd, 0xa3, 0x5a, 0x18, 0xf2, 0xf1, 0x1b, 0x05, 0x49, 0xaf, 0x23, 0xbb, 0xa0, 0x57, 0x9f, +0x36, 0x58, 0x64, 0x6d, 0xd7, 0x29, 0xed, 0x7c, 0x74, 0x87, 0xc7, 0xd1, 0xdf, 0xab, 0xce, 0xb8, +0x41, 0x0b, 0xe7, 0xfe, 0xd8, 0xc3, 0x1a, 0x09, 0xde, 0xec, 0x89, 0x90, 0xa2, 0x37, 0xef, 0x93, +0x14, 0x76, 0xf7, 0xed, 0x03, 0x43, 0x05, 0xde, 0xbb, 0x11, 0x1d, 0x85, 0x3e, 0xc1, 0x31, 0x7f, +0xca, 0xf1, 0x8d, 0x53, 0xcb, 0xaf, 0x09, 0x32, 0x0b, 0xfb, 0x11, 0x2b, 0x9a, 0x91, 0xa3, 0x65, +0xa7, 0x5e, 0x40, 0x24, 0x60, 0xd5, 0x3d, 0x0d, 0xd7, 0x0a, 0x6b, 0x94, 0xba, 0x95, 0x98, 0x83, +0x05, 0xdb, 0xd1, 0x1d, 0x23, 0x19, 0xe8, 0xd2, 0xb8, 0x55, 0xb0, 0xfb, 0x20, 0xb5, 0x25, 0x43, +0x96, 0x7f, 0x9b, 0x80, 0x95, 0x24, 0x93, 0x62, 0x1c, 0x63, 0x30, 0x13, 0x36, 0x5d, 0x84, 0x6c, +0x91, 0x2a, 0xd5, 0x30, 0x2d, 0x60, 0x09, 0x3f, 0xcb, 0x82, 0x85, 0xfe, 0xa4, 0x5a, 0x15, 0xcd, +0x44, 0xcb, 0xcd, 0x10, 0xee, 0xab, 0x22, 0xd4, 0x6d, 0x13, 0x4d, 0x89, 0x07, 0xf8, 0xb8, 0x5f, +0x22, 0xe2, 0x6b, 0x15, 0x1b, 0x7e, 0x8e, 0x5a, 0xc4, 0x06, 0xfe, 0xc4, 0xfc, 0x2c, 0xd8, 0x01, +0x33, 0x20, 0x6d, 0xc5, 0x06, 0xb9, 0x67, 0x26, 0x0f, 0x27, 0x6c, 0x22, 0x53, 0x2b, 0xaa, 0x45, +0x6b, 0xb9, 0xb1, 0xa9, 0xa2, 0xaf, 0xa6, 0x13, 0x8e, 0x44, 0x03, 0xd0, 0x11, 0xf5, 0xfc, 0x80, +0x8c, 0xf0, 0x52, 0x7f, 0x8b, 0xaa, 0xd5, 0xbb, 0x8e, 0x7e, 0x78, 0xfb, 0xe1, 0xa3, 0x2e, 0xea, +0xe0, 0x28, 0xee, 0x1a, 0x6b, 0x03, 0xe4, 0x49, 0x98, 0x68, 0x8c, 0xe1, 0x0b, 0x64, 0x05, 0x71, +0xe3, 0x9b, 0x0a, 0x6a, 0x54, 0x42, 0x16, 0x5f, 0xd1, 0x91, 0xeb, 0xa7, 0x54, 0x60, 0x08, 0x6a, +0x43, 0x5e, 0x05, 0x89, 0x4f, 0xdd, 0xfd, 0x72, 0x12, 0x48, 0x14, 0xc0, 0xb0, 0x10, 0x00, 0x76, +0xe0, 0x29, 0x02, 0xa5, 0x19, 0xb1, 0x57, 0x95, 0x78, 0x03, 0xc6, 0xd0, 0xd1, 0x1e, 0x0b, 0x40, +0x7b, 0xcd, 0x07, 0x01, 0xfd, 0xe5, 0x4a, 0xa7, 0xa5, 0x28, 0xc1, 0x0f, 0x3f, 0x58, 0xe9, 0x23, +0xda, 0xa4, 0xc6, 0xf6, 0x81, 0xb8, 0x58, 0xdb, 0xde, 0x27, 0xfb, 0xc8, 0x7b, 0xaa, 0xed, 0x89, +0x25, 0xf1, 0x2f, 0xcc, 0xaf, 0xa4, 0xbf, 0x79, 0xf8, 0x6a, 0x0b, 0x25, 0x57, 0x30, 0x41, 0x55, +0x89, 0xc3, 0x8e, 0x4f, 0x6d, 0xa0, 0xcf, 0xf1, 0x8c, 0x75, 0xbc, 0x0b, 0x66, 0xa5, 0x61, 0x18, +0x52, 0x9e, 0x81, 0x6e, 0x88, 0xab, 0x30, 0xff, 0x14, 0x43, 0x46, 0x05, 0x08, 0x62, 0xbb, 0x55, +0xed, 0x52, 0x5d, 0x05, 0xdd, 0xf8, 0xb4, 0x92, 0x71, 0x6f, 0xd3, 0xb4, 0xd6, 0x3c, 0x9a, 0x98, +0xf0, 0x98, 0x08, 0xf4, 0x5d, 0xd0, 0x38, 0x13, 0x5f, 0x69, 0x1c, 0xcd, 0xca, 0xa8, 0xee, 0xae, +0xb3, 0xed, 0x50, 0xca, 0xf1, 0x03, 0x21, 0xcf, 0x4b, 0x3a, 0x63, 0x1e, 0x50, 0x7e, 0x8f, 0x5d, +0xca, 0xd5, 0xae, 0xc2, 0x31, 0x88, 0x18, 0x9a, 0xff, 0xe2, 0x0d, 0xc5, 0x4d, 0x30, 0x9e, 0x2d, +0xc4, 0xa7, 0xf2, 0xe4, 0x43, 0x2d, 0x90, 0x25, 0x0c, 0x10, 0x0a, 0x8f, 0x38, 0x00, 0xcd, 0x0d, +0x87, 0x8f, 0x8f, 0x2f, 0xa5, 0x10, 0x8d, 0xf6, 0x3e, 0x3d, 0x3b, 0x94, 0xc6, 0xe2, 0x61, 0x80, +0x23, 0xc7, 0x9b, 0x12, 0x3c, 0xa4, 0x7f, 0x1e, 0x05, 0x1c, 0xc4, 0xfa, 0x19, 0x69, 0xd6, 0x73, +0x0a, 0xce, 0x82, 0x48, 0x62, 0x50, 0xfe, 0xda, 0xfc, 0x76, 0xf4, 0x58, 0xe7, 0x52, 0x8f, 0x28, +0xb4, 0xae, 0x12, 0x3b, 0x3e, 0xad, 0xc2, 0xc2, 0x26, 0xb9, 0xbf, 0x93, 0x71, 0x60, 0x6d, 0xfc, +0x5a, 0x96, 0x78, 0x00, 0x87, 0x1a, 0xa4, 0xa6, 0x10, 0x06, 0xb2, 0x24, 0xa9, 0x39, 0x6d, 0xdd, +0x04, 0x21, 0x47, 0x71, 0x57, 0x81, 0xd6, 0x4e, 0xc0, 0xed, 0xb9, 0x18, 0x4b, 0xb2, 0x43, 0x57, +0xb6, 0xbf, 0x10, 0xe0, 0x33, 0xc0, 0x2d, 0x21, 0x4b, 0xdc, 0xa5, 0xc1, 0xf5, 0x26, 0xf9, 0x03, +0xec, 0xda, 0xbe, 0x1b, 0x48, 0xc2, 0xaa, 0xd0, 0x08, 0x01, 0x1d, 0xfb, 0x76, 0x44, 0xbc, 0xfb, +0x96, 0xf6, 0x0e, 0xbc, 0x64, 0x86, 0x4f, 0xa0, 0xee, 0x35, 0x97, 0x19, 0x22, 0x9e, 0x03, 0x30, +0x01, 0x8b, 0x6e, 0x31, 0x58, 0xec, 0xb9, 0x00, 0xc1, 0xe8, 0x6b, 0xbe, 0xa9, 0xa8, 0xd9, 0x78, +0xf0, 0x6b, 0x15, 0x24, 0x74, 0x87, 0x21, 0x37, 0xde, 0x06, 0x94, 0xc8, 0x55, 0xb6, 0x57, 0x0f, +0xdc, 0x62, 0x59, 0x8e, 0xa6, 0xca, 0x08, 0x21, 0x62, 0xe6, 0xec, 0x06, 0x76, 0x5f, 0x2c, 0x72, +0x29, 0xff, 0x44, 0xe8, 0xe8, 0xe5, 0xf8, 0x10, 0x69, 0x64, 0xfb, 0x91, 0xc0, 0x1c, 0x27, 0xb5, +0x03, 0x76, 0x15, 0x6f, 0x12, 0x87, 0x1e, 0xcb, 0x06, 0xb4, 0x81, 0x80, 0xbd, 0x34, 0x28, 0x92, +0xaa, 0xd9, 0x4b, 0xe1, 0x04, 0x6f, 0x4d, 0x01, 0x6a, 0xc0, 0x32, 0xb7, 0x7e, 0xda, 0xef, 0x87, +0xa9, 0x75, 0x9a, 0x2e, 0xd7, 0x52, 0x0e, 0xe8, 0x5a, 0xba, 0x26, 0x4f, 0xcf, 0x2e, 0x92, 0x98, +0x07, 0x1d, 0x64, 0xf0, 0x8c, 0xe7, 0x5f, 0xa4, 0x1b, 0x7a, 0x4e, 0xe9, 0x38, 0x03, 0x0e, 0xf0, +0xba, 0xf6, 0x8f, 0x41, 0xe5, 0xb0, 0x3f, 0x05, 0x4f, 0x5d, 0x85, 0x7a, 0xc2, 0x9a, 0x9d, 0xc7, +0x68, 0xd4, 0x03, 0x43, 0xd9, 0xa0, 0x28, 0xf4, 0xe3, 0xa2, 0xfe, 0x34, 0xa1, 0x9f, 0xfa, 0x49, +0xcf, 0x4f, 0xe2, 0x71, 0x8f, 0x79, 0xa0, 0xea, 0x95, 0xaa, 0x30, 0xb1, 0xfa, 0x68, 0xc0, 0x58, +0xf1, 0x46, 0xec, 0x06, 0x1e, 0xc1, 0xad, 0xe8, 0x9c, 0xdd, 0x0f, 0xd8, 0x42, 0xcd, 0xbe, 0xb2, +0xba, 0x57, 0xe8, 0xf1, 0xbc, 0xe6, 0xc0, 0xfe, 0x99, 0xad, 0x41, 0x4a, 0x9c, 0x03, 0xdb, 0x25, +0x02, 0xcc, 0x62, 0xfb, 0x72, 0x18, 0x0b, 0x59, 0xaf, 0x4c, 0x0b, 0x85, 0x78, 0x03, 0x17, 0x85, +0x3b, 0x04, 0x19, 0xc3, 0x28, 0xe3, 0xab, 0x13, 0xa8, 0x59, 0x7d, 0x47, 0x0c, 0xcd, 0xca, 0xfc, +0xc5, 0x44, 0xbe, 0x78, 0x77, 0xe0, 0x77, 0x4a, 0x24, 0x52, 0xf2, 0x23, 0x96, 0x01, 0x3f, 0x88, +0x9a, 0x60, 0x1b, 0xa2, 0x65, 0x16, 0x62, 0xa9, 0x0d, 0x9d, 0x79, 0x77, 0xc2, 0x88, 0x86, 0xf6, +0x52, 0x5a, 0x0c, 0xb2, 0xba, 0xa2, 0x89, 0xa0, 0x72, 0xcd, 0xdd, 0xf7, 0xb1, 0xf0, 0x97, 0x7d, +0x8d, 0x44, 0xbe, 0xd7, 0x71, 0x80, 0x4d, 0xa4, 0x8a, 0x5b, 0x0f, 0x19, 0xef, 0x23, 0xf3, 0x4f, +0x1e, 0xa2, 0x27, 0xe1, 0xdb, 0x1c, 0x73, 0x75, 0x53, 0x93, 0xb8, 0xe3, 0x1b, 0x52, 0xd9, 0x06, +0x0e, 0x39, 0x37, 0xe3, 0xc1, 0x58, 0x98, 0xca, 0x45, 0x22, 0xad, 0x1d, 0x81, 0x41, 0x13, 0x39, +0x35, 0xd1, 0x3a, 0x96, 0xa7, 0x6f, 0x46, 0x50, 0xf5, 0x6f, 0xd9, 0x78, 0x22, 0xdb, 0xf2, 0x17, +0x28, 0x55, 0x1d, 0x3d, 0x8d, 0xbb, 0x7c, 0xc4, 0x42, 0x28, 0x7c, 0x81, 0x3a, 0x59, 0x56, 0xe2, +0xc1, 0x48, 0xb7, 0x33, 0xf5, 0xf5, 0x44, 0x86, 0x7a, 0x1a, 0x71, 0x01, 0x4e, 0xd1, 0x06, 0x69, +0x53, 0x98, 0x5c, 0x0d, 0x2a, 0xa7, 0x4a, 0xf0, 0x3d, 0x1f, 0x93, 0x39, 0xa5, 0x5f, 0x35, 0x51, +0x39, 0x66, 0x18, 0x6f, 0x9d, 0x80, 0x4b, 0xf1, 0xc1, 0xea, 0xf9, 0xe7, 0xb2, 0xfa, 0x17, 0x39, +0x1f, 0xfb, 0x07, 0xa9, 0xca, 0xf9, 0x7a, 0xf2, 0x86, 0xd3, 0xd3, 0xbf, 0xbf, 0xe0, 0x24, 0x5e, +0x48, 0x53, 0x9a, 0x5d, 0x13, 0x8c, 0xeb, 0x48, 0x8b, 0x3f, 0x23, 0x6f, 0x11, 0x85, 0x61, 0xbf, +0xba, 0xb0, 0xc1, 0x86, 0x39, 0x89, 0xe0, 0x33, 0x56, 0xce, 0x8d, 0x63, 0xf1, 0x30, 0xaf, 0x6e, +0xe7, 0xe8, 0x59, 0x65, 0xbe, 0xc1, 0xb9, 0xaf, 0xb6, 0xd3, 0xd7, 0xd4, 0x6b, 0x2f, 0x36, 0xa8, +0x41, 0xd8, 0xbc, 0x34, 0x74, 0x34, 0x87, 0x10, 0xf1, 0xdb, 0xfb, 0xd0, 0x64, 0x36, 0xc0, 0x5a, +0x0e, 0x79, 0x44, 0x1a, 0x7e, 0x04, 0x17, 0xa5, 0x2d, 0xcb, 0xa8, 0xaf, 0x08, 0x70, 0x66, 0x9d, +0x8c, 0xe5, 0xf6, 0xdd, 0xc9, 0x15, 0xa9, 0x26, 0x76, 0x8d, 0x57, 0x55, 0x49, 0x2b, 0xb5, 0xb9, +0xdd, 0x8a, 0xc3, 0x57, 0xb6, 0x72, 0x6a, 0x9a, 0xe0, 0x7a, 0x96, 0xa0, 0x71, 0xa2, 0x77, 0x1e, +0x03, 0x7f, 0xee, 0x31, 0x3b, 0xe1, 0xfb, 0xf1, 0x9e, 0x8b, 0xd8, 0x9d, 0x69, 0x8d, 0x11, 0x4d, +0x41, 0x60, 0x7e, 0x6d, 0xfd, 0x73, 0x4e, 0x9f, 0xe2, 0xe3, 0xc0, 0xbc, 0xbd, 0x49, 0x35, 0x13, +0x2f, 0xd3, 0x3d, 0x19, 0xed, 0x37, 0x93, 0x17, 0x57, 0x39, 0x9b, 0x26, 0xf9, 0x46, 0xf9, 0xca, +0x36, 0xfd, 0x80, 0x27, 0xda, 0x2a, 0xeb, 0x82, 0xe2, 0xb5, 0xdb, 0x28, 0x2f, 0x16, 0xea, 0xc4, +0x05, 0x79, 0x82, 0x87, 0x5b, 0xf1, 0x24, 0x55, 0xf7, 0x2f, 0x4a, 0x84, 0xa5, 0xed, 0xfe, 0x6a, +0x41, 0xaa, 0xb9, 0x78, 0xbe, 0xaa, 0x6c, 0xfc, 0x39, 0xcb, 0xf0, 0x21, 0xc9, 0x9e, 0xc5, 0x61, +0xfc, 0xcb, 0x7c, 0x0e, 0xcf, 0xb8, 0xea, 0x6f, 0xab, 0xc7, 0xa3, 0x2d, 0x36, 0x3a, 0xfb, 0xb3, +0x59, 0xbc, 0x3a, 0xba, 0x71, 0x89, 0xf7, 0x53, 0x3e, 0x55, 0x43, 0xa4, 0x74, 0x1f, 0xfa, 0x62, +0x2d, 0x56, 0xce, 0xef, 0x0d, 0xa8, 0xe1, 0xce, 0xee, 0x7c, 0xc7, 0x03, 0xc5, 0x8d, 0x3e, 0xf0, +0x46, 0x85, 0x59, 0x51, 0xb4, 0xee, 0x5c, 0x87, 0xc9, 0x4a, 0xb7, 0x71, 0x39, 0xa3, 0x05, 0x88, +0x11, 0x5d, 0x70, 0x00, 0x7c, 0x9e, 0x28, 0x45, 0xd0, 0x91, 0x38, 0x4e, 0xc4, 0x61, 0x65, 0x67, +0x3c, 0x2d, 0xe6, 0x10, 0x9d, 0x42, 0x72, 0x73, 0xf6, 0x3d, 0x33, 0x82, 0xc5, 0xae, 0xeb, 0xe6, +0x95, 0x05, 0x7a, 0xd9, 0x02, 0x27, 0x7a, 0xf2, 0xd0, 0x62, 0x9d, 0x4d, 0x42, 0xa3, 0x90, 0x9a, +0x06, 0xb2, 0x2f, 0x4d, 0xe3, 0x7f, 0xc5, 0x51, 0x5e, 0x7c, 0x30, 0x31, 0xf9, 0x33, 0xaf, 0xfc, +0x22, 0x30, 0xb3, 0x43, 0x09, 0xc3, 0xa0, 0x93, 0xd3, 0x81, 0x05, 0xb4, 0x81, 0x1d, 0x5c, 0x05, +0x36, 0x82, 0x8d, 0x61, 0x6d, 0x95, 0xc0, 0x65, 0xf1, 0xc4, 0x05, 0x36, 0x2c, 0xc0, 0x03, 0x6a, +0x2d, 0xdf, 0x16, 0x10, 0xa7, 0xb4, 0x00, 0x12, 0x78, 0xf1, 0x85, 0x8e, 0x2c, 0xdd, 0x8e, 0x14, +0x38, 0x9c, 0x70, 0x70, 0xfc, 0xf1, 0x6d, 0x31, 0x78, 0xba, 0xcc, 0xa1, 0x9a, 0x9a, 0xe4, 0xa7, +0xaf, 0x8f, 0x7e, 0xc3, 0xd2, 0x67, 0x1d, 0xc0, 0x91, 0xdc, 0x92, 0x69, 0xda, 0x5b, 0xbe, 0xd1, +0xb3, 0xd6, 0x82, 0xbe, 0x3e, 0x82, 0x47, 0x24, 0x60, 0xa5, 0xbc, 0xd4, 0xa6, 0x7c, 0xcd, 0x13, +0x9f, 0x53, 0x2b, 0xe4, 0x9e, 0xb1, 0xde, 0x9b, 0x83, 0x4f, 0x13, 0x9e, 0x8d, 0x0d, 0x98, 0x08, +0xe8, 0xf9, 0xde, 0xfa, 0x69, 0x71, 0xcf, 0xe2, 0x42, 0xa5, 0x5c, 0x91, 0x89, 0x1f, 0x2d, 0xb7, +0x21, 0x66, 0xca, 0xb6, 0xa2, 0x3c, 0xba, 0x4f, 0x27, 0xf9, 0xec, 0x7f, 0xea, 0xbb, 0xf6, 0x65, +0x6b, 0xb0, 0x15, 0xb8, 0x06, 0xff, 0xef, 0xfa, 0xde, 0x36, 0x55, 0x86, 0xd6, 0xd8, 0x81, 0x77, +0xe3, 0xe3, 0x5a, 0x84, 0xf2, 0x98, 0xe8, 0x94, 0xa4, 0x2e, 0x49, 0x6e, 0x17, 0xba, 0xba, 0xde, +0x3c, 0x73, 0x03, 0x00, 0x2b, 0x94, 0xa5, 0x1a, 0xc4, 0x14, 0x14, 0x2c, 0x51, 0x30, 0x6c, 0xdd, +0xe7, 0xaf, 0x47, 0xc7, 0x5d, 0xe2, 0x2f, 0x01, 0x61, 0x71, 0xf7, 0xa6, 0xcd, 0xab, 0x28, 0xff, +0x1d, 0x42, 0xa5, 0x72, 0x49, 0xeb, 0xd9, 0xb5, 0x3c, 0x3d, 0xbf, 0xdf, 0x1b, 0xe7, 0xa2, 0x55, +0x5a, 0x59, 0x79, 0x39, 0xd4, 0x43, 0xd0, 0x61, 0xe2, 0x66, 0x67, 0x8b, 0x93, 0x34, 0x4a, 0x40, +0x0a, 0x90, 0x01, 0xcb, 0x58, 0x3f, 0xc7, 0x72, 0x91, 0x42, 0x79, 0x38, 0x25, 0x42, 0x07, 0x8a, +0x2a, 0x6f, 0x0e, 0x60, 0x03, 0x6d, 0x1c, 0x3f, 0xdb, 0x66, 0xdd, 0x84, 0x95, 0x2b, 0xf0, 0x34, +0x90, 0xd3, 0x72, 0xfa, 0xa0, 0xc1, 0x48, 0x84, 0x33, 0xf7, 0xd8, 0xee, 0xe1, 0x7f, 0x64, 0x85, +0x9c, 0x41, 0xd7, 0x4a, 0x9b, 0xa3, 0xe9, 0xaa, 0xec, 0xe5, 0xf7, 0x40, 0x96, 0x33, 0x79, 0x50, +0x07, 0x53, 0x9f, 0x9d, 0xc7, 0x76, 0xf7, 0xb4, 0x41, 0xa8, 0x9e, 0xee, 0xba, 0xdf, 0xe0, 0x47, +0xa7, 0x15, 0x31, 0x2c, 0xa8, 0x50, 0xc4, 0x14, 0x25, 0x76, 0xae, 0xb9, 0x47, 0x96, 0x02, 0xdc, +0x1f, 0x41, 0x7a, 0x5c, 0x32, 0x8c, 0x43, 0xe7, 0x8e, 0xbc, 0xda, 0x4a, 0xd2, 0xbe, 0x51, 0x72, +0x2b, 0x6c, 0xa8, 0x6a, 0x92, 0x03, 0x8b, 0x83, 0x10, 0x96, 0xff, 0xa2, 0x04, 0x8a, 0xc4, 0xb5, +0x54, 0xa9, 0xc3, 0x2f, 0x03, 0xb2, 0xab, 0x0f, 0x21, 0x44, 0xe7, 0x94, 0x81, 0x71, 0x1c, 0x66, +0xe7, 0xd2, 0x98, 0xf1, 0xce, 0x3b, 0x4f, 0x00, 0x61, 0x95, 0x29, 0xf9, 0xaa, 0xa5, 0xe2, 0x4a, +0xf3, 0xad, 0x75, 0x3f, 0x34, 0x69, 0x3f, 0x4a, 0x91, 0x97, 0x10, 0x0f, 0xc0, 0x81, 0xad, 0xc4, +0x9f, 0x02, 0xde, 0xfa, 0xd2, 0x8a, 0xea, 0x7e, 0x46, 0xa8, 0x34, 0x34, 0x63, 0x12, 0x89, 0xb8, +0x2e, 0x11, 0x60, 0x86, 0x40, 0x85, 0x1c, 0x3e, 0x2e, 0x2d, 0x97, 0xbb, 0x66, 0x4b, 0x19, 0x2f, +0x5c, 0x89, 0xd6, 0xcf, 0xb8, 0x9f, 0x42, 0xb3, 0x18, 0x3c, 0xf8, 0x72, 0x1a, 0x98, 0x79, 0x22, +0xd4, 0xc5, 0x3b, 0x53, 0x70, 0xee, 0x37, 0xd6, 0xf5, 0x6c, 0x4b, 0x4d, 0x3c, 0x05, 0xf8, 0x89, +0xd6, 0xc3, 0xca, 0xe1, 0xf3, 0x15, 0x37, 0xd8, 0x60, 0x37, 0x0a, 0xd9, 0x08, 0xc0, 0x65, 0xd9, +0xbc, 0x37, 0x20, 0xbb, 0x11, 0x63, 0xe6, 0x5d, 0x42, 0x58, 0x31, 0x16, 0x1c, 0xfc, 0xe2, 0x3e, +0xca, 0x20, 0x6d, 0x85, 0x89, 0x92, 0x87, 0x8e, 0x63, 0x31, 0x7e, 0x87, 0xd6, 0xad, 0x1b, 0xe8, +0x90, 0xc4, 0xb0, 0x12, 0x32, 0x16, 0x47, 0xc7, 0x6a, 0x7f, 0xaa, 0x20, 0x07, 0x03, 0xea, 0x3d, +0x13, 0x57, 0xe2, 0x22, 0x24, 0x2d, 0xde, 0x0f, 0x0a, 0xe0, 0xb2, 0x40, 0xcd, 0x7e, 0xf7, 0x53, +0xc4, 0x97, 0x09, 0x1a, 0x5b, 0x8f, 0x85, 0xac, 0x36, 0x66, 0x95, 0x5e, 0xbc, 0x9e, 0x4b, 0x7b, +0xbb, 0x93, 0x87, 0x01, 0xf6, 0xf5, 0x28, 0xd3, 0x18, 0x32, 0xe9, 0x06, 0x2b, 0x5a, 0x80, 0x66, +0x50, 0xf7, 0x58, 0x86, 0xa1, 0xa7, 0xa8, 0x95, 0xff, 0x52, 0x02, 0x58, 0x81, 0x2c, 0xe7, 0x3b, +0x01, 0x65, 0xb3, 0x28, 0xe2, 0x1f, 0x74, 0x55, 0x7a, 0x3d, 0xb0, 0x16, 0x51, 0x28, 0xbd, 0x8d, +0x09, 0xbd, 0x23, 0x86, 0xdd, 0x4d, 0x71, 0xfa, 0xc1, 0x6e, 0x4c, 0x9a, 0x99, 0x59, 0x55, 0xa8, +0x2c, 0xb7, 0x43, 0xfe, 0x6d, 0xf6, 0xbb, 0x39, 0xa2, 0x67, 0x08, 0x1c, 0x26, 0xa5, 0xf1, 0x58, +0x40, 0x90, 0x45, 0xd6, 0x7f, 0x8e, 0xb1, 0x06, 0x82, 0x43, 0xcc, 0x78, 0x88, 0xc3, 0x83, 0x3c, +0xc8, 0x97, 0x62, 0x67, 0x7c, 0x00, 0xec, 0x26, 0xeb, 0x3d, 0x58, 0xc8, 0x06, 0xd1, 0xb9, 0xb9, +0xfb, 0x24, 0x30, 0xdb, 0x41, 0x05, 0xb9, 0x8f, 0xc1, 0xbc, 0x90, 0x49, 0x85, 0x25, 0xda, 0x33, +0x17, 0x63, 0xbe, 0x8e, 0x5e, 0x97, 0x4d, 0xbb, 0x85, 0xf0, 0x32, 0xa9, 0x78, 0xa0, 0x18, 0x70, +0x9e, 0x36, 0x1c, 0x0a, 0x70, 0x1e, 0xda, 0xa8, 0x3e, 0x0d, 0xcd, 0xce, 0x54, 0xa8, 0xff, 0xe9, +0x5b, 0x3b, 0xb7, 0x72, 0x19, 0x9c, 0x82, 0x7c, 0xb6, 0x91, 0x3f, 0xa3, 0x9e, 0x83, 0xd0, 0x50, +0x20, 0xbd, 0x66, 0x15, 0x87, 0x01, 0x41, 0x2c, 0x0e, 0x8f, 0xc0, 0x06, 0x75, 0xf7, 0xaf, 0xe0, +0xe3, 0x1b, 0x6c, 0xc8, 0x93, 0x92, 0x8b, 0xd9, 0x1b, 0xbd, 0x1c, 0xc7, 0xe2, 0x17, 0x8a, 0xb6, +0xc3, 0x94, 0x7b, 0x5a, 0x90, 0x9d, 0x20, 0x74, 0xbf, 0xca, 0xfa, 0xb7, 0x89, 0x1e, 0x6c, 0xd1, +0xac, 0xa2, 0xcb, 0xdc, 0x32, 0x4f, 0x91, 0x11, 0xf1, 0xa1, 0xa8, 0x74, 0x83, 0xbf, 0xf9, 0x09, +0x72, 0x06, 0x1d, 0x59, 0x34, 0x2f, 0x33, 0x27, 0xe7, 0x6b, 0x3e, 0x77, 0x71, 0xe1, 0x94, 0x56, +0x4e, 0x73, 0x4e, 0x8d, 0xe4, 0x3e, 0x84, 0xc7, 0x8c, 0x3f, 0x31, 0x66, 0x3c, 0x47, 0xfd, 0x0a, +0xc1, 0xb3, 0x64, 0x33, 0xc6, 0x3a, 0x5a, 0xa2, 0xbc, 0x19, 0xa3, 0x72, 0xd5, 0x9e, 0x88, 0xb0, +0xfb, 0xec, 0x6c, 0xe0, 0xef, 0xd3, 0x0e, 0x3d, 0x6a, 0xa2, 0xe3, 0xb8, 0x43, 0x6f, 0x12, 0x12, +0xe1, 0x5a, 0x39, 0x3e, 0x4d, 0x4b, 0x05, 0xfd, 0xa5, 0xdf, 0xe4, 0xc3, 0x0c, 0xcc, 0x29, 0xf2, +0xb9, 0x03, 0x68, 0x40, 0x19, 0xdc, 0x9b, 0x56, 0xdc, 0x4d, 0xd9, 0x00, 0x6f, 0x19, 0xd7, 0xb3, +0x60, 0x45, 0x75, 0xe1, 0x9c, 0xaf, 0x8e, 0x8f, 0x70, 0x71, 0xf6, 0x98, 0x91, 0xf8, 0x28, 0x21, +0xf1, 0xb0, 0x17, 0x88, 0xef, 0x31, 0x70, 0xb3, 0x3e, 0x6d, 0x0d, 0x3c, 0x6e, 0x79, 0x00, 0x96, +0xf9, 0x9e, 0x71, 0x9a, 0x0f, 0x23, 0xfa, 0xce, 0x7c, 0x4f, 0xfe, 0x06, 0x26, 0x35, 0xce, 0x86, +0x22, 0x96, 0x7c, 0xe6, 0x4e, 0x7a, 0xed, 0x72, 0x87, 0x34, 0xf3, 0xe5, 0x8e, 0x16, 0x99, 0x05, +0xa9, 0x1f, 0x6f, 0x31, 0xab, 0x24, 0x2e, 0x22, 0x53, 0x90, 0xcb, 0x3e, 0xde, 0x51, 0x7c, 0x90, +0x59, 0xec, 0xb3, 0xb4, 0x29, 0x73, 0xf7, 0x2e, 0x7e, 0x3d, 0x1f, 0x3e, 0xb8, 0x8f, 0x90, 0xf8, +0x2b, 0xa4, 0xf2, 0x9b, 0xe5, 0x83, 0xd7, 0x4e, 0x90, 0x35, 0x2d, 0x75, 0x4f, 0xc0, 0xec, 0xf5, +0xaf, 0xc6, 0x18, 0x67, 0xc4, 0x74, 0xab, 0x98, 0x4d, 0x38, 0xe4, 0x14, 0x05, 0xdd, 0x56, 0xb6, +0xd8, 0x85, 0xcf, 0xdd, 0xa5, 0xb3, 0xce, 0x4a, 0xa8, 0xbc, 0x3e, 0xfa, 0x93, 0x0b, 0xde, 0xd7, +0x97, 0x88, 0x02, 0xba, 0x93, 0xd1, 0xd9, 0xd0, 0xb8, 0x8c, 0xe6, 0xe6, 0x29, 0x1f, 0xe2, 0x8c, +0x04, 0x63, 0x84, 0x1d, 0x71, 0x9a, 0x6f, 0x24, 0x62, 0x32, 0xb6, 0x02, 0xc5, 0xff, 0x0e, 0xcb, +0x79, 0x07, 0xa9, 0xd4, 0x21, 0xb3, 0xf6, 0x42, 0x22, 0x67, 0x3c, 0x3b, 0x60, 0xbe, 0x25, 0xf7, +0x66, 0x40, 0x18, 0x61, 0xf8, 0xe1, 0x1d, 0x55, 0x80, 0x66, 0x43, 0xe1, 0x58, 0x59, 0x38, 0x51, +0xc1, 0x69, 0x6b, 0xca, 0xa8, 0x8e, 0xec, 0xc0, 0x01, 0xa3, 0xbd, 0x5c, 0x38, 0xea, 0xc9, 0xa5, +0x15, 0x8f, 0xd6, 0xc6, 0xb8, 0xad, 0xc8, 0x4d, 0xe5, 0x87, 0xc7, 0x1d, 0x42, 0xcc, 0x8b, 0xb1, +0x56, 0x7c, 0xaa, 0x78, 0xd9, 0xbd, 0x74, 0xc5, 0x43, 0xd3, 0x0a, 0xc2, 0x57, 0x98, 0xd9, 0xb3, +0x22, 0xf7, 0x79, 0xd1, 0x8c, 0xe1, 0x01, 0x0e, 0xe2, 0x58, 0xb6, 0xac, 0xe5, 0x8a, 0x0e, 0xf6, +0x02, 0xb0, 0xe8, 0x4a, 0x71, 0xb9, 0xd0, 0xd1, 0x03, 0xf7, 0xeb, 0x9f, 0x98, 0xd6, 0xcb, 0x29, +0xc5, 0x7e, 0xfc, 0xe1, 0x06, 0xbf, 0xa6, 0x17, 0xf4, 0x82, 0x32, 0xa6, 0xda, 0x38, 0xf1, 0xbc, +0x3d, 0xd5, 0x8c, 0x99, 0xf5, 0xb2, 0x76, 0xd8, 0x73, 0x03, 0x9a, 0xbc, 0x57, 0x14, 0xfb, 0x51, +0x07, 0x1e, 0x04, 0xa3, 0x61, 0x94, 0xc8, 0x6d, 0x4d, 0x9b, 0x80, 0x64, 0x91, 0x24, 0x7b, 0x9b, +0x9e, 0x59, 0x52, 0x32, 0x80, 0xdc, 0xe1, 0x9f, 0x92, 0x99, 0x26, 0x1e, 0x72, 0x61, 0x50, 0x5a, +0xec, 0x88, 0x2e, 0xce, 0x31, 0x52, 0x4b, 0x49, 0x62, 0x99, 0x51, 0xcb, 0x58, 0xda, 0x6c, 0x85, +0x1e, 0xff, 0xbd, 0xb8, 0x36, 0x76, 0x3c, 0x33, 0x35, 0x6f, 0xe3, 0x17, 0xb8, 0x11, 0x1f, 0x9b, +0xdf, 0x5f, 0x2f, 0x67, 0x77, 0xc4, 0xc9, 0x0f, 0xfd, 0x00, 0xce, 0xe3, 0x0c, 0x61, 0x81, 0xad, +0x94, 0xa3, 0x5d, 0xef, 0xd6, 0xdf, 0xb1, 0xf9, 0x16, 0x88, 0xc4, 0xe0, 0x45, 0x9e, 0x79, 0x28, +0x9c, 0x6d, 0x35, 0x29, 0x37, 0x22, 0x3b, 0x99, 0x1c, 0x45, 0xd2, 0x97, 0x23, 0xaa, 0x25, 0x74, +0x04, 0x5b, 0x4e, 0x98, 0x61, 0xc6, 0xe5, 0xe3, 0xe5, 0xef, 0x2a, 0xf3, 0x8e, 0x28, 0x02, 0x6b, +0x6c, 0xf4, 0x6f, 0x6c, 0xd9, 0x3f, 0x96, 0x5d, 0x83, 0x3b, 0xb1, 0x93, 0x8e, 0x74, 0x08, 0xfc, +0xc9, 0x37, 0xb9, 0x99, 0x45, 0x17, 0x8c, 0xb0, 0xe1, 0x18, 0x77, 0x96, 0x6b, 0x48, 0xf5, 0x6a, +0xd3, 0x0e, 0x24, 0x1f, 0x0f, 0xe6, 0x3a, 0x66, 0x66, 0x0e, 0x33, 0x87, 0x6d, 0x56, 0xd7, 0xc4, +0x29, 0x4c, 0xb0, 0xd9, 0x46, 0xc5, 0x70, 0x32, 0xe9, 0x7f, 0x51, 0xab, 0xe1, 0x6c, 0x2e, 0x91, +0x31, 0x6d, 0x77, 0xe6, 0x6f, 0xec, 0x9f, 0x23, 0xc0, 0xd0, 0xce, 0x05, 0x42, 0xe1, 0x56, 0x23, +0x06, 0x5c, 0xd8, 0x87, 0x9e, 0x1e, 0xaa, 0xf0, 0x37, 0x7d, 0x50, 0x1b, 0x6c, 0x85, 0xda, 0xe9, +0x4e, 0x7c, 0x78, 0xb3, 0x6a, 0xc0, 0x2c, 0x54, 0xce, 0x68, 0xb7, 0x37, 0x56, 0x5d, 0x4b, 0x21, +0x30, 0x7e, 0xa8, 0x32, 0xc9, 0x3b, 0x5d, 0xa3, 0x01, 0xb1, 0x34, 0x6f, 0x22, 0xf7, 0x61, 0x08, +0xb4, 0x60, 0xe9, 0x9b, 0xd8, 0x52, 0xb7, 0x43, 0x2c, 0xe0, 0xd0, 0x95, 0xf6, 0x18, 0x01, 0xec, +0xae, 0x2c, 0x9c, 0xc9, 0x87, 0x09, 0x17, 0xf7, 0x1d, 0xc1, 0x46, 0xb7, 0xc5, 0x7f, 0x19, 0x24, +0x0f, 0x28, 0x75, 0x87, 0xc4, 0x27, 0x4a, 0xaa, 0x9f, 0x52, 0x9e, 0x72, 0x86, 0xd8, 0x2c, 0x00, +0xbe, 0x9d, 0x2c, 0x94, 0xc8, 0xa3, 0x75, 0xeb, 0xec, 0x2f, 0x77, 0x62, 0xfb, 0x9a, 0x75, 0xa0, +0x54, 0x19, 0x13, 0xcc, 0xa6, 0x26, 0x48, 0xcf, 0xd4, 0x75, 0x1b, 0xed, 0xb9, 0xfd, 0xe4, 0xe9, +0xfc, 0xcb, 0xe8, 0xb9, 0xb5, 0x5c, 0xd9, 0x38, 0x4a, 0xa6, 0xd1, 0x93, 0x10, 0x63, 0x56, 0x48, +0x80, 0xa8, 0x6b, 0x72, 0x9f, 0x86, 0xf3, 0xa5, 0xca, 0x29, 0xfb, 0x9c, 0x33, 0xec, 0x59, 0xb0, +0x49, 0x48, 0xd9, 0x9d, 0xcf, 0x35, 0x33, 0x4c, 0xfa, 0x52, 0xbc, 0x8c, 0x46, 0xe3, 0xc2, 0x54, +0x59, 0xbf, 0x88, 0x13, 0x54, 0x44, 0xfc, 0xc3, 0xea, 0x3e, 0xb1, 0xe7, 0x43, 0x25, 0x4d, 0x33, +0x33, 0x15, 0x54, 0xbf, 0xd5, 0xb0, 0x95, 0xb1, 0x42, 0x3c, 0x7f, 0xb8, 0x3b, 0x6d, 0x8b, 0xcf, +0xe9, 0xb1, 0xf7, 0x0c, 0xb6, 0xb2, 0x59, 0x81, 0xe1, 0x81, 0x55, 0x3b, 0x68, 0xa8, 0x5e, 0x6a, +0x43, 0x27, 0x1a, 0xe5, 0x53, 0x78, 0xc6, 0x81, 0x1a, 0x89, 0x4b, 0x03, 0x1f, 0xe6, 0xad, 0xfc, +0xca, 0x5c, 0x91, 0xd3, 0x46, 0xce, 0x1c, 0xab, 0xb6, 0x74, 0xf6, 0x65, 0x42, 0x2d, 0x47, 0xbb, +0xcd, 0xc3, 0xa7, 0x0d, 0x91, 0x5b, 0x0e, 0x0d, 0x84, 0xe9, 0x98, 0xe4, 0x7e, 0x1e, 0xac, 0x7f, +0x8c, 0x45, 0x64, 0xc2, 0xd4, 0x04, 0x04, 0x7c, 0xfa, 0xbf, 0x3f, 0x8a, 0x93, 0x65, 0xe8, 0x99, +0x32, 0x6d, 0xe2, 0xbd, 0xcc, 0x38, 0xa3, 0x9c, 0xe1, 0xc8, 0xe7, 0xf0, 0x6f, 0x83, 0x6d, 0xe8, +0x7b, 0x75, 0x83, 0x5c, 0x31, 0xb8, 0xad, 0x68, 0xa9, 0x47, 0x4d, 0x5a, 0x02, 0x69, 0x52, 0x2f, +0xa9, 0x86, 0x05, 0x56, 0x8c, 0xbd, 0xb0, 0x81, 0x02, 0xcb, 0x61, 0x79, 0xce, 0xa9, 0x37, 0x42, +0x81, 0x55, 0xdb, 0xe5, 0xda, 0x42, 0xe8, 0x7f, 0x65, 0x40, 0xde, 0x0e, 0x2b, 0xba, 0x4e, 0x71, +0x34, 0xfb, 0xc1, 0xc7, 0x93, 0x35, 0x09, 0x86, 0xf1, 0xcc, 0x93, 0xa8, 0x4e, 0x27, 0xf1, 0x6f, +0xc8, 0xbe, 0xd2, 0xa9, 0x17, 0x7f, 0x62, 0xd0, 0x3f, 0xc0, 0x68, 0xd5, 0x2a, 0xae, 0x2d, 0x01, +0xc3, 0xbe, 0x0f, 0x13, 0xd8, 0xa2, 0x2d, 0xdb, 0xd3, 0x2b, 0x75, 0x6f, 0x35, 0xc2, 0x12, 0x49, +0xca, 0x73, 0x46, 0x43, 0x2c, 0x46, 0x7e, 0x37, 0xea, 0xe7, 0x54, 0xfa, 0xb3, 0xa9, 0x7b, 0xd7, +0xe6, 0x63, 0xb9, 0x74, 0x85, 0x4d, 0x75, 0xd3, 0x16, 0x76, 0x54, 0xf4, 0xdf, 0x01, 0xd7, 0x81, +0x54, 0x6b, 0x90, 0xf1, 0x82, 0x30, 0xda, 0x86, 0xac, 0xf3, 0x89, 0x02, 0xbd, 0x95, 0x7e, 0x16, +0x29, 0xde, 0x19, 0x4d, 0x23, 0x27, 0x47, 0x8b, 0xd1, 0xdb, 0xce, 0xaf, 0x2e, 0xe8, 0xcc, 0xa7, +0x4c, 0x59, 0x10, 0x5e, 0x94, 0xf5, 0xab, 0x59, 0x05, 0x15, 0x5b, 0x32, 0x05, 0xff, 0x8e, 0x53, +0xf4, 0x82, 0x7e, 0x6a, 0x72, 0xfd, 0x0f, 0x19, 0xf0, 0x11, 0x0e, 0xef, 0xe7, 0x73, 0xa2, 0x0b, +0x53, 0x05, 0xe9, 0x7c, 0x59, 0x78, 0x6e, 0x1b, 0x28, 0x39, 0x4c, 0xd8, 0x29, 0xfd, 0xa1, 0x7d, +0x0e, 0x9a, 0x5d, 0x01, 0x53, 0x1c, 0x58, 0x27, 0xa5, 0xbc, 0x85, 0x2a, 0x74, 0xf0, 0x5b, 0xd5, +0xc7, 0x04, 0x55, 0xc6, 0x18, 0x2f, 0xfe, 0xca, 0x9d, 0x01, 0x79, 0x36, 0x80, 0xb7, 0x7e, 0x66, +0x5b, 0x2e, 0x8d, 0xc5, 0x33, 0x0f, 0x91, 0x98, 0x10, 0xe2, 0x27, 0x48, 0x13, 0x5a, 0x9c, 0x01, +0x8f, 0x77, 0x6e, 0x99, 0x84, 0x19, 0x6e, 0xf8, 0x90, 0x40, 0xe2, 0xac, 0xcb, 0xe2, 0x2f, 0x22, +0x90, 0x6e, 0xb3, 0x9d, 0x71, 0xe3, 0xd3, 0xde, 0xf2, 0xc0, 0x36, 0x43, 0x15, 0xc1, 0x2e, 0x29, +0x6b, 0x29, 0x2d, 0xe3, 0xf6, 0x67, 0x15, 0x1b, 0x7d, 0x10, 0x56, 0xea, 0xf9, 0xc8, 0x9c, 0x3b, +0x94, 0xdd, 0xb0, 0xee, 0x85, 0x0d, 0x7f, 0x41, 0xf7, 0xd1, 0x21, 0xe8, 0xa2, 0xed, 0xde, 0x13, +0x43, 0x4a, 0x9b, 0xc6, 0x91, 0x89, 0xd6, 0x9f, 0x9d, 0x4f, 0xce, 0x41, 0xfa, 0x73, 0xe8, 0xa8, +0x8b, 0x25, 0x15, 0x37, 0x69, 0xf0, 0x4f, 0xdd, 0x6a, 0x62, 0x75, 0x24, 0x60, 0xf1, 0x2a, 0xf8, +0xa1, 0xa7, 0xbc, 0x78, 0xc2, 0x08, 0xe2, 0x2b, 0x0b, 0x78, 0xf8, 0x92, 0x92, 0x4c, 0x20, 0x8c, +0x73, 0x11, 0x1f, 0x4b, 0xf8, 0x45, 0x2d, 0x29, 0xb7, 0xf6, 0x60, 0x50, 0x64, 0xc8, 0x0d, 0xb2, +0x66, 0x54, 0xac, 0x4a, 0xb8, 0x98, 0xc5, 0xf5, 0x9a, 0xde, 0x09, 0xe2, 0x09, 0x8a, 0x3f, 0xf8, +0x8c, 0xcb, 0x88, 0x57, 0x75, 0x20, 0xb6, 0x13, 0x96, 0xe8, 0xe5, 0x63, 0xf3, 0x4b, 0x5b, 0x9c, +0xba, 0xb0, 0x74, 0xe1, 0x0b, 0x3b, 0xb1, 0xfc, 0xa9, 0x2e, 0x34, 0xd6, 0x36, 0xd1, 0x13, 0xe0, +0x04, 0x17, 0x05, 0x5b, 0x59, 0xb7, 0x31, 0xb7, 0x0b, 0x76, 0xfe, 0x38, 0xc9, 0xb9, 0xb1, 0x17, +0x8f, 0xf4, 0x77, 0x20, 0x88, 0xff, 0x89, 0xf5, 0xa0, 0x07, 0xa9, 0x79, 0x5d, 0x89, 0xcd, 0xd7, +0x9f, 0x11, 0xf0, 0xd7, 0x8c, 0x8f, 0x4f, 0x9d, 0xe2, 0xd0, 0xdb, 0x66, 0x19, 0x38, 0x56, 0x59, +0x18, 0x93, 0xfe, 0x8b, 0xd1, 0xe5, 0x60, 0xcc, 0xff, 0xed, 0x97, 0xe2, 0x02, 0xfb, 0x24, 0xc7, +0xdf, 0xbc, 0x20, 0x7b, 0x75, 0x93, 0x7e, 0x40, 0x2d, 0x78, 0x94, 0x9a, 0x91, 0xa3, 0x28, 0xdc, +0x4d, 0x46, 0xff, 0x3b, 0x95, 0xa9, 0x84, 0xad, 0x15, 0x1d, 0x14, 0x34, 0xb4, 0xd6, 0xe7, 0x59, +0x48, 0xc9, 0x36, 0xb0, 0xba, 0x4c, 0xa6, 0x30, 0x83, 0x08, 0xe1, 0x89, 0x53, 0xd9, 0x38, 0x3a, +0x99, 0xf5, 0x5f, 0xa4, 0x3c, 0xab, 0x5e, 0x5d, 0x8e, 0x35, 0x80, 0x68, 0x9f, 0x6a, 0x04, 0x8c, +0xd9, 0xdb, 0xbf, 0x3a, 0x0d, 0x30, 0x0f, 0x34, 0x8f, 0x0e, 0xad, 0xba, 0x9f, 0x57, 0xb0, 0x8a, +0x49, 0x6f, 0xd8, 0xb4, 0x8c, 0x58, 0x6e, 0xc6, 0x10, 0x4e, 0xd6, 0x63, 0xc9, 0x7f, 0x6d, 0xd0, +0x03, 0x07, 0x61, 0xef, 0xae, 0xd7, 0x43, 0x79, 0x6b, 0x50, 0xb8, 0xb8, 0xcb, 0xe6, 0x54, 0x72, +0xd2, 0xae, 0x52, 0xe2, 0xf0, 0x97, 0x75, 0x3f, 0xfd, 0x0c, 0xbf, 0x94, 0x01, 0x90, 0x6d, 0x82, +0x67, 0x48, 0x4c, 0xfe, 0x08, 0x2e, 0x26, 0x87, 0xbc, 0x39, 0xe5, 0x0f, 0xad, 0x42, 0x36, 0x33, +0xef, 0x2f, 0x03, 0x56, 0xc8, 0x94, 0x39, 0x77, 0xa5, 0x70, 0xfa, 0x3a, 0x42, 0x10, 0xf9, 0x15, +0xe9, 0x50, 0x34, 0xf0, 0x48, 0x42, 0xdd, 0x1c, 0x91, 0x74, 0xc9, 0xbf, 0xbb, 0x2d, 0x02, 0x42, +0xce, 0x45, 0x80, 0xf0, 0x67, 0xd2, 0xa6, 0xb8, 0xaf, 0x41, 0x30, 0x02, 0x5b, 0xfa, 0x43, 0x45, +0x4f, 0x20, 0xf3, 0x2e, 0xa4, 0xe8, 0xf2, 0x53, 0xf8, 0xbf, 0x53, 0xcc, 0x8f, 0xa9, 0xb1, 0x2f, +0x93, 0x23, 0x96, 0x35, 0x5b, 0x02, 0x00, 0x3a, 0x1a, 0x0b, 0xbe, 0x50, 0x7f, 0x49, 0x48, 0xd5, +0x73, 0x3e, 0x47, 0x10, 0x28, 0x41, 0x49, 0x3a, 0xb7, 0x94, 0x5b, 0x73, 0x06, 0x52, 0x0c, 0x2a, +0x69, 0x47, 0x32, 0xf9, 0xcc, 0xeb, 0x97, 0xbb, 0x24, 0x56, 0x9f, 0x6f, 0x44, 0x61, 0x9a, 0xa4, +0xfe, 0xe5, 0x82, 0x40, 0x4b, 0x8a, 0xa9, 0x6c, 0xb5, 0xc9, 0x4d, 0xce, 0x74, 0x0a, 0x8a, 0x00, +0x29, 0xb7, 0x10, 0x37, 0xc1, 0xc1, 0xa3, 0x3b, 0x98, 0xb4, 0x71, 0x50, 0xf0, 0x50, 0x3f, 0xf1, +0xe6, 0x7b, 0xfe, 0x0e, 0x4a, 0x82, 0x28, 0xa5, 0x60, 0xeb, 0x4b, 0x0a, 0x09, 0x06, 0xac, 0x5b, +0xce, 0xa2, 0xa5, 0x17, 0x79, 0x15, 0x1a, 0x43, 0xb4, 0x37, 0xb5, 0xf7, 0x62, 0xb2, 0x51, 0xdb, +0xe5, 0xb3, 0x50, 0x8a, 0x58, 0xfd, 0xcc, 0x13, 0x65, 0x38, 0x9d, 0x27, 0xc8, 0x11, 0xd9, 0x85, +0xb5, 0xfe, 0x85, 0x13, 0x6f, 0x09, 0x43, 0x5b, 0x8c, 0xe6, 0x13, 0x2c, 0x7c, 0xc7, 0x23, 0xf9, +0x11, 0x2c, 0xe9, 0xea, 0x63, 0x5e, 0x3f, 0xe1, 0xb5, 0xa8, 0xca, 0x65, 0x41, 0x61, 0xd2, 0x93, +0x3e, 0x1e, 0xb0, 0xe1, 0xd6, 0xb6, 0x76, 0xa4, 0x7a, 0xc5, 0x9f, 0xb1, 0xab, 0x68, 0xea, 0xe1, +0x52, 0x92, 0xb9, 0xb5, 0x48, 0x4d, 0x67, 0xe7, 0x1f, 0x4b, 0xdf, 0xb6, 0x32, 0x6f, 0x63, 0x0c, +0xcd, 0xf2, 0x27, 0xd8, 0x40, 0x87, 0x0f, 0xd1, 0xa3, 0x42, 0xc7, 0x5c, 0x77, 0x30, 0xca, 0x11, +0xce, 0xe3, 0xfc, 0x79, 0x85, 0x96, 0xb8, 0xd0, 0x75, 0xf3, 0x2e, 0x33, 0x22, 0x41, 0x16, 0x8e, +0xce, 0x40, 0x74, 0xc5, 0x15, 0xe2, 0xa4, 0x8f, 0xd7, 0x4b, 0xf8, 0x76, 0x8e, 0xa8, 0xd6, 0x93, +0x7d, 0x71, 0x2f, 0xc5, 0x61, 0xa2, 0x00, 0x61, 0xbd, 0x27, 0xc9, 0x80, 0x24, 0xda, 0x78, 0xda, +0x8e, 0x89, 0x10, 0x46, 0x99, 0x81, 0x46, 0xc7, 0x89, 0xaa, 0xfe, 0x6c, 0xca, 0xa3, 0x40, 0xe6, +0x32, 0x86, 0x80, 0x53, 0x6e, 0x40, 0x79, 0x19, 0x06, 0x6f, 0x9e, 0xa8, 0xbf, 0xde, 0x7f, 0x44, +0x00, 0x15, 0x4a, 0x5b, 0x91, 0xd3, 0x59, 0x1c, 0x72, 0x5f, 0xb9, 0xf5, 0x34, 0x55, 0x58, 0x1d, +0x13, 0xe8, 0xf8, 0x66, 0xd8, 0x75, 0x7b, 0x82, 0x62, 0x08, 0x35, 0x47, 0x19, 0x67, 0x6c, 0x41, +0xd2, 0x1b, 0xe2, 0x67, 0x4f, 0x9c, 0x1c, 0x25, 0x42, 0x4f, 0x8c, 0xa7, 0x49, 0x72, 0xd2, 0x66, +0xc1, 0x28, 0xfb, 0x8b, 0x31, 0xd2, 0x2c, 0x9a, 0xb9, 0x25, 0xbe, 0x70, 0x54, 0xae, 0xfa, 0x2c, +0x46, 0x92, 0x90, 0xef, 0xd3, 0x58, 0xd4, 0x16, 0x10, 0xaf, 0xd2, 0x75, 0x68, 0x77, 0x74, 0xfb, +0x3f, 0xd1, 0x20, 0x09, 0xba, 0xb4, 0xcb, 0xf1, 0xc8, 0xae, 0x65, 0x24, 0xe7, 0x1a, 0x00, 0xc6, +0xf5, 0x86, 0x52, 0xa3, 0x4f, 0xf1, 0x87, 0x0d, 0x45, 0x61, 0xe2, 0xf0, 0x74, 0x7b, 0x09, 0x75, +0x1a, 0x51, 0xdc, 0x05, 0xf8, 0x69, 0xf1, 0x67, 0xb3, 0x7f, 0xf5, 0x9f, 0xa9, 0xe7, 0x9f, 0x22, +0xd5, 0xb6, 0x5f, 0x83, 0x61, 0xbf, 0x0c, 0xe3, 0x23, 0x22, 0xec, 0x2e, 0xb5, 0xa7, 0xd9, 0xf3, +0xd5, 0xf0, 0x25, 0x2e, 0x61, 0x42, 0xba, 0x95, 0x9e, 0x2e, 0x0a, 0x75, 0x1e, 0x4e, 0x78, 0xb0, +0xfc, 0x1a, 0x1a, 0x2c, 0x73, 0x05, 0x29, 0xce, 0x02, 0x32, 0xa0, 0xc5, 0x7e, 0x26, 0xb9, 0x3a, +0x80, 0x65, 0xc0, 0xc8, 0xf8, 0xdf, 0x21, 0xc3, 0xf7, 0x27, 0x12, 0x98, 0x9e, 0x15, 0x56, 0xe3, +0x20, 0x4c, 0xdf, 0x09, 0x92, 0xe2, 0x62, 0x94, 0x00, 0xf6, 0x16, 0x7b, 0x47, 0xe5, 0xf1, 0x40, +0x06, 0x23, 0xea, 0xd8, 0xd3, 0x38, 0x3d, 0xc4, 0xcf, 0xe2, 0x76, 0xab, 0xef, 0x94, 0x86, 0x35, +0xdb, 0x11, 0x25, 0xd7, 0xd8, 0x7f, 0xb5, 0x79, 0xf4, 0x41, 0xb7, 0x96, 0x74, 0xbc, 0x93, 0xf0, +0xe4, 0x85, 0xf7, 0xd0, 0xcb, 0x47, 0x74, 0x0d, 0xd2, 0xbf, 0x6a, 0xa0, 0x68, 0x3a, 0x40, 0xb0, +0x0c, 0x77, 0xd2, 0xf3, 0xfa, 0x9f, 0x35, 0xde, 0xa8, 0x78, 0x37, 0x36, 0xb1, 0xe1, 0x96, 0xa7, +0x4c, 0x1c, 0xe9, 0x02, 0x4f, 0xd6, 0x78, 0xe8, 0xe5, 0xb9, 0x81, 0x25, 0x00, 0x62, 0xb0, 0xcf, +0xdd, 0xd0, 0x39, 0x8e, 0x61, 0xd2, 0x08, 0x04, 0xad, 0xa9, 0xed, 0x56, 0x4c, 0xe8, 0x62, 0x5c, +0x9b, 0x44, 0x07, 0xe9, 0x4f, 0x0c, 0xe9, 0x1c, 0x51, 0xc1, 0x96, 0xac, 0x9d, 0x79, 0xe7, 0x77, +0x49, 0x05, 0xc6, 0x74, 0x6a, 0x52, 0x91, 0x5f, 0x13, 0x46, 0x01, 0xea, 0x1a, 0x18, 0xee, 0x13, +0xc8, 0xfa, 0x02, 0xe0, 0x4d, 0xe2, 0xe2, 0xb6, 0x50, 0x92, 0x14, 0x69, 0xa9, 0xa1, 0x21, 0x11, +0xec, 0x15, 0x3a, 0x56, 0x8f, 0x9a, 0xc9, 0x3f, 0x1b, 0xff, 0xa3, 0x36, 0x8e, 0xc9, 0x5f, 0x8e, +0x80, 0xa0, 0x75, 0x35, 0x3f, 0x8c, 0x8c, 0x37, 0xea, 0xfe, 0xf3, 0xe8, 0x94, 0x8e, 0x42, 0x30, +0xb8, 0x48, 0x43, 0x24, 0x7d, 0x49, 0x3d, 0xe3, 0x1f, 0x2e, 0xfd, 0xe5, 0xb8, 0xbf, 0xd7, 0x9b, +0x7d, 0xba, 0x85, 0xb9, 0x53, 0x4d, 0x25, 0xa3, 0x2a, 0x9c, 0x59, 0xac, 0xe7, 0xbb, 0xa0, 0xd1, +0xc1, 0x4c, 0x61, 0x18, 0x7b, 0x8a, 0x2d, 0x86, 0xe5, 0xf4, 0xf6, 0x5e, 0xfa, 0x2f, 0xbd, 0x79, +0xe6, 0x09, 0xfd, 0xf6, 0x84, 0xba, 0x35, 0xbd, 0xbd, 0x55, 0xee, 0x73, 0xa3, 0x6a, 0x94, 0x93, +0x26, 0xeb, 0xd7, 0x25, 0xfe, 0x81, 0xf7, 0x87, 0xd9, 0xdf, 0x54, 0x85, 0x69, 0x4e, 0xca, 0x18, +0x43, 0x33, 0x35, 0xab, 0x43, 0x04, 0xc9, 0x43, 0x2e, 0x54, 0x8f, 0x3f, 0x1d, 0x9b, 0x09, 0xb9, +0x21, 0xc2, 0x59, 0xe8, 0xa7, 0x69, 0xa9, 0x64, 0xe8, 0xcf, 0x78, 0x56, 0x6f, 0xb7, 0x9f, 0xef, +0xba, 0xd0, 0xbd, 0x9a, 0x81, 0x51, 0xf9, 0x84, 0x36, 0x82, 0x64, 0x8a, 0xc0, 0x23, 0xea, 0xcc, +0x40, 0x36, 0x97, 0x5c, 0xae, 0xcc, 0x8b, 0x24, 0x76, 0x89, 0x6d, 0x35, 0xfa, 0x78, 0xa3, 0x08, +0x2a, 0x88, 0x7a, 0x4b, 0xbd, 0xfa, 0x30, 0x6b, 0x93, 0x8f, 0xb4, 0xc1, 0x39, 0xd2, 0xa8, 0xff, +0x1b, 0xd1, 0xe4, 0x49, 0xb7, 0x73, 0xd7, 0x58, 0x5a, 0x58, 0x0b, 0x9a, 0x28, 0xc0, 0x75, 0x5d, +0x1e, 0x97, 0xc2, 0xe5, 0x96, 0x2b, 0x91, 0xf7, 0x5c, 0x97, 0x86, 0x80, 0x99, 0x97, 0x0f, 0x72, +0x94, 0x4e, 0x0a, 0xe2, 0xbc, 0xe1, 0x1a, 0xd6, 0x76, 0xd9, 0x69, 0x1a, 0x39, 0xa0, 0x67, 0x84, +0x65, 0x0c, 0xae, 0x40, 0x60, 0xa5, 0x80, 0x43, 0x43, 0x41, 0x72, 0xdf, 0xe7, 0xdf, 0xc2, 0xa5, +0x38, 0x4d, 0xe9, 0x43, 0x15, 0x3f, 0x17, 0x14, 0xfb, 0x9a, 0x90, 0x0e, 0x17, 0xe5, 0xed, 0xfa, +0x40, 0x04, 0xf7, 0xd1, 0xf1, 0xf8, 0x95, 0x3d, 0x09, 0x36, 0x2f, 0x02, 0x91, 0x7a, 0x8a, 0xe4, +0x7d, 0xc1, 0xf9, 0x61, 0x13, 0x81, 0x7e, 0xcb, 0x63, 0x6b, 0x92, 0xef, 0xa5, 0x81, 0xcb, 0xc2, +0xf5, 0x4f, 0x42, 0x1a, 0x0f, 0x40, 0xf3, 0x1d, 0x27, 0xbc, 0x1f, 0x3d, 0xd2, 0xb3, 0xa2, 0x08, +0x6e, 0xd3, 0xf5, 0x47, 0xb7, 0xbf, 0x88, 0xe1, 0x0c, 0xbc, 0x92, 0xf3, 0xed, 0xf9, 0x13, 0x9c, +0x13, 0x33, 0xdb, 0x13, 0xb1, 0xa4, 0x76, 0x2e, 0x7e, 0xff, 0xa4, 0x4a, 0x97, 0x44, 0x91, 0xc8, +0x33, 0x4a, 0x1c, 0x32, 0x09, 0x59, 0x51, 0x98, 0x03, 0xde, 0x2a, 0x6b, 0x35, 0x13, 0x05, 0xef, +0xc3, 0x2e, 0xf2, 0x6f, 0x32, 0x8d, 0x61, 0xab, 0x77, 0xab, 0xc9, 0xb1, 0x7c, 0x3f, 0xd0, 0xac, +0x99, 0xb5, 0xc8, 0x29, 0x23, 0xb0, 0x35, 0x7f, 0xaf, 0xa4, 0xeb, 0x8e, 0x62, 0x84, 0xbf, 0xbd, +0xca, 0xf7, 0xf6, 0xb7, 0x57, 0xb7, 0xa8, 0xeb, 0xe9, 0xda, 0x04, 0x31, 0x78, 0xbe, 0x28, 0xc9, +0x92, 0x7a, 0xd0, 0x5d, 0x6b, 0x25, 0xd2, 0x4b, 0x36, 0x34, 0xb0, 0xab, 0xe1, 0xdf, 0x58, 0x55, +0x5f, 0x7c, 0x1c, 0xc9, 0x91, 0xe3, 0x02, 0x47, 0x99, 0xc6, 0x95, 0xd9, 0x9c, 0x25, 0x0d, 0x86, +0x0a, 0x9d, 0xf4, 0xe8, 0xc3, 0xd5, 0x41, 0x60, 0x21, 0x81, 0x38, 0x31, 0xb7, 0xdb, 0x00, 0xef, +0x81, 0x97, 0x32, 0x9e, 0x8d, 0x81, 0x9d, 0xda, 0x77, 0x6c, 0xfd, 0x24, 0x9f, 0xf6, 0x01, 0x85, +0xa3, 0x24, 0x1a, 0xa8, 0xe7, 0x57, 0xf3, 0xbc, 0xef, 0xa1, 0x4c, 0xa5, 0xb3, 0x58, 0xe4, 0x98, +0xbe, 0x2a, 0xbd, 0xad, 0x7f, 0xaf, 0xc0, 0x35, 0x3a, 0x1d, 0xbb, 0xd3, 0xe5, 0x72, 0xdc, 0x2a, +0x50, 0xaa, 0x3b, 0xca, 0xdc, 0x04, 0xa6, 0x0b, 0xd3, 0x50, 0xf2, 0x0d, 0x77, 0x8c, 0x01, 0x8b, +0xd9, 0x6d, 0x82, 0x1d, 0x5b, 0x18, 0x9c, 0x5a, 0xf4, 0x1c, 0x4e, 0x30, 0x56, 0x69, 0xdc, 0xe5, +0x9c, 0xd7, 0x19, 0xff, 0x0a, 0x4b, 0xeb, 0x16, 0xd0, 0xef, 0x35, 0xa4, 0xed, 0x5f, 0x30, 0x58, +0x81, 0x89, 0x46, 0x4c, 0xf2, 0x36, 0x2c, 0x9d, 0xbb, 0x4a, 0x19, 0x44, 0x70, 0x6c, 0x53, 0xb4, +0x27, 0xe1, 0x67, 0xed, 0x82, 0xdf, 0x47, 0xb2, 0xca, 0xaa, 0xbc, 0x54, 0x40, 0xbe, 0x6d, 0x87, +0x18, 0x5d, 0x93, 0x84, 0x8f, 0x35, 0x6e, 0xfb, 0xee, 0xf2, 0x21, 0xed, 0x46, 0xe2, 0x9d, 0x14, +0x2e, 0x93, 0x7b, 0xe3, 0x09, 0xda, 0x01, 0x54, 0x9e, 0x8d, 0x0d, 0x17, 0xb5, 0xf5, 0x44, 0x43, +0x85, 0xb6, 0xd1, 0xcf, 0x1f, 0x31, 0xf2, 0x6f, 0x69, 0xff, 0x56, 0x31, 0xb3, 0xd9, 0x44, 0x85, +0x39, 0x98, 0x6c, 0x5d, 0x80, 0x17, 0x53, 0xe5, 0x74, 0x2c, 0xa6, 0x92, 0x94, 0x56, 0x35, 0x74, +0xf2, 0x93, 0x1d, 0xaf, 0x74, 0x78, 0x79, 0x8b, 0xe9, 0x52, 0x2a, 0x97, 0x2b, 0x87, 0xb9, 0x13, +0x8e, 0x27, 0x4a, 0x88, 0x3c, 0xa0, 0x51, 0xf4, 0x57, 0x1d, 0x1c, 0x5f, 0x2a, 0xb6, 0xed, 0xd4, +0x0e, 0xe2, 0xa8, 0x30, 0xb4, 0x5b, 0xc9, 0xa3, 0x48, 0x34, 0x3d, 0xdc, 0xe7, 0x2b, 0x22, 0xc2, +0xf7, 0xb6, 0x78, 0x87, 0x22, 0xec, 0xdb, 0xe3, 0xfb, 0xec, 0x51, 0x10, 0xce, 0xe8, 0x39, 0x51, +0xef, 0x3b, 0xbe, 0x1f, 0x9a, 0xb2, 0x47, 0x32, 0x7a, 0x50, 0x51, 0xdb, 0x1b, 0x91, 0x5f, 0x3e, +0x94, 0xd5, 0x8d, 0xe2, 0x32, 0x91, 0x25, 0xec, 0x95, 0x15, 0xb4, 0x8c, 0xc3, 0xce, 0x85, 0x29, +0x02, 0x11, 0xdf, 0xc6, 0x07, 0xb5, 0xaa, 0xaf, 0x1c, 0x10, 0xd1, 0x9a, 0xe6, 0xa2, 0xbd, 0xb3, +0x8e, 0x6d, 0xf6, 0x90, 0xdc, 0x52, 0x1b, 0xf0, 0xb2, 0x11, 0xc0, 0x74, 0x87, 0xcf, 0x9f, 0x93, +0xa1, 0x80, 0x2b, 0xc4, 0xeb, 0x22, 0x4b, 0x99, 0xb8, 0xd1, 0x7d, 0xbb, 0xb1, 0xbb, 0x60, 0x7f, +0xa4, 0xc8, 0x0e, 0xa0, 0xb2, 0xbd, 0xa6, 0xdc, 0x34, 0xa0, 0x78, 0x88, 0x57, 0xac, 0x98, 0x62, +0x1a, 0x75, 0x56, 0xdf, 0x3e, 0xed, 0x79, 0x5c, 0x63, 0xd5, 0x3c, 0xb7, 0x5b, 0x32, 0x2c, 0xec, +0xf1, 0x30, 0x0a, 0xd0, 0x67, 0xd1, 0x50, 0xa2, 0x89, 0xaf, 0x54, 0x2b, 0x07, 0x87, 0xc1, 0xd4, +0xc5, 0x05, 0xa6, 0xb4, 0x59, 0x91, 0x10, 0x1f, 0x28, 0xa5, 0xab, 0xd4, 0x9a, 0x2a, 0xdb, 0x53, +0x20, 0x9c, 0xdd, 0x38, 0xce, 0x3a, 0x21, 0x4d, 0x43, 0x62, 0x2c, 0xd1, 0xf6, 0xcb, 0x64, 0xda, +0x7a, 0x39, 0x54, 0xa8, 0x44, 0xe7, 0x1c, 0x1a, 0xad, 0xd2, 0x5f, 0xf8, 0x5b, 0x8f, 0xe9, 0xdb, +0x3f, 0xe5, 0x04, 0x7a, 0x39, 0xcb, 0x8e, 0xd9, 0x55, 0x6a, 0x22, 0x8c, 0x42, 0xa8, 0x0e, 0xc8, +0xcb, 0x6e, 0xf5, 0xde, 0x2f, 0x2f, 0x0a, 0x82, 0x4c, 0x2c, 0x5c, 0x89, 0x1c, 0xec, 0xe5, 0x43, +0x37, 0x45, 0x96, 0x0c, 0x9d, 0x8b, 0xbb, 0x05, 0x0d, 0xb9, 0xd2, 0x3c, 0x94, 0x32, 0x76, 0x2c, +0x14, 0x1c, 0x78, 0xc4, 0x62, 0x40, 0xc9, 0xfb, 0x41, 0x3b, 0xd0, 0x82, 0x1c, 0x83, 0xbc, 0x4c, +0x60, 0xdf, 0xda, 0x4e, 0xa4, 0x58, 0x08, 0x25, 0xd7, 0x06, 0x3a, 0xae, 0xc7, 0xd1, 0x67, 0xed, +0x01, 0xb0, 0x2e, 0xaf, 0x47, 0x30, 0xf0, 0x8d, 0x92, 0xff, 0x03, 0x41, 0xd7, 0xb4, 0x6e, 0x09, +0x27, 0x61, 0x3d, 0xbc, 0xea, 0x90, 0x76, 0x44, 0x85, 0x67, 0x7b, 0x62, 0x9f, 0xcc, 0x52, 0x15, +0x58, 0x06, 0x1e, 0xc7, 0x92, 0x1f, 0xc4, 0xb8, 0xe5, 0x2c, 0x3d, 0xb7, 0xa7, 0x47, 0x16, 0xe9, +0x5e, 0xd2, 0x44, 0x53, 0xce, 0x8a, 0xdc, 0xb7, 0xab, 0x0e, 0x22, 0x6e, 0xb2, 0x99, 0xfd, 0x3c, +0x16, 0xd0, 0x4f, 0x70, 0x28, 0xd4, 0xab, 0xf2, 0x5f, 0xa3, 0x54, 0xd8, 0xaa, 0x45, 0xc8, 0x4c, +0xbb, 0xb3, 0x57, 0x6d, 0xf5, 0x3c, 0x6b, 0x54, 0x27, 0xbc, 0x7e, 0x4d, 0x5c, 0x00, 0x54, 0x75, +0xd0, 0x7b, 0x69, 0xce, 0xaf, 0xd0, 0x61, 0x75, 0x42, 0x90, 0xbe, 0xa0, 0xba, 0x34, 0xff, 0xd8, +0xde, 0x60, 0xa9, 0x3d, 0x82, 0x8f, 0x6a, 0x91, 0x2a, 0xf6, 0x6e, 0x9c, 0x85, 0x3d, 0xf9, 0xcd, +0x6e, 0xdd, 0xca, 0x8f, 0x2c, 0x72, 0x28, 0x07, 0x42, 0x19, 0xd6, 0x8a, 0x48, 0x48, 0xdb, 0x15, +0xa1, 0xc5, 0xa8, 0xb7, 0x83, 0xa9, 0x4b, 0x3d, 0x36, 0x7c, 0xc2, 0x1c, 0x98, 0x78, 0xe1, 0xad, +0xb4, 0x53, 0xd0, 0xad, 0xbf, 0xc7, 0xb5, 0xc2, 0xf2, 0x08, 0x7d, 0x3f, 0x14, 0x87, 0xde, 0x73, +0x09, 0x7c, 0x9a, 0x08, 0x4a, 0x0b, 0x20, 0xd5, 0xd9, 0x4b, 0x89, 0xa7, 0x30, 0x1a, 0x90, 0x76, +0x39, 0xa6, 0xb6, 0x45, 0x8d, 0xa4, 0x2c, 0xac, 0x03, 0x90, 0x0d, 0x90, 0xa6, 0x91, 0x45, 0x86, +0xd6, 0x81, 0x55, 0x8c, 0x69, 0xd3, 0xf9, 0x13, 0x5b, 0x69, 0xf4, 0x01, 0xc5, 0x90, 0x0f, 0xb5, +0xcf, 0x88, 0x9f, 0x79, 0xbf, 0x18, 0x35, 0xb6, 0x0f, 0xbe, 0xbc, 0x35, 0x51, 0xe0, 0xc7, 0x39, +0xde, 0xbf, 0x36, 0x8f, 0x61, 0xc4, 0x86, 0x8e, 0x3d, 0x0d, 0x75, 0x9d, 0xda, 0xd5, 0xec, 0x4e, +0xc0, 0xf0, 0xd5, 0x72, 0x0d, 0x86, 0x6c, 0x75, 0x3e, 0x54, 0x41, 0xa9, 0x6e, 0x1c, 0xdc, 0x28, +0x57, 0xbd, 0x5a, 0xe8, 0x3a, 0x39, 0xd4, 0x3a, 0xba, 0xdc, 0x56, 0x99, 0xe2, 0xf1, 0x71, 0xac, +0xf0, 0xd8, 0x84, 0x5a, 0xfa, 0xa8, 0x0a, 0xc4, 0x31, 0xd0, 0xdb, 0xaf, 0x79, 0x98, 0x99, 0xb1, +0x62, 0xd2, 0x99, 0x24, 0x75, 0x76, 0xcb, 0x29, 0x48, 0x77, 0x99, 0xe2, 0x26, 0x87, 0x3b, 0x43, +0x6f, 0x78, 0x91, 0x0e, 0x9d, 0x6b, 0x4a, 0xee, 0x3e, 0xc7, 0xcf, 0xe8, 0x04, 0xe6, 0xfa, 0x1a, +0xd8, 0x8e, 0x8e, 0xf0, 0x86, 0xaa, 0x22, 0xd1, 0xb5, 0x7e, 0x49, 0xae, 0x69, 0x0e, 0xd3, 0xac, +0xb7, 0x64, 0x5c, 0x6b, 0x44, 0xf9, 0x4b, 0xf4, 0x7a, 0xc0, 0xe6, 0xae, 0xe0, 0x33, 0xef, 0x99, +0xf8, 0x84, 0x07, 0x06, 0x98, 0xf7, 0xf3, 0x64, 0x73, 0x9d, 0xab, 0xa9, 0xe0, 0x2a, 0xce, 0x06, +0xc5, 0xf4, 0xfb, 0x9d, 0x7b, 0x89, 0x11, 0x51, 0x2a, 0x6a, 0x48, 0x7f, 0x35, 0xae, 0xac, 0x36, +0x0b, 0x54, 0x7b, 0x22, 0x9e, 0xed, 0x38, 0xc3, 0xae, 0x6b, 0x51, 0x34, 0x6a, 0x3d, 0xb4, 0x1e, +0x7e, 0x8f, 0x38, 0x41, 0x27, 0xb6, 0xaa, 0xc0, 0x2c, 0xd0, 0xd3, 0xe7, 0x5c, 0xda, 0x44, 0x8b, +0xf6, 0xc3, 0x58, 0xa7, 0x3c, 0x3b, 0x62, 0xa6, 0x36, 0x11, 0x15, 0x48, 0xe5, 0x16, 0xf5, 0xd4, +0x64, 0xe0, 0xf0, 0x27, 0x3b, 0x62, 0xa6, 0xad, 0xe1, 0xb7, 0xfd, 0xd1, 0x43, 0xb2, 0xb4, 0x32, +0xc1, 0xcd, 0xcd, 0xeb, 0x6e, 0xf5, 0x11, 0xa8, 0x13, 0x14, 0x34, 0x53, 0x4a, 0xa0, 0xbc, 0xed, +0x4f, 0xc4, 0x17, 0x43, 0x91, 0x5c, 0x36, 0x3d, 0x72, 0x34, 0x5f, 0xca, 0x81, 0xab, 0x80, 0x7e, +0xb8, 0xc1, 0x1e, 0xcc, 0xc3, 0x5a, 0x01, 0xf3, 0xf4, 0x83, 0x75, 0x57, 0xaf, 0x0a, 0xb1, 0xad, +0xb2, 0x7a, 0xcf, 0x83, 0x29, 0xf7, 0x54, 0x58, 0xb1, 0xbd, 0x9a, 0x1a, 0xd8, 0x4b, 0x5a, 0x8d, +0xa3, 0xf3, 0xf0, 0x26, 0xcf, 0x8c, 0xa9, 0x0a, 0xc4, 0xa3, 0x5d, 0x53, 0xed, 0x1d, 0x86, 0xe9, +0x63, 0xf5, 0xbe, 0x04, 0x78, 0xe6, 0xc9, 0xc0, 0xf9, 0x82, 0xbd, 0xe7, 0x45, 0xc1, 0xd2, 0x75, +0x8f, 0x2a, 0x92, 0xdc, 0x65, 0x36, 0xc1, 0xd4, 0xa2, 0x5d, 0x13, 0x5f, 0x5c, 0xcd, 0x1f, 0x5b, +0x7e, 0x3e, 0xd0, 0x50, 0x0b, 0xc0, 0x5f, 0x3f, 0x75, 0x83, 0xc8, 0xa1, 0xfb, 0x30, 0x1f, 0xdc, +0xcf, 0x31, 0x33, 0xa6, 0xff, 0x60, 0x70, 0x05, 0xdc, 0xd6, 0x93, 0x06, 0x25, 0x62, 0xc6, 0x6f, +0xf9, 0x64, 0xdf, 0x52, 0x80, 0x05, 0xcc, 0x7b, 0x3f, 0x90, 0xff, 0xdd, 0x04, 0x60, 0x37, 0x61, +0x39, 0xa2, 0x22, 0xdb, 0x44, 0x6b, 0xd5, 0x95, 0xa5, 0xec, 0x34, 0x8a, 0x96, 0x5f, 0x6d, 0xc2, +0xc1, 0xe4, 0x26, 0x02, 0x31, 0x5f, 0x40, 0xfc, 0xe2, 0x19, 0xcc, 0x56, 0xc5, 0x5b, 0x9c, 0xf9, +0x9c, 0x4d, 0x7d, 0x77, 0xec, 0xf9, 0x8a, 0x74, 0x4a, 0xf7, 0xd7, 0x16, 0xd8, 0x1e, 0xd6, 0x6e, +0x1a, 0x15, 0x08, 0x11, 0xda, 0xc8, 0x38, 0x44, 0x26, 0x74, 0x6f, 0x22, 0x5c, 0x87, 0x68, 0x5a, +0xfc, 0x2b, 0x0f, 0x55, 0x78, 0x13, 0x2f, 0x19, 0x25, 0xb9, 0x97, 0x81, 0xe4, 0x6c, 0x51, 0x9b, +0xdf, 0xc4, 0x09, 0xec, 0x1d, 0x4d, 0x28, 0x3c, 0xe0, 0x8f, 0x07, 0xd9, 0xde, 0xe6, 0x29, 0xd0, +0xef, 0x13, 0x5f, 0x4d, 0x38, 0x17, 0x8b, 0xf3, 0x7e, 0xf9, 0x1a, 0xa6, 0x1b, 0x5b, 0x84, 0xbe, +0x1d, 0xe7, 0x2c, 0x81, 0x06, 0xd5, 0x6d, 0xa7, 0x76, 0x30, 0xff, 0x17, 0x8c, 0x5e, 0xba, 0x57, +0x04, 0x68, 0xe0, 0x29, 0xba, 0x7e, 0x63, 0x16, 0x27, 0x69, 0x01, 0x0d, 0xa1, 0xf2, 0x30, 0x0c, +0x80, 0xc9, 0x27, 0xf6, 0x16, 0x36, 0x38, 0x43, 0xee, 0xc1, 0xb4, 0xb0, 0x8f, 0x9d, 0xd9, 0x5d, +0x0f, 0xeb, 0xeb, 0x3c, 0xfd, 0x4c, 0xaa, 0x71, 0xaa, 0xad, 0x42, 0xd1, 0x93, 0x63, 0x63, 0xae, +0x22, 0x10, 0x4d, 0xc3, 0x51, 0x72, 0x3b, 0x81, 0x36, 0x16, 0x3e, 0x92, 0x16, 0xa9, 0x8c, 0x4d, +0x83, 0x86, 0x34, 0x59, 0xa4, 0xe6, 0xfb, 0x93, 0x21, 0xa2, 0x24, 0xa8, 0x31, 0x31, 0xc8, 0x08, +0x72, 0x90, 0xcd, 0xfd, 0xcc, 0x3d, 0xe7, 0x6d, 0x56, 0x6d, 0x60, 0x61, 0x82, 0xae, 0xd3, 0xc2, +0x0a, 0xe4, 0x9c, 0xde, 0xf8, 0x1f, 0x30, 0x20, 0x69, 0x20, 0x53, 0x46, 0xf2, 0x11, 0x65, 0xc7, +0xf3, 0x5e, 0xd5, 0x09, 0x7e, 0x14, 0xd4, 0x9e, 0x0e, 0x92, 0xab, 0x03, 0x62, 0xf8, 0x1f, 0xad, +0xcb, 0x01, 0xac, 0x8c, 0x05, 0x25, 0xf7, 0xec, 0x81, 0x0d, 0xd6, 0x2b, 0x9c, 0xe1, 0x73, 0x77, +0xd9, 0x6b, 0x59, 0xdf, 0xfb, 0xa1, 0xf0, 0x7c, 0x76, 0x28, 0x73, 0xcd, 0x8b, 0xe8, 0xa8, 0x76, +0xa0, 0x0e, 0x5e, 0x17, 0xd6, 0x81, 0xbd, 0xae, 0x6b, 0x92, 0xe5, 0xa8, 0xd2, 0x79, 0x93, 0xfd, +0x92, 0xb1, 0x69, 0xdc, 0x52, 0x35, 0x9e, 0x98, 0xbd, 0x7f, 0xf7, 0x2b, 0xd5, 0x9a, 0x5c, 0xb9, +0x30, 0x11, 0x1d, 0x5c, 0x79, 0xa4, 0xe4, 0xcf, 0x25, 0xf5, 0xa6, 0x2c, 0xc8, 0x64, 0x68, 0xb1, +0xb6, 0x28, 0x4b, 0x65, 0xbf, 0x90, 0x06, 0x68, 0x7e, 0x9a, 0xe0, 0x01, 0x68, 0xcf, 0xa1, 0x59, +0x5e, 0x11, 0x98, 0xea, 0xbb, 0xc0, 0x26, 0xa0, 0xc6, 0x62, 0xe3, 0x2b, 0x1b, 0xeb, 0xda, 0xda, +0x90, 0x73, 0x7f, 0x9a, 0xe3, 0xff, 0xe8, 0xe0, 0xa6, 0x71, 0x8f, 0xc3, 0x05, 0xf3, 0x05, 0xe2, +0x94, 0xf1, 0xf6, 0x69, 0xcc, 0xe7, 0xea, 0x6b, 0x50, 0x9e, 0xd9, 0xd6, 0xef, 0xeb, 0xbb, 0x1a, +0x20, 0x8c, 0x0b, 0x39, 0x28, 0x9d, 0x76, 0x9e, 0xd7, 0x2f, 0xe7, 0x01, 0x60, 0xdb, 0xfe, 0xb3, +0xdb, 0x8d, 0xc6, 0xbd, 0x32, 0xc4, 0x4f, 0x14, 0xb2, 0xd7, 0x9f, 0x7d, 0x34, 0x10, 0x0b, 0x83, +0x33, 0x4f, 0x17, 0xb7, 0x8c, 0x0f, 0x22, 0x38, 0x80, 0x30, 0xa1, 0x63, 0xb2, 0xa1, 0xc3, 0x94, +0x43, 0xcf, 0x28, 0xba, 0x64, 0x00, 0xf8, 0x13, 0x87, 0xd9, 0x50, 0x63, 0x5c, 0x55, 0x82, 0x35, +0xb3, 0x99, 0xbb, 0x28, 0xdc, 0xf3, 0xbb, 0x21, 0x0c, 0x42, 0x36, 0x89, 0x73, 0x01, 0x89, 0x81, +0xfb, 0x75, 0x58, 0x1d, 0x67, 0x95, 0x1b, 0x02, 0xfd, 0xd1, 0x2a, 0xc2, 0x42, 0x4f, 0x57, 0x17, +0x66, 0xfd, 0xd8, 0x2a, 0xe8, 0xec, 0xfe, 0x63, 0x4f, 0xc8, 0x75, 0xc8, 0x03, 0x95, 0x8e, 0xc2, +0xc2, 0xac, 0x4e, 0x5f, 0x2d, 0x41, 0xfe, 0x0a, 0x68, 0x3f, 0xd9, 0xe4, 0xb2, 0x5e, 0xf4, 0xb9, +0x29, 0x31, 0x62, 0xfe, 0xf1, 0x36, 0x1e, 0x7b, 0x88, 0x79, 0xc4, 0x06, 0xda, 0xe8, 0xd0, 0x04, +0x42, 0x8e, 0xe7, 0x2d, 0xcc, 0x69, 0xa3, 0xec, 0x16, 0x85, 0x6c, 0x6b, 0xc5, 0xe0, 0xc8, 0x8e, +0x58, 0xa1, 0x90, 0x43, 0x9d, 0x39, 0xe0, 0xdb, 0x41, 0xb1, 0xc2, 0x26, 0x54, 0x1e, 0x8a, 0x91, +0x6d, 0x9f, 0x82, 0x14, 0x66, 0xe5, 0xb1, 0x87, 0xd3, 0xf8, 0x52, 0x95, 0x1d, 0x4e, 0xb4, 0x1b, +0x9d, 0x3a, 0x1a, 0x03, 0x44, 0xe2, 0xe4, 0xed, 0xba, 0x23, 0x7d, 0xca, 0x4f, 0x4f, 0xa1, 0x21, +0xd5, 0x28, 0x32, 0x83, 0x37, 0x57, 0x9c, 0x39, 0xd4, 0x4a, 0x72, 0xcf, 0x35, 0x37, 0x6b, 0x1c, +0x41, 0x60, 0xb5, 0x31, 0x9b, 0xcc, 0xf3, 0x7a, 0x16, 0x15, 0x83, 0x1d, 0x48, 0xcf, 0x97, 0xba, +0x14, 0x35, 0x3d, 0xc9, 0x82, 0x6a, 0x6a, 0x47, 0xb1, 0xc1, 0xce, 0x92, 0x14, 0x5d, 0xba, 0x9a, +0xbc, 0x3c, 0xb9, 0xf2, 0x91, 0x22, 0xdd, 0x48, 0x83, 0xb5, 0x02, 0xcc, 0x72, 0x44, 0x25, 0x35, +0xfb, 0x59, 0xb1, 0x04, 0xf6, 0xf6, 0x00, 0x44, 0xfb, 0x58, 0xcb, 0x24, 0xff, 0xc7, 0x04, 0x74, +0xe5, 0xd1, 0x04, 0x1e, 0xa9, 0xc2, 0x95, 0xd1, 0x3b, 0xdb, 0xc0, 0xbd, 0x60, 0x2f, 0x72, 0xaf, +0xfb, 0x0e, 0x7e, 0x91, 0x69, 0x08, 0x5a, 0x30, 0x64, 0x65, 0x9f, 0x54, 0x8f, 0x62, 0x70, 0x7e, +0xe0, 0x05, 0xef, 0x81, 0x8f, 0x2b, 0x4c, 0xc8, 0x52, 0x57, 0x3a, 0x33, 0xec, 0xf2, 0x6e, 0x96, +0xb3, 0xac, 0xa4, 0x2b, 0xf1, 0x78, 0x08, 0xbd, 0xe0, 0xbe, 0xfc, 0x7e, 0x0a, 0xda, 0x5a, 0xd2, +0x8c, 0xd6, 0x35, 0xda, 0x2b, 0x2c, 0xbe, 0x29, 0x10, 0x48, 0x84, 0x2a, 0xfb, 0x37, 0xa2, 0xe7, +0x1f, 0x5c, 0x59, 0x2c, 0xe9, 0x04, 0x4f, 0x45, 0xc4, 0x9a, 0x48, 0x0b, 0xf1, 0x8e, 0x7d, 0xb1, +0xdf, 0xf3, 0x60, 0x36, 0x1c, 0x03, 0x33, 0x82, 0xa8, 0xc8, 0x9e, 0xca, 0xb3, 0x88, 0xc2, 0x01, +0x7d, 0x8c, 0xaf, 0x84, 0xc0, 0x27, 0x55, 0x5b, 0x57, 0x64, 0x86, 0x6b, 0x54, 0x22, 0xa2, 0xdd, +0xb0, 0x5e, 0x2d, 0x83, 0x4f, 0x99, 0x92, 0xf5, 0xa9, 0x60, 0x7d, 0xb8, 0x60, 0xac, 0x44, 0x10, +0x8a, 0xb7, 0xff, 0x71, 0x8d, 0x19, 0x2d, 0x4e, 0x79, 0x37, 0xb0, 0x9a, 0x8f, 0x6d, 0x90, 0x85, +0x1a, 0x6f, 0xf7, 0xed, 0xf6, 0x54, 0xc7, 0x87, 0x52, 0x02, 0x4d, 0xc7, 0xf3, 0xe9, 0xc8, 0x1d, +0x5b, 0xaa, 0xb4, 0x41, 0x27, 0x92, 0xe4, 0x09, 0x4f, 0xed, 0x16, 0xac, 0xd9, 0x6a, 0x03, 0xd3, +0x9c, 0x6c, 0x79, 0xca, 0xd4, 0x0b, 0x19, 0xa6, 0x5a, 0x38, 0xae, 0xf3, 0x62, 0xa4, 0xa1, 0x33, +0xba, 0xae, 0x3c, 0xec, 0x02, 0xfe, 0x6f, 0x6c, 0xc2, 0xb3, 0x4b, 0x56, 0x28, 0x42, 0xaf, 0x3a, +0x6a, 0xc8, 0x3b, 0x00, 0x58, 0xf6, 0x3f, 0xbc, 0x5f, 0x26, 0x5c, 0x34, 0x91, 0x5c, 0xe7, 0x0c, +0x6b, 0xda, 0xed, 0x01, 0x84, 0x8f, 0xe1, 0xf9, 0x6d, 0xa5, 0x07, 0xd0, 0xf5, 0x17, 0x29, 0x98, +0x4d, 0x48, 0xee, 0x6d, 0xf8, 0xda, 0xf8, 0x31, 0x7d, 0xfd, 0x91, 0x81, 0xbf, 0x00, 0x80, 0x3c, +0x03, 0xf0, 0x60, 0xb0, 0xb6, 0x40, 0x3d, 0x2b, 0x81, 0xbf, 0xd4, 0x5b, 0xa3, 0x6a, 0xca, 0xf4, +0x95, 0x5c, 0x46, 0xb5, 0x01, 0x14, 0xb1, 0x65, 0xee, 0x90, 0xf6, 0x60, 0x63, 0x10, 0x4a, 0x98, +0x92, 0x8a, 0xd8, 0x40, 0xe1, 0x1e, 0x5d, 0x8d, 0xf5, 0x88, 0xd2, 0x0b, 0x35, 0x98, 0x12, 0xc7, +0x8e, 0x32, 0xce, 0x5b, 0x02, 0x53, 0x1f, 0x3e, 0xe0, 0xfa, 0x49, 0xb5, 0x15, 0x62, 0xd9, 0x88, +0x45, 0xba, 0x97, 0x68, 0x80, 0x8a, 0x47, 0x2a, 0x15, 0xa5, 0x6f, 0x48, 0x61, 0xca, 0xb1, 0xd7, +0x16, 0x81, 0x2e, 0xd6, 0x5e, 0x63, 0x14, 0xe2, 0xff, 0xbd, 0x73, 0x07, 0xe8, 0x18, 0x50, 0x1b, +0x88, 0xa4, 0x7c, 0xa4, 0xc2, 0xe4, 0x56, 0x36, 0xa3, 0x98, 0x7a, 0x59, 0x4b, 0x5a, 0xae, 0x6c, +0x65, 0xa5, 0x4a, 0x0b, 0xa5, 0x0b, 0x32, 0xd1, 0xe6, 0x34, 0x7a, 0xc0, 0x56, 0x58, 0x77, 0x91, +0x09, 0x1c, 0x37, 0x20, 0xbf, 0x2c, 0x6f, 0x14, 0xfe, 0x00, 0x72, 0xd8, 0x8e, 0x62, 0x2f, 0x84, +0x15, 0xbd, 0xd9, 0x5f, 0x52, 0xf4, 0xb8, 0x1b, 0xb0, 0xb0, 0xb6, 0x17, 0x85, 0xee, 0x3d, 0x6c, +0xf3, 0xa7, 0x30, 0x0d, 0xfd, 0x48, 0x43, 0x29, 0x30, 0x4d, 0x3a, 0x66, 0x7f, 0x50, 0x84, 0xaa, +0xb2, 0xa5, 0x14, 0x28, 0xe0, 0xac, 0xfb, 0x9e, 0xe4, 0x03, 0x7e, 0xe7, 0xc2, 0x80, 0xd7, 0xd6, +0xf5, 0xd5, 0x3d, 0x62, 0x87, 0x0c, 0x58, 0xe4, 0xcc, 0xba, 0xe1, 0x32, 0xb5, 0x26, 0x40, 0x3d, +0x47, 0x04, 0x3f, 0xd3, 0x1f, 0x27, 0xe7, 0x8d, 0x09, 0x81, 0xa7, 0xb0, 0xea, 0x4f, 0xde, 0x42, +0x0c, 0x17, 0x06, 0x46, 0xa8, 0x4a, 0x30, 0x2d, 0x35, 0x7a, 0xdb, 0x1a, 0x89, 0x1d, 0xbb, 0xd6, +0xe4, 0x90, 0x4b, 0x72, 0xb6, 0xb1, 0xbf, 0xb7, 0xbf, 0xba, 0xc6, 0x32, 0x69, 0xf7, 0x8f, 0x44, +0x61, 0xdc, 0x82, 0xad, 0x32, 0x68, 0xb5, 0x01, 0xd7, 0x94, 0x93, 0x74, 0x55, 0xd6, 0x01, 0xd9, +0xab, 0x91, 0xdb, 0xee, 0x2b, 0xad, 0x53, 0x69, 0xbb, 0x9d, 0x4b, 0x02, 0x62, 0xc1, 0x23, 0x94, +0x50, 0x1a, 0x07, 0x6e, 0x8e, 0x62, 0x4c, 0x32, 0xa0, 0xd9, 0x3d, 0x50, 0x7a, 0x4a, 0xf3, 0xf6, +0xd8, 0x47, 0xf0, 0xa1, 0x1e, 0xf8, 0xf6, 0x98, 0x33, 0xd9, 0x85, 0x5c, 0xaa, 0x3a, 0xf2, 0x3f, +0x99, 0x6b, 0x60, 0x5d, 0xe2, 0xc3, 0x67, 0xa5, 0x92, 0xc4, 0xa6, 0x25, 0x56, 0x5a, 0x45, 0x5b, +0xc1, 0xe4, 0x55, 0xb6, 0x09, 0x65, 0x90, 0x88, 0xbe, 0x29, 0xa9, 0x81, 0x73, 0x91, 0xd4, 0x29, +0xe0, 0x19, 0xad, 0xce, 0x70, 0xbb, 0x4c, 0xab, 0x24, 0x3d, 0x4d, 0xfa, 0x2a, 0xf5, 0xa3, 0x68, +0xa1, 0x85, 0x38, 0x67, 0x30, 0xd2, 0xe2, 0xc0, 0xcf, 0x1f, 0xcc, 0xca, 0x54, 0xba, 0xa0, 0x4b, +0x03, 0x4e, 0xe0, 0x85, 0x5b, 0x6f, 0x60, 0xaf, 0x67, 0x23, 0x3a, 0x6c, 0xcb, 0xf9, 0x71, 0x64, +0x50, 0x94, 0x87, 0xa8, 0xce, 0x1f, 0xa4, 0x59, 0xbf, 0x7a, 0xfd, 0x20, 0x2f, 0x14, 0xd4, 0x10, +0xa2, 0xaf, 0xba, 0x3c, 0xfe, 0xee, 0xe7, 0x33, 0xb2, 0xe4, 0x1f, 0x4b, 0xa4, 0xdb, 0xe2, 0x41, +0x37, 0x7e, 0x2d, 0xa8, 0xfa, 0xff, 0x6d, 0x38, 0xe1, 0xd7, 0x10, 0x5b, 0x57, 0x5e, 0x73, 0x62, +0x94, 0x8f, 0x1b, 0x7d, 0x17, 0x2f, 0x82, 0x26, 0x7a, 0x93, 0x1a, 0xbf, 0x0b, 0x69, 0x2d, 0x22, +0x6e, 0xe5, 0x41, 0xca, 0x36, 0xc8, 0x7b, 0x26, 0xc1, 0x9b, 0x6b, 0xbe, 0xcc, 0x73, 0xa9, 0x17, +0x81, 0x58, 0x13, 0xc7, 0x72, 0x67, 0x1a, 0x6b, 0x6e, 0x6a, 0x58, 0xe7, 0x65, 0x4c, 0x30, 0x93, +0x36, 0xe3, 0xbb, 0x7a, 0xa0, 0x59, 0xe0, 0xb4, 0x82, 0xe8, 0x7b, 0x4b, 0x75, 0xa0, 0xb1, 0x20, +0x08, 0x66, 0x7e, 0xc9, 0x66, 0x9a, 0xaf, 0x50, 0x63, 0xa7, 0x7e, 0x31, 0xdf, 0x7d, 0x80, 0xb6, +0x6f, 0xb3, 0xb6, 0x25, 0x88, 0x21, 0xf6, 0xe9, 0x0a, 0x64, 0xdf, 0x6b, 0x15, 0xe7, 0x30, 0x3b, +0x48, 0x98, 0xf7, 0x15, 0x63, 0xf8, 0x1f, 0xbe, 0x41, 0xb7, 0x53, 0xa5, 0x8c, 0x2c, 0x97, 0x02, +0xed, 0x66, 0xc7, 0x7c, 0xdd, 0x61, 0xc3, 0xba, 0x1d, 0xef, 0xfc, 0x77, 0x9f, 0xbd, 0xdd, 0x27, +0xc7, 0xe1, 0x27, 0xbc, 0xd4, 0x7f, 0x83, 0xb6, 0x43, 0x1d, 0x00, 0xad, 0x2c, 0xd3, 0x88, 0x9c, +0x43, 0x4e, 0x87, 0xc5, 0x4d, 0x6a, 0x64, 0x69, 0x58, 0xce, 0x0b, 0x7b, 0xce, 0xe7, 0x62, 0x04, +0x6d, 0x62, 0x11, 0x95, 0xed, 0xb6, 0x30, 0x4d, 0x00, 0x13, 0xd1, 0x24, 0x6f, 0xa8, 0x0d, 0x22, +0xd6, 0x19, 0x93, 0x3f, 0x18, 0xce, 0x44, 0xfc, 0x82, 0xb2, 0xf6, 0x4f, 0xd0, 0x13, 0x22, 0xfa, +0xfb, 0xa3, 0x21, 0xad, 0x3b, 0xde, 0x58, 0xe7, 0x86, 0xd3, 0x74, 0xa4, 0x81, 0xc8, 0x96, 0xce, +0xc3, 0xe3, 0x41, 0x11, 0x4a, 0x81, 0x8c, 0x6d, 0x1f, 0x0a, 0xcf, 0xc7, 0x13, 0x86, 0x93, 0x81, +0xb0, 0x27, 0x07, 0x48, 0x86, 0xdd, 0xe9, 0x12, 0xfe, 0x21, 0x67, 0x71, 0xe9, 0xd1, 0x5a, 0x0e, +0x11, 0x86, 0x50, 0x9d, 0x3a, 0xf0, 0xfc, 0xcb, 0x03, 0x64, 0x0e, 0x72, 0xb5, 0xf7, 0xf0, 0x6d, +0xf8, 0xec, 0xae, 0x1e, 0x44, 0xb5, 0x7a, 0xc4, 0x9b, 0x70, 0xa5, 0x95, 0xc7, 0xcc, 0xc7, 0x5c, +0xde, 0xeb, 0x40, 0x93, 0x4a, 0x89, 0xd6, 0x16, 0x5f, 0xfa, 0xe4, 0x6e, 0x7a, 0xf5, 0x7c, 0x67, +0x38, 0x1d, 0x55, 0x36, 0x2e, 0x8f, 0xd5, 0x96, 0x8a, 0x28, 0x54, 0x4e, 0x9d, 0x47, 0x82, 0x77, +0xdf, 0x94, 0xe1, 0xbd, 0xd0, 0x44, 0xd0, 0xee, 0xcd, 0xbf, 0xbd, 0x11, 0x6e, 0x66, 0x4d, 0x40, +0x4b, 0xc0, 0x42, 0x3f, 0x3c, 0x66, 0x53, 0x08, 0xf2, 0x68, 0x9c, 0x46, 0x33, 0x78, 0x0f, 0x72, +0xbd, 0x6a, 0x87, 0x81, 0x02, 0xd3, 0xec, 0x9c, 0xc1, 0x45, 0x77, 0x4f, 0xe9, 0x0a, 0x8d, 0x5e, +0x36, 0xf1, 0xc5, 0x5b, 0x2c, 0x68, 0x2c, 0xd6, 0xba, 0x63, 0x12, 0xf7, 0x80, 0x29, 0xed, 0x9d, +0xd8, 0x4f, 0xe3, 0x75, 0xe6, 0x79, 0xd9, 0xe5, 0xd0, 0x3a, 0xf5, 0x68, 0xc5, 0xa2, 0x24, 0x37, +0x36, 0x3c, 0xf6, 0xc5, 0xd4, 0x39, 0x7e, 0xbc, 0xd4, 0xa9, 0x02, 0xf7, 0xf2, 0x4b, 0x3d, 0x95, +0x34, 0x49, 0xc2, 0x7b, 0x9c, 0xbb, 0xf4, 0xf4, 0x8f, 0xdb, 0x37, 0x24, 0xc2, 0x65, 0xe6, 0xcd, +0x3d, 0x5b, 0xb7, 0xc4, 0xad, 0x88, 0x8d, 0xcf, 0xd0, 0xaa, 0x10, 0xcd, 0x75, 0x51, 0xf0, 0x63, +0x7d, 0xa2, 0x8e, 0xdc, 0xc6, 0x25, 0x35, 0xb9, 0x33, 0x4f, 0x1c, 0xf1, 0x7e, 0xa2, 0x06, 0x5c, +0x2e, 0x91, 0x6d, 0xc1, 0xe3, 0x5b, 0xea, 0x39, 0xcb, 0xb4, 0xed, 0x14, 0x6e, 0x96, 0x35, 0xd8, +0x66, 0x05, 0x36, 0xf7, 0x19, 0x38, 0xba, 0xf3, 0x29, 0x8e, 0xc7, 0x27, 0xa5, 0xff, 0x94, 0xa9, +0x61, 0x67, 0x19, 0x76, 0x04, 0x06, 0x62, 0xb9, 0x89, 0xc0, 0x90, 0x17, 0x2a, 0x37, 0xdc, 0x50, +0xad, 0x7b, 0x92, 0x90, 0xf6, 0xb5, 0x75, 0x3b, 0x93, 0xd9, 0x05, 0x70, 0xe5, 0x81, 0x7a, 0xbf, +0xba, 0x53, 0x97, 0x87, 0x0e, 0x3c, 0xe2, 0x8a, 0xce, 0x78, 0xff, 0x6a, 0xf6, 0x87, 0x25, 0xdc, +0x0c, 0x8c, 0x95, 0xb1, 0xa0, 0x20, 0x11, 0x9e, 0x64, 0x1a, 0x3a, 0x18, 0xf8, 0x52, 0xe8, 0x05, +0xc8, 0x67, 0x0d, 0x1e, 0xc6, 0x89, 0x03, 0x6a, 0x90, 0xb4, 0xd9, 0x73, 0x85, 0x0b, 0x1b, 0x46, +0xbb, 0x22, 0xef, 0x42, 0x83, 0xf2, 0x15, 0x82, 0xbe, 0xee, 0x6b, 0x74, 0x74, 0x1b, 0xd5, 0x0e, +0x33, 0xce, 0xef, 0xae, 0xd2, 0x14, 0x9c, 0x8e, 0xa7, 0x2a, 0xd8, 0x73, 0xce, 0x9a, 0x7a, 0x93, +0x15, 0x69, 0xe3, 0x27, 0xa3, 0x6c, 0x0c, 0xdd, 0xac, 0xc7, 0x2f, 0x78, 0x66, 0x19, 0x11, 0xe7, +0x7e, 0xbc, 0x63, 0x61, 0xd9, 0x13, 0x56, 0x5f, 0xa6, 0x48, 0xd9, 0x4a, 0xd1, 0xeb, 0x2b, 0xcc, +0x67, 0xbf, 0x52, 0x92, 0xdd, 0xbc, 0x40, 0x7a, 0xf0, 0xbf, 0x64, 0x09, 0x3b, 0x8d, 0xc7, 0x0f, +0x01, 0x1c, 0x8b, 0xa8, 0x38, 0x17, 0xe1, 0x94, 0xb3, 0x99, 0x17, 0xbb, 0x3d, 0xe7, 0x04, 0x4d, +0xf6, 0xa8, 0x14, 0x56, 0xa7, 0x05, 0x32, 0x66, 0xfe, 0x8b, 0x0e, 0x35, 0x75, 0xf6, 0x7e, 0x42, +0x18, 0x94, 0xae, 0x66, 0xd8, 0xcb, 0x8d, 0x2d, 0x9a, 0xa0, 0xa8, 0x1b, 0xee, 0xb0, 0xb7, 0xf3, +0x1e, 0x35, 0xd8, 0xbb, 0xf2, 0x0f, 0x84, 0x2b, 0x37, 0x61, 0xe2, 0x13, 0x84, 0x65, 0x07, 0x6d, +0x75, 0x60, 0x5b, 0xd8, 0xd1, 0xa9, 0x04, 0x78, 0x98, 0x32, 0xf0, 0xba, 0x5b, 0xc1, 0x90, 0x63, +0x30, 0xb2, 0xd2, 0x14, 0x5f, 0xd6, 0x74, 0x85, 0xc5, 0x75, 0xcd, 0x3a, 0x19, 0xde, 0xcc, 0xa0, +0x92, 0xec, 0x4a, 0x03, 0x3a, 0x4d, 0x26, 0x50, 0x04, 0x14, 0xbc, 0x1a, 0xfb, 0x21, 0xde, 0xf8, +0x47, 0x53, 0x03, 0xe9, 0x26, 0x7b, 0xbc, 0xe9, 0xbd, 0xe8, 0x99, 0x39, 0xd7, 0xaf, 0xa6, 0xc2, +0xf3, 0xcf, 0x23, 0x64, 0xff, 0xa4, 0x7e, 0x4d, 0x26, 0x69, 0x76, 0x5e, 0x76, 0x14, 0xae, 0xbe, +0x04, 0x00, 0x63, 0x6b, 0xa7, 0x1f, 0x49, 0xb6, 0xbb, 0x1c, 0xde, 0xce, 0x35, 0x98, 0x9b, 0x72, +0x0f, 0x71, 0x81, 0x6f, 0xca, 0xab, 0x51, 0x8e, 0xaa, 0xf6, 0xc8, 0x57, 0x48, 0x76, 0x55, 0xb1, +0xd3, 0xb1, 0x7b, 0xc2, 0x33, 0x21, 0x9e, 0x79, 0x55, 0xf8, 0xed, 0xf7, 0x42, 0x86, 0x63, 0xfd, +0xac, 0x4f, 0x29, 0x5b, 0x17, 0x8e, 0xb2, 0x5a, 0x2c, 0xf1, 0x6d, 0xcb, 0x05, 0x5c, 0x3c, 0x60, +0x81, 0x43, 0xc0, 0x44, 0xa6, 0xaf, 0xfa, 0xf0, 0xda, 0x63, 0x2e, 0x65, 0x5b, 0x68, 0x1e, 0x50, +0x80, 0x62, 0xca, 0x6b, 0x6e, 0x57, 0x4b, 0x9c, 0x6d, 0xcc, 0xea, 0xd4, 0x96, 0x83, 0x08, 0xb7, +0x61, 0x7e, 0x14, 0xfc, 0x7a, 0x89, 0x75, 0xbe, 0x49, 0x29, 0xc7, 0x41, 0x52, 0xc6, 0xc0, 0x0e, +0xb4, 0x2e, 0xae, 0x6c, 0xfa, 0x4c, 0xd5, 0x2c, 0x5a, 0x96, 0xb9, 0xec, 0x21, 0xf8, 0x1e, 0x07, +0x57, 0x7b, 0x14, 0xfb, 0xb0, 0x6f, 0x0f, 0x5a, 0x9b, 0x19, 0x15, 0x16, 0xf2, 0x05, 0x5d, 0xb0, +0x34, 0x84, 0x4b, 0xdc, 0x06, 0xb5, 0xb4, 0xaf, 0x28, 0x4f, 0x63, 0xd8, 0xf0, 0x4b, 0xac, 0x76, +0xb5, 0x1f, 0x71, 0xed, 0x7f, 0x48, 0xee, 0xdc, 0x14, 0xe1, 0x0f, 0x73, 0x11, 0x40, 0x1e, 0x24, +0x78, 0x0d, 0x9e, 0x2d, 0x6c, 0x04, 0x61, 0x1b, 0x43, 0xe7, 0x4f, 0x68, 0x7c, 0xeb, 0x4e, 0xae, +0xfa, 0x0f, 0xf9, 0xe4, 0x66, 0x66, 0x77, 0x82, 0x13, 0x25, 0x88, 0xcc, 0x7c, 0xb2, 0x77, 0x1b, +0xdc, 0x82, 0xf7, 0x88, 0xb7, 0x74, 0xea, 0x37, 0xad, 0x65, 0xb3, 0xc4, 0xd0, 0x4c, 0x5c, 0xf1, +0x7a, 0x07, 0x15, 0x83, 0xdc, 0x2f, 0x26, 0xb4, 0xc9, 0x63, 0x29, 0xcb, 0x34, 0x39, 0x78, 0xd9, +0x4b, 0x03, 0x79, 0x7f, 0x9a, 0xeb, 0x65, 0x51, 0x25, 0xfe, 0x94, 0x7b, 0x8f, 0xf3, 0x47, 0x9e, +0x03, 0xf9, 0xfc, 0x8e, 0x40, 0xd5, 0x18, 0xf5, 0xe2, 0xbc, 0x92, 0xf7, 0xc8, 0x58, 0x4e, 0x03, +0x6c, 0x02, 0xdf, 0xeb, 0x94, 0x9e, 0xf3, 0xe0, 0x46, 0x88, 0xde, 0x38, 0x59, 0x00, 0x50, 0x63, +0x1a, 0xec, 0x0c, 0x74, 0x26, 0x45, 0xfc, 0x0e, 0x04, 0x11, 0xea, 0x7c, 0xd9, 0x8a, 0x42, 0xea, +0x23, 0x4a, 0x51, 0x99, 0xa9, 0x81, 0xcf, 0x49, 0xef, 0x4f, 0x25, 0xf8, 0xe7, 0xc8, 0x1a, 0x95, +0x3e, 0xed, 0x62, 0x97, 0x9d, 0xfa, 0x20, 0x4b, 0x64, 0xfa, 0x9b, 0xf8, 0x8c, 0x4c, 0x1a, 0x97, +0x79, 0x12, 0xbb, 0x8c, 0x72, 0x9b, 0x35, 0x15, 0x4a, 0x8f, 0x76, 0x29, 0x80, 0xdd, 0x52, 0x7c, +0x86, 0x9b, 0x27, 0x23, 0xfb, 0xa2, 0x59, 0xb1, 0xcd, 0xea, 0x76, 0xcc, 0xcc, 0x55, 0xe9, 0x01, +0x7d, 0x3a, 0xc7, 0xd6, 0xa2, 0xa6, 0x82, 0xeb, 0xa6, 0x09, 0x24, 0x2d, 0x99, 0xf5, 0x99, 0xd9, +0x0c, 0x5c, 0x42, 0x04, 0x1f, 0xdd, 0xb1, 0x24, 0x37, 0x3b, 0x9d, 0xeb, 0xff, 0xa8, 0x08, 0xd8, +0xbe, 0xb0, 0x50, 0x86, 0x51, 0xe8, 0x69, 0xcf, 0x4f, 0x14, 0xbd, 0x16, 0x21, 0x61, 0x81, 0x94, +0xed, 0x7d, 0x25, 0x35, 0xb9, 0x73, 0x5b, 0xf3, 0xef, 0x4e, 0x13, 0xcb, 0x49, 0x62, 0xc0, 0xee, +0x39, 0xea, 0xbb, 0xa2, 0x99, 0xd6, 0xd8, 0xb3, 0xfd, 0x02, 0x16, 0xbc, 0xa0, 0xdd, 0xaa, 0x4f, +0xfa, 0xf6, 0xf6, 0x93, 0xfb, 0x19, 0xb7, 0x1b, 0x2e, 0x78, 0x83, 0xb8, 0xfa, 0x4a, 0x58, 0x34, +0x7d, 0xf0, 0x8d, 0xc6, 0x7b, 0x4a, 0x67, 0x7b, 0x9d, 0xd5, 0x11, 0xec, 0x4b, 0xa4, 0xe9, 0x0c, +0x6d, 0x11, 0x39, 0x3d, 0xa1, 0xf9, 0x86, 0xf5, 0x24, 0x8f, 0x7b, 0x36, 0xdb, 0xe9, 0xbf, 0x20, +0x78, 0x58, 0x16, 0xd2, 0xf0, 0x5a, 0x6e, 0xda, 0x08, 0x3f, 0xc3, 0x30, 0x2c, 0xb9, 0xd3, 0x19, +0xea, 0x0e, 0x54, 0x6d, 0x0d, 0xa6, 0x81, 0x9c, 0x14, 0xb6, 0xca, 0x0c, 0x02, 0xe8, 0x6d, 0xff, +0x4f, 0x75, 0xdd, 0x73, 0x67, 0xe0, 0x45, 0x58, 0x69, 0x17, 0x74, 0xa1, 0xeb, 0xb3, 0xfd, 0x98, +0x68, 0x34, 0x98, 0x3d, 0x4c, 0x11, 0x40, 0x2e, 0x96, 0xc6, 0x36, 0x6e, 0x6a, 0x0d, 0x7b, 0xa2, +0xc5, 0xcc, 0x98, 0xc4, 0x16, 0x25, 0x43, 0x11, 0x94, 0x5e, 0x19, 0x43, 0x64, 0x27, 0xdf, 0x4d, +0x19, 0x5b, 0xd9, 0x8a, 0x57, 0xad, 0x46, 0x0d, 0x36, 0xfd, 0x5d, 0x4e, 0x57, 0x0c, 0x40, 0xc5, +0x8f, 0x38, 0x21, 0x64, 0xcc, 0x8f, 0x67, 0x70, 0xff, 0xb0, 0x98, 0x30, 0xa0, 0xd9, 0xab, 0xbb, +0x2d, 0x58, 0xa2, 0x57, 0xd2, 0xc9, 0x9c, 0xdd, 0xae, 0x63, 0x14, 0x44, 0x31, 0xd4, 0x23, 0xf5, +0xc0, 0x39, 0xad, 0xad, 0xd0, 0x04, 0xdd, 0xd1, 0xd0, 0x12, 0xc0, 0x3f, 0x7d, 0x51, 0x03, 0x4b, +0x1d, 0xea, 0x3b, 0x0e, 0x51, 0x29, 0xda, 0xa7, 0x03, 0x7a, 0xf0, 0x20, 0x0e, 0x37, 0x63, 0x1b, +0xdf, 0xc9, 0xde, 0x96, 0x54, 0xa0, 0xdd, 0xe9, 0x9a, 0x36, 0x17, 0x13, 0xe2, 0x81, 0x1e, 0x8c, +0x6c, 0xb6, 0x8d, 0xda, 0x4c, 0x65, 0x62, 0x88, 0x75, 0x83, 0x8c, 0x0a, 0x43, 0x4b, 0xd8, 0x03, +0xce, 0xe9, 0xfd, 0x8a, 0x14, 0xa5, 0x5b, 0x5c, 0x29, 0x36, 0x02, 0xe9, 0xa2, 0x01, 0x70, 0xff, +0x8b, 0xf6, 0xaf, 0x21, 0x47, 0x7d, 0x4c, 0x27, 0x16, 0x69, 0xee, 0xfb, 0xd1, 0xcf, 0x51, 0xda, +0xed, 0x49, 0x89, 0xdc, 0x06, 0x59, 0x87, 0x54, 0xab, 0x3f, 0x9a, 0x23, 0x69, 0xdb, 0x99, 0xb3, +0x69, 0xd1, 0x83, 0xeb, 0x06, 0xb4, 0x88, 0x16, 0x25, 0x7e, 0x37, 0x58, 0xca, 0x31, 0x64, 0xa5, +0x73, 0x81, 0x6b, 0x6f, 0xef, 0xb8, 0x61, 0x48, 0xba, 0x49, 0xbb, 0xa9, 0x90, 0xf2, 0x8f, 0x93, +0x43, 0x47, 0x67, 0x1d, 0x2f, 0xc6, 0xc9, 0x4f, 0x09, 0xa2, 0xa6, 0x9e, 0x66, 0x7b, 0x19, 0x90, +0xf3, 0xb9, 0xd7, 0x20, 0x3d, 0xa2, 0x22, 0x0f, 0xc4, 0xe3, 0x5a, 0xec, 0xa3, 0xe5, 0x5d, 0x4d, +0xf6, 0x2a, 0x9d, 0x9d, 0x58, 0x12, 0x29, 0x07, 0x10, 0xf9, 0x35, 0x19, 0xa0, 0x80, 0xaa, 0x6a, +0x3b, 0x21, 0x1d, 0x1f, 0x73, 0x90, 0xd3, 0xd6, 0x6e, 0x41, 0xdb, 0xf0, 0x46, 0x94, 0xa4, 0xdf, +0x94, 0xd6, 0x66, 0x81, 0x78, 0x91, 0x82, 0xa7, 0x2c, 0x7c, 0x31, 0x4c, 0x80, 0xf7, 0x80, 0xa6, +0x4e, 0x8f, 0x00, 0xba, 0x42, 0x11, 0x37, 0x1f, 0x1b, 0x3c, 0xb2, 0xbd, 0xc6, 0xe0, 0xe6, 0x90, +0x42, 0xad, 0x12, 0xe9, 0x9d, 0x76, 0x29, 0x77, 0x02, 0x03, 0xa9, 0x20, 0x4d, 0xb0, 0x77, 0xc2, +0x46, 0x78, 0xbd, 0x5b, 0xca, 0x2d, 0x9b, 0x44, 0xec, 0xef, 0xf1, 0xc8, 0x19, 0xe1, 0xdb, 0xa2, +0x9a, 0x18, 0x23, 0x91, 0x6a, 0xd1, 0xb2, 0x48, 0xd8, 0xf0, 0x17, 0xf7, 0x4f, 0xcd, 0xe1, 0x3a, +0xea, 0x56, 0x19, 0x8d, 0x25, 0x69, 0xa0, 0x0b, 0x62, 0x11, 0x46, 0x71, 0xbd, 0x3b, 0x89, 0xf8, +0x1f, 0x89, 0x3b, 0x7a, 0x97, 0xef, 0x35, 0x63, 0xe2, 0x76, 0x1e, 0x8e, 0x11, 0xcd, 0x18, 0xf0, +0xb1, 0xd9, 0xcb, 0x3f, 0x84, 0xd5, 0xeb, 0x5e, 0xa4, 0x31, 0x18, 0x55, 0xe4, 0x07, 0x10, 0x54, +0x0c, 0x85, 0x4e, 0x1b, 0x2e, 0xcd, 0xfa, 0x99, 0xa1, 0x5c, 0xd2, 0x59, 0x3a, 0x45, 0x03, 0x40, +0xfb, 0x9e, 0x82, 0x9f, 0x4b, 0x55, 0x8c, 0x02, 0x7c, 0x15, 0x6e, 0xdf, 0xd0, 0x55, 0x35, 0xfa, +0xa8, 0x52, 0x96, 0x29, 0xaa, 0x1c, 0xd4, 0xe3, 0x71, 0xf0, 0x50, 0x67, 0x25, 0xf8, 0x05, 0x4a, +0x92, 0xfb, 0xae, 0xf6, 0x5c, 0x29, 0xfe, 0xff, 0x66, 0x34, 0xe7, 0xb8, 0x37, 0x32, 0x8b, 0xb8, +0xd2, 0x3d, 0xff, 0x85, 0xe3, 0xb1, 0x67, 0x1b, 0xc5, 0xb6, 0x22, 0xcc, 0x15, 0x6f, 0x10, 0x7e, +0x64, 0x0e, 0x53, 0x41, 0xbd, 0x45, 0x03, 0xad, 0xed, 0xed, 0xa5, 0x66, 0xb3, 0xef, 0xe7, 0x83, +0x3a, 0x85, 0xf9, 0xb6, 0x92, 0xe8, 0xdc, 0x81, 0x2f, 0x8c, 0x4d, 0x7e, 0x9d, 0x63, 0x9a, 0x5a, +0xde, 0x85, 0x51, 0xd9, 0xc1, 0x5a, 0x1c, 0x1a, 0x9d, 0x74, 0x2d, 0x92, 0xa8, 0x23, 0xad, 0x8e, +0x7d, 0x0d, 0x52, 0x3e, 0xf7, 0x46, 0x4e, 0xbe, 0x6a, 0x9b, 0xa0, 0x87, 0x44, 0xb5, 0x9a, 0xd8, +0x77, 0x6d, 0x6f, 0xd8, 0x16, 0x7b, 0x9a, 0x0d, 0xf1, 0x1b, 0x08, 0x60, 0xd8, 0xbe, 0xbb, 0x66, +0xb8, 0xc1, 0xcc, 0x76, 0x97, 0x15, 0xd2, 0xab, 0x26, 0xdd, 0xff, 0xc4, 0x30, 0xc6, 0xc0, 0x7b, +0x70, 0xfe, 0x68, 0x97, 0x2d, 0xc1, 0xb1, 0xe5, 0xc6, 0xc6, 0xbb, 0x42, 0x10, 0xf7, 0x30, 0xe4, +0x79, 0x1a, 0x1a, 0xfe, 0xd5, 0x9a, 0xc2, 0x6e, 0xaf, 0x62, 0x11, 0xb8, 0x0a, 0xc9, 0x91, 0xb8, +0xb2, 0x90, 0x2d, 0x3a, 0xbc, 0xc7, 0x7e, 0x46, 0xf0, 0xd0, 0x73, 0xe5, 0x4c, 0xf4, 0x01, 0x91, +0xa5, 0x39, 0x3c, 0x22, 0x6f, 0x60, 0xf7, 0xfc, 0xf4, 0xe1, 0xc7, 0x60, 0xdb, 0x1e, 0x9f, 0x4a, +0xb8, 0x8d, 0xf8, 0x38, 0xa4, 0x13, 0x82, 0xc0, 0x2c, 0x52, 0xc0, 0x58, 0xf7, 0x68, 0x21, 0x9c, +0x07, 0x04, 0x8b, 0x66, 0xff, 0x28, 0x14, 0xc0, 0x63, 0x33, 0x33, 0xcd, 0xd5, 0x15, 0x12, 0x73, +0xb0, 0x33, 0x37, 0x38, 0xd8, 0xcf, 0x4e, 0xe6, 0xda, 0xf4, 0x03, 0xb4, 0x48, 0xd0, 0xa3, 0x7a, +0x83, 0xcb, 0x3a, 0xed, 0xd7, 0x32, 0xee, 0x08, 0xa1, 0xab, 0x50, 0xf3, 0x8e, 0x43, 0x24, 0x6c, +0xcd, 0xfa, 0xe8, 0xe9, 0x38, 0x8f, 0x44, 0xf4, 0x02, 0x17, 0x36, 0x9c, 0x9b, 0x68, 0x46, 0x6c, +0x36, 0xaa, 0xb6, 0x7d, 0xf5, 0xfd, 0x72, 0x8b, 0x9b, 0x32, 0xf7, 0x00, 0xd3, 0x69, 0x28, 0x76, +0x66, 0xfe, 0xc8, 0x5b, 0x8f, 0xb5, 0x71, 0x82, 0xad, 0xea, 0x8a, 0x79, 0x9c, 0x92, 0x88, 0x03, +0x05, 0xc8, 0x08, 0xa5, 0x70, 0x0c, 0xbc, 0x72, 0xa1, 0xdf, 0x24, 0xc1, 0x16, 0xea, 0x2d, 0xf7, +0xf4, 0xcd, 0xb0, 0x79, 0x44, 0xd9, 0xfa, 0x0b, 0x00, 0x0e, 0xf0, 0x18, 0xde, 0x57, 0x51, 0xa9, +0x24, 0x0d, 0xb4, 0x1b, 0x1f, 0x93, 0x2b, 0x6e, 0x7f, 0xa9, 0x63, 0x88, 0x9e, 0xe3, 0x06, 0x3e, +0x1a, 0xb2, 0x1d, 0x0a, 0x2c, 0xec, 0xd5, 0xc3, 0x08, 0xc4, 0x0e, 0x23, 0x4d, 0x22, 0x0e, 0xb4, +0x78, 0x39, 0x25, 0xa2, 0x1e, 0x0f, 0x41, 0xa8, 0xa0, 0x1e, 0x6d, 0x2b, 0x49, 0x56, 0xb3, 0x92, +0xd9, 0xae, 0x01, 0x91, 0x31, 0x61, 0xb9, 0x71, 0x9a, 0x2e, 0x23, 0x28, 0x83, 0x90, 0xf1, 0xca, +0xfd, 0x31, 0x74, 0x4c, 0x76, 0x61, 0xe0, 0x5e, 0xf4, 0x94, 0xc4, 0x84, 0x21, 0xec, 0xad, 0x4e, +0x82, 0xa4, 0x4f, 0xaa, 0x8d, 0xa9, 0x66, 0x02, 0x4c, 0x85, 0x97, 0x5b, 0x88, 0x1d, 0xb1, 0x1e, +0x48, 0xb0, 0x07, 0xf7, 0x42, 0x3d, 0x30, 0x26, 0x5d, 0xfd, 0xf0, 0xab, 0xae, 0xd3, 0x0f, 0xed, +0x9b, 0x3a, 0xfa, 0xa9, 0x0f, 0xd5, 0xc1, 0xd5, 0xc3, 0xdd, 0x2c, 0x96, 0xf8, 0x63, 0x42, 0x2f, +0xcb, 0x58, 0x48, 0xf2, 0x33, 0xe0, 0x71, 0x92, 0xba, 0x4b, 0x5c, 0xbc, 0xf2, 0xa9, 0x9d, 0xb8, +0x55, 0x6b, 0xe8, 0x96, 0x62, 0xa8, 0x65, 0xb0, 0x77, 0x1f, 0xbb, 0xc8, 0xb2, 0xe3, 0x1b, 0xed, +0x17, 0x59, 0x7e, 0xb0, 0xe5, 0x5e, 0xd4, 0x03, 0x7b, 0xfd, 0xd0, 0x99, 0x29, 0xf0, 0xaf, 0x91, +0x3d, 0x46, 0xbd, 0x30, 0xad, 0xa4, 0xea, 0xac, 0x70, 0x05, 0xec, 0xd7, 0xfa, 0x71, 0x5c, 0x1b, +0x91, 0x6e, 0xdb, 0xb4, 0xf8, 0x45, 0xba, 0x47, 0xb7, 0x77, 0x59, 0x6a, 0xc8, 0x90, 0x5c, 0xd5, +0x32, 0x0e, 0xaf, 0x95, 0xf1, 0xc8, 0x39, 0x5d, 0xc6, 0x98, 0x8b, 0x4d, 0x58, 0x4d, 0xbe, 0x35, +0xe1, 0xad, 0xd3, 0x9b, 0x22, 0x48, 0x88, 0x7e, 0xb8, 0x31, 0x7c, 0x55, 0x88, 0x83, 0x3d, 0x22, +0xb6, 0xd6, 0x9a, 0x4d, 0x97, 0x29, 0xce, 0x70, 0xf4, 0x60, 0x68, 0x1c, 0x88, 0xbd, 0x44, 0x78, +0xa2, 0x7a, 0xa5, 0xea, 0xa6, 0x64, 0x8a, 0x7b, 0x59, 0x03, 0x18, 0x5b, 0x29, 0xdd, 0x9e, 0x30, +0x38, 0x2a, 0x0f, 0x0b, 0x6a, 0xe1, 0x3a, 0xa1, 0xc2, 0xa9, 0x35, 0x55, 0x44, 0xca, 0x2c, 0x17, +0x0d, 0x0f, 0x10, 0x0c, 0x1f, 0x06, 0xd4, 0x32, 0xc4, 0x68, 0xc7, 0x2a, 0xb5, 0x51, 0x19, 0x48, +0x3b, 0x30, 0x38, 0x64, 0xfa, 0x14, 0x60, 0x8d, 0x91, 0xc0, 0x7b, 0xf7, 0xf7, 0x14, 0x7e, 0x0d, +0x1e, 0x3f, 0xa8, 0x53, 0x1e, 0x49, 0x94, 0xc1, 0x31, 0x9c, 0x0a, 0x16, 0xdc, 0x59, 0x0b, 0xad, +0x6c, 0xfc, 0xf7, 0x90, 0xe2, 0xaa, 0x3e, 0x21, 0x7e, 0x65, 0x10, 0x48, 0x54, 0xb4, 0xa2, 0xfb, +0x3b, 0x52, 0xe9, 0xad, 0xc0, 0xbb, 0xae, 0x81, 0x75, 0x34, 0x69, 0x1d, 0x94, 0xb6, 0x61, 0xf7, +0x59, 0x24, 0xaa, 0x87, 0x08, 0xc2, 0x90, 0x6d, 0xda, 0x4d, 0xc5, 0xd7, 0x0e, 0x34, 0xaf, 0x27, +0x21, 0x9d, 0x62, 0x67, 0x00, 0x73, 0x23, 0xbe, 0xbd, 0x06, 0x60, 0x13, 0x3d, 0x9c, 0x9a, 0x4f, +0x93, 0xd5, 0x0b, 0x91, 0xdc, 0x2e, 0x08, 0xb6, 0x1e, 0x17, 0xcd, 0x1f, 0x0f, 0x1e, 0xfd, 0x8e, +0x7d, 0xcd, 0x68, 0x0a, 0xf0, 0x32, 0xd4, 0xd8, 0xf4, 0x5f, 0x81, 0x0f, 0x8f, 0xc5, 0x0d, 0x4e, +0xdf, 0x67, 0xba, 0xfe, 0xe8, 0x25, 0xe0, 0xb1, 0xde, 0x6d, 0xe7, 0x47, 0xf9, 0x22, 0x4a, 0x48, +0xed, 0xb2, 0x6a, 0x59, 0xf9, 0x76, 0xcc, 0x39, 0xc4, 0x29, 0x4d, 0x78, 0xdc, 0xa0, 0x15, 0x9a, +0x5d, 0xe2, 0x5e, 0xfb, 0x6c, 0xf8, 0xc2, 0x5e, 0x99, 0x5a, 0x55, 0x8a, 0xda, 0xfc, 0x62, 0x48, +0x36, 0x94, 0x1c, 0xbd, 0x36, 0x4c, 0xf7, 0xc8, 0x9b, 0x23, 0x29, 0x43, 0xf5, 0x2f, 0xfe, 0x12, +0xd1, 0x91, 0x28, 0x13, 0x80, 0x31, 0x37, 0x52, 0x39, 0x49, 0x5b, 0xb5, 0x33, 0x81, 0xc5, 0x5b, +0xc5, 0xb7, 0xa5, 0x9c, 0x24, 0xfd, 0x1e, 0x2b, 0xa5, 0x6a, 0xf4, 0x48, 0x36, 0x2d, 0xc0, 0x5c, +0xa1, 0xb3, 0x9e, 0x44, 0xe7, 0x9c, 0x3f, 0x59, 0x73, 0x43, 0x7c, 0x66, 0x28, 0x95, 0xc6, 0xc1, +0xc0, 0x60, 0xf7, 0xdd, 0xf1, 0xd1, 0x8f, 0x9f, 0x3b, 0x03, 0xa4, 0x2c, 0x1d, 0x75, 0x37, 0x06, +0x7e, 0x4d, 0x09, 0x76, 0x7f, 0x8f, 0xf7, 0x98, 0x47, 0x4c, 0x4a, 0x4b, 0xde, 0x05, 0x53, 0xd6, +0x98, 0x98, 0xee, 0x22, 0x30, 0x10, 0x48, 0x88, 0xe3, 0x6a, 0xfe, 0xa1, 0x50, 0xa0, 0x45, 0x09, +0x1e, 0x29, 0xa6, 0x6b, 0x74, 0x52, 0x9a, 0x5f, 0xf2, 0x5d, 0x00, 0x33, 0x38, 0x28, 0x05, 0x17, +0x38, 0x41, 0x78, 0xb9, 0x0c, 0x73, 0xcb, 0xe7, 0x87, 0x37, 0x77, 0x59, 0xf4, 0x95, 0x1f, 0x43, +0x82, 0x91, 0xc4, 0xe7, 0x81, 0xc1, 0xb9, 0xd4, 0xb4, 0x62, 0xc6, 0x7b, 0x7e, 0x6c, 0xd2, 0x44, +0xc1, 0xfb, 0xc9, 0x1d, 0x0f, 0x2e, 0xa2, 0xa6, 0xc4, 0x61, 0xa4, 0x6b, 0x8a, 0xc6, 0xbd, 0x60, +0xec, 0x6e, 0x6c, 0x50, 0xc1, 0x06, 0xb9, 0x2c, 0xd8, 0xe8, 0x73, 0x40, 0x02, 0xad, 0x0e, 0x6a, +0xe5, 0xca, 0x68, 0x3a, 0xb6, 0x56, 0xac, 0x9c, 0x28, 0xde, 0x35, 0x5f, 0xac, 0x1a, 0x4f, 0xd6, +0x2b, 0x1a, 0x5d, 0xf9, 0x77, 0x2e, 0xf3, 0x5d, 0xfd, 0x06, 0x0d, 0x62, 0xfd, 0x7e, 0x01, 0x13, +0x82, 0xaa, 0x46, 0x17, 0x65, 0x36, 0xdc, 0xee, 0xd9, 0xc7, 0x92, 0x6e, 0xe2, 0x22, 0x94, 0x4f, +0xdb, 0xad, 0x47, 0x4b, 0x65, 0x3e, 0xce, 0xe4, 0x88, 0x03, 0xf9, 0xcb, 0x50, 0x94, 0x58, 0xbd, +0x38, 0xc4, 0x82, 0xf7, 0xc0, 0x61, 0x06, 0x00, 0x60, 0x92, 0xde, 0x6c, 0xed, 0x8c, 0x29, 0x31, +0x80, 0x95, 0x5e, 0xcf, 0x2e, 0x70, 0x37, 0x0c, 0x9d, 0x91, 0x1b, 0xf0, 0xfa, 0x60, 0x3c, 0xc0, +0x32, 0x4a, 0xe6, 0x87, 0x98, 0x3a, 0xea, 0xe6, 0x7d, 0x8b, 0xac, 0xae, 0xb4, 0x86, 0xd3, 0x65, +0x40, 0x71, 0x6e, 0xe6, 0x02, 0x62, 0xea, 0x57, 0x38, 0xc9, 0x68, 0x7e, 0x7b, 0xfb, 0x9b, 0x21, +0xf9, 0x77, 0xca, 0x0c, 0xde, 0xf5, 0x06, 0x5b, 0x7e, 0x17, 0xed, 0x2f, 0x60, 0x39, 0x14, 0x86, +0x8a, 0xec, 0xc0, 0xd9, 0x5f, 0x01, 0xc8, 0xd0, 0x69, 0x35, 0x76, 0x2f, 0x29, 0xa7, 0xe8, 0x1d, +0xe8, 0x50, 0xdb, 0x7a, 0xbf, 0x35, 0x30, 0xc7, 0x1b, 0xa0, 0x70, 0x76, 0xee, 0x4e, 0x96, 0xfd, +0x6f, 0xba, 0x8d, 0xf3, 0x4c, 0x7e, 0x54, 0x5c, 0x5c, 0xbc, 0x09, 0x9c, 0x7f, 0x53, 0x5b, 0x4a, +0xe7, 0xf0, 0x89, 0x49, 0xf4, 0x7a, 0x79, 0x03, 0xc9, 0x62, 0x02, 0x1f, 0x54, 0xa0, 0x13, 0xf6, +0xb6, 0x5c, 0xa1, 0x94, 0xe7, 0x70, 0x82, 0x34, 0x6a, 0xbd, 0x62, 0x24, 0x96, 0x2e, 0x5f, 0xf5, +0x1d, 0x05, 0x0b, 0x01, 0x4d, 0xbf, 0xe9, 0xa7, 0x31, 0x59, 0x99, 0x29, 0xaf, 0x9c, 0x98, 0x20, +0xcc, 0xae, 0xfe, 0x9c, 0x51, 0xf5, 0x65, 0x8b, 0x84, 0x90, 0x01, 0x1f, 0x8b, 0x9b, 0x75, 0x02, +0x17, 0x6a, 0x6a, 0x07, 0x1a, 0xd4, 0x52, 0x4d, 0xd9, 0x5f, 0x95, 0x5f, 0xe5, 0x40, 0x80, 0x9a, +0xa7, 0x12, 0x23, 0x32, 0x73, 0x49, 0x10, 0xcb, 0xe4, 0x47, 0xb9, 0x4f, 0x81, 0x21, 0x86, 0xc2, +0x0f, 0x32, 0xeb, 0xb6, 0x12, 0x8d, 0x05, 0x7c, 0x6c, 0xb4, 0x9f, 0x41, 0x1a, 0x9b, 0xba, 0x04, +0x1d, 0x9e, 0xfe, 0x6a, 0x42, 0x6a, 0xfd, 0x28, 0xc0, 0xb7, 0x67, 0x2e, 0x47, 0xbe, 0x82, 0x19, +0x1f, 0x2a, 0xcb, 0xd3, 0xe1, 0xde, 0xc2, 0x9e, 0x53, 0xab, 0xb6, 0x8c, 0x57, 0x4b, 0x8a, 0xcd, +0x81, 0xe2, 0x52, 0x3a, 0xed, 0x0d, 0x99, 0x89, 0xbb, 0x01, 0x40, 0xbd, 0xc6, 0x14, 0x09, 0xb5, +0xef, 0x6e, 0xa6, 0xab, 0xc7, 0x1d, 0x8e, 0x88, 0x8c, 0x36, 0x99, 0x0b, 0x68, 0x76, 0xd0, 0x0f, +0x0f, 0x0b, 0x9e, 0x16, 0x53, 0xe1, 0x59, 0xf7, 0xc0, 0x02, 0xd1, 0x00, 0xc9, 0xb1, 0xf6, 0xe7, +0x7a, 0xb2, 0x50, 0x9e, 0x4b, 0x4f, 0x63, 0x89, 0x29, 0xb3, 0xd0, 0x1d, 0x06, 0xee, 0xdd, 0xe7, +0x74, 0x71, 0x58, 0x46, 0xac, 0x85, 0x5c, 0xbc, 0x56, 0x6e, 0xb8, 0x3f, 0x07, 0x41, 0x4f, 0x7d, +0xe8, 0x5a, 0xee, 0x98, 0xff, 0xf2, 0xdb, 0xef, 0xa5, 0xf0, 0xbb, 0x3e, 0xf2, 0x9e, 0x0c, 0x53, +0x92, 0x32, 0xb1, 0xab, 0x0d, 0xbe, 0x0e, 0xe9, 0xf6, 0x54, 0xa8, 0xd6, 0x8b, 0x29, 0xd5, 0x80, +0x59, 0x12, 0xd3, 0x63, 0x7c, 0x85, 0xee, 0xc2, 0x7b, 0xb4, 0xbc, 0xa0, 0xab, 0x10, 0x49, 0x99, +0x80, 0x3a, 0x66, 0xb6, 0x3f, 0xa6, 0x10, 0x8e, 0x0d, 0xf7, 0xae, 0xe6, 0x42, 0xa4, 0xe4, 0x29, +0xda, 0xa5, 0xd0, 0x52, 0x3d, 0xfd, 0xae, 0xad, 0xe5, 0x37, 0x67, 0xd3, 0x21, 0xbd, 0x3c, 0x9d, +0xdd, 0x5a, 0x91, 0xe7, 0xa3, 0xfb, 0xc0, 0x20, 0xab, 0x07, 0x6e, 0x77, 0xd7, 0x8d, 0xa9, 0x35, +0x1b, 0x73, 0xea, 0x2f, 0x09, 0x0a, 0x54, 0xbc, 0x38, 0x83, 0x49, 0xed, 0x91, 0x37, 0x7b, 0xc6, +0xe0, 0xc8, 0xf6, 0xc5, 0x83, 0x37, 0x4f, 0x35, 0xc3, 0xf2, 0xef, 0x4c, 0x65, 0x25, 0xfb, 0x5e, +0x31, 0x41, 0x42, 0xcd, 0x6d, 0x3b, 0xb1, 0xc3, 0xca, 0xf5, 0xa3, 0x98, 0x5e, 0x0d, 0x18, 0x41, +0x4e, 0x7a, 0xd3, 0x83, 0x21, 0xd5, 0xe8, 0xbb, 0x39, 0x22, 0x96, 0x5c, 0x22, 0xf5, 0x80, 0xdc, +0xe9, 0x63, 0x5b, 0x62, 0xb5, 0xf9, 0x38, 0x05, 0xfd, 0x59, 0x0a, 0x87, 0x7b, 0xca, 0x40, 0x22, +0x13, 0xd2, 0xbb, 0x65, 0xe8, 0xe0, 0x04, 0x56, 0x06, 0x53, 0x23, 0xf8, 0x5c, 0x5c, 0x6c, 0xe6, +0x7f, 0xb0, 0x3b, 0x83, 0xc6, 0x63, 0xc6, 0x5e, 0x06, 0x54, 0x5a, 0x51, 0xed, 0x15, 0xd6, 0xe4, +0x0a, 0x07, 0xf6, 0xc4, 0x5b, 0xf4, 0xfb, 0xc1, 0xa6, 0x3f, 0x5e, 0x78, 0xbf, 0x52, 0x02, 0x79, +0x30, 0xa2, 0x45, 0xac, 0xa0, 0x13, 0xf2, 0xdd, 0x54, 0x8d, 0x27, 0x2c, 0x61, 0x6d, 0x11, 0x0b, +0x08, 0x1f, 0x0f, 0xd5, 0x98, 0x06, 0x4e, 0xfc, 0x3f, 0x78, 0xe4, 0x2a, 0x9d, 0x62, 0xc0, 0xdd, +0xa2, 0xd6, 0xb5, 0xe1, 0x6d, 0x06, 0x02, 0x0a, 0xb6, 0x5a, 0xaa, 0xdb, 0xc2, 0x73, 0xaa, 0x89, +0xc6, 0xa1, 0x62, 0xac, 0x23, 0x50, 0x7b, 0x05, 0x87, 0xa9, 0xca, 0x89, 0xef, 0xc7, 0xbf, 0xda, +0x8c, 0x20, 0x0e, 0x96, 0xa4, 0xa2, 0x5c, 0x98, 0xbb, 0x73, 0xda, 0x43, 0x60, 0x09, 0xf4, 0x0b, +0x51, 0xa8, 0xff, 0xb8, 0x43, 0x74, 0xfe, 0x2a, 0x45, 0x96, 0x95, 0x59, 0x6d, 0xd3, 0x88, 0x73, +0x4f, 0x60, 0x5d, 0xb0, 0xa3, 0xc2, 0x34, 0x0d, 0x26, 0x35, 0x59, 0xe7, 0xdd, 0xc6, 0xf2, 0x9a, +0x3b, 0x78, 0x96, 0xad, 0x7c, 0x1b, 0x9d, 0xc3, 0x2b, 0xaf, 0xc8, 0x5e, 0xd1, 0xe3, 0x29, 0x92, +0x1d, 0xed, 0xd5, 0x80, 0x8e, 0x17, 0x35, 0x6b, 0x38, 0xf0, 0x04, 0x54, 0x85, 0xa2, 0xf9, 0x95, +0x08, 0x71, 0x55, 0x48, 0xca, 0xd9, 0x83, 0xb3, 0xde, 0x93, 0x0a, 0xb2, 0x5d, 0x75, 0xee, 0x40, +0x4b, 0xe5, 0x82, 0x0e, 0x53, 0x44, 0x6a, 0x57, 0x28, 0x34, 0xc6, 0x51, 0x03, 0x01, 0x4e, 0x2a, +0x4b, 0xd8, 0xb7, 0x6b, 0x8b, 0xb7, 0xbe, 0x99, 0xaf, 0x11, 0xe7, 0xaf, 0xa4, 0x20, 0xa0, 0xaa, +0x37, 0x88, 0x01, 0x03, 0xb5, 0x23, 0xda, 0x10, 0xc6, 0x39, 0x36, 0xef, 0x13, 0xca, 0xf8, 0x9a, +0x04, 0xdd, 0x99, 0x83, 0x0d, 0x53, 0x71, 0xda, 0x49, 0xe1, 0xc1, 0xf3, 0x16, 0x99, 0xec, 0x78, +0x65, 0xf2, 0x78, 0x3f, 0x64, 0xaa, 0x1a, 0x55, 0x0b, 0xbc, 0xf9, 0xbf, 0xe4, 0x3a, 0x38, 0x22, +0x3b, 0xb8, 0x02, 0xe8, 0xcc, 0x43, 0xd1, 0xd4, 0x29, 0x17, 0xa3, 0x8c, 0xf9, 0x5a, 0xb5, 0xcd, +0x6c, 0xa6, 0x10, 0x15, 0xd8, 0x0f, 0xb9, 0xdd, 0xf3, 0xb3, 0xa5, 0x26, 0x47, 0xad, 0xe3, 0xb8, +0xc5, 0x5e, 0x97, 0x88, 0x98, 0x19, 0x66, 0x70, 0x77, 0xa3, 0x7b, 0xe0, 0xe5, 0xa6, 0x4a, 0xba, +0xaa, 0xe5, 0xbf, 0xae, 0xd7, 0x0a, 0x04, 0xad, 0x6e, 0xd2, 0x7e, 0xab, 0xde, 0xac, 0x24, 0x7f, +0x16, 0x4e, 0x0a, 0x6a, 0x9f, 0xc6, 0x2c, 0xe7, 0x1e, 0x48, 0x34, 0xa6, 0x75, 0x10, 0x52, 0x66, +0x4a, 0xfa, 0x41, 0x3e, 0x73, 0xb6, 0x00, 0x7c, 0xf3, 0xc7, 0x9c, 0xe6, 0xc6, 0x2f, 0xec, 0xbe, +0xa7, 0xc2, 0x61, 0xdd, 0x29, 0x25, 0x20, 0xfe, 0xe3, 0xcc, 0xde, 0xa1, 0x65, 0x92, 0x37, 0xaa, +0xa4, 0xf9, 0x1a, 0xe5, 0x95, 0x36, 0x32, 0xe8, 0xfd, 0xc2, 0x7b, 0xb6, 0x14, 0x8f, 0x4c, 0x19, +0xad, 0x54, 0xad, 0xf5, 0xcf, 0xa0, 0x1c, 0xb1, 0x92, 0xa7, 0x57, 0x84, 0x3d, 0x67, 0xbd, 0xb1, +0xb2, 0x1f, 0x8a, 0x01, 0xa2, 0x4a, 0xec, 0xf7, 0xa4, 0x9e, 0x66, 0xc4, 0x50, 0xc6, 0xe5, 0x49, +0x8a, 0xfb, 0x90, 0x4f, 0xd2, 0xa9, 0x3b, 0x08, 0x8d, 0x00, 0xb2, 0xd2, 0x88, 0xde, 0xd0, 0x14, +0x64, 0x32, 0x29, 0x1d, 0x74, 0x6a, 0xcd, 0x43, 0x2f, 0xf8, 0x9c, 0x22, 0x92, 0xef, 0x17, 0xe5, +0xc0, 0x5a, 0xe4, 0x43, 0x79, 0xaf, 0x72, 0xaf, 0x7b, 0x2d, 0xb7, 0xb9, 0x17, 0x11, 0x5a, 0x52, +0xd3, 0x3f, 0x06, 0x7f, 0xee, 0x01, 0xd2, 0x3b, 0x25, 0x29, 0xe4, 0x68, 0xad, 0x03, 0xfb, 0x4d, +0xf2, 0xca, 0xb3, 0x92, 0xe9, 0xc4, 0x51, 0xf0, 0xb3, 0xb2, 0x3a, 0x7e, 0x2c, 0xfb, 0x32, 0x36, +0x77, 0x54, 0x8b, 0x12, 0x0e, 0xfc, 0x19, 0xca, 0x7a, 0xbf, 0x7d, 0x35, 0x92, 0x6c, 0x71, 0x1d, +0x85, 0xe3, 0xe9, 0xa9, 0x48, 0xe3, 0x91, 0x8a, 0xdf, 0x49, 0x51, 0x07, 0x86, 0x53, 0x31, 0xd8, +0x5d, 0x97, 0x35, 0xd6, 0xbe, 0xa3, 0xc4, 0xac, 0x5e, 0x5d, 0x1d, 0xd7, 0x45, 0x4e, 0x9d, 0x26, +0x70, 0x5a, 0x9a, 0x87, 0x39, 0xb1, 0xcc, 0xe4, 0xd4, 0x29, 0x7a, 0x91, 0xdd, 0x96, 0x49, 0x5a, +0x60, 0x14, 0x55, 0x37, 0x65, 0x7c, 0xed, 0x1e, 0xbf, 0x30, 0x4f, 0xae, 0x41, 0x94, 0x39, 0xa0, +0x3b, 0x1e, 0xd1, 0x9d, 0x4e, 0x90, 0x0e, 0xb7, 0x6e, 0x4a, 0xa3, 0x0f, 0xd5, 0x25, 0x50, 0x18, +0x1b, 0x76, 0x79, 0x76, 0x92, 0x33, 0x4d, 0xa2, 0x42, 0x7f, 0x6d, 0x86, 0xb2, 0x21, 0x69, 0x5a, +0x0c, 0xeb, 0xa8, 0xa7, 0x85, 0x9a, 0x62, 0xf5, 0xba, 0x56, 0x4b, 0x0b, 0x99, 0x3f, 0x1b, 0x1b, +0x76, 0xcf, 0x27, 0x1f, 0x1a, 0x69, 0xbb, 0xe9, 0x94, 0xbe, 0xb6, 0x1b, 0xe1, 0xc8, 0xe1, 0x81, +0x5a, 0x49, 0x16, 0x87, 0xfd, 0x8e, 0x64, 0x21, 0x2c, 0xf1, 0x29, 0xf0, 0x5c, 0x01, 0x83, 0x3c, +0x69, 0xa6, 0x43, 0x55, 0xba, 0xa1, 0xd9, 0x50, 0x99, 0xac, 0xf7, 0xaa, 0x39, 0x2d, 0x8f, 0xd0, +0x91, 0x37, 0x15, 0x83, 0xc3, 0xfa, 0x26, 0x42, 0x60, 0x37, 0xa7, 0x80, 0xda, 0x7e, 0x63, 0x83, +0xc2, 0xff, 0x34, 0x2f, 0x9a, 0xc7, 0x79, 0x3c, 0xab, 0xa3, 0x67, 0x7b, 0x40, 0x46, 0xd6, 0x89, +0x8b, 0xaa, 0x51, 0x1a, 0x57, 0x5f, 0x07, 0xc3, 0x39, 0x4c, 0x21, 0x06, 0x29, 0x72, 0x9f, 0xe8, +0xfa, 0x35, 0x12, 0xff, 0x4d, 0x26, 0xca, 0x99, 0x61, 0x41, 0xda, 0xec, 0xee, 0x65, 0x16, 0x05, +0x0d, 0xb0, 0x4e, 0xb1, 0xe1, 0x54, 0x78, 0x34, 0x5b, 0x84, 0xdf, 0xa4, 0x5b, 0xd8, 0x67, 0xfa, +0x8e, 0x97, 0x2c, 0x39, 0xdb, 0x04, 0x05, 0x23, 0x13, 0x2f, 0x04, 0x7f, 0xce, 0x48, 0xd4, 0x7c, +0x6b, 0x65, 0xe4, 0xac, 0x37, 0xa8, 0x11, 0x3f, 0xc3, 0x70, 0x37, 0x3a, 0x1a, 0x8d, 0xc8, 0xa0, +0xd3, 0x84, 0x45, 0x02, 0xf5, 0x90, 0x8e, 0x81, 0xcf, 0xdb, 0xd0, 0x01, 0xee, 0xca, 0x26, 0x6b, +0xef, 0xa2, 0xf9, 0xfa, 0xd3, 0xf1, 0xcc, 0x2b, 0x07, 0x40, 0x1f, 0xff, 0x63, 0x9f, 0x78, 0x8f, +0xea, 0x0f, 0xe7, 0x81, 0x63, 0xe3, 0x05, 0xfe, 0xe5, 0x41, 0x16, 0xa9, 0x30, 0xdc, 0x5a, 0xff, +0x10, 0x69, 0xb9, 0x9b, 0x36, 0xca, 0xe0, 0x5b, 0x36, 0x5d, 0x3d, 0x0f, 0xd3, 0xb4, 0xf1, 0x69, +0x0a, 0xa7, 0x19, 0xe2, 0x47, 0x86, 0x91, 0x76, 0x57, 0xbc, 0xb6, 0x06, 0x7d, 0x58, 0x48, 0x5d, +0x35, 0x97, 0x04, 0x67, 0x75, 0x6b, 0xfc, 0x9c, 0x13, 0xd6, 0xb3, 0xf0, 0x3d, 0xa1, 0x6c, 0xd6, +0x19, 0x5e, 0x9f, 0x1e, 0xcc, 0x48, 0x00, 0xa1, 0x08, 0xa1, 0x5d, 0xd4, 0xcd, 0x2a, 0x88, 0xb2, +0xac, 0xcf, 0x54, 0x20, 0x6d, 0xe5, 0xa8, 0x3f, 0xa6, 0xa7, 0x14, 0xfc, 0x70, 0x2f, 0xfc, 0xde, +0xe3, 0x18, 0xf3, 0x54, 0x5f, 0x6f, 0xab, 0xf1, 0xd1, 0xbe, 0x3b, 0x34, 0x85, 0x62, 0x76, 0x1c, +0x68, 0x82, 0x00, 0xd1, 0x9a, 0x6f, 0xe3, 0xe2, 0x7c, 0xfa, 0xbc, 0x56, 0xb1, 0x6f, 0x06, 0xa1, +0x68, 0xe9, 0xbb, 0xce, 0x4a, 0xd0, 0xfb, 0x2a, 0x78, 0x1d, 0xc3, 0x34, 0xaa, 0x8e, 0xef, 0x67, +0x0d, 0x3c, 0x60, 0xaf, 0x1b, 0xea, 0xdd, 0x14, 0x06, 0x3a, 0x1f, 0x2a, 0xd1, 0x0d, 0x9a, 0x45, +0x2b, 0x4b, 0x5a, 0x87, 0x89, 0x3d, 0xf2, 0xe2, 0x6c, 0x1a, 0x4a, 0x64, 0x77, 0xa1, 0x97, 0x81, +0x42, 0x29, 0x94, 0xe8, 0xc0, 0xad, 0xc8, 0xd2, 0xbb, 0xea, 0x2f, 0xad, 0xed, 0xd6, 0xb8, 0xb6, +0xf7, 0x18, 0x16, 0x67, 0xc3, 0x1b, 0xe8, 0x30, 0xbc, 0xb7, 0x0d, 0x88, 0x16, 0x0b, 0xec, 0x45, +0x91, 0x7f, 0xdd, 0x52, 0x98, 0x91, 0x5e, 0x1c, 0x8a, 0x2c, 0x2b, 0xcd, 0xfe, 0x59, 0xa1, 0x53, +0xf2, 0x4b, 0x50, 0x67, 0x6b, 0xf3, 0x5f, 0xfa, 0xb5, 0xb4, 0x85, 0xa0, 0x66, 0xf3, 0x77, 0xad, +0x95, 0xe1, 0xd5, 0xd7, 0xb3, 0x5f, 0xfa, 0x37, 0xba, 0xf4, 0x27, 0xc7, 0xf9, 0x2a, 0x96, 0xf2, +0x84, 0xe3, 0xdb, 0x4e, 0x65, 0xde, 0xb1, 0x15, 0x13, 0xd4, 0xd8, 0x6b, 0xc0, 0x39, 0x44, 0x38, +0xf0, 0x4b, 0xe1, 0x63, 0xa9, 0xa1, 0x67, 0x4d, 0x85, 0xe0, 0x4c, 0xb5, 0xd3, 0xdb, 0x0f, 0xd0, +0x57, 0xcb, 0x95, 0x71, 0xaf, 0xa4, 0x62, 0x22, 0x7e, 0xfa, 0x74, 0xbb, 0x6c, 0x2a, 0xef, 0x43, +0xff, 0x31, 0xe4, 0x28, 0x54, 0xe3, 0x60, 0x28, 0x9b, 0xea, 0xcd, 0xe3, 0x4f, 0xec, 0x3d, 0xdb, +0xe5, 0x1b, 0x37, 0xb6, 0x17, 0x91, 0x31, 0x70, 0x98, 0xef, 0x64, 0x4f, 0xff, 0x99, 0xf7, 0xfb, +0x9c, 0xcd, 0xd4, 0x7f, 0x45, 0x5e, 0xfd, 0x3e, 0x96, 0x16, 0x1d, 0xf3, 0xc3, 0xf2, 0xe1, 0x81, +0xf9, 0x56, 0x5a, 0x18, 0xe9, 0xe8, 0x22, 0xdc, 0x62, 0x3c, 0xd3, 0x25, 0x42, 0x79, 0x69, 0x7f, +0xcb, 0xcb, 0x13, 0xa3, 0x76, 0xa0, 0xc2, 0x9a, 0x66, 0xcf, 0xce, 0xd3, 0x73, 0x54, 0xb7, 0xf6, +0x47, 0x01, 0xcd, 0x14, 0x75, 0xee, 0xf0, 0xee, 0xa2, 0xa8, 0xf6, 0x15, 0x22, 0xff, 0x09, 0xbf, +0x21, 0x71, 0xa2, 0xeb, 0x11, 0x1c, 0x8d, 0x36, 0x63, 0xa7, 0xf5, 0x97, 0x14, 0x27, 0xa2, 0xe0, +0x30, 0x7e, 0xa5, 0x08, 0xa5, 0x8e, 0x97, 0x40, 0x07, 0xa9, 0xe3, 0x88, 0xac, 0x5e, 0x93, 0x14, +0x1d, 0x57, 0x23, 0xb7, 0x82, 0xfb, 0xb7, 0x71, 0x9e, 0x90, 0x71, 0x42, 0x93, 0x2e, 0x6e, 0x21, +0xfa, 0x57, 0xda, 0xe6, 0x2e, 0x22, 0xd4, 0x27, 0x19, 0x31, 0x97, 0x8b, 0x1d, 0x58, 0x75, 0x70, +0x23, 0x76, 0x47, 0x5c, 0xfe, 0x31, 0x1f, 0x3e, 0x29, 0x2e, 0x7d, 0x19, 0x4f, 0xb2, 0x24, 0x67, +0xe3, 0x05, 0x4e, 0x72, 0x84, 0x3d, 0x8e, 0xa5, 0xcc, 0x2f, 0xba, 0xd2, 0xed, 0x50, 0x85, 0x52, +0xb6, 0x46, 0x7b, 0x31, 0x13, 0x3f, 0xcd, 0xbb, 0xc1, 0xd9, 0x94, 0x0b, 0x03, 0xed, 0xa0, 0x59, +0x8b, 0x51, 0x64, 0x72, 0xb2, 0x44, 0x26, 0x87, 0x7a, 0xaf, 0x43, 0x04, 0x2f, 0x20, 0x9e, 0x72, +0x64, 0xfa, 0xf4, 0xd8, 0x3e, 0xe4, 0x50, 0x7e, 0x53, 0xb8, 0xcb, 0x4b, 0x5d, 0x75, 0xc2, 0x73, +0x85, 0xc3, 0x98, 0x65, 0x50, 0xb7, 0x77, 0xe1, 0x5d, 0x18, 0xa0, 0x01, 0x26, 0xc3, 0xd4, 0xed, +0x11, 0x20, 0x34, 0x8b, 0xd8, 0x3b, 0x67, 0x9b, 0xf6, 0xe8, 0x2f, 0x93, 0x79, 0x49, 0xd5, 0x76, +0x34, 0x5f, 0x00, 0x48, 0x01, 0x40, 0x6b, 0x40, 0x93, 0x09, 0xb1, 0xd7, 0xb9, 0x37, 0x64, 0xf0, +0x02, 0x7e, 0x09, 0xfe, 0xc7, 0x3a, 0xc5, 0xc5, 0xae, 0xb9, 0x72, 0x9b, 0x81, 0x89, 0xf9, 0xbe, +0xa6, 0xaa, 0xb3, 0xbe, 0x30, 0x1b, 0x4f, 0x69, 0x1c, 0x44, 0xf2, 0x13, 0xb7, 0xd0, 0xbf, 0x31, +0x40, 0xf0, 0xaf, 0xa3, 0x06, 0x53, 0x6d, 0xaa, 0xf6, 0x3f, 0x4f, 0x19, 0xbb, 0xae, 0x39, 0xee, +0x9d, 0x3c, 0x64, 0x5c, 0xbd, 0x23, 0x1f, 0x9b, 0x5e, 0xda, 0x7c, 0x24, 0xe4, 0x40, 0xbe, 0x9b, +0x95, 0x05, 0x8c, 0xe5, 0x0f, 0xe6, 0x87, 0x9b, 0xfe, 0x58, 0xa8, 0xa1, 0xc8, 0x78, 0x11, 0x90, +0x52, 0x2d, 0x3c, 0x62, 0xf6, 0x3e, 0x82, 0xcb, 0x93, 0x2f, 0x57, 0x0a, 0xc8, 0x2a, 0xf6, 0x8e, +0xae, 0x06, 0x87, 0xe8, 0xaf, 0x63, 0x1c, 0x6d, 0x44, 0x19, 0x93, 0x5b, 0x4e, 0x8f, 0x1a, 0x40, +0xa1, 0x45, 0x63, 0x9f, 0x90, 0x83, 0xa7, 0x80, 0x50, 0x9c, 0x79, 0x9a, 0x06, 0xf8, 0x96, 0x98, +0xc2, 0x37, 0x0f, 0x0d, 0xe4, 0xfe, 0xa2, 0x91, 0x27, 0xc9, 0xfb, 0x31, 0x4c, 0x57, 0xcb, 0x64, +0x12, 0xe6, 0x01, 0xf6, 0x1d, 0xb6, 0x22, 0xf1, 0xe9, 0xe0, 0x7e, 0xe9, 0x12, 0x91, 0x28, 0x7c, +0x7b, 0x32, 0x9a, 0xfa, 0x6d, 0xbe, 0xa4, 0x7a, 0x0f, 0x8a, 0x12, 0x2b, 0x33, 0x81, 0x1e, 0xbe, +0x12, 0x07, 0x87, 0x11, 0x1a, 0xc1, 0x83, 0x26, 0xfc, 0x6a, 0x96, 0x60, 0xc1, 0xcd, 0xfc, 0x31, +0x43, 0x9b, 0xe2, 0x4f, 0x8b, 0xde, 0x80, 0x0d, 0xeb, 0x4a, 0x24, 0xb7, 0x9e, 0x88, 0x05, 0x04, +0x20, 0xfd, 0x5c, 0x17, 0xe1, 0xbe, 0xa2, 0x7f, 0xf3, 0x10, 0x28, 0x8a, 0x08, 0x19, 0x54, 0x54, +0x4c, 0xe3, 0xeb, 0x97, 0xec, 0x3b, 0xb0, 0xdb, 0xc9, 0x08, 0x3b, 0x03, 0x24, 0xe0, 0x87, 0x69, +0xd2, 0x1a, 0x3b, 0x40, 0xc6, 0xae, 0x57, 0xb4, 0x62, 0x96, 0x2c, 0xda, 0x78, 0x29, 0x7e, 0xb3, +0xa6, 0x13, 0xdf, 0x79, 0x47, 0x97, 0x76, 0xe1, 0x8d, 0x2e, 0xc8, 0xd4, 0x52, 0x45, 0x6a, 0x77, +0xd9, 0xc9, 0xee, 0x9c, 0xa2, 0xc1, 0x93, 0xb1, 0xf5, 0x76, 0x5b, 0x1e, 0x0c, 0xe6, 0x06, 0xd5, +0x6d, 0x5c, 0xce, 0x57, 0x90, 0x3d, 0x06, 0x74, 0x46, 0xc5, 0x21, 0x9f, 0xce, 0xfd, 0xcb, 0x85, +0xd8, 0x48, 0xb9, 0x8e, 0x43, 0x31, 0x5f, 0xfc, 0x0c, 0x8e, 0x6d, 0x67, 0xdc, 0xda, 0xc0, 0x20, +0xbf, 0x78, 0x46, 0x19, 0xe7, 0x55, 0x81, 0x11, 0x15, 0xbd, 0x61, 0xbf, 0xad, 0xfa, 0x4a, 0x84, +0xe8, 0x21, 0x40, 0x6c, 0xe8, 0xab, 0x1a, 0xb8, 0x0f, 0x0b, 0x6d, 0xa2, 0xe6, 0x27, 0x7c, 0xff, +0x28, 0xa7, 0x9c, 0x1c, 0xfc, 0x32, 0x48, 0x57, 0xad, 0xad, 0x53, 0x06, 0x3c, 0xf7, 0xf3, 0xee, +0x4a, 0xad, 0xe1, 0x15, 0x03, 0x91, 0x67, 0x92, 0xa4, 0x83, 0xdc, 0x2b, 0x65, 0x3a, 0xf8, 0xd0, +0xb1, 0x4f, 0xfa, 0xc3, 0xb2, 0xf4, 0x52, 0x60, 0x2e, 0x02, 0xe1, 0x99, 0xba, 0x75, 0x15, 0x9d, +0x35, 0x3a, 0xc7, 0x9f, 0x6b, 0x7d, 0x37, 0x06, 0x23, 0x87, 0x28, 0xf3, 0xee, 0x57, 0x33, 0x47, +0x0b, 0x59, 0x2c, 0xd6, 0x69, 0xe4, 0xe4, 0x85, 0x4b, 0xbb, 0x2f, 0xc9, 0x6c, 0x41, 0x7e, 0xeb, +0x6d, 0x6d, 0xd9, 0x7e, 0x1e, 0xef, 0xaf, 0x25, 0x58, 0x9e, 0xcc, 0xbe, 0xa4, 0xff, 0x08, 0x8f, +0xdd, 0x17, 0xb3, 0x26, 0x47, 0x0f, 0x23, 0x6e, 0x7d, 0xfa, 0x3a, 0x4a, 0x6c, 0x42, 0xc2, 0xfd, +0x70, 0x88, 0xb1, 0x34, 0x1b, 0x94, 0x4f, 0x21, 0xbb, 0x69, 0xe5, 0x89, 0xf8, 0xce, 0xc6, 0x36, +0xcd, 0x5a, 0x90, 0x54, 0x4a, 0x25, 0xb2, 0xba, 0x24, 0x0f, 0xd4, 0xcb, 0x8a, 0x30, 0x72, 0xa1, +0x8a, 0x31, 0x30, 0x95, 0x10, 0xe7, 0x4d, 0xf5, 0xe8, 0x76, 0xaf, 0xe7, 0x70, 0x1f, 0x3a, 0x50, +0x3b, 0x50, 0x38, 0x69, 0x38, 0xb2, 0xf5, 0xd2, 0xc5, 0x64, 0x4b, 0xba, 0x7d, 0xa8, 0x5d, 0x88, +0xdc, 0x78, 0x83, 0x41, 0x4e, 0xc5, 0xdb, 0x24, 0x28, 0xc2, 0x7d, 0xbd, 0xa1, 0x19, 0xac, 0x33, +0x72, 0xee, 0x39, 0xb2, 0xc5, 0x7d, 0xcd, 0x1a, 0x92, 0x3e, 0x5f, 0xf6, 0xf8, 0x34, 0x50, 0xc8, +0xb5, 0x4d, 0x7e, 0x66, 0x7f, 0xe2, 0xcc, 0x2b, 0xa4, 0xa2, 0xa4, 0xff, 0x4a, 0x1e, 0x0f, 0x24, +0x85, 0x00, 0xf3, 0x80, 0x02, 0x34, 0x7e, 0x64, 0xe0, 0x93, 0x24, 0x4e, 0xa4, 0x7a, 0x83, 0xb5, +0x1b, 0xf1, 0xa5, 0x13, 0xa1, 0x14, 0x8c, 0xf8, 0x87, 0xa9, 0x40, 0xde, 0xaf, 0x14, 0xd1, 0x4e, +0x67, 0x46, 0x6c, 0xc7, 0x4b, 0xf0, 0x8c, 0x20, 0xdc, 0x08, 0x15, 0x0a, 0x9e, 0x46, 0x14, 0x12, +0x85, 0xb9, 0x13, 0xde, 0x46, 0x05, 0x9b, 0xb2, 0xac, 0x96, 0x60, 0x02, 0xbf, 0xe4, 0x3a, 0x0a, +0x35, 0xf7, 0x6f, 0x77, 0xce, 0xdc, 0x16, 0x72, 0x9d, 0xc3, 0xda, 0x78, 0x72, 0xe2, 0x03, 0xc0, +0xf7, 0x4d, 0x33, 0xc5, 0x51, 0x7e, 0x6a, 0xe7, 0xde, 0x7f, 0x37, 0x0e, 0x4e, 0x0a, 0x6c, 0xa6, +0xa7, 0xfa, 0xc9, 0x09, 0x45, 0xad, 0xc8, 0x8c, 0x79, 0x73, 0xec, 0x59, 0x19, 0xa5, 0x23, 0xbe, +0x8a, 0xf5, 0xdb, 0x95, 0x2d, 0xa3, 0x38, 0x64, 0xd1, 0xfd, 0xaf, 0x22, 0x21, 0xd8, 0xea, 0x69, +0x3b, 0xfa, 0xda, 0xf3, 0xa6, 0x47, 0xc8, 0x62, 0x80, 0x47, 0x2a, 0x74, 0xe7, 0x78, 0x9e, 0xd5, +0x4c, 0x39, 0xee, 0x18, 0xa1, 0x8a, 0x83, 0x9c, 0x51, 0x69, 0xaf, 0x54, 0xd0, 0xa0, 0x46, 0xcf, +0xe2, 0xf9, 0xf8, 0x2e, 0x31, 0x97, 0x00, 0x9b, 0x50, 0x49, 0xff, 0x11, 0x47, 0x28, 0x83, 0x50, +0xd8, 0x3a, 0xac, 0x04, 0x20, 0x69, 0x6e, 0x71, 0x4e, 0x73, 0x20, 0x39, 0x1f, 0x16, 0x22, 0x35, +0x7a, 0xfa, 0xfc, 0x90, 0x3d, 0xd9, 0xd7, 0x4b, 0xd1, 0x95, 0x9b, 0x72, 0x51, 0x1f, 0xd2, 0xc5, +0x1f, 0x98, 0x55, 0xd3, 0x62, 0x4f, 0x0f, 0x0c, 0x09, 0xe2, 0x96, 0x90, 0xd8, 0x71, 0x23, 0xb9, +0xa3, 0xc7, 0x8f, 0x61, 0xaf, 0x2d, 0x6f, 0xc4, 0xdb, 0x12, 0x7a, 0x49, 0x54, 0xa3, 0xc9, 0xe5, +0xa2, 0x8e, 0xc6, 0x7c, 0xee, 0xa3, 0xe4, 0x2e, 0x0c, 0x14, 0x42, 0xda, 0x9e, 0xff, 0x9f, 0xef, +0xd4, 0x5e, 0x1c, 0x7b, 0xcf, 0xdd, 0x86, 0x79, 0x05, 0x17, 0xb9, 0xca, 0x9a, 0xbd, 0xb5, 0x18, +0xc5, 0x11, 0x7b, 0x27, 0x51, 0xbc, 0xa5, 0x2a, 0x32, 0x70, 0x50, 0x57, 0xb2, 0x09, 0xde, 0x24, +0x0f, 0xfd, 0xdb, 0x4a, 0x92, 0x91, 0xee, 0x8c, 0xb3, 0x82, 0xb0, 0xee, 0xfd, 0x8d, 0x48, 0xa5, +0x9c, 0xe1, 0x8e, 0xb8, 0xa5, 0x6d, 0x9e, 0x8c, 0x93, 0x1a, 0x38, 0xea, 0xe0, 0xa6, 0xe0, 0x61, +0x10, 0x0b, 0xbf, 0xc0, 0xc0, 0x2e, 0x42, 0x7f, 0x18, 0x42, 0xfd, 0x44, 0x49, 0xce, 0x5b, 0xf8, +0xc4, 0x1e, 0xee, 0x73, 0x4a, 0xce, 0xa5, 0x42, 0xda, 0xde, 0x0b, 0x48, 0xb9, 0x5a, 0x78, 0x3b, +0x4b, 0x50, 0x66, 0x4d, 0xf5, 0xec, 0xe8, 0x81, 0x77, 0x99, 0x06, 0xbf, 0x5b, 0xe3, 0xdd, 0x7a, +0x84, 0x68, 0x70, 0x35, 0x7a, 0x55, 0x46, 0xf5, 0x85, 0x0b, 0x8a, 0xa4, 0xef, 0x31, 0x0f, 0x8b, +0x1c, 0xb5, 0x68, 0x19, 0x8f, 0xf1, 0x95, 0xcb, 0xaa, 0xa4, 0x9e, 0xdc, 0x51, 0xc3, 0xb5, 0x4d, +0xfd, 0xbe, 0x70, 0xd3, 0x0c, 0x7d, 0x2d, 0x9b, 0xed, 0xaa, 0x41, 0x9a, 0xdc, 0x84, 0x25, 0xe6, +0x33, 0x8c, 0xe0, 0xc8, 0xad, 0x02, 0x7c, 0xcb, 0x6e, 0x9e, 0xc4, 0x94, 0x97, 0x57, 0x9c, 0x4c, +0x49, 0x75, 0x5c, 0x7e, 0x0b, 0xc2, 0x00, 0x0f, 0x5f, 0x51, 0x46, 0xd5, 0x53, 0xcd, 0xd7, 0xe7, +0xb1, 0xcb, 0xd1, 0x45, 0xbf, 0xc4, 0x7f, 0x64, 0xf9, 0xee, 0x41, 0xb8, 0x4f, 0x8f, 0x6e, 0x35, +0x46, 0x87, 0xeb, 0x1d, 0xc2, 0xd0, 0xde, 0xab, 0xe5, 0x43, 0x54, 0x1b, 0x1e, 0x3e, 0x2c, 0x9c, +0xed, 0x5c, 0xae, 0x28, 0x04, 0xc6, 0x2b, 0x3a, 0xa7, 0xdf, 0x45, 0x33, 0xd1, 0xd5, 0xd1, 0x0b, +0x06, 0x97, 0x56, 0x94, 0x16, 0x66, 0xb6, 0xbd, 0xf0, 0xe6, 0x6c, 0x71, 0x22, 0x8f, 0x58, 0x09, +0xa3, 0x1c, 0xe7, 0xaf, 0x76, 0x23, 0x73, 0x61, 0xf5, 0x8b, 0x91, 0x88, 0xb4, 0xcc, 0x20, 0x8e, +0x1e, 0x5e, 0x94, 0x27, 0xf2, 0x8b, 0x1a, 0x52, 0xac, 0x17, 0xd0, 0xcb, 0x7e, 0x63, 0xb5, 0xe7, +0x39, 0x26, 0xf1, 0x0e, 0x1d, 0xd1, 0xa8, 0x94, 0xb5, 0xc1, 0xa3, 0xc8, 0x0c, 0x5d, 0x1c, 0xcd, +0xcf, 0x85, 0x5b, 0x43, 0xa0, 0x7b, 0x01, 0x1b, 0x88, 0x3e, 0x74, 0xe5, 0x18, 0xc2, 0x7c, 0x14, +0xf5, 0x0c, 0x91, 0xdd, 0x69, 0xde, 0x5f, 0x4d, 0x3b, 0x1d, 0x92, 0x4c, 0xba, 0xfe, 0x68, 0x86, +0xbe, 0x09, 0xa2, 0x11, 0x22, 0x0d, 0xea, 0x8f, 0xdf, 0x5f, 0xc8, 0x9b, 0xb4, 0x59, 0x6f, 0x5f, +0x0d, 0xb1, 0x5b, 0x62, 0xa1, 0x8c, 0xe7, 0x9a, 0xcb, 0x8e, 0xc1, 0xe7, 0xfa, 0x4d, 0x34, 0x1e, +0xc6, 0x04, 0x1d, 0x0d, 0xa4, 0xd3, 0x1f, 0xf0, 0xf3, 0x0a, 0x2b, 0x62, 0x0c, 0xe0, 0x28, 0xf8, +0x29, 0x0a, 0x3c, 0x95, 0x04, 0x8f, 0xa0, 0xb6, 0xbe, 0x13, 0x36, 0xea, 0x22, 0x2a, 0x4d, 0xa1, +0x69, 0x8b, 0x72, 0x35, 0x68, 0x54, 0x62, 0xa7, 0xb1, 0x94, 0x01, 0x74, 0x8a, 0xf4, 0x6f, 0x84, +0x59, 0xe8, 0x87, 0xa6, 0xb9, 0x73, 0x3e, 0x93, 0xab, 0xfb, 0x59, 0xc2, 0xcb, 0xda, 0x9d, 0x4a, +0xf0, 0x52, 0x5c, 0x8b, 0xbe, 0xfe, 0x7e, 0x38, 0xc3, 0xe0, 0xc1, 0xc9, 0xd0, 0x28, 0x8c, 0x5f, +0xd1, 0xf9, 0x41, 0x3e, 0xe2, 0x23, 0xb0, 0xf8, 0xc8, 0xc8, 0xf0, 0x2b, 0xba, 0xb8, 0x3e, 0xd1, +0x6d, 0xca, 0xde, 0x00, 0x7c, 0xae, 0x0d, 0xfe, 0xa5, 0x62, 0x45, 0x6d, 0xc3, 0x44, 0x93, 0x9c, +0x9f, 0x8e, 0xe2, 0x0e, 0x47, 0x9e, 0x9d, 0x0d, 0x38, 0x1b, 0xfa, 0x36, 0xc7, 0x37, 0x65, 0x07, +0x51, 0xa8, 0xd2, 0x3d, 0xb8, 0x9d, 0x85, 0x9a, 0xc7, 0x91, 0xa1, 0xa0, 0x8a, 0x6f, 0x2d, 0x38, +0x44, 0x23, 0x33, 0xfd, 0x34, 0x9f, 0xee, 0x76, 0x80, 0x62, 0xba, 0xae, 0x9f, 0xea, 0x4d, 0xe0, +0x28, 0x1b, 0x1b, 0xa5, 0xdf, 0x5d, 0xe4, 0x6d, 0x12, 0xcc, 0x1d, 0x84, 0x7d, 0xe8, 0xbb, 0x2c, +0x5f, 0x99, 0x27, 0xbc, 0x69, 0x69, 0xd2, 0xc8, 0x4a, 0x6e, 0x3c, 0xa9, 0xcc, 0x1e, 0xd2, 0xbd, +0xb0, 0xad, 0xef, 0xbe, 0x48, 0xc6, 0x10, 0xc7, 0x54, 0x96, 0x77, 0x9b, 0xe4, 0x9a, 0xad, 0x46, +0x54, 0x31, 0x52, 0x50, 0xbb, 0x5d, 0x66, 0x21, 0x51, 0xa4, 0x1b, 0x77, 0x96, 0xdb, 0x0a, 0x55, +0x6d, 0xaa, 0x05, 0x03, 0xae, 0xa6, 0x18, 0x55, 0xba, 0x25, 0x6b, 0x34, 0x82, 0xea, 0xde, 0x12, +0xc1, 0xa1, 0xc1, 0x9a, 0xaf, 0xb3, 0x79, 0x11, 0xe8, 0xf7, 0x86, 0x44, 0x19, 0x2d, 0xf8, 0x10, +0x05, 0xa5, 0x61, 0x28, 0xf2, 0x7e, 0x90, 0x7e, 0x38, 0x0c, 0xa7, 0xd3, 0xfd, 0x40, 0x04, 0x44, +0xb6, 0xea, 0xe1, 0x23, 0xcb, 0x8d, 0x3e, 0x80, 0x2a, 0xbe, 0x0b, 0xe6, 0xd0, 0xb2, 0x8f, 0x59, +0x21, 0x31, 0xad, 0x84, 0x29, 0x6e, 0x3b, 0xdf, 0x10, 0xf0, 0xf5, 0x9c, 0x0b, 0xec, 0x37, 0x8e, +0x0d, 0xeb, 0x35, 0x19, 0x14, 0xe7, 0xb4, 0xf4, 0x11, 0x57, 0x3d, 0x22, 0xe9, 0xea, 0x95, 0xc2, +0xd1, 0x2f, 0xa4, 0x5e, 0x0c, 0x96, 0x30, 0x53, 0x9b, 0xb2, 0xe3, 0xbe, 0x88, 0xa6, 0xaf, 0x36, +0x50, 0x2b, 0xf1, 0xa7, 0x2e, 0x3d, 0xb0, 0xa2, 0xaa, 0x86, 0x64, 0x91, 0x79, 0x90, 0x74, 0x73, +0x80, 0xd3, 0x2e, 0x1f, 0x6f, 0x3c, 0x1f, 0x1c, 0x92, 0xe4, 0xf3, 0x82, 0x79, 0x29, 0x08, 0xe4, +0x0b, 0xb1, 0xeb, 0xd5, 0x09, 0x52, 0x3d, 0xd6, 0x5a, 0x01, 0x1e, 0x7e, 0xc2, 0x3c, 0x08, 0x67, +0xa3, 0xf5, 0x46, 0x37, 0x91, 0xac, 0xc9, 0xdf, 0x47, 0xa6, 0x6a, 0xec, 0xbb, 0x2b, 0xb1, 0x58, +0x5e, 0x2a, 0xf4, 0xd2, 0x7a, 0xfe, 0xb0, 0x94, 0x70, 0x52, 0xe8, 0xa6, 0x49, 0x0f, 0x53, 0xa7, +0x12, 0x61, 0x6c, 0xae, 0xb7, 0x06, 0xcb, 0x98, 0x74, 0x3a, 0x97, 0xc0, 0xe8, 0x9f, 0x84, 0x8f, +0x93, 0xbe, 0xb6, 0xbb, 0xc2, 0x91, 0x44, 0x6c, 0xec, 0x58, 0x9a, 0x00, 0x7c, 0x5c, 0x63, 0x2c, +0x91, 0x6a, 0x7a, 0x8f, 0xfa, 0x69, 0x93, 0x43, 0x6d, 0x14, 0xbb, 0xb2, 0xcf, 0x92, 0x0b, 0x6b, +0x4c, 0x97, 0x05, 0x95, 0xd6, 0xc9, 0xe0, 0x86, 0x4d, 0xa5, 0x2e, 0x3d, 0xfc, 0xe2, 0x57, 0xeb, +0xb5, 0xa8, 0xad, 0xa8, 0xca, 0x3a, 0x74, 0xa8, 0x2c, 0x64, 0xc0, 0x44, 0x38, 0x3b, 0x51, 0x03, +0x18, 0xa0, 0xc5, 0xdd, 0xac, 0x55, 0x52, 0x74, 0x37, 0x44, 0x6f, 0x11, 0xe5, 0x13, 0x10, 0x27, +0xab, 0x16, 0x9c, 0x80, 0x15, 0xd3, 0x8d, 0x52, 0xd3, 0x63, 0x9f, 0xf7, 0x5f, 0xf5, 0xef, 0x43, +0xa2, 0x4e, 0xdb, 0x61, 0xcf, 0x5a, 0xa1, 0x0d, 0xba, 0x3b, 0x72, 0x6d, 0x74, 0xd7, 0x2a, 0xa6, +0x5d, 0xc0, 0x31, 0xea, 0x17, 0x16, 0x1d, 0xb3, 0xb5, 0x9a, 0xed, 0x35, 0x73, 0x2e, 0x44, 0xc7, +0xd3, 0x8b, 0x78, 0x6c, 0xe2, 0x7d, 0x12, 0xd3, 0x67, 0x3a, 0x6b, 0xd6, 0x82, 0xeb, 0x20, 0x35, +0x11, 0x3c, 0xcf, 0x1f, 0x9a, 0xce, 0xba, 0xbc, 0xa8, 0x7a, 0xf5, 0xc5, 0xb3, 0xd3, 0x74, 0xfa, +0xce, 0x5c, 0x56, 0x77, 0xf0, 0x43, 0xdf, 0x14, 0xc2, 0x57, 0x44, 0x66, 0x83, 0x83, 0x06, 0xa3, +0x40, 0x3d, 0xb1, 0xfc, 0x9f, 0xe0, 0x4f, 0x8f, 0xcf, 0xb3, 0xda, 0x30, 0xeb, 0xbe, 0xfa, 0xef, +0xad, 0x71, 0x70, 0x31, 0x21, 0x91, 0x14, 0xcb, 0xda, 0x0c, 0xed, 0x2c, 0x0b, 0x34, 0xd8, 0x4e, +0x50, 0x58, 0x83, 0x85, 0xa9, 0x5d, 0x78, 0x0d, 0x13, 0x67, 0xc4, 0x98, 0x3f, 0xa0, 0xca, 0x6f, +0xfa, 0x04, 0xda, 0x50, 0xea, 0x23, 0x42, 0x1b, 0xa2, 0x16, 0x49, 0xda, 0x35, 0x66, 0xa7, 0x97, +0xb6, 0xe1, 0xa9, 0x9f, 0x54, 0x1d, 0xfb, 0xc8, 0x35, 0x38, 0xe5, 0xe0, 0xaf, 0xd6, 0x09, 0x3f, +0x2e, 0x13, 0x55, 0x00, 0x3e, 0x74, 0x41, 0x51, 0x9a, 0x73, 0x77, 0xb2, 0x2f, 0xbb, 0xfd, 0x2e, +0x7e, 0x98, 0x46, 0x55, 0x0b, 0xe3, 0xd9, 0x4b, 0xe9, 0xd8, 0x99, 0xd3, 0xd7, 0xbf, 0x2c, 0x89, +0x93, 0x76, 0x36, 0xd8, 0x5b, 0x6d, 0x88, 0x36, 0x10, 0x32, 0x2c, 0x26, 0x41, 0x15, 0x56, 0x12, +0xb0, 0x02, 0x00, 0x3e, 0x18, 0xa8, 0xcb, 0x4d, 0xf3, 0xf2, 0x52, 0xde, 0xb2, 0xb5, 0xcc, 0xb6, +0x59, 0x4f, 0x96, 0x15, 0x6c, 0x1b, 0x33, 0xb2, 0x78, 0xfd, 0x3e, 0xa3, 0x56, 0xb0, 0x2c, 0x7a, +0x91, 0x33, 0x82, 0x8a, 0xc5, 0x82, 0xd7, 0x00, 0xa6, 0x26, 0x6f, 0xa5, 0x1f, 0xe0, 0xe4, 0xa7, +0xb8, 0x7e, 0x82, 0x6d, 0x77, 0x30, 0x49, 0x79, 0xf1, 0x42, 0xdc, 0x7f, 0x72, 0x5b, 0x1d, 0xae, +0xc4, 0xc7, 0x35, 0xb2, 0x91, 0x42, 0x75, 0x56, 0x39, 0x75, 0xa8, 0x06, 0x73, 0x8c, 0x19, 0x70, +0x06, 0x0d, 0x5a, 0x37, 0x14, 0x86, 0x82, 0xd5, 0xf4, 0x0d, 0xaf, 0x27, 0x39, 0x64, 0xd4, 0x06, +0x95, 0x44, 0x7c, 0x61, 0xaf, 0x8c, 0x7e, 0x0e, 0xd6, 0xb6, 0x18, 0xb1, 0x36, 0xa0, 0x50, 0x6f, +0x87, 0x2b, 0x04, 0x3f, 0x2f, 0xad, 0x53, 0x47, 0x3a, 0x94, 0x5b, 0x6f, 0x29, 0x43, 0x61, 0x29, +0x06, 0xf5, 0x85, 0x9d, 0x77, 0x37, 0xa2, 0x0f, 0x6a, 0xdb, 0x25, 0x81, 0xda, 0x0d, 0xcf, 0x96, +0xde, 0x1b, 0xd5, 0x22, 0xf9, 0x28, 0xe8, 0x8a, 0xda, 0x63, 0x3e, 0x1f, 0x69, 0x76, 0x23, 0xcc, +0xa2, 0xee, 0x0b, 0x87, 0x37, 0xe6, 0xde, 0x5a, 0xc5, 0x61, 0x2d, 0xbb, 0x3a, 0x3f, 0xb0, 0x69, +0x9c, 0x70, 0x05, 0x9a, 0xab, 0x6d, 0xb7, 0x1c, 0xe0, 0xbd, 0x91, 0x8b, 0xbc, 0x62, 0x47, 0x86, +0x9b, 0x32, 0x93, 0xc0, 0xdf, 0x1f, 0x82, 0x1b, 0xc8, 0x8e, 0xfb, 0x2f, 0x88, 0x42, 0x3c, 0x29, +0x01, 0xac, 0x46, 0xb8, 0x05, 0xef, 0x39, 0xf7, 0x2f, 0x80, 0xd5, 0x8f, 0x9b, 0xca, 0x52, 0x1d, +0x54, 0xe0, 0x5a, 0xb0, 0xea, 0xd8, 0x89, 0x7b, 0x77, 0x0a, 0xe1, 0x19, 0x3c, 0x8b, 0xee, 0x93, +0x4d, 0xd2, 0x02, 0x45, 0x96, 0x04, 0xf0, 0x1f, 0xf6, 0xad, 0x38, 0x6c, 0xa5, 0xcd, 0x90, 0x0e, +0xea, 0xa3, 0xea, 0x0b, 0x53, 0xa3, 0x23, 0x91, 0xab, 0x4a, 0xcc, 0xe9, 0x0b, 0xf6, 0x1a, 0x7e, +0x9f, 0x80, 0xed, 0xbc, 0xbe, 0x9c, 0xeb, 0x6b, 0x63, 0x7c, 0x55, 0xd6, 0xd1, 0x14, 0x8f, 0xfd, +0xb8, 0xdd, 0x09, 0xb8, 0x6f, 0x91, 0xec, 0x30, 0x8c, 0x31, 0x4d, 0x0a, 0x4a, 0x92, 0xeb, 0x13, +0x9e, 0xd1, 0x35, 0x2a, 0xdc, 0xff, 0xd7, 0x34, 0xf1, 0x65, 0xe9, 0x22, 0x34, 0x08, 0xce, 0xd3, +0xb1, 0xd5, 0xd3, 0x10, 0x0c, 0x01, 0x78, 0x05, 0x96, 0xa2, 0xdd, 0xd5, 0x3e, 0xb4, 0x40, 0x63, +0x05, 0x36, 0x74, 0xff, 0xe9, 0xdd, 0x7f, 0x52, 0x6e, 0xb7, 0xb8, 0xfd, 0xbd, 0xf6, 0xf5, 0x20, +0x5c, 0x6d, 0x64, 0x75, 0xa8, 0x83, 0xf9, 0xd4, 0xec, 0x7a, 0x27, 0xa4, 0x38, 0x60, 0xc1, 0x3c, +0xbc, 0x4a, 0xd0, 0x00, 0x3c, 0x33, 0x82, 0xf7, 0xc4, 0xda, 0x6d, 0xb1, 0x1b, 0x56, 0x6c, 0x62, +0x5f, 0x99, 0xf7, 0xe9, 0x38, 0x76, 0xe0, 0xb4, 0x82, 0x8d, 0x7c, 0x78, 0x20, 0x62, 0xc1, 0xf6, +0xdf, 0xfe, 0x3e, 0x18, 0x95, 0xa8, 0x3f, 0xfd, 0x16, 0x6a, 0x64, 0x67, 0xad, 0x0c, 0xfb, 0xb4, +0x9d, 0x23, 0x85, 0xc9, 0x0a, 0x48, 0x87, 0xcb, 0xfe, 0x05, 0xb6, 0x33, 0x4e, 0xb2, 0xab, 0x8b, +0xff, 0x93, 0x60, 0xe2, 0xee, 0xab, 0xa0, 0xe4, 0x55, 0xcf, 0x9b, 0xf5, 0x4a, 0xf3, 0x57, 0xb7, +0xd5, 0x31, 0x21, 0x5c, 0x46, 0xe0, 0x07, 0x6b, 0x35, 0x04, 0x8c, 0xc2, 0xc3, 0xe8, 0x43, 0x99, +0x47, 0x34, 0x88, 0x29, 0xa2, 0x84, 0xb3, 0x81, 0x37, 0x33, 0xb7, 0x1f, 0xb7, 0x38, 0xac, 0x28, +0x31, 0xfe, 0x4c, 0xac, 0x78, 0xd9, 0xc2, 0x89, 0x4a, 0xd8, 0xe3, 0x71, 0x25, 0x22, 0xc7, 0x55, +0xf0, 0xc1, 0x8b, 0x0c, 0x0f, 0x5f, 0xc6, 0x5c, 0xc7, 0x6b, 0x27, 0x53, 0xe1, 0x85, 0x10, 0xa6, +0x0c, 0x30, 0xa3, 0x8c, 0x8e, 0x44, 0x29, 0x37, 0xcb, 0x65, 0x18, 0xb3, 0x70, 0x8e, 0xff, 0x06, +0x4e, 0x76, 0xb2, 0x71, 0xc7, 0x0c, 0x56, 0xe6, 0x6d, 0x6b, 0x66, 0xf7, 0x74, 0x40, 0x02, 0x18, +0x54, 0x38, 0x7e, 0x7a, 0x40, 0xa1, 0xc2, 0xd1, 0xbb, 0xad, 0x49, 0xa1, 0x9c, 0xa8, 0x93, 0xbe, +0x34, 0x17, 0x47, 0xe8, 0xe9, 0x9e, 0xf7, 0x57, 0x43, 0x33, 0x9b, 0xad, 0x07, 0xf9, 0x98, 0xc2, +0xc9, 0xd7, 0x18, 0x9e, 0x89, 0xee, 0x67, 0xad, 0x11, 0xb6, 0x24, 0xe9, 0x00, 0xb0, 0x7e, 0xda, +0xa3, 0x65, 0xa0, 0xd7, 0xa3, 0xb6, 0x9a, 0xc4, 0xcd, 0x23, 0xbc, 0x80, 0x1b, 0x72, 0xae, 0x5a, +0x79, 0xdf, 0x58, 0x78, 0xd4, 0x36, 0xa2, 0xed, 0xad, 0x2e, 0xa6, 0xcf, 0x26, 0x6f, 0x4e, 0x9f, +0xd7, 0x18, 0x52, 0x6a, 0xdc, 0xd1, 0xc9, 0xea, 0x19, 0xf8, 0x01, 0xc4, 0x16, 0xf7, 0x66, 0x1e, +0xa9, 0x89, 0x6f, 0x4b, 0x70, 0x6d, 0x05, 0x2b, 0x73, 0xff, 0x94, 0xa8, 0x3d, 0x14, 0x41, 0xff, +0x5d, 0x5b, 0xd6, 0x68, 0x08, 0x2b, 0x72, 0xbf, 0x91, 0xba, 0x7d, 0xc8, 0x2a, 0x77, 0x2a, 0xbc, +0x39, 0x55, 0x42, 0x26, 0x3f, 0x8d, 0x28, 0x9f, 0x6e, 0x43, 0x23, 0x1f, 0xc3, 0xd8, 0xbd, 0x2c, +0xfd, 0xd8, 0x6a, 0xd5, 0xf2, 0x09, 0x13, 0xc6, 0x67, 0xa4, 0xef, 0xbe, 0xe1, 0xa5, 0x02, 0x4a, +0x7a, 0xba, 0xfa, 0x51, 0x8b, 0xfc, 0x0f, 0x5e, 0x5a, 0xed, 0x0b, 0xee, 0x16, 0x2a, 0xc4, 0xcd, +0x5f, 0x51, 0x45, 0xb5, 0x69, 0x24, 0x17, 0x0e, 0x65, 0x0c, 0x1a, 0xed, 0x43, 0xde, 0x5c, 0xd6, +0x98, 0x11, 0x45, 0x19, 0xf8, 0x70, 0xe8, 0x37, 0x0e, 0x65, 0x0f, 0x1f, 0x1d, 0x6c, 0x6a, 0xa7, +0xb0, 0x6e, 0x06, 0xff, 0x5d, 0x81, 0xf0, 0x0f, 0x18, 0x5d, 0xae, 0x2d, 0xd4, 0x5b, 0xda, 0x47, +0x68, 0xe1, 0x48, 0xbf, 0x86, 0x08, 0xf7, 0xcc, 0x95, 0x73, 0x26, 0x14, 0xd0, 0x78, 0xa8, 0x0b, +0xff, 0x80, 0x79, 0x4b, 0xba, 0x54, 0xc5, 0x61, 0xc3, 0xbd, 0xba, 0x01, 0xaa, 0x44, 0xa5, 0x9a, +0x02, 0x4c, 0x9a, 0x82, 0x62, 0x86, 0x49, 0x6d, 0x9f, 0x3a, 0x41, 0x8c, 0x6f, 0x51, 0x8e, 0x69, +0x9a, 0x3a, 0x7b, 0xca, 0x51, 0x13, 0x2b, 0xd0, 0xf6, 0xea, 0x0e, 0xce, 0x5c, 0x51, 0x80, 0x46, +0x68, 0xac, 0xf9, 0xd7, 0x98, 0xff, 0x33, 0xf1, 0x49, 0x4a, 0xd3, 0x48, 0x68, 0xdb, 0x2e, 0x08, +0x5f, 0x58, 0x1b, 0x63, 0x7b, 0x36, 0x7b, 0x54, 0xda, 0xf5, 0x3a, 0x92, 0xa2, 0xbd, 0x92, 0xda, +0x2b, 0xff, 0x73, 0xfb, 0x98, 0xaa, 0x10, 0x31, 0x5a, 0x7f, 0xba, 0xb2, 0x50, 0x3f, 0x9f, 0x9b, +0x98, 0xff, 0xb7, 0x77, 0x4c, 0x19, 0xb3, 0xa9, 0xf6, 0x4f, 0xb6, 0xdf, 0xfc, 0x95, 0x30, 0x10, +0x54, 0x69, 0x78, 0xd6, 0x44, 0x0f, 0x2a, 0x3a, 0x89, 0x0d, 0xc2, 0xed, 0x71, 0x64, 0xde, 0x9d, +0x0a, 0x3b, 0xd1, 0x98, 0x74, 0xb4, 0x1f, 0x73, 0xfc, 0x2b, 0xdc, 0xc1, 0x46, 0xe4, 0x81, 0x12, +0x27, 0x81, 0xdb, 0x04, 0xa1, 0x71, 0xf1, 0x88, 0xb5, 0xd6, 0x5e, 0xcd, 0xa6, 0xb6, 0x98, 0x6c, +0xf1, 0x9d, 0x62, 0x9f, 0x9a, 0xd9, 0x71, 0x6b, 0x9d, 0x68, 0x56, 0x7d, 0xfc, 0xda, 0x0e, 0x3c, +0xf0, 0x68, 0x27, 0xbd, 0xa2, 0xc1, 0x08, 0xd6, 0xe6, 0x5e, 0xe3, 0x49, 0x2a, 0xde, 0xe5, 0xee, +0x92, 0xb7, 0x02, 0x04, 0x5a, 0xf1, 0x45, 0x5d, 0xe8, 0x22, 0xc2, 0x24, 0x6c, 0x22, 0x11, 0x4b, +0xbc, 0x60, 0x8f, 0x5d, 0xbb, 0x41, 0x65, 0xf8, 0xb4, 0x4c, 0x41, 0x19, 0xa2, 0x3f, 0xb8, 0xa9, +0x7f, 0x6c, 0xa5, 0xb8, 0x32, 0x0f, 0x1c, 0xc2, 0xdc, 0x4c, 0xe7, 0xe9, 0x97, 0xce, 0x85, 0x06, +0xbb, 0xa0, 0x7e, 0x47, 0xb9, 0xeb, 0xdf, 0xa4, 0x83, 0x67, 0xb0, 0x10, 0xe0, 0x01, 0x99, 0x9d, +0xb9, 0x7d, 0xc1, 0x8b, 0x00, 0x66, 0xa0, 0x18, 0xbd, 0xbb, 0x10, 0x8f, 0xee, 0x9d, 0x78, 0x5d, +0x79, 0x59, 0xe5, 0x44, 0x95, 0x2b, 0x74, 0x71, 0x20, 0xbf, 0x81, 0x13, 0x05, 0x06, 0x10, 0xa6, +0xb1, 0xa1, 0x3d, 0x98, 0x0e, 0x75, 0xe0, 0xa3, 0xf4, 0x9d, 0x4d, 0xe9, 0xbb, 0x06, 0x96, 0x53, +0xe9, 0x85, 0x44, 0x60, 0xbe, 0xee, 0x95, 0xcb, 0xc0, 0x7f, 0x6e, 0x74, 0x2e, 0xb7, 0x90, 0xb1, +0xcc, 0xfa, 0x63, 0xf7, 0x50, 0xc8, 0x86, 0x72, 0x4c, 0x76, 0x03, 0x2e, 0x99, 0x69, 0x29, 0x16, +0x60, 0xd5, 0x3b, 0xd5, 0x53, 0xef, 0x75, 0xa7, 0xab, 0x4f, 0xca, 0xf9, 0x39, 0xea, 0xb6, 0x79, +0x7f, 0x26, 0x94, 0x82, 0xcc, 0x6f, 0x5c, 0xe6, 0xe4, 0xf7, 0x15, 0x19, 0x98, 0x54, 0xfe, 0xb9, +0x8e, 0xbe, 0xab, 0xf4, 0x0e, 0x03, 0x17, 0x50, 0xdf, 0x9a, 0x3e, 0x3a, 0x1a, 0x12, 0x9e, 0xb8, +0xd0, 0x61, 0xad, 0xd7, 0x00, 0x18, 0x14, 0x0d, 0x9b, 0x26, 0x95, 0x44, 0x13, 0x4b, 0x23, 0xce, +0x26, 0x94, 0xa5, 0xfd, 0x7d, 0x70, 0xa3, 0x74, 0xd2, 0x1e, 0xe4, 0xad, 0x6c, 0x8f, 0xed, 0xcc, +0xc6, 0x4e, 0x7f, 0x70, 0x7e, 0x61, 0x24, 0xa4, 0xf4, 0xd6, 0xe4, 0xa1, 0xf2, 0xc3, 0x2e, 0xd2, +0x2e, 0x0a, 0xf2, 0x36, 0x4d, 0xf2, 0x5c, 0x72, 0x6c, 0xa4, 0xc2, 0x70, 0x53, 0x83, 0xb1, 0x56, +0x4c, 0xc0, 0x25, 0x66, 0x7f, 0x77, 0x89, 0xb1, 0xc0, 0x36, 0xd9, 0x75, 0xe5, 0xa2, 0x4b, 0x70, +0xbf, 0x40, 0x73, 0x2c, 0xa0, 0x63, 0x2d, 0x75, 0x89, 0xf0, 0xa1, 0xf9, 0x82, 0x9c, 0x1e, 0x11, +0xf6, 0x7b, 0xe6, 0xb7, 0x97, 0x76, 0xcc, 0x41, 0x01, 0x36, 0x66, 0xc8, 0xa2, 0x24, 0xe7, 0x7c, +0x7b, 0xba, 0x7d, 0xa1, 0xa3, 0x20, 0xc8, 0x51, 0x81, 0x75, 0x29, 0xac, 0x6d, 0x97, 0x2f, 0x35, +0x7a, 0xc6, 0x5b, 0xe4, 0x8f, 0xdb, 0x0c, 0xd6, 0xb5, 0xbc, 0x75, 0x14, 0xff, 0x85, 0x78, 0x13, +0x96, 0xc3, 0x00, 0xde, 0xdd, 0xfd, 0xbf, 0xeb, 0x21, 0x9a, 0x18, 0x8d, 0xa0, 0xf2, 0x12, 0x3b, +0x57, 0xe1, 0xa0, 0x8a, 0xb2, 0xa1, 0x96, 0x25, 0xa3, 0x7d, 0x4f, 0xa7, 0xc2, 0x89, 0x83, 0xb4, +0xb3, 0x7e, 0xb4, 0x62, 0x87, 0x51, 0x9f, 0x99, 0x4d, 0x1a, 0x61, 0x1d, 0x0e, 0x6e, 0x9a, 0x89, +0x89, 0xb3, 0x3e, 0xe0, 0x51, 0x21, 0x80, 0x1c, 0xac, 0xf9, 0x70, 0x5a, 0x91, 0x64, 0x3e, 0x18, +0x91, 0x46, 0x77, 0x82, 0x92, 0x2c, 0xad, 0x10, 0xf0, 0x8c, 0xbc, 0x65, 0xa7, 0xab, 0xf1, 0xfd, +0xdf, 0xf8, 0x66, 0x19, 0x89, 0x1b, 0x8b, 0x96, 0xee, 0x35, 0xf5, 0x54, 0x0a, 0xde, 0xc2, 0xec, +0xa0, 0x4f, 0x71, 0xe2, 0xeb, 0x58, 0x69, 0x20, 0xd9, 0x4b, 0x1b, 0x80, 0x41, 0x98, 0xea, 0xdb, +0x75, 0x9f, 0xa2, 0x86, 0x70, 0x5c, 0x1c, 0xa3, 0x56, 0xec, 0xdb, 0x8e, 0x45, 0xa3, 0x95, 0x1b, +0x05, 0x03, 0x20, 0xf2, 0xda, 0xec, 0x0d, 0x67, 0xa5, 0x7c, 0x60, 0x75, 0xf8, 0x63, 0xa1, 0x1b, +0xf5, 0x22, 0xf6, 0x52, 0x8c, 0xbe, 0x2f, 0xf1, 0x42, 0xe8, 0xba, 0x8e, 0x64, 0xf3, 0x13, 0x44, +0xf7, 0x96, 0xf9, 0x64, 0x36, 0x12, 0xc0, 0xa6, 0x20, 0x92, 0xf3, 0xb4, 0x9e, 0x3d, 0xdf, 0x8b, +0xff, 0x29, 0x3a, 0x86, 0xdb, 0xb3, 0x1e, 0xb5, 0x0a, 0x84, 0x9f, 0xab, 0xeb, 0xe0, 0x82, 0xe5, +0x05, 0x8c, 0xf0, 0x47, 0xe3, 0xd3, 0x6a, 0x5c, 0x45, 0xf4, 0xa1, 0x22, 0x6e, 0x2b, 0x1f, 0x66, +0x70, 0xc5, 0x57, 0x39, 0x36, 0x26, 0xe1, 0xe1, 0xe1, 0x14, 0xf6, 0x46, 0xbc, 0xa7, 0x8f, 0x36, +0xd5, 0x43, 0x18, 0xb1, 0x23, 0x44, 0x0f, 0x38, 0x3b, 0x73, 0x6c, 0xfc, 0xb6, 0xd5, 0x7a, 0xc5, +0x91, 0xa2, 0x66, 0xe0, 0xd2, 0x16, 0xb9, 0x90, 0x6c, 0x23, 0x6a, 0x8e, 0xf6, 0xb3, 0x6d, 0xd6, +0xba, 0x30, 0x4d, 0xac, 0x6e, 0xeb, 0x95, 0x77, 0xaf, 0x69, 0xe1, 0x11, 0x44, 0xd0, 0xf4, 0xe3, +0xd1, 0x2a, 0x7e, 0xe0, 0x79, 0x32, 0x50, 0x14, 0xaa, 0xf2, 0x5c, 0x36, 0x5b, 0x08, 0xef, 0x84, +0xf4, 0x2b, 0xbf, 0x9f, 0x3c, 0x08, 0xe4, 0xa8, 0xac, 0x86, 0x08, 0x01, 0x86, 0x69, 0xd2, 0x58, +0xa3, 0x28, 0x3d, 0x3b, 0x35, 0x37, 0x21, 0xee, 0xeb, 0x08, 0xdc, 0x34, 0xda, 0x61, 0xa6, 0x2e, +0xd0, 0x16, 0xeb, 0xcb, 0x30, 0xc6, 0xa2, 0x3c, 0x7c, 0x88, 0x44, 0x79, 0x78, 0x27, 0x6c, 0x34, +0x78, 0xdf, 0x1a, 0xc0, 0x95, 0xb8, 0xf0, 0xd1, 0x0b, 0xb3, 0xb5, 0x77, 0x63, 0xd1, 0xce, 0x56, +0x82, 0x13, 0xa4, 0x3b, 0x0a, 0x7b, 0xd4, 0x78, 0x17, 0x92, 0x35, 0xc8, 0x0a, 0xb3, 0xed, 0x51, +0x17, 0x13, 0x1b, 0x62, 0xbf, 0x1c, 0x49, 0xf2, 0x76, 0x80, 0x1b, 0xaf, 0x50, 0xaa, 0xc0, 0x1b, +0xbd, 0xd6, 0x1a, 0xd2, 0x87, 0x86, 0x95, 0x4e, 0x6e, 0x82, 0xb2, 0x4f, 0xb7, 0xe8, 0xe1, 0xde, +0xa2, 0xc9, 0xdf, 0x25, 0xb8, 0x84, 0xee, 0x77, 0x1e, 0x60, 0xd6, 0x06, 0x89, 0xd7, 0xa5, 0x72, +0xcc, 0x05, 0xf1, 0xa2, 0x8a, 0xf4, 0xdf, 0xa5, 0x4e, 0x16, 0xfa, 0x00, 0xb3, 0x75, 0x45, 0xac, +0x4c, 0x01, 0xc4, 0x45, 0x9a, 0x53, 0x2f, 0x94, 0x5e, 0x5e, 0xf2, 0xab, 0x06, 0x9e, 0x98, 0xb7, +0x0f, 0xfd, 0x10, 0xbe, 0xa1, 0x72, 0x1f, 0x88, 0xb7, 0x49, 0x59, 0x34, 0xbe, 0xff, 0x0b, 0x36, +0x90, 0x3b, 0x02, 0x79, 0xbe, 0xed, 0x0b, 0xeb, 0x8e, 0x07, 0x01, 0x88, 0x2d, 0xcc, 0x92, 0xa3, +0x04, 0x76, 0xbd, 0x71, 0x62, 0x41, 0x45, 0x3a, 0x45, 0x66, 0x79, 0xfa, 0x59, 0xc6, 0xba, 0xb8, +0x68, 0xf7, 0x93, 0x43, 0xcf, 0x95, 0x5a, 0x2e, 0x38, 0x47, 0x87, 0xc6, 0x6d, 0xea, 0x80, 0x39, +0x27, 0x69, 0xaa, 0x4f, 0x92, 0x48, 0x68, 0x41, 0xf1, 0x45, 0xa3, 0xed, 0x5b, 0xcc, 0x68, 0x9f, +0xfc, 0x11, 0x02, 0x34, 0xd4, 0x8d, 0x1b, 0x37, 0x03, 0x84, 0xe5, 0x4d, 0x8e, 0x39, 0x59, 0xde, +0x06, 0x02, 0x99, 0x7e, 0x5e, 0xa1, 0x03, 0xcc, 0x99, 0xa6, 0x40, 0x2d, 0x72, 0x0e, 0xeb, 0x05, +0x50, 0xb3, 0xfd, 0x2c, 0x83, 0xa8, 0x07, 0xd4, 0xa5, 0xac, 0x5c, 0x1a, 0x87, 0xa2, 0x86, 0x69, +0xeb, 0x18, 0x08, 0x92, 0xb3, 0xf4, 0x1f, 0x9e, 0x31, 0x12, 0xe5, 0x8b, 0xc8, 0xa9, 0x6e, 0xbd, +0xf1, 0xfb, 0x0d, 0x80, 0x25, 0x80, 0x39, 0xfa, 0x17, 0xc8, 0xbb, 0xf1, 0x45, 0x48, 0x17, 0x52, +0x46, 0x97, 0x42, 0x91, 0x76, 0x9f, 0x14, 0x0c, 0xf0, 0xe7, 0xfe, 0x99, 0xef, 0x4e, 0x3a, 0xa6, +0x04, 0x8b, 0xa1, 0x12, 0xee, 0x10, 0xc1, 0x39, 0x20, 0x25, 0x42, 0x56, 0x58, 0x62, 0x81, 0x21, +0xa0, 0xc2, 0x83, 0x49, 0x70, 0xa7, 0xb5, 0xcd, 0xae, 0x7a, 0x0f, 0x13, 0x86, 0x6a, 0x1a, 0x5a, +0xfb, 0xac, 0x9b, 0xc7, 0x2e, 0x71, 0xff, 0xfd, 0xc7, 0x27, 0x06, 0x56, 0x2f, 0xa5, 0xcd, 0xd1, +0x2a, 0xe7, 0x07, 0x2a, 0xde, 0xe1, 0x13, 0xbd, 0x2f, 0xb1, 0x81, 0x39, 0x5a, 0x90, 0x77, 0xb3, +0xa7, 0x50, 0x8a, 0xe5, 0x16, 0x76, 0xaf, 0xe4, 0xa2, 0x34, 0x03, 0xf4, 0x01, 0x74, 0x0b, 0x07, +0xbd, 0xb0, 0x48, 0xdf, 0x9f, 0xee, 0xca, 0xb0, 0x3a, 0x8c, 0x64, 0xa9, 0x8d, 0x02, 0x27, 0x79, +0x50, 0xaa, 0xff, 0x58, 0xe8, 0x5e, 0xf0, 0xdd, 0x5b, 0x0c, 0x41, 0xac, 0xe6, 0x5d, 0xd9, 0x96, +0xdd, 0xcf, 0xaf, 0x6b, 0x7b, 0x5e, 0x68, 0x9a, 0x08, 0xf2, 0x4e, 0xd1, 0xd1, 0x8b, 0xca, 0xd3, +0xb6, 0x65, 0xb5, 0x02, 0xc9, 0xf2, 0x47, 0x58, 0x0c, 0xfa, 0x55, 0xd3, 0x3b, 0xe8, 0x13, 0x27, +0x86, 0x71, 0xfd, 0x83, 0x39, 0x26, 0xd6, 0x53, 0x5d, 0x28, 0xf3, 0xca, 0xf2, 0x3a, 0xcb, 0x53, +0x81, 0x6a, 0x35, 0x9a, 0xda, 0xcb, 0x2e, 0x68, 0x02, 0x3f, 0xc9, 0x08, 0xb0, 0x99, 0xb3, 0x24, +0x94, 0xe0, 0x7a, 0xfd, 0xc7, 0xc7, 0xa8, 0x0a, 0xfe, 0x92, 0xa1, 0x85, 0x19, 0x5b, 0x39, 0x71, +0xd9, 0x85, 0xa0, 0xe4, 0xe3, 0x1a, 0xda, 0x41, 0x7d, 0x18, 0xf3, 0x82, 0x80, 0x30, 0xe5, 0x45, +0xe7, 0xc2, 0xe2, 0xa2, 0x2b, 0xce, 0x41, 0x3f, 0x8d, 0x7a, 0x40, 0x3f, 0xdf, 0xac, 0xfc, 0x77, +0x83, 0xb0, 0x7b, 0x8e, 0xe3, 0x15, 0x66, 0x2f, 0xe9, 0xde, 0x03, 0x6b, 0x36, 0xfc, 0xf1, 0x13, +0x50, 0x2d, 0x51, 0x5b, 0x2d, 0xe4, 0x39, 0x9e, 0xf2, 0xc1, 0x24, 0x44, 0x0d, 0x30, 0x11, 0x85, +0xa6, 0x41, 0x18, 0xf5, 0xd3, 0x94, 0x80, 0x61, 0x82, 0x4a, 0x78, 0x57, 0xaf, 0x73, 0x58, 0x7d, +0x36, 0x28, 0x41, 0x4c, 0x46, 0xb4, 0xd0, 0x1b, 0xf2, 0xd9, 0x99, 0x57, 0x91, 0x42, 0x82, 0x9f, +0xd0, 0x6a, 0x2b, 0xe4, 0x00, 0xaf, 0xa6, 0x63, 0x81, 0xe4, 0x09, 0x97, 0xd5, 0x22, 0x68, 0x4d, +0x78, 0x49, 0x4a, 0x55, 0x3f, 0x61, 0xad, 0xa8, 0x91, 0x29, 0x06, 0x74, 0xb9, 0x9d, 0x9a, 0xa0, +0xab, 0xba, 0x9d, 0x89, 0x3a, 0xe5, 0xa5, 0xce, 0xc0, 0x3c, 0x37, 0xde, 0xd8, 0x85, 0x9d, 0x3f, +0xee, 0xef, 0xe8, 0xb7, 0xb7, 0x58, 0xf7, 0xed, 0x5d, 0x14, 0xad, 0xde, 0xee, 0xa4, 0x38, 0xdf, +0x0d, 0x11, 0xc9, 0x14, 0x89, 0xd9, 0x25, 0xc2, 0x9d, 0x58, 0x61, 0xc6, 0xed, 0x60, 0x4b, 0x4d, +0x96, 0x25, 0x55, 0xfd, 0xe9, 0xf9, 0xc5, 0x75, 0x51, 0xbf, 0xe4, 0xf6, 0xf6, 0x4e, 0x9f, 0xad, +0xb1, 0x8a, 0x9e, 0x6a, 0x85, 0x75, 0xd0, 0x46, 0x02, 0xd3, 0xca, 0x30, 0xa9, 0xd1, 0x7a, 0x97, +0xd9, 0xc9, 0x3d, 0x8c, 0x4b, 0x55, 0xb8, 0x74, 0xa6, 0x4d, 0x8f, 0x70, 0x9a, 0x56, 0x99, 0x6a, +0xc8, 0xc6, 0xd3, 0x78, 0x6e, 0x19, 0x73, 0x38, 0xb8, 0xff, 0x12, 0x8c, 0xd4, 0xec, 0x17, 0x85, +0x16, 0xcb, 0xad, 0xa3, 0xa2, 0x50, 0x26, 0xc2, 0x66, 0x27, 0xac, 0x4c, 0x29, 0x15, 0xc9, 0x19, +0xac, 0xda, 0xce, 0xb1, 0x41, 0xc6, 0x3b, 0xe0, 0x86, 0xd3, 0x42, 0xd6, 0x50, 0xd5, 0xf4, 0x2b, +0xad, 0x03, 0xc8, 0xfe, 0x55, 0x2d, 0x93, 0x34, 0x46, 0xfc, 0x6b, 0x15, 0x07, 0x96, 0xa3, 0xdb, +0x65, 0x0e, 0xe6, 0x58, 0x0f, 0xa6, 0xfe, 0xc6, 0x4e, 0x90, 0xf4, 0x69, 0xd5, 0xc6, 0x4c, 0x09, +0x14, 0x23, 0x1b, 0x83, 0xb0, 0x0e, 0x4f, 0x34, 0x95, 0xb2, 0x7f, 0x7c, 0x32, 0xbe, 0xdf, 0x40, +0x90, 0x76, 0x60, 0x61, 0x72, 0x52, 0x32, 0xad, 0x6d, 0x38, 0xed, 0x01, 0x01, 0x3d, 0x40, 0xaf, +0x74, 0x8f, 0x16, 0x53, 0x22, 0x2a, 0xb8, 0xad, 0xab, 0x4f, 0xce, 0xf7, 0x39, 0x58, 0x28, 0x7e, +0x41, 0x98, 0xad, 0x4f, 0xd6, 0x3f, 0x3c, 0xdb, 0x23, 0x92, 0x8c, 0x63, 0x1d, 0xcf, 0x8e, 0xfd, +0x0b, 0xce, 0xef, 0xa8, 0xaa, 0x38, 0x85, 0xed, 0xfd, 0xf1, 0x5c, 0xe4, 0xc8, 0x8c, 0xe4, 0x2d, +0xb5, 0xf4, 0xf0, 0x83, 0x28, 0x16, 0x08, 0x00, 0x7b, 0xd0, 0x45, 0x32, 0x08, 0xb8, 0xbb, 0x99, +0x6a, 0x16, 0x1d, 0x32, 0x9f, 0x05, 0x61, 0xae, 0x7b, 0xee, 0x0c, 0x55, 0x9d, 0xf4, 0xd4, 0x55, +0x5c, 0xdc, 0x7f, 0x06, 0xfb, 0x6f, 0x1c, 0xcf, 0x42, 0xf3, 0x8e, 0x83, 0x4b, 0x78, 0xce, 0xc8, +0x90, 0x78, 0xcd, 0x77, 0x67, 0x51, 0xf9, 0x61, 0x20, 0x37, 0xa9, 0x2a, 0x36, 0xd0, 0x8f, 0xb0, +0x91, 0x19, 0xc7, 0x43, 0xe6, 0xf1, 0x6b, 0x83, 0xe5, 0x26, 0x2a, 0x2d, 0x1e, 0x05, 0x1b, 0x71, +0x1d, 0xd2, 0x8a, 0x3d, 0x62, 0xed, 0x29, 0x90, 0xc2, 0x25, 0xd6, 0x7c, 0x80, 0x24, 0x37, 0x08, +0x6b, 0xfb, 0xc2, 0xd4, 0x2b, 0xf1, 0x27, 0x23, 0xdf, 0xd3, 0xe1, 0x1d, 0xb3, 0x5a, 0xdd, 0xc7, +0x86, 0xe4, 0x6f, 0xe8, 0x99, 0x57, 0x85, 0x9f, 0x33, 0x57, 0x72, 0x9e, 0xb2, 0xe8, 0x97, 0xe4, +0x69, 0x74, 0x22, 0xc3, 0x37, 0x4f, 0xd5, 0x94, 0x65, 0xd1, 0xbd, 0xc3, 0xe2, 0x53, 0xba, 0x81, +0x20, 0x91, 0xa0, 0x1b, 0x43, 0x6e, 0x34, 0x31, 0x7c, 0x2e, 0x0a, 0xbd, 0x54, 0x16, 0x30, 0x6b, +0xda, 0x00, 0x1e, 0x6e, 0x26, 0x14, 0x60, 0x49, 0x43, 0xdd, 0x4c, 0x31, 0xf1, 0xc2, 0x4c, 0x2d, +0xfd, 0x49, 0x30, 0xca, 0x52, 0x2f, 0x56, 0x5e, 0x44, 0xdf, 0xe7, 0x03, 0x61, 0x07, 0x79, 0x93, +0xbc, 0x6d, 0x47, 0x68, 0x96, 0xaf, 0x1b, 0x8c, 0x69, 0xc8, 0xb3, 0x8b, 0xc7, 0x25, 0xa2, 0x81, +0x3d, 0xf5, 0x61, 0xf3, 0x62, 0x3f, 0xa7, 0x48, 0x78, 0x50, 0x86, 0x0d, 0x1d, 0x11, 0x59, 0x2c, +0x0e, 0x21, 0x36, 0x1e, 0xa2, 0x27, 0x50, 0x9f, 0x70, 0x2f, 0x30, 0x31, 0xf3, 0xe6, 0x57, 0x7f, +0xf2, 0xc2, 0x39, 0xdf, 0x02, 0x2b, 0x48, 0xb8, 0x28, 0xac, 0xb7, 0x27, 0x6f, 0xcf, 0x22, 0xf3, +0x0d, 0x9c, 0x05, 0xe7, 0x87, 0xfa, 0x2e, 0x8f, 0xdd, 0x4d, 0xab, 0x2e, 0xda, 0x6e, 0x04, 0x47, +0x76, 0x44, 0xe6, 0x1a, 0x31, 0x35, 0x28, 0x5b, 0x8d, 0xef, 0xaa, 0xa3, 0x3b, 0x7e, 0x78, 0x88, +0xf1, 0x42, 0xec, 0x4e, 0x91, 0x8d, 0x5e, 0xa1, 0x52, 0xe1, 0x54, 0xe9, 0x43, 0x63, 0x57, 0xe0, +0xb0, 0xc7, 0x9c, 0xbe, 0x28, 0x6a, 0xab, 0xd0, 0xc9, 0x75, 0xa8, 0xa2, 0xa3, 0xd6, 0x09, 0x6b, +0x20, 0xff, 0x77, 0x83, 0x0e, 0x97, 0x21, 0x0f, 0xe7, 0x74, 0xef, 0x8d, 0xa4, 0xdb, 0x92, 0x31, +0x69, 0x52, 0x1a, 0x18, 0x89, 0xbf, 0xa8, 0xef, 0x40, 0x81, 0xf5, 0x10, 0xe6, 0x17, 0xf7, 0x44, +0x3e, 0xcb, 0x32, 0x16, 0xf8, 0x46, 0x00, 0x68, 0x75, 0x76, 0xb4, 0x5c, 0xf7, 0xc1, 0xa8, 0x4f, +0x33, 0xab, 0xba, 0x14, 0x4b, 0x05, 0xee, 0xab, 0x03, 0x47, 0xb3, 0x02, 0xdd, 0x17, 0x67, 0x1e, +0xc6, 0xed, 0xe1, 0x4f, 0x75, 0x72, 0x80, 0x34, 0xc7, 0xb4, 0x9e, 0xf9, 0x8f, 0xf1, 0xb9, 0x0f, +0x47, 0x37, 0x9d, 0x53, 0xcc, 0x76, 0x00, 0x68, 0x54, 0xa0, 0xa4, 0x87, 0x98, 0x53, 0xfd, 0x0c, +0x70, 0x5b, 0xb3, 0x20, 0xa5, 0xe5, 0xf8, 0x7d, 0x11, 0x27, 0x8a, 0x57, 0x94, 0x2c, 0xe6, 0x87, +0x9c, 0x44, 0xc3, 0xb6, 0x1e, 0x34, 0x98, 0x43, 0x69, 0xc6, 0x1f, 0x81, 0x53, 0x6e, 0x64, 0xf9, +0x05, 0x56, 0xf4, 0x9f, 0xd9, 0xd8, 0x4b, 0x1a, 0xf5, 0x45, 0xfc, 0x36, 0x77, 0x37, 0x66, 0x13, +0x87, 0xef, 0xfe, 0x4a, 0xb6, 0xfa, 0x01, 0x1f, 0x98, 0x61, 0xcd, 0xeb, 0x49, 0x27, 0x4b, 0x39, +0x27, 0x24, 0x5f, 0x9f, 0xb2, 0x69, 0x2f, 0x7a, 0xac, 0xe8, 0x3f, 0x0c, 0xda, 0x2a, 0x9b, 0x88, +0xc7, 0xe5, 0xbe, 0x22, 0xe1, 0xb2, 0xbd, 0x79, 0xf3, 0xd5, 0x70, 0x01, 0x4e, 0xc4, 0xc1, 0xf8, +0xbf, 0x26, 0x1d, 0xc6, 0x0b, 0x99, 0x0c, 0xff, 0xb2, 0xfd, 0x67, 0x19, 0x2f, 0x97, 0x7f, 0x4d, +0xef, 0xa4, 0x0b, 0xd6, 0x41, 0x27, 0xb2, 0x50, 0x3c, 0x63, 0x06, 0x75, 0x23, 0x1f, 0x09, 0x02, +0x7a, 0x4b, 0xf7, 0xfc, 0xd8, 0xb0, 0xff, 0xdb, 0x45, 0x77, 0x49, 0xdd, 0xe9, 0x52, 0x3c, 0xb9, +0x2d, 0x32, 0x91, 0x6b, 0x96, 0xc6, 0x24, 0xcd, 0xa4, 0x4b, 0x7e, 0x8c, 0xfd, 0x07, 0xc5, 0x96, +0x21, 0xc9, 0x43, 0x26, 0x0f, 0xd1, 0x70, 0x80, 0x6b, 0xa2, 0x92, 0x1c, 0xad, 0x46, 0x9d, 0x0c, +0x20, 0x66, 0x50, 0x7b, 0x60, 0xad, 0x87, 0x29, 0x0a, 0x04, 0x1b, 0xc6, 0xda, 0x9c, 0xfe, 0x62, +0xf7, 0x28, 0x4b, 0x52, 0x73, 0xc6, 0x0f, 0x50, 0x15, 0xba, 0xb1, 0xf4, 0xe3, 0x91, 0x82, 0x47, +0x8a, 0xa0, 0x78, 0x81, 0x36, 0xf5, 0xc2, 0xf5, 0xc8, 0x16, 0x19, 0x38, 0xd9, 0xb2, 0x93, 0x9b, +0x35, 0xf4, 0x59, 0x1d, 0x86, 0x7c, 0xf0, 0x56, 0x8f, 0x72, 0x51, 0x88, 0xec, 0x45, 0x08, 0x45, +0xa9, 0x9c, 0xdd, 0xf2, 0xdf, 0xe9, 0x3d, 0x1a, 0x89, 0xcd, 0x3c, 0x89, 0x17, 0xe0, 0xf6, 0xbf, +0xe1, 0x03, 0x78, 0x73, 0x21, 0x16, 0xe5, 0xbf, 0xe9, 0x52, 0xb9, 0x54, 0xe8, 0xd0, 0x03, 0xc0, +0x8b, 0xc8, 0xf6, 0x45, 0x6c, 0xb5, 0x90, 0x78, 0x9f, 0x7c, 0x34, 0x03, 0x18, 0xda, 0x2a, 0xb5, +0x55, 0x40, 0xa1, 0x32, 0x15, 0x31, 0x9d, 0x66, 0xeb, 0x42, 0x49, 0x9b, 0x1b, 0xba, 0x28, 0x4d, +0x9d, 0xf8, 0xac, 0x43, 0xfd, 0x89, 0x44, 0x93, 0x87, 0x83, 0xc4, 0xb7, 0x89, 0x69, 0x6f, 0xd2, +0x44, 0xe0, 0x37, 0xec, 0x8c, 0x96, 0xc2, 0xcc, 0xda, 0x2a, 0x89, 0x67, 0x31, 0x97, 0xa9, 0x50, +0x0c, 0x0e, 0xce, 0x1d, 0xd6, 0xb1, 0x3c, 0x26, 0xc4, 0x3c, 0xf2, 0xb6, 0xc1, 0xe9, 0x49, 0x0d, +0x89, 0x28, 0x55, 0x87, 0xed, 0xf6, 0x2b, 0xf4, 0xc2, 0xe5, 0xe2, 0xe6, 0x1b, 0xa5, 0xe4, 0xf9, +0xde, 0x8b, 0x0d, 0x6f, 0x92, 0x62, 0xd4, 0x9b, 0x9e, 0x06, 0x7f, 0xc9, 0x53, 0x5d, 0xef, 0xfa, +0x14, 0x77, 0x40, 0x58, 0xa9, 0x5c, 0x23, 0x79, 0x5c, 0x8f, 0x2b, 0x5d, 0xf5, 0x50, 0xcc, 0xee, +0x43, 0xb0, 0xd3, 0x6e, 0xc3, 0x15, 0x21, 0x3e, 0x05, 0x4f, 0xbe, 0x3e, 0xc8, 0x45, 0xbf, 0xba, +0xad, 0x79, 0x6c, 0xf6, 0xcb, 0xbd, 0x18, 0x7e, 0x3c, 0x26, 0x01, 0x9c, 0x05, 0x58, 0x6f, 0xd7, +0x75, 0x5c, 0xce, 0x4e, 0xf3, 0x72, 0x21, 0x1f, 0xc5, 0xb8, 0xeb, 0x75, 0xc0, 0x52, 0x86, 0xcc, +0xff, 0xdf, 0x0e, 0x6b, 0x4a, 0xac, 0xee, 0x56, 0x0a, 0x06, 0xc4, 0x77, 0x35, 0x7b, 0x43, 0x6e, +0x7d, 0x78, 0x0d, 0xce, 0xce, 0xb3, 0xb4, 0x95, 0xa0, 0x59, 0x98, 0xeb, 0x61, 0x03, 0x2a, 0xdf, +0x28, 0x75, 0x5d, 0x02, 0x4b, 0x6a, 0xc6, 0x83, 0xd4, 0x80, 0x03, 0x76, 0xb0, 0xad, 0x01, 0x5b, +0x55, 0xa0, 0xa2, 0xe4, 0x17, 0x0a, 0xe6, 0x42, 0x0f, 0x7f, 0x01, 0xb1, 0x03, 0x67, 0x11, 0xff, +0x04, 0x82, 0x55, 0x98, 0x46, 0xe0, 0xcd, 0x5f, 0xa6, 0x2d, 0x50, 0x0a, 0x6d, 0x4c, 0xa0, 0x54, +0x45, 0x21, 0xd7, 0xad, 0x20, 0xfa, 0x34, 0xc4, 0x25, 0x24, 0x58, 0x38, 0xdb, 0x44, 0x7c, 0x7d, +0x0d, 0x74, 0x2c, 0x6e, 0x0e, 0x27, 0x8a, 0xc4, 0x5c, 0x89, 0xef, 0xbf, 0x39, 0x7d, 0xc2, 0xb8, +0x68, 0xdb, 0xb4, 0x6f, 0x48, 0x05, 0x4f, 0xc3, 0x01, 0xdf, 0xf2, 0x2e, 0x92, 0x9b, 0x87, 0x48, +0x6c, 0x07, 0xbc, 0xeb, 0x5a, 0x1f, 0x87, 0xe2, 0x82, 0xc5, 0x6e, 0xb4, 0xfb, 0xfa, 0x87, 0x53, +0xd8, 0x55, 0x8c, 0xd2, 0xef, 0x49, 0xdb, 0xd2, 0xc9, 0xb3, 0x2a, 0xc0, 0xdf, 0xba, 0x56, 0x44, +0xab, 0xa8, 0xfb, 0xaf, 0x01, 0x0c, 0x42, 0x66, 0xf8, 0xb9, 0x27, 0x7e, 0xd1, 0xda, 0x07, 0xe0, +0x66, 0x29, 0x2f, 0x34, 0x1d, 0x81, 0xc2, 0x44, 0x7c, 0xe3, 0xca, 0x07, 0x04, 0x66, 0xa9, 0x18, +0x90, 0xee, 0xfc, 0x50, 0xed, 0x27, 0xce, 0xb6, 0x65, 0xd4, 0x5b, 0xe0, 0x48, 0x9f, 0x2d, 0x4f, +0x28, 0xc5, 0x32, 0x4b, 0x32, 0x08, 0x08, 0x3d, 0x8c, 0x6c, 0x88, 0x02, 0xaa, 0xd6, 0x0b, 0x75, +0xee, 0xfe, 0x76, 0x93, 0x52, 0xf5, 0xa5, 0x61, 0xf4, 0xec, 0x44, 0xd2, 0xc1, 0x33, 0x27, 0x77, +0x28, 0xb1, 0x5b, 0x8e, 0x8f, 0x96, 0x50, 0x6e, 0xe5, 0xcc, 0x29, 0xe2, 0x7f, 0x01, 0xa1, 0xc4, +0xa4, 0x54, 0x78, 0xe7, 0xc7, 0xbd, 0x8c, 0x16, 0xbc, 0xbb, 0x74, 0xf3, 0x17, 0x51, 0xf1, 0x2a, +0x17, 0xcf, 0x1b, 0x8f, 0xee, 0x71, 0x1d, 0x9d, 0x2a, 0x7e, 0x57, 0xcf, 0xab, 0x5c, 0xca, 0xb4, +0x43, 0x2a, 0xd4, 0x54, 0x44, 0xcb, 0x87, 0x7e, 0x8b, 0xe1, 0xf0, 0x45, 0xb6, 0xe6, 0x5c, 0x72, +0x96, 0x10, 0x23, 0x69, 0xf4, 0x15, 0x63, 0xcb, 0x4a, 0x65, 0xfe, 0xa1, 0x72, 0x21, 0x08, 0x32, +0x45, 0xf3, 0x14, 0xe1, 0xc8, 0xd3, 0xca, 0xb0, 0xa1, 0x8d, 0xe8, 0x2b, 0x73, 0x7d, 0xee, 0x70, +0xf2, 0x2d, 0x46, 0x27, 0xaf, 0x75, 0x71, 0x24, 0xe1, 0xdd, 0xbb, 0x98, 0xab, 0x54, 0x51, 0xfb, +0x21, 0xf6, 0x67, 0xe9, 0xe2, 0xf6, 0x61, 0xb7, 0x89, 0x60, 0x24, 0x5e, 0x23, 0xe5, 0x4f, 0x33, +0xb6, 0xef, 0xd9, 0xfa, 0x50, 0x2b, 0xc3, 0x60, 0xe7, 0xfd, 0xff, 0x1c, 0x69, 0x95, 0xb1, 0xfa, +0xed, 0x6b, 0xe2, 0x9e, 0x0c, 0xba, 0x56, 0x75, 0x4d, 0x31, 0x45, 0xdd, 0xfa, 0x38, 0x7d, 0x95, +0x44, 0xb1, 0xad, 0x5c, 0x36, 0x39, 0x5b, 0xa5, 0xff, 0x0f, 0x6e, 0x41, 0x13, 0x1a, 0x73, 0x20, +0xdd, 0x18, 0xda, 0x79, 0x8d, 0x93, 0xa4, 0x57, 0x50, 0x24, 0x0f, 0xb0, 0xf3, 0xc1, 0x61, 0x4a, +0xb7, 0xf9, 0xae, 0xb5, 0x8a, 0xe3, 0x01, 0x3a, 0x6c, 0xab, 0x1c, 0xd9, 0x40, 0xa3, 0xbc, 0xed, +0x64, 0x01, 0x0a, 0x4e, 0xd4, 0x01, 0x93, 0x79, 0x28, 0x1c, 0x9f, 0x8e, 0x6c, 0xff, 0x6c, 0xeb, +0xbd, 0xd9, 0x6f, 0x7f, 0xb6, 0x9d, 0x02, 0xd1, 0x18, 0x02, 0x29, 0x7b, 0x97, 0x3a, 0x1c, 0x19, +0xde, 0x9b, 0x0f, 0x23, 0x18, 0x2c, 0x25, 0x1b, 0x87, 0x59, 0x28, 0xb7, 0x1d, 0x92, 0xbf, 0x1b, +0x45, 0xf3, 0xee, 0xbe, 0xf6, 0x21, 0x4b, 0xc2, 0xd4, 0x05, 0xfc, 0x34, 0x87, 0x00, 0x9e, 0x2c, +0x5c, 0xb8, 0x24, 0x01, 0x13, 0xeb, 0xe6, 0xf7, 0xf3, 0x6c, 0x23, 0x41, 0x13, 0xa7, 0x7c, 0xe1, +0x8c, 0xf5, 0x6d, 0x8a, 0xc4, 0xba, 0x14, 0x11, 0x08, 0x52, 0x17, 0x47, 0xbe, 0x50, 0x12, 0xf8, +0x22, 0x9a, 0x50, 0x2d, 0x05, 0xa0, 0x9e, 0x24, 0x69, 0x9a, 0x97, 0x79, 0x56, 0x67, 0x99, 0x4e, +0x52, 0x35, 0xa8, 0x9b, 0x18, 0x56, 0xf9, 0x1c, 0xea, 0xd7, 0x7f, 0x06, 0x6a, 0xfc, 0x85, 0xe3, +0x71, 0xdc, 0x74, 0xc6, 0x75, 0x8e, 0x65, 0xa7, 0x35, 0xb3, 0x51, 0x8e, 0xbc, 0xe1, 0xf0, 0xe1, +0x1d, 0x8f, 0x5e, 0x7c, 0xb1, 0xe1, 0xb3, 0x09, 0x88, 0xd4, 0x29, 0xd8, 0x34, 0x84, 0xf4, 0x6d, +0x55, 0x1d, 0xb4, 0x81, 0x91, 0x7c, 0xd1, 0x1c, 0x7c, 0xd4, 0x8f, 0xa4, 0x8a, 0x88, 0x47, 0xb5, +0x82, 0xef, 0x69, 0x78, 0xb3, 0x88, 0xa0, 0xbe, 0x50, 0x0c, 0xfd, 0xa8, 0x81, 0x51, 0x6a, 0x68, +0xf5, 0xf8, 0xfc, 0xb8, 0x53, 0xf7, 0x6f, 0x2d, 0x47, 0x06, 0x88, 0x7e, 0x83, 0x28, 0x58, 0xb8, +0x82, 0xa2, 0x1e, 0xf5, 0xd2, 0x17, 0xa9, 0xc4, 0x89, 0x4b, 0xef, 0x94, 0xf8, 0xa7, 0xb6, 0xe5, +0x14, 0x41, 0x84, 0x97, 0xa7, 0x94, 0xab, 0xa8, 0x93, 0xec, 0xa2, 0x14, 0xba, 0x39, 0xd4, 0x41, +0xb6, 0xdc, 0x1f, 0x00, 0xe7, 0x41, 0xf5, 0xf3, 0x5d, 0x69, 0xeb, 0x81, 0x20, 0xa7, 0x36, 0x53, +0x48, 0x9f, 0x63, 0x06, 0x86, 0x9e, 0x68, 0x30, 0x61, 0x30, 0x24, 0x14, 0x56, 0xe3, 0x5c, 0x15, +0x67, 0x94, 0x16, 0xb3, 0xc3, 0xf5, 0xc1, 0xe3, 0x20, 0xff, 0x6c, 0x70, 0x6f, 0x2f, 0x7c, 0x44, +0x80, 0x92, 0x7f, 0x45, 0x59, 0x30, 0x4c, 0xf0, 0x47, 0x53, 0x4f, 0xdf, 0xea, 0xa0, 0xc3, 0x3b, +0xcc, 0x81, 0xd3, 0xc4, 0xbf, 0xfe, 0x12, 0x3b, 0xe3, 0x75, 0x45, 0x52, 0x3d, 0x54, 0xdd, 0xa4, +0xd2, 0xe1, 0xa4, 0x9c, 0x8b, 0x55, 0xfa, 0x00, 0x86, 0x2a, 0x3a, 0x41, 0xd9, 0x1f, 0xd4, 0xc0, +0x87, 0x64, 0xb6, 0x7d, 0x58, 0x60, 0x6a, 0x78, 0xdc, 0x31, 0x1d, 0x0e, 0x4d, 0x54, 0x22, 0x5d, +0xf3, 0x3b, 0x68, 0xcf, 0xfd, 0x45, 0x10, 0x9a, 0x1a, 0xc3, 0x2c, 0x83, 0x10, 0x25, 0x86, 0x70, +0x95, 0x61, 0xaf, 0xac, 0x55, 0xa9, 0xe4, 0x02, 0x08, 0xc5, 0x3d, 0x43, 0xde, 0x70, 0xe2, 0x8c, +0x7d, 0xca, 0x56, 0x59, 0x2f, 0x2d, 0x3d, 0xdb, 0x7e, 0xec, 0xa9, 0x5b, 0x12, 0x6c, 0xf2, 0x69, +0x7c, 0xc6, 0x39, 0x80, 0x57, 0x15, 0x2c, 0x7f, 0x47, 0x31, 0x8c, 0xc7, 0x72, 0x85, 0xdd, 0x8c, +0x88, 0x33, 0x80, 0x9e, 0xe8, 0x8f, 0x49, 0x54, 0x79, 0x75, 0x20, 0x6b, 0x3f, 0x63, 0x7a, 0xa5, +0x13, 0x6a, 0x81, 0x8b, 0x10, 0x3f, 0x0e, 0x5d, 0xe3, 0x21, 0x88, 0x0d, 0xcc, 0xfc, 0xd1, 0xf5, +0x87, 0x5a, 0x87, 0x24, 0x1e, 0x91, 0x7c, 0xd3, 0x2b, 0x5d, 0xe5, 0xdc, 0x2b, 0x3f, 0x18, 0x4f, +0xf0, 0x92, 0xb1, 0x5e, 0x4f, 0xd5, 0xc5, 0x47, 0xcc, 0xf1, 0x75, 0x60, 0x54, 0x90, 0x91, 0xa9, +0x9e, 0xe2, 0x27, 0x8d, 0x04, 0xb0, 0x19, 0x71, 0x25, 0x53, 0x4c, 0x11, 0x82, 0x95, 0x9e, 0xab, +0x20, 0x4c, 0xdb, 0x1f, 0x15, 0x90, 0x46, 0xac, 0x01, 0x38, 0xf7, 0x20, 0x3f, 0x34, 0xae, 0xf2, +0xab, 0xfb, 0x4c, 0x17, 0xe3, 0x0f, 0x1a, 0xc4, 0xbe, 0xd3, 0x22, 0xba, 0x8b, 0xdf, 0x08, 0x50, +0x10, 0x7d, 0x9c, 0xf5, 0xca, 0xd9, 0xa8, 0x9c, 0x3f, 0x33, 0x87, 0x4f, 0x4b, 0x99, 0x3a, 0xbf, +0x8b, 0x62, 0xb1, 0x54, 0x56, 0x8f, 0x12, 0x78, 0xa9, 0xed, 0xa7, 0x53, 0xa8, 0x10, 0xc5, 0xca, +0xc7, 0x0d, 0x83, 0xdb, 0x6b, 0x49, 0x92, 0x5f, 0x64, 0x6e, 0xa4, 0xec, 0x60, 0x7d, 0x37, 0xad, +0xff, 0x84, 0x88, 0xcd, 0x92, 0xb2, 0x76, 0x82, 0x24, 0x04, 0x01, 0xb0, 0x35, 0x1e, 0x95, 0x84, +0x3f, 0x43, 0xf7, 0xb1, 0xfd, 0x5d, 0x31, 0x1c, 0x04, 0x39, 0x24, 0x23, 0x77, 0xe5, 0x58, 0x47, +0xae, 0x9f, 0x1c, 0x90, 0xe2, 0x9e, 0xf5, 0x6f, 0x41, 0x83, 0x8a, 0x21, 0xbd, 0x54, 0x56, 0x86, +0x56, 0x64, 0x9d, 0x4c, 0xb1, 0xd0, 0xe4, 0x17, 0x96, 0x02, 0x60, 0x8f, 0x32, 0x69, 0xa5, 0x11, +0x6c, 0xe0, 0xe6, 0x45, 0xb0, 0xc3, 0x36, 0xf0, 0xb3, 0xf0, 0xde, 0x57, 0x7d, 0xde, 0x39, 0x6d, +0x5a, 0xe3, 0x3d, 0x6f, 0xa5, 0xe6, 0xd6, 0xfa, 0x5f, 0x33, 0xd7, 0x30, 0x17, 0x89, 0x0c, 0x3e, +0x0d, 0x59, 0x10, 0x3e, 0xda, 0x49, 0x0c, 0xc1, 0x43, 0xba, 0x9e, 0x56, 0xf5, 0x4a, 0xda, 0xf0, +0xc9, 0x95, 0x74, 0x7b, 0x17, 0x31, 0x9b, 0x37, 0x1a, 0x7b, 0x40, 0x6a, 0x56, 0xf7, 0x0f, 0x07, +0xcf, 0xb4, 0x49, 0x62, 0xcf, 0x88, 0x8f, 0x17, 0xf4, 0x78, 0x80, 0x4a, 0x1c, 0x42, 0x28, 0xbe, +0x91, 0x91, 0x9b, 0x67, 0xdb, 0xe5, 0x8b, 0xda, 0x82, 0xf1, 0xf2, 0x6f, 0xe7, 0x20, 0xde, 0x1d, +0xd5, 0xed, 0x8b, 0x93, 0x80, 0x1c, 0x2f, 0x80, 0x0a, 0x62, 0x91, 0x2f, 0x05, 0x63, 0x9b, 0xac, +0xd1, 0xbb, 0xe0, 0xaa, 0xde, 0xbe, 0x81, 0x57, 0xbe, 0xf2, 0xe5, 0x5b, 0x67, 0x48, 0x76, 0x72, +0x52, 0x5f, 0x61, 0x7e, 0x54, 0x84, 0x29, 0xd4, 0x7b, 0xe8, 0x71, 0x49, 0x78, 0x2d, 0xe7, 0xf0, +0xe1, 0x91, 0xc3, 0x85, 0xac, 0x6b, 0xd1, 0x1f, 0xe5, 0xa0, 0x45, 0x64, 0x49, 0xc3, 0xf1, 0x6b, +0x8f, 0x79, 0xce, 0x16, 0xd1, 0x80, 0x9c, 0xae, 0x27, 0x0b, 0x70, 0x7e, 0x2c, 0x05, 0xbc, 0xa1, +0x11, 0xa3, 0x55, 0xbd, 0x99, 0xfb, 0x27, 0xdc, 0x26, 0xc5, 0xb3, 0x51, 0x68, 0xb0, 0x6c, 0xf9, +0x2b, 0xb2, 0x52, 0xea, 0xb2, 0x4a, 0xde, 0x76, 0xa0, 0xda, 0x04, 0xdb, 0x37, 0x2a, 0x61, 0xfa, +0x53, 0x52, 0x93, 0x6b, 0x6c, 0xac, 0xf6, 0x12, 0xa8, 0x49, 0xbd, 0x19, 0x9c, 0x90, 0x70, 0xb0, +0xed, 0x6c, 0x58, 0x19, 0x26, 0xf2, 0x69, 0x41, 0xd5, 0xfe, 0x86, 0x12, 0x86, 0x2f, 0x58, 0x35, +0xa0, 0x60, 0xff, 0xb3, 0xb8, 0x08, 0x1a, 0x43, 0x6a, 0x2d, 0xa8, 0xed, 0x41, 0xe9, 0x21, 0x06, +0xc4, 0x9b, 0x37, 0x9e, 0x02, 0x38, 0xef, 0xac, 0x46, 0x01, 0x98, 0xe7, 0xdb, 0xb1, 0x59, 0xd8, +0xfb, 0x0a, 0x89, 0xe4, 0xc1, 0xcc, 0x13, 0x5d, 0xa1, 0xa1, 0xb0, 0x48, 0xe0, 0x09, 0xe7, 0xa7, +0x05, 0xca, 0x7f, 0xca, 0xf4, 0x74, 0x08, 0xb5, 0x69, 0x8f, 0x51, 0x4e, 0x0c, 0xea, 0xb9, 0x05, +0x1a, 0x93, 0xcc, 0x6b, 0xbe, 0x68, 0x35, 0xb3, 0x08, 0x38, 0x73, 0xa1, 0x6a, 0x6e, 0x5b, 0xea, +0xf5, 0x57, 0x84, 0x59, 0x7f, 0xda, 0x15, 0x40, 0x02, 0xf1, 0xbb, 0xfc, 0x5d, 0x77, 0xa4, 0x6d, +0x1f, 0x44, 0xbf, 0x71, 0x5d, 0x4f, 0xd0, 0x2a, 0xdc, 0xaf, 0x40, 0x10, 0x1c, 0xce, 0xd2, 0x4b, +0x04, 0xc8, 0x52, 0x9d, 0x37, 0x92, 0x1c, 0x4b, 0x80, 0x7e, 0xf6, 0x14, 0x97, 0x0e, 0xf4, 0x09, +0xdb, 0x48, 0xfa, 0x8e, 0xb9, 0xd2, 0x65, 0xa6, 0xe0, 0x59, 0xe3, 0x34, 0x66, 0xb9, 0x4c, 0xe0, +0x79, 0x7f, 0x9e, 0xfc, 0x50, 0x2d, 0x7e, 0x9d, 0xf3, 0x97, 0xc2, 0x4b, 0x4b, 0x06, 0xae, 0x5d, +0xf9, 0xf1, 0x06, 0x30, 0xd0, 0xfb, 0x51, 0x4e, 0x9a, 0x7a, 0x66, 0xdf, 0x3f, 0xe0, 0x3f, 0x63, +0x30, 0x60, 0xe0, 0x6f, 0x7c, 0xa5, 0x6b, 0x06, 0x59, 0x6f, 0xf6, 0x59, 0x7a, 0x45, 0x0c, 0x0d, +0xd5, 0x9d, 0xcc, 0xcf, 0xcf, 0x50, 0x0f, 0xf1, 0x94, 0xf5, 0x9f, 0xcc, 0x1c, 0xb7, 0xe1, 0xc3, +0xdc, 0x82, 0x43, 0x94, 0x95, 0x62, 0x8c, 0x6d, 0x26, 0xd0, 0xf4, 0x7e, 0x21, 0x8d, 0xaa, 0x67, +0x93, 0x19, 0xee, 0x74, 0x05, 0x5c, 0x33, 0x6e, 0x01, 0x68, 0x7b, 0x32, 0x3b, 0x89, 0x3e, 0x8c, +0x3f, 0x6c, 0x31, 0xf7, 0x81, 0x16, 0x8d, 0x1c, 0x8c, 0x4f, 0xe0, 0xd2, 0xf3, 0x33, 0x60, 0xf5, +0xc7, 0xb6, 0xd5, 0xf1, 0x94, 0x1d, 0xad, 0x23, 0x53, 0x07, 0xb5, 0xf7, 0x65, 0x89, 0xf6, 0x0f, +0xad, 0x01, 0x94, 0x6d, 0xd6, 0xc8, 0x94, 0x25, 0xd7, 0x1f, 0x8b, 0x11, 0x77, 0x53, 0x11, 0xd3, +0x3d, 0x24, 0xdd, 0x26, 0xc5, 0x54, 0x17, 0xa1, 0x06, 0xe8, 0xa2, 0xbd, 0x84, 0xf3, 0xbb, 0xdb, +0xa4, 0xe2, 0xae, 0xa0, 0x54, 0xc3, 0x87, 0x26, 0x02, 0x16, 0x44, 0xdb, 0xba, 0x20, 0xd5, 0xb8, +0x16, 0x70, 0xcb, 0x1d, 0xc7, 0xfa, 0x6b, 0x4f, 0xf8, 0x22, 0x13, 0x0d, 0x1a, 0x2b, 0x41, 0xf0, +0xc9, 0xef, 0xcd, 0x5c, 0x6c, 0xe8, 0x4a, 0x3a, 0x52, 0x24, 0x34, 0xe1, 0x38, 0xb3, 0x42, 0x5c, +0x79, 0x7c, 0x9f, 0x4a, 0xd6, 0x06, 0x68, 0x52, 0xd8, 0x52, 0x84, 0x56, 0xff, 0x1f, 0x04, 0x8e, +0x04, 0x33, 0x88, 0x0d, 0x3b, 0x49, 0x01, 0x8a, 0xde, 0xd5, 0x68, 0xe6, 0x44, 0x71, 0x24, 0xd4, +0x46, 0x6e, 0x8c, 0x0c, 0x09, 0xf2, 0xdc, 0xac, 0x45, 0x25, 0x06, 0x4d, 0x5a, 0x58, 0x29, 0x67, +0x33, 0xda, 0x85, 0x64, 0x48, 0xc2, 0x6f, 0xbf, 0x68, 0x24, 0x51, 0x52, 0x8b, 0x1f, 0x21, 0x59, +0x9c, 0xec, 0x92, 0x06, 0xde, 0x71, 0x59, 0xd7, 0x90, 0x48, 0x6a, 0x43, 0xa9, 0xd6, 0x23, 0x71, +0x99, 0x1b, 0x53, 0x08, 0x20, 0x88, 0x62, 0x61, 0x90, 0x23, 0xd4, 0x91, 0xa0, 0x80, 0x2b, 0xd2, +0x77, 0xdf, 0xb7, 0xd2, 0xfb, 0x71, 0x1e, 0xf8, 0x7b, 0x6c, 0x3c, 0xb4, 0x39, 0x0c, 0xfd, 0xd3, +0x6b, 0xe5, 0xf4, 0x49, 0x1c, 0x0a, 0x69, 0x1b, 0x2d, 0x25, 0x9c, 0xc5, 0xf0, 0x81, 0x8e, 0x48, +0xb0, 0x55, 0x28, 0xe3, 0x9a, 0x86, 0x85, 0x47, 0xec, 0x6f, 0x30, 0x5f, 0xf3, 0x7f, 0x9c, 0xc2, +0xea, 0x8a, 0xbe, 0xda, 0xef, 0x53, 0x9a, 0x4b, 0x75, 0xe0, 0xe9, 0x2e, 0x72, 0x6d, 0x7b, 0x29, +0x9a, 0x77, 0x33, 0xc6, 0xb9, 0x00, 0x34, 0xce, 0xc0, 0xc4, 0xb3, 0xeb, 0xa4, 0x33, 0xa9, 0x9d, +0xec, 0x21, 0x33, 0xb9, 0x55, 0x55, 0xdd, 0x5e, 0xad, 0x22, 0xe1, 0x67, 0x8c, 0xf0, 0xe2, 0xdd, +0xd4, 0xa6, 0x1c, 0xb8, 0xbc, 0x81, 0x21, 0x0e, 0x31, 0x36, 0x5c, 0x9c, 0x8c, 0x6d, 0xf6, 0x02, +0x2e, 0x06, 0xdb, 0x3f, 0x6a, 0x88, 0x16, 0x1a, 0xf8, 0x11, 0xc3, 0xb7, 0x9c, 0x3b, 0xbc, 0x53, +0xcc, 0xfd, 0x30, 0x9c, 0xea, 0x3d, 0x70, 0xbf, 0x97, 0x32, 0xf8, 0x16, 0xc8, 0xa4, 0xe9, 0x0d, +0xc2, 0x66, 0xd1, 0xe8, 0x40, 0xd1, 0x69, 0xeb, 0x8e, 0x76, 0xdf, 0xe8, 0xaf, 0x7c, 0xad, 0x49, +0x86, 0xfe, 0xf9, 0xb2, 0x73, 0x58, 0x53, 0xbe, 0x8e, 0xba, 0xcd, 0x45, 0x99, 0x73, 0x95, 0x17, +0x30, 0x16, 0xad, 0xc5, 0xf3, 0xed, 0x86, 0x21, 0xaf, 0x88, 0x6f, 0x0f, 0x9b, 0xfd, 0x88, 0x9e, +0x77, 0x71, 0x8a, 0x32, 0xd1, 0x97, 0x4b, 0x40, 0x77, 0xb7, 0x7d, 0x88, 0x9c, 0x7e, 0xfb, 0x51, +0xf2, 0x0e, 0x7d, 0x81, 0x11, 0x33, 0x7d, 0x43, 0xc1, 0xc7, 0x6b, 0x21, 0x5d, 0x19, 0x18, 0xf4, +0xfe, 0x63, 0xa6, 0xdf, 0x26, 0xea, 0x55, 0xa0, 0x34, 0x6a, 0xf6, 0xf0, 0xc3, 0x93, 0xb0, 0x0c, +0x54, 0xbb, 0xd5, 0xe9, 0xac, 0x34, 0x05, 0x9e, 0x47, 0x47, 0x4e, 0x9c, 0x88, 0xd5, 0x83, 0x03, +0x4f, 0xff, 0xc5, 0x20, 0x55, 0xef, 0xc8, 0xa2, 0x37, 0x99, 0x1f, 0x7d, 0xbe, 0xdf, 0xf6, 0x51, +0x57, 0x17, 0xd7, 0x17, 0x5a, 0x27, 0xfc, 0x06, 0x15, 0xe7, 0x68, 0xb3, 0x89, 0xc2, 0x26, 0xa5, +0xc6, 0xb0, 0xc0, 0x13, 0x78, 0x86, 0x8b, 0xb2, 0x43, 0x2f, 0xf4, 0x9b, 0x92, 0x53, 0x0b, 0x1f, +0x5b, 0xdd, 0x27, 0x26, 0xe0, 0xbb, 0x8e, 0x55, 0x7e, 0x84, 0x98, 0x6f, 0xea, 0x39, 0xaa, 0xef, +0x08, 0xaa, 0x4e, 0x5b, 0x5a, 0x60, 0x7a, 0x19, 0x74, 0xa6, 0xed, 0x37, 0x0f, 0xcd, 0x83, 0xd8, +0x57, 0x6f, 0xa1, 0xc8, 0xc6, 0x58, 0x6d, 0x6a, 0x0a, 0x42, 0xa0, 0xf5, 0x7a, 0x9e, 0xc5, 0x69, +0xeb, 0x58, 0x75, 0x10, 0x0a, 0xec, 0x12, 0xf5, 0x14, 0x28, 0x55, 0x46, 0x40, 0x0f, 0x48, 0xee, +0xd6, 0x80, 0x89, 0xf5, 0xd6, 0x55, 0x55, 0x72, 0xa2, 0x75, 0x29, 0xe1, 0x91, 0xd9, 0x81, 0x41, +0x76, 0xba, 0x9c, 0xed, 0xf9, 0x7e, 0xc7, 0x2c, 0x02, 0xb9, 0xae, 0xdd, 0xec, 0xfb, 0x5f, 0xc8, +0x1a, 0xb3, 0x2c, 0x4c, 0x44, 0x38, 0x05, 0x2c, 0x6f, 0xe9, 0x39, 0xa8, 0xa2, 0x66, 0x89, 0xd2, +0xb4, 0x0d, 0x7c, 0x25, 0x81, 0x84, 0xaa, 0x9f, 0xb1, 0x54, 0xcf, 0x00, 0xd8, 0xee, 0x43, 0x73, +0x6a, 0xdf, 0x31, 0x5a, 0x5f, 0xbb, 0x5c, 0x1e, 0x87, 0xca, 0xa3, 0x5d, 0xc5, 0xf5, 0xdb, 0x73, +0xba, 0xf9, 0xf4, 0x1f, 0x51, 0x71, 0x0c, 0x68, 0xb8, 0xd8, 0x58, 0xeb, 0xae, 0x26, 0x82, 0xdf, +0x18, 0xed, 0x83, 0x0b, 0x84, 0xf8, 0x41, 0x3b, 0x17, 0x80, 0x5f, 0xad, 0xc4, 0xa6, 0xec, 0x74, +0x3d, 0x80, 0x4f, 0xc8, 0x5c, 0x48, 0xb2, 0xd9, 0x66, 0x75, 0x4c, 0x27, 0x90, 0xa8, 0x93, 0x8a, +0x57, 0xbf, 0xda, 0xab, 0xd2, 0x22, 0x67, 0xe0, 0x63, 0xd1, 0xf2, 0x6d, 0xb5, 0xcd, 0x4a, 0x25, +0x76, 0x1e, 0x60, 0xd3, 0x6a, 0xc4, 0xe1, 0xdb, 0x93, 0xba, 0x94, 0x4b, 0x50, 0xc4, 0x16, 0x1a, +0xb9, 0xf2, 0x78, 0x7e, 0x3a, 0x0b, 0x39, 0xcf, 0x26, 0x40, 0xcc, 0x2b, 0x8d, 0xa9, 0xfd, 0x52, +0xdd, 0x01, 0x22, 0x3d, 0xf3, 0x43, 0x91, 0x32, 0x9c, 0x2a, 0xb9, 0x80, 0xbc, 0x4c, 0x98, 0x69, +0xd3, 0x8b, 0x88, 0x90, 0x76, 0x37, 0x95, 0x64, 0x80, 0x9d, 0x79, 0x0c, 0x15, 0x25, 0xed, 0x21, +0x91, 0x34, 0xa4, 0xaa, 0xb5, 0xb8, 0xf1, 0x7b, 0x82, 0x24, 0xd7, 0x9a, 0xc0, 0x8e, 0xe9, 0xda, +0xc4, 0xcd, 0xe6, 0x59, 0x6a, 0xe3, 0xa5, 0x23, 0xe1, 0xe0, 0x5a, 0xa5, 0xda, 0x5e, 0x22, 0x3a, +0x57, 0xe8, 0xed, 0xb7, 0x1f, 0x4e, 0x54, 0xa4, 0x87, 0xbf, 0x8d, 0x71, 0xa5, 0x99, 0x88, 0x36, +0x71, 0x60, 0x65, 0x61, 0xda, 0x13, 0xf0, 0x4f, 0x7a, 0x4a, 0xc3, 0x40, 0x63, 0xaf, 0x71, 0xc2, +0xd2, 0x7c, 0xfa, 0x6f, 0x23, 0x33, 0xe8, 0x74, 0xf6, 0x12, 0x1d, 0x13, 0x3f, 0xd0, 0xba, 0x2f, +0xf4, 0x3e, 0xc2, 0x0f, 0x01, 0xfd, 0xf5, 0x8a, 0x36, 0xb3, 0x73, 0x0e, 0xb9, 0x16, 0xc7, 0x32, +0xb9, 0xea, 0x73, 0x5b, 0x0d, 0x1a, 0x96, 0xc1, 0x90, 0x0c, 0x9b, 0x46, 0x4e, 0x44, 0x55, 0x59, +0xfd, 0x1d, 0x4d, 0xff, 0x65, 0x4c, 0x60, 0xd2, 0x4c, 0x3e, 0x31, 0xda, 0x19, 0x60, 0x63, 0x48, +0x95, 0x0e, 0x67, 0xd5, 0xa1, 0x33, 0x16, 0x2f, 0x12, 0x28, 0xdb, 0xee, 0x49, 0x87, 0x6c, 0x5e, +0x8a, 0x37, 0xeb, 0x72, 0x98, 0x11, 0xde, 0x6b, 0x7b, 0xd2, 0xde, 0x9c, 0x69, 0xe7, 0xf7, 0x7e, +0x58, 0x93, 0xa3, 0x83, 0x9c, 0xaa, 0xe9, 0x67, 0xdc, 0x3c, 0x28, 0x62, 0xeb, 0x3e, 0x3a, 0x75, +0x2e, 0x4c, 0x96, 0xd1, 0x18, 0x1e, 0x73, 0x00, 0xd5, 0x24, 0xfb, 0x67, 0x19, 0x11, 0x69, 0xbe, +0x23, 0x18, 0xca, 0x81, 0x7e, 0xa5, 0x24, 0x6f, 0xe4, 0xc2, 0x27, 0xc7, 0x55, 0xe6, 0x98, 0x44, +0xeb, 0x2f, 0x80, 0x1f, 0x99, 0x29, 0xdc, 0xd5, 0xd2, 0x91, 0x4c, 0xd8, 0xb6, 0x56, 0x9b, 0xdd, +0xbd, 0x20, 0x8a, 0xba, 0xf3, 0x54, 0x0b, 0x53, 0x50, 0x06, 0x0c, 0xfe, 0x07, 0xa8, 0x0e, 0x90, +0x47, 0xdd, 0x9d, 0xad, 0xcd, 0xdf, 0xd2, 0x0a, 0xc2, 0x6e, 0x61, 0x30, 0x5d, 0xac, 0x55, 0xf9, +0x9b, 0x25, 0x78, 0x33, 0x3b, 0xe7, 0xc8, 0xfa, 0x5d, 0x9d, 0x69, 0x77, 0xa1, 0xba, 0xd0, 0xb4, +0xa2, 0xf0, 0x6a, 0xf1, 0x1f, 0x7a, 0x40, 0xce, 0x34, 0xb6, 0x98, 0xc0, 0xa3, 0xcc, 0x5d, 0x65, +0xc1, 0xf8, 0xbb, 0xa0, 0x34, 0x42, 0x9d, 0x7d, 0x6f, 0x2b, 0xe0, 0x75, 0x48, 0x31, 0xf1, 0xf6, +0x8c, 0x54, 0xde, 0xf0, 0xe0, 0x62, 0xd6, 0xe5, 0x1c, 0xbd, 0x75, 0x7a, 0x4d, 0x07, 0x27, 0xbf, +0x04, 0x46, 0x8d, 0x41, 0x45, 0x37, 0x16, 0xe8, 0xc5, 0xba, 0x0c, 0x10, 0xfa, 0xf8, 0x2e, 0xc9, +0x7f, 0xa6, 0x1e, 0xae, 0x82, 0x6e, 0xad, 0xb9, 0x8b, 0x2f, 0xcc, 0xe6, 0x8f, 0x7d, 0x70, 0x6e, +0x7b, 0x2c, 0x05, 0x77, 0xe0, 0xe4, 0x97, 0xaa, 0x09, 0x10, 0xdb, 0x04, 0xd5, 0x32, 0xff, 0x3e, +0x48, 0x9d, 0x07, 0x0b, 0x78, 0xfb, 0xdb, 0xd6, 0xc1, 0x33, 0x0b, 0x15, 0x57, 0x8e, 0x19, 0xd6, +0x51, 0x07, 0xa0, 0xd6, 0x92, 0xf0, 0x71, 0x7f, 0xab, 0x61, 0x98, 0x17, 0xb1, 0x0b, 0x44, 0xfe, +0xb1, 0xd2, 0x1c, 0x15, 0x65, 0xce, 0x0f, 0xb4, 0x04, 0xba, 0x1f, 0xb8, 0x5c, 0x4d, 0x99, 0x9a, +0xeb, 0xd3, 0x8f, 0x57, 0x80, 0xff, 0x4e, 0x1f, 0x88, 0x77, 0xd5, 0x93, 0xd7, 0xf9, 0x32, 0x93, +0x72, 0xc1, 0x54, 0x71, 0x61, 0xe6, 0x36, 0xa3, 0x72, 0x5b, 0xe7, 0x2b, 0x1b, 0xfb, 0xad, 0x5a, +0x22, 0xe6, 0x29, 0x1c, 0x28, 0x0b, 0x56, 0xf7, 0x9d, 0xd1, 0x77, 0xe4, 0x0f, 0xa0, 0x93, 0x68, +0x60, 0x87, 0xf3, 0x27, 0x1a, 0xe2, 0x6c, 0xd1, 0x82, 0x26, 0xe6, 0xf4, 0xb6, 0xfa, 0x08, 0xe0, +0xf7, 0x67, 0xb1, 0xb7, 0x31, 0x9c, 0xb9, 0x77, 0xe7, 0xb7, 0x86, 0xfc, 0x39, 0x09, 0x8d, 0x5d, +0xce, 0x6f, 0x1b, 0x12, 0x17, 0x80, 0x04, 0xef, 0xdb, 0xb9, 0x03, 0x34, 0xed, 0x7d, 0xc8, 0x75, +0x6a, 0x6a, 0x04, 0x2a, 0x93, 0x0d, 0x4f, 0x70, 0x1d, 0x44, 0x3d, 0x2c, 0xe8, 0xd5, 0x89, 0xc3, +0x3f, 0xb8, 0xf2, 0xc3, 0x9f, 0xc7, 0xcd, 0x1d, 0x72, 0x5e, 0x1a, 0x1b, 0xae, 0x4d, 0x24, 0x49, +0x27, 0xb8, 0x52, 0x00, 0x6a, 0xdc, 0xef, 0x83, 0x9c, 0x24, 0xee, 0x5e, 0x99, 0x0d, 0x43, 0xda, +0x01, 0xc5, 0xde, 0xa5, 0xd0, 0xf8, 0x00, 0x88, 0x62, 0x63, 0x78, 0xed, 0x38, 0x8c, 0x24, 0x6d, +0x3a, 0xba, 0xa1, 0x36, 0x09, 0x0a, 0xd1, 0x61, 0x31, 0x4f, 0x4e, 0x40, 0xc5, 0xfc, 0x9f, 0xac, +0x0e, 0x83, 0xee, 0x9c, 0xf9, 0x23, 0x9a, 0x3c, 0x19, 0x5f, 0x40, 0x3f, 0x54, 0x1a, 0x94, 0xb7, +0x99, 0x90, 0xc4, 0x63, 0xbb, 0x08, 0x8d, 0x12, 0x28, 0xf5, 0xbe, 0x18, 0x19, 0x1f, 0xd7, 0x8c, +0x58, 0x96, 0xe3, 0xbd, 0x3e, 0x6a, 0x55, 0x38, 0xeb, 0x04, 0xb9, 0x62, 0xcb, 0xaa, 0xd1, 0x76, +0xdb, 0x76, 0xad, 0x9a, 0x44, 0x29, 0xfa, 0xa2, 0x9b, 0x9f, 0x85, 0x2b, 0xe2, 0x98, 0x73, 0x5d, +0xbd, 0x86, 0x28, 0x01, 0x4a, 0xd2, 0x42, 0x13, 0x20, 0x2b, 0x5a, 0x33, 0x9d, 0xa9, 0x8b, 0xdd, +0x28, 0x29, 0x38, 0x11, 0x3f, 0x92, 0x06, 0x2f, 0x0e, 0x8f, 0x67, 0x37, 0xf8, 0x5c, 0xdd, 0xc3, +0x5b, 0x81, 0x3a, 0x2a, 0x37, 0x87, 0x78, 0x51, 0x65, 0x66, 0x02, 0xff, 0x9b, 0x49, 0x63, 0x34, +0x2b, 0x0b, 0xa6, 0x13, 0x83, 0x4d, 0x71, 0x6e, 0x18, 0xd1, 0xa7, 0xc9, 0xdf, 0xc6, 0xca, 0x44, +0x92, 0x69, 0xb9, 0x7f, 0xf4, 0x17, 0x73, 0xd4, 0x2d, 0x77, 0xa1, 0x0d, 0x9e, 0xc4, 0x7d, 0x81, +0x18, 0x4d, 0xcf, 0xca, 0x87, 0x87, 0x3b, 0x4f, 0x84, 0xfb, 0x98, 0xe3, 0x45, 0x38, 0x7d, 0xed, +0x3c, 0x5b, 0x10, 0x40, 0x33, 0x56, 0xc5, 0x6a, 0x0b, 0x87, 0x02, 0x52, 0x82, 0xa4, 0xd7, 0xfa, +0xf9, 0x7c, 0x21, 0xc4, 0x53, 0xac, 0xfe, 0x8f, 0xa5, 0xd2, 0xdc, 0x1a, 0x97, 0x57, 0xce, 0x11, +0x38, 0x71, 0xc4, 0xe3, 0x1b, 0xbe, 0x78, 0x43, 0x07, 0x7c, 0xb2, 0x2e, 0x6e, 0x4e, 0xc3, 0x5e, +0x8d, 0x9c, 0x31, 0xc7, 0x2b, 0x07, 0x8e, 0xb1, 0x04, 0x8c, 0x29, 0xa2, 0x9c, 0xe7, 0x6e, 0x90, +0xba, 0xa2, 0xd3, 0x30, 0xf7, 0xe8, 0xf6, 0xa0, 0x08, 0x7f, 0x8c, 0x8a, 0xc0, 0x69, 0xbc, 0x3e, +0xee, 0x52, 0x03, 0xb9, 0x6c, 0x14, 0xcc, 0x49, 0xe6, 0xc2, 0x92, 0xc7, 0x8a, 0x32, 0x00, 0x25, +0x48, 0xbd, 0x57, 0x6d, 0x5b, 0x8b, 0x65, 0x37, 0xee, 0x2d, 0xb1, 0xc3, 0xc4, 0x5a, 0x8a, 0x32, +0x8b, 0x24, 0x4e, 0x35, 0x3f, 0xb9, 0x6f, 0x8b, 0x85, 0xcd, 0x9b, 0xb3, 0xa1, 0x55, 0x55, 0x2d, +0x4e, 0x81, 0x08, 0x8f, 0x4d, 0x80, 0x9d, 0xe4, 0x55, 0xe7, 0xdd, 0x22, 0x36, 0x78, 0x1e, 0x86, +0x10, 0x06, 0x0c, 0x04, 0x64, 0x16, 0x37, 0x6a, 0x38, 0x87, 0x10, 0xac, 0x99, 0xaa, 0xd3, 0x38, +0x88, 0xd0, 0x6b, 0x49, 0x4e, 0x42, 0x02, 0x52, 0xe7, 0x47, 0xc9, 0x75, 0x3c, 0xd5, 0xc8, 0x59, +0x84, 0xb4, 0xeb, 0xc1, 0xa9, 0x7a, 0x35, 0x87, 0xba, 0xe2, 0xf9, 0x70, 0x27, 0xf9, 0x3f, 0xad, +0xb4, 0x8f, 0x3a, 0xec, 0x65, 0x8c, 0x8f, 0x4f, 0xaa, 0xf3, 0x7f, 0xcc, 0x47, 0x85, 0xbc, 0xa2, +0x7f, 0xce, 0xfd, 0x1f, 0x68, 0xae, 0x3b, 0x73, 0xd8, 0xc2, 0xe1, 0x3a, 0x52, 0x65, 0xcb, 0x32, +0xfd, 0x4c, 0xb9, 0x0f, 0x71, 0x3e, 0xb3, 0x6f, 0xd9, 0xcc, 0x90, 0x84, 0x14, 0x82, 0x9c, 0xe7, +0xbb, 0x5c, 0xf2, 0x0e, 0x6c, 0x2b, 0x5f, 0x3b, 0x1a, 0x76, 0x10, 0x9f, 0xd6, 0x62, 0x5a, 0x83, +0x55, 0xaa, 0x42, 0x59, 0xc3, 0x57, 0x1f, 0xaf, 0xe6, 0x4a, 0x1f, 0x2b, 0xd0, 0x77, 0x3b, 0x24, +0xf0, 0xe5, 0x01, 0xe8, 0x33, 0x7e, 0x64, 0x89, 0xbe, 0x7c, 0x7c, 0xc1, 0x79, 0xde, 0x40, 0xb6, +0x79, 0x05, 0x2d, 0x37, 0xc2, 0x7c, 0x37, 0xb9, 0x35, 0x1c, 0xe8, 0x75, 0xa4, 0x55, 0x7b, 0x7b, +0x65, 0xa8, 0x26, 0xcf, 0x5c, 0xd7, 0x1e, 0x93, 0xc8, 0x8e, 0x94, 0xaa, 0x83, 0x8d, 0x8d, 0xb5, +0x49, 0x64, 0xa9, 0x8e, 0x91, 0x2e, 0x69, 0xff, 0xff, 0x61, 0xf0, 0x8a, 0xe6, 0x84, 0x2f, 0x3c, +0x5f, 0xab, 0x55, 0x99, 0x6f, 0x3a, 0x26, 0x94, 0x62, 0xf1, 0x47, 0x02, 0x2a, 0x89, 0xbc, 0x3c, +0x24, 0xc8, 0x0c, 0x2b, 0x9e, 0x58, 0x73, 0x32, 0xb0, 0x32, 0x12, 0x60, 0xec, 0x98, 0x3f, 0x05, +0x1c, 0x37, 0x51, 0x99, 0x9d, 0xc5, 0x0e, 0xa4, 0xc9, 0x7e, 0xe4, 0xf0, 0x23, 0x31, 0x66, 0xdf, +0x76, 0xb8, 0x06, 0x17, 0x4c, 0xec, 0xd5, 0x64, 0xd6, 0x31, 0xe9, 0x03, 0xbe, 0xfc, 0x68, 0x9f, +0xf3, 0x42, 0x11, 0x70, 0xc3, 0x9e, 0x2e, 0xf2, 0xbc, 0x0e, 0xf4, 0xb6, 0xc9, 0xbc, 0x48, 0x57, +0xea, 0x49, 0xdf, 0x91, 0x18, 0x5a, 0x3a, 0x23, 0x1f, 0xda, 0x4e, 0x54, 0xc7, 0xad, 0xb5, 0xab, +0x81, 0x08, 0x42, 0x8a, 0xfa, 0x77, 0xa6, 0x1c, 0xcb, 0x51, 0xdb, 0x62, 0x54, 0x84, 0xa0, 0x54, +0x0e, 0x2d, 0xee, 0x18, 0x38, 0x9b, 0xfa, 0x44, 0x18, 0x68, 0xda, 0xdb, 0x93, 0x61, 0xb3, 0x38, +0x18, 0x63, 0x49, 0x0c, 0x84, 0x95, 0x8c, 0xca, 0xf0, 0x37, 0x97, 0x5d, 0xed, 0x68, 0xda, 0xe7, +0xcb, 0x75, 0x7f, 0x4f, 0xc8, 0xfb, 0x23, 0xdb, 0xa1, 0xc0, 0xb8, 0xdd, 0x3d, 0x79, 0xcf, 0x67, +0x4b, 0x3d, 0x1d, 0xc8, 0x19, 0xb7, 0xca, 0x3c, 0xd3, 0xa3, 0x66, 0xe6, 0x42, 0xd3, 0xb5, 0x0d, +0x42, 0x2b, 0x46, 0x28, 0xf2, 0x25, 0x7e, 0xb4, 0x2b, 0x01, 0xf8, 0xb7, 0x14, 0x43, 0x9b, 0x41, +0xfc, 0x98, 0x04, 0xb9, 0x66, 0xc3, 0x4c, 0x52, 0x8d, 0xb1, 0x79, 0xac, 0x56, 0xa8, 0x4d, 0xf0, +0x4e, 0x44, 0xf4, 0x69, 0x68, 0x92, 0x26, 0xd0, 0xa6, 0xd9, 0x8f, 0xed, 0x23, 0x37, 0x7f, 0x4a, +0x9b, 0xfc, 0xaf, 0x8c, 0x38, 0xc5, 0xbf, 0x1f, 0xae, 0x8c, 0x31, 0xb2, 0xd6, 0x6a, 0xba, 0xe0, +0x84, 0x39, 0x5b, 0x30, 0x74, 0x9a, 0x6c, 0xdc, 0x7c, 0x56, 0x6c, 0x81, 0xf8, 0x96, 0x06, 0x26, +0x28, 0xd5, 0xc0, 0xe6, 0x1f, 0xe8, 0xff, 0x28, 0x8e, 0x44, 0x47, 0x4e, 0x7f, 0x02, 0x57, 0xf9, +0xc4, 0xc6, 0x2d, 0x34, 0x82, 0x2c, 0x76, 0x60, 0xae, 0xd0, 0xc1, 0x91, 0x37, 0xc9, 0x24, 0x76, +0xbf, 0xa2, 0x52, 0x6a, 0x30, 0x14, 0xe1, 0x91, 0x7b, 0x09, 0x16, 0x5a, 0x81, 0x38, 0x20, 0xa6, +0x41, 0xe8, 0x0c, 0xd9, 0x3a, 0x91, 0x0d, 0xe8, 0x1c, 0x91, 0x3e, 0xcb, 0x6a, 0xb4, 0x2e, 0x67, +0x99, 0x19, 0x84, 0x22, 0xb2, 0xc7, 0x81, 0x1d, 0xbd, 0x99, 0x3e, 0x2e, 0x9a, 0x62, 0xa5, 0x77, +0x64, 0xee, 0x6a, 0x88, 0xce, 0x82, 0x63, 0x85, 0xe9, 0x7a, 0x01, 0xdf, 0xca, 0x35, 0x56, 0xad, +0xf1, 0x00, 0x09, 0x99, 0x06, 0x33, 0x18, 0x24, 0x6c, 0xab, 0xea, 0x90, 0x8e, 0x92, 0x96, 0xb8, +0xaf, 0x51, 0xb7, 0xd6, 0x42, 0x55, 0xf5, 0x94, 0x56, 0x5d, 0xb1, 0xb8, 0x3f, 0x48, 0x38, 0xbe, +0x74, 0x9e, 0x37, 0x87, 0x6f, 0xa9, 0x7e, 0xdf, 0x71, 0x89, 0x9f, 0x64, 0x3f, 0xf4, 0x85, 0xde, +0xc8, 0x40, 0xac, 0xb1, 0x8d, 0x10, 0xb5, 0xe3, 0x70, 0xc4, 0x53, 0x38, 0x5e, 0xd3, 0x27, 0xa1, +0x79, 0xcd, 0x82, 0x15, 0xb5, 0xe8, 0xaa, 0xb8, 0x3f, 0xb7, 0x75, 0xbf, 0x67, 0x4b, 0x17, 0xea, +0x31, 0x2b, 0xda, 0x38, 0xe2, 0x6f, 0x3c, 0x40, 0x8c, 0xc4, 0x03, 0x00, 0x4e, 0x4e, 0x03, 0x98, +0xca, 0xe3, 0x40, 0x3d, 0xde, 0xb7, 0x29, 0xd3, 0xc1, 0xce, 0xdc, 0x90, 0x88, 0xc5, 0x7f, 0xeb, +0x9f, 0x1f, 0x74, 0x67, 0x3e, 0x9e, 0x0b, 0xac, 0xb9, 0x3c, 0x59, 0x3e, 0xd8, 0xe1, 0x70, 0x76, +0x87, 0x9d, 0xc1, 0x98, 0xc0, 0xaa, 0x71, 0x7f, 0x8e, 0x06, 0xeb, 0x02, 0x21, 0x29, 0x2d, 0xfc, +0x82, 0xc3, 0x7b, 0x7a, 0x9d, 0x25, 0x61, 0xf9, 0x54, 0x02, 0xed, 0xf1, 0x71, 0xfa, 0x70, 0x1f, +0x36, 0xc0, 0x86, 0x2b, 0xfe, 0x35, 0x17, 0xbc, 0x13, 0x08, 0xeb, 0xe8, 0xd9, 0xca, 0xe9, 0xc6, +0xd7, 0x1c, 0x14, 0xf5, 0xc5, 0x47, 0x44, 0x29, 0xbd, 0xab, 0xd1, 0xeb, 0x7d, 0xa9, 0x70, 0x6b, +0xb5, 0x03, 0x52, 0xb1, 0x39, 0x35, 0x56, 0xfd, 0xc3, 0x2f, 0xe8, 0xc9, 0x9d, 0xa7, 0xe7, 0xba, +0x3c, 0xeb, 0xd8, 0xa5, 0x05, 0x5f, 0xb7, 0xa6, 0x28, 0x94, 0x6b, 0xb5, 0xdd, 0x07, 0x0b, 0xb7, +0x7f, 0x04, 0x84, 0x83, 0xb5, 0xe9, 0x8f, 0xce, 0xf6, 0xdc, 0x8e, 0xc8, 0x17, 0x52, 0x53, 0x86, +0x7d, 0x15, 0xac, 0xa7, 0xe4, 0xad, 0x60, 0xfc, 0x84, 0x82, 0xe1, 0x5c, 0x1b, 0x84, 0xeb, 0xb3, +0x72, 0x3b, 0xba, 0x7b, 0x71, 0xbf, 0x4a, 0xd5, 0x3a, 0x2d, 0xc2, 0x1c, 0x26, 0x07, 0x96, 0xc3, +0xb7, 0xcc, 0x72, 0xe4, 0x7f, 0x7e, 0xcf, 0x82, 0x42, 0x38, 0x29, 0x9e, 0x6b, 0xee, 0x47, 0xee, +0x74, 0x8e, 0xf0, 0xd7, 0x03, 0x1c, 0x7d, 0x7f, 0xc9, 0x41, 0xe1, 0xde, 0x98, 0x11, 0x84, 0x34, +0x38, 0xd2, 0xd8, 0x39, 0x06, 0xb3, 0x54, 0x60, 0x26, 0x20, 0x50, 0xc5, 0xb9, 0x49, 0xf3, 0x88, +0xc7, 0x1c, 0x3e, 0x2b, 0x0c, 0x31, 0xbc, 0x26, 0x4c, 0x15, 0x8d, 0x9a, 0xa7, 0x25, 0x6c, 0xa4, +0xe2, 0x16, 0xb7, 0xb2, 0xa1, 0x96, 0x38, 0x3e, 0x84, 0x48, 0x35, 0xc4, 0xc5, 0x27, 0x3e, 0xbe, +0x4c, 0x15, 0xc7, 0xc0, 0xe5, 0x2d, 0x6a, 0xe6, 0xbe, 0x20, 0x00, 0xcd, 0xeb, 0xc5, 0x5f, 0x4e, +0x6e, 0xc0, 0x55, 0xdd, 0x4f, 0xe9, 0xa7, 0x01, 0xc5, 0x35, 0x2f, 0x6e, 0xe9, 0x89, 0x32, 0x06, +0xa2, 0x73, 0x76, 0xf7, 0xca, 0x11, 0xb2, 0x79, 0x33, 0x90, 0x9c, 0x4a, 0xd2, 0xf1, 0x43, 0x4a, +0x0b, 0xbe, 0x5a, 0xdd, 0xf5, 0xd9, 0x65, 0x14, 0x8a, 0x3d, 0x65, 0x2a, 0x54, 0xca, 0x25, 0x3b, +0x08, 0x74, 0x5c, 0xf2, 0x2c, 0x2a, 0xd1, 0x88, 0xc4, 0x68, 0x6a, 0xbf, 0xe4, 0x83, 0x1d, 0xe6, +0x9e, 0xa9, 0x96, 0x68, 0xb2, 0x38, 0x45, 0xbe, 0xf7, 0xdd, 0x74, 0x7f, 0xf6, 0x44, 0x03, 0x7e, +0x71, 0x0c, 0xf5, 0xca, 0x4e, 0x8b, 0x8b, 0x73, 0xab, 0x74, 0xf1, 0xd1, 0x2c, 0x09, 0x79, 0xf8, +0xd1, 0x7f, 0x3d, 0x76, 0x62, 0x92, 0x40, 0xa0, 0xeb, 0xc7, 0xcd, 0xc3, 0xd1, 0xfb, 0x9a, 0x0e, +0xd3, 0x0e, 0x3d, 0xb5, 0xbd, 0xee, 0x91, 0xf6, 0x88, 0x7e, 0x6f, 0x42, 0xd7, 0x21, 0x8c, 0x25, +0xe1, 0x36, 0x8d, 0xf4, 0x54, 0xa8, 0x21, 0x28, 0xc0, 0x79, 0xda, 0xb1, 0x21, 0x35, 0xfd, 0x45, +0xa5, 0x4d, 0x2e, 0x54, 0xcf, 0x4e, 0x48, 0x74, 0x92, 0xb9, 0xb2, 0xd0, 0x1d, 0x7b, 0xb5, 0xae, +0xc8, 0x86, 0xe3, 0xc4, 0x91, 0x1e, 0xa6, 0x3d, 0x98, 0xb7, 0xd7, 0x63, 0x51, 0xc6, 0x13, 0x62, +0x78, 0x2c, 0xcd, 0x9e, 0xe1, 0xc9, 0x13, 0x15, 0x40, 0x2a, 0x14, 0x28, 0x2c, 0x2d, 0x55, 0xc6, +0xe2, 0x25, 0x8f, 0xfd, 0x38, 0x46, 0x92, 0x34, 0x2d, 0xa5, 0xae, 0xf6, 0x4e, 0xa9, 0x33, 0xfd, +0x49, 0x1a, 0xc2, 0x29, 0x7c, 0xfd, 0xdf, 0xbb, 0x8d, 0x00, 0x76, 0xac, 0xf1, 0xb9, 0xaa, 0xc1, +0x65, 0xae, 0x8d, 0xdc, 0x33, 0xf6, 0xc0, 0x85, 0x7c, 0x06, 0x65, 0xff, 0x26, 0xec, 0xcf, 0xd2, +0xa0, 0xbb, 0xf4, 0x15, 0xc1, 0x23, 0x90, 0xd8, 0x1b, 0x1b, 0x7d, 0x54, 0xd8, 0x71, 0x6e, 0x0f, +0x14, 0x5a, 0x40, 0x57, 0x76, 0xa9, 0x9d, 0x62, 0x57, 0xb9, 0x76, 0x0b, 0x8c, 0x46, 0x37, 0xe1, +0xe6, 0x19, 0xcd, 0x69, 0x2d, 0xe4, 0x74, 0xa5, 0x18, 0x83, 0x2c, 0xca, 0x86, 0x24, 0x9e, 0x54, +0xb0, 0x5f, 0xdd, 0xc1, 0x38, 0xf8, 0x39, 0xe7, 0xd9, 0x4e, 0x66, 0x50, 0x1c, 0xd2, 0xb4, 0x84, +0x13, 0xaa, 0xd8, 0x74, 0xa0, 0xaf, 0x1c, 0x60, 0xa2, 0x41, 0x0f, 0x9f, 0x9d, 0x4c, 0x5d, 0xf1, +0x60, 0x3b, 0x9f, 0x2b, 0x5c, 0x5b, 0xb7, 0x6c, 0x55, 0x19, 0xef, 0x06, 0x7e, 0x82, 0xc5, 0x25, +0xce, 0xb6, 0x26, 0x02, 0x55, 0x8c, 0xdc, 0x5c, 0xfc, 0xe1, 0xae, 0xa8, 0xf6, 0xfe, 0x43, 0xb1, +0x64, 0x06, 0x59, 0x39, 0xa6, 0x12, 0xe3, 0x30, 0xc9, 0xc4, 0x3b, 0x51, 0x17, 0xd2, 0x91, 0x67, +0x71, 0x2f, 0xf6, 0xd3, 0xde, 0xba, 0x4d, 0x9a, 0x09, 0x11, 0x1a, 0x17, 0x8c, 0x48, 0xa3, 0xf0, +0x60, 0x72, 0x16, 0xd2, 0xd1, 0x53, 0x64, 0xf8, 0x36, 0xe6, 0xfb, 0x34, 0x79, 0xef, 0x26, 0xdb, +0x5f, 0x7d, 0x7a, 0x49, 0x46, 0xc7, 0xc1, 0xc6, 0x7e, 0x94, 0x95, 0x71, 0x92, 0x7b, 0xe4, 0xf2, +0xca, 0xe7, 0x71, 0xa3, 0xef, 0x8c, 0x47, 0x55, 0xf4, 0x76, 0xf7, 0xd7, 0xe4, 0xee, 0x32, 0x38, +0x12, 0x6b, 0x30, 0xdd, 0xf0, 0x3f, 0x9e, 0xab, 0xab, 0x76, 0x32, 0xbb, 0x07, 0x4c, 0x92, 0x58, +0x19, 0x10, 0xdb, 0x44, 0x01, 0xdb, 0xcd, 0xea, 0x85, 0x5a, 0x36, 0x6c, 0x71, 0x15, 0x2d, 0x2e, +0x22, 0x12, 0x1f, 0xd2, 0x58, 0xf3, 0x57, 0xbb, 0xcd, 0xb5, 0xd0, 0xde, 0x8d, 0xc7, 0x70, 0x2a, +0x34, 0x54, 0xff, 0x63, 0xc0, 0x3d, 0x30, 0xcd, 0x81, 0xec, 0x26, 0x66, 0x31, 0x35, 0xb8, 0x45, +0xa6, 0x6c, 0xe4, 0x43, 0x1e, 0x8c, 0x44, 0xff, 0xe0, 0x58, 0xe0, 0x14, 0xaa, 0x29, 0x8a, 0x46, +0xee, 0xb3, 0xd0, 0x5c, 0x1b, 0x2e, 0x49, 0x49, 0xe0, 0x95, 0x9b, 0x98, 0x4c, 0xe5, 0x2f, 0xd0, +0xdb, 0x7c, 0x33, 0x1a, 0x11, 0x5b, 0x62, 0xb0, 0xf9, 0xbc, 0xf1, 0xd9, 0x9c, 0xa8, 0x7f, 0xa3, +0x50, 0xcf, 0x95, 0x85, 0x39, 0x2f, 0x56, 0xad, 0x0d, 0x01, 0xd9, 0xf8, 0x28, 0x05, 0xfa, 0xbe, +0xd7, 0xcc, 0x14, 0x15, 0xf8, 0x23, 0x93, 0xda, 0x68, 0x39, 0x2c, 0x43, 0x22, 0x39, 0xea, 0x42, +0xdb, 0x7b, 0x8d, 0xc3, 0xf7, 0x74, 0x84, 0x28, 0xd5, 0x89, 0x04, 0x93, 0xdc, 0xc8, 0x00, 0xc4, +0xc1, 0x6f, 0xfe, 0xba, 0x8b, 0x56, 0x17, 0xc9, 0x17, 0xc4, 0x29, 0x14, 0x7a, 0xb3, 0xaa, 0x26, +0xc8, 0x6e, 0x8e, 0xd8, 0x3a, 0xcf, 0xf5, 0x01, 0xb6, 0xa3, 0x1c, 0x19, 0x5d, 0x33, 0x86, 0x65, +0x69, 0x0f, 0xdf, 0x01, 0x62, 0x53, 0x3f, 0xcc, 0xc2, 0x95, 0xe8, 0xfd, 0x34, 0xaa, 0x7e, 0x24, +0x3f, 0xbd, 0xd3, 0x2d, 0xbb, 0x8b, 0xd8, 0x22, 0x54, 0x65, 0x6a, 0x80, 0x5c, 0xe6, 0xef, 0xbd, +0x42, 0xc4, 0x7f, 0x64, 0x81, 0x14, 0xaa, 0xa6, 0x5e, 0xed, 0x44, 0x40, 0xb1, 0x0b, 0xd9, 0x28, +0x28, 0x65, 0x37, 0xd8, 0x05, 0x5a, 0xae, 0xfb, 0x79, 0xeb, 0x9d, 0x8b, 0x0d, 0x99, 0x64, 0xfd, +0xd0, 0x9d, 0x32, 0xd7, 0xee, 0x32, 0xf2, 0x0e, 0xd4, 0x5f, 0x98, 0xa2, 0x4c, 0x32, 0x0f, 0xd0, +0xcc, 0x8d, 0xc1, 0x39, 0x1d, 0x1e, 0xff, 0x0e, 0x9f, 0xca, 0x85, 0xc1, 0xef, 0xc2, 0x5a, 0x26, +0x5d, 0x5a, 0xc1, 0x4d, 0x03, 0x14, 0x0b, 0x64, 0xb7, 0x0b, 0x1c, 0x20, 0x01, 0x24, 0xe1, 0xdd, +0x57, 0xa8, 0xeb, 0x42, 0x2e, 0x1f, 0xc5, 0x32, 0x14, 0x17, 0x37, 0xc2, 0x75, 0xa6, 0x16, 0x5a, +0x66, 0x5e, 0x31, 0x30, 0x97, 0x0d, 0xcf, 0x51, 0xb7, 0x99, 0x1e, 0x4f, 0xf5, 0x6a, 0x06, 0x6c, +0xac, 0xa9, 0x22, 0xda, 0xfb, 0x2a, 0x51, 0xb1, 0x79, 0x71, 0xd9, 0x36, 0xa0, 0xa6, 0xe9, 0xf8, +0x96, 0x99, 0x02, 0x99, 0xdd, 0x25, 0xe8, 0x5e, 0xb4, 0x5c, 0x23, 0xf2, 0xa0, 0xd2, 0xa2, 0x60, +0x84, 0x9d, 0x4f, 0xcc, 0x27, 0x0e, 0x61, 0x82, 0xed, 0x1e, 0x23, 0x3f, 0x6c, 0x91, 0x2b, 0x62, +0xf7, 0xef, 0x05, 0x0c, 0x04, 0x70, 0xf2, 0xf0, 0xc0, 0xd3, 0x0d, 0x7f, 0xa1, 0xfa, 0x1a, 0xf8, +0x9e, 0x04, 0x08, 0xd0, 0x47, 0xed, 0xb6, 0x98, 0x79, 0xcb, 0xbe, 0x86, 0x3d, 0xc5, 0xc8, 0x64, +0xb1, 0xe9, 0x07, 0xf9, 0xa5, 0xe0, 0x82, 0xf4, 0xe3, 0xd4, 0x78, 0xe6, 0xd1, 0xe2, 0x28, 0x40, +0x29, 0xd8, 0xc9, 0x06, 0xac, 0xf2, 0xb3, 0x6b, 0xc5, 0x6d, 0x9e, 0x1f, 0x22, 0x6a, 0x60, 0x4e, +0x47, 0x93, 0x03, 0x7a, 0xfd, 0xc4, 0x4e, 0x4d, 0x7e, 0x4b, 0xfd, 0xc6, 0x8f, 0x47, 0xbf, 0xce, +0x37, 0x9a, 0x89, 0x00, 0x12, 0x7c, 0x6a, 0x0d, 0x26, 0xff, 0x9d, 0x4c, 0xaa, 0xa0, 0x5e, 0x4b, +0x76, 0x41, 0xf9, 0x8f, 0x6e, 0xff, 0xe1, 0x14, 0x95, 0xab, 0x2a, 0x70, 0x6a, 0xae, 0x0e, 0xa0, +0x45, 0xe5, 0x9a, 0x1e, 0x37, 0x10, 0xd9, 0x9c, 0x80, 0xfd, 0xb2, 0xe4, 0x76, 0x17, 0xc5, 0x98, +0x38, 0xf0, 0x71, 0x2a, 0xf5, 0x73, 0xde, 0xc5, 0x52, 0x5c, 0xfa, 0xfa, 0x6f, 0xc8, 0x9e, 0x85, +0x33, 0xc4, 0x64, 0xc9, 0x33, 0xde, 0x1d, 0x6d, 0x6f, 0x04, 0x13, 0x91, 0xf4, 0x68, 0x7f, 0xfd, +0x91, 0x59, 0x07, 0xdf, 0xef, 0x18, 0x43, 0x91, 0xdc, 0x94, 0xff, 0xf3, 0x90, 0xbf, 0x41, 0xec, +0x3f, 0xd0, 0x82, 0x67, 0xcb, 0x6b, 0x2d, 0x3f, 0xe7, 0x3b, 0x15, 0x9b, 0x66, 0x26, 0x6c, 0x20, +0xba, 0x03, 0x9c, 0x63, 0xdd, 0x61, 0xb9, 0x5c, 0xdb, 0xe6, 0x45, 0x64, 0xeb, 0x8c, 0xe9, 0x0d, +0x81, 0xd9, 0x48, 0x06, 0x6f, 0xdf, 0xf8, 0x6b, 0x88, 0x21, 0x7f, 0x7e, 0x7e, 0xc4, 0x79, 0xdb, +0xf3, 0x15, 0x64, 0x90, 0xc3, 0xc9, 0x10, 0x52, 0xbd, 0xcb, 0x9f, 0xae, 0x03, 0xdb, 0x76, 0xbb, +0x05, 0xa7, 0xb2, 0x30, 0x95, 0xfb, 0x23, 0x11, 0x31, 0x2e, 0x39, 0xba, 0xa4, 0xb0, 0x92, 0xf8, +0x12, 0xc3, 0x48, 0xe1, 0x0a, 0x3f, 0xac, 0xaf, 0x85, 0x58, 0x1d, 0xe9, 0x48, 0xc5, 0xac, 0xdd, +0xa1, 0xe6, 0x4c, 0x91, 0xab, 0xd1, 0xd6, 0xe3, 0x04, 0x1d, 0x87, 0x9d, 0xac, 0x33, 0x61, 0x5b, +0xa8, 0xfa, 0xc7, 0x07, 0x16, 0x88, 0x5f, 0xf4, 0xf2, 0xab, 0xa9, 0xcc, 0xe4, 0x7d, 0xea, 0xc0, +0x50, 0xd3, 0x59, 0x6d, 0x5d, 0x48, 0xaa, 0x85, 0x21, 0x46, 0x45, 0xd8, 0x6c, 0x97, 0x26, 0xfa, +0xa0, 0x2c, 0xab, 0x9f, 0x2c, 0x85, 0x56, 0x48, 0x55, 0xd8, 0xe5, 0x86, 0x99, 0x1c, 0xee, 0x22, +0x72, 0x3c, 0x3c, 0x51, 0xe6, 0x71, 0x50, 0x45, 0x69, 0x01, 0x93, 0x3c, 0x8a, 0xc5, 0x2d, 0x91, +0x83, 0x4d, 0xdd, 0x02, 0xb6, 0x99, 0x35, 0xc7, 0xa5, 0xa2, 0x74, 0x7a, 0x1d, 0x05, 0x77, 0x20, +0x78, 0x64, 0x9c, 0xa6, 0xb0, 0x40, 0x75, 0x88, 0x2f, 0x13, 0xc4, 0x1e, 0x0d, 0xa5, 0xa7, 0x47, +0x39, 0x91, 0xff, 0xd2, 0x01, 0xe2, 0xd2, 0x90, 0xfd, 0x75, 0x5d, 0x9f, 0xa2, 0x53, 0xd3, 0x0c, +0x72, 0x72, 0xfb, 0x21, 0x30, 0x86, 0xe6, 0xcc, 0x44, 0x5d, 0x1b, 0x62, 0x29, 0xf0, 0xfd, 0x11, +0xd9, 0x6e, 0xdd, 0xe2, 0xfb, 0xe9, 0x60, 0x53, 0xfa, 0x5a, 0xe4, 0x7a, 0x2d, 0xa5, 0x34, 0x58, +0xc2, 0x39, 0x67, 0x09, 0xcc, 0x59, 0x31, 0xca, 0x90, 0x92, 0xb8, 0x1b, 0x37, 0x1c, 0x30, 0x20, +0x9c, 0xbf, 0x7a, 0xbe, 0x7f, 0xa1, 0x71, 0x53, 0x7f, 0xd1, 0xfe, 0x1e, 0x77, 0x34, 0xb3, 0x58, +0x7c, 0x88, 0xc4, 0xc0, 0xcd, 0xbc, 0xc1, 0xdd, 0x6e, 0x97, 0xd8, 0xf2, 0x31, 0x0c, 0x2d, 0x89, +0x76, 0x93, 0x5d, 0xf6, 0xe2, 0xe1, 0xe2, 0x59, 0x75, 0xde, 0xc7, 0x02, 0x08, 0x89, 0x34, 0x3c, +0x73, 0x56, 0x33, 0xae, 0xb1, 0x51, 0xa9, 0x84, 0x57, 0x8b, 0x68, 0x6a, 0x94, 0x93, 0x68, 0x49, +0xee, 0x0e, 0xad, 0xc3, 0x1d, 0x09, 0xc0, 0x3d, 0xf0, 0x4f, 0xa7, 0xf1, 0x71, 0x79, 0xa0, 0x66, +0x35, 0x1f, 0x81, 0x92, 0xc9, 0xa3, 0x85, 0xb1, 0x93, 0xff, 0x39, 0x8f, 0x2d, 0x3f, 0x4d, 0x75, +0x5b, 0x1d, 0xf3, 0x9e, 0x4e, 0x1c, 0xe1, 0x78, 0xbc, 0x48, 0xd8, 0x96, 0x92, 0x20, 0xf7, 0x50, +0x3a, 0x56, 0xc4, 0xef, 0x19, 0x36, 0x17, 0x59, 0xb1, 0xa6, 0x8e, 0xe8, 0xa3, 0xb0, 0xc5, 0xc2, +0x7f, 0x49, 0x61, 0xe5, 0x6d, 0x95, 0x8f, 0x4a, 0x2f, 0xda, 0x7f, 0xc1, 0x1c, 0x69, 0xdd, 0x8b, +0x31, 0x57, 0xf8, 0x89, 0xbe, 0xcd, 0x2d, 0xad, 0x91, 0x16, 0x6f, 0x40, 0x6e, 0x80, 0xdb, 0x65, +0x3c, 0x68, 0x95, 0xdb, 0x3b, 0x99, 0x4b, 0xbd, 0x11, 0x47, 0x29, 0xa2, 0xe9, 0xd1, 0xf2, 0xa7, +0x24, 0x44, 0x40, 0x19, 0x0c, 0xae, 0xa2, 0x59, 0x5a, 0x11, 0x62, 0x47, 0x42, 0xf2, 0x30, 0xc7, +0xc6, 0xe4, 0x90, 0xc7, 0xe8, 0x9b, 0x4b, 0x1d, 0x27, 0xc7, 0xea, 0x47, 0x99, 0xa3, 0x94, 0x96, +0x77, 0x0a, 0xd3, 0x57, 0x2f, 0x17, 0x15, 0x19, 0x11, 0xc5, 0x1f, 0x99, 0x81, 0xb6, 0x4d, 0xe4, +0x47, 0xa0, 0x9b, 0xd3, 0x3a, 0xad, 0x64, 0x71, 0x6f, 0x96, 0xd5, 0x68, 0x74, 0x6f, 0x21, 0xd8, +0x1e, 0x19, 0xc5, 0xb6, 0x30, 0x08, 0x74, 0x7c, 0xae, 0xd2, 0x88, 0xb9, 0xec, 0x86, 0x8f, 0x79, +0xef, 0xc2, 0x04, 0x49, 0xb2, 0x82, 0xa4, 0x10, 0xb2, 0x64, 0x47, 0x17, 0x70, 0x38, 0xda, 0x1a, +0x49, 0xff, 0x78, 0xf3, 0x78, 0x12, 0x9a, 0xff, 0x80, 0xc1, 0x95, 0x2f, 0xa3, 0xd7, 0x41, 0x5d, +0x2e, 0xf9, 0xd3, 0x2f, 0xa0, 0xae, 0x82, 0x4c, 0x94, 0x5f, 0xb8, 0x9a, 0x8a, 0x7e, 0x96, 0xb1, +0x04, 0x3e, 0x0c, 0x56, 0x2b, 0xd5, 0x8f, 0xa5, 0x5b, 0x27, 0x16, 0xfb, 0x5b, 0x6e, 0x61, 0x2f, +0xa0, 0x2c, 0xb5, 0x41, 0xb6, 0x03, 0x95, 0x56, 0x92, 0x2e, 0xcd, 0x5c, 0x30, 0xde, 0xf4, 0xae, +0x3b, 0xf5, 0xe2, 0xbd, 0x12, 0x79, 0x91, 0x15, 0x45, 0xac, 0x8c, 0x6c, 0xf4, 0x4c, 0xf2, 0x50, +0xb4, 0x11, 0x64, 0xab, 0xf3, 0x87, 0xe0, 0x51, 0x80, 0xa1, 0x45, 0x77, 0x03, 0xfd, 0xa7, 0xbc, +0x91, 0x16, 0xa6, 0xef, 0x16, 0xed, 0x52, 0x87, 0x71, 0xad, 0x1b, 0xe6, 0x9c, 0xdc, 0x1c, 0xdb, +0xe5, 0x29, 0xec, 0x7f, 0x51, 0x10, 0x51, 0xed, 0xec, 0x41, 0xda, 0x28, 0x8f, 0x07, 0x96, 0xe5, +0x73, 0x55, 0x70, 0x34, 0xff, 0x6a, 0x07, 0x9b, 0x8c, 0xc6, 0x31, 0x5c, 0x41, 0x1b, 0x6e, 0xbe, +0x9c, 0x43, 0xd8, 0xca, 0xe0, 0x2e, 0xe3, 0x2d, 0xff, 0x03, 0x0c, 0x93, 0x21, 0x0e, 0xaa, 0x82, +0xd7, 0xe7, 0x92, 0x0e, 0xff, 0xc1, 0x42, 0xdc, 0x96, 0xac, 0x8e, 0xd2, 0x42, 0x16, 0x24, 0x7a, +0x5d, 0x69, 0xe6, 0xa1, 0x58, 0x02, 0x4f, 0x49, 0x37, 0xd7, 0x8f, 0xbe, 0x61, 0x72, 0x16, 0x1c, +0x57, 0xd5, 0x70, 0xdc, 0xfb, 0x32, 0x8d, 0xf8, 0xee, 0x2a, 0xf6, 0x50, 0xdb, 0x64, 0x9a, 0x0a, +0xaf, 0x87, 0xf6, 0xdc, 0x87, 0xd2, 0x55, 0xaa, 0x41, 0x5b, 0xfa, 0x86, 0x96, 0xc5, 0x67, 0x3a, +0xa2, 0xe0, 0xa0, 0xdf, 0xb5, 0x8e, 0xf0, 0x8d, 0x23, 0x6c, 0x16, 0x43, 0xcb, 0xc8, 0xf9, 0xec, +0x28, 0xe2, 0xfc, 0xa7, 0xd8, 0xac, 0xce, 0xbb, 0x93, 0x68, 0x9d, 0xba, 0x17, 0xc7, 0x6e, 0x94, +0x67, 0x5a, 0x1d, 0x38, 0x7d, 0x8c, 0x17, 0xb9, 0x9d, 0x3b, 0x3d, 0x66, 0x94, 0xf9, 0x8f, 0x1b, +0x6f, 0x38, 0x6d, 0x59, 0xbd, 0xc2, 0x08, 0x1d, 0x9a, 0xe7, 0x7e, 0xf4, 0x9d, 0xcc, 0xab, 0xed, +0x09, 0x78, 0xe3, 0xb5, 0x40, 0x09, 0x54, 0xc0, 0xd9, 0x9f, 0x9c, 0x12, 0x96, 0x20, 0xfd, 0x39, +0x5e, 0xb6, 0xce, 0xd6, 0x51, 0x00, 0x84, 0xbb, 0x9e, 0x59, 0x0a, 0x56, 0x55, 0xe5, 0xfa, 0x8f, +0xcf, 0x01, 0x9b, 0x61, 0x3e, 0xc4, 0x86, 0xdb, 0x38, 0xf9, 0xd6, 0x6a, 0xe1, 0xb1, 0x8f, 0xb9, +0x89, 0x63, 0xc1, 0x5c, 0x77, 0x08, 0x0f, 0x02, 0x55, 0xeb, 0xe5, 0xd3, 0xe1, 0x2a, 0x8e, 0x18, +0x62, 0xa1, 0x03, 0xe8, 0xfe, 0x05, 0xb6, 0xd8, 0xab, 0xaa, 0xfe, 0x1b, 0x28, 0x3b, 0x6b, 0x48, +0xac, 0x96, 0xa8, 0xff, 0xeb, 0x34, 0x65, 0x55, 0x6b, 0x3e, 0x52, 0x4c, 0xe7, 0x6b, 0x47, 0xa4, +0xe2, 0x91, 0x03, 0x67, 0x66, 0x17, 0x61, 0x74, 0xeb, 0x5c, 0x5d, 0x90, 0xf0, 0xed, 0xb4, 0xcc, +0x71, 0x7c, 0x06, 0x1d, 0xae, 0xb6, 0x50, 0xe4, 0x9e, 0x14, 0x56, 0xc7, 0xe9, 0x57, 0x21, 0xf4, +0x93, 0x69, 0xd0, 0x53, 0xdb, 0x90, 0xf5, 0xe1, 0xb7, 0x35, 0x09, 0xee, 0x18, 0xf8, 0x22, 0x4a, +0xc8, 0x12, 0x83, 0xbb, 0xa4, 0x3a, 0xe7, 0xfa, 0x55, 0x69, 0x18, 0x55, 0x6b, 0xdb, 0x28, 0xec, +0x64, 0x48, 0xb2, 0xbb, 0x3f, 0xe4, 0x5f, 0x4a, 0x94, 0x8b, 0x1e, 0xf0, 0x0f, 0xed, 0xe5, 0x47, +0x93, 0x89, 0x2f, 0x5e, 0x35, 0x1c, 0xa5, 0x2e, 0xcf, 0x5c, 0xc5, 0x9c, 0x52, 0x70, 0xf0, 0xa1, +0x08, 0x34, 0xb8, 0x1b, 0x34, 0x92, 0x7f, 0x67, 0x46, 0xfc, 0xba, 0x94, 0x29, 0xfd, 0xa5, 0x79, +0x5d, 0xa6, 0x56, 0xcc, 0x6d, 0x82, 0x18, 0x0e, 0xa8, 0x6e, 0x1f, 0xd0, 0xcf, 0xa5, 0xe8, 0x49, +0xda, 0x9e, 0x64, 0x3e, 0xab, 0xc9, 0xa8, 0x30, 0x8d, 0x65, 0x50, 0xa3, 0xfd, 0x26, 0xc4, 0x06, +0x3a, 0x1c, 0x94, 0xfc, 0x7e, 0x15, 0x1c, 0x61, 0xf8, 0xcf, 0xd6, 0x87, 0x22, 0xa0, 0x64, 0x5b, +0x60, 0x82, 0xd6, 0x19, 0x7d, 0xff, 0x1b, 0x15, 0x1a, 0x06, 0xc0, 0x96, 0x56, 0x9a, 0x8d, 0x47, +0xf9, 0x14, 0xdf, 0x8c, 0x40, 0x14, 0x02, 0x6c, 0x3c, 0x4c, 0x04, 0xe9, 0xb9, 0x25, 0x22, 0xba, +0x50, 0x3b, 0x86, 0xb8, 0x1b, 0x40, 0xfa, 0x33, 0x9a, 0xba, 0x2f, 0x25, 0xfc, 0xde, 0x13, 0x7e, +0x49, 0x3f, 0x3c, 0xa2, 0x95, 0xf5, 0x6e, 0x66, 0x30, 0x5e, 0x07, 0xdd, 0xce, 0x88, 0x29, 0xc9, +0xc0, 0x1b, 0xb9, 0x4f, 0x24, 0x59, 0x16, 0xb6, 0xfb, 0x79, 0xc3, 0xa2, 0xcb, 0x44, 0xd0, 0xbc, +0xe1, 0x94, 0xa5, 0x84, 0x7d, 0xa0, 0x7d, 0xe5, 0x50, 0x2f, 0xa6, 0x82, 0xfd, 0x72, 0xbd, 0x1b, +0xa3, 0xb1, 0xef, 0x20, 0xc2, 0x16, 0x81, 0x92, 0x4d, 0x97, 0x6b, 0xc7, 0x3d, 0x28, 0x81, 0x81, +0x1d, 0x1b, 0x9d, 0xd2, 0x3e, 0x79, 0x7e, 0x06, 0x60, 0x31, 0x40, 0xbe, 0x98, 0xee, 0x9a, 0x99, +0x78, 0xec, 0xc4, 0x9e, 0x07, 0x15, 0x95, 0x3f, 0x29, 0xfd, 0x44, 0x0e, 0xf5, 0x0a, 0xe7, 0xbc, +0x94, 0x0e, 0x42, 0x13, 0x41, 0x0c, 0x15, 0xa5, 0x4c, 0x4a, 0xfb, 0xa0, 0x0e, 0xc1, 0x05, 0x47, +0x05, 0xf5, 0x20, 0x92, 0x0c, 0x68, 0x41, 0x4d, 0xe7, 0x0b, 0x35, 0x04, 0xd2, 0xa4, 0x7c, 0x6a, +0x51, 0xea, 0x28, 0x6a, 0x28, 0xe4, 0xe4, 0xc8, 0xaf, 0x07, 0x20, 0x6f, 0xf2, 0x55, 0x17, 0x99, +0x7e, 0xbf, 0x83, 0x4e, 0xca, 0xf3, 0x44, 0x76, 0x57, 0x2a, 0x76, 0xad, 0xa3, 0x35, 0xd5, 0x6d, +0x31, 0xc6, 0x6b, 0x88, 0xe2, 0xb8, 0x84, 0xe4, 0x2a, 0x4e, 0xc8, 0x32, 0x59, 0x7d, 0xb8, 0x97, +0x90, 0x5b, 0x6c, 0xa6, 0x4a, 0xaf, 0xb1, 0xd6, 0x31, 0x72, 0x23, 0x12, 0x1c, 0x2e, 0x4a, 0xf3, +0x16, 0x3d, 0xe2, 0x9c, 0xc6, 0xb3, 0x3c, 0x35, 0x94, 0xa1, 0x4d, 0xe6, 0xac, 0xee, 0x02, 0xb6, +0xe4, 0xc0, 0x3d, 0x40, 0xc1, 0xed, 0x79, 0x3a, 0xe1, 0xc6, 0x67, 0x1a, 0x79, 0x08, 0xa6, 0x5f, +0xb9, 0x84, 0x22, 0x0c, 0xf9, 0xf7, 0x22, 0x5e, 0x40, 0xfa, 0x31, 0xe6, 0xa6, 0x62, 0x43, 0x78, +0x5d, 0xbb, 0x49, 0x92, 0xa7, 0x42, 0x34, 0x7c, 0x4a, 0x48, 0xcb, 0x1f, 0x2a, 0xa9, 0xb8, 0xae, +0x15, 0x2d, 0x4a, 0x0c, 0xfe, 0xcb, 0x05, 0x9a, 0x1c, 0x55, 0x8b, 0x9f, 0x1a, 0xe5, 0x91, 0x13, +0x95, 0x20, 0xaa, 0xea, 0x44, 0x8d, 0xc8, 0x4d, 0x35, 0x9c, 0xe8, 0xbe, 0x36, 0x6f, 0xa9, 0xcc, +0x75, 0xd8, 0xee, 0x97, 0x9e, 0xf2, 0x5d, 0xab, 0x2e, 0x34, 0xa3, 0x71, 0x46, 0xeb, 0xac, 0x60, +0xb7, 0x2b, 0x34, 0xc0, 0x30, 0x41, 0xd1, 0x41, 0xd7, 0xa9, 0xd2, 0xc2, 0x4b, 0x2c, 0x24, 0xc2, +0x63, 0x7e, 0x03, 0x99, 0xa6, 0x6b, 0xc9, 0x89, 0x4d, 0xd6, 0xe0, 0xdc, 0xac, 0x73, 0x0c, 0x46, +0xae, 0x02, 0x7a, 0xf9, 0x4b, 0x21, 0x0f, 0x8c, 0x49, 0x3d, 0x2e, 0x17, 0x9a, 0x0c, 0x9b, 0x5b, +0x2d, 0xe5, 0xe9, 0x9f, 0x29, 0x02, 0xb1, 0x1f, 0x2c, 0x5e, 0x07, 0xe4, 0xb5, 0xd7, 0x74, 0x34, +0xf0, 0x3c, 0xce, 0xba, 0x7d, 0xdd, 0x2c, 0x76, 0x2b, 0x3a, 0x61, 0x4f, 0x84, 0xde, 0x1d, 0xe9, +0x6b, 0xd7, 0x5b, 0xef, 0x04, 0xad, 0x3a, 0xb3, 0x1f, 0xbd, 0x7c, 0xf1, 0x90, 0x7c, 0xf2, 0x4a, +0x84, 0x4c, 0x63, 0xbb, 0xab, 0x78, 0x5f, 0x83, 0x01, 0xc0, 0xbb, 0xc0, 0xac, 0xc2, 0x7a, 0xfe, +0x96, 0x2a, 0x8a, 0x2d, 0x28, 0xb9, 0x95, 0xa5, 0x06, 0x99, 0x24, 0x6d, 0x2e, 0xd8, 0xa8, 0x1a, +0x65, 0xde, 0x15, 0xb7, 0x5e, 0x04, 0xb6, 0xa7, 0xaf, 0xff, 0xcf, 0x50, 0x35, 0x83, 0xc0, 0x1f, +0xd3, 0x11, 0x84, 0xae, 0xf0, 0x9d, 0xe5, 0xc4, 0x50, 0x72, 0x01, 0x73, 0x14, 0x00, 0x76, 0x7f, +0x5c, 0xb6, 0xdb, 0x9c, 0x8e, 0xb9, 0x68, 0x96, 0xfb, 0xc4, 0x5f, 0x06, 0xe6, 0x15, 0xe2, 0x4f, +0x80, 0xc6, 0x4e, 0x1c, 0x75, 0xbc, 0x45, 0x85, 0x73, 0x29, 0xfd, 0xf1, 0xdc, 0x84, 0x74, 0x36, +0x53, 0x86, 0xf5, 0x00, 0x5e, 0xc1, 0x9d, 0x3f, 0x6b, 0xf1, 0x87, 0xa9, 0x46, 0xf9, 0xe2, 0x80, +0xd9, 0xa6, 0x53, 0xf7, 0x10, 0x8d, 0x42, 0xb0, 0x1a, 0x09, 0x40, 0x71, 0x4e, 0x75, 0xba, 0xa9, +0xe2, 0x6a, 0x61, 0xfc, 0x00, 0xfe, 0x50, 0xa7, 0xb0, 0x54, 0x08, 0xfc, 0x3d, 0x0a, 0xa7, 0x47, +0x80, 0x83, 0x4a, 0xcd, 0x4b, 0x9e, 0xfd, 0x8e, 0x3f, 0x57, 0x7e, 0x3e, 0xb8, 0x2b, 0x70, 0xac, +0x95, 0x7e, 0xed, 0x1f, 0x0d, 0x95, 0x1b, 0x17, 0x63, 0x6a, 0x7c, 0x22, 0xae, 0xd3, 0x51, 0xbf, +0x6f, 0x85, 0x3a, 0x69, 0x3b, 0x3c, 0xd2, 0x39, 0xa7, 0x58, 0xe2, 0xe2, 0x38, 0x4c, 0x1f, 0x83, +0x01, 0xae, 0x02, 0xfe, 0x4b, 0x4b, 0x54, 0xd5, 0xbe, 0x87, 0x82, 0xc9, 0xcb, 0xee, 0x9c, 0x78, +0xd2, 0x03, 0xb5, 0x7c, 0x9c, 0x13, 0x85, 0x99, 0x1a, 0x20, 0x15, 0x81, 0x6b, 0x40, 0xe4, 0x5b, +0x71, 0xaf, 0x27, 0x06, 0x9b, 0xa2, 0x56, 0x38, 0xb5, 0x3c, 0xcb, 0xb5, 0x26, 0xcb, 0xdd, 0xd9, +0x3b, 0xbf, 0x76, 0xc9, 0x6f, 0x7f, 0x9e, 0x0b, 0x0a, 0xce, 0x56, 0xe5, 0x0d, 0x90, 0x5e, 0x1b, +0xda, 0x89, 0xe6, 0x1c, 0xf4, 0x80, 0x28, 0x19, 0x89, 0x99, 0x41, 0x4b, 0x57, 0xc8, 0x68, 0x36, +0xe3, 0xb9, 0xf7, 0xac, 0x75, 0xe4, 0xa5, 0x4d, 0xbd, 0x31, 0xdd, 0xc2, 0x35, 0x88, 0x3e, 0x30, +0x5c, 0x6a, 0x7d, 0xc6, 0x33, 0xcc, 0x04, 0x8c, 0x7c, 0x3d, 0xb5, 0x40, 0x09, 0x8c, 0x50, 0xce, +0xec, 0xf0, 0x39, 0x97, 0xfb, 0xd1, 0x80, 0x60, 0x07, 0x91, 0xd4, 0xcb, 0xec, 0x3d, 0xba, 0xbe, +0xd1, 0xf2, 0x69, 0xb7, 0x40, 0x66, 0x9f, 0xa6, 0x29, 0x19, 0x7b, 0x28, 0xad, 0x3b, 0x65, 0xa6, +0x34, 0xd1, 0xcd, 0xe9, 0xbe, 0xdb, 0xf3, 0xe1, 0xc4, 0x52, 0x3d, 0x78, 0x77, 0xdd, 0x85, 0x39, +0x4a, 0x96, 0x3d, 0x1f, 0xf0, 0x43, 0xfa, 0xfb, 0xf7, 0x62, 0xac, 0xef, 0xda, 0x80, 0x46, 0x57, +0xe6, 0xcd, 0x71, 0x62, 0xcb, 0x85, 0xad, 0x9d, 0xfc, 0xfd, 0xa7, 0xc9, 0x39, 0xc0, 0xe3, 0x35, +0x2a, 0x04, 0x5f, 0x7a, 0xd5, 0xd1, 0xd1, 0x24, 0xb0, 0xaa, 0x96, 0x83, 0x40, 0xc6, 0x93, 0x2d, +0x67, 0xbf, 0xfe, 0xdc, 0x3f, 0x0b, 0xe1, 0xaa, 0x26, 0x4c, 0x51, 0x30, 0x85, 0x9a, 0xe5, 0x64, +0x36, 0x08, 0xf5, 0x3b, 0xf6, 0x5c, 0x93, 0x73, 0x8f, 0xd5, 0x08, 0xe3, 0xf1, 0x04, 0xc0, 0xa9, +0xb9, 0x10, 0xc0, 0xf3, 0x10, 0xea, 0xef, 0x7e, 0x7c, 0x82, 0x4f, 0x25, 0xdc, 0x30, 0x58, 0xd7, +0xe8, 0x0f, 0x3f, 0xdd, 0x32, 0xd9, 0x14, 0xd6, 0x1d, 0xf8, 0x21, 0x83, 0x26, 0x0d, 0xa9, 0xbd, +0xa3, 0x9e, 0x33, 0xb8, 0x36, 0x88, 0x37, 0x8d, 0x5d, 0x29, 0x83, 0xca, 0x61, 0x6c, 0x93, 0x7d, +0xd8, 0x76, 0xa4, 0x5f, 0xc3, 0x67, 0x81, 0xae, 0x88, 0x37, 0xf9, 0xc3, 0x6e, 0x81, 0x9e, 0x22, +0xb5, 0x86, 0x9f, 0xfe, 0xe3, 0x45, 0xa3, 0xca, 0xcf, 0xe1, 0xf0, 0x24, 0x7f, 0xb4, 0x9c, 0x20, +0x14, 0xf5, 0x44, 0x78, 0x99, 0xb7, 0x69, 0xc0, 0xae, 0xb2, 0x91, 0xf8, 0xb0, 0xb8, 0x44, 0xcd, +0xc1, 0xd8, 0xd7, 0xdd, 0xab, 0xa4, 0xd2, 0xfd, 0x50, 0xc4, 0xf5, 0x85, 0x3f, 0x91, 0x46, 0xec, +0x68, 0x3d, 0xc3, 0xa2, 0x62, 0x47, 0x80, 0xde, 0x97, 0x49, 0xb9, 0x2e, 0x8a, 0x30, 0xcf, 0x4a, +0x0f, 0xee, 0x85, 0x12, 0x41, 0x1e, 0x69, 0xdb, 0xe0, 0x95, 0x20, 0x05, 0x95, 0x4a, 0xb8, 0x03, +0x83, 0x29, 0x8e, 0xaf, 0xa3, 0x34, 0x99, 0x9c, 0x90, 0x7b, 0xda, 0xf1, 0x6f, 0x93, 0x94, 0x5c, +0x36, 0x70, 0x21, 0x1b, 0x94, 0x6e, 0xff, 0x87, 0x9a, 0xcd, 0xd6, 0x98, 0x5f, 0x01, 0x95, 0x5e, +0x61, 0xf3, 0x79, 0xff, 0x59, 0xe5, 0xfd, 0x46, 0xd7, 0x26, 0x9b, 0xe5, 0x37, 0x54, 0x0f, 0xa1, +0x12, 0x14, 0x7b, 0x1d, 0x96, 0xae, 0x64, 0x1a, 0x1a, 0xd0, 0x8a, 0x62, 0xc6, 0xe0, 0xec, 0x23, +0xb0, 0x48, 0x95, 0x86, 0x72, 0xfa, 0xfb, 0xab, 0x30, 0x95, 0x4d, 0x18, 0xa8, 0x5a, 0x94, 0xd1, +0xfa, 0x40, 0x50, 0x0a, 0x9b, 0xce, 0xf9, 0x81, 0x2e, 0x2c, 0xfe, 0x16, 0x84, 0xbc, 0x79, 0x3e, +0x36, 0xcc, 0x00, 0x58, 0xd5, 0x42, 0x85, 0x30, 0x61, 0x2a, 0x39, 0x33, 0xcd, 0x2a, 0xdf, 0xce, +0x70, 0x89, 0xae, 0x8c, 0x31, 0x9e, 0x3f, 0x00, 0x39, 0xba, 0xfa, 0xd6, 0x93, 0x98, 0xf7, 0x4b, +0x35, 0x3a, 0x6d, 0x36, 0xa5, 0xc2, 0xe5, 0x9c, 0xff, 0x04, 0xc3, 0x9c, 0x0d, 0xa6, 0x0a, 0xe6, +0xa3, 0xc7, 0x91, 0x5d, 0x47, 0xaa, 0x52, 0xb2, 0xb7, 0xb2, 0x48, 0xb5, 0x73, 0x34, 0xe1, 0x7e, +0xe0, 0x03, 0xc5, 0x79, 0x77, 0xd8, 0x9e, 0xf4, 0xae, 0xb2, 0x38, 0x34, 0x24, 0x5d, 0xb4, 0xd7, +0xa7, 0xf6, 0x26, 0xbf, 0x23, 0xca, 0x4f, 0x31, 0x2d, 0xef, 0x62, 0xe9, 0x74, 0x87, 0xae, 0x01, +0xe9, 0xd5, 0xfc, 0x7e, 0xd8, 0x4b, 0x21, 0x2c, 0x9e, 0x7b, 0x55, 0x23, 0x22, 0xc3, 0xf4, 0x55, +0x0f, 0xf0, 0xa7, 0xfc, 0x0a, 0x63, 0x8e, 0x8c, 0x37, 0x42, 0x08, 0x70, 0xd2, 0xd3, 0xaa, 0x9f, +0xac, 0x99, 0xbd, 0xfb, 0x98, 0xc3, 0x0c, 0xfc, 0x8a, 0x6f, 0xcd, 0x4b, 0x3f, 0x0d, 0x98, 0x24, +0x7e, 0xb0, 0x84, 0x36, 0x51, 0xaf, 0xdc, 0x7c, 0x52, 0x94, 0xb1, 0x14, 0x34, 0x93, 0xf8, 0x5b, +0x81, 0x85, 0xe2, 0x2b, 0xf5, 0xb3, 0x0d, 0xfd, 0xd3, 0x42, 0xcb, 0x44, 0x6b, 0xea, 0x5e, 0x43, +0x63, 0x83, 0x26, 0x77, 0x03, 0xf9, 0xe9, 0xfe, 0xbe, 0x99, 0x55, 0xd0, 0x37, 0x2d, 0x17, 0x75, +0xb1, 0x9f, 0xd4, 0xcc, 0xda, 0xb2, 0x4a, 0x14, 0xc3, 0x2e, 0xad, 0xa4, 0x2a, 0xab, 0xe6, 0xee, +0x6a, 0xe0, 0x5e, 0xfb, 0xd1, 0xaa, 0xd3, 0xc8, 0x55, 0x3b, 0xa6, 0x8e, 0xf2, 0x29, 0x76, 0x0f, +0xc9, 0x0e, 0x96, 0x1f, 0xe0, 0x4d, 0xd1, 0xf4, 0xb2, 0x12, 0x90, 0xe6, 0x2e, 0x17, 0x55, 0x76, +0xe9, 0xb0, 0x0f, 0xe6, 0xad, 0x4c, 0x03, 0xb3, 0xa0, 0xa1, 0x8e, 0xc4, 0x34, 0x07, 0xd1, 0xf6, +0xa1, 0xff, 0x3c, 0x5b, 0x49, 0x81, 0xa0, 0xda, 0xc0, 0x91, 0xf6, 0x5c, 0xcb, 0xbb, 0xdd, 0x3c, +0x3b, 0xd2, 0xd4, 0x20, 0xd0, 0x57, 0x50, 0x36, 0xf8, 0x94, 0x85, 0x87, 0x0d, 0x23, 0x01, 0xef, +0xbd, 0x00, 0x8a, 0x63, 0x30, 0xb7, 0x1b, 0xf1, 0x21, 0xd0, 0x9d, 0xac, 0xdd, 0xfc, 0xaf, 0x93, +0xb1, 0xe6, 0x5e, 0x0a, 0xaf, 0xb0, 0x2a, 0x27, 0x7e, 0xde, 0x9c, 0x9e, 0xc1, 0x90, 0xd8, 0x9b, +0xe5, 0x48, 0x1c, 0x1a, 0x93, 0x62, 0xa7, 0x80, 0x3d, 0x69, 0xd8, 0x21, 0x15, 0xa3, 0x82, 0x62, +0x37, 0x31, 0x60, 0x11, 0x61, 0x1b, 0x58, 0x60, 0xa7, 0x7b, 0xc4, 0x5a, 0x4f, 0x53, 0x10, 0xf5, +0xaa, 0xf3, 0xd2, 0xee, 0xc2, 0x79, 0x1a, 0xaa, 0x95, 0xd9, 0x0a, 0x9c, 0xc1, 0xe6, 0x88, 0x55, +0x06, 0xe7, 0x9e, 0x2d, 0xee, 0x77, 0x00, 0x3d, 0x26, 0x17, 0x88, 0xbd, 0x14, 0xe1, 0xda, 0xc1, +0xd6, 0x3c, 0x78, 0xb8, 0xc0, 0xc9, 0x9b, 0x62, 0x83, 0x94, 0x48, 0x84, 0x56, 0x10, 0xf5, 0xd0, +0x29, 0x2e, 0x32, 0xe3, 0xc1, 0xa5, 0x86, 0x9e, 0xb1, 0x7c, 0xcb, 0xe9, 0x78, 0xfe, 0x3c, 0xfb, +0x3c, 0x5f, 0xd5, 0xfa, 0xbc, 0x8a, 0x4d, 0x16, 0xe4, 0x57, 0xaa, 0x3b, 0xb3, 0xdf, 0x5d, 0xc8, +0xc8, 0x29, 0x27, 0xde, 0xa8, 0x39, 0xf1, 0x32, 0x25, 0x5c, 0x77, 0x03, 0x9e, 0x3a, 0xd1, 0xff, +0x03, 0x62, 0x81, 0xfc, 0x2a, 0x1e, 0x39, 0xe7, 0x2e, 0x61, 0x98, 0xe1, 0x28, 0xa9, 0x2c, 0x6b, +0x54, 0x9e, 0x16, 0x61, 0x48, 0x19, 0x40, 0xf1, 0x69, 0xc9, 0xf5, 0x46, 0x02, 0x40, 0xdb, 0xba, +0x4e, 0xaf, 0x7d, 0xa7, 0x64, 0xc5, 0x83, 0xd2, 0xd3, 0x4f, 0x56, 0x2c, 0x4f, 0xfa, 0x72, 0xd5, +0x01, 0x21, 0xc6, 0x31, 0x55, 0x91, 0x4f, 0xe7, 0x7b, 0x0c, 0xc4, 0x7a, 0xed, 0xc3, 0xaf, 0x0a, +0x67, 0x03, 0x1f, 0x0f, 0x5b, 0xb9, 0x34, 0x6c, 0xc2, 0x0c, 0xea, 0x6f, 0x50, 0xb7, 0xda, 0xf7, +0xee, 0xa3, 0xcc, 0xcb, 0x54, 0x42, 0xd2, 0xa8, 0x98, 0xab, 0x5f, 0xb4, 0xf0, 0x5d, 0x4a, 0xf4, +0x82, 0x39, 0xfe, 0x09, 0x6f, 0x5f, 0x0e, 0xcb, 0x7f, 0x9e, 0xb0, 0xb2, 0x1f, 0x6c, 0xdc, 0x47, +0x24, 0x38, 0x65, 0xc8, 0x42, 0xbf, 0xe3, 0xa5, 0x67, 0xf4, 0x9b, 0x45, 0x97, 0xa6, 0x42, 0xe2, +0x1f, 0xbd, 0x23, 0x47, 0x2a, 0x6c, 0xc2, 0x03, 0xc9, 0x51, 0x49, 0x42, 0x88, 0x90, 0x9e, 0xd9, +0x97, 0x3b, 0x84, 0x65, 0x54, 0xae, 0x30, 0x1d, 0x17, 0xf0, 0xd1, 0x98, 0x72, 0x66, 0x0e, 0x7e, +0xc7, 0xc8, 0x64, 0xc8, 0xd4, 0xd4, 0xa4, 0x48, 0x18, 0x81, 0xd7, 0x39, 0x7c, 0x25, 0xfe, 0x8e, +0x0c, 0xa2, 0x6c, 0xc0, 0x0c, 0x98, 0xc8, 0x25, 0x2a, 0xb7, 0xad, 0xe8, 0x8f, 0x7b, 0xb3, 0xd1, +0x64, 0x66, 0x6d, 0x34, 0xed, 0x02, 0x70, 0x40, 0xa0, 0xbd, 0x89, 0xe9, 0x94, 0xb6, 0x9f, 0x2d, +0x5b, 0xcc, 0x90, 0x49, 0xdf, 0xbe, 0x28, 0x1f, 0x8b, 0x25, 0xac, 0x4c, 0x79, 0xdc, 0xc4, 0xf8, +0x7b, 0x41, 0xef, 0xcb, 0xee, 0x29, 0xa8, 0x47, 0xdc, 0x98, 0x00, 0x11, 0x6c, 0x05, 0xe3, 0x92, +0x7f, 0x5c, 0x83, 0xc6, 0x5b, 0x49, 0xf1, 0xdc, 0x25, 0xa1, 0x01, 0xa4, 0x86, 0xc3, 0x37, 0x66, +0x25, 0x58, 0x8a, 0x00, 0x3d, 0x0f, 0x41, 0x07, 0x0f, 0x9d, 0xaf, 0x2a, 0x2b, 0xc7, 0x83, 0xd6, +0xe8, 0xe3, 0xde, 0x78, 0xd9, 0x82, 0x1f, 0xc9, 0xa1, 0xbd, 0x45, 0xdc, 0x4b, 0xd0, 0x54, 0xbb, +0xf0, 0xf2, 0x0b, 0x69, 0x7d, 0x25, 0xba, 0x12, 0xb2, 0xad, 0xcf, 0x83, 0xe4, 0xb1, 0x87, 0xaa, +0x7b, 0xaa, 0xc1, 0xe4, 0xa4, 0x04, 0x44, 0x78, 0x78, 0xe3, 0xb2, 0x49, 0x84, 0x52, 0x61, 0x85, +0xf9, 0xed, 0xf9, 0x8a, 0x6c, 0x84, 0x11, 0xcd, 0x42, 0x28, 0x24, 0x98, 0xfd, 0x9c, 0x45, 0x6a, +0x61, 0x49, 0xf5, 0xe7, 0xf2, 0xb7, 0x60, 0xba, 0x20, 0xf3, 0xbc, 0xfe, 0x91, 0x1a, 0x16, 0x25, +0x76, 0x79, 0x11, 0x94, 0x70, 0x69, 0x33, 0xee, 0x32, 0x9c, 0x42, 0x9b, 0x03, 0xfa, 0xeb, 0x41, +0xb9, 0x1d, 0x96, 0xff, 0x0e, 0x2d, 0x33, 0x5c, 0xe8, 0x34, 0xce, 0xbe, 0x73, 0x85, 0x2a, 0x29, +0x09, 0x52, 0xd2, 0xe3, 0x25, 0xc7, 0x09, 0xd6, 0x1d, 0xae, 0x86, 0xf2, 0xb4, 0x51, 0x28, 0x57, +0xea, 0x65, 0xc1, 0xef, 0xb6, 0xd3, 0xa7, 0x93, 0xd3, 0x6c, 0x94, 0x92, 0x1e, 0xbd, 0xe9, 0x85, +0x3d, 0x70, 0x42, 0x8b, 0x23, 0x54, 0xa9, 0x63, 0xdd, 0xc5, 0xf6, 0x91, 0xce, 0xca, 0x27, 0x1c, +0x52, 0x38, 0x4b, 0x26, 0xb7, 0xde, 0x68, 0x39, 0xa4, 0x54, 0x56, 0xaf, 0x58, 0x52, 0x78, 0x5f, +0xe4, 0xdc, 0xbd, 0x35, 0xf5, 0x72, 0x7f, 0x78, 0xd7, 0x75, 0x6e, 0x5b, 0xea, 0xff, 0xf0, 0xde, +0xe5, 0x03, 0xa5, 0xba, 0x49, 0x13, 0xa5, 0x4b, 0x21, 0x41, 0x65, 0x10, 0xe0, 0xdc, 0xb9, 0x55, +0xcb, 0x78, 0x71, 0x68, 0x04, 0x27, 0xd0, 0x26, 0x2a, 0x2c, 0x26, 0x6b, 0xfc, 0xd9, 0xbe, 0x8e, +0x8d, 0x77, 0x75, 0x1e, 0x11, 0xd6, 0x27, 0x4d, 0xf8, 0x79, 0x64, 0xd2, 0x99, 0x9c, 0x9c, 0x9b, +0x31, 0xa8, 0xc3, 0x92, 0xd0, 0x5d, 0xd1, 0x76, 0x79, 0x3a, 0x61, 0x28, 0x22, 0xfd, 0x42, 0x55, +0x22, 0x1a, 0x3c, 0x8d, 0x0d, 0x1b, 0x21, 0x6c, 0xa0, 0xfc, 0xcc, 0xf8, 0xe4, 0x1a, 0x77, 0x7e, +0x63, 0x33, 0x91, 0x01, 0x89, 0x07, 0x4b, 0xb6, 0x88, 0x1f, 0xbc, 0x0e, 0x14, 0x2e, 0x68, 0xca, +0x5d, 0xf1, 0x48, 0xd9, 0x99, 0xd9, 0xe9, 0x95, 0xfc, 0xc8, 0x94, 0x5b, 0x97, 0xc4, 0x08, 0x6d, +0xa7, 0x6e, 0x47, 0xd2, 0x9a, 0x2b, 0xf8, 0x9b, 0x4b, 0x5a, 0xc2, 0x14, 0x3f, 0x96, 0x3c, 0x8a, +0x14, 0x3a, 0x88, 0xbc, 0x59, 0xe7, 0xf5, 0x7a, 0x7c, 0xfa, 0xb3, 0x10, 0x9d, 0xa2, 0x2b, 0x84, +0x0a, 0x38, 0xa8, 0x1d, 0x2f, 0x34, 0x47, 0x1b, 0x7f, 0xb2, 0xb6, 0x56, 0xf4, 0xb3, 0x74, 0x20, +0xc7, 0x81, 0xde, 0x22, 0xd8, 0x5d, 0x0c, 0xd4, 0x4f, 0x65, 0xac, 0xed, 0x80, 0x49, 0x1e, 0xd6, +0xa9, 0xe1, 0xe6, 0x06, 0x10, 0x78, 0x62, 0xd3, 0x88, 0x1c, 0xbf, 0xd5, 0xfd, 0x54, 0x72, 0x73, +0x6c, 0x89, 0x25, 0x21, 0xd0, 0x8c, 0x2e, 0x9b, 0x55, 0x4f, 0x87, 0x6e, 0xa5, 0x14, 0xc5, 0x53, +0x65, 0x52, 0x06, 0xaf, 0x37, 0xd1, 0xb1, 0xd7, 0xfb, 0xc2, 0x9b, 0x64, 0x38, 0xb5, 0xd9, 0xca, +0x34, 0xfa, 0x76, 0x9e, 0xb3, 0x5b, 0x8a, 0xa3, 0x65, 0x26, 0xe3, 0x8c, 0x36, 0xba, 0x25, 0x57, +0x55, 0x7a, 0xcb, 0x0d, 0x6a, 0x39, 0x94, 0x70, 0xab, 0x59, 0x7f, 0x9e, 0x22, 0x44, 0xec, 0x3f, +0xc2, 0x6a, 0x1b, 0xda, 0x86, 0x44, 0xdd, 0x11, 0xd0, 0x1f, 0xd7, 0x2c, 0xf5, 0x52, 0x02, 0x2e, +0xbb, 0xc8, 0x62, 0x0b, 0xc6, 0xf3, 0xad, 0x8e, 0x92, 0x65, 0xf1, 0xc5, 0x7f, 0x62, 0x26, 0xd5, +0x14, 0xa4, 0xbf, 0xef, 0x08, 0xa4, 0x74, 0x31, 0x44, 0xec, 0x6f, 0x2f, 0x46, 0x7e, 0x55, 0xd6, +0x37, 0x4b, 0x66, 0x85, 0x51, 0x2b, 0x47, 0x74, 0x1a, 0x83, 0xaa, 0x27, 0xe0, 0xd0, 0x2e, 0x9a, +0xdc, 0x48, 0x4b, 0xca, 0x69, 0x8a, 0xcc, 0x48, 0xc6, 0x0b, 0x2a, 0x50, 0xb5, 0x2b, 0x74, 0xec, +0x77, 0xcf, 0xdd, 0xe8, 0xef, 0x55, 0xd1, 0xd1, 0x37, 0x73, 0xd3, 0x71, 0xa4, 0x27, 0x69, 0x6d, +0x08, 0xd0, 0x9b, 0x58, 0x15, 0x09, 0x19, 0x91, 0x1c, 0xc3, 0x74, 0xe9, 0x09, 0x12, 0xec, 0x33, +0x95, 0x85, 0x59, 0x32, 0x37, 0xc6, 0xa2, 0xee, 0x61, 0x61, 0x42, 0x4a, 0xbf, 0x7a, 0xa9, 0x75, +0x16, 0x08, 0x67, 0x24, 0xa4, 0xd1, 0x06, 0xbc, 0x25, 0xf8, 0x32, 0xcc, 0x7d, 0xb5, 0x1e, 0xc4, +0x54, 0xf6, 0xfd, 0xdc, 0x5c, 0xc4, 0x3d, 0x9d, 0x09, 0x09, 0x2e, 0xcc, 0x15, 0x18, 0x96, 0xce, +0x66, 0x41, 0x26, 0xba, 0x00, 0x89, 0x02, 0xdc, 0xbd, 0xeb, 0x01, 0xf1, 0x4e, 0x71, 0xce, 0xb3, +0xe6, 0xd0, 0x8e, 0x0c, 0x94, 0x10, 0xb0, 0x39, 0xb2, 0x7c, 0x77, 0x1e, 0x71, 0x8c, 0x79, 0x90, +0x72, 0xb3, 0x42, 0xa8, 0x79, 0xed, 0x1b, 0x20, 0x90, 0x1d, 0xa9, 0x0a, 0x21, 0xcb, 0xe3, 0xda, +0x4e, 0xea, 0x13, 0xf4, 0x83, 0xcd, 0xcd, 0x92, 0x4b, 0xe7, 0xd6, 0x07, 0x14, 0xd2, 0x08, 0x2f, +0xe5, 0x48, 0xd0, 0xf0, 0x52, 0xec, 0x17, 0x5e, 0xdd, 0x6b, 0x43, 0x0f, 0xc4, 0x37, 0xad, 0x1b, +0x6d, 0x5b, 0xe2, 0xb7, 0x7a, 0x0a, 0x6e, 0x18, 0xe2, 0x19, 0x4f, 0x48, 0x1d, 0xf5, 0x7b, 0x55, +0xe8, 0xd2, 0x11, 0x39, 0x9b, 0xa4, 0x83, 0x47, 0xdc, 0xa4, 0xc9, 0x7e, 0x4c, 0x81, 0xae, 0x6a, +0x45, 0x7b, 0xb5, 0xce, 0x1f, 0x52, 0x6b, 0x1d, 0x00, 0xfd, 0x55, 0x20, 0x88, 0x47, 0x77, 0xf1, +0x9a, 0x86, 0xee, 0xa3, 0x02, 0xb5, 0xa7, 0x39, 0x92, 0x8e, 0xb5, 0x97, 0x1b, 0xe5, 0xb7, 0xc8, +0xcd, 0x01, 0x53, 0x66, 0x5e, 0x5e, 0xec, 0x4b, 0x21, 0x94, 0xc8, 0xa3, 0xf4, 0x87, 0xbf, 0xcf, +0x9d, 0x5e, 0x47, 0xe3, 0x1a, 0x38, 0x40, 0x6d, 0xf0, 0x2d, 0xed, 0x71, 0x60, 0xbf, 0xcf, 0xf4, +0x79, 0xf7, 0x1b, 0xf7, 0x39, 0x1a, 0xdc, 0x9e, 0x70, 0x16, 0x4d, 0x56, 0x89, 0x9f, 0xe1, 0x6f, +0xd9, 0x63, 0xeb, 0x9f, 0x23, 0x16, 0xf1, 0xd4, 0x5c, 0xeb, 0xe3, 0x90, 0xc0, 0xfb, 0x47, 0x04, +0x64, 0x09, 0xb6, 0xa4, 0x7b, 0x31, 0xfc, 0xf1, 0x74, 0xe7, 0x23, 0x28, 0x3c, 0x30, 0x33, 0x7d, +0x13, 0x2c, 0xec, 0xed, 0x74, 0x7c, 0xf6, 0x20, 0x40, 0xc8, 0xcb, 0xa2, 0x0e, 0x5f, 0xd9, 0x8d, +0xc1, 0xee, 0xd4, 0x90, 0xe2, 0xbd, 0xbf, 0xcb, 0xbc, 0xe9, 0xeb, 0x04, 0x24, 0xb8, 0x35, 0x0d, +0x1e, 0x01, 0x53, 0xbd, 0x35, 0x48, 0x0e, 0x8b, 0x80, 0x2b, 0x8c, 0xe8, 0x90, 0xa1, 0x3f, 0x23, +0xdf, 0x82, 0x73, 0xeb, 0xbf, 0x7c, 0x36, 0xe8, 0x28, 0x9f, 0x6f, 0x84, 0xfe, 0x53, 0x03, 0xcb, +0x3e, 0x79, 0xe7, 0x2e, 0x4b, 0x3d, 0x65, 0x8e, 0x78, 0xe6, 0x22, 0x98, 0x68, 0x9e, 0x3c, 0xd1, +0x99, 0xd3, 0x57, 0xf5, 0x74, 0x69, 0xf3, 0xd7, 0xd6, 0x1a, 0xf2, 0xe5, 0x14, 0x35, 0xae, 0x82, +0x05, 0xcf, 0x4a, 0x98, 0xfa, 0xbc, 0x12, 0xc8, 0xc5, 0x99, 0xbf, 0xda, 0x5e, 0x41, 0x9c, 0x2e, +0xd3, 0xb7, 0x33, 0x35, 0xbd, 0xe5, 0x82, 0x46, 0xb1, 0x8f, 0x51, 0x96, 0xad, 0x39, 0x66, 0x10, +0x34, 0x96, 0x6b, 0x89, 0xa6, 0xae, 0x08, 0xec, 0x6a, 0x34, 0x9c, 0x98, 0xe7, 0xe5, 0xf2, 0xb5, +0xfd, 0x25, 0xd8, 0x68, 0xdd, 0xe4, 0xfa, 0xc0, 0xc4, 0xcf, 0x3f, 0xda, 0x7e, 0xde, 0xfd, 0x75, +0xed, 0x5d, 0x36, 0x9e, 0x2a, 0x52, 0xe9, 0x8a, 0xc5, 0x7b, 0x8b, 0xa9, 0x06, 0x48, 0x9a, 0x39, +0x3f, 0x0e, 0xe0, 0xf5, 0x15, 0xf4, 0x33, 0x67, 0x35, 0xbc, 0x5e, 0x61, 0xe2, 0xf6, 0xcc, 0x81, +0xdd, 0x4a, 0x2c, 0xc5, 0x22, 0x51, 0xe5, 0xc3, 0xe6, 0xaa, 0xa2, 0x7b, 0x08, 0xa5, 0x64, 0x9d, +0x5d, 0xd4, 0xca, 0xfb, 0xfc, 0xef, 0x77, 0xa7, 0x18, 0xb3, 0x99, 0x1c, 0x58, 0x1a, 0xd0, 0x7d, +0x3d, 0x4b, 0xcd, 0x4d, 0xc1, 0x03, 0xf2, 0x2f, 0xf0, 0xd2, 0xa6, 0x27, 0x57, 0x23, 0xe2, 0xa8, +0xb8, 0xe3, 0xc9, 0x08, 0xc6, 0x60, 0x07, 0x76, 0x0c, 0x73, 0x8f, 0x4e, 0xc6, 0xfd, 0x8c, 0xb0, +0xb7, 0x51, 0xb5, 0x96, 0x31, 0x0f, 0x3f, 0xea, 0xd0, 0xb6, 0xc7, 0xf8, 0x5f, 0x65, 0x6a, 0xba, +0x5e, 0xfd, 0xc9, 0x2a, 0x82, 0x26, 0x23, 0x19, 0xb6, 0x36, 0x6b, 0xbf, 0xcf, 0x32, 0x0b, 0x14, +0xc6, 0xf6, 0xf1, 0x2b, 0x5c, 0x22, 0xcb, 0xf5, 0xb7, 0xac, 0xda, 0x45, 0x35, 0x40, 0x55, 0x5a, +0x20, 0xe0, 0xcc, 0xbd, 0x2a, 0xf2, 0x4c, 0xc9, 0x34, 0xd8, 0xa3, 0x9f, 0xc7, 0x6e, 0x51, 0x20, +0x13, 0x50, 0x9f, 0xd5, 0x03, 0x8c, 0xe9, 0xae, 0x3c, 0x7c, 0xb2, 0xf9, 0x37, 0xd1, 0xda, 0x7e, +0x1f, 0xf3, 0xa8, 0x79, 0xde, 0xa7, 0xc4, 0xcf, 0xbc, 0x2f, 0x15, 0x2f, 0x23, 0xcb, 0x9f, 0xa8, +0xab, 0x74, 0xa5, 0x36, 0x6c, 0xb3, 0xdf, 0xa0, 0x6a, 0xff, 0x33, 0xd4, 0x31, 0x0f, 0x98, 0x30, +0x35, 0xd5, 0xb6, 0xac, 0xe5, 0x3e, 0xfe, 0x85, 0xcb, 0x1b, 0x7b, 0x5e, 0x27, 0x3e, 0x5f, 0xb3, +0x6f, 0x22, 0xb5, 0x0b, 0x0a, 0x78, 0x1d, 0xa9, 0x2f, 0x86, 0xe2, 0xc6, 0x7f, 0x73, 0xc5, 0xfb, +0x14, 0xce, 0x20, 0x61, 0xbc, 0x81, 0x36, 0x0b, 0x79, 0xe8, 0xd9, 0xc7, 0xc3, 0xc0, 0xf1, 0x25, +0xda, 0x88, 0x32, 0x04, 0x06, 0x16, 0x53, 0x4e, 0x9f, 0x3d, 0x1e, 0xa0, 0xd5, 0x6a, 0x8b, 0xdf, +0x8d, 0x5a, 0xcf, 0xe0, 0xfa, 0xe8, 0x86, 0x53, 0x70, 0x8e, 0x1c, 0x7d, 0x9f, 0x7c, 0xb9, 0xdd, +0xde, 0x10, 0x14, 0xe2, 0xb3, 0x2b, 0xaf, 0xa1, 0xf0, 0xec, 0x85, 0x0c, 0x08, 0xf2, 0x14, 0x48, +0x43, 0x24, 0x81, 0x5d, 0x41, 0xde, 0x18, 0x02, 0xa3, 0x84, 0x98, 0x13, 0xaa, 0x14, 0x5a, 0xbc, +0x16, 0x9a, 0x2b, 0xde, 0x65, 0xb4, 0xa7, 0xa7, 0xfd, 0x94, 0xc9, 0x6c, 0xd1, 0x04, 0x41, 0xb6, +0xfc, 0xcc, 0x68, 0x79, 0xff, 0x35, 0x5b, 0xc7, 0x7b, 0xed, 0x63, 0xef, 0xcd, 0xad, 0x11, 0x32, +0x1d, 0x88, 0xa4, 0xea, 0x67, 0x83, 0x4e, 0x90, 0x05, 0xd6, 0x6e, 0x14, 0xe1, 0xea, 0x24, 0x2a, +0x2e, 0xc3, 0x59, 0xbe, 0x40, 0x51, 0x00, 0x24, 0x9e, 0x7d, 0x5a, 0x90, 0x41, 0x3a, 0xfb, 0xfa, +0x4b, 0x44, 0xeb, 0x8d, 0x3b, 0x1c, 0x75, 0xc1, 0x5e, 0xd6, 0x97, 0xaa, 0x5f, 0x29, 0x00, 0x3f, +0x7b, 0xb5, 0xa9, 0x50, 0xe2, 0x38, 0x3b, 0x21, 0x6c, 0x71, 0x78, 0x5d, 0x65, 0xdc, 0xcb, 0x59, +0x53, 0xfe, 0x6a, 0x09, 0x2a, 0x1b, 0xb1, 0xa5, 0xeb, 0x06, 0x81, 0x16, 0xb3, 0x33, 0x3e, 0x30, +0x1a, 0x1e, 0x73, 0x27, 0x17, 0x1d, 0xbb, 0xad, 0xb7, 0xbe, 0xbe, 0x44, 0x9f, 0xd6, 0xa7, 0xe5, +0x3e, 0xc3, 0x1a, 0x85, 0xfb, 0x50, 0x91, 0x25, 0xc7, 0x99, 0x0a, 0x2f, 0x73, 0xc9, 0xc7, 0x15, +0x70, 0x1d, 0xe9, 0x97, 0x16, 0x41, 0x93, 0x0b, 0x82, 0x36, 0xdc, 0x9b, 0x38, 0x3c, 0x71, 0x37, +0x6e, 0xec, 0x3c, 0xd1, 0x25, 0xc3, 0x79, 0x04, 0xf4, 0xfe, 0x50, 0xc9, 0xef, 0x85, 0x1f, 0xb1, +0x45, 0x92, 0x8e, 0xb0, 0x7f, 0x42, 0xaf, 0x16, 0xab, 0x4a, 0xeb, 0x00, 0x4b, 0xd3, 0xbd, 0x94, +0x53, 0xe9, 0x16, 0xf0, 0x4d, 0x80, 0x97, 0x1b, 0x60, 0x56, 0x6f, 0x33, 0x0a, 0x94, 0x69, 0x3c, +0x4b, 0x7b, 0x66, 0x92, 0x53, 0xa9, 0xda, 0x7c, 0x68, 0x48, 0x36, 0x8b, 0x00, 0x19, 0xd2, 0xf8, +0xe8, 0x25, 0x32, 0x70, 0x09, 0xfd, 0x9c, 0x05, 0x8c, 0x79, 0x5a, 0xb5, 0xd5, 0x3d, 0x07, 0x3c, +0x62, 0x3b, 0xd0, 0xb1, 0x5d, 0x35, 0x5f, 0x50, 0x7b, 0xb0, 0x82, 0x6c, 0xb2, 0xa4, 0xd7, 0x50, +0x50, 0x66, 0xa8, 0xe2, 0x55, 0x90, 0xc1, 0x6b, 0x5b, 0x4c, 0xe4, 0x48, 0xec, 0x93, 0x35, 0xf0, +0x48, 0x93, 0xce, 0x6d, 0x92, 0xe4, 0x89, 0x9d, 0x65, 0x52, 0xd9, 0xeb, 0x9a, 0xe6, 0xe5, 0xaf, +0xbe, 0x8d, 0x7a, 0x12, 0x2d, 0xc0, 0x1c, 0xd0, 0x5f, 0x30, 0x3b, 0x8a, 0x49, 0xb1, 0x2d, 0x20, +0x30, 0x50, 0x52, 0x1c, 0x11, 0xf6, 0x5c, 0x5e, 0xeb, 0x09, 0xbc, 0xfa, 0x63, 0xa9, 0x75, 0x2c, +0xab, 0x99, 0x17, 0xca, 0xba, 0x3d, 0xca, 0x02, 0xed, 0x9d, 0xc5, 0xac, 0x3a, 0xf0, 0x68, 0xcf, +0x9f, 0x53, 0xa8, 0x90, 0x7a, 0x38, 0xc5, 0xdc, 0x28, 0xc6, 0xfd, 0x0f, 0x21, 0xbb, 0xa0, 0xfa, +0x20, 0x5a, 0x8c, 0x3c, 0x1a, 0x7e, 0xba, 0x13, 0x19, 0x7e, 0x53, 0x7d, 0xea, 0xef, 0x08, 0x7f, +0x75, 0x64, 0x94, 0x34, 0xd2, 0xb9, 0xbb, 0xe4, 0x08, 0x58, 0xaf, 0x4e, 0xe5, 0xa8, 0xa3, 0x0a, +0xdb, 0x26, 0x66, 0xe6, 0x66, 0x14, 0x75, 0x6b, 0x96, 0x86, 0x01, 0x0b, 0x01, 0x06, 0x1f, 0x6d, +0xb5, 0xa7, 0xbc, 0xfd, 0x25, 0xc4, 0x64, 0xb2, 0x6a, 0x97, 0x68, 0x42, 0x1d, 0xe6, 0x00, 0xb9, +0xc7, 0x29, 0xc4, 0xf6, 0x6b, 0xc7, 0x8b, 0xb2, 0x01, 0x2c, 0x2a, 0xdd, 0x40, 0x7e, 0xc0, 0x6c, +0x70, 0x8f, 0xf1, 0x80, 0x9c, 0x29, 0xb8, 0x85, 0xbc, 0xa6, 0x0b, 0xea, 0xf1, 0x9a, 0x83, 0x57, +0x74, 0x91, 0xb0, 0xdc, 0x94, 0x5a, 0x01, 0x6b, 0x89, 0xe4, 0x28, 0x0c, 0xb7, 0x53, 0x1b, 0xd1, +0x11, 0x04, 0x94, 0x50, 0xef, 0x27, 0x93, 0x63, 0xb5, 0xa2, 0x8b, 0x0e, 0x40, 0x45, 0xb3, 0xef, +0x6f, 0x0b, 0xc6, 0x6d, 0xab, 0x67, 0xb6, 0xa7, 0x93, 0x8a, 0x78, 0xf5, 0x33, 0x32, 0xc8, 0x2a, +0xf8, 0x34, 0x3f, 0x95, 0x3b, 0xbf, 0x0c, 0xc4, 0x94, 0x8f, 0x0f, 0x86, 0xf7, 0x8b, 0xdf, 0x8c, +0x01, 0x66, 0xe2, 0xfd, 0x1e, 0x7a, 0xcd, 0x6a, 0x44, 0x47, 0x72, 0x08, 0x1f, 0xec, 0xaa, 0x78, +0x64, 0x45, 0x48, 0xf7, 0xa6, 0x87, 0xc6, 0x2e, 0x62, 0xdb, 0x14, 0xd4, 0xcd, 0x13, 0x72, 0xe1, +0x4e, 0x3a, 0x8d, 0x16, 0x7f, 0x98, 0x48, 0xed, 0x2c, 0x6c, 0xe3, 0x90, 0x40, 0x5d, 0xaa, 0xab, +0xc6, 0xff, 0xd9, 0x16, 0x39, 0x42, 0x82, 0x34, 0xd2, 0xf6, 0xc2, 0x41, 0x43, 0x15, 0x4d, 0x2b, +0x35, 0xa8, 0xc7, 0xa7, 0x44, 0xb4, 0x11, 0x94, 0x02, 0x74, 0x22, 0x70, 0x03, 0x76, 0xf0, 0xa4, +0x2c, 0x9d, 0x30, 0xca, 0x1c, 0x0f, 0xbb, 0xd7, 0x61, 0xde, 0x02, 0x33, 0x8d, 0xe2, 0x1f, 0x46, +0xc8, 0x80, 0x53, 0x26, 0x52, 0x6d, 0x3f, 0xd5, 0xaa, 0x61, 0x28, 0xb9, 0x1b, 0x45, 0x19, 0x03, +0xc6, 0x31, 0xe7, 0xb1, 0x2b, 0xcb, 0x03, 0x80, 0x8a, 0xa4, 0xfb, 0x3e, 0x58, 0xb9, 0x7c, 0xf0, +0x28, 0x13, 0x55, 0xaf, 0x0b, 0x5c, 0x5a, 0x41, 0xfb, 0x0c, 0x04, 0xc6, 0xec, 0x5f, 0x5e, 0x30, +0xd0, 0xa4, 0x75, 0x3b, 0xf2, 0x62, 0x90, 0x40, 0x57, 0xb2, 0xd0, 0x54, 0xf3, 0xd3, 0xf0, 0x4b, +0x79, 0x9d, 0x3a, 0x97, 0x3b, 0xe7, 0xb3, 0x7f, 0xc9, 0x84, 0x28, 0xab, 0x1e, 0xbf, 0xd0, 0x9a, +0x09, 0xa8, 0x06, 0xc5, 0xf1, 0x64, 0xe4, 0xb6, 0x00, 0x6b, 0x5d, 0x37, 0xb6, 0xb0, 0x60, 0x23, +0x87, 0x2e, 0x20, 0xe5, 0x7c, 0x53, 0x4e, 0xdb, 0xc1, 0x8a, 0xe8, 0x4e, 0xf9, 0xe8, 0x46, 0xcf, +0x03, 0x37, 0xa5, 0xb0, 0x51, 0x14, 0x31, 0x82, 0x74, 0xa9, 0x7a, 0x2b, 0xdb, 0xba, 0x26, 0xd0, +0xfd, 0xa3, 0xb4, 0xa6, 0xa6, 0x69, 0x84, 0xb1, 0x50, 0x12, 0x62, 0x45, 0x40, 0x52, 0x22, 0x05, +0xb5, 0xad, 0x9a, 0x8b, 0x16, 0x67, 0xd6, 0x40, 0xe2, 0xd9, 0xc1, 0x28, 0x8f, 0xd2, 0x93, 0xce, +0x6e, 0xa0, 0xa0, 0xd0, 0x2c, 0xab, 0x2c, 0x81, 0xe9, 0x21, 0xe1, 0xe6, 0xfb, 0xae, 0xcd, 0x1b, +0x52, 0x07, 0x74, 0x09, 0x21, 0xbb, 0x49, 0x46, 0x74, 0x51, 0x18, 0xe6, 0x5d, 0x99, 0x9a, 0x54, +0x95, 0x2a, 0x42, 0x4d, 0x75, 0x16, 0xd7, 0x7c, 0x67, 0x43, 0x76, 0x95, 0x0e, 0xe1, 0x85, 0x68, +0x04, 0x7d, 0x34, 0x3e, 0x7a, 0xca, 0x1b, 0x05, 0x05, 0xe9, 0x73, 0x2a, 0xce, 0xf1, 0x64, 0xe1, +0xc7, 0x00, 0xa9, 0x2f, 0x6a, 0xd6, 0xfa, 0x65, 0xdd, 0xdc, 0xa2, 0xa6, 0xf8, 0x95, 0x5f, 0x3c, +0x7d, 0x8b, 0xd2, 0x35, 0x94, 0x4b, 0xcc, 0x70, 0xfb, 0x58, 0x8c, 0x4d, 0xb5, 0xaf, 0x36, 0x07, +0xbc, 0x80, 0x07, 0xdf, 0xd0, 0x42, 0xa7, 0xeb, 0x20, 0xd1, 0x2d, 0x24, 0x94, 0xb5, 0xab, 0x87, +0x19, 0x22, 0x7b, 0xf8, 0x9b, 0x96, 0x5e, 0x8a, 0xe9, 0xf3, 0xa0, 0x4e, 0xcc, 0x70, 0x54, 0x7f, +0x45, 0xa6, 0xee, 0xae, 0xf7, 0xa3, 0x18, 0xa4, 0x95, 0x6e, 0x84, 0xdf, 0x53, 0x09, 0x9a, 0x98, +0x34, 0xdf, 0x52, 0xe8, 0x58, 0xd5, 0xe3, 0x95, 0x64, 0x0e, 0x0f, 0x42, 0x73, 0xdd, 0x0e, 0xee, +0x66, 0x5a, 0x2a, 0x47, 0xb3, 0xb2, 0x21, 0x36, 0xbd, 0x69, 0x2c, 0xc5, 0x56, 0xfa, 0x3c, 0xf0, +0x45, 0x4a, 0x2f, 0xee, 0x11, 0x63, 0x09, 0xb9, 0x1f, 0x2e, 0x2b, 0x47, 0x37, 0xe1, 0xe3, 0x0a, +0x4b, 0x18, 0xb7, 0x65, 0x16, 0x9c, 0x13, 0x3e, 0x2c, 0x03, 0x70, 0x4a, 0x29, 0x20, 0x4f, 0x1c, +0xbd, 0xb7, 0x87, 0x60, 0x32, 0xfc, 0x5d, 0x6f, 0xb5, 0xe0, 0x31, 0x71, 0x91, 0x96, 0x54, 0x2f, +0x8d, 0x38, 0x32, 0x64, 0xe1, 0xec, 0x57, 0x3a, 0xe4, 0x2a, 0x62, 0x48, 0x04, 0x9b, 0xae, 0x22, +0xa6, 0x32, 0x2e, 0x87, 0xce, 0x4a, 0xd2, 0xaa, 0x79, 0x12, 0x99, 0x9d, 0x75, 0xd9, 0xfc, 0xf5, +0xce, 0x76, 0xad, 0xb4, 0xb5, 0x1b, 0xe3, 0x4d, 0xca, 0x32, 0x2e, 0x0a, 0xb3, 0x85, 0x25, 0xb2, +0x8f, 0xe6, 0xe1, 0x0c, 0x4c, 0xb7, 0x5c, 0xad, 0x35, 0x9e, 0x97, 0x1a, 0xd1, 0xd9, 0x04, 0x58, +0x72, 0x9a, 0x38, 0x35, 0xc9, 0x21, 0xb7, 0xa1, 0x5b, 0x8d, 0x59, 0xa5, 0x5f, 0x90, 0xd2, 0x02, +0xaa, 0x4d, 0x7d, 0x9a, 0x6e, 0xa3, 0xb3, 0xc5, 0xb7, 0x3b, 0x04, 0x4e, 0x26, 0x58, 0xae, 0xb1, +0x32, 0x6e, 0xdf, 0xe9, 0x4f, 0x46, 0xf6, 0x70, 0xb9, 0xcd, 0x1d, 0xa2, 0x50, 0x44, 0xfd, 0x0f, +0x6b, 0x1b, 0x1d, 0x5f, 0x8b, 0x81, 0x1f, 0x5c, 0xa2, 0xc5, 0xac, 0x6c, 0x3d, 0x50, 0xaf, 0x1e, +0xda, 0xe4, 0xbd, 0xe1, 0x68, 0x34, 0xe2, 0x5d, 0x16, 0xbe, 0x80, 0xdd, 0xee, 0xc7, 0x16, 0x1d, +0xdb, 0x4e, 0x53, 0xba, 0xfc, 0x6b, 0xff, 0x00, 0x78, 0x9e, 0x6b, 0x90, 0x26, 0xbe, 0xa7, 0xbc, +0x0f, 0x4f, 0xd7, 0x08, 0x26, 0x98, 0x7f, 0x91, 0x67, 0x13, 0xbb, 0x62, 0xb7, 0xd0, 0xaf, 0x9e, +0x72, 0x4a, 0x5b, 0x11, 0xa2, 0x85, 0x3f, 0xe8, 0xc1, 0x55, 0x7c, 0xfc, 0x59, 0x99, 0xa5, 0x89, +0x7c, 0xaa, 0x2d, 0xb8, 0x95, 0x2e, 0x54, 0x0b, 0x36, 0xd3, 0x1a, 0xce, 0x6b, 0xad, 0x83, 0x95, +0x91, 0x6d, 0x0e, 0x94, 0x86, 0x3f, 0x2a, 0xda, 0x09, 0x2d, 0xc5, 0x02, 0xdc, 0x3c, 0xeb, 0xe7, +0xb5, 0x16, 0x48, 0x2c, 0x72, 0x55, 0x90, 0xa2, 0x4b, 0x8c, 0x3f, 0xac, 0x1f, 0x39, 0x2a, 0xb5, +0x56, 0x98, 0xdd, 0x39, 0x75, 0xc5, 0xd4, 0xc2, 0xae, 0x2a, 0x1e, 0x29, 0x96, 0xf0, 0x1b, 0x32, +0xb3, 0xa9, 0xe3, 0x4a, 0x1f, 0x8d, 0x11, 0x35, 0x44, 0x6a, 0xd2, 0xff, 0x4f, 0x3e, 0x7c, 0x46, +0x41, 0x8f, 0x69, 0x77, 0x81, 0x94, 0xf7, 0x7d, 0x73, 0x48, 0x90, 0x43, 0xd4, 0x31, 0x54, 0x9e, +0xd8, 0x74, 0x59, 0x1d, 0x86, 0x5c, 0x44, 0x50, 0x39, 0x2d, 0x50, 0xee, 0xea, 0x83, 0x53, 0xd8, +0xf7, 0x78, 0x61, 0x0b, 0x46, 0xa7, 0x29, 0x68, 0x43, 0x06, 0xf4, 0x0a, 0x2c, 0xd3, 0xd5, 0xae, +0x36, 0x76, 0xf7, 0x65, 0xee, 0xe2, 0x17, 0xec, 0x5a, 0x2b, 0x1a, 0x10, 0xc9, 0xa4, 0x0d, 0x12, +0x51, 0x36, 0x8c, 0xef, 0xda, 0x52, 0xcb, 0x84, 0x9d, 0x42, 0x07, 0xa8, 0xe1, 0xa8, 0x13, 0x83, +0x79, 0x47, 0xb7, 0xd6, 0x4e, 0x10, 0x02, 0x26, 0x18, 0x51, 0xbc, 0x35, 0xb4, 0xe8, 0x95, 0x17, +0xdb, 0x91, 0x0a, 0xd2, 0x54, 0x49, 0x5c, 0xf4, 0x02, 0xbe, 0x75, 0x22, 0x85, 0x58, 0x85, 0x44, +0xe0, 0x5b, 0x39, 0x58, 0x43, 0x65, 0xa2, 0x5e, 0x9d, 0xf4, 0x39, 0xf2, 0x49, 0x98, 0x58, 0x2d, +0x0b, 0xfd, 0x38, 0x7b, 0x92, 0x5c, 0x76, 0x33, 0x6c, 0x54, 0x20, 0x8e, 0x25, 0x16, 0x0d, 0xc3, +0x36, 0xb8, 0xe2, 0x33, 0xda, 0x79, 0xd6, 0xe9, 0xec, 0x85, 0x61, 0xaf, 0xff, 0x71, 0xb6, 0x3c, +0x9c, 0xe1, 0x14, 0xbb, 0xb8, 0xa7, 0xef, 0xf0, 0x9d, 0x34, 0xc5, 0x64, 0xde, 0x4b, 0x46, 0x67, +0xff, 0x4e, 0x03, 0xee, 0x49, 0xc3, 0x2d, 0x23, 0x0b, 0xdb, 0xfd, 0x6a, 0x1c, 0x38, 0xa4, 0xf4, +0x5a, 0x64, 0xb3, 0x56, 0xbc, 0x34, 0xf1, 0xf1, 0x73, 0x71, 0xca, 0xfe, 0xd2, 0x79, 0xc7, 0xe3, +0xbd, 0x2c, 0xb1, 0xee, 0xaf, 0x07, 0xd4, 0xe6, 0x53, 0x67, 0x28, 0xf0, 0x5d, 0x13, 0x8f, 0x9b, +0x62, 0xfe, 0x85, 0x17, 0x3b, 0xac, 0xb2, 0x0f, 0x09, 0xb3, 0x7f, 0x36, 0xb7, 0xac, 0xd7, 0x55, +0x45, 0x45, 0x97, 0xb3, 0xf8, 0x9f, 0x71, 0xd8, 0xec, 0x2a, 0x51, 0x52, 0xc3, 0xc0, 0xc3, 0xf0, +0x11, 0x7c, 0x8c, 0x0f, 0x61, 0x02, 0x55, 0x52, 0xd7, 0xeb, 0x42, 0xd2, 0x71, 0x93, 0x92, 0x37, +0xc4, 0x19, 0x27, 0x0b, 0x2e, 0x2f, 0x90, 0x8b, 0xb5, 0x56, 0x9c, 0xcd, 0x46, 0xf9, 0x60, 0x54, +0x90, 0xcd, 0x5f, 0xe4, 0x03, 0xec, 0xa0, 0x26, 0xba, 0x74, 0x77, 0x52, 0xe2, 0xec, 0xb4, 0xb9, +0xd3, 0xdc, 0x17, 0x16, 0xf7, 0x29, 0x7c, 0x62, 0xec, 0x98, 0x19, 0xd1, 0xea, 0x7f, 0x1d, 0x21, +0xf8, 0x3d, 0x13, 0x44, 0x81, 0xb7, 0xda, 0x3c, 0xc2, 0x84, 0x1d, 0xf3, 0xf7, 0x82, 0x16, 0xcd, +0xbc, 0xd7, 0x33, 0x74, 0x52, 0xda, 0x49, 0xdb, 0xa2, 0x16, 0x31, 0xa7, 0x36, 0xf8, 0x35, 0xea, +0xdc, 0xa9, 0x4a, 0xb9, 0x22, 0xb8, 0xc8, 0x86, 0xce, 0xf4, 0x7e, 0x23, 0x74, 0x8d, 0x56, 0x19, +0x3b, 0x0a, 0x19, 0x5b, 0x3e, 0xda, 0x8d, 0x73, 0x21, 0xac, 0xa0, 0xb1, 0xb2, 0xf7, 0x7c, 0xbb, +0xb7, 0xc8, 0xa8, 0xe9, 0xff, 0x71, 0x9e, 0x6f, 0xbb, 0xeb, 0xf3, 0x97, 0xcc, 0x8f, 0x88, 0x11, +0x19, 0xfa, 0x98, 0xbb, 0xb4, 0xbd, 0xec, 0xf7, 0x4a, 0x97, 0x9f, 0x85, 0xeb, 0xa4, 0xc9, 0x8b, +0x14, 0x29, 0x11, 0x06, 0x4c, 0xea, 0x4c, 0x93, 0x6a, 0x96, 0xf8, 0x1e, 0x95, 0x60, 0xe4, 0x39, +0x58, 0x99, 0x11, 0x69, 0x9d, 0x44, 0x4c, 0x9b, 0x1d, 0xcc, 0x71, 0x9a, 0x01, 0x49, 0xa0, 0xd3, +0x8b, 0x87, 0xa0, 0x25, 0x2f, 0x80, 0x39, 0x34, 0x37, 0xd3, 0x66, 0x09, 0x33, 0x2d, 0x00, 0x7a, +0x74, 0x04, 0x1a, 0xb3, 0xc2, 0x2d, 0x6a, 0x06, 0xf8, 0x97, 0x19, 0xd7, 0x43, 0x98, 0xf4, 0x39, +0xa9, 0xa0, 0x15, 0x78, 0x09, 0x71, 0x04, 0xf0, 0xf4, 0x0c, 0x71, 0x25, 0x35, 0x80, 0x92, 0xda, +0x6c, 0x63, 0x91, 0x6e, 0x22, 0x1a, 0xb2, 0x7c, 0x46, 0x19, 0x87, 0x22, 0x11, 0x76, 0xab, 0xc1, +0x42, 0x7f, 0xaf, 0xad, 0x24, 0x1c, 0x3f, 0x19, 0x4e, 0x99, 0xda, 0xa4, 0xa2, 0x7a, 0xda, 0x41, +0x67, 0xc4, 0x1d, 0x7e, 0x4a, 0xd1, 0x26, 0x70, 0x30, 0x89, 0x73, 0x2c, 0x3c, 0xb2, 0xa6, 0x39, +0x89, 0x67, 0xbb, 0xbd, 0xf7, 0x9a, 0x78, 0x5e, 0xfd, 0x79, 0xba, 0xe7, 0x01, 0xfd, 0x3b, 0x51, +0x62, 0x6d, 0x3a, 0x81, 0xd6, 0x96, 0x85, 0x29, 0x83, 0xdc, 0x7b, 0x6a, 0xeb, 0xd3, 0x89, 0xf2, +0x10, 0x61, 0x61, 0x31, 0xa6, 0x40, 0x70, 0xec, 0xf5, 0x4d, 0xc1, 0x0f, 0xd8, 0x3e, 0x83, 0xad, +0xde, 0x0b, 0xbb, 0x32, 0x1d, 0x15, 0x51, 0x3d, 0x57, 0x3d, 0xf6, 0x4f, 0x96, 0xdb, 0x2b, 0x63, +0xf1, 0x30, 0x4e, 0xd8, 0x90, 0xec, 0x69, 0x32, 0xb6, 0x74, 0x48, 0x90, 0x63, 0x0b, 0x98, 0xd6, +0xee, 0xd8, 0xc7, 0xf7, 0x44, 0xbf, 0x83, 0x4b, 0xb2, 0x29, 0x7b, 0x68, 0x37, 0xdb, 0xae, 0x1a, +0xdc, 0x10, 0x4b, 0xe0, 0x79, 0x56, 0x91, 0x3f, 0xaf, 0x05, 0x5d, 0xb3, 0x00, 0x03, 0x9e, 0x1a, +0xb4, 0x98, 0xf3, 0xd5, 0x38, 0x50, 0xac, 0xcd, 0x86, 0x17, 0x5f, 0x62, 0x0d, 0x58, 0xac, 0x3c, +0xe6, 0xe7, 0x88, 0xd8, 0x56, 0x47, 0x2b, 0x60, 0x0f, 0xef, 0x00, 0x12, 0x2a, 0xbe, 0xd0, 0xcf, +0xd0, 0x4b, 0xf4, 0xae, 0xf8, 0x09, 0x76, 0xc9, 0x0e, 0x73, 0xdc, 0x8e, 0xfd, 0x17, 0x0c, 0x53, +0x16, 0xbf, 0xb2, 0xf2, 0x50, 0x2f, 0xe6, 0x2a, 0xd8, 0xa5, 0xe9, 0xc6, 0x71, 0x23, 0x2c, 0x83, +0x83, 0xc3, 0xd2, 0xf9, 0xf2, 0x13, 0xef, 0x32, 0xc4, 0x7e, 0x53, 0x95, 0x4c, 0x1e, 0xcd, 0x3f, +0x65, 0xfa, 0x4f, 0xf8, 0x45, 0x8f, 0x6c, 0xf1, 0x10, 0xea, 0xd7, 0x86, 0x12, 0x4c, 0x12, 0xb5, +0xd3, 0x03, 0xd8, 0xd5, 0x22, 0xd2, 0xde, 0x61, 0xaa, 0x57, 0x78, 0x70, 0x9d, 0x98, 0xe5, 0x9a, +0xda, 0x62, 0xe9, 0x04, 0xfb, 0xf6, 0xeb, 0x35, 0xf3, 0x48, 0xd2, 0xf6, 0x28, 0x77, 0xa9, 0x23, +0x8d, 0x09, 0xf8, 0xe9, 0xe8, 0x4a, 0x1a, 0x76, 0xe7, 0xc3, 0x1b, 0x1d, 0x34, 0x3c, 0x5c, 0x0d, +0x6c, 0x48, 0x0e, 0x33, 0x73, 0x47, 0xdb, 0xf9, 0x94, 0xe2, 0xf8, 0x13, 0xd1, 0x38, 0xaa, 0x47, +0xce, 0xc5, 0xa6, 0x4c, 0x85, 0xb0, 0x23, 0x31, 0xcc, 0x5d, 0xeb, 0x67, 0xad, 0x36, 0xde, 0xba, +0xac, 0x16, 0x71, 0x58, 0xdf, 0x63, 0xc9, 0x5f, 0x56, 0x41, 0x1e, 0xc9, 0xc6, 0x8a, 0x19, 0x92, +0xc8, 0xf4, 0x80, 0x76, 0xcc, 0x1c, 0x39, 0xa0, 0xdc, 0x23, 0x4b, 0xf7, 0xf0, 0x9c, 0xb6, 0xbf, +0xad, 0x9b, 0x7f, 0xf9, 0xfe, 0xfa, 0x1a, 0xce, 0x27, 0x7f, 0x61, 0xa7, 0x45, 0x53, 0x1b, 0x69, +0x20, 0xa7, 0xca, 0x8f, 0x5e, 0x8c, 0xf3, 0x1a, 0x2e, 0x65, 0x4b, 0x38, 0x89, 0x54, 0xad, 0xc7, +0x5e, 0x18, 0xc5, 0xd5, 0xff, 0x65, 0x34, 0xb9, 0x53, 0x44, 0xe6, 0x02, 0xc5, 0x79, 0x90, 0xdf, +0x15, 0x72, 0xa5, 0xe0, 0x3a, 0xe1, 0x88, 0xe9, 0xd6, 0x37, 0xdd, 0x33, 0x86, 0x16, 0xc9, 0x4d, +0xc9, 0xd5, 0x1f, 0xcc, 0x09, 0x49, 0xc7, 0x42, 0x4f, 0x57, 0x43, 0x67, 0x4a, 0xed, 0xa1, 0x69, +0x94, 0xd9, 0xce, 0x11, 0x56, 0xcf, 0x70, 0x64, 0xa8, 0x06, 0x8b, 0x81, 0x7b, 0xb7, 0x98, 0x73, +0xea, 0x89, 0x1e, 0xaf, 0x02, 0x01, 0xbf, 0x29, 0x5a, 0xb3, 0x89, 0x7c, 0xad, 0x7b, 0x0d, 0xf0, +0x39, 0x18, 0xc2, 0x2d, 0x7d, 0x0f, 0x16, 0x9b, 0xc4, 0xb6, 0x96, 0xee, 0x1c, 0x49, 0x35, 0xfb, +0x7a, 0x07, 0xa3, 0x9e, 0xa9, 0x62, 0xe2, 0x6d, 0xfb, 0x4e, 0x0f, 0x3c, 0xbf, 0xb9, 0x4a, 0x79, +0xbc, 0x50, 0x18, 0x69, 0xf6, 0x3c, 0x15, 0x91, 0xd8, 0x5c, 0xd3, 0x1d, 0x54, 0x62, 0x82, 0xb4, +0x61, 0x41, 0xc9, 0xc6, 0x90, 0x5b, 0xe0, 0xb8, 0x80, 0xb8, 0x7b, 0xa4, 0x99, 0xbc, 0x7f, 0xe0, +0x09, 0x05, 0x31, 0xa0, 0x39, 0x50, 0x09, 0x1b, 0x5a, 0xe0, 0x19, 0x84, 0x44, 0xdf, 0xbc, 0xd2, +0xb6, 0x03, 0x82, 0x25, 0x64, 0xad, 0xf8, 0x0e, 0xe6, 0x67, 0xfd, 0xb3, 0xa4, 0x85, 0xe3, 0xbe, +0xb9, 0x35, 0x68, 0x66, 0x0f, 0x71, 0xb2, 0xc9, 0xda, 0x5e, 0xad, 0x2e, 0x0f, 0x01, 0x7a, 0x37, +0xeb, 0xb0, 0xba, 0x0f, 0x08, 0x77, 0xed, 0xed, 0x56, 0x74, 0xa8, 0x87, 0x54, 0xd9, 0xa7, 0xc3, +0xd9, 0x76, 0x15, 0x91, 0xf1, 0xaa, 0x5f, 0x12, 0x29, 0x0e, 0xe2, 0x2e, 0x36, 0x58, 0x1a, 0xf2, +0x75, 0x0e, 0x8b, 0x4a, 0xc7, 0x34, 0x32, 0x22, 0x00, 0xf7, 0xfa, 0x18, 0x96, 0x75, 0xbf, 0x43, +0xe3, 0x93, 0x43, 0x68, 0xb5, 0x92, 0x96, 0x39, 0xbd, 0x70, 0x83, 0xfd, 0x79, 0xaf, 0x08, 0xaf, +0x55, 0x76, 0x5b, 0x5b, 0xef, 0x0c, 0x77, 0xf1, 0x4a, 0x8f, 0x60, 0xe2, 0x9f, 0xe4, 0xfa, 0x36, +0xd4, 0xc6, 0xa2, 0x86, 0x5f, 0xd7, 0xd9, 0xc3, 0x57, 0x84, 0xa1, 0xf4, 0xac, 0x08, 0x2f, 0x01, +0xeb, 0x94, 0x6e, 0xfd, 0x8f, 0x23, 0xba, 0x35, 0xff, 0x0f, 0x0e, 0x6c, 0x28, 0x91, 0x09, 0x37, +0x18, 0xb5, 0x72, 0x17, 0x40, 0x46, 0xd9, 0x32, 0xff, 0xc4, 0xd3, 0x43, 0x1c, 0x69, 0xbf, 0x73, +0xb4, 0xb9, 0xa6, 0x78, 0xd3, 0x90, 0x14, 0x19, 0xc6, 0x39, 0x9a, 0x22, 0x64, 0xaf, 0xbe, 0x0d, +0xa7, 0x60, 0x2c, 0xc1, 0xbb, 0x37, 0xa3, 0x3d, 0x76, 0x71, 0x6f, 0xe2, 0xdb, 0x37, 0x60, 0x0d, +0x36, 0x2a, 0xf1, 0xee, 0xcb, 0x10, 0xeb, 0xa1, 0x70, 0x3f, 0x85, 0x2d, 0x7b, 0x0a, 0xea, 0xee, +0xf9, 0x22, 0xef, 0x14, 0x68, 0x61, 0x13, 0xbe, 0xb5, 0x95, 0x4b, 0x6e, 0xd2, 0xfa, 0x1a, 0xb8, +0x9e, 0x21, 0x23, 0x85, 0x7f, 0xe8, 0x46, 0x8e, 0x86, 0x3a, 0x71, 0xaa, 0xd9, 0x86, 0xa1, 0x5a, +0xdf, 0xd4, 0x34, 0xcb, 0x3b, 0xc6, 0x3d, 0x8b, 0x6a, 0x5f, 0xdf, 0x17, 0x88, 0xa5, 0xd7, 0x75, +0xcb, 0xf5, 0x17, 0xfa, 0x0b, 0xd9, 0x64, 0x83, 0x95, 0xef, 0xf6, 0x43, 0x29, 0x52, 0x48, 0xcc, +0xd1, 0xed, 0xd0, 0x96, 0x41, 0xe0, 0x3c, 0xd9, 0x33, 0x0a, 0x47, 0xcd, 0xf2, 0x3a, 0xca, 0x3a, +0xef, 0xf4, 0x56, 0x8f, 0x96, 0x67, 0x1d, 0x8e, 0xea, 0xd9, 0x42, 0x83, 0x1f, 0xc8, 0x18, 0xa2, +0xe3, 0x29, 0x1e, 0x62, 0xd8, 0x05, 0xf8, 0x74, 0x4b, 0xa6, 0x1f, 0xb7, 0x8b, 0x62, 0xc4, 0x1f, +0xf1, 0x16, 0x55, 0x81, 0xc0, 0x37, 0x66, 0xac, 0xfd, 0xf3, 0xb7, 0x57, 0x6b, 0x7b, 0x95, 0x08, +0x88, 0x8f, 0xfc, 0x3e, 0xa0, 0x05, 0x08, 0x98, 0x6b, 0xcf, 0x1d, 0xd1, 0xa2, 0x96, 0xea, 0xe5, +0xf7, 0xb9, 0x24, 0x32, 0xf3, 0x92, 0xac, 0x16, 0xa4, 0xdf, 0xbc, 0x6d, 0xf9, 0xac, 0x3f, 0xd0, +0xa0, 0x47, 0xc3, 0xd1, 0x31, 0xde, 0x11, 0xec, 0x94, 0x39, 0x9b, 0xbd, 0xd5, 0x0e, 0x15, 0x50, +0x53, 0x0a, 0x9f, 0xd7, 0xb6, 0x59, 0x9e, 0x9f, 0x83, 0x27, 0x74, 0xdb, 0x01, 0xa1, 0x9c, 0xc4, +0xcc, 0xad, 0xbc, 0xef, 0xfc, 0xa1, 0xd9, 0x05, 0x3f, 0xb6, 0x72, 0xb4, 0x0f, 0x11, 0xee, 0xc6, +0x7b, 0x6a, 0x6a, 0x12, 0x6a, 0x46, 0x73, 0x77, 0xa3, 0xf7, 0x0b, 0x8c, 0xfd, 0xbf, 0x69, 0x83, +0x3f, 0xd5, 0x33, 0xdb, 0x5b, 0xfb, 0xaa, 0x8a, 0x9a, 0x91, 0x66, 0xf5, 0xf4, 0xdd, 0x6e, 0xef, +0xab, 0x92, 0x29, 0x3d, 0x02, 0x55, 0x8d, 0x02, 0x3d, 0xca, 0xae, 0x9b, 0x1e, 0x8b, 0xb8, 0xb6, +0x72, 0x89, 0x93, 0xb5, 0x90, 0x86, 0x8c, 0xe5, 0xd5, 0xcb, 0xd5, 0x93, 0x4a, 0xa2, 0x6d, 0xbd, +0x06, 0x8c, 0xb3, 0xbd, 0xda, 0x04, 0x9f, 0x15, 0xc5, 0xc2, 0x1a, 0x2d, 0x2f, 0x5c, 0xa7, 0x30, +0x56, 0x50, 0xa8, 0x36, 0x22, 0x8f, 0xa8, 0x52, 0xce, 0x83, 0xf8, 0x43, 0x83, 0xc3, 0x73, 0x24, +0x7e, 0xbe, 0x26, 0x25, 0xd4, 0xf5, 0x70, 0xe0, 0xda, 0x7b, 0xa7, 0x0a, 0xee, 0xa5, 0x69, 0x1f, +0x69, 0x53, 0x81, 0x6b, 0xa8, 0x48, 0x74, 0xb6, 0x0f, 0x21, 0x00, 0xb7, 0x2a, 0x56, 0x47, 0x31, +0x58, 0x7c, 0xd1, 0x2f, 0xe2, 0x4e, 0x76, 0xf5, 0xc2, 0x06, 0xb9, 0xe9, 0xda, 0x54, 0xf5, 0x2c, +0x6f, 0x05, 0x90, 0xdb, 0xf6, 0xe9, 0x66, 0x4f, 0x25, 0xa8, 0xcf, 0x7b, 0x67, 0x9d, 0xad, 0xdd, +0xa4, 0xa8, 0x43, 0x1d, 0xf0, 0xdc, 0x55, 0xe0, 0x0d, 0xb2, 0x5f, 0x00, 0xee, 0xa1, 0xa6, 0xc6, +0x78, 0x68, 0xad, 0xc7, 0x94, 0x2c, 0xb1, 0x23, 0xa2, 0xfa, 0xf6, 0xc0, 0x86, 0x36, 0x7e, 0x3a, +0x1a, 0x4a, 0xc6, 0x17, 0x3a, 0x9e, 0x53, 0xd8, 0x91, 0x26, 0xf6, 0xd3, 0x70, 0x61, 0x2d, 0xc1, +0x8d, 0xca, 0x96, 0x59, 0x95, 0x50, 0xaf, 0x20, 0xd9, 0xa8, 0x84, 0xe8, 0x3c, 0x77, 0xc2, 0xb1, +0xbd, 0xc8, 0x77, 0x07, 0x6a, 0xe5, 0x42, 0xa8, 0x06, 0xa1, 0x88, 0x64, 0x76, 0xcd, 0x24, 0x63, +0xf3, 0x5e, 0xde, 0xb5, 0xeb, 0x60, 0x9f, 0x22, 0x07, 0x27, 0x15, 0xf7, 0xa5, 0xd0, 0xff, 0x0d, +0x3b, 0x7d, 0xee, 0x12, 0x48, 0x68, 0xa8, 0xd5, 0x20, 0x53, 0x62, 0xac, 0x0e, 0x38, 0xb2, 0x9a, +0x9e, 0xbb, 0x81, 0x11, 0xc3, 0x0a, 0x52, 0xe5, 0xee, 0xd7, 0xda, 0x48, 0xdf, 0xdf, 0xde, 0xca, +0x4e, 0xd4, 0xd7, 0xe3, 0xf6, 0x9a, 0x13, 0x23, 0x9b, 0x67, 0xbb, 0x45, 0x42, 0xa3, 0xb2, 0x56, +0xa2, 0x42, 0x8d, 0x58, 0xdc, 0x2a, 0x28, 0xe3, 0x13, 0x28, 0x01, 0x4d, 0x57, 0xdc, 0x7d, 0x4d, +0x61, 0x86, 0x65, 0xc8, 0xa1, 0x9d, 0x8f, 0xd6, 0x80, 0x40, 0xbb, 0x80, 0xf1, 0xb1, 0xc3, 0x02, +0x0b, 0x59, 0x31, 0x2a, 0xb2, 0xcd, 0x56, 0x13, 0x28, 0x1e, 0x38, 0x7f, 0xa7, 0x84, 0xae, 0x2e, +0xf5, 0x5c, 0x26, 0xd6, 0x66, 0x42, 0x9e, 0x4f, 0x1d, 0x92, 0x16, 0x95, 0xe0, 0x63, 0x07, 0x14, +0x7a, 0x34, 0xf4, 0x4c, 0x4f, 0x7d, 0xd5, 0x25, 0x64, 0xf3, 0xc0, 0x42, 0x6a, 0xa7, 0x4d, 0xf0, +0xec, 0x68, 0xa2, 0x9d, 0xa3, 0x8e, 0xcc, 0x03, 0xd3, 0x7b, 0x53, 0x3c, 0xfd, 0x84, 0x0e, 0xef, +0x51, 0x72, 0xb6, 0x0a, 0xfa, 0x07, 0xf2, 0x49, 0x44, 0xbf, 0x76, 0x8c, 0xeb, 0x86, 0xf1, 0xa5, +0x12, 0xc2, 0xf3, 0x46, 0xbd, 0x45, 0x41, 0x37, 0x36, 0x5c, 0x13, 0xaa, 0xad, 0xe6, 0xa8, 0x9d, +0xd0, 0x61, 0x17, 0xd0, 0x61, 0x45, 0x00, 0x6f, 0xe4, 0x7c, 0x34, 0x01, 0x75, 0xe6, 0x41, 0x0e, +0x17, 0x29, 0x83, 0x32, 0x02, 0x54, 0x5b, 0x1d, 0xc4, 0xcd, 0xd8, 0xcd, 0x04, 0x28, 0xfd, 0x79, +0x3b, 0xc9, 0x3e, 0x95, 0xb9, 0x40, 0xbd, 0x8e, 0x4e, 0xd6, 0x9a, 0xab, 0x7b, 0x38, 0x40, 0xda, +0x28, 0x49, 0x8f, 0x39, 0xde, 0xe5, 0x2a, 0x02, 0x34, 0x2d, 0x20, 0x1a, 0xd0, 0xc1, 0x0a, 0xa5, +0xcf, 0xa9, 0x95, 0x65, 0xb1, 0x17, 0x77, 0xf0, 0xd5, 0xad, 0x67, 0x3c, 0x28, 0xd7, 0xbd, 0x51, +0xcc, 0xea, 0x5a, 0x4f, 0xa3, 0x54, 0x8b, 0x62, 0x73, 0x36, 0xf3, 0x6e, 0xb6, 0x91, 0x9a, 0x2e, +0xae, 0x34, 0xff, 0xc7, 0x44, 0x14, 0x18, 0x49, 0xe0, 0x60, 0x8b, 0xdc, 0x54, 0xd4, 0xa4, 0x83, +0x10, 0xbd, 0x6b, 0x91, 0xe9, 0xe7, 0xec, 0x5d, 0x53, 0xaa, 0x63, 0xa5, 0x61, 0x71, 0x3b, 0xf6, +0xa3, 0x67, 0x72, 0xc3, 0x67, 0xa6, 0x5d, 0xd5, 0x49, 0x1f, 0x76, 0x42, 0x81, 0x71, 0xcb, 0x49, +0xda, 0x0e, 0xf0, 0xf8, 0xbb, 0xef, 0x0b, 0x9d, 0x02, 0x58, 0x9b, 0x3d, 0xb2, 0x29, 0x84, 0x01, +0x73, 0xb4, 0xbf, 0x38, 0x93, 0x18, 0x15, 0xf8, 0x21, 0x2f, 0x8a, 0x08, 0x84, 0x98, 0xcb, 0xc1, +0xb5, 0x8f, 0xbf, 0x02, 0xe2, 0x52, 0x32, 0xc4, 0x48, 0xb8, 0x23, 0x15, 0x8c, 0xd0, 0xa5, 0x2f, +0x24, 0x80, 0xe0, 0xf7, 0xe5, 0xdd, 0xcf, 0xe6, 0x0b, 0x5e, 0x41, 0x03, 0x72, 0xa9, 0xc0, 0xa9, +0x1a, 0x3d, 0x3c, 0x27, 0x69, 0xe0, 0xaf, 0xae, 0xa8, 0xfd, 0x1e, 0x7b, 0xe6, 0x46, 0x4c, 0x9c, +0xa2, 0xd6, 0xa9, 0x2c, 0x45, 0x7f, 0x0c, 0x36, 0x14, 0x8f, 0xea, 0xb1, 0x7c, 0x6d, 0x47, 0x6c, +0x2f, 0x31, 0x99, 0xee, 0x5d, 0x74, 0x3f, 0xbb, 0xdb, 0x71, 0xc1, 0xe6, 0xa3, 0x1c, 0xaf, 0xfe, +0x19, 0x72, 0x44, 0x91, 0xf9, 0x8e, 0xc7, 0xe0, 0x31, 0xf8, 0x45, 0x0e, 0x0e, 0x7a, 0x1f, 0x92, +0x6b, 0xcf, 0x2a, 0x6a, 0x2f, 0x0c, 0xb1, 0x4b, 0xd5, 0x91, 0xc6, 0x6b, 0xdb, 0xd5, 0x4b, 0xb0, +0x8c, 0x7f, 0x2c, 0x8a, 0x66, 0xc0, 0x92, 0xe6, 0xc1, 0x4a, 0x9d, 0xe4, 0xa9, 0x41, 0x81, 0x72, +0x4f, 0xdc, 0xca, 0x5d, 0x06, 0x2b, 0x3d, 0xc3, 0xaf, 0x8f, 0xd4, 0x7a, 0x53, 0x21, 0x56, 0xa9, +0x66, 0xfd, 0x5b, 0x6f, 0xfb, 0x7f, 0x9f, 0x93, 0x8d, 0xc1, 0xfe, 0x4c, 0x22, 0xc3, 0xf9, 0x55, +0xb6, 0xeb, 0x55, 0xd4, 0xfb, 0x33, 0xd7, 0x8b, 0x6a, 0xef, 0x83, 0xcd, 0x86, 0x02, 0x14, 0x49, +0x3f, 0x25, 0xdb, 0x63, 0x99, 0xb2, 0xac, 0x61, 0xfe, 0x65, 0x97, 0x0f, 0x76, 0x53, 0xa6, 0xc6, +0x07, 0x6c, 0x9b, 0xab, 0xd6, 0x5a, 0x38, 0x65, 0xde, 0xa5, 0xdc, 0xfa, 0xae, 0x7d, 0x9a, 0x20, +0x54, 0xcb, 0xa5, 0x63, 0x1c, 0xa9, 0x1c, 0x19, 0x34, 0x2e, 0x87, 0x9b, 0x4a, 0xfa, 0x84, 0x8a, +0xb2, 0x5a, 0x74, 0x39, 0xbc, 0x74, 0x10, 0x53, 0x01, 0x64, 0x18, 0x6b, 0x3f, 0xa3, 0x8b, 0xc4, +0x19, 0x3a, 0x25, 0x58, 0x6f, 0x98, 0xfa, 0x49, 0x88, 0xb7, 0x0c, 0x5b, 0xa9, 0x54, 0xea, 0x5b, +0x60, 0x93, 0x14, 0xa2, 0xec, 0xf0, 0xb9, 0x71, 0x45, 0xd4, 0x6c, 0xa4, 0xdd, 0x01, 0xc2, 0x9f, +0x44, 0xd6, 0x3f, 0x4d, 0x53, 0xcc, 0xeb, 0xd2, 0xd6, 0xfc, 0x76, 0xce, 0x68, 0x67, 0x21, 0x1f, +0xeb, 0x88, 0x1a, 0x5a, 0x37, 0x2f, 0xa5, 0xdc, 0x74, 0x7a, 0xd8, 0x59, 0x1a, 0x1a, 0x61, 0xb5, +0xae, 0x87, 0x33, 0xc4, 0x23, 0x00, 0x58, 0xc9, 0x6e, 0x87, 0x59, 0xf2, 0x59, 0x59, 0x16, 0x79, +0xee, 0x86, 0x0e, 0x2f, 0x7c, 0x44, 0x79, 0x09, 0xc7, 0xa9, 0x18, 0x3f, 0x6c, 0xe7, 0x57, 0x38, +0x2b, 0x54, 0x03, 0x17, 0xce, 0x2a, 0x3b, 0xbd, 0x7d, 0x3e, 0x46, 0xba, 0xc9, 0x81, 0x51, 0xb8, +0x6f, 0x74, 0xef, 0x93, 0x26, 0x69, 0x93, 0x58, 0x54, 0x33, 0x07, 0x53, 0x07, 0x2c, 0x6b, 0x15, +0xee, 0xea, 0x35, 0xb2, 0x23, 0x8b, 0xc9, 0x4e, 0xb0, 0xc1, 0x57, 0x99, 0x2c, 0xbe, 0xdf, 0xab, +0xe0, 0x19, 0x60, 0xe1, 0x47, 0x38, 0xb1, 0x16, 0x20, 0x59, 0xb3, 0x52, 0x58, 0x64, 0xf1, 0x6b, +0x8f, 0x5b, 0xd8, 0xb7, 0xbb, 0x3e, 0xad, 0x3d, 0xa9, 0xb9, 0xce, 0x5c, 0x47, 0xdb, 0x94, 0x48, +0xe0, 0x7d, 0x39, 0x52, 0xf4, 0x72, 0x34, 0x0b, 0x76, 0xc9, 0x10, 0x51, 0x86, 0xd5, 0xd4, 0x6f, +0x50, 0xe2, 0x69, 0x44, 0xed, 0x04, 0xf7, 0xe2, 0xdd, 0x0f, 0xb4, 0x19, 0x63, 0x1c, 0x1a, 0x06, +0x7c, 0x72, 0x20, 0x29, 0x7d, 0x46, 0x4d, 0x74, 0xd1, 0x05, 0xfe, 0x8e, 0xe9, 0x41, 0xe0, 0x11, +0x02, 0x8a, 0xac, 0x29, 0x34, 0x5e, 0x7f, 0xc7, 0x57, 0xe2, 0xbf, 0x78, 0x3d, 0x60, 0x05, 0x52, +0x5c, 0x96, 0xf3, 0xfa, 0x6d, 0x78, 0x0c, 0x2a, 0xc2, 0xa3, 0xe9, 0xec, 0x3e, 0x14, 0xb0, 0xb8, +0xb4, 0x74, 0xe8, 0x36, 0x83, 0x34, 0x0a, 0x7d, 0x15, 0xcf, 0x7f, 0x40, 0xf8, 0x3c, 0x61, 0x22, +0xbb, 0xf3, 0x6a, 0xea, 0x5c, 0xd8, 0x94, 0x82, 0x4f, 0xa1, 0x1f, 0xd6, 0xc8, 0x54, 0x40, 0x02, +0x27, 0xb1, 0x51, 0xf9, 0x3f, 0xa5, 0xec, 0x77, 0x12, 0x74, 0x92, 0xf3, 0x55, 0x5e, 0x23, 0xd2, +0xda, 0x2e, 0xc5, 0xc4, 0x43, 0xfd, 0x92, 0x0c, 0xcb, 0x4c, 0x0e, 0x78, 0xb1, 0xa8, 0x93, 0x86, +0x8f, 0x41, 0x94, 0x63, 0x6f, 0x45, 0x21, 0x75, 0x9b, 0xd5, 0x1b, 0x90, 0x92, 0x38, 0x32, 0xe6, +0x2d, 0xb2, 0x68, 0x90, 0xc5, 0x9d, 0x1e, 0x49, 0x46, 0xbb, 0xe1, 0x70, 0x36, 0x0a, 0xcd, 0xcb, +0x66, 0xc3, 0x0b, 0x2a, 0x3e, 0x98, 0x39, 0x44, 0x60, 0x67, 0xc3, 0x1e, 0x2f, 0x5e, 0xc0, 0xf8, +0x47, 0xd2, 0x91, 0x4a, 0xf7, 0xb3, 0xe1, 0xb6, 0x86, 0x37, 0xa4, 0xfc, 0xce, 0xa7, 0xce, 0xae, +0x68, 0x60, 0x66, 0x17, 0x33, 0x89, 0x37, 0x8d, 0xf5, 0xe7, 0x61, 0x51, 0x23, 0x09, 0xf1, 0xb4, +0x2e, 0x73, 0xaa, 0xfd, 0xaa, 0xeb, 0x6e, 0x34, 0x92, 0x67, 0x9c, 0x13, 0x21, 0x7b, 0xdd, 0xc7, +0xde, 0xc0, 0x48, 0xdf, 0xe2, 0xc9, 0xb0, 0x1d, 0xb7, 0x2c, 0x8f, 0xb5, 0xe6, 0x81, 0xdd, 0xab, +0xba, 0x7e, 0xcf, 0xcd, 0x19, 0x56, 0x21, 0x4b, 0x67, 0xf0, 0x35, 0x1e, 0xa3, 0x8d, 0xc0, 0xeb, +0x22, 0xa8, 0x3f, 0xf5, 0x14, 0x80, 0xd0, 0x96, 0xc1, 0xa2, 0x32, 0xa1, 0xb8, 0x56, 0x35, 0x45, +0x30, 0x13, 0xf3, 0x2b, 0xf0, 0x31, 0x89, 0x50, 0x89, 0xf8, 0x6b, 0x43, 0x47, 0x0c, 0xcc, 0xde, +0x72, 0x78, 0x47, 0xe9, 0x7c, 0xd2, 0x20, 0xed, 0x57, 0xa5, 0xc8, 0xcb, 0xd4, 0x4b, 0xce, 0x14, +0xa8, 0xfa, 0x49, 0xcd, 0x4c, 0x20, 0x9e, 0xa8, 0xd2, 0xf8, 0x2c, 0xa5, 0x81, 0x11, 0xc1, 0x7a, +0xff, 0xc1, 0x90, 0x3f, 0x87, 0xa0, 0x3f, 0x0b, 0x01, 0x8c, 0xa6, 0x73, 0x3c, 0x75, 0xad, 0x21, +0xd2, 0x24, 0xf8, 0xae, 0xc0, 0x7b, 0x51, 0x84, 0x9a, 0x5f, 0xa8, 0xb9, 0xa4, 0xcb, 0x00, 0x2d, +0xa4, 0x40, 0xf7, 0x86, 0x4f, 0x72, 0xad, 0x03, 0x29, 0x8e, 0xc7, 0x31, 0x82, 0xdc, 0x81, 0xfe, +0xd7, 0x9d, 0x90, 0x4e, 0xad, 0xc8, 0xc3, 0x40, 0xf4, 0xb9, 0x1b, 0x14, 0x1f, 0x03, 0x48, 0x1d, +0x95, 0xc1, 0x22, 0xff, 0xfe, 0xe4, 0x20, 0x59, 0x75, 0xac, 0x10, 0xa3, 0xa3, 0xe2, 0xa8, 0x95, +0xe8, 0x76, 0x14, 0xd0, 0xa3, 0xbb, 0x66, 0x96, 0xf4, 0x54, 0xaa, 0x9e, 0x28, 0x48, 0xa9, 0x4f, +0x0a, 0x04, 0xef, 0xf5, 0x5e, 0x7b, 0x0d, 0xac, 0x6d, 0x16, 0x48, 0x53, 0x4e, 0xd2, 0xe2, 0x77, +0x07, 0xcd, 0xae, 0x8e, 0xe2, 0x5f, 0x48, 0x5d, 0xbf, 0x77, 0xa3, 0x66, 0xe2, 0x82, 0x44, 0xd3, +0x32, 0xd1, 0x8f, 0x51, 0x11, 0x7e, 0xc4, 0xb9, 0x5f, 0xd4, 0xaf, 0x7f, 0x54, 0x8c, 0x5e, 0x4e, +0x85, 0x62, 0x4f, 0xdc, 0x20, 0xe8, 0x05, 0xfa, 0xc6, 0xc7, 0xb6, 0x68, 0x47, 0xba, 0x75, 0x59, +0xb9, 0x19, 0x6c, 0xcb, 0x62, 0xa8, 0xa2, 0x9a, 0xf6, 0x58, 0x57, 0xb8, 0x51, 0xe2, 0xff, 0xcf, +0x36, 0xcf, 0x0b, 0xe7, 0x5b, 0xec, 0x5b, 0x70, 0xeb, 0x92, 0x7f, 0x0e, 0x62, 0x69, 0xc5, 0xc4, +0xfe, 0x1d, 0x87, 0xe4, 0x6b, 0x46, 0x15, 0x13, 0x32, 0xd5, 0x6c, 0xdb, 0x58, 0x17, 0x68, 0x60, +0xe0, 0x52, 0x10, 0x7a, 0x12, 0xf6, 0x3f, 0x7e, 0xa2, 0x7c, 0x98, 0x9f, 0x08, 0xd7, 0x85, 0x14, +0xc8, 0x33, 0x0f, 0x79, 0xb3, 0x3e, 0xe3, 0x9c, 0x9f, 0x3f, 0xe1, 0x49, 0xdc, 0x87, 0x77, 0x0b, +0xab, 0x65, 0x1b, 0x34, 0xa8, 0x33, 0xe4, 0xae, 0x4b, 0x77, 0x79, 0x54, 0xfd, 0xd6, 0x56, 0x60, +0xff, 0x16, 0x3b, 0xbc, 0x0a, 0x20, 0x8e, 0xde, 0x65, 0x71, 0x1a, 0x6c, 0x2c, 0x3b, 0xc4, 0x03, +0x81, 0x41, 0x21, 0x8b, 0xce, 0x6d, 0xf3, 0x2b, 0x43, 0x86, 0xc4, 0x43, 0xfc, 0x0d, 0xe1, 0x44, +0x36, 0xd0, 0x0d, 0xf7, 0xce, 0x22, 0x78, 0x7b, 0x08, 0x7f, 0xa7, 0xfc, 0x0f, 0x0f, 0x29, 0x3c, +0x27, 0xe6, 0x6b, 0x83, 0xe9, 0xf2, 0xdd, 0x1e, 0x38, 0xa3, 0x11, 0xb8, 0xb3, 0xb1, 0x23, 0xfb, +0xf0, 0x34, 0x03, 0x46, 0x2b, 0xd9, 0x2c, 0x4e, 0x37, 0x83, 0x7b, 0xb2, 0xce, 0x30, 0xbc, 0xb9, +0x86, 0xc3, 0x5f, 0x69, 0xdd, 0x24, 0xf7, 0x05, 0xaa, 0x56, 0xe6, 0x58, 0xd9, 0x64, 0x71, 0x06, +0xbd, 0x19, 0x0b, 0xb9, 0x8c, 0x28, 0xb5, 0xc6, 0x97, 0x90, 0xd3, 0xe6, 0x45, 0xb7, 0xdb, 0x5a, +0x6e, 0xdc, 0x4e, 0x5d, 0xd5, 0x59, 0x85, 0x64, 0x89, 0x66, 0xf1, 0x9a, 0x26, 0xad, 0x65, 0xdc, +0xad, 0xb7, 0x75, 0x55, 0x92, 0xe7, 0x57, 0x4e, 0x60, 0xe7, 0xe6, 0xc3, 0x1d, 0xcd, 0xd5, 0xfc, +0x05, 0x6e, 0xbd, 0xf4, 0x06, 0x68, 0xbe, 0x78, 0x6d, 0x7b, 0x4f, 0x1e, 0x4c, 0xe4, 0x32, 0x76, +0x4e, 0x79, 0xe9, 0xd4, 0x56, 0x31, 0x9d, 0x5e, 0x90, 0x98, 0x82, 0xad, 0x18, 0x86, 0x5a, 0x9a, +0xd1, 0x6a, 0xd2, 0x03, 0x06, 0xd5, 0x85, 0x02, 0x53, 0x52, 0xaf, 0x08, 0xe8, 0x6d, 0x05, 0xe5, +0xd7, 0x7e, 0xd5, 0xa5, 0x97, 0xca, 0x71, 0x99, 0x30, 0xe3, 0x7d, 0x02, 0x12, 0x8e, 0x20, 0xaa, +0x7f, 0xbf, 0xb8, 0x42, 0x29, 0x38, 0x4d, 0x05, 0x23, 0x12, 0xd3, 0x55, 0xc6, 0x9a, 0xaf, 0xad, +0x62, 0x0c, 0x7d, 0xd4, 0x4c, 0x16, 0xdf, 0xfc, 0x00, 0x38, 0x3d, 0x17, 0x8d, 0xbb, 0x68, 0x4f, +0xbd, 0x0b, 0x34, 0x65, 0xff, 0xe4, 0x57, 0x8e, 0xb4, 0xd0, 0xcb, 0x70, 0xac, 0x4d, 0xce, 0x33, +0xdb, 0x2f, 0x80, 0xac, 0x57, 0xc0, 0xfa, 0x2e, 0x26, 0xb2, 0x02, 0x6c, 0x81, 0x7d, 0x03, 0x4a, +0xe0, 0x39, 0xb1, 0x34, 0xca, 0x13, 0x48, 0xee, 0x8a, 0x7a, 0x99, 0x56, 0x20, 0xa7, 0x5d, 0x90, +0x17, 0x6e, 0xd3, 0x7b, 0xdb, 0xb8, 0x59, 0xd7, 0x70, 0xf2, 0x41, 0xb4, 0xea, 0x78, 0x45, 0x01, +0x14, 0xc1, 0xe3, 0x24, 0xa5, 0xd4, 0x20, 0x70, 0x33, 0x3e, 0xe5, 0xbe, 0xc7, 0xc0, 0x02, 0x60, +0xeb, 0x55, 0x79, 0xf0, 0xd7, 0x62, 0xba, 0xf4, 0x11, 0x53, 0x75, 0x4d, 0xda, 0x95, 0xf5, 0x99, +0x8f, 0x06, 0xd8, 0xff, 0xef, 0xbe, 0x10, 0x7b, 0xae, 0x21, 0x52, 0xab, 0xed, 0x8c, 0x2b, 0x1f, +0x43, 0xc9, 0xa3, 0x91, 0x6b, 0x62, 0x01, 0xb6, 0xaa, 0xfb, 0x2f, 0x85, 0x52, 0x6b, 0xac, 0x8a, +0xd9, 0x6a, 0x8d, 0xb9, 0xd6, 0x27, 0x53, 0x3e, 0xce, 0x7b, 0x49, 0xb3, 0x1e, 0xb0, 0x0f, 0x1b, +0x32, 0x41, 0x05, 0x68, 0xe6, 0xf9, 0x91, 0x84, 0xd6, 0x5d, 0x75, 0x33, 0x77, 0xdf, 0xf0, 0x71, +0xf8, 0x0d, 0x1e, 0x24, 0xb9, 0x14, 0x06, 0xe4, 0x87, 0xc9, 0x7c, 0x2f, 0x28, 0x1a, 0x74, 0xf8, +0x81, 0x50, 0xd4, 0xdc, 0xf5, 0xc6, 0x43, 0x73, 0xa7, 0x22, 0xb5, 0x18, 0x57, 0xf3, 0x3b, 0x17, +0x06, 0x7c, 0x14, 0xdf, 0xcc, 0x94, 0xdb, 0xc1, 0x98, 0xf3, 0x5c, 0x60, 0x30, 0x18, 0xb2, 0x00, +0x93, 0x09, 0xc7, 0x60, 0x33, 0xbb, 0xfb, 0x8e, 0x16, 0x9e, 0x41, 0x66, 0xb3, 0x23, 0xa6, 0x84, +0x94, 0xa1, 0x54, 0x24, 0x6a, 0x39, 0x6f, 0x7c, 0x36, 0xb4, 0xe8, 0xe1, 0x43, 0x9a, 0xb5, 0xd0, +0xb7, 0x2a, 0x4e, 0x6f, 0xc7, 0xeb, 0xbb, 0xa6, 0x2a, 0xdb, 0x86, 0x07, 0x49, 0x89, 0xa4, 0xf3, +0xfc, 0xb6, 0x9e, 0x07, 0x4c, 0x4b, 0xfe, 0xfd, 0xf9, 0x54, 0xee, 0x88, 0xb7, 0xde, 0x0e, 0x91, +0x63, 0x3d, 0x3e, 0x76, 0x25, 0x27, 0xe3, 0x54, 0x1b, 0xc6, 0x9a, 0x96, 0x2d, 0x10, 0x57, 0x63, +0x15, 0xa9, 0x50, 0x1f, 0x13, 0xe9, 0x6f, 0xb8, 0x11, 0xe1, 0xd6, 0xaa, 0xc5, 0x49, 0x25, 0x01, +0x3c, 0xb0, 0xa8, 0xea, 0xa3, 0xe9, 0x89, 0x56, 0x26, 0x61, 0x1d, 0xf2, 0x99, 0xe3, 0x28, 0x5f, +0x35, 0x43, 0x9e, 0xae, 0xbc, 0xf2, 0xcf, 0xde, 0xb7, 0xf6, 0x5a, 0x1b, 0x01, 0x60, 0x3e, 0x2b, +0x2f, 0x43, 0xd5, 0x39, 0xfd, 0xe8, 0x83, 0x9e, 0x82, 0x14, 0x50, 0xbc, 0x50, 0x29, 0xd1, 0xc3, +0x0a, 0x4c, 0xd8, 0xfb, 0x27, 0x8a, 0x92, 0x8d, 0xf8, 0x56, 0x38, 0xff, 0xb6, 0xa5, 0x3d, 0x74, +0x0f, 0x0c, 0xe7, 0xb4, 0xc1, 0xd2, 0xbd, 0xe8, 0xa5, 0xf4, 0x77, 0xac, 0xea, 0xbc, 0xf9, 0x07, +0x3d, 0x6c, 0x11, 0x72, 0x91, 0x94, 0xfc, 0x35, 0x20, 0x03, 0xf5, 0xff, 0x5d, 0x3b, 0x3a, 0xb9, +0x67, 0x87, 0x8e, 0xec, 0x09, 0xd5, 0x65, 0xc6, 0xbf, 0x6a, 0xe8, 0x73, 0x85, 0xaf, 0x49, 0xd2, +0xb3, 0xe3, 0x48, 0x93, 0x89, 0x2d, 0x1d, 0x50, 0x15, 0x53, 0x08, 0xf1, 0x53, 0xe9, 0xd3, 0xaf, +0xe6, 0x07, 0xb6, 0xe7, 0x60, 0x65, 0xa6, 0x3f, 0xc0, 0x06, 0x94, 0x93, 0x54, 0x20, 0x79, 0x15, +0xb0, 0x55, 0x3c, 0xdf, 0xdf, 0x81, 0xe5, 0x10, 0xfe, 0xaa, 0x31, 0xa8, 0x78, 0xaa, 0x35, 0x56, +0x5f, 0x4e, 0xcf, 0xa9, 0x4e, 0x83, 0xfd, 0x20, 0x5e, 0xa7, 0x61, 0x6b, 0xdb, 0x8a, 0x47, 0x7f, +0x61, 0x6c, 0x75, 0x3a, 0x2f, 0xb6, 0x26, 0x6a, 0x38, 0xac, 0x6f, 0x30, 0xdf, 0x54, 0x43, 0x00, +0xef, 0xde, 0xfe, 0x63, 0x4b, 0x14, 0x5e, 0xd6, 0x37, 0xd1, 0x97, 0x78, 0xf0, 0x49, 0xe0, 0x10, +0x5b, 0xa2, 0x4e, 0x96, 0x22, 0xe9, 0x9c, 0xad, 0x46, 0xc3, 0x6d, 0x8e, 0xb4, 0x64, 0xba, 0x33, +0x5d, 0x7f, 0x18, 0xde, 0x32, 0x7d, 0x2f, 0xdb, 0x22, 0x59, 0x78, 0x5e, 0xc2, 0x9d, 0xba, 0x38, +0xe1, 0xef, 0xd4, 0x01, 0x04, 0xdc, 0x7a, 0x58, 0xd1, 0x7e, 0xb5, 0xab, 0x1f, 0xe7, 0x22, 0x2f, +0x39, 0x98, 0x37, 0xf2, 0xad, 0x85, 0x43, 0x72, 0x9e, 0x97, 0xf0, 0xbe, 0x1f, 0x79, 0x81, 0x84, +0x94, 0x9e, 0x31, 0xe9, 0xe2, 0x60, 0x35, 0x60, 0xab, 0x2d, 0x36, 0xa9, 0x37, 0x36, 0x9f, 0xc2, +0xd3, 0x55, 0xf2, 0x1a, 0x15, 0xf9, 0x10, 0xff, 0xb8, 0xf2, 0xac, 0x0c, 0x57, 0xfb, 0xe6, 0xac, +0xb3, 0xfa, 0xd0, 0x8c, 0x4e, 0xae, 0x51, 0x31, 0x89, 0x4f, 0x6e, 0x96, 0xf1, 0x44, 0x66, 0xa1, +0x3c, 0x61, 0x4c, 0xbd, 0x27, 0x78, 0xe9, 0x97, 0x2f, 0x59, 0x65, 0x26, 0x25, 0x84, 0x23, 0x93, +0xa5, 0x6d, 0x0d, 0xf3, 0x76, 0xdd, 0x9c, 0x6c, 0x6d, 0x9c, 0x39, 0xfe, 0xa7, 0x1c, 0xa4, 0x3a, +0x6f, 0x81, 0x6d, 0x2f, 0x7e, 0x68, 0xdf, 0x82, 0x94, 0xe7, 0x01, 0xd0, 0x0d, 0x28, 0x11, 0x05, +0x57, 0x85, 0x02, 0x46, 0x88, 0x3a, 0x61, 0x42, 0xd8, 0xbc, 0xc6, 0x9e, 0xdd, 0x9b, 0xf8, 0x9c, +0xf2, 0x9d, 0xf3, 0x92, 0xa3, 0xac, 0x07, 0xa7, 0x6a, 0x9f, 0x8e, 0x3e, 0x1f, 0xc5, 0x4a, 0xe8, +0x8c, 0x3e, 0x26, 0x4d, 0xf5, 0xd6, 0x18, 0x97, 0x41, 0xea, 0x2e, 0xb5, 0x86, 0xa8, 0x87, 0x89, +0x80, 0xb7, 0x66, 0xd3, 0x5a, 0x42, 0xd4, 0x0a, 0x56, 0xa1, 0x71, 0x02, 0x35, 0x0f, 0x9b, 0x37, +0xc6, 0x30, 0x22, 0xb9, 0xb5, 0xd6, 0xcc, 0x58, 0xcc, 0xfb, 0x81, 0xca, 0x82, 0xad, 0x00, 0x2f, +0x74, 0x8c, 0x4d, 0x39, 0x5c, 0x7a, 0x0d, 0xb8, 0xdc, 0x47, 0x1b, 0xc5, 0x41, 0x7d, 0x86, 0x61, +0xb2, 0xd9, 0x0d, 0x2a, 0xce, 0xc9, 0x17, 0xce, 0xb7, 0x79, 0xd4, 0x03, 0xcc, 0x91, 0x67, 0xd2, +0x1d, 0xda, 0xad, 0x65, 0xcc, 0x7b, 0x31, 0xe6, 0x6b, 0x57, 0x7a, 0x9a, 0x30, 0x22, 0xc0, 0x92, +0xc9, 0x01, 0xf9, 0x7b, 0x9b, 0xa2, 0x0c, 0xd8, 0xc9, 0x43, 0xb3, 0x1d, 0x63, 0x92, 0x7d, 0xe4, +0xd1, 0xf7, 0xd2, 0x0d, 0x36, 0x96, 0x7d, 0xdf, 0x04, 0x7a, 0xaf, 0x33, 0x8c, 0xec, 0xc5, 0xb7, +0x2e, 0x42, 0xb3, 0xaf, 0x09, 0x46, 0x0e, 0x07, 0xe8, 0x3e, 0xd8, 0xc0, 0x33, 0xad, 0x75, 0x0f, +0x42, 0x19, 0x74, 0x17, 0xab, 0x51, 0x6b, 0xac, 0xac, 0xc0, 0x41, 0xca, 0x0f, 0xb8, 0x99, 0x60, +0x02, 0x50, 0x6d, 0x2c, 0x1a, 0x53, 0xfd, 0x07, 0x10, 0xdb, 0x34, 0x5b, 0x3c, 0x61, 0xf4, 0xc1, +0x39, 0x96, 0xe6, 0xc3, 0x02, 0x39, 0x1c, 0x76, 0x1b, 0xb4, 0x2d, 0x06, 0x1c, 0xbb, 0x76, 0xbc, +0xe1, 0xea, 0x15, 0x8c, 0x26, 0x3b, 0x05, 0x08, 0x73, 0x8a, 0x11, 0x5f, 0xad, 0x7d, 0xee, 0x0c, +0xc0, 0x94, 0xe5, 0x6d, 0xa6, 0x31, 0x0f, 0x0a, 0xa5, 0x26, 0xd0, 0xcb, 0xc1, 0xad, 0x1f, 0x00, +0x6c, 0x19, 0xce, 0xe0, 0x62, 0x01, 0x07, 0xc6, 0x7b, 0x9b, 0x2e, 0x29, 0xc8, 0x24, 0x30, 0xfb, +0xba, 0x22, 0x06, 0x4a, 0x46, 0x2c, 0x3e, 0xb8, 0xed, 0xd3, 0x32, 0x5f, 0x09, 0xfb, 0xe3, 0x93, +0x52, 0x70, 0xf7, 0x6c, 0xed, 0xca, 0xa8, 0x9c, 0x98, 0xf8, 0x19, 0x95, 0x55, 0x4c, 0x80, 0xce, +0x13, 0x72, 0xa1, 0x78, 0x6e, 0xb0, 0x1a, 0xa0, 0xf2, 0xd2, 0x71, 0x68, 0x45, 0xe6, 0x8b, 0x94, +0xfe, 0x12, 0xf7, 0x01, 0xf3, 0xfc, 0x88, 0x0a, 0xfc, 0xb3, 0xd1, 0xc2, 0x6f, 0x9f, 0xec, 0x2b, +0x65, 0x23, 0xb9, 0x92, 0xf4, 0x44, 0x86, 0xdd, 0xb0, 0x00, 0xde, 0xe1, 0x46, 0xc2, 0x1f, 0xea, +0x4e, 0x87, 0x05, 0x49, 0xf6, 0xe3, 0x6d, 0xc3, 0xfa, 0x88, 0xbd, 0x00, 0xc2, 0x7f, 0x74, 0x60, +0x47, 0x03, 0x39, 0x4b, 0xbb, 0x36, 0xd0, 0x46, 0x59, 0x10, 0xa3, 0xdd, 0xc8, 0x80, 0xed, 0xdf, +0x0a, 0xfe, 0x22, 0x31, 0xc3, 0x1a, 0xaf, 0x92, 0x22, 0x67, 0x24, 0x40, 0x88, 0xda, 0x6d, 0x14, +0x97, 0x3f, 0x19, 0x32, 0x68, 0xcd, 0x72, 0x23, 0x86, 0x0b, 0x13, 0xd3, 0x8e, 0xcb, 0xa4, 0x70, +0xfd, 0x89, 0xe4, 0x3e, 0x64, 0x15, 0x8e, 0x51, 0x28, 0x7a, 0x7f, 0x9d, 0xe2, 0x55, 0xb9, 0xe9, +0xcc, 0x96, 0xf4, 0x67, 0x89, 0x21, 0x3e, 0x0f, 0x8c, 0x9c, 0x31, 0xdc, 0x78, 0x2f, 0x89, 0x83, +0x93, 0xb1, 0xa5, 0xf8, 0xe8, 0x62, 0x89, 0x50, 0x89, 0xaf, 0xdd, 0x83, 0x47, 0x0e, 0xe6, 0xde, +0x7d, 0x74, 0xc1, 0x39, 0x8d, 0x28, 0xf1, 0x0c, 0x29, 0x69, 0xb0, 0x47, 0xa1, 0x63, 0x26, 0x5f, +0xb2, 0x78, 0x8c, 0x5b, 0x18, 0xa7, 0x41, 0x13, 0xa3, 0xfb, 0x00, 0x38, 0x08, 0x79, 0x7c, 0xbd, +0xb0, 0x4b, 0xb3, 0x52, 0x3c, 0x98, 0x8b, 0x63, 0x87, 0x78, 0xdf, 0xff, 0xae, 0x67, 0xde, 0xd4, +0xa2, 0x37, 0x6a, 0x28, 0x1b, 0xd3, 0x29, 0x63, 0x82, 0x2d, 0x7d, 0x98, 0xf9, 0x72, 0x9b, 0x8c, +0x8d, 0xb9, 0x99, 0xf6, 0x1d, 0xde, 0x51, 0x25, 0xc9, 0xa4, 0x65, 0x97, 0x5c, 0xe5, 0x5c, 0x4b, +0xf5, 0x71, 0x23, 0xc5, 0x79, 0xae, 0x77, 0xe0, 0x9b, 0xb3, 0x10, 0x1b, 0xb2, 0x69, 0x9f, 0x00, +0xac, 0x8f, 0xd6, 0xdc, 0xcb, 0xc8, 0x37, 0xc8, 0x80, 0x5d, 0xac, 0x62, 0x9f, 0x7f, 0xa0, 0x0a, +0x39, 0x0a, 0x86, 0x86, 0xc3, 0x73, 0x6b, 0x02, 0xae, 0x19, 0xbb, 0x7a, 0x06, 0x50, 0xb1, 0x93, +0x2d, 0x99, 0x35, 0xe6, 0x0c, 0xd4, 0xd7, 0x29, 0x49, 0x7e, 0xba, 0xc8, 0xf3, 0xac, 0x80, 0xe0, +0x09, 0x87, 0x4a, 0x9f, 0x48, 0x1f, 0x31, 0xd2, 0x76, 0xf1, 0x0e, 0x9c, 0xe4, 0xa4, 0x7e, 0xc3, +0xc4, 0x11, 0xb5, 0xc7, 0x35, 0x6a, 0x0e, 0x25, 0xc3, 0xd2, 0x86, 0x15, 0xce, 0x02, 0x5a, 0x60, +0x64, 0x9d, 0xac, 0x55, 0x43, 0x14, 0xc7, 0x7b, 0x63, 0x27, 0xd7, 0x69, 0x00, 0x97, 0x75, 0x9f, +0x37, 0xf3, 0x72, 0xe7, 0x22, 0x0a, 0x18, 0x00, 0x91, 0xab, 0xc4, 0x6d, 0x9b, 0xc3, 0xe2, 0xe9, +0x9c, 0xd7, 0x13, 0x9c, 0x0f, 0xa8, 0xfd, 0x14, 0xbb, 0x2e, 0xff, 0x24, 0xc2, 0x94, 0x50, 0x29, +0x84, 0xb8, 0x15, 0xda, 0xc1, 0x17, 0xca, 0xb0, 0xfd, 0xb8, 0xaf, 0xc8, 0xde, 0x65, 0xff, 0x92, +0x58, 0x04, 0x39, 0x40, 0xc4, 0xbc, 0x50, 0x7c, 0x58, 0x31, 0x10, 0xfa, 0x95, 0x7d, 0xb2, 0x88, +0x33, 0x0a, 0xff, 0xf4, 0x9c, 0x0e, 0x32, 0xa5, 0xc1, 0x7c, 0x42, 0x2e, 0x2d, 0x6a, 0x51, 0x66, +0x5c, 0xdf, 0x90, 0x28, 0x0a, 0x00, 0xfd, 0x45, 0x87, 0x6e, 0x65, 0x0d, 0x65, 0x34, 0x2a, 0x2a, +0x16, 0x68, 0x19, 0x2f, 0x8f, 0xa3, 0xff, 0xdd, 0x51, 0x85, 0xd4, 0x1e, 0x02, 0x55, 0x64, 0x28, +0x8e, 0xe9, 0x91, 0x10, 0x30, 0xfe, 0x4c, 0xf3, 0x76, 0x5c, 0x21, 0xb4, 0xf7, 0x39, 0x65, 0xbf, +0x2e, 0x50, 0x9d, 0xe1, 0xa4, 0x3f, 0x79, 0x0f, 0xba, 0x59, 0xbd, 0x7b, 0x35, 0x69, 0x31, 0xc4, +0xa7, 0x18, 0xd2, 0xf8, 0x6c, 0x28, 0x1c, 0xa8, 0x43, 0x8e, 0x72, 0x9c, 0xd7, 0xe7, 0xb1, 0x3d, +0xda, 0x6f, 0xaf, 0x8d, 0xf1, 0xd7, 0x1c, 0x97, 0x6d, 0x58, 0xaf, 0xfb, 0x9e, 0x9e, 0x9f, 0x24, +0xc9, 0xfd, 0x29, 0x47, 0xe8, 0x5d, 0x3c, 0xd2, 0xde, 0x20, 0xb4, 0xc6, 0x77, 0x06, 0x52, 0x65, +0x67, 0x85, 0x46, 0x8e, 0xba, 0xa9, 0x77, 0xe2, 0xcf, 0xaa, 0x3b, 0xf9, 0x7c, 0x28, 0xbf, 0x7b, +0x51, 0xa0, 0xcc, 0x5a, 0xaf, 0xb2, 0x42, 0x15, 0x6a, 0x07, 0xa7, 0xad, 0x1a, 0xb3, 0xf1, 0x61, +0xdb, 0x13, 0x53, 0x1d, 0x1b, 0x12, 0x8f, 0xe7, 0x7d, 0x91, 0xcc, 0x31, 0xf0, 0xd5, 0x59, 0x64, +0x44, 0x8b, 0x03, 0x5d, 0xeb, 0x8f, 0xa6, 0xa7, 0xde, 0xc8, 0xf4, 0x83, 0x23, 0x58, 0xf7, 0x04, +0x6e, 0x3c, 0x2f, 0x51, 0x02, 0xa2, 0x71, 0x95, 0x7a, 0xca, 0x8e, 0x0c, 0xf2, 0x36, 0xcd, 0x41, +0x6a, 0xd6, 0x36, 0x93, 0x8a, 0xa3, 0x1a, 0x94, 0xd2, 0x20, 0x34, 0xac, 0x0c, 0x55, 0x78, 0x57, +0x40, 0x0a, 0x03, 0xf1, 0xee, 0x7e, 0x76, 0x76, 0x28, 0xa9, 0x5c, 0xff, 0x5c, 0x4b, 0x3e, 0xeb, +0x34, 0xde, 0xbb, 0x6e, 0xd6, 0xb9, 0xe2, 0x31, 0x79, 0x5d, 0xa4, 0xc5, 0xd2, 0x80, 0xff, 0xbf, +0xe7, 0x40, 0x7d, 0xef, 0x8b, 0x15, 0xc8, 0x8b, 0x06, 0x5e, 0xf0, 0x22, 0x18, 0x4e, 0x47, 0xb4, +0xfa, 0xf8, 0x21, 0x71, 0xed, 0xcb, 0x04, 0x3f, 0xdd, 0x93, 0x93, 0x5a, 0x4a, 0x69, 0x03, 0xf5, +0x90, 0xbc, 0xc3, 0x7f, 0x2c, 0x7e, 0x3e, 0x85, 0x6f, 0x7c, 0xf9, 0xa1, 0x4a, 0x6c, 0xd5, 0x13, +0xe7, 0xd4, 0x6c, 0xa7, 0x6f, 0x06, 0xa5, 0xe6, 0x65, 0x66, 0x72, 0xf3, 0x81, 0x52, 0xf7, 0x2a, +0xf3, 0x90, 0xb5, 0x1a, 0x40, 0x19, 0x2a, 0x40, 0xca, 0x4e, 0xb3, 0xb4, 0xb3, 0x42, 0x3e, 0xbf, +0xdc, 0xd9, 0x97, 0x7b, 0x59, 0x7e, 0x8a, 0x29, 0xf6, 0x0c, 0x50, 0x74, 0x43, 0x78, 0xc3, 0x1f, +0x21, 0x4d, 0xc7, 0x1e, 0xf5, 0x50, 0xb7, 0xb8, 0x5c, 0xc1, 0x34, 0xb5, 0x4f, 0x5c, 0x26, 0x7e, +0x36, 0x73, 0x13, 0x4f, 0x2e, 0x4c, 0x70, 0x23, 0x22, 0xe5, 0x52, 0xa4, 0xdb, 0xb4, 0xd7, 0xc6, +0x13, 0x19, 0x89, 0x3a, 0xa4, 0x82, 0xa1, 0x7d, 0x0b, 0x9e, 0xe8, 0x1c, 0x18, 0x9b, 0x7c, 0x12, +0x0f, 0xc1, 0x77, 0x7e, 0xa6, 0xa8, 0xa3, 0x8f, 0x2a, 0x2f, 0x8c, 0xfa, 0x92, 0x23, 0xee, 0x48, +0x83, 0x2b, 0xe8, 0x84, 0xc8, 0x92, 0xb5, 0x0d, 0x9c, 0xfa, 0x2f, 0xb9, 0xbe, 0xf3, 0x3c, 0xa0, +0x18, 0x01, 0xe4, 0xdb, 0x11, 0x23, 0x32, 0xe3, 0x50, 0x6e, 0x30, 0xf9, 0x3b, 0xd6, 0x68, 0xb3, +0x1e, 0x37, 0xc6, 0xcd, 0x99, 0xda, 0xfd, 0x95, 0xb9, 0xbf, 0x86, 0xb4, 0x97, 0x78, 0xca, 0x41, +0x9f, 0x9d, 0x23, 0x83, 0xfb, 0xab, 0x44, 0x0b, 0x9a, 0x0e, 0x90, 0x3e, 0x94, 0x52, 0x92, 0x0c, +0x8c, 0x2c, 0xf4, 0xe6, 0xd2, 0x79, 0xba, 0x69, 0x16, 0x35, 0xed, 0xc1, 0x7c, 0x23, 0x47, 0x6b, +0x45, 0x47, 0x26, 0x45, 0xa8, 0xba, 0xd8, 0xf7, 0x03, 0x19, 0x58, 0x34, 0xdb, 0xc0, 0x20, 0x5a, +0x36, 0x68, 0xde, 0x79, 0x6d, 0xb5, 0xe4, 0xb6, 0x83, 0x61, 0x08, 0xb8, 0x1a, 0x8b, 0x52, 0x3a, +0xa7, 0xc4, 0x40, 0x7e, 0x20, 0xa2, 0x8a, 0x99, 0x96, 0x08, 0xc4, 0x35, 0xad, 0xe9, 0x1e, 0x5d, +0xa1, 0xc2, 0x94, 0xa4, 0xd4, 0x3c, 0xa0, 0xe5, 0x88, 0xec, 0xe5, 0xdf, 0x76, 0x1e, 0x74, 0x03, +0xe5, 0xff, 0xf3, 0x2a, 0x77, 0xcb, 0x65, 0x06, 0x08, 0xe6, 0x06, 0xe7, 0xd1, 0x0d, 0xc9, 0xfe, +0xd5, 0xc0, 0xf2, 0xfe, 0xf6, 0x89, 0x8d, 0x31, 0xf0, 0x91, 0x74, 0x10, 0x6b, 0xed, 0x6d, 0x26, +0x6b, 0x67, 0xca, 0x8a, 0xd1, 0xb2, 0x54, 0xf6, 0xba, 0x70, 0x47, 0x74, 0x97, 0x96, 0x0b, 0x23, +0x8e, 0xf5, 0x45, 0x5f, 0x32, 0x2b, 0x9e, 0x13, 0x55, 0x7a, 0xa5, 0x96, 0x95, 0x42, 0xeb, 0x41, +0xb0, 0x34, 0x78, 0xf5, 0x0d, 0x93, 0xa7, 0x6e, 0x65, 0x94, 0x93, 0x7a, 0xd6, 0x23, 0xe4, 0x11, +0xa2, 0x98, 0xf8, 0xe4, 0x9c, 0x6f, 0xf8, 0xc1, 0x7c, 0x6e, 0x5d, 0x22, 0x42, 0xdb, 0x0d, 0xe8, +0xef, 0x10, 0xa1, 0xac, 0x1e, 0x6e, 0x3d, 0xd2, 0x25, 0xb7, 0xd8, 0xf5, 0x2a, 0xd5, 0x4a, 0x54, +0x17, 0x81, 0xf6, 0xe9, 0x40, 0x4f, 0xd9, 0x02, 0xb6, 0x9a, 0x37, 0xe5, 0x8e, 0x67, 0x42, 0x04, +0x10, 0xa4, 0x95, 0x7a, 0x86, 0xc7, 0xe9, 0x40, 0xc2, 0x74, 0x25, 0x88, 0x16, 0x79, 0x30, 0xb1, +0xe2, 0x5b, 0xe4, 0x4e, 0xaf, 0x96, 0x5f, 0x41, 0xb0, 0xca, 0x3e, 0x39, 0x08, 0x5d, 0x5d, 0x09, +0xc9, 0x6d, 0xad, 0x51, 0x6a, 0xa1, 0x2b, 0xaf, 0x45, 0xb8, 0x83, 0x12, 0x07, 0x15, 0x88, 0x38, +0xac, 0x01, 0x02, 0xb8, 0x4c, 0x4b, 0x9d, 0x4b, 0x7b, 0xdf, 0x1a, 0x49, 0x4c, 0x06, 0xe1, 0x6a, +0xdb, 0x7a, 0xa6, 0xea, 0x35, 0x79, 0x98, 0xd5, 0x68, 0xa6, 0xc9, 0xee, 0xfb, 0x2e, 0xfa, 0x4a, +0xbe, 0xb3, 0x10, 0x13, 0xe8, 0x6b, 0xd8, 0x65, 0x96, 0x73, 0x82, 0x78, 0x0d, 0x43, 0xd9, 0x09, +0xe7, 0x16, 0xea, 0x32, 0xaf, 0x1f, 0x1b, 0xdb, 0x19, 0x5d, 0x72, 0x5c, 0x89, 0xcd, 0xa8, 0x42, +0x35, 0xa0, 0x77, 0x15, 0x7b, 0x69, 0x55, 0x60, 0xe8, 0x88, 0x20, 0xd0, 0x77, 0xf4, 0xe7, 0xff, +0x97, 0xa7, 0xa7, 0x3b, 0x9f, 0x29, 0x52, 0x69, 0xdf, 0xdb, 0x98, 0x8b, 0xf8, 0x07, 0x44, 0x07, +0xc1, 0x29, 0x4a, 0xf7, 0xdd, 0xf2, 0xb7, 0xd1, 0xfe, 0xad, 0xf9, 0x3f, 0x5e, 0xbf, 0x43, 0xf8, +0xc9, 0x6f, 0x72, 0xc0, 0x85, 0x0a, 0x99, 0x85, 0xbc, 0x0c, 0xfa, 0xd4, 0xce, 0x69, 0xc3, 0x32, +0x23, 0x7d, 0xa5, 0x23, 0xf9, 0x58, 0xdd, 0xa1, 0xcd, 0xe7, 0x89, 0x0b, 0xcf, 0x69, 0xf0, 0x64, +0x9d, 0x15, 0x71, 0x80, 0x5c, 0x0a, 0x21, 0x9d, 0x73, 0xa0, 0x1a, 0x81, 0x41, 0x22, 0x16, 0x99, +0x9b, 0x01, 0x41, 0x38, 0x1a, 0x9d, 0xd4, 0x0c, 0xe6, 0xe6, 0xc0, 0x43, 0xa6, 0x54, 0x08, 0x2c, +0xd1, 0xc4, 0x89, 0xe4, 0x5b, 0x62, 0x35, 0xe1, 0xfc, 0x7a, 0xef, 0xac, 0xfe, 0xb9, 0x3e, 0xd9, +0xfc, 0x02, 0xbb, 0xa1, 0x7c, 0x37, 0x8b, 0xad, 0x44, 0xe6, 0xc0, 0x99, 0xc5, 0x82, 0x5f, 0x4e, +0x46, 0xc1, 0x3e, 0xe4, 0x2b, 0x81, 0xb6, 0xbb, 0x6a, 0x6e, 0xd7, 0x7e, 0xf0, 0xd5, 0xb3, 0xba, +0x61, 0xd5, 0x6e, 0x1a, 0x48, 0xcd, 0xfa, 0x7d, 0x18, 0x4b, 0xd5, 0x45, 0x6e, 0xdd, 0x2c, 0xf6, +0x2a, 0xec, 0x66, 0xa0, 0x62, 0xe3, 0x32, 0x66, 0x66, 0xdb, 0x40, 0x24, 0x4b, 0x6d, 0x28, 0x4d, +0x45, 0x92, 0xde, 0xca, 0x9b, 0x31, 0x74, 0xf6, 0x25, 0x12, 0x13, 0xb2, 0x9b, 0xd4, 0xca, 0x08, +0x11, 0xd5, 0xa1, 0xa6, 0xe6, 0x9b, 0x89, 0x7a, 0x9d, 0xbe, 0xe1, 0x9c, 0x2d, 0x05, 0xcd, 0x05, +0x64, 0x4f, 0x20, 0x8f, 0xdc, 0xca, 0x2d, 0x62, 0x0d, 0x77, 0x34, 0x1f, 0x25, 0xbe, 0x6c, 0xef, +0xc5, 0xe8, 0xcd, 0xf2, 0xb9, 0x03, 0x97, 0xb6, 0x31, 0x39, 0x7e, 0xea, 0xcb, 0x1d, 0x09, 0x1c, +0x0c, 0xde, 0xbc, 0xd4, 0x39, 0xe3, 0x29, 0xc0, 0x05, 0x4a, 0xd4, 0xed, 0x0d, 0x41, 0x35, 0x4d, +0x57, 0x32, 0xc9, 0x78, 0x0a, 0xbf, 0x8b, 0x71, 0x31, 0xdd, 0x19, 0xfd, 0x38, 0x86, 0xec, 0x62, +0x9d, 0x80, 0x82, 0x6d, 0xb8, 0x2e, 0x16, 0x37, 0xec, 0x94, 0x8c, 0xd8, 0xea, 0xb8, 0x59, 0xf7, +0xa5, 0x7d, 0xb8, 0xfa, 0xc6, 0x56, 0xe9, 0x3f, 0xd8, 0xa5, 0x3b, 0xd1, 0x37, 0x5f, 0xa2, 0xe8, +0xf8, 0xc2, 0xba, 0x58, 0x55, 0x6c, 0xe2, 0xfe, 0xb6, 0x9d, 0xf3, 0x33, 0x07, 0x2f, 0xe7, 0x47, +0x40, 0x07, 0xbf, 0xf9, 0x39, 0xc1, 0xbf, 0xad, 0xc6, 0x96, 0x1b, 0x51, 0xe9, 0x76, 0x9a, 0xe2, +0x97, 0x1d, 0xbc, 0x9c, 0x1e, 0x45, 0x21, 0x17, 0xba, 0xfd, 0x34, 0x41, 0x9a, 0x5b, 0xb4, 0x49, +0xd8, 0x1f, 0x6f, 0x3b, 0x4e, 0xee, 0x62, 0x08, 0x13, 0x25, 0x04, 0xc7, 0xf5, 0x04, 0x17, 0xdb, +0x2c, 0xc4, 0x15, 0x4c, 0xb6, 0x12, 0x4e, 0x77, 0x2d, 0xf0, 0xd5, 0x62, 0xf4, 0xdb, 0xe6, 0x38, +0x1c, 0xa3, 0xbc, 0xcb, 0xa6, 0xdf, 0xa8, 0xea, 0x5f, 0xa7, 0x27, 0xf0, 0xe2, 0x2e, 0xfa, 0xa3, +0xec, 0xd9, 0x68, 0x4b, 0xa5, 0x61, 0x68, 0x8b, 0x36, 0xba, 0x75, 0xc7, 0x46, 0xb7, 0x08, 0x70, +0xd2, 0x65, 0x50, 0x38, 0x3e, 0x32, 0x5e, 0xf5, 0x1b, 0x12, 0x93, 0x09, 0x19, 0xe7, 0xb3, 0xee, +0xca, 0x24, 0xac, 0xb0, 0x11, 0x93, 0x54, 0x6b, 0xba, 0x1d, 0x28, 0xa8, 0xdd, 0xa8, 0x19, 0xfe, +0x65, 0xba, 0x6a, 0xb8, 0x35, 0xdf, 0xa4, 0xbc, 0x8a, 0xdf, 0xc1, 0xd7, 0x4f, 0x77, 0xd0, 0x31, +0x96, 0xc7, 0xc9, 0xdf, 0xc5, 0xa2, 0x22, 0xf6, 0x8a, 0x9e, 0xcb, 0xf2, 0xd2, 0x43, 0xc3, 0x14, +0xa7, 0x7d, 0xc9, 0x7b, 0x9f, 0xbf, 0xd4, 0xb3, 0xd7, 0x1d, 0xc0, 0x9d, 0xcf, 0xf3, 0x6d, 0x45, +0x34, 0x3b, 0x9c, 0xc6, 0xee, 0xf4, 0x5c, 0x09, 0xe3, 0x85, 0x88, 0x64, 0xac, 0xf1, 0x39, 0xb3, +0xa9, 0xe3, 0x92, 0x15, 0xdd, 0x64, 0xef, 0x0d, 0xa0, 0x15, 0x92, 0xef, 0x12, 0x08, 0xa2, 0x69, +0x65, 0xda, 0x2d, 0xde, 0xa7, 0x69, 0x84, 0xd4, 0x25, 0xc4, 0x0b, 0x78, 0x64, 0xf7, 0x5e, 0x87, +0xe6, 0x9a, 0xf0, 0xe5, 0x82, 0xb8, 0x90, 0x3e, 0x52, 0x1c, 0xa3, 0x9c, 0xd9, 0x58, 0xc0, 0xe8, +0x36, 0xde, 0x0b, 0x21, 0x86, 0xc4, 0x53, 0x65, 0x8a, 0x8b, 0xd4, 0xd4, 0xc8, 0x9c, 0xc0, 0x8e, +0x5f, 0xfe, 0x06, 0x3c, 0x3c, 0x06, 0x1f, 0xa0, 0x7d, 0x31, 0x35, 0x91, 0xba, 0xf0, 0xd7, 0x04, +0x69, 0xd0, 0xcc, 0x59, 0x45, 0x45, 0x24, 0x24, 0x40, 0xbd, 0x07, 0xb8, 0xd1, 0xd1, 0x9a, 0xc8, +0xe1, 0xcf, 0x5f, 0xa6, 0xd0, 0xf0, 0x67, 0x76, 0x08, 0xb2, 0x92, 0x09, 0x99, 0xd3, 0x0a, 0x13, +0x80, 0x40, 0xe7, 0xe0, 0x3b, 0x0b, 0x8b, 0xb2, 0x5c, 0x12, 0xbb, 0x17, 0x9e, 0x42, 0x40, 0x3d, +0xf3, 0xbc, 0x7d, 0xf0, 0x9f, 0x72, 0xf3, 0x50, 0x46, 0x85, 0xf4, 0xa1, 0x31, 0xde, 0xfd, 0xf9, +0x23, 0xe6, 0x7c, 0x1c, 0x5d, 0xb6, 0xc5, 0xb5, 0xb4, 0x36, 0xca, 0x67, 0x64, 0x7d, 0xa7, 0xdb, +0x87, 0x10, 0xba, 0x56, 0xee, 0x4c, 0xff, 0x61, 0xc4, 0x9c, 0x5f, 0xe7, 0xfb, 0xa0, 0xf4, 0x43, +0x40, 0x0c, 0x08, 0xb8, 0x31, 0x00, 0x6f, 0xfa, 0x99, 0x79, 0x86, 0xfa, 0x15, 0x21, 0x6f, 0x96, +0x70, 0x7a, 0x61, 0x0d, 0x3c, 0x15, 0x5a, 0x7a, 0x80, 0x25, 0xbb, 0xdc, 0xe9, 0x8f, 0xc9, 0x38, +0xb4, 0xe9, 0xe9, 0x0d, 0x23, 0xfc, 0x72, 0x23, 0x54, 0xd9, 0x0a, 0xc7, 0x15, 0xb9, 0x33, 0x8b, +0x4c, 0x14, 0x68, 0xb4, 0x1b, 0x66, 0xdc, 0xab, 0x86, 0x2a, 0x1d, 0xad, 0x5c, 0x61, 0xd3, 0x08, +0x0f, 0x48, 0x16, 0x48, 0x45, 0x50, 0xa5, 0x3b, 0x4e, 0x0c, 0x22, 0x95, 0x00, 0x53, 0xed, 0x97, +0x3a, 0x6d, 0x5b, 0xdf, 0x17, 0x5f, 0x3c, 0x88, 0xa1, 0xa7, 0x91, 0x67, 0x11, 0xde, 0x7d, 0x49, +0x7e, 0x2c, 0x4e, 0x77, 0xfe, 0xa7, 0x8d, 0x46, 0x78, 0x20, 0xef, 0x0d, 0x1a, 0xbc, 0xba, 0x23, +0x89, 0x9b, 0x88, 0x4d, 0xae, 0x9f, 0xa2, 0x7e, 0x21, 0x49, 0xa8, 0xb9, 0x58, 0x8d, 0x66, 0x49, +0x40, 0x7c, 0x8b, 0x56, 0x55, 0x9a, 0xd3, 0xdd, 0x58, 0xfb, 0x81, 0xf7, 0x1d, 0xf5, 0x8e, 0x88, +0xfd, 0x44, 0xc7, 0x06, 0x2a, 0x40, 0x15, 0xb7, 0x2b, 0x13, 0x3e, 0x66, 0x26, 0x99, 0x8a, 0x0c, +0x31, 0x51, 0xb6, 0x0b, 0x14, 0xd2, 0x7a, 0xa8, 0x4f, 0x16, 0xd5, 0x39, 0x96, 0x6d, 0x31, 0x1e, +0x07, 0x64, 0x78, 0xe4, 0x58, 0xaa, 0xe5, 0x91, 0xd1, 0xf3, 0xe9, 0x5e, 0xb3, 0x44, 0xc2, 0x6f, +0x36, 0x3f, 0x88, 0x08, 0x33, 0x2f, 0xc1, 0x6d, 0xc8, 0x6c, 0xd5, 0xc7, 0x62, 0x23, 0x67, 0x04, +0x8b, 0xe2, 0xa6, 0x2e, 0x68, 0x17, 0x0d, 0xea, 0x4f, 0x10, 0xa2, 0xf1, 0x8f, 0x37, 0xf2, 0x04, +0x13, 0x5d, 0x9a, 0xd8, 0xda, 0xd7, 0xc9, 0x29, 0x08, 0x21, 0xca, 0x00, 0x74, 0x03, 0x5e, 0xe3, +0xb1, 0x3e, 0xff, 0x25, 0xd1, 0xf6, 0x1b, 0x4b, 0x58, 0x34, 0xb7, 0x05, 0x52, 0x79, 0x84, 0x83, +0xdf, 0x91, 0x17, 0x8a, 0x4c, 0x93, 0xb4, 0x51, 0x0d, 0x7a, 0x93, 0x99, 0x05, 0x18, 0x3c, 0xd2, +0x06, 0xe1, 0xc5, 0xe4, 0xe8, 0xc4, 0xfc, 0xb4, 0xdb, 0x94, 0xec, 0xcd, 0xc8, 0x21, 0x1a, 0x5d, +0xaf, 0xdd, 0xea, 0x41, 0x86, 0xc0, 0x9f, 0xe2, 0xc5, 0xa5, 0xa8, 0x14, 0xa5, 0x2d, 0xe1, 0x86, +0x4d, 0xd5, 0xe4, 0x1a, 0x18, 0x33, 0x9a, 0x01, 0x18, 0x43, 0xae, 0x67, 0x75, 0x0a, 0xfd, 0x03, +0xbf, 0xc7, 0x24, 0xd2, 0xb6, 0xa6, 0x45, 0x4c, 0xfb, 0x69, 0x9a, 0x0a, 0x0a, 0x9c, 0x92, 0xde, +0xca, 0x2e, 0xe6, 0xbf, 0x08, 0x7c, 0x11, 0x0a, 0x04, 0xc1, 0xd0, 0x5c, 0xba, 0x96, 0xc4, 0x2b, +0x00, 0x51, 0x2c, 0x72, 0x2e, 0x02, 0x1e, 0x49, 0x00, 0x05, 0xb0, 0x99, 0xe5, 0xc0, 0xc8, 0xcf, +0x7f, 0xae, 0x3e, 0x2a, 0x88, 0x83, 0xb6, 0x7a, 0x9d, 0x54, 0x32, 0x2e, 0x1c, 0x76, 0x0d, 0x0e, +0x17, 0x64, 0xe3, 0xb7, 0xda, 0x4c, 0xfd, 0xd4, 0x9a, 0x9f, 0x20, 0xdd, 0xa4, 0x87, 0x85, 0xf8, +0x86, 0xc4, 0x5d, 0xf5, 0x39, 0x9f, 0xe0, 0x0d, 0x4c, 0xad, 0x43, 0x68, 0xfb, 0x94, 0x3a, 0x7b, +0x45, 0x8f, 0x86, 0x4d, 0x37, 0x49, 0xb2, 0xad, 0x37, 0x92, 0xa9, 0xd1, 0x83, 0x15, 0x2b, 0x00, +0xb3, 0x5d, 0x7b, 0xf5, 0x38, 0xe5, 0x7c, 0xc0, 0xdb, 0xb7, 0x77, 0x64, 0x6f, 0x96, 0xeb, 0xd8, +0x34, 0x10, 0x0b, 0x3e, 0x83, 0x24, 0x1f, 0x1d, 0xce, 0x90, 0x56, 0x1b, 0xec, 0xe1, 0x49, 0xd8, +0x70, 0x1b, 0x21, 0x92, 0xf6, 0x6f, 0x68, 0x1b, 0xb2, 0xe6, 0xd4, 0x82, 0x2f, 0xe9, 0x8e, 0x00, +0x7a, 0xfa, 0x41, 0x46, 0x98, 0x40, 0xd4, 0x5b, 0xc6, 0xde, 0x70, 0xa5, 0x28, 0x1b, 0xac, 0x36, +0x91, 0x5a, 0x36, 0x30, 0xbb, 0x8f, 0xeb, 0x58, 0x85, 0x8d, 0xf9, 0x99, 0x70, 0x78, 0x7e, 0xc1, +0x21, 0x56, 0x9a, 0x16, 0x69, 0xd5, 0x40, 0x0b, 0x2a, 0x29, 0xaa, 0x23, 0x04, 0xf8, 0x13, 0x47, +0x40, 0x84, 0x9c, 0xa7, 0x4d, 0x26, 0x7b, 0x6a, 0x33, 0x70, 0x70, 0xbd, 0x48, 0x3d, 0xac, 0x0e, +0xaa, 0x12, 0xf0, 0x8a, 0x1f, 0x08, 0x88, 0xf7, 0x9a, 0x14, 0xbc, 0xe0, 0xcc, 0x64, 0xcc, 0xf1, +0xc8, 0xd7, 0x87, 0x4d, 0x1f, 0x7c, 0x85, 0x02, 0xba, 0xa9, 0xca, 0x5f, 0xff, 0xb7, 0x9b, 0xce, +0x9c, 0xd7, 0x17, 0x64, 0x9f, 0x63, 0xe9, 0x77, 0xe5, 0xba, 0x77, 0x39, 0xeb, 0xdf, 0x9b, 0xa9, +0xd0, 0x96, 0x57, 0x1f, 0xd9, 0x75, 0xa6, 0x3c, 0x62, 0x30, 0x4e, 0x56, 0x47, 0x07, 0xee, 0xe7, +0x02, 0x19, 0x0b, 0xfa, 0xa1, 0x5f, 0xc4, 0x4f, 0xe4, 0xa9, 0x9f, 0x6e, 0x4b, 0x86, 0xc9, 0xe0, +0x25, 0xc1, 0x30, 0xd5, 0x67, 0x5a, 0x78, 0xf3, 0x28, 0xe5, 0xb4, 0x4a, 0x2e, 0xda, 0xf0, 0x1f, +0x24, 0xc1, 0x91, 0x0f, 0x78, 0x09, 0x20, 0x71, 0x6d, 0x5d, 0x5a, 0x08, 0xec, 0xa2, 0x89, 0x4e, +0xe8, 0xef, 0x55, 0xe5, 0x34, 0xf2, 0x34, 0xf7, 0x2f, 0x53, 0xe5, 0x81, 0xd0, 0xfe, 0xee, 0xfa, +0xbe, 0x17, 0xb0, 0x60, 0x89, 0xc2, 0x7e, 0x20, 0xe8, 0xf3, 0x96, 0xb6, 0x4d, 0x41, 0xb2, 0x53, +0xea, 0xe0, 0x31, 0xa7, 0x1a, 0x06, 0x21, 0x37, 0xd3, 0x81, 0x1f, 0xf0, 0x75, 0x25, 0x24, 0x65, +0x01, 0xcc, 0xfb, 0x20, 0xb3, 0x44, 0xd1, 0x6f, 0x1e, 0x39, 0x49, 0xac, 0x89, 0xcf, 0x90, 0xfc, +0x19, 0x61, 0xfc, 0xf6, 0xee, 0x2a, 0x6d, 0x44, 0xf3, 0x51, 0x27, 0x4f, 0x7d, 0x99, 0x29, 0x5d, +0xda, 0x10, 0x58, 0xb3, 0x8f, 0xaa, 0x46, 0x8b, 0xc9, 0x74, 0xad, 0xfa, 0xd8, 0x1d, 0x87, 0x0a, +0xaa, 0xd2, 0x6d, 0x39, 0x9e, 0x82, 0x2a, 0xe7, 0x93, 0xe7, 0x2d, 0xfd, 0x25, 0x27, 0x8f, 0x0e, +0x5c, 0x4a, 0x98, 0xfc, 0x35, 0xcc, 0xdd, 0x0c, 0x20, 0xcf, 0x26, 0x04, 0xca, 0xad, 0xe7, 0x6c, +0x71, 0xc9, 0xf3, 0xc7, 0x55, 0xdc, 0x3a, 0x03, 0x0e, 0xef, 0xb5, 0xca, 0xec, 0x11, 0x54, 0x86, +0x23, 0x09, 0x9b, 0x6f, 0x51, 0xbe, 0x2b, 0xe7, 0x76, 0xdc, 0x3a, 0x08, 0xba, 0x93, 0x8d, 0x3e, +0x3e, 0x59, 0xba, 0x5c, 0x0c, 0xa5, 0x92, 0xd1, 0xca, 0x64, 0x9a, 0xfa, 0xeb, 0x73, 0x0e, 0xec, +0xfd, 0xe1, 0xe3, 0xb3, 0x57, 0x0d, 0x6e, 0x9d, 0x74, 0x9b, 0x2a, 0xaa, 0xc4, 0xbb, 0x7e, 0x42, +0xbb, 0x01, 0x6c, 0xa2, 0x12, 0xaf, 0x71, 0xc0, 0xdd, 0x2e, 0xfe, 0xaf, 0xc4, 0x2b, 0xf7, 0x36, +0x9c, 0x26, 0x85, 0x77, 0x7e, 0xb3, 0x08, 0xdc, 0xe2, 0xfb, 0x35, 0x5f, 0xa7, 0xac, 0xe7, 0x78, +0xac, 0xaa, 0x45, 0x71, 0xc3, 0xab, 0x94, 0x9c, 0x87, 0x67, 0x14, 0xa7, 0xe8, 0x6a, 0xc1, 0x15, +0x5d, 0x3f, 0x02, 0x92, 0x8f, 0x6c, 0x35, 0x0e, 0x84, 0x3c, 0xca, 0xf0, 0xd9, 0xb9, 0xbe, 0xc8, +0x8e, 0x20, 0x5a, 0xec, 0x46, 0xee, 0xb6, 0x12, 0xca, 0x6a, 0xf9, 0x59, 0xdf, 0xf1, 0x5e, 0x25, +0x9e, 0x90, 0x54, 0x64, 0x1d, 0x6b, 0x48, 0x0e, 0x33, 0x7a, 0x16, 0x84, 0x87, 0xd7, 0x91, 0x5c, +0x7c, 0x88, 0xf0, 0x5e, 0x61, 0xb1, 0x17, 0x7f, 0x5f, 0xf4, 0xa3, 0x88, 0xd8, 0xbb, 0xbb, 0xe8, +0x17, 0x24, 0xe3, 0x0a, 0x40, 0xb4, 0x48, 0xca, 0x0b, 0xf2, 0xcf, 0xcf, 0x39, 0xaf, 0xbd, 0xb3, +0x80, 0x6e, 0xd0, 0x13, 0x2c, 0x50, 0xe3, 0x4c, 0x25, 0x99, 0x81, 0x17, 0x71, 0xf6, 0xf7, 0x7e, +0xfc, 0xbc, 0x1a, 0x1f, 0x44, 0xed, 0x11, 0xe0, 0xde, 0xa9, 0x81, 0xc9, 0xae, 0xaf, 0x26, 0x58, +0x0e, 0xe8, 0x22, 0xca, 0x5d, 0x27, 0xf0, 0x65, 0xc5, 0x47, 0x10, 0x04, 0x47, 0x2c, 0xf1, 0x78, +0x78, 0x4b, 0x1c, 0x6c, 0x88, 0x5a, 0xa8, 0x96, 0x22, 0x2a, 0x69, 0xe9, 0xef, 0xdc, 0xb3, 0x20, +0x6d, 0x26, 0xc9, 0x36, 0xc3, 0x62, 0x88, 0x89, 0x6c, 0xa8, 0x01, 0x55, 0xce, 0x81, 0x32, 0xac, +0x38, 0x6b, 0xa7, 0x23, 0x5a, 0xd1, 0x57, 0xf9, 0xad, 0x6c, 0x3b, 0x0b, 0xa9, 0x77, 0x56, 0x4f, +0xb8, 0x36, 0x08, 0x5c, 0xe5, 0x1c, 0x66, 0xb0, 0xc7, 0xdf, 0xa6, 0x41, 0xb0, 0x38, 0x96, 0xd6, +0x35, 0x8c, 0xd2, 0x6e, 0x05, 0x37, 0x5d, 0xf4, 0xce, 0xdf, 0x5b, 0x31, 0x00, 0xe7, 0x80, 0xc6, +0x86, 0x53, 0x90, 0x55, 0xc9, 0xee, 0x7b, 0x50, 0x60, 0xaf, 0xfe, 0x54, 0xe2, 0x79, 0x79, 0x69, +0xe9, 0xbf, 0xcd, 0x94, 0x4c, 0xbe, 0xac, 0x49, 0x03, 0x0b, 0x44, 0xa8, 0x36, 0xab, 0xe5, 0xdd, +0xa9, 0x9d, 0x4c, 0xe6, 0xcd, 0x71, 0x96, 0xbf, 0x95, 0xa3, 0xaf, 0xa8, 0x8c, 0xfe, 0xc8, 0x97, +0xd8, 0xf1, 0xf7, 0x8d, 0x7d, 0x2f, 0x0c, 0x04, 0xab, 0xdc, 0x20, 0x94, 0x95, 0x36, 0x7e, 0x76, +0xdb, 0x80, 0x4a, 0x41, 0x4f, 0xb2, 0x06, 0xe4, 0x17, 0xb9, 0xac, 0xf4, 0xec, 0xe1, 0xfb, 0x03, +0x45, 0x46, 0x8b, 0xcb, 0xd1, 0x45, 0xe9, 0x14, 0xf7, 0xb1, 0x66, 0x93, 0xb1, 0xcd, 0x9b, 0xbb, +0xc0, 0x09, 0x7c, 0x31, 0xd1, 0x19, 0x00, 0xcf, 0x51, 0x1f, 0x38, 0x9d, 0xf9, 0x50, 0x93, 0x02, +0x4b, 0x17, 0x45, 0x0a, 0xc8, 0x0c, 0x73, 0x8e, 0x23, 0x3e, 0xec, 0xc8, 0xc8, 0x7a, 0xa3, 0xed, +0x71, 0x93, 0x12, 0xe1, 0xc2, 0x2a, 0x26, 0x4a, 0xae, 0xf1, 0x5b, 0xe5, 0x5d, 0x25, 0xba, 0x41, +0x90, 0x84, 0x9c, 0x10, 0xda, 0xb7, 0x77, 0x41, 0x3a, 0x56, 0xc0, 0xf9, 0x15, 0xd0, 0x74, 0xe1, +0x48, 0x95, 0x75, 0x00, 0x80, 0xb8, 0xfa, 0xcf, 0x28, 0x95, 0xaf, 0xa3, 0x4b, 0xca, 0x26, 0xb9, +0x07, 0xd9, 0xf1, 0x95, 0x9a, 0x7e, 0x6d, 0xd0, 0xdf, 0x3b, 0xb9, 0x37, 0x0a, 0x68, 0x56, 0x0e, +0xb5, 0xff, 0x40, 0x7b, 0x9c, 0xcf, 0x22, 0xfa, 0x04, 0xaa, 0x76, 0xf3, 0x3f, 0xdb, 0x41, 0x02, +0x26, 0xf7, 0xe7, 0x7a, 0x65, 0x51, 0xc6, 0x79, 0x1b, 0x67, 0x58, 0x7b, 0x64, 0x4c, 0xc9, 0xbd, +0x08, 0x65, 0x86, 0x75, 0x46, 0x6b, 0xec, 0x37, 0xfa, 0x1d, 0x0b, 0x6f, 0x94, 0x99, 0x4a, 0x33, +0x00, 0x25, 0x0e, 0xb7, 0xa3, 0x3f, 0xfb, 0x53, 0x3e, 0x0d, 0xb8, 0xdf, 0x2e, 0x52, 0x69, 0x7a, +0xe3, 0x6f, 0x67, 0xb1, 0xae, 0x63, 0xec, 0xae, 0x7d, 0x9e, 0x77, 0x16, 0x6b, 0x59, 0x5d, 0x08, +0xcc, 0xb9, 0x25, 0xdd, 0x02, 0xfa, 0xb2, 0xe4, 0x43, 0xb0, 0xda, 0x60, 0x90, 0x43, 0x31, 0xdf, +0x7d, 0x61, 0xad, 0xf7, 0x66, 0xd5, 0x3f, 0xed, 0xb7, 0xe1, 0xcd, 0xa7, 0x29, 0xd5, 0xe6, 0xa8, +0x5f, 0xee, 0x28, 0x1e, 0xae, 0xa6, 0xe8, 0xea, 0xef, 0x06, 0xd3, 0x4e, 0xab, 0x7f, 0x97, 0xd6, +0x47, 0x1e, 0x6a, 0x1e, 0xe9, 0x37, 0xde, 0x35, 0xb6, 0x73, 0x13, 0x5b, 0xea, 0x78, 0x60, 0x29, +0x66, 0xa6, 0xcb, 0xad, 0xf4, 0x05, 0x1f, 0x8c, 0x35, 0x18, 0xc4, 0xf5, 0xe9, 0xad, 0xe0, 0xac, +0x3c, 0xc9, 0xd9, 0xcf, 0x28, 0x04, 0x57, 0x41, 0xb2, 0xb9, 0xdc, 0x97, 0x13, 0x3a, 0x37, 0x92, +0xc4, 0x88, 0x39, 0x4a, 0xcb, 0x2f, 0x55, 0xac, 0xa9, 0x12, 0xcd, 0x45, 0x94, 0x1a, 0x34, 0xc1, +0xd5, 0x9d, 0xf1, 0x14, 0x2d, 0x98, 0x4c, 0xc4, 0x23, 0x05, 0x39, 0x05, 0x86, 0x52, 0x65, 0x9e, +0x5c, 0x5e, 0xf6, 0xeb, 0x98, 0x68, 0xeb, 0x00, 0xcf, 0x34, 0x19, 0xad, 0x49, 0x32, 0x95, 0x3a, +0x73, 0x88, 0xdc, 0x5b, 0x25, 0xdd, 0x85, 0x18, 0x36, 0x72, 0x81, 0xde, 0x0d, 0xc1, 0x27, 0x66, +0x21, 0xe1, 0xfd, 0xc3, 0xcb, 0xa4, 0xa9, 0x18, 0x8c, 0x43, 0x71, 0xd2, 0xa8, 0x81, 0x5c, 0xba, +0xf3, 0x88, 0x3e, 0x1b, 0xe0, 0xb9, 0x6e, 0x03, 0xb0, 0xf6, 0x3f, 0x6c, 0xd5, 0x8e, 0xec, 0x25, +0x18, 0xe8, 0x7a, 0xe1, 0xed, 0x16, 0x1e, 0xe7, 0x9a, 0x5f, 0x11, 0x63, 0x80, 0x05, 0x19, 0x32, +0xf8, 0x2d, 0x95, 0x98, 0xb9, 0xed, 0x81, 0xe2, 0x88, 0x8c, 0x97, 0x1a, 0x38, 0x56, 0xd4, 0xc0, +0xe1, 0x8e, 0x89, 0xd4, 0x34, 0x3d, 0x0a, 0xe4, 0x4d, 0xb0, 0xf1, 0xb4, 0x57, 0x48, 0x4d, 0x8f, +0x6a, 0xd1, 0xf1, 0x0e, 0x94, 0x15, 0x6e, 0x51, 0x20, 0x32, 0x9d, 0x9b, 0xbe, 0xa2, 0x6d, 0xc2, +0x89, 0x9a, 0x30, 0x43, 0x79, 0x47, 0x28, 0x10, 0x82, 0x97, 0x99, 0x2d, 0x41, 0x8b, 0xe8, 0xcc, +0x09, 0x81, 0x1c, 0xdb, 0xfc, 0xe6, 0x1c, 0x0b, 0xaa, 0x17, 0xd4, 0x66, 0x54, 0x40, 0xfa, 0x0c, +0x9c, 0x3e, 0xb0, 0xef, 0xbb, 0xd0, 0x4f, 0xe1, 0x5f, 0xe3, 0x52, 0x74, 0x20, 0x2d, 0x5a, 0xaf, +0x21, 0x83, 0x03, 0xff, 0xa0, 0xee, 0x06, 0x06, 0xee, 0x57, 0x9b, 0xf6, 0x24, 0x92, 0xc0, 0x43, +0x6e, 0x97, 0x08, 0x81, 0x43, 0xfa, 0xda, 0x37, 0x86, 0xe7, 0xc6, 0x12, 0x96, 0xae, 0xf6, 0xbd, +0x0f, 0x8f, 0x3b, 0x99, 0x21, 0x6e, 0x9b, 0x6f, 0x18, 0xc4, 0xd5, 0xef, 0x24, 0x18, 0x32, 0xb8, +0x6b, 0x9d, 0xba, 0x1a, 0xf9, 0xff, 0xdb, 0x69, 0x16, 0x9b, 0x20, 0x16, 0x2a, 0xbd, 0x44, 0xad, +0xaa, 0x2e, 0xc6, 0x98, 0xaa, 0x66, 0x6d, 0x55, 0xb3, 0xaa, 0xcf, 0x4f, 0xbe, 0x86, 0xdf, 0xb8, +0xb5, 0x0d, 0xbb, 0x53, 0xff, 0x37, 0x16, 0x38, 0x14, 0x41, 0x71, 0xa9, 0xa3, 0x88, 0x9f, 0x40, +0xfe, 0x9f, 0x2c, 0x2b, 0x57, 0x55, 0x76, 0xd0, 0x40, 0x16, 0xbd, 0x9b, 0xde, 0xc7, 0xf2, 0xcd, +0x4b, 0x64, 0x04, 0x40, 0x8d, 0x03, 0x85, 0x51, 0x28, 0xad, 0x5f, 0x54, 0x2a, 0x90, 0xc9, 0xae, +0x4d, 0x9d, 0x83, 0x2b, 0xcd, 0xcb, 0x0d, 0x0d, 0xa0, 0x47, 0xb0, 0xe9, 0x85, 0xbd, 0xaa, 0xc1, +0x44, 0x8f, 0xeb, 0xa8, 0x9f, 0x54, 0xcc, 0x19, 0x43, 0xfd, 0x1e, 0xf1, 0xd6, 0xc4, 0x3f, 0x6d, +0xca, 0x19, 0x66, 0x4d, 0x44, 0xee, 0x1a, 0x4f, 0xc2, 0x06, 0xf0, 0xa7, 0x8f, 0xef, 0x68, 0xe7, +0x02, 0xd8, 0x84, 0x8c, 0x6a, 0xfb, 0x6a, 0x26, 0x6d, 0x95, 0x97, 0x34, 0x86, 0x63, 0xd9, 0x90, +0xe0, 0x85, 0x5d, 0xff, 0xeb, 0x51, 0x60, 0x4b, 0xa2, 0xf8, 0x9d, 0xf9, 0xaf, 0x55, 0x58, 0xc6, +0xdb, 0x34, 0x76, 0x63, 0x50, 0x78, 0xd0, 0x0e, 0xed, 0x6b, 0x2e, 0x18, 0xe4, 0x7f, 0x36, 0xe3, +0xbf, 0x56, 0xa2, 0x72, 0xa8, 0x4f, 0x72, 0x6a, 0xd5, 0x19, 0xd4, 0x9f, 0x92, 0x02, 0x4a, 0xfb, +0x44, 0x2d, 0xb8, 0xf0, 0xb2, 0xe7, 0x81, 0x20, 0xb9, 0x47, 0x78, 0xd9, 0xc4, 0x85, 0xd8, 0x2a, +0xb4, 0x8a, 0x81, 0x93, 0x84, 0x54, 0x7d, 0x33, 0x5a, 0x70, 0x03, 0xf4, 0x08, 0x44, 0xb2, 0xff, +0xb2, 0xb7, 0x17, 0xaa, 0x08, 0x0d, 0x88, 0x9b, 0xe4, 0x42, 0xec, 0xe0, 0xf3, 0xa6, 0x4d, 0x4b, +0xdb, 0x21, 0x10, 0xc5, 0xdd, 0x5d, 0xe7, 0x78, 0x9e, 0x75, 0x8c, 0xe0, 0x69, 0x00, 0xc6, 0x1d, +0xec, 0x13, 0x83, 0xba, 0x46, 0x31, 0x5a, 0xe6, 0x2b, 0x6f, 0xa7, 0xe4, 0xa3, 0x9b, 0x67, 0xee, +0xa0, 0x8b, 0xf0, 0xd0, 0x94, 0xc6, 0x46, 0xd8, 0x94, 0xfc, 0xd4, 0xe6, 0x8f, 0x33, 0x47, 0xc2, +0x27, 0x08, 0x5c, 0x86, 0x01, 0x47, 0x04, 0xea, 0x6f, 0xb6, 0xe0, 0x7a, 0xdb, 0xcf, 0xcb, 0xfd, +0x6a, 0x18, 0xd5, 0x67, 0x3c, 0x55, 0xac, 0xe3, 0x15, 0xb4, 0x19, 0xc9, 0x80, 0xe1, 0x29, 0x2c, +0x7a, 0xdf, 0xc8, 0xec, 0x4a, 0x32, 0x89, 0x10, 0xab, 0xce, 0x11, 0x04, 0x21, 0xc3, 0x17, 0x72, +0x1d, 0xf3, 0xdc, 0x58, 0xe0, 0xc7, 0x7e, 0xf5, 0x58, 0x09, 0x43, 0x0b, 0x3d, 0x4b, 0x94, 0xd8, +0xac, 0x71, 0xbb, 0x47, 0x14, 0x23, 0x76, 0x03, 0xcf, 0x8b, 0x5c, 0x27, 0xb9, 0x14, 0x84, 0xd7, +0x7a, 0x3e, 0x25, 0x90, 0xd8, 0x70, 0x7e, 0xb3, 0xef, 0x34, 0x56, 0x2f, 0x1d, 0x7e, 0xc6, 0x63, +0xb0, 0xe3, 0x8a, 0xd2, 0x3b, 0x9b, 0x9d, 0x4e, 0xb7, 0x61, 0x18, 0xc1, 0x61, 0x15, 0xba, 0x1d, +0x1b, 0xca, 0x70, 0x87, 0xe3, 0x82, 0x1b, 0x2c, 0xb9, 0xe8, 0xe4, 0x6a, 0xe5, 0x22, 0xfa, 0x1f, +0x49, 0xe3, 0x61, 0xd9, 0xc2, 0x9e, 0x60, 0x35, 0x0e, 0x73, 0xea, 0xc0, 0xed, 0xe5, 0x69, 0xdf, +0xf0, 0x71, 0xe8, 0xf9, 0x7a, 0x94, 0x89, 0x76, 0xa2, 0x82, 0xe0, 0xfe, 0x64, 0x20, 0xa8, 0xde, +0x94, 0xb5, 0xe4, 0x84, 0xb7, 0x4d, 0xa4, 0x00, 0x14, 0x28, 0x0d, 0x95, 0x2b, 0xf0, 0x2f, 0x54, +0x9f, 0x3c, 0xcf, 0x93, 0xc9, 0xb3, 0x21, 0x8d, 0x66, 0x3c, 0x76, 0x71, 0xda, 0x7a, 0x02, 0x23, +0x88, 0x66, 0x01, 0x01, 0x00, 0x2a, 0x7d, 0xf5, 0xde, 0x21, 0xb5, 0x53, 0x7e, 0x9e, 0xaa, 0x9a, +0xa1, 0xec, 0x45, 0x3d, 0x04, 0x08, 0x22, 0x1a, 0xc6, 0x4a, 0x8c, 0x28, 0x6c, 0xad, 0x57, 0xec, +0x18, 0xa6, 0xd1, 0xcb, 0xae, 0x19, 0xd8, 0x69, 0xde, 0x3e, 0x16, 0xf9, 0x08, 0xa6, 0xf6, 0xa4, +0xe9, 0x43, 0x7d, 0xc2, 0x74, 0xed, 0x0e, 0x2b, 0x33, 0xf3, 0xe5, 0x6c, 0x0a, 0x10, 0xdb, 0xab, +0x20, 0x6f, 0x10, 0xe6, 0x2f, 0x82, 0xcb, 0xe7, 0x33, 0x47, 0xd8, 0xf5, 0x04, 0x9b, 0x34, 0x6e, +0x67, 0xbc, 0x34, 0x47, 0x5c, 0x1e, 0xc3, 0x45, 0xbf, 0x8b, 0xa3, 0x9f, 0xa2, 0xe3, 0xa1, 0x8b, +0xd4, 0x14, 0xb2, 0x75, 0x07, 0x94, 0x25, 0xeb, 0xc7, 0x2d, 0x2a, 0xa5, 0x29, 0x58, 0xa2, 0xb8, +0x9b, 0x6a, 0xca, 0x5c, 0xaa, 0x54, 0x87, 0xe0, 0x29, 0xe9, 0x82, 0x59, 0x79, 0xe3, 0xd7, 0xb8, +0x70, 0x41, 0xb8, 0xef, 0xe4, 0xca, 0x14, 0xda, 0x63, 0x68, 0x89, 0xfb, 0x09, 0x58, 0x53, 0xe7, +0xf7, 0xe1, 0x66, 0x6f, 0x43, 0x3f, 0xc1, 0xf2, 0xc6, 0x90, 0x44, 0x76, 0x2d, 0x67, 0xcc, 0x8c, +0xcf, 0x89, 0x53, 0xd3, 0x5c, 0xb3, 0x43, 0x2b, 0x71, 0xc8, 0x9c, 0x51, 0x63, 0x9e, 0xc7, 0x18, +0x84, 0x5a, 0x43, 0x01, 0x88, 0xbd, 0x1f, 0x2a, 0xaa, 0xa0, 0xcc, 0x89, 0x78, 0xf0, 0xaf, 0x05, +0x19, 0x33, 0xe3, 0xd6, 0xdb, 0xae, 0xb7, 0xe1, 0x33, 0x77, 0x18, 0xd9, 0xb4, 0x84, 0x51, 0xf8, +0xc2, 0xe1, 0x14, 0xa1, 0x63, 0x24, 0x51, 0x30, 0x21, 0x37, 0x6a, 0x39, 0x46, 0xeb, 0xe8, 0x81, +0xe2, 0xb2, 0x0e, 0x61, 0x03, 0x95, 0x7a, 0x96, 0x21, 0xc7, 0x15, 0xad, 0x80, 0xdc, 0x7b, 0x72, +0x1e, 0xc0, 0x84, 0x50, 0x66, 0x96, 0x86, 0x0a, 0x6d, 0xb4, 0xe4, 0x3a, 0x9b, 0x07, 0x59, 0x29, +0x43, 0xa2, 0x0a, 0xb6, 0xe7, 0x6a, 0xe7, 0x72, 0x3c, 0x98, 0x94, 0x22, 0x88, 0xcd, 0x08, 0xdf, +0x26, 0xda, 0x9c, 0x1b, 0xba, 0xf2, 0xb6, 0xf5, 0xde, 0x5b, 0x72, 0xf5, 0x3d, 0xb4, 0xd8, 0xdf, +0xd9, 0x75, 0x0b, 0x05, 0x87, 0xc9, 0x47, 0xb2, 0x10, 0x84, 0xf4, 0xbf, 0xbd, 0x9d, 0x01, 0xc6, +0xdc, 0xdb, 0x2a, 0x5d, 0x0e, 0x3d, 0x35, 0xc5, 0x68, 0x0d, 0xa9, 0x62, 0xa8, 0x16, 0x02, 0x41, +0x5f, 0xd8, 0x83, 0xce, 0x90, 0x1e, 0x69, 0x42, 0xce, 0x73, 0xf4, 0x96, 0x20, 0x8a, 0x67, 0x8a, +0x78, 0x7e, 0x94, 0x95, 0x53, 0xce, 0x1f, 0xb2, 0xe0, 0xbf, 0x89, 0xd0, 0xcf, 0x64, 0x5c, 0x7f, +0x56, 0xd8, 0xcc, 0x82, 0x30, 0xa0, 0x9b, 0x69, 0x1d, 0xde, 0x7c, 0xd1, 0xe4, 0xac, 0x0d, 0x95, +0x99, 0xc8, 0x34, 0x07, 0xcb, 0xe1, 0x51, 0xa2, 0x2a, 0x68, 0xcb, 0x63, 0x01, 0x71, 0xe3, 0x8b, +0xf7, 0xd8, 0x6c, 0xc4, 0x4c, 0x83, 0xaf, 0x23, 0xcc, 0x0a, 0x22, 0x81, 0xa5, 0x86, 0x09, 0x44, +0x80, 0xf1, 0xa5, 0x4a, 0x9e, 0x55, 0xb7, 0x96, 0x3f, 0x46, 0x67, 0xd8, 0x28, 0x78, 0x02, 0x8c, +0x7d, 0x47, 0x85, 0x93, 0xa9, 0x89, 0x9b, 0x88, 0x34, 0xe8, 0x8c, 0xa6, 0x81, 0x11, 0x4a, 0x66, +0x86, 0x8b, 0x46, 0xe6, 0x73, 0x47, 0x4f, 0x36, 0x61, 0xd4, 0xfc, 0xfa, 0x16, 0x21, 0x65, 0xd8, +0x13, 0xa3, 0x90, 0xc0, 0xe6, 0x7b, 0x0b, 0x6b, 0x3f, 0x8a, 0xd6, 0x20, 0x34, 0x42, 0x0e, 0x53, +0x88, 0xd1, 0x3e, 0x86, 0xeb, 0x79, 0xb8, 0x2e, 0x7b, 0x41, 0xcb, 0xc6, 0x45, 0x48, 0x63, 0x90, +0x5e, 0x11, 0x5c, 0xbc, 0xe5, 0xc6, 0x12, 0xbe, 0x87, 0x8f, 0xb7, 0x9c, 0x6c, 0xec, 0x1f, 0x49, +0xaf, 0x15, 0xdd, 0xa3, 0x32, 0x74, 0x9e, 0x32, 0xc5, 0xe9, 0xcb, 0xc5, 0x4d, 0xab, 0x01, 0x87, +0x57, 0x3b, 0xb1, 0x5a, 0xef, 0x9b, 0x7e, 0xc4, 0x6f, 0xa1, 0xe3, 0xac, 0xa5, 0x54, 0x8c, 0x47, +0x9b, 0xdc, 0xe0, 0x16, 0x30, 0xfa, 0xa3, 0x09, 0x4e, 0xf4, 0xfb, 0xcc, 0xbb, 0x20, 0x70, 0x9b, +0x11, 0x18, 0x30, 0x90, 0xb3, 0x89, 0x53, 0xd4, 0x38, 0xc3, 0xb1, 0x65, 0x1e, 0xfc, 0x90, 0x64, +0xc8, 0x2f, 0x97, 0x75, 0x27, 0x77, 0x2e, 0x04, 0xe6, 0xf9, 0xf1, 0xcf, 0x3f, 0xec, 0xfa, 0x78, +0xb6, 0x22, 0x08, 0xb2, 0xa5, 0x51, 0x31, 0xb2, 0xd0, 0x81, 0x25, 0xe3, 0x93, 0xa9, 0x55, 0x31, +0xc9, 0xaa, 0x48, 0x97, 0x3e, 0x8c, 0x4e, 0xe1, 0x88, 0x57, 0x3a, 0x24, 0x36, 0x47, 0xbc, 0x04, +0x30, 0x6b, 0x35, 0x9f, 0xb4, 0x2b, 0xa7, 0xa2, 0xbc, 0x38, 0x6d, 0x19, 0x8d, 0x4c, 0x7d, 0x58, +0x0a, 0xfe, 0x0c, 0x5b, 0x93, 0x4b, 0x3f, 0xf7, 0x2a, 0x41, 0xaf, 0xfa, 0x91, 0x1e, 0xcb, 0x76, +0x06, 0x2f, 0x1f, 0x58, 0xd2, 0x34, 0xf9, 0x2f, 0x8a, 0x74, 0x56, 0xc8, 0x3b, 0xf7, 0xa2, 0x94, +0xc6, 0x33, 0x58, 0xfa, 0xd4, 0xd7, 0x18, 0x87, 0x69, 0x3b, 0x61, 0x26, 0x35, 0xd4, 0xf7, 0x6b, +0xae, 0x18, 0xcc, 0xfb, 0x70, 0x00, 0x01, 0x52, 0x72, 0x12, 0x0f, 0x30, 0x69, 0x1d, 0xcf, 0x1b, +0x52, 0xea, 0x82, 0xd0, 0xaf, 0xfd, 0xba, 0x58, 0x34, 0xad, 0x55, 0x2c, 0x76, 0x1a, 0x88, 0xf2, +0xf5, 0xf9, 0x64, 0xa3, 0x68, 0xc6, 0x9b, 0xdf, 0xda, 0x20, 0xc7, 0x2d, 0x9e, 0x2d, 0x80, 0xe1, +0xd4, 0x90, 0x5e, 0x82, 0x34, 0x51, 0xe8, 0x12, 0xa0, 0x1b, 0x12, 0xb3, 0xfb, 0x9f, 0x3a, 0xbc, +0x01, 0x91, 0x2d, 0xd3, 0x44, 0xa5, 0x02, 0x83, 0xde, 0xa4, 0xd1, 0x9d, 0xf6, 0x89, 0x0a, 0x8f, +0xb6, 0x34, 0xcd, 0x4e, 0x2d, 0x46, 0x5f, 0x14, 0x49, 0x7f, 0x9b, 0x07, 0x0c, 0xd4, 0x48, 0x9a, +0xfb, 0xd8, 0xc1, 0x2f, 0x65, 0x13, 0x38, 0xa5, 0x97, 0x67, 0x20, 0x46, 0xa7, 0xae, 0xbc, 0x76, +0xcc, 0xca, 0x13, 0x52, 0xc6, 0xd5, 0x0b, 0xe7, 0xea, 0xd9, 0x1f, 0x19, 0x2c, 0xcc, 0x90, 0xd7, +0x47, 0x73, 0x69, 0x7e, 0x9e, 0xcd, 0xec, 0xbd, 0x64, 0x07, 0x48, 0x5e, 0x1a, 0x1d, 0x90, 0x40, +0xf6, 0xca, 0x4a, 0x34, 0xdc, 0x38, 0x57, 0xba, 0xe0, 0xda, 0x10, 0x01, 0x58, 0xbf, 0xb6, 0x2a, +0xe9, 0x7c, 0x6c, 0xd5, 0x7f, 0x22, 0x11, 0x7f, 0x94, 0x18, 0x8b, 0xcf, 0xc3, 0x80, 0xa1, 0xbe, +0x0a, 0xe7, 0x0c, 0xa8, 0x66, 0x90, 0x62, 0x8c, 0x84, 0x6a, 0xc5, 0xd7, 0x2f, 0xc4, 0xdd, 0x31, +0x3f, 0x6e, 0x53, 0x4f, 0x3b, 0x6c, 0x90, 0x16, 0x0f, 0xc5, 0x4a, 0x8b, 0xf3, 0x7e, 0x4c, 0xeb, +0xce, 0xcf, 0x0a, 0x77, 0xea, 0x1f, 0x33, 0x96, 0x9f, 0x0f, 0x7c, 0x4f, 0xc1, 0x07, 0xe1, 0x1a, +0x91, 0xbe, 0xa0, 0x68, 0xec, 0xf7, 0xb0, 0x94, 0x1c, 0x74, 0xdb, 0xa2, 0x2c, 0xb8, 0x60, 0x3b, +0xf8, 0xed, 0x32, 0x34, 0xe2, 0x51, 0x3e, 0xea, 0x89, 0x52, 0x47, 0x7e, 0x32, 0x2f, 0x0e, 0x4a, +0x3f, 0x87, 0xd5, 0x4c, 0x10, 0x60, 0x31, 0xa6, 0x47, 0xe0, 0xe5, 0xdd, 0xe2, 0xe0, 0xa8, 0x2a, +0x91, 0x63, 0xb1, 0x6a, 0x03, 0x64, 0x44, 0xf9, 0x78, 0x9d, 0x14, 0x98, 0xbc, 0x3a, 0x96, 0xad, +0x82, 0x65, 0x81, 0x2a, 0xf6, 0x15, 0x10, 0x56, 0xaf, 0xe7, 0xb0, 0x69, 0xef, 0x89, 0x3c, 0x27, +0xc5, 0xa8, 0x9d, 0x5f, 0xa2, 0xb6, 0xd8, 0x0f, 0xba, 0x8a, 0x88, 0x7c, 0x17, 0x9d, 0x63, 0x38, +0xca, 0x57, 0x06, 0xd4, 0x22, 0xd8, 0x80, 0xe6, 0x89, 0x86, 0xfd, 0xfe, 0x93, 0xa7, 0x6d, 0xb6, +0x1e, 0xf6, 0x3f, 0x79, 0x99, 0x89, 0xe2, 0x00, 0xcc, 0x85, 0x4f, 0x3c, 0x54, 0xaf, 0xf8, 0x30, +0xe2, 0x04, 0x7d, 0x83, 0xd8, 0xa5, 0x95, 0x85, 0x6b, 0x6a, 0x47, 0x47, 0xc7, 0x9c, 0x80, 0xdc, +0x4d, 0xae, 0x5d, 0x7d, 0xda, 0x2a, 0x4d, 0xcc, 0xc3, 0x13, 0x47, 0x54, 0xfe, 0xa1, 0x52, 0x36, +0x85, 0xc2, 0x7c, 0x34, 0x79, 0xe7, 0xbd, 0xa5, 0xb1, 0x1a, 0xd8, 0x5f, 0xd3, 0x60, 0xbf, 0xdb, +0xce, 0x76, 0xde, 0xd6, 0x13, 0x67, 0x33, 0xa5, 0xe0, 0x9c, 0xc8, 0x85, 0x77, 0x3a, 0x34, 0xbe, +0x44, 0xf3, 0x5e, 0x6d, 0xea, 0x73, 0x59, 0x26, 0xdf, 0x95, 0x77, 0xa5, 0xa4, 0x8e, 0xfe, 0xbc, +0x9b, 0xd2, 0x7b, 0x1c, 0x0d, 0x05, 0x0e, 0xd4, 0xc5, 0xf6, 0x51, 0xf9, 0xd0, 0xd2, 0x9c, 0xe7, +0xfa, 0x39, 0xb2, 0x0f, 0x4e, 0xd6, 0x3d, 0xb7, 0x41, 0xb5, 0x2a, 0xd1, 0xb7, 0x7a, 0xce, 0xa4, +0xf7, 0x3d, 0xaf, 0xc9, 0xd2, 0x0c, 0x18, 0x3c, 0xaf, 0x64, 0x05, 0x04, 0x24, 0x23, 0xd8, 0xba, +0x4a, 0xe5, 0x71, 0xb2, 0x11, 0xd9, 0xc3, 0x77, 0xfc, 0xe7, 0xd9, 0x76, 0xf3, 0xd5, 0x76, 0x13, +0x5b, 0x81, 0xef, 0xe7, 0x08, 0x1a, 0xd1, 0x09, 0x01, 0xc0, 0xfe, 0x03, 0x77, 0x33, 0x08, 0x1c, +0x16, 0xe4, 0x34, 0x06, 0xd5, 0xaa, 0x31, 0xcb, 0xd7, 0x61, 0x39, 0x5f, 0x27, 0x4f, 0xc6, 0x4c, +0x29, 0xf4, 0x54, 0xef, 0x03, 0x6b, 0x1c, 0x51, 0x8b, 0x6e, 0x60, 0x50, 0x7b, 0x61, 0x33, 0xfc, +0x35, 0x17, 0x65, 0x86, 0x82, 0xd5, 0xd1, 0x64, 0xbd, 0xbe, 0x78, 0x90, 0xc9, 0xea, 0x41, 0x72, +0xb6, 0xc5, 0x1f, 0x3b, 0xe9, 0xca, 0x79, 0xd8, 0x2a, 0xc8, 0x7c, 0x72, 0xcf, 0x67, 0x28, 0xe5, +0xec, 0x2b, 0x5d, 0x4b, 0xf7, 0xad, 0x6b, 0xdc, 0x92, 0xef, 0x1d, 0x22, 0x87, 0x9b, 0x04, 0x52, +0x2e, 0xc3, 0x30, 0xe2, 0x42, 0x4c, 0x9e, 0x85, 0xd4, 0x0a, 0x03, 0xa0, 0x70, 0xa2, 0x0e, 0xb5, +0x2b, 0xf7, 0x44, 0xac, 0x98, 0x51, 0x82, 0xb2, 0xb8, 0xee, 0x3a, 0x1c, 0xea, 0x2a, 0x75, 0xdd, +0xaf, 0x01, 0x77, 0x55, 0xb4, 0x86, 0x36, 0xfa, 0x39, 0x53, 0x23, 0x98, 0xc4, 0xc7, 0x5a, 0xf5, +0x3c, 0x46, 0x29, 0x91, 0xd9, 0xf6, 0xe7, 0xc6, 0x3f, 0x47, 0xf3, 0x72, 0x88, 0xe5, 0xf1, 0x14, +0x8e, 0xef, 0xb7, 0xe7, 0x2c, 0xe4, 0x07, 0xf0, 0xdf, 0x7e, 0xf2, 0x02, 0xa7, 0xbb, 0x94, 0x1c, +0xfd, 0xf5, 0x90, 0x6b, 0x25, 0x47, 0xcd, 0x01, 0x40, 0x38, 0x24, 0x98, 0x40, 0x2b, 0xf7, 0x50, +0x21, 0xfd, 0x32, 0x52, 0xc9, 0x85, 0x36, 0x10, 0x1f, 0x85, 0x6e, 0xfa, 0x20, 0x26, 0xd4, 0x53, +0xe3, 0x63, 0x9d, 0x46, 0xd0, 0xb6, 0x8a, 0xd4, 0xf4, 0xdd, 0xb7, 0xb4, 0x28, 0xca, 0xb4, 0xdc, +0x1c, 0x6b, 0x4c, 0xf0, 0xb9, 0x4f, 0x5b, 0x79, 0x50, 0x76, 0xef, 0xdd, 0x71, 0x18, 0x22, 0x92, +0xdb, 0xaf, 0xfc, 0xa5, 0x37, 0x13, 0x2b, 0xbd, 0x9d, 0xb4, 0x03, 0x96, 0x72, 0x17, 0xeb, 0x81, +0x89, 0x5b, 0x38, 0xbf, 0x55, 0x9e, 0x15, 0xcc, 0xbc, 0x68, 0x7c, 0xe0, 0xd8, 0x99, 0xe5, 0x94, +0x72, 0xf3, 0x06, 0xf6, 0x4c, 0xac, 0x53, 0x89, 0x8a, 0x59, 0xe8, 0xf6, 0x1a, 0xfb, 0xe3, 0x92, +0x4e, 0xb6, 0xec, 0xfe, 0xf6, 0xa4, 0xec, 0x1f, 0x72, 0xfc, 0xf2, 0x1e, 0x71, 0x02, 0xe8, 0x3c, +0x45, 0xa0, 0x05, 0x9e, 0xfc, 0x98, 0x0b, 0x73, 0x4e, 0x40, 0xfa, 0x95, 0xf9, 0xf9, 0x22, 0xe8, +0xa2, 0x8f, 0x4b, 0x9f, 0x18, 0x96, 0xda, 0xab, 0xff, 0x17, 0xd0, 0xff, 0x0e, 0x8b, 0xa5, 0xcd, +0xf6, 0x0d, 0xf5, 0xc2, 0x05, 0x80, 0xa2, 0x44, 0xb8, 0xdc, 0xf5, 0x29, 0x21, 0x6b, 0x59, 0xc2, +0x38, 0xf9, 0x42, 0x45, 0x62, 0xd1, 0x02, 0xba, 0x7e, 0x11, 0x2c, 0xa9, 0x0e, 0x79, 0xd9, 0xb4, +0x56, 0x4b, 0xa4, 0xad, 0xfb, 0x71, 0x01, 0x7d, 0xec, 0x78, 0xcb, 0xd5, 0xe9, 0x5d, 0xbd, 0xaf, +0xcd, 0x9d, 0x95, 0x12, 0xa6, 0xf2, 0x6c, 0x92, 0x56, 0x02, 0x46, 0x3f, 0x55, 0x9a, 0x40, 0xe0, +0x6b, 0x1a, 0xc1, 0x0e, 0x4f, 0x65, 0xd3, 0x5b, 0x4f, 0x0f, 0x5e, 0x80, 0x50, 0x6f, 0x70, 0x09, +0xcc, 0x9f, 0xc8, 0x6b, 0x72, 0xed, 0x59, 0x68, 0xb8, 0xae, 0x56, 0xab, 0xdb, 0x0c, 0x87, 0x2b, +0xd0, 0xfd, 0x37, 0x4a, 0x2e, 0x70, 0x5c, 0xa0, 0x15, 0x2b, 0xfd, 0xd2, 0xbf, 0x46, 0xa1, 0x92, +0xcb, 0xf4, 0x60, 0xb4, 0xac, 0x14, 0x49, 0x51, 0x27, 0xbd, 0x58, 0x5d, 0x55, 0xc3, 0xbf, 0xaf, +0xd8, 0x3e, 0x75, 0xc9, 0xf4, 0xf2, 0x33, 0xac, 0x6f, 0x0f, 0x8b, 0x06, 0xca, 0x39, 0x45, 0xe6, +0x90, 0x4b, 0x20, 0x6f, 0x2f, 0x23, 0xcf, 0x08, 0xb0, 0x85, 0x35, 0x7a, 0x03, 0x9e, 0x57, 0xb8, +0x40, 0x15, 0x0a, 0x2c, 0x39, 0xf0, 0x54, 0xcc, 0x70, 0xb1, 0xe2, 0x61, 0x94, 0x09, 0x81, 0x70, +0xaf, 0xe3, 0x51, 0x9f, 0x73, 0x50, 0xb9, 0x2c, 0x5e, 0x04, 0x29, 0xcc, 0xb8, 0x70, 0xf9, 0x46, +0x2b, 0xa3, 0xff, 0x0c, 0x35, 0x60, 0x8c, 0x8d, 0x8b, 0x06, 0x63, 0x6b, 0xa3, 0x9e, 0xc9, 0xa8, +0x43, 0x21, 0xbd, 0x7c, 0x6d, 0x62, 0xa8, 0x02, 0x51, 0x7f, 0x5b, 0x93, 0x07, 0x9b, 0x01, 0xef, +0x5c, 0x1c, 0x85, 0x6a, 0xa7, 0xb0, 0xe4, 0xdc, 0xc7, 0xe6, 0xb3, 0xb1, 0x9a, 0x73, 0x02, 0x49, +0xe9, 0x3b, 0x82, 0x57, 0x30, 0x94, 0x9f, 0x7d, 0x2b, 0x73, 0x33, 0x9d, 0xd9, 0xda, 0x3f, 0xfa, +0x77, 0x01, 0x64, 0x91, 0x71, 0x9c, 0xda, 0x13, 0x6f, 0xc2, 0xfa, 0xb0, 0x98, 0x7b, 0x5f, 0x2f, +0x0c, 0x6b, 0x07, 0xda, 0x2b, 0xb8, 0xb4, 0xfe, 0xf6, 0xf9, 0xd0, 0x72, 0xd6, 0x67, 0x0c, 0x22, +0x11, 0xe7, 0xba, 0xd0, 0xc6, 0xec, 0x1d, 0xb1, 0x6d, 0xb7, 0xd5, 0xc7, 0x97, 0x8f, 0xbf, 0xed, +0xc4, 0x18, 0x66, 0x72, 0x8d, 0xfb, 0x0e, 0x2a, 0x72, 0x2f, 0xfe, 0xd0, 0x5e, 0xc6, 0x34, 0x82, +0x45, 0x44, 0x11, 0x1f, 0x4a, 0xfa, 0x78, 0x9a, 0x85, 0x0f, 0x1f, 0x94, 0x2f, 0x52, 0xaa, 0x23, +0x64, 0x1c, 0xc4, 0x0c, 0x80, 0x97, 0x6d, 0x6f, 0x0d, 0xac, 0x6f, 0xa3, 0x44, 0x75, 0xbf, 0x3e, +0x00, 0xc4, 0x57, 0x0d, 0xe0, 0xb6, 0xe0, 0x3d, 0xa6, 0xef, 0x22, 0xb5, 0x2f, 0x43, 0x65, 0xc0, +0x4a, 0x5d, 0xb8, 0x8a, 0xdc, 0x8e, 0x40, 0x1d, 0xfc, 0x14, 0x74, 0x2b, 0x30, 0xf1, 0x67, 0xac, +0x7f, 0x4e, 0xd7, 0xf8, 0x63, 0x4a, 0xa5, 0xb5, 0xf1, 0x44, 0xc3, 0xf7, 0xb0, 0x2c, 0x3e, 0x5c, +0xf2, 0xbd, 0xfe, 0xb0, 0xd0, 0xdb, 0x0c, 0x9d, 0xf6, 0xfe, 0xb9, 0x10, 0x29, 0x3f, 0x15, 0x53, +0xe4, 0xdb, 0x9e, 0x77, 0x2e, 0xef, 0xfb, 0x19, 0x4c, 0xd1, 0xa9, 0x6c, 0x03, 0xef, 0x31, 0x68, +0xc7, 0xbd, 0x99, 0x7d, 0x8c, 0xe9, 0xca, 0xb0, 0x63, 0xcf, 0xd5, 0xb3, 0x47, 0x1e, 0xb9, 0xe4, +0x3e, 0xc4, 0x6f, 0x1a, 0xf1, 0xf2, 0xaa, 0xab, 0xd4, 0x69, 0x93, 0x88, 0x32, 0xb0, 0xaf, 0xa8, +0x17, 0x10, 0x13, 0x27, 0xfc, 0x06, 0x63, 0x88, 0x8a, 0x2b, 0xbb, 0x24, 0x3b, 0x98, 0xb7, 0xe8, +0xb4, 0x2e, 0x39, 0x1e, 0x72, 0xe1, 0xfb, 0x89, 0x81, 0x60, 0x1d, 0xbf, 0x11, 0xf4, 0xfa, 0x02, +0x75, 0xae, 0xe5, 0x36, 0xec, 0x02, 0x08, 0x3d, 0xdd, 0xb5, 0x39, 0x0e, 0x3d, 0x8c, 0xac, 0x59, +0x6d, 0x31, 0x5e, 0x48, 0xb8, 0x69, 0x92, 0x13, 0xf6, 0xb4, 0x9e, 0x1d, 0x01, 0xf8, 0xac, 0xc6, +0x43, 0xc3, 0xcd, 0x4e, 0xd9, 0xcf, 0x54, 0x0a, 0x4d, 0xbf, 0x01, 0x90, 0x45, 0xef, 0x2e, 0x8c, +0x32, 0x2e, 0x35, 0xcc, 0x77, 0x65, 0x56, 0x7e, 0x13, 0x36, 0xbc, 0x3a, 0xaa, 0xa3, 0x2f, 0x17, +0x26, 0x3a, 0x36, 0x47, 0x5d, 0x11, 0xf9, 0x40, 0xa3, 0x8c, 0x30, 0xda, 0x34, 0x13, 0xf9, 0x0a, +0x39, 0x1c, 0xc0, 0xb2, 0x7a, 0xa1, 0x4f, 0x66, 0x19, 0xaa, 0x9c, 0x81, 0x8b, 0xa0, 0x79, 0x7a, +0x39, 0x4d, 0xbc, 0xd1, 0x78, 0x2a, 0x47, 0xd9, 0x8d, 0x0c, 0x3b, 0x07, 0x6f, 0x54, 0x40, 0xd7, +0xd8, 0x2a, 0x18, 0xfb, 0xa7, 0xe3, 0xff, 0x6a, 0x36, 0xb1, 0x77, 0x2e, 0x73, 0x39, 0xa9, 0x82, +0xb0, 0xd1, 0xa0, 0xea, 0x91, 0x7a, 0x91, 0x42, 0xa8, 0xa2, 0xb6, 0x06, 0xc1, 0x7c, 0x30, 0xfb, +0xd0, 0x8f, 0xb1, 0x10, 0xa7, 0x76, 0x3a, 0x26, 0x1e, 0xcc, 0x30, 0xc3, 0xf2, 0x7c, 0x5c, 0x54, +0x55, 0x08, 0x73, 0x3e, 0x9e, 0x06, 0x3f, 0x8c, 0xad, 0x68, 0x2d, 0x0b, 0xed, 0x7c, 0x0a, 0x88, +0xec, 0xa8, 0xd0, 0xbd, 0xee, 0x09, 0x08, 0xe2, 0x20, 0x06, 0x10, 0xd7, 0x48, 0xe5, 0x68, 0x2a, +0xc0, 0xda, 0x1e, 0x17, 0x14, 0x1e, 0x46, 0xd6, 0xdc, 0x3c, 0x43, 0xdf, 0xa6, 0x7a, 0xb5, 0xa7, +0xbf, 0x19, 0x68, 0xbe, 0x59, 0x00, 0xff, 0xb7, 0x9a, 0x9d, 0x70, 0xb6, 0xae, 0x12, 0x87, 0xad, +0x64, 0x8c, 0x04, 0xd4, 0x75, 0x01, 0x0f, 0xe3, 0x7d, 0x2e, 0xd6, 0x84, 0x8b, 0xb1, 0xb8, 0xe6, +0x7e, 0x61, 0xe6, 0x16, 0x3e, 0x64, 0x21, 0xcc, 0x98, 0x89, 0x64, 0xeb, 0x4a, 0xd1, 0x29, 0xb9, +0x73, 0xe0, 0x3d, 0x0e, 0xe5, 0xbf, 0xcd, 0x3c, 0x69, 0xaf, 0xcd, 0x5b, 0xfa, 0x28, 0x6e, 0x84, +0xe0, 0xbf, 0x7f, 0x27, 0xcc, 0x7e, 0xf2, 0x7a, 0xa8, 0x86, 0x11, 0xcb, 0xe0, 0x7f, 0x05, 0xef, +0x2a, 0x7b, 0xf3, 0x53, 0x8f, 0x45, 0xf3, 0x5a, 0x7b, 0x51, 0x05, 0x34, 0xfa, 0x75, 0x1f, 0x52, +0x38, 0xee, 0x43, 0x56, 0x68, 0x64, 0x35, 0xb6, 0xdc, 0xf0, 0x80, 0x43, 0xb4, 0xd3, 0x33, 0x59, +0x48, 0xa5, 0x2f, 0x27, 0x33, 0x89, 0xec, 0x0f, 0xb5, 0x88, 0x80, 0x86, 0x5b, 0xb3, 0x16, 0x94, +0x2d, 0xce, 0x8d, 0xa9, 0x4c, 0x3a, 0x6d, 0x01, 0x73, 0x3b, 0x0c, 0x36, 0xf9, 0x53, 0xc1, 0x9f, +0xe2, 0xea, 0x02, 0xf5, 0x5e, 0x27, 0x63, 0x46, 0x1a, 0x26, 0x29, 0xaa, 0x44, 0x7e, 0xae, 0x2c, +0x52, 0x72, 0x30, 0x3f, 0x2d, 0x23, 0x07, 0xa1, 0xe1, 0x53, 0xdb, 0x8c, 0xae, 0x51, 0x63, 0xb8, +0x70, 0x87, 0xa7, 0x4e, 0xc8, 0x70, 0x93, 0xd0, 0x3b, 0xcd, 0x8d, 0x9f, 0x17, 0xce, 0x3a, 0xeb, +0x70, 0xb3, 0x2c, 0xc3, 0x4a, 0xda, 0xed, 0x35, 0xbd, 0x41, 0xa4, 0xae, 0x1a, 0x6c, 0xd1, 0x03, +0xe0, 0x84, 0xd5, 0xb8, 0x41, 0xff, 0xc0, 0xab, 0x1c, 0x19, 0x61, 0x0e, 0x8e, 0xa0, 0xd9, 0x75, +0xba, 0x5d, 0xc8, 0xa3, 0x84, 0xa8, 0xe5, 0x61, 0xec, 0x30, 0x33, 0x4e, 0x13, 0x90, 0xb3, 0xa3, +0x14, 0xf1, 0xa2, 0xf8, 0x1b, 0xe6, 0x22, 0xe1, 0xbf, 0xaf, 0xb3, 0x21, 0x8e, 0x0c, 0x19, 0x31, +0x52, 0x3e, 0xbb, 0x97, 0xc4, 0xd8, 0x52, 0x83, 0xda, 0xb2, 0x58, 0x11, 0xed, 0xd2, 0x91, 0x2b, +0x94, 0x45, 0xaa, 0x25, 0x65, 0xb8, 0x52, 0x7b, 0xa5, 0x29, 0x75, 0x6e, 0x73, 0x37, 0x0d, 0x37, +0xd5, 0x43, 0x8b, 0x5c, 0x47, 0xce, 0xa0, 0x2e, 0x9b, 0xcd, 0xc8, 0x5e, 0x2b, 0x18, 0x52, 0x35, +0x62, 0x41, 0xb8, 0xe7, 0x3a, 0x1d, 0x5c, 0x7a, 0x3c, 0xbf, 0x5a, 0x85, 0x73, 0x88, 0x2a, 0xe6, +0x01, 0xc7, 0x16, 0xd7, 0x5b, 0x52, 0xd7, 0x90, 0x2e, 0xa9, 0x71, 0x71, 0x88, 0x7b, 0x69, 0x1e, +0x68, 0xa8, 0x0a, 0x23, 0xb7, 0xad, 0xcc, 0x41, 0xdf, 0x89, 0x05, 0x26, 0x43, 0x46, 0x9d, 0x23, +0xee, 0x4a, 0x7a, 0xcc, 0xcc, 0xd2, 0x7e, 0x0c, 0xaf, 0xab, 0x63, 0xd0, 0xc9, 0x73, 0x2d, 0x45, +0x8c, 0x65, 0x6b, 0x4e, 0xb7, 0x63, 0x77, 0x68, 0x35, 0x4f, 0x74, 0x26, 0x29, 0xff, 0x2f, 0x28, +0x94, 0x95, 0x1f, 0x30, 0x14, 0x2b, 0x30, 0xd5, 0xf1, 0x64, 0xd7, 0x48, 0x7a, 0x83, 0x56, 0x3a, +0x41, 0x74, 0x92, 0xd1, 0x93, 0xed, 0xfe, 0x5f, 0x10, 0x75, 0xf8, 0x2f, 0x82, 0xff, 0x35, 0x6e, +0xe6, 0x01, 0x78, 0x5f, 0x4a, 0x76, 0xa9, 0xb5, 0x16, 0xd6, 0xd9, 0x6c, 0xce, 0x72, 0x88, 0x1e, +0x32, 0xe7, 0xe7, 0xcc, 0xe1, 0x6b, 0x26, 0xc0, 0x16, 0x8d, 0x76, 0x9b, 0xb0, 0xc7, 0x7b, 0x6f, +0x58, 0xac, 0xa5, 0xb6, 0x26, 0x1a, 0x7f, 0xc1, 0xb8, 0xb3, 0xfc, 0x29, 0x64, 0x05, 0x4f, 0x7a, +0x0d, 0xc3, 0xcd, 0x2d, 0xb6, 0xc4, 0x3b, 0x3e, 0xa3, 0xa3, 0xe6, 0x17, 0x62, 0x39, 0x78, 0xf1, +0xdf, 0xb2, 0x0e, 0xc5, 0xaa, 0xaa, 0xbe, 0x56, 0x2f, 0x20, 0x61, 0x10, 0xde, 0x2b, 0x2d, 0x0b, +0x58, 0x3a, 0x64, 0x88, 0xa6, 0x44, 0xd6, 0xee, 0x50, 0x29, 0x91, 0xb0, 0x01, 0xc7, 0xa0, 0x2c, +0x4b, 0x51, 0x89, 0x7a, 0x5c, 0xab, 0xe5, 0x88, 0xab, 0x5d, 0x77, 0xfa, 0x78, 0x78, 0x83, 0xa4, +0x21, 0x5c, 0xed, 0xc9, 0x37, 0xe1, 0x52, 0xa6, 0x9b, 0xd8, 0x47, 0x57, 0xce, 0xc1, 0x14, 0x2e, +0x48, 0x86, 0xbd, 0x3d, 0x33, 0x03, 0x75, 0x85, 0x3f, 0xf6, 0xcb, 0x38, 0x29, 0x82, 0x97, 0x23, +0xae, 0x7a, 0x15, 0x15, 0xee, 0xbf, 0x44, 0x10, 0x69, 0x67, 0xcf, 0x2e, 0xf9, 0xd0, 0x3d, 0xb7, +0xca, 0x53, 0xd6, 0xff, 0x28, 0x9a, 0x78, 0x4b, 0xba, 0x0c, 0x0e, 0x76, 0xbb, 0xe0, 0xa5, 0x65, +0x41, 0x86, 0xa4, 0x4d, 0xd3, 0x7d, 0xb2, 0x4a, 0x98, 0x6e, 0x65, 0x55, 0xe5, 0xd5, 0xbd, 0x36, +0x72, 0xa9, 0x58, 0x2f, 0xd3, 0xc1, 0x56, 0xfc, 0xe9, 0x00, 0xfc, 0x3b, 0x0d, 0xee, 0xfa, 0x2c, +0x18, 0x49, 0x3e, 0xc7, 0x8e, 0xba, 0xed, 0x2d, 0xf4, 0xc4, 0x3d, 0x8b, 0xc0, 0x01, 0x06, 0x70, +0x55, 0x92, 0x03, 0x72, 0xc5, 0x5c, 0xfc, 0x1e, 0x0b, 0x68, 0x49, 0x3b, 0x9b, 0x4c, 0x72, 0xbb, +0x57, 0xbc, 0x03, 0x2e, 0x26, 0xed, 0x8e, 0xdf, 0xf2, 0xc2, 0x4d, 0x9f, 0x5f, 0xde, 0xd3, 0x7b, +0x0b, 0xaf, 0xa7, 0xc1, 0xc6, 0x7d, 0x31, 0x68, 0xb5, 0x08, 0x2b, 0x9e, 0xfa, 0x25, 0x06, 0xe2, +0x45, 0xba, 0x4c, 0x03, 0x00, 0xe7, 0xce, 0xf5, 0x68, 0xd8, 0x56, 0x00, 0x71, 0x2c, 0xd1, 0x4c, +0x0e, 0xec, 0x8c, 0x51, 0x15, 0xae, 0x77, 0xb3, 0x24, 0x9d, 0x55, 0x18, 0x21, 0xa9, 0x47, 0x22, +0xfd, 0xb3, 0x4c, 0x27, 0x43, 0x89, 0x40, 0x0f, 0xd7, 0xd2, 0x48, 0xcf, 0x26, 0xbb, 0x1e, 0xf8, +0x5b, 0xb3, 0x98, 0x0d, 0xdc, 0xfc, 0xcd, 0x7c, 0xd3, 0x56, 0x38, 0xa7, 0x15, 0x93, 0xc7, 0x74, +0xc1, 0x87, 0x45, 0x47, 0xb6, 0x09, 0x46, 0xe7, 0x61, 0xaf, 0x70, 0xca, 0x53, 0xf6, 0x0c, 0xe6, +0x38, 0x73, 0x83, 0x39, 0x7b, 0x08, 0x55, 0x0a, 0x6d, 0xc8, 0x07, 0xe0, 0x63, 0x9d, 0x0a, 0xc1, +0xb0, 0x12, 0xbd, 0xb5, 0x59, 0xaf, 0xa7, 0x59, 0x73, 0x50, 0xf1, 0x32, 0x2c, 0xc4, 0x34, 0x11, +0x1a, 0x74, 0xfb, 0x52, 0x43, 0xde, 0xb6, 0xf0, 0x2f, 0xaa, 0x64, 0xc6, 0x42, 0x86, 0xb8, 0x0c, +0x75, 0xdb, 0x46, 0x04, 0xa3, 0x5f, 0x65, 0x38, 0x96, 0x2a, 0x42, 0xcb, 0x1b, 0x63, 0x4e, 0xc4, +0x62, 0x56, 0xf3, 0xe4, 0xe7, 0xf6, 0x46, 0x4e, 0xf7, 0xac, 0x29, 0x22, 0x61, 0x83, 0x2a, 0x5d, +0x2a, 0x42, 0xa2, 0xd1, 0xef, 0xc7, 0xf8, 0x6c, 0xf3, 0xa1, 0x6e, 0x11, 0xba, 0x11, 0x7f, 0xae, +0x2b, 0x33, 0x60, 0x17, 0xb1, 0x4d, 0xf2, 0x66, 0xe7, 0x67, 0x11, 0xad, 0xb7, 0xc9, 0x4f, 0xad, +0x0c, 0xf4, 0xa2, 0xa1, 0xd5, 0x0f, 0xc3, 0xf0, 0xaf, 0x26, 0x98, 0xc0, 0xee, 0xcc, 0x5d, 0x99, +0xac, 0x34, 0xdd, 0x79, 0xd3, 0x3e, 0x67, 0xa9, 0x5e, 0xe5, 0xbd, 0x43, 0xbf, 0x31, 0x1b, 0x8f, +0xa6, 0x8d, 0x00, 0xec, 0x01, 0x65, 0xd2, 0x26, 0x0f, 0xfd, 0xb5, 0xbe, 0xc2, 0x19, 0xf7, 0xc9, +0xf8, 0xe1, 0xd5, 0x71, 0x2d, 0xc3, 0xe6, 0xb2, 0xf4, 0x9d, 0x6f, 0xb0, 0xbe, 0x73, 0x88, 0x68, +0xa6, 0xd3, 0xea, 0x50, 0x2a, 0x66, 0x8d, 0xe0, 0xa4, 0xf4, 0xb3, 0x47, 0x02, 0xd3, 0xb5, 0xfa, +0x27, 0xd5, 0x7c, 0x34, 0xc8, 0x12, 0xe5, 0x53, 0xf3, 0x76, 0x86, 0x11, 0xf3, 0xc8, 0xf0, 0x63, +0x86, 0x68, 0xb3, 0xb4, 0x49, 0x21, 0x2c, 0x2b, 0xdf, 0xf6, 0x4f, 0x00, 0x26, 0x77, 0x2a, 0x0d, +0x41, 0xb2, 0x60, 0xe0, 0xad, 0xf7, 0x60, 0x81, 0x24, 0xf7, 0x63, 0xa8, 0x38, 0xd1, 0xfb, 0xda, +0xe1, 0x4b, 0x12, 0xdd, 0x59, 0x2d, 0x00, 0x02, 0xb4, 0xdf, 0xb0, 0xde, 0x93, 0xa4, 0x0e, 0x5b, +0x81, 0xa7, 0x02, 0xb7, 0x3e, 0x31, 0x2f, 0x9c, 0x0e, 0xa8, 0x3f, 0x96, 0x8b, 0x65, 0xa8, 0x8e, +0x77, 0xbd, 0xf4, 0xe9, 0x3a, 0x95, 0x7e, 0xd1, 0xc2, 0x81, 0xc4, 0xba, 0x5d, 0x12, 0x06, 0xdf, +0x3e, 0x97, 0x55, 0x03, 0x21, 0x80, 0xf1, 0xe8, 0xfe, 0xf3, 0xe1, 0x5c, 0x88, 0xaf, 0xe7, 0x2d, +0x98, 0x1d, 0xec, 0x37, 0x00, 0x1f, 0x9a, 0x50, 0x92, 0xf9, 0xe6, 0x69, 0x18, 0x38, 0x2f, 0x6c, +0x46, 0x9a, 0xa6, 0xff, 0xa8, 0xbd, 0x14, 0xd0, 0xb2, 0x4e, 0xe6, 0xaa, 0xc0, 0x9a, 0x43, 0xe2, +0xd0, 0x75, 0xdd, 0x41, 0x0f, 0x0e, 0xe1, 0xa2, 0x14, 0x0d, 0x2a, 0xfa, 0x1c, 0xd9, 0xf6, 0xb7, +0xfa, 0xa7, 0x86, 0x38, 0x3c, 0x5e, 0xc6, 0x84, 0x7e, 0xb9, 0xb4, 0x16, 0x51, 0x44, 0xa6, 0xef, +0x07, 0xf7, 0x11, 0x36, 0x13, 0xf8, 0xb8, 0x41, 0x3f, 0x02, 0x12, 0xfe, 0x71, 0x50, 0x57, 0xec, +0x5d, 0xb0, 0x0a, 0xc1, 0x92, 0xb0, 0xee, 0x64, 0x4b, 0x99, 0xe8, 0x53, 0xe9, 0x95, 0xd7, 0x68, +0x27, 0xc5, 0xfc, 0x9e, 0x9c, 0xd4, 0x1f, 0x3e, 0x22, 0xd8, 0x0a, 0xb9, 0xda, 0x58, 0x2e, 0xf0, +0x41, 0x21, 0x57, 0xa7, 0xb2, 0xa6, 0xe6, 0xe4, 0xbe, 0x5c, 0xd8, 0x1c, 0x1e, 0xfc, 0x71, 0xb6, +0xea, 0xc6, 0xe0, 0xeb, 0x1c, 0x47, 0xfa, 0xb8, 0x37, 0xbf, 0x75, 0xa6, 0x5e, 0xcb, 0x87, 0x53, +0x62, 0xe0, 0x53, 0x5f, 0x4e, 0xc8, 0x42, 0x8e, 0xfc, 0x56, 0xe0, 0xa7, 0xba, 0xfc, 0x10, 0x58, +0xcb, 0x6b, 0x65, 0x30, 0xbf, 0x67, 0x3b, 0xb7, 0xe2, 0x93, 0xb4, 0x6b, 0xba, 0x82, 0x62, 0x96, +0x39, 0xe2, 0x35, 0x5c, 0xc7, 0x47, 0xed, 0x0e, 0x7c, 0x98, 0x65, 0x17, 0xe2, 0xb1, 0x1c, 0xcb, +0xf9, 0xf8, 0x3a, 0x9a, 0xaa, 0x31, 0xa1, 0x2c, 0xc3, 0x69, 0xc8, 0xca, 0x94, 0x69, 0x36, 0x1c, +0x1e, 0xa6, 0xa1, 0x17, 0xc0, 0x97, 0x32, 0xba, 0x0a, 0x53, 0x34, 0x6c, 0x64, 0xa9, 0x68, 0x73, +0x4f, 0x0e, 0xa8, 0x73, 0xee, 0x9c, 0x01, 0xe2, 0x1e, 0xe6, 0x32, 0x76, 0x7c, 0x85, 0xdd, 0xe3, +0x82, 0xdc, 0x18, 0xfa, 0x10, 0xa8, 0x7a, 0x1b, 0x16, 0x13, 0xa6, 0xea, 0x85, 0x2c, 0x08, 0xe5, +0xec, 0xb9, 0x03, 0x2b, 0x3c, 0xa0, 0xb8, 0xdc, 0xf6, 0x24, 0x20, 0xc1, 0x30, 0x8e, 0x58, 0x6a, +0xd3, 0x56, 0x6d, 0x45, 0xb7, 0x40, 0xa7, 0xc3, 0x2b, 0x62, 0x64, 0x0c, 0x31, 0x90, 0x90, 0xb5, +0x83, 0x1c, 0x4b, 0xfc, 0x9b, 0xc6, 0x30, 0x23, 0x00, 0x1d, 0x49, 0x7e, 0xe2, 0xab, 0xc3, 0x0d, +0x15, 0x8b, 0xef, 0x97, 0x9f, 0xbd, 0xa2, 0xe4, 0x6d, 0xf7, 0x91, 0x71, 0xf2, 0x4e, 0xeb, 0x4b, +0x03, 0x3f, 0x73, 0x01, 0x59, 0xff, 0x4f, 0x4e, 0x7c, 0x66, 0xcf, 0x24, 0xc4, 0xcf, 0x4d, 0x24, +0x90, 0xcd, 0x38, 0xb0, 0x38, 0xcd, 0x0a, 0xc9, 0x34, 0x41, 0x09, 0x42, 0x1d, 0xe7, 0x75, 0xa8, +0xb2, 0x68, 0x6a, 0xbc, 0x6b, 0x4f, 0x97, 0x10, 0xb3, 0x35, 0x39, 0xf9, 0x32, 0xad, 0x73, 0xff, +0xec, 0x47, 0x00, 0x1d, 0x58, 0x2c, 0x08, 0x12, 0x98, 0xca, 0x20, 0xa3, 0x36, 0x9f, 0xe8, 0x5e, +0x8f, 0xd2, 0x53, 0xc7, 0xae, 0xed, 0x80, 0xdf, 0xfa, 0xbe, 0x3d, 0xa5, 0xff, 0xdf, 0xcb, 0x3e, +0xd6, 0xd1, 0xe6, 0x53, 0x28, 0x47, 0x85, 0x9a, 0xe3, 0x0e, 0x9a, 0x91, 0xa8, 0x1c, 0x31, 0xfa, +0xb8, 0x72, 0xe7, 0xee, 0xd3, 0x71, 0xed, 0x37, 0x1d, 0x8b, 0x63, 0x20, 0x4d, 0x7b, 0xc7, 0xd4, +0x17, 0xd8, 0xe5, 0xd3, 0x90, 0xa8, 0x64, 0x26, 0x19, 0x11, 0xef, 0x83, 0x09, 0x6a, 0xae, 0xb0, +0x3f, 0x8c, 0xcf, 0xc6, 0x44, 0x1c, 0x76, 0xc3, 0xdd, 0xfe, 0x9e, 0x7b, 0x87, 0x33, 0xe6, 0x52, +0x5f, 0x2a, 0x55, 0x1d, 0x25, 0x59, 0xb0, 0x7f, 0x56, 0x9c, 0xe3, 0x5c, 0x5f, 0xe8, 0x2b, 0xcc, +0x1c, 0x45, 0x58, 0xe8, 0x81, 0xbf, 0x18, 0x1d, 0x2b, 0xba, 0x05, 0xbb, 0x83, 0xe9, 0x3e, 0x7e, +0x69, 0x5b, 0xfa, 0x4a, 0x91, 0xd0, 0x8b, 0x68, 0x04, 0xa3, 0x41, 0xe5, 0x86, 0xdf, 0xa6, 0xc1, +0xaa, 0x7e, 0x85, 0x2e, 0xbf, 0xba, 0xc6, 0xe4, 0xcd, 0x59, 0xb1, 0x37, 0x59, 0x8e, 0xe3, 0x23, +0x6d, 0xdd, 0x1a, 0xc5, 0xe5, 0x9b, 0x2d, 0xa8, 0x6c, 0x79, 0xc3, 0x81, 0x47, 0x3c, 0x52, 0x85, +0x79, 0xcf, 0xfd, 0x47, 0x20, 0x6a, 0x99, 0x0d, 0x0f, 0xd7, 0xef, 0x10, 0x4d, 0x49, 0xf3, 0x02, +0xc2, 0xe8, 0x75, 0x75, 0x1b, 0x13, 0xbe, 0x1c, 0x45, 0x47, 0x4b, 0x9f, 0xa8, 0x8f, 0xd3, 0x81, +0x4c, 0x69, 0xfc, 0xa8, 0x9b, 0x6d, 0x18, 0x4a, 0xc4, 0xfc, 0xbb, 0x51, 0x01, 0xc3, 0x3b, 0x6b, +0x4e, 0xeb, 0xe6, 0x2c, 0xe6, 0x50, 0x7b, 0x7f, 0xd2, 0xe8, 0x39, 0xf2, 0x7b, 0xe4, 0x48, 0x84, +0xc4, 0x94, 0x44, 0x82, 0x35, 0xbe, 0xe2, 0xf7, 0x03, 0x8c, 0x7c, 0x45, 0x5c, 0x04, 0xac, 0xe2, +0x28, 0x15, 0xd1, 0xe0, 0x58, 0x98, 0x9b, 0x0a, 0xf1, 0x7e, 0x72, 0xd8, 0xba, 0xa0, 0xfa, 0xf0, +0x74, 0xff, 0x66, 0x1c, 0x86, 0xce, 0x3d, 0x97, 0x9d, 0x8e, 0xf2, 0x4e, 0xbe, 0x2e, 0xf9, 0x8e, +0x8c, 0x04, 0x10, 0x5b, 0xb8, 0x83, 0x2c, 0x4b, 0xb7, 0xab, 0xdc, 0x06, 0xcd, 0x72, 0xe4, 0x9a, +0x74, 0x0e, 0x81, 0x7f, 0xe5, 0x28, 0x13, 0xc4, 0x3b, 0x4b, 0x76, 0xb9, 0xf3, 0x70, 0xfc, 0xf9, +0x68, 0xfc, 0xfd, 0x5d, 0x7d, 0xfa, 0xd8, 0xbd, 0xe1, 0x60, 0x4f, 0x05, 0x11, 0xcf, 0xa4, 0xac, +0xd0, 0x6a, 0xdf, 0xe4, 0xbb, 0x0d, 0xaa, 0x79, 0x25, 0x71, 0x80, 0xeb, 0x90, 0x69, 0x7f, 0xed, +0xac, 0x86, 0x20, 0x6a, 0x75, 0x82, 0x8b, 0xef, 0xd0, 0xe9, 0x70, 0xbd, 0xfe, 0xdf, 0xc7, 0xde, +0xe3, 0x80, 0x97, 0x21, 0x4d, 0xcb, 0xee, 0xa1, 0x3f, 0x5f, 0x79, 0xa7, 0xde, 0x4c, 0xab, 0xfc, +0x02, 0xd4, 0x5e, 0x68, 0x51, 0xf0, 0xc9, 0xc6, 0x57, 0x2a, 0x20, 0xcb, 0x9d, 0x02, 0xb8, 0xc0, +0x76, 0x11, 0xab, 0x4c, 0xb2, 0xe5, 0xe6, 0x42, 0xfa, 0x27, 0xa3, 0xb4, 0x41, 0xbe, 0xc4, 0x55, +0x40, 0xb3, 0xd5, 0x95, 0x11, 0x80, 0x33, 0xaf, 0x9b, 0x9b, 0x5a, 0x94, 0x09, 0xa9, 0xaf, 0x7e, +0xae, 0xd2, 0x11, 0xe3, 0x74, 0x4f, 0xe6, 0xbd, 0xce, 0x8b, 0xd4, 0x9f, 0xd5, 0x76, 0x2a, 0x23, +0x0f, 0x18, 0x96, 0x81, 0x24, 0x6e, 0xff, 0x90, 0x8f, 0xc3, 0x1b, 0x1a, 0xbc, 0x1b, 0x10, 0x3a, +0xeb, 0xd6, 0x21, 0x37, 0x8c, 0xcf, 0x48, 0x48, 0xfa, 0x75, 0xa7, 0x21, 0x2f, 0x75, 0xb5, 0x63, +0x6b, 0x4d, 0xe6, 0x3b, 0xed, 0x9a, 0xcf, 0x0c, 0x1a, 0x20, 0x31, 0xc9, 0x3b, 0x37, 0x99, 0xa4, +0x92, 0xfe, 0x11, 0x90, 0x26, 0xe6, 0x08, 0xbc, 0xd9, 0xd4, 0x93, 0x64, 0x03, 0x6f, 0x1c, 0x63, +0x78, 0x10, 0xe5, 0x3b, 0x56, 0x09, 0xc5, 0x2f, 0x0b, 0x26, 0xad, 0xf2, 0xdb, 0x0f, 0xf1, 0x08, +0x59, 0xcb, 0x01, 0xd7, 0x82, 0x75, 0xcb, 0x5a, 0x63, 0xe2, 0x0b, 0x9d, 0x65, 0x81, 0x9e, 0xe2, +0x08, 0xea, 0x46, 0x2d, 0x2c, 0x84, 0x27, 0x28, 0x5b, 0xe4, 0xd1, 0x3f, 0x29, 0xd8, 0xdd, 0xb3, +0xd3, 0xd2, 0x7d, 0xc0, 0xcf, 0x52, 0x74, 0x19, 0xea, 0xe2, 0x35, 0x0d, 0x42, 0x4b, 0xed, 0x9d, +0x85, 0x7a, 0xf6, 0x73, 0xda, 0x6c, 0xeb, 0x6b, 0xcd, 0xe0, 0x5f, 0x77, 0x49, 0x6f, 0x4f, 0x62, +0xf7, 0x09, 0x11, 0xf1, 0xb0, 0xa9, 0xd6, 0x32, 0x72, 0x39, 0xbe, 0x35, 0x74, 0x6f, 0x24, 0x92, +0x54, 0x2f, 0xa6, 0xd0, 0x53, 0x2e, 0x28, 0x4e, 0x7a, 0x25, 0x6c, 0xa8, 0x39, 0xca, 0x65, 0x72, +0xbe, 0x56, 0x71, 0xd4, 0xab, 0x70, 0x6f, 0xe8, 0xa7, 0x76, 0x4c, 0xc9, 0x8c, 0xa5, 0x44, 0x05, +0x08, 0x8a, 0xdc, 0xf5, 0xd6, 0xff, 0xa2, 0xfc, 0xd8, 0x65, 0xf1, 0xe6, 0xe6, 0x3e, 0xbc, 0x99, +0x57, 0x36, 0x77, 0x91, 0x47, 0xec, 0x90, 0x91, 0x8e, 0x29, 0x84, 0x7e, 0x09, 0x51, 0x4c, 0x28, +0x31, 0x45, 0x17, 0x8b, 0xba, 0xd8, 0x03, 0x96, 0x2b, 0x0a, 0xca, 0x46, 0xc0, 0xb6, 0x3e, 0x49, +0xf0, 0x54, 0xeb, 0x88, 0x23, 0x90, 0x6e, 0x7e, 0x9f, 0xe3, 0x77, 0x0e, 0x65, 0xc2, 0xea, 0xdf, +0x13, 0xfc, 0xe2, 0xb2, 0xe7, 0x38, 0x1d, 0x02, 0x01, 0x07, 0xdb, 0x91, 0x5a, 0x18, 0x92, 0x46, +0x46, 0x46, 0xf4, 0x56, 0x35, 0x16, 0x99, 0xef, 0xd8, 0xb2, 0xa4, 0x8b, 0xd4, 0xbf, 0x68, 0xb0, +0x5e, 0xd2, 0x9e, 0xd7, 0xe7, 0x2d, 0xa1, 0xc3, 0x3c, 0x05, 0x97, 0xf3, 0x1f, 0x1b, 0x2d, 0xe8, +0x78, 0xc7, 0xee, 0xe6, 0x63, 0x69, 0xdd, 0x1d, 0xa7, 0xb1, 0x92, 0xc8, 0x57, 0xe4, 0x76, 0x1a, +0x48, 0x7c, 0xdc, 0xbe, 0xb0, 0x0d, 0x93, 0xf4, 0xa1, 0x66, 0x35, 0xf0, 0xe6, 0x66, 0xf5, 0x37, +0x1d, 0x71, 0xd8, 0x14, 0xb3, 0x4f, 0x4d, 0xa5, 0x69, 0x8e, 0xb7, 0xec, 0x0e, 0xec, 0x56, 0xfd, +0x26, 0x72, 0x87, 0xf1, 0xff, 0xa8, 0x31, 0x3e, 0x54, 0xcc, 0x77, 0xdc, 0x86, 0x3c, 0x4a, 0xaf, +0xb6, 0x23, 0xa5, 0x1e, 0x9a, 0x0b, 0x5c, 0x0e, 0x0d, 0x3e, 0x8e, 0x26, 0x72, 0x2e, 0xba, 0x4e, +0xb2, 0x66, 0xa5, 0x72, 0x1e, 0x6f, 0xbb, 0x5c, 0x22, 0x8e, 0xce, 0xc5, 0xe0, 0x66, 0x2f, 0x9d, +0x8b, 0x46, 0x3d, 0x48, 0x6b, 0xdc, 0xd9, 0x94, 0x19, 0x99, 0xa2, 0x20, 0xf9, 0x48, 0x02, 0xc9, +0xb3, 0x33, 0x3e, 0xda, 0x73, 0x8f, 0xa9, 0x0f, 0x34, 0x44, 0x82, 0x46, 0x16, 0x50, 0x8a, 0x23, +0xae, 0x2d, 0x2c, 0xfd, 0xec, 0x89, 0x23, 0x84, 0x20, 0x53, 0x60, 0xb6, 0x48, 0xdf, 0xe2, 0xa3, +0x0c, 0x78, 0xf2, 0x5c, 0x50, 0x8b, 0xc8, 0x4e, 0xbb, 0x6c, 0x48, 0xb3, 0xe3, 0x93, 0xec, 0x69, +0xd7, 0x28, 0x25, 0x7c, 0xa5, 0xef, 0xda, 0xb4, 0xae, 0x38, 0x4a, 0xb0, 0x8c, 0xe8, 0x6e, 0x3e, +0x60, 0xf4, 0xa8, 0xa6, 0xf5, 0xaf, 0x57, 0x52, 0x1b, 0xd0, 0x8a, 0x04, 0x56, 0x76, 0x32, 0x8f, +0xbe, 0x18, 0xed, 0x6d, 0x6c, 0xdc, 0x59, 0x80, 0x04, 0x42, 0xd8, 0x0b, 0x83, 0x4a, 0x64, 0x88, +0x80, 0xd2, 0x9b, 0x4a, 0x38, 0x27, 0x28, 0x8b, 0xa7, 0x3b, 0x99, 0x13, 0x1d, 0x5a, 0x25, 0xef, +0x71, 0xc2, 0x0b, 0xfe, 0x66, 0x8f, 0x45, 0x24, 0xa7, 0x13, 0x93, 0x77, 0xd9, 0x3d, 0xef, 0x5e, +0x4a, 0xa0, 0x22, 0x7d, 0x3b, 0x4f, 0xba, 0xb6, 0xe3, 0x1a, 0xd2, 0x18, 0xee, 0x6b, 0x4c, 0xa7, +0x99, 0x2f, 0x39, 0x31, 0x49, 0x36, 0xc2, 0x3f, 0x20, 0x05, 0x81, 0xfc, 0x54, 0xd1, 0xbf, 0x15, +0x7c, 0xe1, 0x65, 0xca, 0x90, 0x60, 0xa9, 0xc6, 0xfe, 0xbc, 0x73, 0x32, 0xad, 0xbe, 0xaa, 0x99, +0x38, 0xa8, 0xeb, 0x95, 0xc1, 0xf2, 0xa6, 0xba, 0xb9, 0xda, 0xff, 0x92, 0xd2, 0x05, 0x48, 0x19, +0x57, 0x69, 0x7e, 0x00, 0x42, 0xa9, 0x44, 0xd1, 0x63, 0x80, 0xc8, 0x89, 0xa6, 0x1a, 0x4d, 0x75, +0x5e, 0xbd, 0x60, 0xd9, 0x22, 0xef, 0x6b, 0x4d, 0xcb, 0xa6, 0x93, 0xde, 0x84, 0xbb, 0x06, 0x9d, +0x76, 0x8b, 0x59, 0x56, 0x9f, 0x86, 0xa3, 0xbd, 0x91, 0x8c, 0x2a, 0x21, 0x53, 0x87, 0x40, 0x89, +0xfc, 0x32, 0x67, 0x42, 0xb7, 0xdf, 0xd9, 0xdb, 0xde, 0x66, 0xa0, 0xba, 0xa9, 0x74, 0x84, 0x2e, +0xb9, 0x05, 0xd1, 0x5c, 0x2b, 0xc9, 0x16, 0x55, 0x44, 0xc5, 0x2c, 0xc2, 0xb2, 0xca, 0x97, 0xca, +0x19, 0xc2, 0xa0, 0xa6, 0xda, 0x1c, 0xf3, 0x39, 0x1c, 0xd5, 0x9c, 0x0f, 0x2a, 0xaa, 0x86, 0x3d, +0xee, 0xd9, 0x87, 0x0c, 0x46, 0xed, 0x90, 0x36, 0xf3, 0x7f, 0xf1, 0xd8, 0x52, 0x1f, 0xf6, 0x7f, +0xc0, 0x3c, 0xa3, 0x1e, 0xd8, 0x41, 0xa5, 0xd5, 0x1f, 0x8d, 0xcc, 0x87, 0xc2, 0x93, 0x42, 0x64, +0xba, 0x4a, 0x73, 0x74, 0x82, 0xbf, 0xbc, 0x95, 0xda, 0x3f, 0xdd, 0xbd, 0xb1, 0x5f, 0x94, 0xb9, +0x6a, 0x97, 0x03, 0x77, 0x71, 0xe0, 0xda, 0xc7, 0xcc, 0x69, 0xc8, 0xd7, 0xec, 0x0f, 0x4b, 0x93, +0x35, 0x7f, 0x6a, 0x84, 0xfa, 0x4c, 0x86, 0x99, 0x37, 0xcd, 0xdc, 0x3b, 0x57, 0x16, 0xd1, 0x27, +0x11, 0x9a, 0x96, 0x4f, 0x9c, 0x42, 0xba, 0xd9, 0x29, 0xa3, 0xd7, 0x87, 0xe7, 0x99, 0xe5, 0x0e, +0x92, 0xd8, 0xb8, 0xe5, 0x4f, 0xe5, 0x48, 0x78, 0x2a, 0xe1, 0x1a, 0xaa, 0x76, 0xb7, 0xea, 0x50, +0x1f, 0xd4, 0x7f, 0xf1, 0x6f, 0x17, 0x49, 0x00, 0x35, 0x6b, 0xab, 0x45, 0x6a, 0xc4, 0xc5, 0x8a, +0x4a, 0xa4, 0x03, 0x39, 0xff, 0x62, 0xf3, 0x18, 0x4f, 0x0f, 0xb2, 0xb6, 0x2d, 0x64, 0xe8, 0x6a, +0xf4, 0xc9, 0x19, 0xa8, 0xec, 0xc4, 0x3f, 0x0c, 0xcf, 0x4f, 0x7c, 0x2e, 0xc0, 0x27, 0xe5, 0x7d, +0xcb, 0x1e, 0x41, 0xe5, 0xef, 0xea, 0x2a, 0xd9, 0xd8, 0x58, 0xcb, 0x0b, 0x38, 0x51, 0x6d, 0x7d, +0xd9, 0x6a, 0x89, 0xa9, 0x7e, 0x11, 0xdb, 0xb6, 0x82, 0x55, 0x2d, 0x99, 0x1b, 0x6c, 0x1a, 0x80, +0xca, 0xba, 0x61, 0x43, 0xe5, 0x06, 0x8b, 0x4d, 0xb8, 0x45, 0xe8, 0x60, 0x58, 0xa4, 0x35, 0xb7, +0x57, 0x97, 0x34, 0x77, 0x71, 0xcf, 0x6f, 0xda, 0xac, 0x81, 0xb6, 0xe2, 0x3f, 0x8e, 0x0d, 0xfd, +0x13, 0xa8, 0x5f, 0x53, 0x14, 0xc8, 0x1e, 0x11, 0xa3, 0x9e, 0xa6, 0x08, 0x37, 0x4e, 0xd2, 0x28, +0x7e, 0xf7, 0x45, 0x85, 0x88, 0x8c, 0xf1, 0x7a, 0x04, 0x0f, 0x66, 0xd1, 0x14, 0x26, 0xaf, 0x65, +0x71, 0x88, 0x17, 0x38, 0x85, 0x4c, 0x22, 0xd1, 0x59, 0x00, 0xd6, 0xe0, 0xeb, 0x60, 0x57, 0xd2, +0x0f, 0x10, 0x07, 0xdb, 0x56, 0xc4, 0xdf, 0x3d, 0xc4, 0xe6, 0xfc, 0xdf, 0x39, 0xf1, 0x52, 0xe6, +0xa8, 0x92, 0x1d, 0x5b, 0xec, 0x2e, 0x57, 0xc5, 0xc9, 0x5a, 0x07, 0x61, 0x64, 0x40, 0x91, 0x3f, +0x95, 0x19, 0x05, 0xf4, 0xe7, 0xc9, 0xfd, 0x38, 0x25, 0x1a, 0xf6, 0x42, 0xd6, 0xd8, 0xa6, 0xf9, +0x93, 0x2f, 0x95, 0x20, 0x84, 0x47, 0x15, 0x67, 0x8f, 0xd7, 0xfa, 0xbf, 0x3a, 0x70, 0xba, 0x27, +0xb9, 0x5c, 0x67, 0x21, 0x48, 0x82, 0x4c, 0xaf, 0x4a, 0x6e, 0x8d, 0x98, 0x4b, 0x80, 0x91, 0xa9, +0x42, 0x75, 0xa7, 0xbc, 0x43, 0x70, 0x35, 0x04, 0x0b, 0xb2, 0x54, 0xb8, 0xa0, 0x19, 0x2d, 0xc9, +0xc9, 0x04, 0xfb, 0x83, 0x82, 0xd4, 0xbd, 0xd5, 0x6e, 0xe0, 0xee, 0x7c, 0x82, 0xb2, 0x76, 0xca, +0x63, 0x45, 0xdb, 0xe4, 0xe8, 0x1a, 0x00, 0x43, 0x92, 0x9b, 0x43, 0x61, 0x2c, 0x75, 0x17, 0x49, +0x32, 0x68, 0x70, 0x1e, 0x12, 0x98, 0x0f, 0xe6, 0xe4, 0xde, 0x38, 0x29, 0xeb, 0xe1, 0xf0, 0x97, +0x60, 0x40, 0x8e, 0x88, 0x23, 0x2d, 0x05, 0xfc, 0x0c, 0xbd, 0x73, 0xb2, 0x05, 0x91, 0xbf, 0x72, +0xba, 0x6d, 0x92, 0x63, 0x70, 0x0b, 0x71, 0x49, 0x10, 0x58, 0x45, 0x73, 0x7c, 0x43, 0xcc, 0xbf, +0xd8, 0x31, 0xc9, 0xa3, 0x58, 0x35, 0x1a, 0x9c, 0xc8, 0x41, 0x19, 0xbc, 0x61, 0xe1, 0x46, 0x84, +0x0a, 0x9f, 0x4a, 0xa2, 0xbe, 0x61, 0xa9, 0x6b, 0xe0, 0x2d, 0xea, 0x53, 0xbb, 0xba, 0x8e, 0xec, +0xa8, 0xe2, 0x42, 0xc7, 0x14, 0xe4, 0xc3, 0x14, 0x30, 0x98, 0xfb, 0xdf, 0x87, 0x98, 0x03, 0x87, +0x3f, 0x8c, 0x4a, 0xb9, 0x11, 0x13, 0x78, 0x1b, 0x80, 0x49, 0x32, 0xcf, 0xb1, 0x24, 0x4a, 0x3a, +0x87, 0x24, 0x63, 0x3e, 0xe2, 0x3d, 0x83, 0x7d, 0xa8, 0x3c, 0xd9, 0xda, 0x8b, 0xf3, 0xea, 0x5c, +0x4b, 0xac, 0x74, 0xbd, 0xc7, 0x9f, 0xad, 0xd3, 0x98, 0x86, 0xe8, 0xc9, 0xc6, 0xad, 0x9c, 0x30, +0x2d, 0x96, 0x2b, 0x67, 0x7e, 0x24, 0xa5, 0x98, 0xd9, 0x04, 0x44, 0x9c, 0x65, 0xea, 0x09, 0x63, +0xef, 0xc8, 0x70, 0xef, 0x42, 0xf4, 0x38, 0x68, 0x83, 0xac, 0x4b, 0x08, 0x63, 0xb4, 0x2c, 0x2c, +0xe2, 0x73, 0x77, 0x28, 0x35, 0x94, 0xbf, 0x3b, 0x78, 0xde, 0xe9, 0x21, 0xbb, 0x0b, 0x4a, 0x99, +0xd9, 0x65, 0x56, 0x45, 0xa6, 0x9a, 0x38, 0x16, 0xb4, 0x00, 0xc4, 0x4b, 0xf8, 0x57, 0x8a, 0xf9, +0x54, 0xd1, 0x8e, 0xf2, 0x56, 0xf2, 0x8c, 0xe6, 0xb0, 0xb6, 0x43, 0x4f, 0x39, 0x6d, 0x7e, 0xb6, +0x0e, 0x45, 0x2c, 0x38, 0x7e, 0x94, 0x40, 0xf0, 0x34, 0x4d, 0x96, 0xd9, 0xdd, 0xe3, 0xc3, 0x84, +0x8c, 0x1f, 0xd9, 0xb3, 0xc0, 0x5d, 0x21, 0x33, 0x2a, 0x96, 0x45, 0xb1, 0x42, 0xe8, 0x1b, 0x56, +0x8d, 0xf5, 0xed, 0x97, 0x4b, 0x5d, 0x13, 0xe3, 0xe5, 0x53, 0xba, 0x52, 0x43, 0xa4, 0x15, 0xd4, +0x46, 0xfe, 0x46, 0x8e, 0x84, 0x40, 0x83, 0x98, 0x2f, 0x49, 0x56, 0xae, 0xd5, 0x22, 0x50, 0x1b, +0xa0, 0x38, 0x22, 0x6b, 0xcb, 0xa6, 0xfa, 0x9a, 0x43, 0x1c, 0x59, 0x64, 0x1f, 0x8e, 0x70, 0xbf, +0x76, 0x59, 0x2d, 0x09, 0x14, 0x5c, 0xee, 0xd1, 0xec, 0x00, 0x17, 0x57, 0x9a, 0x26, 0xb4, 0x9f, +0xe3, 0xfe, 0x87, 0x14, 0xce, 0xcb, 0x2b, 0x34, 0x35, 0x37, 0x1b, 0xac, 0x85, 0x04, 0x74, 0x1f, +0x78, 0x2b, 0xaa, 0x10, 0x24, 0xfc, 0xf9, 0xd9, 0x2c, 0x29, 0x3f, 0x93, 0xab, 0x0a, 0x1d, 0x62, +0x44, 0xcc, 0xdf, 0xea, 0x07, 0x86, 0xf7, 0x61, 0xc7, 0xe7, 0xdf, 0x7c, 0xe0, 0xde, 0x0d, 0x61, +0xe4, 0x45, 0x90, 0xac, 0x13, 0x96, 0x8d, 0xed, 0xfa, 0x40, 0xc9, 0x17, 0x2d, 0xc2, 0xca, 0x36, +0x48, 0x34, 0xdd, 0xd4, 0xbf, 0x17, 0xc3, 0xa0, 0xa4, 0x07, 0x68, 0xea, 0x40, 0x7d, 0xd3, 0x4d, +0x59, 0xbd, 0xe5, 0x3b, 0xdd, 0x22, 0xdf, 0x71, 0xed, 0x01, 0xa9, 0x9d, 0x21, 0xa5, 0xf2, 0xba, +0xef, 0x01, 0xdd, 0x18, 0xa2, 0xac, 0xca, 0xbd, 0x63, 0x1f, 0x55, 0x65, 0xa0, 0x99, 0x95, 0x92, +0x98, 0x3a, 0xe6, 0xf3, 0xf3, 0xec, 0x9c, 0xcd, 0x64, 0xed, 0x8b, 0x42, 0x16, 0xff, 0xc4, 0xaf, +0xf2, 0xcb, 0x9b, 0x1a, 0x4e, 0xfa, 0xda, 0x14, 0x62, 0xa8, 0xbc, 0x85, 0x4e, 0xf9, 0x0d, 0xbf, +0x2f, 0xad, 0x56, 0x57, 0x83, 0xa3, 0x32, 0xdb, 0xef, 0xe0, 0xb6, 0x31, 0x93, 0xef, 0x7c, 0x54, +0x3b, 0x60, 0x56, 0xfe, 0xaf, 0x62, 0x0b, 0x33, 0xa9, 0x80, 0xd9, 0x5f, 0x14, 0x9b, 0x00, 0x61, +0x7f, 0xfa, 0x14, 0x1d, 0xb0, 0x2f, 0xec, 0x14, 0x9b, 0x5e, 0xc7, 0x03, 0xf3, 0x53, 0x4b, 0x53, +0xa7, 0x2e, 0xf2, 0xa5, 0x2d, 0xec, 0x58, 0xac, 0x5f, 0x37, 0x61, 0xb6, 0x57, 0x8c, 0x74, 0x50, +0xb8, 0xa7, 0x6f, 0xec, 0x16, 0x40, 0xf8, 0x34, 0x0a, 0x69, 0x29, 0xcf, 0x79, 0x01, 0x05, 0xaf, +0xd4, 0x8d, 0xb8, 0x04, 0xe7, 0x81, 0x9b, 0x67, 0xa1, 0x85, 0xec, 0x2b, 0xc9, 0x9c, 0xa9, 0x90, +0x77, 0xa6, 0x66, 0x1c, 0x95, 0x3c, 0x66, 0x2b, 0x4d, 0x99, 0xbe, 0x3b, 0x76, 0x12, 0x1e, 0x44, +0x29, 0x57, 0xb3, 0x60, 0x2c, 0xd7, 0xca, 0xcd, 0x46, 0x5f, 0xf2, 0xba, 0x24, 0xfc, 0x56, 0x6f, +0xe7, 0xe3, 0x51, 0x26, 0x29, 0x49, 0xc5, 0x6e, 0xfc, 0x4c, 0xfb, 0x39, 0x4e, 0xf4, 0x63, 0xcc, +0x2a, 0xb6, 0xfd, 0xc1, 0xea, 0x87, 0x06, 0x2b, 0x30, 0xed, 0x6f, 0x06, 0x15, 0x5e, 0x6f, 0x99, +0x41, 0xd4, 0x06, 0xdf, 0xf3, 0x68, 0x66, 0xa1, 0xf6, 0xd4, 0x45, 0x31, 0x61, 0xce, 0xd2, 0x2d, +0xc1, 0x75, 0x9f, 0x8b, 0x65, 0xb7, 0x5c, 0xa4, 0x02, 0x5e, 0x16, 0x91, 0x20, 0x7a, 0xe6, 0xc8, +0xdb, 0xd4, 0x7e, 0x91, 0x6a, 0x19, 0xc3, 0xbc, 0x04, 0x3b, 0x2a, 0x72, 0x15, 0x69, 0x5e, 0xd8, +0xf7, 0x78, 0xb4, 0x87, 0x36, 0x0e, 0x2e, 0xb2, 0xf7, 0xa2, 0x0f, 0x52, 0x31, 0x8f, 0x48, 0x0d, +0xf3, 0xf9, 0xad, 0xdc, 0x58, 0xdd, 0xfd, 0xc4, 0xdb, 0x1a, 0xef, 0x81, 0x81, 0x11, 0x1c, 0xbb, +0x60, 0x22, 0x0d, 0x75, 0x1a, 0x9f, 0x86, 0x1b, 0xd4, 0x4e, 0x1b, 0xb4, 0x91, 0x2d, 0x0a, 0xa8, +0x21, 0xd4, 0x57, 0x7c, 0x8f, 0x14, 0xa5, 0x9b, 0x23, 0x35, 0x2c, 0x5b, 0xdc, 0x34, 0x3c, 0x87, +0x79, 0x24, 0x73, 0x00, 0x85, 0xf5, 0x5f, 0x42, 0x1c, 0xb5, 0xbc, 0xae, 0xf9, 0x80, 0x9c, 0x48, +0x81, 0x6c, 0x1b, 0x80, 0xd6, 0x60, 0xf6, 0x47, 0x23, 0xd8, 0x55, 0x31, 0x4a, 0xa6, 0x34, 0x4f, +0xf4, 0x2d, 0xf7, 0x52, 0xff, 0x9c, 0xe4, 0x4f, 0xf4, 0xbc, 0x7b, 0x77, 0x7d, 0xf5, 0xef, 0x45, +0x7e, 0x4a, 0x27, 0x4a, 0xde, 0xed, 0x2b, 0x5d, 0x30, 0xd4, 0x0b, 0x6c, 0xab, 0xa3, 0x94, 0x1e, +0x5b, 0xd8, 0xe3, 0x6f, 0xa7, 0x7f, 0x23, 0xb2, 0xcc, 0x54, 0xda, 0xb1, 0xec, 0xaa, 0x78, 0xf8, +0xb8, 0x11, 0x9b, 0x5b, 0xc4, 0x29, 0xe0, 0x34, 0xf7, 0xde, 0xd2, 0x86, 0x6a, 0x3a, 0x1e, 0x96, +0xe4, 0x96, 0x33, 0xa7, 0x99, 0xb9, 0x9c, 0xf6, 0xb5, 0xc9, 0x17, 0xbc, 0x5b, 0x7b, 0x41, 0x43, +0xb0, 0xc9, 0x48, 0xe3, 0x1d, 0xd7, 0x0b, 0x74, 0xe8, 0x32, 0x48, 0x12, 0x76, 0x76, 0x96, 0x78, +0x11, 0x18, 0xe6, 0xbb, 0xb2, 0xf7, 0x6c, 0x6c, 0x7b, 0xd8, 0x8a, 0xcc, 0x9d, 0x26, 0xe1, 0x8f, +0xc2, 0x44, 0x89, 0xe8, 0xf4, 0xbd, 0xe0, 0x8d, 0xf8, 0x9a, 0x24, 0xa2, 0x5d, 0xd4, 0xee, 0x6d, +0x5d, 0xef, 0xd3, 0x2f, 0x6a, 0xa1, 0xb3, 0xbf, 0x4c, 0xd3, 0x90, 0xf9, 0xc2, 0xc0, 0xb4, 0x78, +0x80, 0x3e, 0x35, 0x37, 0x19, 0x63, 0xb8, 0x4c, 0x5b, 0xd1, 0xef, 0x45, 0x4c, 0xf6, 0x0d, 0x78, +0x3c, 0xa6, 0xdc, 0x74, 0x2d, 0x88, 0x2b, 0xce, 0xc2, 0x4b, 0x75, 0x82, 0x2a, 0x95, 0xdc, 0xd4, +0x64, 0x87, 0x88, 0x38, 0x82, 0x37, 0x5a, 0xed, 0x10, 0xba, 0xf6, 0xf0, 0xbf, 0xce, 0x24, 0x53, +0xf3, 0xdc, 0x58, 0x97, 0x73, 0xb6, 0x31, 0xca, 0x08, 0x99, 0x81, 0x72, 0xf3, 0x55, 0x95, 0x1a, +0x91, 0x68, 0xf5, 0x33, 0x08, 0x7a, 0x94, 0x84, 0x4e, 0x5c, 0x75, 0x56, 0x5f, 0x3b, 0x81, 0xe1, +0xa8, 0xbe, 0x7a, 0x59, 0x60, 0xc9, 0x57, 0xa9, 0xc0, 0xc0, 0xff, 0xb9, 0x95, 0x16, 0x52, 0xa5, +0xb9, 0x58, 0xb6, 0x67, 0xcd, 0x5f, 0x10, 0xbe, 0xb1, 0x06, 0x49, 0x69, 0x0c, 0x59, 0xbd, 0x1e, +0xd6, 0x24, 0xe9, 0x05, 0xc8, 0xed, 0x47, 0x36, 0xb3, 0x81, 0x97, 0xb4, 0xdb, 0xd9, 0x17, 0x79, +0x7f, 0x2c, 0x94, 0x12, 0x18, 0xcd, 0xed, 0x8e, 0x64, 0xbf, 0x37, 0x93, 0xd0, 0x68, 0x33, 0x66, +0xb0, 0x90, 0xd9, 0x2a, 0x91, 0x83, 0xed, 0xc1, 0xa2, 0xf0, 0x6c, 0x40, 0x7b, 0xfa, 0x52, 0x2e, +0x25, 0x67, 0x40, 0xf8, 0x61, 0x66, 0xc9, 0x8d, 0x01, 0x08, 0xbb, 0xb0, 0x06, 0xc4, 0xd5, 0xa5, +0xc8, 0x84, 0x99, 0xa0, 0x09, 0x74, 0xe4, 0x90, 0x1c, 0xec, 0x15, 0x41, 0xb1, 0xe7, 0xbb, 0x34, +0xc0, 0xae, 0x59, 0x4b, 0x2d, 0x89, 0xda, 0x73, 0xf1, 0x16, 0xe6, 0x5e, 0xd2, 0x6f, 0x9e, 0xdb, +0x78, 0xda, 0x6c, 0x9d, 0xef, 0xa5, 0xe9, 0x01, 0x24, 0x76, 0xb7, 0xf9, 0xb9, 0x4a, 0x06, 0x27, +0x77, 0x4a, 0xd5, 0xa4, 0x84, 0xbd, 0x7a, 0x61, 0xc1, 0x83, 0xf6, 0xc3, 0xe9, 0x4e, 0xcd, 0x7e, +0x8a, 0xbb, 0xc8, 0x7b, 0x8b, 0x93, 0x51, 0x94, 0x61, 0x8c, 0x47, 0x96, 0x8a, 0x37, 0x21, 0x93, +0x35, 0x90, 0x18, 0x5e, 0x0f, 0xcd, 0x81, 0x41, 0x38, 0xe0, 0xc2, 0x62, 0xdd, 0xf7, 0xce, 0x04, +0xfc, 0x2a, 0x3a, 0x50, 0xe9, 0x76, 0x6d, 0x04, 0xce, 0xe5, 0x4d, 0x73, 0xf5, 0xdc, 0x6c, 0x41, +0x26, 0x14, 0x2a, 0x1a, 0x2f, 0x57, 0x95, 0xe5, 0x68, 0x89, 0x5f, 0xff, 0xa6, 0xb2, 0x7b, 0xfd, +0x10, 0x6c, 0xc6, 0xda, 0xe1, 0x75, 0xde, 0xb2, 0x46, 0xa2, 0xd4, 0x8d, 0x72, 0xfc, 0x0f, 0xc5, +0x32, 0xb3, 0xe6, 0xdc, 0x00, 0x4a, 0x73, 0xdc, 0xcd, 0xcb, 0x93, 0x00, 0x7d, 0xc9, 0x00, 0x22, +0x50, 0xf8, 0x6f, 0xac, 0x6b, 0xd9, 0x12, 0xca, 0x46, 0xda, 0xef, 0x1b, 0x08, 0x5b, 0x8c, 0x42, +0x03, 0x92, 0x62, 0x3e, 0xc4, 0x27, 0xab, 0xfa, 0x63, 0xea, 0x1e, 0x93, 0x08, 0x8c, 0x1f, 0xc0, +0x2f, 0x06, 0xfe, 0x8c, 0x67, 0x67, 0xf6, 0xcf, 0x6f, 0x8d, 0x9f, 0x64, 0x98, 0x87, 0x07, 0x92, +0x5e, 0x54, 0x77, 0x50, 0x03, 0xff, 0xc0, 0x8e, 0xc7, 0x9e, 0x5d, 0x33, 0x83, 0x11, 0x5a, 0xeb, +0xfa, 0x59, 0xd5, 0xc8, 0x93, 0xe1, 0x90, 0x9e, 0xe1, 0x87, 0x89, 0x2a, 0xb2, 0x04, 0x80, 0xba, +0xb6, 0x39, 0x3b, 0x4c, 0x73, 0x26, 0x67, 0x1c, 0x7e, 0xf7, 0x90, 0x30, 0x1e, 0xec, 0xf6, 0x97, +0x62, 0xb5, 0x92, 0xb1, 0x7e, 0xe4, 0x66, 0x52, 0x74, 0x2d, 0x13, 0x5c, 0xae, 0xe7, 0x5d, 0x45, +0x2f, 0x22, 0x84, 0x54, 0x7b, 0x84, 0xb7, 0x31, 0x1a, 0xcc, 0x3a, 0xe9, 0xb8, 0x0f, 0xf7, 0x56, +0x80, 0xf7, 0x2b, 0x0a, 0x12, 0x64, 0xd0, 0x36, 0x05, 0xae, 0x27, 0x7f, 0x66, 0x2a, 0x39, 0xa5, +0xc3, 0x01, 0xce, 0x28, 0x60, 0xb9, 0xa1, 0xc4, 0x54, 0x96, 0x5c, 0x72, 0x7e, 0x71, 0x9f, 0xdb, +0x64, 0xcd, 0x6d, 0xd5, 0x85, 0x69, 0xa0, 0x8c, 0x3c, 0x1e, 0x20, 0xae, 0xae, 0x04, 0x8d, 0x9e, +0x0d, 0xab, 0x40, 0x64, 0xc5, 0xe3, 0x1a, 0x03, 0x85, 0x64, 0xbd, 0x12, 0x93, 0x01, 0x97, 0x05, +0x0c, 0x4a, 0x8a, 0xc0, 0x59, 0x78, 0x03, 0x84, 0x67, 0x45, 0x8e, 0x4f, 0xdb, 0xa4, 0xb5, 0x70, +0x34, 0x71, 0x0a, 0x4e, 0x71, 0xae, 0x97, 0xc2, 0x9e, 0x8f, 0xbc, 0x10, 0xce, 0x5f, 0x41, 0x69, +0x42, 0x51, 0xce, 0x30, 0xf9, 0x55, 0x6d, 0xbc, 0xcd, 0x4c, 0x90, 0xa7, 0xfb, 0x32, 0x58, 0x4d, +0x02, 0x16, 0x2d, 0x35, 0x3f, 0x5d, 0x1c, 0xe9, 0xa4, 0x4a, 0x1b, 0x14, 0xc7, 0x96, 0x93, 0xaf, +0x1b, 0xc0, 0x10, 0xd8, 0x2e, 0x9e, 0x0c, 0x20, 0x42, 0xf4, 0xfb, 0x7c, 0xef, 0xa3, 0x69, 0x01, +0xe9, 0xe5, 0xa5, 0xe0, 0x91, 0xb9, 0x9a, 0xd8, 0x76, 0xbe, 0xba, 0xfb, 0xfc, 0xdc, 0x21, 0x5b, +0x8e, 0x8d, 0x42, 0x46, 0xb1, 0xc0, 0x2d, 0x76, 0x3e, 0x43, 0x0d, 0x85, 0x42, 0x31, 0x80, 0xff, +0xe9, 0xf1, 0xcb, 0x6d, 0x4f, 0x51, 0x2e, 0x64, 0x97, 0xb9, 0xe7, 0x00, 0x37, 0xc5, 0x09, 0x50, +0xa4, 0xea, 0x74, 0x72, 0xcb, 0x09, 0xe1, 0xa1, 0x38, 0xe8, 0xae, 0x49, 0x35, 0x85, 0x86, 0xe5, +0x9c, 0x2a, 0xaf, 0x18, 0x4a, 0xf3, 0xe9, 0x7f, 0x22, 0x19, 0x2f, 0x68, 0xfa, 0xf4, 0xcf, 0xb2, +0x14, 0xc3, 0x65, 0x42, 0x10, 0xee, 0xc5, 0xa6, 0xc8, 0xde, 0xe9, 0xdf, 0xaf, 0xdd, 0xf9, 0x82, +0x0d, 0xa3, 0x68, 0x21, 0x1d, 0x1f, 0x34, 0xab, 0x40, 0x7e, 0x5e, 0x5c, 0x82, 0x6f, 0xe0, 0xa5, +0xa4, 0x47, 0xf0, 0x4e, 0x2f, 0x9b, 0x8d, 0xea, 0x78, 0x93, 0x05, 0xb1, 0xb4, 0x59, 0x7f, 0xd3, +0x85, 0x5b, 0xc3, 0x84, 0xd1, 0x1f, 0xd3, 0x8e, 0xe1, 0x51, 0x49, 0x5c, 0x99, 0xe1, 0xa1, 0xf4, +0x56, 0x56, 0xb1, 0x8c, 0x4e, 0x54, 0xe5, 0x54, 0x39, 0xa7, 0xf8, 0x70, 0x66, 0x36, 0x68, 0x2a, +0x00, 0x84, 0x3a, 0x15, 0xb9, 0x39, 0x9f, 0xe6, 0x15, 0xac, 0xbf, 0x2b, 0x97, 0xc6, 0xcc, 0x67, +0x97, 0xa0, 0xd9, 0xb5, 0x3a, 0x4f, 0x0e, 0xc1, 0x31, 0x9f, 0x4b, 0x71, 0x2e, 0x74, 0x07, 0x4b, +0xc2, 0xb4, 0x3e, 0x18, 0x2a, 0x39, 0x3f, 0x61, 0x58, 0x89, 0x3b, 0xdf, 0x06, 0xc1, 0x21, 0x3d, +0x38, 0x16, 0x75, 0x76, 0x66, 0x08, 0x72, 0x03, 0x42, 0x7d, 0xa6, 0xe5, 0x6c, 0x6a, 0x40, 0x69, +0x85, 0x5e, 0x7d, 0x52, 0xaf, 0x5d, 0x6c, 0x6d, 0xad, 0xad, 0xd2, 0x03, 0xff, 0x41, 0xd6, 0x38, +0x90, 0xd8, 0x3f, 0xe5, 0x74, 0xf8, 0x17, 0x93, 0xa9, 0x2b, 0x7e, 0x9d, 0x6d, 0x0a, 0x83, 0x89, +0x94, 0x1a, 0xee, 0xac, 0xad, 0x49, 0x3e, 0xe8, 0x73, 0xb3, 0xca, 0x46, 0x44, 0x3f, 0x90, 0x0e, +0xe6, 0x20, 0x9d, 0x26, 0x12, 0xd1, 0x8f, 0xa2, 0xae, 0x49, 0xb3, 0x57, 0x9d, 0x6b, 0xdc, 0x93, +0x03, 0x62, 0x60, 0x39, 0x78, 0x8a, 0x95, 0x5c, 0xc4, 0xa5, 0x7d, 0x12, 0x00, 0xbc, 0x8e, 0x0e, +0x3e, 0x94, 0xe7, 0x02, 0xa9, 0xdd, 0xf3, 0x0d, 0xe9, 0x28, 0x2a, 0xfd, 0x83, 0x21, 0xa1, 0x81, +0x9a, 0x81, 0x41, 0xbb, 0x46, 0xab, 0xa5, 0x49, 0xe6, 0x27, 0xec, 0xd6, 0x06, 0x2c, 0xac, 0xfd, +0x3f, 0xe8, 0xf6, 0xc1, 0x35, 0xba, 0x45, 0x47, 0x21, 0x1d, 0x50, 0x72, 0x0a, 0xb9, 0x04, 0x6b, +0x67, 0x26, 0xc0, 0x83, 0x9d, 0x13, 0x5e, 0xca, 0x04, 0x99, 0xcb, 0x6a, 0xff, 0xd6, 0x7e, 0x15, +0x26, 0x77, 0x3f, 0x7d, 0xe3, 0xb1, 0xe0, 0x4e, 0xfc, 0x13, 0xc3, 0xb2, 0x92, 0x50, 0x4a, 0x77, +0x77, 0x68, 0x23, 0x1e, 0xa1, 0x09, 0xd5, 0xa0, 0xd1, 0x38, 0x42, 0xca, 0x8e, 0x49, 0xc1, 0x50, +0xfd, 0xa3, 0xcc, 0x4d, 0xe0, 0x32, 0xa3, 0x90, 0xc8, 0x71, 0xb6, 0xc0, 0x79, 0xd9, 0x44, 0xa5, +0x57, 0xc4, 0xe3, 0x24, 0xc7, 0x2f, 0x79, 0xb1, 0xfe, 0x8e, 0x1c, 0x32, 0x75, 0x4f, 0x93, 0xfe, +0x3f, 0x80, 0x58, 0xcc, 0x14, 0x56, 0x00, 0x4f, 0x97, 0x43, 0x89, 0x09, 0xb5, 0x32, 0x5b, 0x13, +0xd0, 0x87, 0x34, 0x16, 0x24, 0x20, 0x8c, 0x70, 0x84, 0x5c, 0x70, 0x83, 0x32, 0x7e, 0x32, 0x3d, +0x3c, 0xcd, 0x5c, 0xc6, 0xcf, 0xb0, 0xef, 0xb7, 0x1a, 0x7e, 0x05, 0xe3, 0xfb, 0x90, 0x57, 0x30, +0xcd, 0xfc, 0x5d, 0xd7, 0xf7, 0xe5, 0x22, 0x98, 0x7d, 0xbf, 0x23, 0xf4, 0x46, 0xe6, 0x5f, 0x34, +0x98, 0x83, 0xa1, 0x4d, 0x20, 0x10, 0x38, 0xcb, 0xd4, 0x01, 0x65, 0xba, 0x23, 0x61, 0xe3, 0xf8, +0xa6, 0x06, 0xb5, 0xef, 0xca, 0x40, 0xf5, 0xa8, 0xd8, 0x13, 0x97, 0x80, 0xb5, 0xcf, 0x04, 0x9a, +0x50, 0xad, 0x67, 0xf9, 0x2b, 0xa9, 0x83, 0x3e, 0x72, 0x85, 0x88, 0x31, 0xf5, 0xca, 0x08, 0x08, +0xb6, 0xc4, 0xc4, 0x8d, 0xc5, 0xe5, 0x62, 0x08, 0xe9, 0xf1, 0x67, 0x0f, 0x96, 0xb7, 0x12, 0x64, +0xf2, 0x07, 0x28, 0xa0, 0x33, 0x74, 0x75, 0xce, 0xb7, 0x6f, 0x8c, 0xe1, 0x69, 0x71, 0xfb, 0x50, +0xc1, 0x14, 0x8d, 0x98, 0xa2, 0x02, 0x94, 0x69, 0x04, 0xd5, 0xc8, 0x7e, 0xb3, 0x8a, 0x08, 0xe7, +0x78, 0xaa, 0xf9, 0xd9, 0x98, 0xc1, 0x4a, 0xc4, 0xdc, 0xc0, 0x63, 0x09, 0x54, 0x45, 0x15, 0xa2, +0x99, 0x6d, 0x33, 0x79, 0x65, 0xf7, 0xb8, 0xf5, 0x30, 0x66, 0xda, 0x53, 0x2b, 0x14, 0xce, 0x3b, +0x8b, 0xda, 0x87, 0xf1, 0x47, 0x0f, 0x01, 0xc7, 0x1c, 0x48, 0x29, 0x3c, 0x38, 0x6b, 0x43, 0x71, +0x36, 0x85, 0x85, 0x2f, 0xb0, 0xed, 0xf2, 0x8f, 0xc6, 0x8f, 0x00, 0xa5, 0x5b, 0x79, 0x0b, 0x1d, +0x35, 0x42, 0x77, 0xbe, 0x4d, 0x4b, 0x43, 0x62, 0x67, 0xec, 0xd7, 0x8c, 0x02, 0xa3, 0x07, 0x29, +0x25, 0xd9, 0xec, 0xfd, 0x28, 0x36, 0xf4, 0x0c, 0x9e, 0x2e, 0xc2, 0x78, 0x8f, 0xad, 0xf1, 0xff, +0x74, 0xe1, 0xc6, 0xd9, 0x38, 0x7e, 0x39, 0x95, 0x5e, 0x6e, 0xbe, 0x02, 0x22, 0x4e, 0xcc, 0x16, +0x14, 0x91, 0x9f, 0xe8, 0x87, 0x64, 0x11, 0xdf, 0x47, 0x72, 0x20, 0x27, 0x74, 0x10, 0x19, 0xba, +0x7b, 0x6b, 0xec, 0xfe, 0xfa, 0xf1, 0x64, 0x1b, 0x08, 0xd9, 0xe6, 0x8c, 0xdd, 0x60, 0x52, 0x57, +0x31, 0x37, 0x1c, 0x41, 0xa8, 0xbf, 0x63, 0xd4, 0x58, 0x89, 0x84, 0xcd, 0x75, 0x92, 0x4c, 0xc4, +0xe3, 0xb6, 0xad, 0x91, 0x32, 0xa9, 0xa2, 0x5b, 0xc5, 0xe9, 0x18, 0x9f, 0x81, 0xfb, 0xf3, 0xce, +0xe0, 0x6d, 0x4e, 0xf3, 0x50, 0x38, 0xf5, 0x9f, 0x94, 0xf5, 0x27, 0x26, 0x06, 0x57, 0x31, 0x85, +0xa5, 0x7b, 0xae, 0x55, 0x26, 0xea, 0x3f, 0x9e, 0xe5, 0x15, 0x62, 0xe0, 0x96, 0x82, 0x06, 0xa2, +0xa4, 0x4c, 0x9c, 0x4a, 0x59, 0x88, 0x95, 0x2f, 0x60, 0x26, 0x54, 0xf2, 0x99, 0x9d, 0x81, 0xb8, +0x18, 0x50, 0x17, 0x45, 0x06, 0x8a, 0xcd, 0x70, 0x86, 0x9d, 0x24, 0xbc, 0x9a, 0xe4, 0x7c, 0x54, +0x84, 0x48, 0xc6, 0xf6, 0x27, 0x84, 0xbe, 0xef, 0xd7, 0x99, 0xb4, 0xf1, 0x96, 0x9a, 0x50, 0x16, +0xce, 0x50, 0xa8, 0x8d, 0xfa, 0x9f, 0x9b, 0x99, 0xe1, 0x86, 0xda, 0xa0, 0x52, 0x5d, 0x41, 0x0e, +0xee, 0x6d, 0xe5, 0xc6, 0x69, 0xf2, 0xb1, 0x83, 0xc2, 0x60, 0x4f, 0xdd, 0xd7, 0xcb, 0x81, 0x2b, +0x53, 0x10, 0x60, 0x66, 0x8e, 0x60, 0xa8, 0xc2, 0x51, 0x5f, 0x6e, 0x5d, 0x52, 0x0f, 0xe6, 0x53, +0x07, 0xa1, 0x6d, 0x21, 0x69, 0x85, 0x2b, 0x25, 0x5c, 0x66, 0xd9, 0x76, 0x54, 0x3f, 0x2b, 0x73, +0x41, 0x6a, 0x08, 0x6d, 0x75, 0xa3, 0xec, 0xa5, 0x81, 0x4e, 0x64, 0x53, 0xc7, 0xa4, 0xa5, 0xcb, +0xea, 0x25, 0x6c, 0xc7, 0xdd, 0xd0, 0xd2, 0xd9, 0x44, 0x59, 0xff, 0x36, 0x75, 0x1a, 0xfd, 0xb4, +0xdf, 0xe3, 0xca, 0x07, 0x16, 0xd2, 0x9c, 0xd9, 0x9b, 0x8d, 0x96, 0x09, 0xfb, 0x43, 0x31, 0xed, +0xb9, 0x72, 0x78, 0x7d, 0x4b, 0x21, 0xce, 0x22, 0xe5, 0xf8, 0x0c, 0xea, 0x1c, 0x46, 0xbe, 0x33, +0x4e, 0x62, 0x35, 0x2c, 0xec, 0xb1, 0x94, 0x96, 0x8a, 0x2e, 0x73, 0x03, 0xe1, 0xef, 0x8d, 0xea, +0xe7, 0x9b, 0x5d, 0x02, 0xe8, 0x1c, 0xe3, 0x0a, 0x78, 0xbc, 0x60, 0xad, 0x7c, 0xb1, 0xce, 0xb4, +0x92, 0x17, 0xad, 0x3a, 0x70, 0x5f, 0x63, 0xfa, 0xbe, 0x84, 0x8e, 0x9f, 0xfc, 0x6a, 0x72, 0x5e, +0x93, 0x42, 0x03, 0x05, 0x09, 0x3a, 0xde, 0xd3, 0xf0, 0xbc, 0x02, 0x2c, 0x9e, 0xab, 0x0b, 0xa6, +0x33, 0xa2, 0xaa, 0xeb, 0x81, 0xfe, 0xd3, 0x92, 0x17, 0x09, 0x85, 0xe5, 0xf4, 0xa6, 0x6d, 0x95, +0x54, 0xd2, 0xc8, 0x57, 0x52, 0x2b, 0xb5, 0x40, 0x3e, 0xe9, 0x60, 0x57, 0x49, 0x43, 0xd9, 0x40, +0xee, 0x79, 0xbe, 0x95, 0x34, 0x36, 0x34, 0xa5, 0x45, 0x58, 0x8c, 0xbc, 0x48, 0x44, 0x88, 0x73, +0x5d, 0xec, 0xa0, 0xce, 0x60, 0x63, 0x8b, 0x11, 0xed, 0x24, 0x76, 0x7d, 0x62, 0x51, 0x69, 0x03, +0x35, 0x15, 0xe1, 0x07, 0x30, 0x42, 0xb3, 0xde, 0xca, 0xdd, 0xdb, 0x99, 0x4e, 0xfb, 0x5a, 0x8b, +0xa3, 0x17, 0x7e, 0x7b, 0x24, 0x3e, 0xb7, 0x6e, 0x7d, 0xf4, 0x76, 0x0e, 0x23, 0x11, 0x79, 0x53, +0x57, 0x49, 0x7f, 0xf5, 0x9d, 0x92, 0x76, 0x63, 0x80, 0xe3, 0x1b, 0x4b, 0xcf, 0xcf, 0x37, 0xb8, +0xfb, 0x6f, 0xf9, 0x1c, 0xef, 0xbc, 0x57, 0x20, 0x0e, 0xd8, 0xc7, 0x70, 0xad, 0x43, 0xa9, 0xed, +0xd0, 0xb7, 0x0b, 0x27, 0x6f, 0x00, 0x34, 0xbe, 0x19, 0xbe, 0x4b, 0x93, 0xf5, 0x7a, 0x76, 0x38, +0x09, 0x75, 0xdc, 0x5b, 0x8b, 0x4b, 0xc3, 0xab, 0xe8, 0x1d, 0xee, 0x38, 0x01, 0x4e, 0xb5, 0x48, +0xaa, 0x09, 0x0d, 0x31, 0x7a, 0xa3, 0x7c, 0x81, 0xc5, 0x57, 0xb3, 0x94, 0xfe, 0x8c, 0xb4, 0xef, +0xd2, 0x2b, 0x99, 0x46, 0x33, 0x15, 0x5d, 0x68, 0x09, 0x24, 0xd6, 0xc0, 0xfb, 0x65, 0xee, 0xbb, +0x38, 0xaa, 0xb3, 0xd0, 0x3d, 0x78, 0xfc, 0xc8, 0xb9, 0x43, 0xa5, 0xad, 0x47, 0x94, 0x9f, 0x8b, +0x5f, 0x14, 0x8b, 0x33, 0x8a, 0xd5, 0x25, 0xfe, 0x2b, 0x98, 0x50, 0xa3, 0xe0, 0x53, 0xc5, 0x50, +0xd2, 0xe4, 0xe5, 0x10, 0x5e, 0xdc, 0xec, 0x6c, 0xde, 0xe1, 0xf3, 0x89, 0xae, 0x19, 0x7c, 0x44, +0x36, 0xc8, 0x79, 0x7f, 0xe0, 0xd5, 0x21, 0xa1, 0xe3, 0x61, 0x6d, 0xf4, 0x8e, 0x09, 0x42, 0x86, +0x43, 0x56, 0xff, 0xf4, 0x7c, 0xfb, 0xad, 0xa6, 0xa7, 0x26, 0x53, 0xdb, 0x55, 0xb8, 0xff, 0xe3, +0x41, 0x33, 0xe6, 0x33, 0xfe, 0xf7, 0x90, 0x24, 0xfb, 0x1f, 0x57, 0x06, 0xc3, 0x14, 0xc9, 0x09, +0x78, 0x17, 0x10, 0xc4, 0xb0, 0x52, 0x8e, 0x81, 0x15, 0xb8, 0x2e, 0x78, 0x9e, 0xa3, 0x0c, 0x38, +0x2f, 0xe6, 0x58, 0xf9, 0xb4, 0x36, 0x7e, 0xad, 0x31, 0x56, 0xe8, 0xe4, 0x3f, 0x44, 0x68, 0x4d, +0xe7, 0x24, 0xf7, 0x2e, 0xcb, 0x76, 0x30, 0xda, 0x52, 0x11, 0x85, 0xff, 0x6c, 0x91, 0x0d, 0x4d, +0xf8, 0x9d, 0x7d, 0x84, 0x72, 0xd7, 0x7c, 0xf9, 0x70, 0xde, 0x5c, 0x9e, 0x81, 0x20, 0x0a, 0x92, +0x59, 0x46, 0x2e, 0x02, 0xa1, 0xc8, 0x3b, 0xe2, 0x2c, 0xe3, 0xf0, 0x7d, 0xbe, 0xc2, 0xf9, 0xdd, +0xec, 0xef, 0x92, 0x80, 0x86, 0x5d, 0x57, 0x83, 0x74, 0x46, 0x93, 0x4b, 0x7d, 0x9e, 0x85, 0xd6, +0xdd, 0xe8, 0xae, 0x92, 0x4a, 0x23, 0x33, 0x6f, 0x2f, 0x37, 0x5d, 0xe2, 0x39, 0x5f, 0x6c, 0xc0, +0xf3, 0x24, 0xf0, 0x0e, 0x48, 0x9b, 0xc4, 0x16, 0x67, 0xfc, 0x73, 0x16, 0xb0, 0xd0, 0x2a, 0x66, +0x9f, 0xb5, 0x0b, 0x0b, 0x79, 0x9c, 0x3b, 0xa8, 0xee, 0xee, 0x91, 0xe7, 0xcd, 0x41, 0xad, 0xcb, +0xf9, 0x28, 0xa0, 0x30, 0xc6, 0x34, 0x04, 0x3c, 0xc3, 0xfc, 0x02, 0x3b, 0x6e, 0x0f, 0x24, 0xe6, +0x9b, 0xa0, 0xcf, 0xf6, 0xf0, 0x6b, 0x9f, 0x3d, 0xc1, 0x4a, 0x6b, 0xe3, 0x2a, 0xa6, 0x8f, 0x95, +0x27, 0xba, 0x73, 0x4a, 0xb9, 0xb5, 0x1e, 0xba, 0x34, 0xd5, 0x9c, 0xe6, 0xd0, 0xcc, 0x3c, 0x6d, +0xed, 0x85, 0x1d, 0xc2, 0x3c, 0x93, 0xfa, 0x40, 0x6f, 0x11, 0x33, 0x7c, 0x70, 0x36, 0x24, 0x42, +0x56, 0x8b, 0x70, 0xe9, 0x08, 0x71, 0xaa, 0x65, 0x28, 0x6d, 0xa5, 0x7d, 0x59, 0x59, 0xc8, 0x51, +0x27, 0x91, 0x9d, 0x58, 0x54, 0xd2, 0xdf, 0xf9, 0xf2, 0x52, 0xc2, 0x5a, 0x0b, 0xbe, 0xe8, 0xbe, +0xfb, 0xba, 0x1e, 0x42, 0x0e, 0x7c, 0xd7, 0x6c, 0x04, 0xe2, 0x3a, 0x28, 0x2e, 0xad, 0x1e, 0x13, +0x93, 0x68, 0x2a, 0x70, 0x9b, 0x55, 0x55, 0x40, 0x0b, 0x14, 0xcb, 0x38, 0xe5, 0x08, 0x8d, 0x5a, +0xce, 0x41, 0x33, 0xe7, 0x36, 0xe7, 0x12, 0x75, 0x8c, 0xaf, 0xe4, 0x6a, 0xe6, 0xd0, 0xe2, 0x0c, +0x6d, 0x2d, 0x8c, 0x6a, 0xa0, 0x79, 0xe1, 0x32, 0xe7, 0x2a, 0xc7, 0x96, 0xca, 0x40, 0xee, 0x8e, +0x78, 0xc0, 0xbf, 0xad, 0xd0, 0x84, 0xf8, 0x7b, 0x6a, 0x49, 0x4a, 0x0c, 0xcc, 0xd1, 0x01, 0x86, +0xea, 0x20, 0x20, 0x7d, 0x14, 0x89, 0x6d, 0x1e, 0x30, 0x67, 0x30, 0x16, 0x48, 0xf2, 0x89, 0x1a, +0x1b, 0xb6, 0xe8, 0xdf, 0x5f, 0x4e, 0x4a, 0x29, 0xac, 0xea, 0x07, 0x6b, 0x1e, 0xf8, 0xe4, 0xc3, +0x59, 0x25, 0x5e, 0x7b, 0xb3, 0x10, 0x93, 0x0d, 0x6f, 0x76, 0x1c, 0x2d, 0x07, 0xc6, 0xfa, 0x5b, +0xf7, 0x3a, 0xba, 0x2e, 0xbb, 0xe7, 0xdf, 0x0c, 0xff, 0x2e, 0x65, 0x66, 0x2a, 0x8e, 0x48, 0xc1, +0x1e, 0xae, 0xfd, 0x14, 0xc2, 0x4f, 0x30, 0xc3, 0xd6, 0x28, 0x0a, 0x37, 0xfb, 0xfd, 0x3d, 0xe7, +0x0d, 0x56, 0x74, 0xfa, 0x8a, 0xbd, 0x9e, 0x29, 0x19, 0x21, 0x5b, 0xe5, 0x92, 0xd3, 0xd7, 0x86, +0x13, 0xf9, 0x45, 0x42, 0x8b, 0x9e, 0x12, 0x00, 0x2b, 0x99, 0xb2, 0x24, 0x10, 0x55, 0x55, 0x54, +0x61, 0x8a, 0x79, 0x0b, 0x80, 0x1c, 0xd1, 0xc1, 0x29, 0xa2, 0x63, 0x94, 0xee, 0xa9, 0x01, 0x42, +0x16, 0xef, 0x89, 0x1c, 0xb1, 0xf8, 0x58, 0xc1, 0x05, 0x84, 0xa4, 0xd2, 0x86, 0xfb, 0xbb, 0xae, +0xb8, 0x2c, 0xd7, 0x67, 0xdd, 0xa6, 0xee, 0x1a, 0x01, 0xbf, 0x2e, 0x10, 0x84, 0xa4, 0x14, 0xcc, +0x6d, 0x65, 0x80, 0x6c, 0x71, 0x5f, 0xea, 0x92, 0xe9, 0xc7, 0x84, 0x14, 0x27, 0xd4, 0x20, 0x04, +0x4b, 0xbf, 0x2e, 0x5c, 0x45, 0xcc, 0x2b, 0x47, 0x3a, 0xf3, 0xfc, 0x53, 0xcd, 0x7f, 0xec, 0x61, +0xb3, 0x9d, 0x01, 0x75, 0x6a, 0x16, 0x3f, 0x91, 0xe9, 0xf9, 0x60, 0x46, 0xc1, 0xa2, 0x2c, 0x79, +0x4e, 0x88, 0xbd, 0x2d, 0x75, 0x0a, 0xfd, 0x1d, 0xaa, 0x03, 0xd2, 0x18, 0xa7, 0xb5, 0xa7, 0xbb, +0xb8, 0x5e, 0x37, 0x34, 0x9b, 0x95, 0x43, 0x79, 0x69, 0x2e, 0x98, 0x86, 0x1f, 0xec, 0x5e, 0x2c, +0x72, 0x3b, 0xc1, 0x61, 0xb4, 0x60, 0xfe, 0xdb, 0xd0, 0xb0, 0x68, 0x76, 0x4f, 0xb7, 0xad, 0x1d, +0x71, 0xe5, 0x2f, 0xa4, 0x3b, 0xb8, 0x1b, 0x2c, 0x97, 0xf9, 0x2e, 0xad, 0x18, 0xf2, 0xfe, 0x3a, +0x21, 0xb1, 0x01, 0x35, 0x77, 0x26, 0xb7, 0x3d, 0xd5, 0xa6, 0xe4, 0x1a, 0xef, 0x23, 0x0e, 0xa0, +0x42, 0x16, 0x3c, 0x7b, 0xa9, 0x60, 0xc6, 0x00, 0x37, 0x78, 0x08, 0x68, 0x18, 0xaa, 0xb1, 0xd8, +0x76, 0x21, 0x32, 0x9c, 0x5f, 0xee, 0x07, 0xfe, 0x27, 0x24, 0xfa, 0x57, 0xfd, 0xf5, 0x3c, 0xff, +0x0e, 0x1e, 0xae, 0x7d, 0xd9, 0x44, 0x9d, 0x25, 0xaa, 0x60, 0x57, 0x76, 0x44, 0x97, 0x61, 0x82, +0xb8, 0x72, 0x9b, 0xac, 0xc6, 0xeb, 0x15, 0xbd, 0xef, 0xb3, 0xeb, 0x0e, 0x30, 0xf3, 0xdc, 0xc4, +0x5d, 0x3d, 0x89, 0xe9, 0xa0, 0x59, 0x02, 0x92, 0x40, 0x17, 0x97, 0x7f, 0x61, 0x90, 0xfe, 0x85, +0xa3, 0x07, 0x11, 0xfc, 0x8b, 0x3a, 0x21, 0xc5, 0x6e, 0x4b, 0x0c, 0x37, 0x76, 0xa6, 0xf3, 0x56, +0xc6, 0x42, 0xed, 0xa7, 0x6a, 0x8e, 0x5f, 0x64, 0xd1, 0x8e, 0xe7, 0xd2, 0x05, 0xcc, 0x09, 0xaa, +0x08, 0x44, 0x5a, 0x0c, 0xf6, 0xfe, 0xde, 0xea, 0x77, 0x3a, 0xf8, 0xc5, 0x57, 0xd0, 0xbd, 0xe5, +0xea, 0x09, 0x0d, 0x9c, 0xde, 0xb3, 0x97, 0x6f, 0x02, 0x18, 0x7f, 0x27, 0x95, 0xd1, 0x3e, 0x47, +0xb0, 0x87, 0x01, 0x0b, 0xc7, 0xbe, 0x04, 0x72, 0xf4, 0x57, 0xac, 0xd9, 0xe2, 0x89, 0x84, 0x18, +0xc9, 0x41, 0x33, 0xaa, 0xde, 0x8c, 0x6f, 0xc1, 0xb9, 0x70, 0xe8, 0x26, 0x90, 0x67, 0x8e, 0xc7, +0x9f, 0x21, 0x63, 0x5a, 0xbc, 0x36, 0x7f, 0xa7, 0x5f, 0x53, 0xa4, 0xc5, 0xba, 0x58, 0x70, 0x23, +0x47, 0x56, 0xac, 0xd7, 0x57, 0x5b, 0x56, 0x51, 0xcb, 0xbd, 0x22, 0x27, 0x8e, 0x01, 0x69, 0xf3, +0xbc, 0xdc, 0x6e, 0x3a, 0xf4, 0x2e, 0x10, 0xcc, 0x14, 0x36, 0xbb, 0x81, 0x69, 0x1e, 0xb5, 0x7b, +0x9b, 0x4a, 0x7b, 0x5e, 0x07, 0xea, 0xac, 0x06, 0x64, 0x55, 0x81, 0x5f, 0x7b, 0xcf, 0xe3, 0x0c, +0x43, 0x83, 0x9f, 0xe1, 0x49, 0x5f, 0x3d, 0x38, 0x8d, 0x89, 0x7a, 0x2e, 0x7e, 0xf5, 0x90, 0x11, +0x67, 0x06, 0x9a, 0x41, 0xc7, 0xb7, 0x7f, 0x1f, 0xbb, 0xce, 0x00, 0xfd, 0x78, 0xd4, 0xf1, 0xd9, +0xd2, 0xd7, 0x01, 0x5e, 0x59, 0x3f, 0x8e, 0x9e, 0x64, 0x6b, 0xdd, 0x0e, 0x2b, 0xc1, 0xbc, 0x7a, +0x26, 0xd8, 0xa6, 0x18, 0x6e, 0x10, 0x48, 0x0d, 0xba, 0xbc, 0xb9, 0x42, 0x4b, 0x40, 0x82, 0x1c, +0xf8, 0x36, 0x80, 0x05, 0xa5, 0x19, 0x7e, 0xd9, 0x95, 0xe8, 0x13, 0xa1, 0xad, 0xcd, 0x4a, 0x52, +0x3b, 0x76, 0x8b, 0xe5, 0xa2, 0x61, 0x23, 0x73, 0xd8, 0x65, 0xe6, 0x4b, 0xf5, 0xae, 0x53, 0x91, +0x83, 0x73, 0xa5, 0xd3, 0xd4, 0xa8, 0xe8, 0xe0, 0xc3, 0xc0, 0x3b, 0x6c, 0x76, 0x1c, 0x53, 0xda, +0x8a, 0x56, 0xd4, 0xf1, 0x65, 0x24, 0x08, 0x97, 0x22, 0x1e, 0x75, 0xd2, 0xc4, 0xd8, 0xab, 0x2e, +0xce, 0x57, 0xc3, 0x85, 0xee, 0xf9, 0x39, 0xec, 0x39, 0x0a, 0xd1, 0xd4, 0x91, 0xc9, 0x09, 0x0d, +0xf6, 0xe3, 0x46, 0x06, 0x3e, 0xc2, 0x37, 0x79, 0xb1, 0xa7, 0x63, 0x2d, 0xcb, 0x78, 0x2f, 0x35, +0x46, 0xbb, 0x24, 0xfb, 0x7f, 0xd1, 0x2d, 0xea, 0x33, 0xd3, 0x44, 0x97, 0x0f, 0xe9, 0x1c, 0x6d, +0x0f, 0xbc, 0x68, 0xec, 0x3a, 0xbe, 0xb3, 0x35, 0x46, 0x4a, 0x86, 0x07, 0x59, 0xc0, 0x79, 0xef, +0x3b, 0xd5, 0x66, 0x97, 0xec, 0x28, 0x0f, 0x13, 0x1c, 0xcc, 0x00, 0x7c, 0xd6, 0x92, 0x77, 0x67, +0x1b, 0x90, 0x17, 0xb6, 0x94, 0x7a, 0xcc, 0x17, 0xda, 0xb4, 0xc6, 0x63, 0xfd, 0xd4, 0xd2, 0x51, +0x2e, 0x36, 0xdf, 0x71, 0xfa, 0x88, 0xbb, 0x36, 0xb5, 0x53, 0xc9, 0x2f, 0xbe, 0x4c, 0x8c, 0x59, +0xcf, 0xa1, 0xf8, 0x1c, 0x13, 0x72, 0xa6, 0xf3, 0x99, 0x64, 0x32, 0xd4, 0x74, 0xbb, 0x73, 0x5c, +0x8a, 0xdd, 0x93, 0xe4, 0x2c, 0x82, 0xb3, 0xe0, 0x56, 0xe6, 0xf2, 0xb8, 0x34, 0xaf, 0x9e, 0x9d, +0x06, 0xd0, 0x7f, 0xdb, 0xea, 0xb1, 0xa1, 0xad, 0x29, 0x90, 0x81, 0xfa, 0x74, 0xc1, 0x1b, 0x4b, +0xd5, 0x82, 0xf3, 0xa9, 0xe3, 0xb4, 0xd6, 0x5c, 0xfc, 0x91, 0x8b, 0xfa, 0xd3, 0x3c, 0x56, 0x3f, +0x30, 0x80, 0x47, 0x32, 0x07, 0x59, 0xf1, 0x7f, 0x3d, 0xd5, 0x58, 0x95, 0x7f, 0xda, 0x09, 0xb0, +0xbf, 0xe1, 0x5d, 0xa5, 0x4b, 0x3a, 0x5e, 0x23, 0x14, 0x1c, 0xc6, 0xea, 0x65, 0x9e, 0x1a, 0x41, +0xf8, 0xb0, 0x02, 0x27, 0xcb, 0x3e, 0x05, 0x22, 0x94, 0xa6, 0xc5, 0xea, 0x9a, 0x48, 0x21, 0x21, +0x17, 0xef, 0x21, 0x3d, 0x6c, 0x6a, 0x53, 0xe0, 0x56, 0xdc, 0xaa, 0x45, 0x55, 0xeb, 0x8f, 0x4b, +0xd0, 0x38, 0x51, 0x51, 0x95, 0x91, 0x3e, 0x9c, 0xfa, 0x2b, 0x37, 0x79, 0x85, 0xc5, 0x0b, 0xb6, +0xbf, 0x49, 0xcd, 0x63, 0x03, 0x8f, 0x95, 0x16, 0x14, 0x18, 0x5d, 0xd5, 0xa0, 0xa8, 0x0e, 0x57, +0xf1, 0xaf, 0xa6, 0x4e, 0x86, 0xd2, 0xd7, 0xab, 0x8c, 0x58, 0xe6, 0x63, 0x18, 0x3a, 0x8d, 0x1f, +0xd8, 0x07, 0xf5, 0xaf, 0x73, 0x21, 0x8b, 0xb9, 0xb7, 0x3d, 0xca, 0xa2, 0x0b, 0x91, 0x66, 0xd0, +0x7d, 0x41, 0x2d, 0x6d, 0x2e, 0xb5, 0x9d, 0xf1, 0x91, 0xf6, 0x13, 0x63, 0x70, 0xd1, 0x78, 0x10, +0xe1, 0x82, 0x67, 0x24, 0xc1, 0x2b, 0x3a, 0x9a, 0xa7, 0x99, 0x22, 0xc2, 0x14, 0x70, 0x64, 0xca, +0x9d, 0x56, 0x70, 0x2f, 0x56, 0x2c, 0x16, 0x2e, 0xa7, 0xcc, 0x77, 0x5b, 0xb9, 0x73, 0x17, 0x64, +0x51, 0x35, 0xc9, 0xd9, 0xd2, 0x3c, 0x3c, 0x04, 0x53, 0xe4, 0x51, 0xa3, 0xd0, 0xca, 0x86, 0x3c, +0xd1, 0x21, 0xc2, 0x43, 0xf8, 0x87, 0x61, 0xcf, 0x43, 0x1c, 0xd4, 0x00, 0x2a, 0xc2, 0x68, 0xed, +0x4e, 0x1d, 0x3a, 0xdc, 0x82, 0xf8, 0x63, 0xa4, 0xbc, 0xbc, 0x28, 0xab, 0x93, 0xdb, 0xa0, 0x73, +0xd6, 0xf2, 0x1a, 0xbd, 0x86, 0x5d, 0x66, 0x9f, 0xeb, 0x14, 0x5c, 0x30, 0x0e, 0x21, 0x72, 0x28, +0xfe, 0x08, 0x91, 0xe4, 0x61, 0x86, 0xcb, 0xa1, 0x8b, 0x84, 0xb4, 0xc2, 0xe9, 0x05, 0xbb, 0x96, +0x85, 0xb1, 0xff, 0x82, 0x5f, 0xd7, 0x30, 0xd7, 0xac, 0xe5, 0xcf, 0x24, 0x03, 0xa6, 0x96, 0x36, +0xf5, 0x4a, 0xaa, 0x3b, 0xf7, 0xf6, 0x29, 0xd9, 0x7a, 0x77, 0x6b, 0xe4, 0x8c, 0x88, 0x96, 0x79, +0xc7, 0x16, 0x54, 0x29, 0x76, 0xdf, 0xc4, 0xd0, 0xe9, 0xc4, 0x96, 0xce, 0x8f, 0x59, 0xd2, 0x29, +0x6e, 0xc4, 0x8c, 0xa9, 0x19, 0xc4, 0x8b, 0xff, 0x4e, 0xc8, 0x46, 0xf7, 0xd1, 0x06, 0x0e, 0x6a, +0x8f, 0x95, 0x1f, 0xe4, 0x2d, 0x3f, 0xdd, 0x9b, 0xc0, 0xc8, 0xb5, 0x04, 0xba, 0x1c, 0x47, 0x67, +0x07, 0x40, 0xd7, 0x70, 0x1f, 0x82, 0xbf, 0xe4, 0x14, 0x5a, 0xe9, 0x97, 0x28, 0xff, 0xd1, 0xa0, +0xd8, 0xcd, 0x4e, 0x4d, 0xa0, 0x67, 0x77, 0x50, 0xf1, 0x2d, 0x75, 0x24, 0xcd, 0x93, 0x49, 0x01, +0x4a, 0xcb, 0x09, 0x42, 0x6d, 0x28, 0x42, 0x44, 0x19, 0x22, 0x8d, 0xbd, 0x53, 0xf7, 0xc9, 0x48, +0xd4, 0x9e, 0xd0, 0x46, 0xa2, 0x74, 0x0a, 0xa6, 0x72, 0x26, 0x8e, 0x35, 0x3a, 0x2d, 0x26, 0x02, +0x15, 0xac, 0x4a, 0x05, 0x69, 0xaf, 0x3d, 0x76, 0xec, 0x7c, 0x8b, 0x30, 0x51, 0xb9, 0x80, 0x97, +0x79, 0x0a, 0x37, 0x01, 0x5a, 0xa3, 0xd2, 0xf8, 0x5e, 0xb7, 0x54, 0x77, 0x92, 0x49, 0x77, 0x3c, +0xcb, 0x83, 0x62, 0xc9, 0xde, 0xcb, 0xd3, 0x81, 0x6c, 0xda, 0x1d, 0x38, 0x30, 0xe7, 0x2b, 0x34, +0xfc, 0xcb, 0x38, 0x07, 0xc0, 0xfa, 0xcc, 0xc0, 0xb2, 0x3a, 0xca, 0xde, 0xa2, 0x02, 0x33, 0x34, +0xf9, 0xe4, 0xe6, 0x5f, 0x2b, 0x55, 0x9f, 0xde, 0xc7, 0x2c, 0xe8, 0xfd, 0xe0, 0x46, 0xa4, 0xab, +0x01, 0xbf, 0xee, 0x7e, 0x8f, 0x4b, 0x06, 0x56, 0xfb, 0x58, 0x9f, 0x52, 0x32, 0xae, 0xde, 0xe4, +0x02, 0xe9, 0x01, 0xae, 0xd5, 0x2e, 0xaa, 0x5f, 0x6f, 0x1a, 0x0d, 0x57, 0xea, 0x5c, 0xb2, 0x92, +0xdf, 0xc3, 0xa8, 0x63, 0x2f, 0x98, 0x8c, 0x10, 0x9e, 0x30, 0x4d, 0x1f, 0x37, 0x88, 0x7b, 0x6a, +0x63, 0xb6, 0x12, 0xe9, 0x4e, 0x7d, 0x82, 0x6c, 0x2b, 0xf8, 0xd7, 0x7b, 0x40, 0x4f, 0x31, 0xe0, +0x4a, 0x01, 0x04, 0x38, 0x58, 0x4d, 0xcf, 0x59, 0xa0, 0x46, 0x64, 0x24, 0x8a, 0x14, 0x0e, 0xed, +0x67, 0xb8, 0x09, 0xd4, 0x7f, 0x64, 0xf3, 0x3b, 0x23, 0x89, 0xa4, 0xe5, 0xa4, 0x06, 0x08, 0x08, +0x87, 0x54, 0x1e, 0x08, 0x78, 0x23, 0x47, 0x81, 0xe4, 0x90, 0xbd, 0x5c, 0xb6, 0x25, 0x14, 0x57, +0x28, 0x19, 0x66, 0x3d, 0xa2, 0xaa, 0x72, 0x57, 0x24, 0x87, 0xdf, 0x75, 0x19, 0x31, 0x41, 0xaa, +0x67, 0x9c, 0x44, 0xb5, 0xff, 0x7d, 0xe7, 0x4d, 0xda, 0xec, 0xf2, 0xb3, 0xb7, 0x92, 0x50, 0x9b, +0xc2, 0x61, 0x43, 0x6b, 0x63, 0x3c, 0x1e, 0x31, 0x1e, 0xeb, 0xe5, 0x61, 0xab, 0x6b, 0x44, 0x7c, +0x08, 0xf9, 0xf5, 0x42, 0x0e, 0x98, 0x4a, 0x1f, 0xc7, 0x69, 0xd7, 0x6a, 0x64, 0x5a, 0x82, 0xd0, +0x4e, 0xa0, 0xf7, 0xe1, 0x2e, 0x22, 0x3f, 0xea, 0x69, 0xd3, 0x66, 0x8c, 0xf5, 0x38, 0xc6, 0x82, +0xbf, 0xdd, 0xd0, 0x91, 0x2b, 0xe2, 0x89, 0x08, 0x85, 0xfc, 0xbf, 0x3f, 0xc6, 0x5c, 0x1d, 0xcf, +0xb4, 0xc3, 0x24, 0x73, 0x5c, 0x9e, 0x76, 0x83, 0x20, 0xc2, 0xf2, 0x2a, 0x87, 0x49, 0x0d, 0x3c, +0x89, 0x2f, 0xc5, 0xdc, 0x7b, 0x72, 0x32, 0xef, 0xf2, 0xa1, 0x9c, 0x4a, 0xeb, 0x9e, 0xb7, 0xce, +0x10, 0x35, 0x6b, 0x76, 0xce, 0x9d, 0x09, 0xdf, 0x66, 0x20, 0xc2, 0x76, 0xa8, 0x83, 0xc4, 0xde, +0x6e, 0xc5, 0x5d, 0xb3, 0x05, 0x5d, 0xda, 0xfd, 0x8e, 0x1b, 0xda, 0xbe, 0x9a, 0xf4, 0xbf, 0x5d, +0x79, 0x98, 0x5a, 0x8c, 0x08, 0x4e, 0xbb, 0x55, 0x4d, 0x9c, 0x69, 0xda, 0xd5, 0x32, 0x07, 0x95, +0x1f, 0x16, 0xa2, 0xe1, 0xca, 0xd8, 0x97, 0x92, 0xd8, 0x40, 0xba, 0x90, 0x44, 0x6b, 0x06, 0x69, +0xe9, 0x0a, 0x33, 0x60, 0xc7, 0xe6, 0x9a, 0x7e, 0x2c, 0x73, 0x13, 0xf6, 0xd5, 0x27, 0xde, 0x00, +0x0d, 0x6c, 0x1f, 0x9f, 0x96, 0x23, 0x44, 0xf3, 0xdc, 0xa1, 0xed, 0x2f, 0xec, 0xcf, 0xb6, 0xfb, +0xb2, 0x96, 0x6e, 0x72, 0xb5, 0x1d, 0x2a, 0x29, 0x08, 0x38, 0x29, 0x78, 0xc6, 0x9f, 0x63, 0x30, +0xdc, 0xb6, 0x86, 0x1e, 0xc6, 0xc0, 0x32, 0xdf, 0x27, 0xde, 0x1f, 0x93, 0x1f, 0xf1, 0x7d, 0xaf, +0x35, 0x20, 0x37, 0x83, 0xc0, 0x93, 0x2b, 0xe0, 0x0d, 0xb2, 0x39, 0x89, 0x23, 0x27, 0x2d, 0xa7, +0x38, 0xb9, 0x5a, 0x14, 0xb4, 0xb7, 0x58, 0x5a, 0x57, 0x44, 0x12, 0x0a, 0x97, 0x04, 0xf3, 0x71, +0x9a, 0x35, 0xa9, 0x2b, 0xc1, 0xe6, 0x9a, 0x22, 0x2e, 0x86, 0xd9, 0x90, 0xae, 0xd9, 0xee, 0xe4, +0x26, 0xab, 0x23, 0x15, 0x5d, 0x5a, 0x9a, 0x4e, 0x17, 0xcc, 0xb8, 0x8a, 0x54, 0x9d, 0xb4, 0x3c, +0xe2, 0x7c, 0xbb, 0xce, 0xda, 0x03, 0x00, 0xcc, 0xcf, 0xf4, 0x8b, 0xa8, 0x45, 0x74, 0x61, 0xac, +0xe3, 0xb1, 0x75, 0x03, 0x57, 0x9a, 0x56, 0x61, 0x2d, 0x89, 0x41, 0x5d, 0x2c, 0x9c, 0x0a, 0xcc, +0x05, 0x87, 0x87, 0xfa, 0xde, 0x22, 0xda, 0x2b, 0xc7, 0xa1, 0x6d, 0x49, 0x9e, 0x93, 0x0d, 0xb6, +0xc9, 0xbd, 0xc0, 0x9d, 0x1a, 0x5d, 0xfe, 0x29, 0xc4, 0xe2, 0xad, 0xbe, 0x7c, 0x7c, 0x5d, 0x90, +0x65, 0x82, 0x16, 0xaf, 0xf5, 0x66, 0x4c, 0x10, 0x2b, 0x99, 0xf6, 0x9e, 0x80, 0xae, 0xe5, 0x50, +0x64, 0xd4, 0x0b, 0xb9, 0x17, 0x5b, 0x28, 0x43, 0xaf, 0x55, 0x09, 0x5a, 0x85, 0x1e, 0x2a, 0x1d, +0x91, 0x52, 0x13, 0xf5, 0xcd, 0xc8, 0xc8, 0x6a, 0x43, 0xd0, 0x94, 0xe9, 0x9b, 0xfa, 0xe6, 0x89, +0x67, 0xc3, 0x16, 0xf9, 0x37, 0x5b, 0xeb, 0xed, 0xcc, 0xeb, 0xbd, 0x3d, 0x3b, 0x0c, 0xac, 0x44, +0x90, 0xdf, 0xe9, 0x2d, 0x23, 0x26, 0xdb, 0x32, 0x20, 0xac, 0xda, 0xbf, 0xfc, 0xb6, 0x83, 0x4d, +0xa5, 0x1c, 0x67, 0xd9, 0x16, 0xed, 0xde, 0x8a, 0xc6, 0x04, 0x86, 0x09, 0xf8, 0xc6, 0xc1, 0x2e, +0xa5, 0xa1, 0xb7, 0xa0, 0x57, 0xcb, 0x2b, 0xc7, 0x49, 0x06, 0xb0, 0xa0, 0x5c, 0x55, 0xbb, 0x79, +0xc5, 0x14, 0xdf, 0x28, 0xfa, 0xcb, 0xd0, 0xfa, 0x31, 0x36, 0x57, 0x04, 0x7b, 0xb9, 0x23, 0x4c, +0x5d, 0x20, 0xb4, 0x20, 0x50, 0xa0, 0xa4, 0xfb, 0xee, 0x61, 0x03, 0x64, 0x56, 0x75, 0x59, 0x30, +0xaa, 0x68, 0x00, 0x53, 0xaa, 0x5a, 0x54, 0x14, 0x0d, 0x8c, 0x6b, 0x10, 0xe4, 0x60, 0x3b, 0xef, +0xf8, 0xed, 0xfb, 0x24, 0x4c, 0x1e, 0xfa, 0x22, 0x86, 0x42, 0xa6, 0x53, 0x59, 0xf0, 0xbc, 0x59, +0xe3, 0x9e, 0x12, 0x72, 0xef, 0x4e, 0xcc, 0x72, 0xab, 0x66, 0xfd, 0xe2, 0x01, 0xa6, 0x8d, 0xe7, +0x0f, 0x8b, 0xb3, 0x26, 0x82, 0x61, 0x39, 0x30, 0x63, 0x0e, 0xc9, 0xde, 0x2d, 0x71, 0xf9, 0x36, +0x51, 0x12, 0x62, 0x20, 0xec, 0xc2, 0x4a, 0x85, 0xef, 0x59, 0xb8, 0x07, 0x8c, 0x27, 0x85, 0xcf, +0x5d, 0x1d, 0x24, 0x8e, 0x49, 0xed, 0x48, 0xcf, 0x35, 0xa2, 0x86, 0x1d, 0x06, 0x68, 0x62, 0xcf, +0xa5, 0x53, 0xdc, 0xe5, 0xbf, 0x85, 0xc8, 0x1a, 0xfe, 0x9b, 0x6b, 0x76, 0xf0, 0x06, 0x76, 0x41, +0x1d, 0x19, 0x13, 0x44, 0xac, 0xff, 0xf6, 0xa8, 0xdb, 0xb0, 0xb5, 0xe1, 0xdf, 0x85, 0x1e, 0x68, +0xd2, 0xe6, 0xa5, 0x37, 0x64, 0x97, 0x96, 0xb4, 0x2e, 0x01, 0x1a, 0x10, 0x2f, 0xa4, 0x0e, 0x20, +0xe7, 0x75, 0x36, 0x24, 0x5a, 0xa9, 0x25, 0xd9, 0xf0, 0xf4, 0x17, 0xfd, 0xbe, 0x0d, 0x32, 0x06, +0xa2, 0x56, 0x0f, 0xbf, 0xda, 0x25, 0x7d, 0x12, 0x79, 0xd9, 0x5e, 0xa1, 0x47, 0x31, 0x49, 0x3f, +0x48, 0x21, 0x95, 0x8d, 0xeb, 0x84, 0x3b, 0x56, 0x23, 0x32, 0x85, 0xef, 0xf7, 0xd3, 0xb3, 0xe4, +0xb6, 0x43, 0x0f, 0x50, 0x2e, 0xc1, 0x9a, 0x91, 0x0d, 0x8e, 0x24, 0x94, 0x82, 0xb3, 0x3e, 0x9e, +0x91, 0x7e, 0x05, 0x18, 0xeb, 0x45, 0x39, 0xf9, 0xf6, 0x64, 0x2a, 0xe3, 0x65, 0x86, 0x30, 0xa3, +0x89, 0x51, 0xfb, 0xb0, 0x6a, 0x8c, 0xb0, 0xe5, 0x5d, 0xdd, 0xea, 0xd3, 0x19, 0xfa, 0x5d, 0x90, +0x4b, 0x67, 0x2b, 0xc4, 0xfe, 0x11, 0x8f, 0xc6, 0x59, 0xbd, 0x28, 0xda, 0x29, 0x1a, 0x50, 0x27, +0x22, 0x78, 0xc1, 0x10, 0x6b, 0xe0, 0xe9, 0x35, 0x78, 0x1b, 0x03, 0x7d, 0xf3, 0xee, 0x68, 0xf1, +0x55, 0x4a, 0x4f, 0x3a, 0xa7, 0xf9, 0x31, 0x2d, 0x03, 0x9b, 0x32, 0xad, 0x64, 0xf2, 0x10, 0xd7, +0xb1, 0x17, 0x86, 0xf3, 0x6a, 0xd3, 0x12, 0x1f, 0xfe, 0x4f, 0x75, 0xbc, 0x87, 0xaf, 0x07, 0x91, +0x2e, 0xa1, 0x56, 0x4d, 0x87, 0xe6, 0x2f, 0xcd, 0x5e, 0xbf, 0xf3, 0x55, 0x68, 0x5c, 0xd2, 0xc2, +0xd0, 0xbb, 0xa8, 0x84, 0x2e, 0xa6, 0x90, 0x60, 0x6b, 0x09, 0xfa, 0xad, 0x11, 0xbf, 0xb1, 0x5c, +0xee, 0xf3, 0xbe, 0xe5, 0x50, 0xa0, 0x35, 0x82, 0x7d, 0xcb, 0x71, 0x41, 0x87, 0xc0, 0xbb, 0xc7, +0x30, 0x71, 0xbc, 0x1a, 0xb4, 0x2d, 0x97, 0x21, 0xa4, 0x30, 0x9d, 0x75, 0xcb, 0x37, 0xc2, 0x02, +0x5f, 0xdb, 0xa9, 0x57, 0xef, 0x37, 0x39, 0xef, 0x6a, 0x02, 0xb6, 0x5b, 0x66, 0x2d, 0xb0, 0xde, +0x68, 0xbd, 0x83, 0x53, 0x0c, 0x67, 0x53, 0x90, 0x55, 0xb0, 0xd6, 0x6f, 0x21, 0x6c, 0xb3, 0xf7, +0x9a, 0x79, 0xd5, 0xe0, 0x3f, 0x7b, 0xf2, 0xe5, 0x5a, 0xe3, 0x1b, 0xbb, 0xde, 0x1e, 0x5f, 0x44, +0x44, 0xc9, 0x4a, 0x33, 0xf3, 0x89, 0x9a, 0xae, 0x98, 0x44, 0x9c, 0x77, 0xd0, 0x61, 0x24, 0x3c, +0x08, 0xc8, 0xdb, 0xf0, 0xab, 0x52, 0xbe, 0xb1, 0x0a, 0xb1, 0x6b, 0x10, 0x8b, 0xf8, 0x23, 0xb9, +0xe0, 0x54, 0xb4, 0xbf, 0xd8, 0x48, 0x21, 0xee, 0x32, 0x26, 0xc7, 0xd2, 0x10, 0xd4, 0x1b, 0xcf, +0x01, 0x89, 0x2f, 0x9a, 0x06, 0x6d, 0x8b, 0x9a, 0xa4, 0xef, 0x7e, 0x53, 0x7f, 0x8b, 0x33, 0x40, +0x3b, 0x68, 0x64, 0x33, 0xe8, 0xb7, 0x4e, 0xce, 0xf6, 0xb7, 0x15, 0xd4, 0x0c, 0x1e, 0xaf, 0xbb, +0xc5, 0x49, 0xdf, 0xdb, 0x80, 0xc6, 0xdc, 0x25, 0x8f, 0xfa, 0x45, 0xd8, 0x5c, 0x32, 0x67, 0xfe, +0x51, 0xa3, 0x10, 0xf3, 0x72, 0x91, 0xc2, 0x8f, 0x92, 0x6f, 0x57, 0x83, 0x18, 0x76, 0xf0, 0x2d, +0x94, 0x0c, 0x90, 0xe5, 0x3a, 0x5d, 0x20, 0x6e, 0xea, 0x6e, 0x3d, 0x4e, 0x96, 0x5f, 0x46, 0xe2, +0xab, 0x9b, 0x57, 0xe0, 0x0c, 0xd8, 0x79, 0x3e, 0x2a, 0x06, 0x29, 0x10, 0x02, 0x9d, 0xd8, 0x8e, +0x5f, 0xc2, 0x9c, 0x7f, 0xe8, 0xcc, 0xd3, 0x37, 0xcc, 0xfa, 0x07, 0x42, 0xa6, 0x02, 0xe4, 0x68, +0x33, 0xe4, 0xe9, 0x78, 0x77, 0xfe, 0x50, 0x68, 0x54, 0x10, 0x62, 0xd2, 0x52, 0xad, 0x67, 0x25, +0x82, 0x6f, 0xb4, 0xd5, 0x19, 0x4e, 0x4c, 0x2d, 0x0d, 0x96, 0xe4, 0x3a, 0xf1, 0xe0, 0x1d, 0xeb, +0xcc, 0xa9, 0xb5, 0x1b, 0x1f, 0x4c, 0xf4, 0x8d, 0x93, 0xb8, 0xfa, 0xa6, 0xe0, 0x4e, 0xe6, 0xf5, +0x03, 0xb1, 0xc7, 0x53, 0x27, 0xfa, 0xf4, 0x8e, 0xa2, 0x48, 0xc8, 0x7e, 0x8d, 0xbe, 0xeb, 0x5f, +0x0c, 0xb2, 0xe4, 0x31, 0xa5, 0xa1, 0xff, 0x0a, 0xb4, 0x09, 0xb8, 0x74, 0xae, 0x0f, 0x02, 0xeb, +0x13, 0x7c, 0x2a, 0xc9, 0x54, 0xe7, 0xbe, 0x1b, 0x86, 0xc3, 0xcd, 0xa9, 0xa1, 0xe3, 0xde, 0xa8, +0x96, 0x78, 0x57, 0x29, 0x9b, 0x45, 0x2e, 0xec, 0x27, 0xdd, 0xf2, 0x33, 0x2a, 0xa7, 0x34, 0xe9, +0xe6, 0x4d, 0x5d, 0xe7, 0x0f, 0xae, 0xf8, 0x50, 0x59, 0xb8, 0xb0, 0x7f, 0x5a, 0x5f, 0xf5, 0x55, +0xb5, 0x9f, 0x4a, 0x9e, 0x49, 0xe7, 0x31, 0xff, 0xb8, 0xf2, 0x5c, 0xdc, 0x13, 0x89, 0x52, 0xed, +0x55, 0xc3, 0x45, 0x80, 0xcc, 0x0e, 0x55, 0x31, 0x64, 0x63, 0x7d, 0xc4, 0x37, 0xfc, 0xc2, 0x9c, +0xb6, 0x2b, 0x9f, 0x82, 0xfd, 0xd1, 0x94, 0xad, 0xa7, 0x9c, 0x62, 0xfa, 0x2d, 0x08, 0x8f, 0x56, +0x89, 0x49, 0xd8, 0x6c, 0xe7, 0x17, 0x56, 0x71, 0x28, 0xaa, 0xde, 0x1d, 0x4a, 0x66, 0x36, 0x2e, +0xc3, 0x79, 0x3f, 0x6f, 0x6b, 0x2d, 0xba, 0xf9, 0x48, 0x5a, 0xd2, 0xbd, 0x4e, 0x7c, 0xde, 0x50, +0x9e, 0x65, 0x3c, 0x28, 0x7d, 0xf7, 0x36, 0xbc, 0x18, 0xb4, 0xff, 0xc3, 0x4e, 0x14, 0x44, 0x0e, +0x52, 0xbc, 0x1c, 0xca, 0x5a, 0x6d, 0xa3, 0x2b, 0x16, 0x13, 0x36, 0x27, 0x43, 0x08, 0x6c, 0x7d, +0x81, 0x8a, 0x6a, 0x34, 0x3e, 0x3a, 0xe2, 0xff, 0xa0, 0xed, 0x05, 0x90, 0x23, 0x3b, 0x7c, 0x03, +0xe4, 0x15, 0xd9, 0x02, 0x3c, 0x9d, 0x7e, 0x31, 0x80, 0x02, 0xd9, 0x94, 0x2b, 0x9b, 0xa9, 0x02, +0xd6, 0x82, 0x8e, 0xf1, 0xd6, 0x25, 0xba, 0x1b, 0x94, 0xca, 0x9d, 0x32, 0x47, 0xb0, 0x37, 0x72, +0x9d, 0x4f, 0x84, 0x7e, 0x90, 0xcf, 0x42, 0x23, 0xd9, 0xa3, 0x42, 0x08, 0x2d, 0x7d, 0xd6, 0xd5, +0xae, 0xe5, 0xc4, 0xb3, 0x76, 0xf2, 0xdf, 0xf5, 0x12, 0xd9, 0xdb, 0xeb, 0x0a, 0xbd, 0xcf, 0x9b, +0x71, 0x72, 0x6f, 0xa8, 0x0c, 0xfd, 0xcf, 0x00, 0x91, 0xa8, 0x97, 0x98, 0x2e, 0x6e, 0x39, 0x39, +0x1c, 0xd6, 0xab, 0x65, 0xfa, 0x29, 0x36, 0x64, 0x71, 0x86, 0x39, 0x73, 0x28, 0x58, 0xd3, 0x18, +0x64, 0x34, 0x51, 0x69, 0x78, 0x59, 0x56, 0xf8, 0xbd, 0x8a, 0xf8, 0xab, 0xc4, 0x75, 0x5c, 0xe2, +0x92, 0x10, 0x6a, 0x6e, 0xfd, 0x05, 0x6f, 0x45, 0x7d, 0x82, 0xb1, 0x7e, 0xea, 0xc2, 0xdc, 0x9d, +0x44, 0xfe, 0xff, 0xeb, 0x08, 0x31, 0x47, 0x7b, 0xcc, 0x2f, 0x78, 0xc3, 0x5d, 0xb8, 0x85, 0x25, +0x1e, 0x18, 0xa2, 0x67, 0xca, 0x6c, 0xe6, 0xd0, 0x53, 0x5d, 0x5b, 0x02, 0x3e, 0x06, 0x72, 0x94, +0x07, 0xc0, 0x20, 0xed, 0x66, 0xfc, 0xa6, 0x30, 0x22, 0x16, 0xd4, 0xc3, 0xa3, 0xc0, 0xc4, 0xde, +0x28, 0xf6, 0xc9, 0x66, 0xe0, 0xc2, 0xf6, 0xf4, 0x55, 0xc2, 0x15, 0x88, 0xb6, 0x7c, 0xfe, 0x97, +0x7e, 0x9b, 0x05, 0x7a, 0x16, 0xa7, 0x7f, 0x25, 0x7a, 0xbe, 0x66, 0x32, 0xc7, 0xb4, 0x31, 0x91, +0xc4, 0x03, 0x0b, 0xbd, 0x44, 0xbd, 0xcc, 0xef, 0x88, 0x09, 0xd0, 0xe4, 0xa1, 0x43, 0x11, 0x2e, +0x47, 0x6d, 0x45, 0x70, 0x78, 0x61, 0xc8, 0x87, 0xf1, 0x3e, 0x0e, 0x27, 0x8c, 0x6b, 0x65, 0xdf, +0x2a, 0x6c, 0x87, 0x08, 0xbd, 0x2f, 0xdc, 0x53, 0x33, 0x43, 0x3f, 0xd2, 0xe8, 0x94, 0xf6, 0x91, +0x62, 0x55, 0x4a, 0x03, 0x30, 0xad, 0x96, 0x3b, 0xf9, 0x01, 0xe0, 0x0a, 0x1d, 0x71, 0xa7, 0x06, +0x2b, 0xf2, 0x78, 0x79, 0x99, 0x20, 0x8e, 0x59, 0xe4, 0xbc, 0x7e, 0x8e, 0xb8, 0x55, 0x2a, 0x31, +0xf7, 0xa3, 0xc8, 0x19, 0x26, 0x23, 0xa1, 0x4b, 0xe6, 0x07, 0x39, 0x51, 0xfd, 0x74, 0xa7, 0x73, +0x56, 0x80, 0x57, 0x64, 0x1c, 0x3f, 0x81, 0x9c, 0x96, 0x04, 0x83, 0x34, 0x45, 0x68, 0x41, 0x44, +0x0a, 0xe2, 0x41, 0x52, 0x57, 0x75, 0x01, 0x7c, 0x5e, 0x01, 0xca, 0xa1, 0xe8, 0x25, 0x6c, 0x9b, +0x55, 0xd6, 0x04, 0x95, 0xe7, 0xc2, 0x9f, 0xb4, 0x3f, 0xb3, 0x1f, 0xfd, 0x90, 0x1b, 0x7d, 0xda, +0x6d, 0x7c, 0x89, 0xaf, 0x4a, 0x51, 0xc9, 0xc7, 0xaf, 0x09, 0x86, 0xb7, 0x44, 0x94, 0xc5, 0x04, +0x5b, 0xf2, 0xa7, 0x30, 0x47, 0xce, 0x5a, 0xb0, 0x6e, 0xec, 0x61, 0x6b, 0xa2, 0x99, 0xf7, 0x7f, +0x7b, 0x45, 0x62, 0x85, 0x1e, 0xc4, 0x7d, 0x03, 0xb5, 0xdd, 0xac, 0xc9, 0x23, 0xf9, 0x6d, 0xfa, +0xd8, 0x07, 0x7e, 0xaf, 0x9e, 0x8b, 0xf3, 0x6d, 0x39, 0x75, 0x8c, 0xb5, 0x4e, 0x20, 0x0a, 0x2b, +0xdc, 0x29, 0x2b, 0x65, 0x16, 0xe1, 0x34, 0x64, 0xfe, 0xe9, 0x4c, 0xe2, 0xe0, 0x15, 0xfa, 0xc0, +0xb3, 0x86, 0xd4, 0xe1, 0xad, 0x40, 0xae, 0x43, 0x3e, 0x59, 0x6a, 0x99, 0x55, 0x54, 0x44, 0xd7, +0xa8, 0x00, 0xe9, 0xb0, 0x9f, 0x89, 0x5d, 0x03, 0x8a, 0xe5, 0xf2, 0x27, 0x38, 0xb2, 0x28, 0xb2, +0x56, 0x18, 0xc9, 0x56, 0xc6, 0xb4, 0x64, 0x73, 0x92, 0x1a, 0x9b, 0xc0, 0xec, 0x85, 0xcc, 0xed, +0x69, 0xb5, 0x7b, 0x9b, 0xa0, 0xa4, 0x19, 0x0b, 0xab, 0x83, 0x11, 0xb3, 0xe6, 0x86, 0x26, 0x27, +0x76, 0x95, 0xb2, 0x39, 0x91, 0xa1, 0xe6, 0xcc, 0x0d, 0x61, 0x27, 0xc9, 0xc1, 0xd4, 0x54, 0x96, +0x2e, 0x42, 0xef, 0x56, 0x9e, 0xf5, 0x78, 0xb7, 0x3f, 0xd8, 0xdb, 0x53, 0xec, 0xe3, 0x2a, 0x64, +0x78, 0xd5, 0xa4, 0x67, 0xaf, 0x97, 0x7b, 0x20, 0xda, 0x9f, 0xd2, 0xb9, 0x53, 0x84, 0x78, 0x11, +0xf8, 0x55, 0x4b, 0xe4, 0x3f, 0x12, 0x94, 0xc8, 0x71, 0xf8, 0xad, 0x5a, 0x00, 0xfd, 0x12, 0x02, +0x6c, 0x77, 0xde, 0x16, 0xb2, 0x3b, 0x5f, 0xbb, 0xfd, 0x3b, 0x15, 0x99, 0x69, 0x06, 0x82, 0x1d, +0xf3, 0xa0, 0x90, 0x78, 0xfe, 0x5d, 0x42, 0xfb, 0x3c, 0x87, 0x1d, 0x73, 0x32, 0x7c, 0x79, 0x56, +0xf7, 0x81, 0x58, 0x84, 0x75, 0xcd, 0xeb, 0xa1, 0x29, 0x18, 0x8f, 0xde, 0xd5, 0x79, 0x80, 0x90, +0xc5, 0x63, 0x7f, 0xfa, 0x5f, 0x6b, 0x35, 0x64, 0x5a, 0x8a, 0x23, 0x4c, 0x50, 0xa9, 0xd6, 0xf6, +0x1f, 0x90, 0x7b, 0x0d, 0x92, 0x69, 0x57, 0x0a, 0xbc, 0x07, 0xb0, 0x1e, 0x8c, 0x4f, 0x1c, 0x9a, +0x3e, 0xd1, 0x7b, 0x13, 0x33, 0x91, 0x52, 0x20, 0x75, 0xb2, 0x23, 0x66, 0x0d, 0x37, 0x40, 0xcf, +0xa1, 0x50, 0x4e, 0x65, 0xca, 0xe3, 0xcb, 0x99, 0xcf, 0x8f, 0x9c, 0x89, 0xff, 0x86, 0x2a, 0x76, +0x50, 0x33, 0x97, 0x44, 0x78, 0x81, 0x0a, 0xfb, 0x6c, 0xf9, 0xb6, 0x30, 0x20, 0x16, 0xee, 0x66, +0xde, 0x6b, 0xd2, 0x7f, 0xf6, 0x03, 0xa3, 0xb4, 0xa5, 0x9e, 0x1f, 0x77, 0x04, 0x1f, 0x37, 0x9f, +0x02, 0x71, 0xde, 0x46, 0x1a, 0x03, 0x3e, 0x2c, 0x80, 0xd4, 0xc7, 0xa8, 0x03, 0x7d, 0xa1, 0x39, +0x1e, 0x8f, 0xc0, 0xa1, 0x92, 0xde, 0x7b, 0x8e, 0x9e, 0x85, 0x00, 0x9a, 0x4b, 0x4b, 0xf0, 0x8c, +0x77, 0x50, 0x16, 0xdf, 0x4b, 0x8f, 0x4f, 0xa0, 0x8c, 0xf1, 0x4c, 0x0d, 0x87, 0xeb, 0xe9, 0x4b, +0xb2, 0x1d, 0xc2, 0x56, 0x93, 0x9c, 0x15, 0xf7, 0x68, 0x32, 0x91, 0xa7, 0x5b, 0x0d, 0xd7, 0xa9, +0xf6, 0x58, 0xa5, 0x48, 0x28, 0x97, 0xb6, 0x51, 0x75, 0xe4, 0xc0, 0x42, 0x67, 0xfb, 0x02, 0xdb, +0x63, 0x10, 0x3c, 0x4e, 0x20, 0xc5, 0xb8, 0x38, 0x58, 0xf9, 0x16, 0x11, 0xa4, 0x53, 0xc3, 0x5c, +0x37, 0x41, 0x0a, 0x61, 0x86, 0xd6, 0x0c, 0xd8, 0x3a, 0x98, 0x14, 0xfd, 0x37, 0xbf, 0x67, 0x7b, +0x96, 0x34, 0x0b, 0x20, 0xc6, 0xb1, 0xdf, 0x44, 0xfa, 0xea, 0xa8, 0xf9, 0xdd, 0xdc, 0xe5, 0xe2, +0x7a, 0x67, 0x54, 0xdb, 0x81, 0x9b, 0xdb, 0x6e, 0xf5, 0xcc, 0x84, 0xc8, 0x49, 0x57, 0x5c, 0x14, +0xd9, 0x76, 0x3c, 0xe9, 0xf5, 0xfd, 0xa0, 0x7b, 0x8d, 0x8a, 0xe2, 0xfe, 0x91, 0xfc, 0xa0, 0xd1, +0x47, 0x5b, 0x7a, 0x6a, 0x0a, 0xaf, 0x3d, 0x89, 0xa3, 0x26, 0x86, 0x3a, 0x96, 0xd7, 0xce, 0xbc, +0x76, 0x69, 0x96, 0x14, 0xc2, 0x7f, 0x16, 0x98, 0xab, 0x26, 0xd5, 0x33, 0xe2, 0x0c, 0x52, 0xfa, +0x63, 0xe7, 0x2b, 0x81, 0xda, 0xc7, 0x9a, 0x92, 0x7a, 0xe8, 0x23, 0xc8, 0x94, 0x01, 0x9d, 0xa7, +0x09, 0x72, 0xca, 0xa6, 0xa7, 0x86, 0x90, 0x1e, 0xea, 0x3d, 0x83, 0x99, 0x57, 0x88, 0x86, 0xe7, +0xa5, 0xc6, 0xa5, 0x06, 0x90, 0x78, 0x1f, 0x89, 0xc8, 0x6a, 0x7a, 0x55, 0xf7, 0xd1, 0x05, 0xfc, +0xf5, 0xa6, 0x23, 0x37, 0x70, 0x85, 0x13, 0xb1, 0x62, 0x93, 0x65, 0x0a, 0xd9, 0x89, 0x0c, 0xc6, +0x35, 0x0c, 0x2b, 0x63, 0x25, 0x3b, 0xd3, 0xd1, 0xc7, 0xeb, 0xea, 0x1c, 0x41, 0x26, 0xd0, 0x95, +0x48, 0x5a, 0x1a, 0xad, 0xb2, 0x8d, 0xde, 0xae, 0xf5, 0xe3, 0x51, 0xe7, 0xe9, 0xcd, 0x4b, 0xa5, +0x59, 0xb1, 0x38, 0x1b, 0x1f, 0x11, 0xcc, 0x13, 0x3e, 0x49, 0x94, 0x20, 0x33, 0x03, 0xeb, 0x29, +0x81, 0xa9, 0xf5, 0x15, 0x8d, 0x65, 0x0a, 0x11, 0x76, 0xdc, 0xa1, 0x34, 0x03, 0x51, 0xa5, 0x62, +0x72, 0x3e, 0x00, 0x68, 0x43, 0x7a, 0x27, 0x02, 0xdb, 0x01, 0xb6, 0x7e, 0x47, 0x78, 0xd1, 0x98, +0xc0, 0xb8, 0xba, 0xd7, 0x78, 0x4a, 0xd9, 0x54, 0xe4, 0xf2, 0x09, 0xda, 0x00, 0x12, 0x68, 0x81, +0xb7, 0x0b, 0x32, 0xb1, 0xa2, 0x03, 0x54, 0x18, 0x84, 0x01, 0x37, 0x4d, 0x16, 0xd6, 0xef, 0x73, +0x79, 0x74, 0x90, 0xcf, 0x56, 0x05, 0xfa, 0x5e, 0x1b, 0xb5, 0x2f, 0x1b, 0x49, 0xa6, 0x13, 0xe2, +0xf4, 0x81, 0x65, 0xd9, 0x1c, 0x83, 0x75, 0x90, 0xd8, 0xd1, 0x03, 0x35, 0x68, 0x62, 0x4e, 0xf0, +0x8e, 0x5d, 0x44, 0x12, 0xf7, 0xfe, 0xfe, 0x5c, 0xd0, 0xcb, 0x11, 0x0a, 0x65, 0xf3, 0x99, 0x97, +0x37, 0x7f, 0x0a, 0x2e, 0xc8, 0x66, 0xae, 0x2a, 0xd2, 0x91, 0x9f, 0x8c, 0xb5, 0xf8, 0x6f, 0x0c, +0xbd, 0x47, 0x69, 0xb2, 0x50, 0xea, 0x99, 0x63, 0xdd, 0x07, 0xa6, 0xf9, 0x62, 0x1d, 0x4f, 0x35, +0xbc, 0xfd, 0x6e, 0xe9, 0x96, 0x64, 0xee, 0xb8, 0xe7, 0xcc, 0xd1, 0x13, 0x91, 0xe5, 0xa3, 0x65, +0x1b, 0xe3, 0xb8, 0x1e, 0xe4, 0xd8, 0xb8, 0x12, 0xd6, 0x5d, 0x50, 0x31, 0x06, 0xe2, 0x27, 0x30, +0xcb, 0x89, 0xd4, 0x1d, 0x0c, 0x4c, 0x7d, 0xe4, 0x14, 0xf0, 0x9f, 0xe5, 0xbc, 0xa2, 0x48, 0x15, +0x7d, 0x22, 0x2c, 0x22, 0x42, 0xe6, 0xf0, 0x94, 0xa1, 0x82, 0x90, 0xa8, 0xbe, 0xab, 0x6f, 0x40, +0x0c, 0x5a, 0x7b, 0xe6, 0x6a, 0xaa, 0x9f, 0x63, 0xcf, 0x23, 0x88, 0xf8, 0x8a, 0xd9, 0x51, 0x20, +0xf5, 0x0a, 0x74, 0x84, 0x55, 0x08, 0x72, 0x58, 0x99, 0xf4, 0x19, 0x5e, 0x64, 0x6e, 0xd6, 0x20, +0x35, 0x41, 0xdd, 0x26, 0x7b, 0x0c, 0xa3, 0x7a, 0x79, 0xc8, 0x45, 0xdb, 0x5a, 0x67, 0x86, 0xa7, +0x5a, 0x7a, 0xeb, 0xc8, 0x75, 0x6b, 0xce, 0x79, 0x81, 0x79, 0xee, 0x56, 0x1b, 0x4f, 0xc0, 0x04, +0x48, 0x39, 0xc4, 0x56, 0x39, 0x5e, 0x43, 0xa7, 0x5c, 0x87, 0xef, 0x16, 0x1c, 0x39, 0x33, 0x08, +0x7d, 0x7e, 0x56, 0xa8, 0xa2, 0xae, 0xf8, 0xaf, 0x9a, 0x00, 0xba, 0xb5, 0x85, 0x26, 0x18, 0x46, +0x7a, 0x76, 0x35, 0xdd, 0x74, 0xb2, 0xfb, 0x27, 0x86, 0x13, 0x32, 0xb2, 0x6e, 0x43, 0xe5, 0x3b, +0x35, 0xb9, 0x11, 0x5c, 0x53, 0x58, 0xb3, 0x5c, 0x91, 0xc2, 0x47, 0xee, 0x17, 0xde, 0xcd, 0x4d, +0x43, 0x0f, 0x31, 0xd9, 0x69, 0xbc, 0x83, 0x5d, 0x37, 0xbe, 0xc2, 0x7a, 0x94, 0x86, 0xe9, 0x56, +0x23, 0x1c, 0xa5, 0x7c, 0x83, 0xc1, 0x60, 0xba, 0x38, 0xd8, 0x28, 0x1d, 0x50, 0x31, 0x5b, 0xbe, +0x34, 0x4c, 0x88, 0xf2, 0xa6, 0x85, 0xd5, 0xaf, 0xae, 0x04, 0x83, 0xd2, 0x2f, 0x01, 0xe3, 0x3e, +0x76, 0x3d, 0x63, 0x80, 0x1d, 0xaf, 0x66, 0xd3, 0x01, 0x72, 0x65, 0x80, 0xa6, 0x64, 0x42, 0xcf, +0xa0, 0xb2, 0x49, 0x03, 0x29, 0x7c, 0x6a, 0x5e, 0xf6, 0x7c, 0x5f, 0x8e, 0x4f, 0x61, 0x1b, 0x06, +0x8d, 0x34, 0x1d, 0xfa, 0x88, 0xa9, 0x8c, 0x25, 0x7f, 0x56, 0x30, 0x92, 0xd7, 0x23, 0x51, 0x07, +0xad, 0x0b, 0x49, 0x22, 0x28, 0x9c, 0x6b, 0x57, 0x34, 0xbe, 0x40, 0xd5, 0x72, 0x40, 0x1b, 0xc2, +0x8c, 0x09, 0x5b, 0xe5, 0xd1, 0x9e, 0x5c, 0xec, 0x62, 0x49, 0x2c, 0x9c, 0xdf, 0x63, 0xc2, 0x8a, +0x42, 0x64, 0xeb, 0x01, 0x12, 0x02, 0x2e, 0xad, 0xfd, 0x86, 0x94, 0xdc, 0x70, 0x0b, 0x1d, 0xb8, +0x91, 0xb8, 0x8a, 0x58, 0xa9, 0x5d, 0xf5, 0xb7, 0xfa, 0xc3, 0x7e, 0xb9, 0x35, 0x00, 0xd3, 0x7f, +0x42, 0x07, 0x69, 0x09, 0xbb, 0xb3, 0x48, 0xf4, 0x77, 0xf9, 0xd6, 0x13, 0xf6, 0x06, 0x9b, 0xee, +0xdb, 0x89, 0x52, 0xce, 0xef, 0x7c, 0xbf, 0x58, 0x80, 0x24, 0x39, 0x36, 0x53, 0x74, 0x0d, 0xae, +0x83, 0x3d, 0xa8, 0x8f, 0x74, 0x0e, 0x4c, 0x3d, 0x59, 0x66, 0x77, 0x36, 0x38, 0x92, 0xb4, 0xb3, +0x43, 0x03, 0xdc, 0x15, 0x2b, 0x68, 0xe7, 0x1f, 0x0b, 0x33, 0xf2, 0x6c, 0x48, 0xf7, 0x42, 0x68, +0x3a, 0xa9, 0x85, 0x61, 0x55, 0x41, 0xe5, 0x07, 0x4b, 0x59, 0x70, 0x0d, 0x79, 0xa0, 0xa4, 0x15, +0x6b, 0xe7, 0x09, 0x0d, 0xa2, 0x10, 0x40, 0x4e, 0x60, 0x81, 0xfe, 0x0b, 0x20, 0xa6, 0x38, 0xfa, +0x9c, 0xd4, 0x47, 0xe4, 0x26, 0xcb, 0x4d, 0x80, 0xb2, 0x26, 0x8b, 0xf8, 0x9b, 0x91, 0x18, 0xc3, +0xb1, 0xca, 0x98, 0x2f, 0x25, 0x94, 0x66, 0x2a, 0x7b, 0x94, 0xbd, 0x75, 0xc9, 0x5f, 0x60, 0xea, +0x6e, 0xb2, 0x65, 0x57, 0x55, 0x4e, 0x97, 0xed, 0x92, 0x3d, 0x45, 0x11, 0xb7, 0x28, 0xd6, 0x87, +0x29, 0x7b, 0xd4, 0x8c, 0x6c, 0xb6, 0xb1, 0xd1, 0xea, 0x14, 0xe4, 0xcf, 0x0c, 0xdc, 0xf9, 0x93, +0xcd, 0x09, 0x0a, 0xd0, 0xf3, 0xc4, 0xae, 0xec, 0x4e, 0x3b, 0x44, 0x6d, 0xa2, 0x65, 0x79, 0x93, +0x89, 0xf6, 0x2d, 0xcb, 0xc8, 0x3f, 0xb9, 0x56, 0xaf, 0x60, 0x1a, 0xc7, 0x6a, 0xc1, 0x26, 0x7f, +0xaf, 0x84, 0xb6, 0x42, 0xb4, 0xf8, 0xf3, 0x89, 0x76, 0x9b, 0x1f, 0x6e, 0x09, 0x25, 0x45, 0xec, +0x81, 0x89, 0x94, 0xe3, 0x3c, 0xb2, 0xc2, 0xf0, 0x33, 0xe2, 0x29, 0x4c, 0xb8, 0xb8, 0xf0, 0x87, +0xb5, 0x7d, 0x9e, 0x0a, 0x1e, 0x85, 0xb9, 0x5a, 0x55, 0x10, 0x25, 0xa8, 0x96, 0xc3, 0x46, 0xde, +0x72, 0xf0, 0x89, 0xdb, 0xbc, 0x6c, 0x05, 0x42, 0x12, 0x0a, 0xee, 0xfd, 0x00, 0xdf, 0x1e, 0x44, +0x4c, 0xb2, 0xda, 0xa8, 0xed, 0x31, 0x4b, 0x05, 0x07, 0x71, 0xa7, 0x93, 0xfe, 0xdc, 0x94, 0x6a, +0xef, 0x48, 0x74, 0x91, 0x88, 0x07, 0xb3, 0xcf, 0x47, 0xb4, 0x67, 0x66, 0xeb, 0x09, 0xe0, 0x27, +0x69, 0x7b, 0x64, 0xeb, 0xf1, 0xb9, 0x64, 0xba, 0x3e, 0x9d, 0x6b, 0x1e, 0x0c, 0x95, 0x8d, 0x25, +0xd8, 0xee, 0x79, 0x00, 0xa9, 0xd0, 0xb9, 0xb1, 0xb4, 0x1e, 0x8f, 0xa9, 0x6d, 0xb5, 0x35, 0x01, +0x25, 0x5c, 0xcb, 0x9f, 0x8b, 0x76, 0x2d, 0xf7, 0xfd, 0x18, 0xe2, 0xe3, 0xb3, 0xe6, 0xdb, 0xda, +0x6f, 0x15, 0x23, 0x75, 0xe6, 0x41, 0x25, 0x25, 0x20, 0xb4, 0xd9, 0x68, 0x55, 0x1c, 0x7f, 0x6f, +0xfb, 0xfd, 0x2a, 0x70, 0x7a, 0x41, 0xaf, 0x4d, 0xcb, 0x9f, 0x2f, 0x7c, 0x11, 0x05, 0x01, 0xc0, +0x39, 0x7e, 0xaf, 0x2e, 0xe1, 0xfd, 0xa2, 0x94, 0x8d, 0x30, 0xf0, 0xc9, 0x0f, 0x01, 0x71, 0x83, +0xef, 0x86, 0xf8, 0xe0, 0xda, 0x02, 0x19, 0x0c, 0x80, 0x66, 0xf9, 0xeb, 0xad, 0x2c, 0xeb, 0x62, +0xf8, 0x9b, 0xa1, 0xb7, 0xed, 0xb1, 0xbc, 0xe8, 0xb6, 0xb5, 0x48, 0xc2, 0x84, 0xe5, 0x71, 0xac, +0x04, 0x0a, 0x90, 0x77, 0xb9, 0x81, 0x9f, 0xc8, 0x99, 0xae, 0x8b, 0xfa, 0x61, 0x43, 0xe4, 0x75, +0xfe, 0x40, 0xce, 0x57, 0x4c, 0x57, 0x7c, 0xb4, 0xff, 0x60, 0xe4, 0x03, 0xd1, 0xdc, 0x92, 0x13, +0xe9, 0x98, 0x47, 0x6f, 0x8d, 0x9e, 0x35, 0xae, 0x36, 0x72, 0xa4, 0x9f, 0x8f, 0x18, 0xca, 0x68, +0xb5, 0xca, 0xc0, 0xbc, 0x98, 0x58, 0x25, 0x3b, 0x7d, 0x4b, 0x67, 0xe0, 0x5a, 0xab, 0xd8, 0x6e, +0x50, 0xd8, 0xb1, 0xbe, 0xd0, 0xf6, 0x39, 0x03, 0xbd, 0x80, 0x1a, 0xe3, 0x01, 0x97, 0x57, 0x16, +0x5d, 0x60, 0x14, 0x53, 0x28, 0x5f, 0xda, 0x81, 0xe8, 0x76, 0xcb, 0x18, 0x2b, 0x9d, 0xc8, 0x68, +0xfe, 0xbb, 0x25, 0x19, 0xb7, 0x46, 0xfb, 0xe3, 0xba, 0xfc, 0x04, 0x88, 0xb5, 0x38, 0x0a, 0xe6, +0x2c, 0xb6, 0x5a, 0x8d, 0x07, 0x33, 0x48, 0x0a, 0xcb, 0xbb, 0x02, 0x3f, 0x06, 0x45, 0xb5, 0x9d, +0x0a, 0x66, 0x50, 0xdb, 0x4e, 0xd9, 0xda, 0x39, 0xee, 0x60, 0xaf, 0x92, 0x25, 0xef, 0xbe, 0x24, +0x4a, 0x53, 0xc4, 0xcf, 0x19, 0xb7, 0x50, 0x66, 0x62, 0xe2, 0x45, 0xbe, 0xf8, 0xd4, 0x5d, 0x6b, +0xcd, 0xb4, 0xfb, 0xdc, 0x27, 0x79, 0x7f, 0x21, 0x38, 0x2c, 0x44, 0x3a, 0x97, 0x98, 0xe1, 0x2d, +0x44, 0x76, 0x8d, 0x64, 0xcd, 0x07, 0x49, 0x33, 0x66, 0x64, 0x92, 0x51, 0x9a, 0xe8, 0x90, 0xa0, +0xf6, 0x18, 0xcb, 0xc4, 0x73, 0x3a, 0x37, 0x05, 0x59, 0xd6, 0xb5, 0x41, 0x9f, 0x3a, 0x7a, 0xed, +0x87, 0x02, 0xab, 0xfc, 0xf9, 0x42, 0x5f, 0xe5, 0x5a, 0xa9, 0x9e, 0xc3, 0xd5, 0x53, 0xd7, 0x2e, +0x50, 0x15, 0x0f, 0x24, 0xdd, 0xb4, 0xdb, 0x4b, 0xeb, 0xbb, 0x33, 0x89, 0x6a, 0xed, 0x79, 0x5f, +0x17, 0x7c, 0x75, 0x21, 0x48, 0xa1, 0x8b, 0xb7, 0x46, 0x4d, 0x2f, 0x06, 0x2f, 0x4d, 0x77, 0xcd, +0xe2, 0x9d, 0x0b, 0x9c, 0x2a, 0x39, 0x9c, 0xe0, 0xa3, 0x74, 0x79, 0x30, 0xf5, 0x63, 0x99, 0xfb, +0x28, 0xcd, 0xce, 0x5c, 0x7f, 0x3a, 0x43, 0x6b, 0xae, 0x37, 0xb4, 0x94, 0xad, 0x32, 0x6f, 0x21, +0x46, 0x47, 0x1e, 0x74, 0x2b, 0x7e, 0x89, 0xac, 0x64, 0xb4, 0x72, 0xa1, 0xf4, 0x8a, 0xcb, 0x28, +0x3b, 0x17, 0x2a, 0xa9, 0x8e, 0x9c, 0xa1, 0x85, 0x93, 0x8b, 0xf7, 0xbc, 0x3d, 0x09, 0x9b, 0x55, +0x8d, 0xda, 0xad, 0x5d, 0x3a, 0xce, 0x04, 0xeb, 0xa0, 0x59, 0x01, 0x51, 0x8e, 0x40, 0x17, 0xed, +0x5c, 0xd6, 0x37, 0x57, 0x9c, 0x0a, 0xff, 0x7d, 0xdd, 0xcf, 0xef, 0x5d, 0x65, 0x62, 0xd5, 0xb3, +0x25, 0xb2, 0xaf, 0x6d, 0xbc, 0x9b, 0xfa, 0x03, 0x15, 0x15, 0xb4, 0xa3, 0x62, 0x85, 0x45, 0x8e, +0x7b, 0x07, 0xed, 0x6a, 0x3d, 0xd2, 0xa0, 0x06, 0xa2, 0xf1, 0x53, 0x65, 0x04, 0x7c, 0x72, 0x8e, +0x3a, 0xad, 0xce, 0xb2, 0x3c, 0xe7, 0x5f, 0x3b, 0x82, 0x28, 0xa7, 0x63, 0x7a, 0x27, 0x82, 0xc1, +0x14, 0x57, 0xdd, 0xe1, 0xba, 0xa2, 0x00, 0xe9, 0x24, 0xd2, 0xa8, 0xe9, 0x9b, 0x3c, 0x0c, 0x1c, +0x9f, 0xf9, 0x35, 0x6b, 0x81, 0x7d, 0xd9, 0x2f, 0xdb, 0x23, 0xdb, 0x4c, 0x54, 0xbd, 0x7b, 0x25, +0x58, 0xa9, 0x31, 0xdb, 0x30, 0x53, 0x49, 0x52, 0x60, 0xd6, 0xae, 0x07, 0xde, 0xf7, 0xae, 0x41, +0x8e, 0xc7, 0x4b, 0x20, 0x84, 0x30, 0xb0, 0x0c, 0x74, 0x3c, 0x8f, 0x14, 0x95, 0x04, 0x25, 0x16, +0xb9, 0x7e, 0x08, 0x88, 0x4e, 0xe2, 0xcd, 0x0e, 0x11, 0x19, 0x3a, 0x87, 0x1b, 0xa8, 0x69, 0x03, +0x1f, 0x7f, 0xaf, 0x37, 0x59, 0x07, 0x6d, 0x37, 0xe3, 0xb7, 0xb7, 0x77, 0xe2, 0xe9, 0x90, 0x1d, +0xd6, 0x99, 0x8d, 0xc1, 0xdb, 0xcb, 0x18, 0xa1, 0x2b, 0x3d, 0x77, 0x89, 0x4d, 0x14, 0x17, 0x41, +0x08, 0xf4, 0xb4, 0x92, 0x89, 0x4e, 0xed, 0x28, 0xf4, 0x14, 0xfb, 0x31, 0xfe, 0x33, 0xba, 0xe0, +0x00, 0x01, 0x65, 0xc1, 0x69, 0xae, 0x62, 0xbb, 0xd3, 0x2e, 0x56, 0x0b, 0xc0, 0x68, 0xd3, 0xe3, +0x7b, 0x82, 0x40, 0xda, 0x7c, 0xd1, 0xd1, 0xb7, 0x05, 0xe6, 0xd9, 0x52, 0x65, 0xfc, 0xea, 0x36, +0x59, 0x2d, 0xa2, 0xab, 0x14, 0xa4, 0x2c, 0x4b, 0xa1, 0x60, 0x66, 0x43, 0x6c, 0xfb, 0xf4, 0xf8, +0x83, 0x0f, 0x96, 0x4e, 0x50, 0x91, 0x50, 0x26, 0xc6, 0xe2, 0x0b, 0xf6, 0xfa, 0x41, 0xa4, 0x57, +0x0d, 0x01, 0x17, 0x42, 0xd1, 0x2f, 0x9f, 0xfd, 0x70, 0x4c, 0x40, 0x66, 0x2a, 0x14, 0x25, 0x51, +0xb8, 0x1a, 0xeb, 0x29, 0xfd, 0x7e, 0x97, 0xec, 0xe4, 0x86, 0xf4, 0x89, 0xb5, 0xd4, 0xc7, 0x96, +0xc6, 0x81, 0x5e, 0x4c, 0x74, 0x57, 0x64, 0x72, 0x69, 0xf1, 0x05, 0x32, 0xf8, 0x08, 0xae, 0xa2, +0x9d, 0xb6, 0x2f, 0x22, 0xe2, 0x88, 0x11, 0xca, 0xc9, 0x70, 0x7d, 0x31, 0x5f, 0xca, 0xfd, 0x33, +0x6b, 0x6a, 0x9d, 0x04, 0x07, 0x8e, 0xd0, 0xa2, 0xb0, 0x0d, 0x03, 0x57, 0xd7, 0x8f, 0xab, 0x4c, +0xe0, 0x17, 0x85, 0x92, 0xdb, 0x85, 0xe2, 0x57, 0x21, 0xe9, 0x74, 0x7b, 0xc0, 0x66, 0x13, 0xfe, +0x35, 0x67, 0x89, 0xad, 0x2f, 0x1f, 0x58, 0xbd, 0xf4, 0x13, 0x56, 0x08, 0x0e, 0x7e, 0x20, 0xeb, +0xab, 0x69, 0x39, 0xc8, 0x0c, 0x1d, 0x1a, 0xad, 0x08, 0x61, 0xaa, 0xdf, 0xb9, 0x35, 0x7b, 0xde, +0xa2, 0xbe, 0x74, 0x7a, 0xc7, 0x30, 0xee, 0x56, 0xe9, 0xd4, 0x32, 0xfe, 0x8b, 0xc3, 0x4e, 0x38, +0xd0, 0xa9, 0x0d, 0x31, 0xc6, 0x99, 0x55, 0x64, 0x2a, 0x5a, 0x28, 0xe6, 0x7e, 0x1b, 0x9b, 0x58, +0xdf, 0xf3, 0x39, 0x22, 0xe8, 0xe1, 0x81, 0x8c, 0x55, 0x55, 0x2b, 0x3c, 0x86, 0x7b, 0xfc, 0x7d, +0xbb, 0x28, 0x34, 0x13, 0xab, 0xaf, 0x41, 0x31, 0x5b, 0xcb, 0x17, 0x30, 0x11, 0x89, 0x20, 0x08, +0x03, 0xf2, 0x7b, 0xa8, 0x20, 0x73, 0x0d, 0xa3, 0x8f, 0xae, 0x8f, 0xec, 0xde, 0x0a, 0x13, 0x28, +0x5e, 0x40, 0xed, 0x97, 0x9d, 0xcc, 0xc9, 0xeb, 0x69, 0x54, 0xcd, 0x35, 0xac, 0x81, 0x82, 0x77, +0x85, 0xae, 0x4c, 0xc5, 0x6c, 0xb1, 0xa4, 0x78, 0xd8, 0x84, 0xf6, 0x53, 0x5b, 0x60, 0xa5, 0x44, +0x65, 0x16, 0x59, 0xd0, 0x0a, 0xf1, 0x24, 0xae, 0x87, 0xd8, 0x69, 0x27, 0x29, 0x98, 0x26, 0xe8, +0x24, 0x85, 0x67, 0x05, 0xf3, 0xd5, 0x86, 0x82, 0x37, 0x3a, 0xd8, 0xae, 0x37, 0x5c, 0xf1, 0x61, +0xbd, 0x16, 0xfc, 0xe7, 0xbc, 0x0f, 0xa9, 0x6b, 0x57, 0x1e, 0xf7, 0x8c, 0xc6, 0x77, 0x7b, 0xcc, +0xe3, 0x51, 0x3a, 0xfe, 0xb1, 0xed, 0xd4, 0x01, 0xf0, 0x4d, 0xb1, 0xcf, 0x68, 0x5e, 0x1c, 0xb6, +0x30, 0xcd, 0x45, 0xe2, 0xec, 0x71, 0xd0, 0xd5, 0x2e, 0x2a, 0x5b, 0x58, 0x6d, 0x0b, 0xad, 0xaf, +0xde, 0x6c, 0x71, 0xd1, 0x0b, 0x27, 0x3e, 0x34, 0x0a, 0x12, 0x81, 0xbe, 0xdb, 0x9b, 0x7f, 0xee, +0x6f, 0xcd, 0x65, 0x00, 0xb9, 0xf3, 0xd9, 0xd1, 0x4f, 0x8b, 0xe9, 0x2b, 0xfc, 0xed, 0x84, 0x49, +0xb5, 0xcb, 0x14, 0x29, 0x8d, 0xb4, 0x9e, 0x4d, 0x75, 0x18, 0xcd, 0x4d, 0xc2, 0x6c, 0xfd, 0xef, +0x06, 0x87, 0x09, 0xe1, 0x16, 0x7a, 0xfa, 0x5b, 0xfc, 0x5b, 0xc7, 0xd4, 0x9a, 0x3e, 0x34, 0x10, +0x37, 0x55, 0x4b, 0xaf, 0xa7, 0xc6, 0x69, 0x4a, 0x37, 0x2e, 0x94, 0x81, 0xce, 0xd6, 0xbc, 0x6c, +0x6c, 0x7b, 0xf3, 0x88, 0x2c, 0x49, 0x3a, 0x8c, 0xf3, 0xa4, 0xb0, 0x24, 0x1a, 0x60, 0x27, 0xe3, +0xd1, 0xa5, 0xfd, 0x70, 0xf5, 0x1b, 0x44, 0x5b, 0xc1, 0xf9, 0x8b, 0x1e, 0x82, 0x74, 0x07, 0xe2, +0xc2, 0x6e, 0xad, 0x11, 0x4a, 0x4e, 0x3e, 0x25, 0xe5, 0x6e, 0xc4, 0x98, 0x29, 0xfa, 0x18, 0x14, +0x1b, 0x62, 0xf7, 0x94, 0x68, 0xbf, 0xa3, 0xcf, 0x4a, 0x19, 0x93, 0x0a, 0xe9, 0x40, 0xb3, 0xf0, +0x02, 0x77, 0xd8, 0xa4, 0x02, 0x1e, 0x93, 0xaa, 0xc3, 0x48, 0x9c, 0x7e, 0x75, 0x4d, 0xa3, 0xec, +0xf0, 0x21, 0xa8, 0xe7, 0x46, 0xc1, 0xbc, 0xe0, 0xc0, 0x3c, 0xbd, 0x14, 0x97, 0xa0, 0xc4, 0xe2, +0x0b, 0xf5, 0xa6, 0x3e, 0xa6, 0xe6, 0xc7, 0x34, 0xe0, 0x1a, 0x00, 0x3f, 0x74, 0x0e, 0xc4, 0xaf, +0x89, 0x57, 0xa0, 0xd8, 0x21, 0x31, 0xf0, 0x09, 0x1d, 0xb8, 0x93, 0x15, 0x0d, 0x67, 0xe0, 0x7f, +0xb6, 0xc8, 0xab, 0x3e, 0xb8, 0x99, 0x30, 0x3c, 0xd4, 0x2c, 0xf5, 0x9a, 0x97, 0x16, 0x07, 0xf4, +0xcb, 0xec, 0xa2, 0x5a, 0x6a, 0xee, 0x8e, 0x8b, 0xde, 0xb2, 0x78, 0xb0, 0xf0, 0x7e, 0x67, 0xb1, +0x20, 0x46, 0x69, 0x0b, 0xf1, 0x55, 0xb3, 0x29, 0x9f, 0xcc, 0xc1, 0x82, 0xf8, 0xa6, 0xfc, 0x0b, +0x46, 0x92, 0x3c, 0x66, 0xa0, 0x82, 0xfc, 0x89, 0xab, 0xfc, 0x55, 0x95, 0x70, 0xe0, 0xa0, 0x06, +0x5d, 0xf7, 0x15, 0x46, 0x21, 0xc2, 0x71, 0x14, 0xd2, 0x98, 0x0c, 0x85, 0xc9, 0xeb, 0x81, 0x95, +0x1c, 0x7b, 0x19, 0x7a, 0x96, 0x10, 0x6c, 0x8f, 0xde, 0x22, 0xd7, 0xc2, 0x5c, 0x7b, 0xa9, 0x32, +0xc7, 0x73, 0x10, 0x05, 0x4a, 0xc2, 0xa6, 0x86, 0xb7, 0xaf, 0x71, 0x36, 0x4a, 0xf4, 0xf7, 0x55, +0x5d, 0xd8, 0xd6, 0x1d, 0xfe, 0xd2, 0x4a, 0xaf, 0x06, 0xdd, 0x57, 0xe9, 0xff, 0x45, 0x68, 0x9f, +0xda, 0xb0, 0xf5, 0xa6, 0x79, 0xd3, 0x94, 0xd4, 0x49, 0x9d, 0x34, 0xf2, 0x6e, 0xe6, 0x67, 0xa0, +0x83, 0xfc, 0x72, 0xef, 0x53, 0xa5, 0x42, 0x5b, 0x9b, 0x68, 0xdb, 0x0e, 0x2f, 0xb4, 0x51, 0xdb, +0x4d, 0x7c, 0x85, 0x46, 0xe6, 0x04, 0x8e, 0x81, 0xf1, 0xd1, 0x6e, 0x6e, 0x29, 0xa5, 0x4e, 0x4e, +0x0b, 0x25, 0x3b, 0xa8, 0x65, 0x9d, 0x62, 0xe4, 0xcd, 0xad, 0x07, 0xf4, 0x13, 0x62, 0x1a, 0xb5, +0x26, 0x39, 0x35, 0x4b, 0x6f, 0x29, 0x55, 0x04, 0x96, 0x7a, 0x8b, 0x8c, 0x66, 0x67, 0x1a, 0x11, +0x34, 0x39, 0xdb, 0xf9, 0x0c, 0xe2, 0x9d, 0xe8, 0x0d, 0xfc, 0x6c, 0x34, 0xba, 0x24, 0xa2, 0x14, +0x5f, 0xff, 0x77, 0x73, 0xca, 0x9c, 0x29, 0x1c, 0x1c, 0x63, 0x2f, 0xc1, 0x39, 0x15, 0x7b, 0x0e, +0x9f, 0xe5, 0x41, 0x1b, 0xf8, 0x2d, 0x8a, 0x3c, 0x61, 0x8d, 0xd1, 0x15, 0xca, 0x92, 0x52, 0x62, +0x63, 0xeb, 0x9a, 0xf9, 0x55, 0x28, 0x51, 0xa6, 0x63, 0x7d, 0xfd, 0x8c, 0x82, 0x67, 0x13, 0xf0, +0x45, 0x9f, 0xd7, 0xa5, 0xaa, 0x50, 0x50, 0x3b, 0x5c, 0xe1, 0x19, 0x74, 0xac, 0x6e, 0xff, 0x23, +0x6c, 0xc9, 0x82, 0xa6, 0xab, 0xe9, 0x6d, 0xe8, 0x3d, 0x3c, 0x4b, 0x1b, 0xcb, 0x0e, 0xc2, 0xa4, +0xe3, 0xcf, 0x82, 0x60, 0x7a, 0x70, 0x23, 0xfc, 0xce, 0x2a, 0xc3, 0x49, 0x05, 0xdb, 0x15, 0x5f, +0xd4, 0x8a, 0xd9, 0x5a, 0x5f, 0x80, 0xa0, 0x89, 0xa0, 0x87, 0xbd, 0xae, 0x89, 0xb5, 0x92, 0x6d, +0xe0, 0x93, 0xfe, 0xad, 0x1a, 0x84, 0xc5, 0xde, 0x9c, 0xc6, 0xe3, 0x5e, 0x3c, 0xce, 0xac, 0x3f, +0x3a, 0x5d, 0xbc, 0x9b, 0xee, 0x56, 0x4e, 0x73, 0xb2, 0x24, 0x03, 0xe8, 0x0a, 0xe9, 0x90, 0x6f, +0x2c, 0xc4, 0x3a, 0xff, 0x67, 0xbd, 0xdd, 0x10, 0x6f, 0x6c, 0x06, 0x0f, 0x68, 0x0d, 0x9d, 0x4b, +0xa0, 0xc7, 0x67, 0x5f, 0xc9, 0xfb, 0xc4, 0x4b, 0x77, 0x44, 0x3f, 0x05, 0x55, 0x1d, 0x53, 0x4e, +0xb4, 0x66, 0x6e, 0x07, 0x37, 0x67, 0x48, 0x55, 0xa2, 0x1c, 0x5c, 0x93, 0xae, 0x9a, 0x54, 0x97, +0xf9, 0x42, 0x30, 0x5c, 0x2c, 0xe1, 0xfd, 0xc7, 0x16, 0xd0, 0xd4, 0xda, 0xc3, 0xa1, 0x67, 0xa8, +0x0a, 0x44, 0x7b, 0xde, 0x8d, 0x5a, 0x0c, 0xf7, 0xbf, 0x06, 0x64, 0xf1, 0xe6, 0xa9, 0x04, 0x28, +0x05, 0x5c, 0xd3, 0x9b, 0x66, 0x8e, 0xeb, 0x90, 0x3c, 0x09, 0x3a, 0x37, 0xd6, 0x4c, 0xea, 0xb5, +0x92, 0xf9, 0xcc, 0xfc, 0xb2, 0x04, 0x17, 0x3c, 0xaf, 0xe5, 0x94, 0x84, 0xa4, 0x74, 0x45, 0x3b, +0xd6, 0x44, 0x1b, 0x17, 0x00, 0xf5, 0xb5, 0x17, 0x4d, 0x3e, 0xc8, 0xc5, 0xcd, 0x89, 0xc0, 0x15, +0xe1, 0x30, 0xae, 0x2d, 0xb0, 0xe8, 0x3b, 0xb1, 0x34, 0x3f, 0xd2, 0xf5, 0xbc, 0x7c, 0x56, 0xfc, +0x60, 0x57, 0xd1, 0xee, 0xf8, 0x88, 0xdc, 0xfc, 0x24, 0x51, 0xc6, 0x04, 0x7b, 0xcc, 0x7b, 0x0b, +0x1b, 0x34, 0x19, 0x69, 0x77, 0xc5, 0xa6, 0x34, 0x3c, 0x0e, 0x52, 0xcf, 0xe4, 0x1b, 0x8a, 0x8c, +0x7b, 0x3f, 0xd4, 0xf5, 0x97, 0x12, 0xa8, 0x65, 0x82, 0x8d, 0x19, 0x77, 0x87, 0xe9, 0xae, 0xf8, +0xca, 0xf1, 0x02, 0xeb, 0xf2, 0xca, 0x40, 0x14, 0xc5, 0x54, 0xa0, 0xc2, 0x0f, 0x38, 0x4d, 0x58, +0xc5, 0xaf, 0x62, 0x4f, 0x1a, 0x43, 0x8c, 0x7c, 0xb6, 0x11, 0x79, 0xa2, 0xdd, 0x47, 0x6d, 0xc3, +0x11, 0x62, 0x71, 0x1a, 0x4b, 0xad, 0x45, 0x2a, 0x33, 0x65, 0xe5, 0xdf, 0x98, 0x81, 0xc3, 0xb1, +0x7d, 0x37, 0x21, 0x0d, 0xf4, 0xef, 0x68, 0xad, 0x35, 0xfd, 0xb5, 0x2f, 0x64, 0xf9, 0x78, 0x7c, +0x28, 0x7f, 0x26, 0xbe, 0x64, 0x60, 0x15, 0xb7, 0x7f, 0x17, 0x4f, 0x45, 0xa8, 0x44, 0xac, 0x4f, +0x74, 0x38, 0x7f, 0xe6, 0x7b, 0x84, 0x9a, 0x46, 0x04, 0xf9, 0x6a, 0x3b, 0x7a, 0x44, 0x8b, 0x62, +0x6c, 0xc8, 0x4a, 0x77, 0xef, 0x47, 0x4c, 0x3a, 0xe5, 0x7e, 0xbc, 0x49, 0x1d, 0x09, 0xb3, 0x61, +0x9b, 0x65, 0xee, 0xba, 0xde, 0xd4, 0x81, 0x08, 0xda, 0x5e, 0x30, 0x1b, 0x19, 0x76, 0xb6, 0x33, +0xe2, 0x60, 0xbe, 0x31, 0xea, 0x84, 0x1a, 0x66, 0x63, 0xdd, 0xf7, 0x7f, 0xf3, 0xab, 0x3d, 0xdd, +0xec, 0xee, 0x27, 0x6f, 0x27, 0x1e, 0x86, 0x41, 0x56, 0x08, 0x04, 0xda, 0x5b, 0xa3, 0xe5, 0xfd, +0xc0, 0xe1, 0x9d, 0x51, 0x0b, 0x02, 0x00, 0x29, 0x37, 0x60, 0x05, 0xd1, 0x26, 0xe3, 0xa6, 0xe5, +0x60, 0xd9, 0x3f, 0x4f, 0xfe, 0x89, 0xb0, 0xde, 0x8d, 0x31, 0x21, 0xa2, 0xd5, 0x3c, 0xb6, 0xb2, +0x48, 0xe3, 0x80, 0x21, 0x24, 0xa2, 0x92, 0x77, 0xca, 0xb6, 0xbc, 0x10, 0x23, 0xda, 0x34, 0x57, +0x71, 0xd7, 0xc6, 0x42, 0x38, 0xbe, 0x83, 0x35, 0x89, 0x68, 0x5b, 0x01, 0x49, 0xd5, 0x02, 0xfe, +0xa9, 0x1a, 0xf9, 0xa9, 0x79, 0x87, 0x42, 0x2b, 0xe6, 0xb9, 0x71, 0xe4, 0x5b, 0x7f, 0x8b, 0x74, +0x68, 0x4d, 0x99, 0x54, 0xf3, 0x1e, 0xfe, 0x43, 0xbd, 0xa8, 0x9b, 0x35, 0x8f, 0xd6, 0xe4, 0xad, +0x82, 0x96, 0xe0, 0x4e, 0x63, 0x70, 0x27, 0x48, 0xfe, 0xda, 0x28, 0x48, 0xc2, 0x45, 0x69, 0x52, +0xfe, 0x8d, 0xb9, 0x8a, 0x2e, 0xab, 0xca, 0x1e, 0x44, 0x83, 0xc3, 0xdd, 0xcc, 0x42, 0x51, 0x8f, +0x80, 0x9f, 0x9a, 0xd7, 0x1f, 0x1a, 0x5d, 0x34, 0x95, 0x9d, 0xb7, 0x1b, 0x1f, 0xa4, 0x11, 0x38, +0x2d, 0xf9, 0x55, 0x95, 0x0e, 0x3c, 0x16, 0xad, 0x8f, 0x45, 0x2f, 0xbd, 0x50, 0xe5, 0xeb, 0x08, +0x06, 0x14, 0xec, 0x8c, 0xaf, 0x9d, 0xc6, 0xb0, 0xe7, 0x8a, 0xb1, 0xb6, 0x8b, 0x19, 0x22, 0x4b, +0x22, 0x0c, 0x6b, 0x00, 0xb6, 0x6c, 0x8e, 0xe5, 0x64, 0x6d, 0x15, 0x30, 0x63, 0x25, 0xb6, 0xbc, +0x12, 0x5a, 0x0d, 0x5e, 0xaa, 0x86, 0x56, 0x18, 0x1d, 0x9b, 0x27, 0x57, 0x97, 0x7c, 0x35, 0x15, +0xe2, 0x3f, 0x96, 0x25, 0x86, 0xb4, 0x9b, 0xea, 0xf2, 0x31, 0x8c, 0x1f, 0x91, 0xa5, 0xad, 0xf2, +0xc0, 0x5b, 0xec, 0x81, 0x56, 0x99, 0x79, 0x31, 0x3c, 0xfd, 0x5c, 0xc2, 0xfb, 0x11, 0xd6, 0xa3, +0xb3, 0x67, 0xd6, 0x4a, 0x34, 0x2d, 0x37, 0x1f, 0x00, 0x17, 0x1c, 0x97, 0xa6, 0x3a, 0x78, 0xa7, +0x14, 0x21, 0xef, 0xf3, 0x81, 0x23, 0x92, 0x21, 0xee, 0xe4, 0x3a, 0x32, 0xf3, 0x3d, 0xc0, 0xfa, +0xd7, 0x1f, 0x5d, 0x2b, 0x79, 0x4b, 0x8f, 0x41, 0x38, 0x43, 0x37, 0x35, 0xab, 0x93, 0xad, 0xaf, +0x1a, 0xe2, 0xfe, 0xd8, 0x5b, 0x60, 0xa0, 0x08, 0xe2, 0xa0, 0x0c, 0x2f, 0x7c, 0xe7, 0xcc, 0xa9, +0x71, 0x97, 0xd1, 0xae, 0x57, 0x83, 0x54, 0xfb, 0x87, 0x06, 0xd2, 0x4f, 0x6e, 0x51, 0x93, 0x09, +0x51, 0x34, 0xff, 0x88, 0xd2, 0xa3, 0x9b, 0x1f, 0x6e, 0xee, 0x14, 0xce, 0x5a, 0xc8, 0x01, 0x1d, +0x46, 0x13, 0xe6, 0x39, 0x94, 0x37, 0x57, 0x53, 0xb7, 0x2b, 0x15, 0x5b, 0xac, 0xae, 0x74, 0x1f, +0x5d, 0x3f, 0x5f, 0x64, 0x91, 0xad, 0x8e, 0x02, 0x11, 0x46, 0x33, 0x78, 0x24, 0x50, 0xda, 0x8f, +0xd2, 0x23, 0xe7, 0x43, 0x51, 0x90, 0xdc, 0x32, 0x94, 0x80, 0x00, 0x00, 0x9e, 0x68, 0x55, 0xeb, +0x00, 0x01, 0xfb, 0xaf, 0x0a, 0xf0, 0xd8, 0x0f, 0x72, 0xf4, 0x50, 0x4d, 0x3e, 0x30, 0x0d, 0x8b, +0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x59, 0x5a, }; + +#else +const unsigned char wifi_firmware_image[] = { +0x57, 0x4c, 0x46, 0x57, 0x1c, 0xd1, 0x03, 0x00, +0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x94, 0x51, 0x1a, +0x1c, 0xf0, 0x9f, 0xe5, 0x1c, 0xf0, 0x9f, 0xe5, 0x1c, 0xf0, 0x9f, 0xe5, 0x1c, 0xf0, 0x9f, 0xe5, +0x1c, 0xf0, 0x9f, 0xe5, 0x1c, 0xf0, 0x9f, 0xe5, 0x1c, 0xf0, 0x9f, 0xe5, 0x1c, 0xf0, 0x9f, 0xe5, +0x22, 0x00, 0x00, 0x00, 0x94, 0x6f, 0x02, 0x00, 0x6c, 0x6f, 0x02, 0x00, 0x70, 0x6f, 0x02, 0x00, +0x74, 0x6f, 0x02, 0x00, 0x78, 0x6f, 0x02, 0x00, 0x7c, 0x6f, 0x02, 0x00, 0x80, 0x6f, 0x02, 0x00, +0x8d, 0x6f, 0x02, 0x00, 0x00, 0x00, 0x00, 0xea, 0xc3, 0x84, 0x00, 0xea, 0x28, 0x00, 0x8f, 0xe2, +0x00, 0x0c, 0x90, 0xe8, 0x00, 0xa0, 0x8a, 0xe0, 0x00, 0xb0, 0x8b, 0xe0, 0x01, 0x70, 0x4a, 0xe2, +0x0b, 0x00, 0x5a, 0xe1, 0xbc, 0x84, 0x00, 0x0a, 0x0f, 0x00, 0xba, 0xe8, 0x14, 0xe0, 0x4f, 0xe2, +0x01, 0x00, 0x13, 0xe3, 0x03, 0xf0, 0x47, 0x10, 0x13, 0xff, 0x2f, 0xe1, 0x9c, 0x75, 0x02, 0x00, +0xdc, 0x75, 0x02, 0x00, 0x00, 0x30, 0xa0, 0xe3, 0x00, 0x40, 0xa0, 0xe3, 0x00, 0x50, 0xa0, 0xe3, +0x00, 0x60, 0xa0, 0xe3, 0x10, 0x20, 0x52, 0xe2, 0x78, 0x00, 0xa1, 0x28, 0xfc, 0xff, 0xff, 0x8a, +0x82, 0x2e, 0xb0, 0xe1, 0x30, 0x00, 0xa1, 0x28, 0x00, 0x30, 0x81, 0x45, 0x1e, 0xff, 0x2f, 0xe1, +0x04, 0x30, 0x9f, 0xe5, 0x03, 0x30, 0x8f, 0xe0, 0x13, 0xff, 0x2f, 0xe1, 0xe1, 0x15, 0x02, 0x00, +0x00, 0x20, 0x70, 0x47, 0x10, 0xb5, 0x14, 0x4c, 0x20, 0x68, 0x00, 0x28, 0x0c, 0xd1, 0x00, 0xf0, +0x27, 0xfd, 0x20, 0x60, 0x11, 0x4a, 0x20, 0x21, 0xa0, 0x60, 0x0b, 0xf3, 0xa4, 0xf9, 0x10, 0x4a, +0x60, 0x68, 0x20, 0x21, 0x0b, 0xf3, 0x9f, 0xf9, 0x10, 0xbd, 0x10, 0xb5, 0x0a, 0x4c, 0x20, 0x68, +0x00, 0x28, 0x08, 0xd0, 0x00, 0x22, 0x13, 0x21, 0x0b, 0xf3, 0x95, 0xf9, 0x20, 0x68, 0x0b, 0xf3, +0x76, 0xf9, 0x00, 0x20, 0x20, 0x60, 0x10, 0xbd, 0x02, 0x00, 0x03, 0x48, 0x10, 0xb5, 0x00, 0x68, +0x68, 0x21, 0x0b, 0xf3, 0x88, 0xf9, 0x10, 0xbd, 0x18, 0xee, 0x00, 0xc0, 0xe1, 0x16, 0x02, 0x00, +0xff, 0x16, 0x02, 0x00, 0x10, 0xb5, 0x26, 0xf0, 0x7a, 0xef, 0x05, 0xf3, 0x3f, 0xff, 0x00, 0x20, +0x10, 0xbd, 0xb6, 0x48, 0x10, 0xb5, 0x00, 0x68, 0x00, 0x02, 0x2f, 0xd5, 0xb4, 0x4c, 0xb5, 0x4a, +0x00, 0x20, 0xc1, 0x1c, 0x09, 0x01, 0x61, 0x61, 0x23, 0x69, 0x81, 0x00, 0x53, 0x50, 0x03, 0x1d, +0x1b, 0x01, 0x63, 0x61, 0x23, 0x69, 0x89, 0x18, 0x80, 0x1c, 0x0c, 0x28, 0x4b, 0x60, 0xf0, 0xdb, +0xad, 0x48, 0xff, 0xf7, 0xd1, 0xff, 0x26, 0xf0, 0xbe, 0xef, 0xff, 0x21, 0xab, 0x4a, 0x2d, 0x31, +0x02, 0xe0, 0x40, 0x1c, 0x88, 0x42, 0xfc, 0xdb, 0x50, 0x78, 0x00, 0x28, 0xf9, 0xd0, 0xa8, 0x48, +0x60, 0x61, 0xa8, 0x48, 0x20, 0x61, 0x01, 0x20, 0x40, 0x03, 0x60, 0x61, 0xa6, 0x48, 0x20, 0x61, +0xa3, 0x48, 0xe0, 0x38, 0x60, 0x61, 0x05, 0x20, 0x20, 0x61, 0x05, 0xe0, 0x9e, 0x48, 0x40, 0x1c, +0xff, 0xf7, 0xb2, 0xff, 0x26, 0xf0, 0x9e, 0xef, 0x01, 0x20, 0x10, 0xbd, 0x9b, 0x49, 0x10, 0xb5, +0x48, 0x60, 0x00, 0xf0, 0x3b, 0xff, 0x10, 0xbd, 0x20, 0x28, 0x00, 0xd3, 0xfe, 0xe7, 0x9b, 0x4a, +0x80, 0x00, 0x13, 0x58, 0x00, 0x2b, 0x00, 0xd0, 0xfe, 0xe7, 0x11, 0x50, 0x00, 0x20, 0x70, 0x47, +0x96, 0x4a, 0x00, 0x21, 0x80, 0x00, 0x11, 0x50, 0x08, 0x00, 0x70, 0x47, 0x02, 0x68, 0x83, 0x68, +0xc1, 0x68, 0x10, 0x00, 0x18, 0x47, 0x70, 0xb5, 0x05, 0x28, 0x04, 0xd2, 0x90, 0x4d, 0x84, 0x00, +0x2b, 0x59, 0x00, 0x2b, 0x01, 0xd0, 0x01, 0x20, 0x70, 0xbd, 0x2c, 0x23, 0x8c, 0x4e, 0x43, 0x43, +0xdc, 0x3e, 0x9b, 0x19, 0x2b, 0x51, 0x35, 0x00, 0x04, 0x01, 0xf0, 0x35, 0x28, 0x51, 0x60, 0x19, +0xc2, 0x60, 0x81, 0x60, 0x00, 0x21, 0x41, 0x60, 0x86, 0x49, 0x19, 0x61, 0x58, 0x61, 0x00, 0x20, +0x70, 0xbd, 0xfe, 0xb5, 0x0e, 0x00, 0x17, 0x00, 0x05, 0x28, 0x15, 0xd2, 0x80, 0x49, 0x02, 0x01, +0x14, 0x31, 0x55, 0x18, 0x69, 0x68, 0x7e, 0x4b, 0x84, 0x00, 0x00, 0x29, 0x0d, 0xd1, 0x01, 0x22, +0x01, 0x97, 0x00, 0x96, 0x02, 0x92, 0x18, 0x59, 0x43, 0x69, 0x02, 0x69, 0x07, 0xf3, 0x90, 0xfa, +0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x68, 0x60, 0xfe, 0xbd, 0x18, 0x59, 0x1d, 0x00, 0x07, 0xf3, +0xc3, 0xfa, 0x28, 0x59, 0x3a, 0x00, 0x31, 0x00, 0x07, 0xf3, 0x70, 0xfa, 0x28, 0x59, 0x07, 0xf3, +0x5d, 0xfa, 0xfe, 0xbd, 0x69, 0x49, 0x70, 0xb5, 0x08, 0x78, 0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, +0x08, 0x70, 0x01, 0x21, 0x49, 0x04, 0x40, 0x18, 0xff, 0xf7, 0x3e, 0xff, 0x6a, 0x4d, 0x6c, 0x6a, +0xe0, 0x07, 0x05, 0xd0, 0x03, 0xf3, 0x88, 0xef, 0x0b, 0xf3, 0x18, 0xf9, 0xa8, 0x17, 0x68, 0x62, +0x66, 0x4e, 0xa0, 0x07, 0x0c, 0xd5, 0xa8, 0x6a, 0x02, 0x21, 0x88, 0x43, 0xa8, 0x62, 0x20, 0x20, +0xf0, 0x60, 0x49, 0x1f, 0x69, 0x62, 0xb1, 0x68, 0x01, 0x43, 0xb1, 0x60, 0x0b, 0xf3, 0xfe, 0xf8, +0x60, 0x07, 0x05, 0xd5, 0xa8, 0x6a, 0x04, 0x21, 0x88, 0x43, 0xa8, 0x62, 0x0b, 0xf3, 0x1f, 0xfc, +0x20, 0x07, 0x0a, 0xd5, 0xa8, 0x6a, 0x08, 0x21, 0x88, 0x43, 0xa8, 0x62, 0x80, 0x20, 0xf0, 0x60, +0xc9, 0x43, 0x69, 0x62, 0xb1, 0x68, 0x01, 0x43, 0xb1, 0x60, 0x01, 0x20, 0x70, 0xbd, 0x70, 0xb5, +0x01, 0x24, 0x52, 0x4d, 0x84, 0x40, 0xec, 0x60, 0x00, 0x20, 0x22, 0xf0, 0x7f, 0xf9, 0xa8, 0x68, +0x20, 0x43, 0xa8, 0x60, 0x01, 0x20, 0x70, 0xbd, 0x01, 0x21, 0x4c, 0x4a, 0x81, 0x40, 0x10, 0xb5, +0xd1, 0x60, 0x0f, 0x38, 0x00, 0xd5, 0xfe, 0xe7, 0x02, 0x28, 0x00, 0xdb, 0xfe, 0xe7, 0x48, 0x4c, +0x00, 0x23, 0x80, 0x00, 0x04, 0x19, 0x23, 0x60, 0x45, 0x4c, 0x40, 0x34, 0x00, 0x19, 0x03, 0x62, +0x90, 0x68, 0x08, 0x43, 0x90, 0x60, 0x01, 0x20, 0x10, 0xbd, 0xf8, 0xb5, 0x41, 0x4d, 0xec, 0x68, +0xe0, 0x07, 0x02, 0xd0, 0xa8, 0x17, 0xe8, 0x60, 0x04, 0x40, 0x20, 0x06, 0x06, 0xd5, 0x80, 0x20, +0xc0, 0x43, 0xe8, 0x60, 0x80, 0x20, 0x84, 0x43, 0x00, 0xf0, 0x3b, 0xfd, 0x20, 0x04, 0x07, 0xd5, +0x01, 0x26, 0xf6, 0x03, 0x30, 0x00, 0x00, 0xf0, 0x34, 0xfd, 0xf0, 0x43, 0xe8, 0x60, 0xb4, 0x43, +0x60, 0x03, 0x40, 0x0f, 0x06, 0xd0, 0x07, 0x20, 0x00, 0x04, 0x21, 0x00, 0x01, 0x40, 0xc9, 0x43, +0xe9, 0x60, 0x84, 0x43, 0x20, 0x02, 0x00, 0x0f, 0x09, 0xd0, 0x0f, 0x27, 0x3f, 0x05, 0x26, 0x00, +0x3e, 0x40, 0x30, 0x00, 0x00, 0xf0, 0xd2, 0xfc, 0xf0, 0x43, 0xe8, 0x60, 0xbc, 0x43, 0xe0, 0x00, +0x40, 0x0f, 0x09, 0xd0, 0x07, 0x27, 0xbf, 0x06, 0x26, 0x00, 0x3e, 0x40, 0x30, 0x00, 0x00, 0xf0, +0x5f, 0xfc, 0xf0, 0x43, 0xe8, 0x60, 0xbc, 0x43, 0xe0, 0x06, 0x0f, 0xd5, 0x10, 0x20, 0xc0, 0x43, +0xe8, 0x60, 0x10, 0x20, 0x84, 0x43, 0x22, 0xf0, 0x09, 0xf8, 0x00, 0x28, 0x06, 0xd0, 0x04, 0xf0, +0x83, 0xfd, 0x00, 0x28, 0x02, 0xd0, 0x10, 0x20, 0x00, 0xf0, 0xac, 0xfb, 0x00, 0x2c, 0x05, 0xda, +0x01, 0x20, 0xc0, 0x07, 0x00, 0xf0, 0x5f, 0xfc, 0x17, 0x48, 0xe8, 0x60, 0x13, 0x49, 0x88, 0x68, +0x01, 0x22, 0x92, 0x05, 0x10, 0x43, 0x88, 0x60, 0xf8, 0xbd, 0x10, 0x4b, 0x44, 0x15, 0x2f, 0x20, +0x01, 0x00, 0x00, 0x00, 0xfc, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x5a, 0xef, 0x5e, 0x13, +0x01, 0x22, 0x92, 0x05, 0x10, 0xb5, 0xda, 0x60, 0xff, 0xf7, 0x99, 0xff, 0x01, 0x20, 0x10, 0xbd, +0x00, 0x31, 0x00, 0x80, 0x80, 0x29, 0x00, 0x80, 0x00, 0x54, 0x02, 0xc0, 0x40, 0x00, 0x01, 0x00, +0x58, 0x76, 0x02, 0x00, 0xf0, 0x20, 0x00, 0x00, 0xff, 0x0c, 0x00, 0x00, 0x07, 0x00, 0x80, 0xff, +0x50, 0x3d, 0x00, 0x04, 0x7c, 0x78, 0x02, 0x00, 0xdd, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x80, +0x00, 0x30, 0x00, 0x80, 0x40, 0xe8, 0x00, 0x80, 0x80, 0x22, 0x00, 0x80, 0xff, 0xff, 0xff, 0x7f, +0x30, 0xb5, 0x04, 0x00, 0x20, 0x20, 0x20, 0x81, 0x65, 0x69, 0x20, 0x18, 0xad, 0x7a, 0x05, 0x70, +0x64, 0x69, 0xe4, 0x7a, 0x44, 0x70, 0x01, 0x71, 0x09, 0x0a, 0x41, 0x71, 0x11, 0x0a, 0x82, 0x71, +0xc1, 0x71, 0x19, 0x0a, 0x83, 0x70, 0xc1, 0x70, 0x30, 0xbd, 0xf7, 0xb5, 0x07, 0x00, 0x48, 0x78, +0x0e, 0x00, 0x09, 0x78, 0x05, 0x02, 0x0d, 0x43, 0x20, 0x35, 0x28, 0x00, 0x34, 0x30, 0x01, 0x04, +0x09, 0x0c, 0x00, 0x22, 0xff, 0x48, 0x1d, 0xf3, 0x6b, 0xf8, 0x04, 0x00, 0x21, 0xd0, 0x28, 0x00, +0x14, 0x30, 0xa0, 0x80, 0x67, 0x61, 0x20, 0x27, 0xe0, 0x19, 0x14, 0x21, 0x27, 0x81, 0x1c, 0xf3, +0x9e, 0xeb, 0x2b, 0x04, 0x02, 0x9a, 0x1b, 0x0c, 0x14, 0x21, 0x20, 0x00, 0xff, 0xf7, 0xc8, 0xff, +0x34, 0x20, 0x20, 0x81, 0x20, 0x18, 0x2a, 0x00, 0x31, 0x00, 0x1c, 0xf3, 0xca, 0xea, 0x00, 0x21, +0x20, 0x00, 0x21, 0xf0, 0xa0, 0xf9, 0x20, 0x7b, 0x20, 0x28, 0x04, 0xd1, 0x20, 0x00, 0x21, 0xf0, +0x8b, 0xf9, 0x00, 0x20, 0xfe, 0xbd, 0x27, 0x81, 0x23, 0xf0, 0x0d, 0xfe, 0x00, 0x28, 0x02, 0xd0, +0x05, 0x20, 0x0a, 0xf0, 0x06, 0xfa, 0x21, 0xf0, 0x43, 0xf9, 0xe8, 0x4b, 0x05, 0x00, 0xe6, 0x48, +0x21, 0x00, 0x1c, 0x68, 0x00, 0x22, 0x00, 0x68, 0x05, 0x23, 0xa0, 0x47, 0x28, 0x00, 0x21, 0xf0, +0x3b, 0xf9, 0x01, 0x20, 0xfe, 0xbd, 0xff, 0xb5, 0x01, 0x20, 0x90, 0x40, 0x83, 0xb0, 0x03, 0x9f, +0x04, 0x06, 0x24, 0x0e, 0xff, 0x37, 0x41, 0x37, 0xf8, 0x79, 0x0e, 0x00, 0x15, 0x00, 0x20, 0x42, +0x2f, 0xd1, 0xff, 0x22, 0x91, 0x32, 0x46, 0x23, 0x01, 0xa9, 0x02, 0xa8, 0x04, 0xf0, 0x7b, 0xff, +0x00, 0x28, 0x26, 0xd0, 0xf8, 0x79, 0x17, 0x21, 0x20, 0x43, 0xf8, 0x71, 0x01, 0x9c, 0x10, 0x34, +0x20, 0x00, 0x1c, 0xf3, 0x4c, 0xeb, 0x06, 0x98, 0x00, 0x28, 0x01, 0xd1, 0x05, 0x20, 0x00, 0xe0, +0x0d, 0x20, 0x60, 0x72, 0x25, 0x72, 0x20, 0x00, 0x62, 0x7a, 0x0c, 0x99, 0x0a, 0x30, 0x1c, 0xf3, +0x78, 0xea, 0x31, 0x00, 0x06, 0x22, 0x0c, 0x31, 0xa0, 0x1c, 0x1c, 0xf3, 0x72, 0xea, 0x60, 0x7a, +0x01, 0x99, 0x0a, 0x30, 0x88, 0x72, 0x00, 0x0a, 0xc8, 0x72, 0x02, 0x99, 0x03, 0x98, 0x04, 0xf0, +0x1d, 0xff, 0x07, 0xb0, 0xf0, 0xbd, 0xff, 0xb5, 0x9f, 0xb0, 0x06, 0x00, 0x08, 0x00, 0x37, 0x68, +0x00, 0x21, 0x17, 0x91, 0x21, 0x99, 0x7c, 0x69, 0x00, 0x29, 0x10, 0xd0, 0x40, 0x30, 0x1e, 0x90, +0x1c, 0xf3, 0x98, 0xeb, 0x22, 0x99, 0x05, 0x00, 0x41, 0x18, 0xc0, 0x78, 0x20, 0x31, 0x40, 0x06, +0x02, 0xd4, 0xb8, 0x88, 0x23, 0xb0, 0xf0, 0xbd, 0x28, 0x88, 0x68, 0x28, 0x01, 0xd8, 0x00, 0x20, +0xf8, 0xe7, 0x19, 0xaa, 0x18, 0x91, 0x00, 0x92, 0x21, 0x99, 0x18, 0x98, 0x1a, 0xaa, 0x17, 0xab, +0x10, 0xf3, 0x08, 0xf9, 0x28, 0x00, 0x10, 0xf3, 0x2c, 0xf9, 0x00, 0x28, 0x53, 0xd0, 0xac, 0x48, +0x00, 0x21, 0x04, 0xaa, 0x01, 0xab, 0x07, 0xc3, 0x18, 0xab, 0xaa, 0x4a, 0x00, 0x92, 0x1d, 0x79, +0x10, 0xab, 0x1a, 0x7f, 0x38, 0x00, 0x2b, 0x00, 0x1a, 0xa9, 0x0e, 0xf3, 0x4c, 0xfb, 0x05, 0x00, +0x2d, 0xd1, 0x20, 0x00, 0xff, 0x30, 0x41, 0x30, 0xc1, 0x79, 0x09, 0x06, 0x24, 0xd5, 0x00, 0x2c, +0x0c, 0xd0, 0x09, 0x21, 0x89, 0x01, 0x61, 0x18, 0xc9, 0x6b, 0x00, 0x29, 0x06, 0xd0, 0x18, 0xab, +0x1a, 0x79, 0x92, 0x00, 0x68, 0x32, 0x8b, 0x58, 0x5b, 0x1c, 0x8b, 0x50, 0xc1, 0x79, 0x49, 0x06, +0x49, 0x0e, 0xc1, 0x71, 0x1e, 0x98, 0x1c, 0xf3, 0x4e, 0xeb, 0x18, 0xab, 0x1d, 0x79, 0x21, 0x99, +0x2a, 0x01, 0x52, 0x1b, 0x52, 0x18, 0x0e, 0x32, 0x00, 0x92, 0x01, 0x00, 0x10, 0xab, 0x1b, 0x7f, +0x2a, 0x00, 0x20, 0x00, 0xff, 0xf7, 0x57, 0xff, 0x00, 0x20, 0x30, 0x60, 0xaf, 0xe7, 0x35, 0x60, +0x28, 0x89, 0x1e, 0x99, 0x40, 0x19, 0x1c, 0xf3, 0x46, 0xeb, 0x00, 0x88, 0xa8, 0x80, 0x20, 0x00, +0xff, 0x30, 0x41, 0x30, 0x18, 0xab, 0x1b, 0x79, 0x01, 0x26, 0x32, 0x00, 0xc1, 0x79, 0x9a, 0x40, +0x91, 0x43, 0xc1, 0x71, 0x1d, 0xe0, 0x10, 0xab, 0x19, 0x7f, 0x00, 0x91, 0x01, 0x95, 0x2a, 0x88, +0x18, 0x99, 0x18, 0x98, 0x64, 0x3a, 0x09, 0x1d, 0x1a, 0xab, 0x12, 0xf3, 0xa8, 0xfd, 0x06, 0x00, +0x1c, 0xd0, 0x20, 0x00, 0x18, 0xab, 0x1a, 0x79, 0xff, 0x30, 0x41, 0x30, 0x01, 0x23, 0xc1, 0x79, +0x93, 0x40, 0x99, 0x43, 0xc1, 0x71, 0x28, 0x88, 0x08, 0x38, 0x28, 0x80, 0xb8, 0x88, 0x08, 0x38, +0xb8, 0x80, 0x00, 0x2c, 0x08, 0xd0, 0x09, 0x20, 0x80, 0x01, 0x20, 0x18, 0xc0, 0x6b, 0x00, 0x28, +0x02, 0xd0, 0x41, 0x6e, 0x49, 0x1c, 0x41, 0x66, 0x30, 0x00, 0x6b, 0xe7, 0x00, 0x2c, 0x14, 0xd0, +0x09, 0x20, 0x80, 0x01, 0x20, 0x18, 0xc1, 0x6b, 0x00, 0x29, 0x0e, 0xd0, 0x18, 0xab, 0x1a, 0x79, +0x92, 0x00, 0x68, 0x32, 0x8b, 0x58, 0x5b, 0x1c, 0x8b, 0x50, 0xc1, 0x6b, 0x0a, 0x69, 0x52, 0x1c, +0x0a, 0x61, 0xc0, 0x6b, 0xc1, 0x68, 0x49, 0x1c, 0xc1, 0x60, 0x1e, 0x98, 0x1c, 0xf3, 0xe2, 0xea, +0x01, 0x00, 0x18, 0xab, 0x18, 0x79, 0x21, 0x9a, 0x03, 0x01, 0x1b, 0x1a, 0x9a, 0x18, 0x0e, 0x32, +0x00, 0x92, 0x02, 0x00, 0x10, 0xab, 0x1b, 0x7f, 0x20, 0x00, 0xff, 0xf7, 0xec, 0xfe, 0xd3, 0xe7, +0x00, 0x28, 0x0c, 0xd0, 0x09, 0x21, 0x89, 0x01, 0x41, 0x18, 0xc8, 0x6b, 0x00, 0x28, 0x06, 0xd0, +0x02, 0x69, 0x52, 0x1c, 0x02, 0x61, 0xc8, 0x6b, 0xc1, 0x6c, 0x49, 0x1c, 0xc1, 0x64, 0x70, 0x47, +0xff, 0xb5, 0x83, 0xb0, 0x04, 0x00, 0x1e, 0x00, 0x0c, 0x9f, 0x0e, 0x9d, 0x24, 0xf0, 0x6c, 0xfa, +0x00, 0x28, 0x20, 0xd0, 0x60, 0x7a, 0x02, 0x28, 0x1d, 0xd0, 0x08, 0x2e, 0x1b, 0xd3, 0x08, 0x2f, +0x01, 0xd3, 0x01, 0x20, 0x05, 0xe7, 0x38, 0x00, 0x1d, 0xf3, 0x78, 0xfb, 0x03, 0x00, 0x80, 0x00, +0xa9, 0x25, 0x00, 0x19, 0xad, 0x00, 0x11, 0x9a, 0x10, 0x99, 0x40, 0x19, 0x6d, 0x46, 0x07, 0xc5, +0x58, 0x00, 0xad, 0x21, 0x00, 0x19, 0x89, 0x00, 0x43, 0x18, 0x0d, 0x9a, 0x05, 0x99, 0x04, 0x98, +0x0f, 0xf3, 0x74, 0xff, 0xed, 0xe6, 0x0f, 0xa8, 0x07, 0xc8, 0x6c, 0x46, 0x2b, 0x00, 0x07, 0xc4, +0xf3, 0xe7, 0xf7, 0xb5, 0x92, 0xb0, 0x14, 0x00, 0x0f, 0x00, 0x12, 0x98, 0x00, 0x68, 0x0d, 0x90, +0x00, 0x20, 0x0a, 0x90, 0x0d, 0x98, 0x45, 0x69, 0x08, 0x00, 0x40, 0x30, 0x11, 0x90, 0x1c, 0xf3, +0x82, 0xea, 0x06, 0x00, 0x24, 0x30, 0x09, 0x90, 0x28, 0x00, 0x0d, 0xf0, 0x3d, 0xf8, 0x21, 0x00, +0x2c, 0x31, 0x10, 0x91, 0x09, 0x1d, 0x20, 0x37, 0x00, 0x28, 0x0f, 0x91, 0xb0, 0xe9, 0xdd, 0x33, +0x01, 0x00, 0x00, 0x00, 0xf8, 0x07, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x09, 0x35, 0x8d, 0x7f, +0x22, 0xd0, 0x10, 0x98, 0x07, 0xaa, 0x08, 0xa9, 0x03, 0xab, 0x07, 0xc3, 0x6b, 0x46, 0xe0, 0x79, +0x0f, 0x9a, 0x01, 0x07, 0x38, 0x7e, 0x09, 0x0f, 0x40, 0x07, 0x40, 0x0f, 0x07, 0xc3, 0x00, 0x21, +0xb0, 0x78, 0x09, 0x9a, 0x03, 0x09, 0x28, 0x00, 0xff, 0xf7, 0x9c, 0xff, 0x00, 0x28, 0x0b, 0xd0, +0x00, 0x2d, 0x08, 0xd0, 0x09, 0x20, 0x80, 0x01, 0x28, 0x18, 0xc0, 0x6b, 0x00, 0x28, 0xf8, 0xd0, +0x01, 0x6d, 0x49, 0x1c, 0x01, 0x65, 0x95, 0xe0, 0x30, 0x88, 0x68, 0x28, 0xfb, 0xd9, 0x22, 0x00, +0x4c, 0x32, 0x68, 0x38, 0x03, 0x04, 0x11, 0x1f, 0x08, 0x1f, 0x06, 0x92, 0x02, 0x1f, 0x05, 0x91, +0x04, 0x90, 0x03, 0x92, 0x0c, 0x39, 0x38, 0x38, 0x1c, 0x3a, 0x02, 0x91, 0x01, 0x90, 0x00, 0x92, +0x38, 0x7e, 0x1b, 0x0c, 0x47, 0x07, 0x7f, 0x0f, 0x1a, 0x00, 0x09, 0x99, 0x30, 0x00, 0x3b, 0x00, +0x12, 0xf3, 0xd7, 0xfb, 0x07, 0x00, 0x30, 0x00, 0x0f, 0xf3, 0xdd, 0xff, 0x00, 0x28, 0x49, 0xd0, +0x00, 0x20, 0x0b, 0xaa, 0x0a, 0xa9, 0x09, 0xe0, 0x44, 0x00, 0x00, 0x04, 0x1c, 0xee, 0x00, 0xc0, +0x58, 0xee, 0x00, 0xc0, 0x30, 0x54, 0x02, 0xc0, 0x48, 0x1b, 0x01, 0xc0, 0x00, 0x91, 0x01, 0x92, +0x0a, 0x90, 0x0d, 0x9b, 0x09, 0x9a, 0x31, 0x00, 0x38, 0x00, 0x0f, 0xf3, 0xa4, 0xfe, 0x00, 0x28, +0x58, 0xd0, 0x93, 0x4a, 0x00, 0x92, 0x93, 0x4a, 0x93, 0x4b, 0x0d, 0x98, 0x31, 0x00, 0x1c, 0xf3, +0x53, 0xff, 0x00, 0x28, 0x02, 0xd1, 0x12, 0x99, 0x08, 0x60, 0x4b, 0xe0, 0x12, 0x99, 0x06, 0x00, +0x08, 0x60, 0x01, 0x89, 0x08, 0x18, 0x11, 0x99, 0x1c, 0xf3, 0x0e, 0xea, 0x0e, 0x90, 0x0a, 0x98, +0x00, 0x28, 0x4a, 0xd0, 0x0b, 0xaa, 0x00, 0x92, 0x09, 0x99, 0x0e, 0x98, 0x23, 0x00, 0x32, 0x00, +0x0f, 0xf3, 0xb0, 0xfe, 0x07, 0x00, 0x40, 0xd1, 0x00, 0x2d, 0x08, 0xd0, 0x09, 0x20, 0x80, 0x01, +0x28, 0x18, 0xc0, 0x6b, 0x00, 0x28, 0x02, 0xd0, 0x01, 0x68, 0x49, 0x1c, 0x01, 0x60, 0x0e, 0x98, +0x80, 0x79, 0x22, 0xe0, 0x00, 0x2f, 0x28, 0xd0, 0x38, 0x07, 0x80, 0x0f, 0x0f, 0xd0, 0x00, 0x2d, +0x20, 0xd0, 0x09, 0x20, 0x80, 0x01, 0x29, 0x18, 0xc8, 0x6b, 0x00, 0x28, 0x1a, 0xd0, 0xc2, 0x6c, +0x52, 0x1c, 0xc2, 0x64, 0xc8, 0x6b, 0x01, 0x69, 0x49, 0x1c, 0x01, 0x61, 0x12, 0xe0, 0xb8, 0x07, +0x10, 0xd5, 0x00, 0x2d, 0x08, 0xd0, 0x09, 0x20, 0x80, 0x01, 0x28, 0x18, 0xc0, 0x6b, 0x00, 0x28, +0x02, 0xd0, 0x01, 0x68, 0x49, 0x1c, 0x01, 0x60, 0xb0, 0x79, 0xc1, 0x07, 0xc9, 0x0f, 0x28, 0x00, +0x26, 0xf0, 0xc0, 0xeb, 0x00, 0x20, 0x15, 0xb0, 0xf0, 0xbd, 0x30, 0x88, 0x14, 0x38, 0x30, 0x80, +0x0d, 0x98, 0x0d, 0x99, 0x80, 0x88, 0x14, 0x38, 0x88, 0x80, 0x07, 0x9c, 0x6b, 0x46, 0x1a, 0x8c, +0x10, 0x99, 0x0f, 0x98, 0x23, 0x00, 0x0f, 0xf3, 0x80, 0xfe, 0x00, 0x2f, 0x0a, 0xd1, 0x00, 0x2d, +0x08, 0xd0, 0x09, 0x20, 0x80, 0x01, 0x28, 0x18, 0xc0, 0x6b, 0x00, 0x28, 0x02, 0xd0, 0x41, 0x6e, +0x49, 0x1c, 0x41, 0x66, 0x01, 0x20, 0xde, 0xe7, 0xf7, 0xb5, 0x82, 0xb0, 0x14, 0x00, 0x07, 0x00, +0x00, 0x68, 0x00, 0x90, 0x01, 0x90, 0x03, 0x98, 0x00, 0x25, 0x40, 0x30, 0x1c, 0xf3, 0x8c, 0xe9, +0x06, 0x00, 0x01, 0x98, 0xf1, 0x78, 0x40, 0x69, 0x49, 0x06, 0x05, 0xd4, 0x20, 0x30, 0x80, 0x7e, +0x40, 0x07, 0x31, 0xd4, 0x01, 0x25, 0x2f, 0xe0, 0x00, 0x2c, 0x02, 0xd1, 0x00, 0x20, 0x05, 0xb0, +0xf0, 0xbd, 0xa1, 0x7a, 0xc9, 0x07, 0x20, 0xd0, 0xe0, 0x79, 0x00, 0x07, 0x00, 0x0f, 0x01, 0x28, +0x05, 0xd1, 0x03, 0x99, 0x22, 0x00, 0x68, 0x46, 0xff, 0xf7, 0xdd, 0xfe, 0x05, 0xe0, 0x03, 0x99, +0x22, 0x00, 0x04, 0x23, 0x68, 0x46, 0xff, 0xf7, 0xc0, 0xfd, 0x05, 0x00, 0x00, 0x98, 0x38, 0x60, +0xb0, 0x79, 0xc0, 0x07, 0x10, 0xd1, 0x00, 0x2d, 0x0e, 0xd0, 0xa0, 0x79, 0x80, 0x07, 0x0b, 0xd5, +0xa0, 0x7a, 0xfd, 0x21, 0x08, 0x40, 0xa0, 0x72, 0x06, 0xe0, 0x09, 0x21, 0x89, 0x01, 0x40, 0x18, +0xc0, 0x6b, 0x81, 0x68, 0x49, 0x1c, 0x81, 0x60, 0x28, 0x00, 0xd0, 0xe7, 0xf3, 0xb5, 0x89, 0xb0, +0x05, 0x00, 0x0a, 0x98, 0x00, 0x28, 0x14, 0xd0, 0x2c, 0x89, 0x6e, 0x69, 0x61, 0x19, 0x20, 0x22, +0x01, 0xa8, 0x1c, 0xf3, 0x00, 0xe8, 0x6b, 0x46, 0x98, 0x79, 0x01, 0xaf, 0x00, 0x07, 0x81, 0x0f, +0x01, 0x20, 0x88, 0x40, 0x29, 0x49, 0x09, 0x88, 0x08, 0x42, 0x04, 0xd1, 0x28, 0x00, 0x20, 0xf0, +0xbd, 0xfe, 0x0b, 0xb0, 0xf0, 0xbd, 0x20, 0x00, 0x20, 0x21, 0x6c, 0x18, 0x20, 0x38, 0x29, 0x81, +0x20, 0x71, 0x00, 0x0a, 0x6b, 0x46, 0x60, 0x71, 0x98, 0x8b, 0x00, 0x09, 0x20, 0x72, 0x00, 0x0a, +0x60, 0x72, 0xb0, 0x7a, 0x20, 0x70, 0xf0, 0x7a, 0x60, 0x70, 0xa0, 0x36, 0x0e, 0x20, 0x30, 0x5e, +0x23, 0xf0, 0x3f, 0xf8, 0x20, 0x73, 0x0a, 0x20, 0x30, 0x5e, 0x23, 0xf0, 0x2d, 0xf8, 0x60, 0x73, +0xff, 0x20, 0xa0, 0x72, 0x0a, 0x9a, 0x3b, 0x00, 0x21, 0x00, 0x28, 0x00, 0x20, 0xf0, 0xa6, 0xff, +0x05, 0x20, 0xa0, 0x71, 0x00, 0x20, 0xe0, 0x71, 0x01, 0x20, 0x60, 0x74, 0x20, 0x74, 0xa8, 0x88, +0xa0, 0x70, 0x00, 0x0a, 0x22, 0x00, 0x0b, 0x32, 0xe0, 0x70, 0x0a, 0x98, 0xd1, 0x1c, 0x1d, 0xf3, +0x62, 0xf8, 0x20, 0xf0, 0x47, 0xfe, 0x0b, 0x4b, 0x06, 0x00, 0x09, 0x48, 0x1c, 0x68, 0x00, 0x22, +0x29, 0x00, 0x00, 0x68, 0x05, 0x23, 0xa0, 0x47, 0x30, 0x00, 0x20, 0xf0, 0x3f, 0xfe, 0xb8, 0xe7, +0x3c, 0x1b, 0x01, 0xc0, 0x44, 0x1b, 0x01, 0xc0, 0x30, 0x54, 0x02, 0xc0, 0x00, 0x00, 0x00, 0x04, +0x1c, 0xee, 0x00, 0xc0, 0x58, 0xee, 0x00, 0xc0, 0x01, 0x00, 0x02, 0xa0, 0x10, 0xb5, 0x0a, 0xf3, +0x32, 0xfc, 0x10, 0xbd, 0x73, 0x64, 0x69, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x10, 0xb5, 0x04, 0x00, +0xc0, 0x20, 0x0d, 0xf0, 0xba, 0xfa, 0x00, 0xf0, 0x08, 0xfa, 0xe0, 0x06, 0x02, 0xd5, 0x0b, 0xf0, +0x9e, 0xf8, 0x10, 0xbd, 0x0b, 0xf0, 0x3f, 0xf8, 0x10, 0xbd, 0x00, 0x20, 0xee, 0xe7, 0x00, 0x00, +0x05, 0x28, 0x03, 0xd2, 0x59, 0x49, 0x80, 0x00, 0x08, 0x5c, 0x70, 0x47, 0xff, 0x20, 0x70, 0x47, +0x0a, 0x00, 0x03, 0x20, 0x10, 0xb5, 0xff, 0xf7, 0xf3, 0xff, 0x90, 0x42, 0x01, 0xd1, 0xff, 0xf7, +0xec, 0xff, 0x10, 0xbd, 0xff, 0x28, 0x0b, 0xd0, 0x50, 0x4a, 0x00, 0x21, 0x8b, 0x00, 0xd3, 0x5c, +0x83, 0x42, 0x02, 0xd1, 0x08, 0x06, 0x00, 0x0e, 0x70, 0x47, 0x49, 0x1c, 0x05, 0x29, 0xf5, 0xd3, +0xff, 0x20, 0x70, 0x47, 0xff, 0x28, 0x0c, 0xd0, 0x48, 0x4a, 0x00, 0x21, 0x8b, 0x00, 0x9b, 0x18, +0x5b, 0x78, 0x83, 0x42, 0x02, 0xd1, 0x88, 0x00, 0x10, 0x5c, 0x70, 0x47, 0x49, 0x1c, 0x05, 0x29, +0xf4, 0xd3, 0xff, 0x20, 0x70, 0x47, 0x05, 0x28, 0x04, 0xd2, 0x40, 0x49, 0x80, 0x00, 0x40, 0x18, +0x40, 0x78, 0x70, 0x47, 0xff, 0x20, 0x70, 0x47, 0xff, 0x28, 0x0c, 0xd0, 0x3b, 0x4a, 0x00, 0x21, +0x8b, 0x00, 0xd3, 0x5c, 0x83, 0x42, 0x03, 0xd1, 0x88, 0x00, 0x80, 0x18, 0x40, 0x78, 0x70, 0x47, +0x49, 0x1c, 0x05, 0x29, 0xf4, 0xd3, 0xff, 0x20, 0x70, 0x47, 0xff, 0x28, 0x0b, 0x2a, 0xf2, 0xcf, +0x01, 0x00, 0x00, 0x00, 0xf4, 0x0b, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xfd, 0x5a, 0xf8, 0xcb, +0x0c, 0xd0, 0x33, 0x4a, 0x00, 0x21, 0x8b, 0x00, 0xd3, 0x5c, 0x83, 0x42, 0x03, 0xd1, 0x88, 0x00, +0x80, 0x18, 0x80, 0x78, 0x70, 0x47, 0x49, 0x1c, 0x05, 0x29, 0xf4, 0xd3, 0xff, 0x20, 0x70, 0x47, +0x2b, 0x4a, 0x00, 0x21, 0x8b, 0x00, 0xd3, 0x5c, 0x83, 0x42, 0x06, 0xd1, 0x88, 0x00, 0x80, 0x18, +0xc0, 0x78, 0x40, 0x07, 0xc0, 0x17, 0x40, 0x1c, 0x70, 0x47, 0x49, 0x1c, 0x05, 0x29, 0xf1, 0xd3, +0x00, 0x20, 0x70, 0x47, 0x70, 0xb5, 0x05, 0x00, 0x0c, 0x00, 0x10, 0x00, 0x00, 0xf0, 0x41, 0xf9, +0x20, 0x00, 0x00, 0xf0, 0xc4, 0xf8, 0x28, 0x00, 0xff, 0xf7, 0xa6, 0xff, 0x02, 0x28, 0x05, 0xd0, +0x03, 0x28, 0x03, 0xd0, 0x04, 0x28, 0x01, 0xd0, 0x05, 0x28, 0x03, 0xd1, 0x20, 0x00, 0x00, 0xf0, +0x6b, 0xf8, 0x70, 0xbd, 0x20, 0x00, 0x0d, 0xf0, 0x54, 0xfa, 0x70, 0xbd, 0x10, 0xb5, 0x04, 0x00, +0xc0, 0x00, 0x05, 0xd5, 0x01, 0x22, 0x12, 0x03, 0x11, 0x04, 0x0c, 0x20, 0xff, 0xf7, 0xda, 0xff, +0x20, 0x01, 0x05, 0xd5, 0x01, 0x22, 0xd2, 0x02, 0x11, 0x04, 0x0b, 0x20, 0xff, 0xf7, 0xd2, 0xff, +0x60, 0x01, 0x05, 0xd5, 0x01, 0x22, 0x92, 0x02, 0x11, 0x04, 0x0a, 0x20, 0xff, 0xf7, 0xca, 0xff, +0x10, 0xbd, 0x01, 0x20, 0xc0, 0x03, 0x10, 0xb5, 0x00, 0xf0, 0x0b, 0xf9, 0x01, 0x20, 0xc0, 0x07, +0x00, 0xf0, 0x8d, 0xf8, 0x03, 0x49, 0xc8, 0x68, 0x80, 0x22, 0x90, 0x43, 0xc8, 0x60, 0x10, 0xbd, +0xe0, 0xf0, 0x00, 0xc0, 0x00, 0x28, 0x00, 0x80, 0xf3, 0xb5, 0x81, 0xb0, 0x0f, 0x00, 0x01, 0x98, +0xff, 0xf7, 0x52, 0xff, 0x05, 0x00, 0x01, 0x98, 0xff, 0xf7, 0x78, 0xff, 0x06, 0x00, 0x01, 0x98, +0xff, 0xf7, 0x85, 0xff, 0x04, 0x00, 0x03, 0x2d, 0x07, 0xd1, 0x04, 0x2e, 0x05, 0xd1, 0x10, 0x20, +0x00, 0xf0, 0xe7, 0xf8, 0xb0, 0x04, 0x00, 0xf0, 0x73, 0xf8, 0x00, 0x2f, 0x16, 0xd1, 0x01, 0x98, +0xff, 0xf7, 0x86, 0xff, 0x00, 0x28, 0x11, 0xd0, 0x23, 0x1f, 0x1c, 0xf3, 0xc2, 0xe8, 0x06, 0x0f, +0x0f, 0x0f, 0x0f, 0x07, 0x04, 0x0f, 0x00, 0x21, 0x10, 0x20, 0x05, 0xe0, 0x26, 0x49, 0xa8, 0x00, +0x40, 0x18, 0xc0, 0x78, 0x00, 0x21, 0xc0, 0x08, 0x09, 0xf3, 0x23, 0xfe, 0xff, 0x22, 0x01, 0x99, +0x10, 0x00, 0xff, 0xf7, 0x17, 0xff, 0xfe, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0xc0, 0x02, 0x03, 0xd5, +0x01, 0x21, 0x02, 0x20, 0xff, 0xf7, 0xc0, 0xff, 0xa0, 0x02, 0x03, 0xd5, 0x01, 0x21, 0x03, 0x20, +0xff, 0xf7, 0xba, 0xff, 0x60, 0x02, 0x03, 0xd5, 0x01, 0x21, 0x04, 0x20, 0xff, 0xf7, 0xb4, 0xff, +0x20, 0x02, 0x03, 0xd5, 0x01, 0x21, 0x05, 0x20, 0xff, 0xf7, 0xae, 0xff, 0x01, 0x20, 0x00, 0x07, +0x84, 0x42, 0x05, 0xd0, 0x40, 0x10, 0x84, 0x42, 0x02, 0xd0, 0x40, 0x10, 0x84, 0x42, 0x1a, 0xd1, +0xff, 0x20, 0x82, 0x06, 0xa1, 0x18, 0x08, 0xd0, 0x89, 0x18, 0x04, 0xd0, 0xc2, 0x06, 0x89, 0x18, +0x04, 0xd1, 0x0c, 0x20, 0x02, 0xe0, 0x0b, 0x20, 0x00, 0xe0, 0x0a, 0x20, 0xff, 0xf7, 0xfc, 0xfe, +0x02, 0x28, 0x05, 0xd0, 0x03, 0x28, 0x03, 0xd0, 0x04, 0x28, 0x01, 0xd0, 0x05, 0x28, 0x02, 0xd1, +0x01, 0x21, 0xff, 0xf7, 0x89, 0xff, 0x10, 0xbd, 0xe0, 0xf0, 0x00, 0xc0, 0x13, 0x49, 0x0a, 0x68, +0x02, 0x43, 0x0a, 0x60, 0x8a, 0x68, 0x02, 0x43, 0x8a, 0x60, 0x01, 0x20, 0x70, 0x47, 0x0f, 0x49, +0x0a, 0x68, 0x82, 0x43, 0x0a, 0x60, 0x8a, 0x68, 0x82, 0x43, 0x8a, 0x60, 0x01, 0x20, 0x70, 0x47, +0x0a, 0x49, 0xc0, 0x43, 0xc8, 0x60, 0x01, 0x20, 0x70, 0x47, 0x10, 0xb5, 0x07, 0x4c, 0x80, 0x34, +0x21, 0x69, 0x62, 0x69, 0x0f, 0x23, 0xdb, 0x01, 0x99, 0x43, 0x9a, 0x43, 0x00, 0x28, 0x01, 0xd0, +0x1a, 0x43, 0x00, 0xe0, 0x19, 0x43, 0x21, 0x61, 0x62, 0x61, 0x10, 0xbd, 0x80, 0x22, 0x00, 0x80, +0x83, 0x48, 0x00, 0x68, 0x41, 0x68, 0x01, 0x22, 0x52, 0x04, 0x91, 0x43, 0x41, 0x60, 0x70, 0x47, +0x7f, 0x48, 0x00, 0x68, 0x41, 0x68, 0x01, 0x22, 0x52, 0x04, 0x11, 0x43, 0x41, 0x60, 0x70, 0x47, +0x7b, 0x48, 0x00, 0x68, 0x81, 0x6b, 0x09, 0x01, 0x09, 0x0c, 0x01, 0xd0, 0x00, 0x20, 0x70, 0x47, +0x81, 0x6b, 0x00, 0x29, 0x04, 0xda, 0x81, 0x6b, 0x09, 0x06, 0x09, 0x0f, 0xfb, 0xd1, 0x00, 0xe0, +0x80, 0x6b, 0x01, 0x20, 0x70, 0x47, 0x72, 0x49, 0x09, 0x68, 0x8a, 0x69, 0x12, 0x0c, 0x12, 0x04, +0x02, 0x43, 0x8a, 0x61, 0x70, 0x47, 0x6e, 0x48, 0x00, 0x68, 0x81, 0x6b, 0xc9, 0x07, 0xfc, 0xd0, +0x41, 0x68, 0x01, 0x22, 0xd2, 0x03, 0x91, 0x43, 0x41, 0x60, 0x70, 0x47, 0x68, 0x49, 0x09, 0x68, +0x0a, 0x6b, 0x08, 0x63, 0x48, 0x68, 0x01, 0x22, 0xd2, 0x03, 0x10, 0x43, 0x48, 0x60, 0x70, 0x47, +0x63, 0x48, 0x00, 0x68, 0x40, 0x6a, 0x70, 0x47, 0x61, 0x49, 0x09, 0x68, 0x80, 0x31, 0x4a, 0x6a, +0x00, 0x01, 0x12, 0x0f, 0x12, 0x07, 0x00, 0x09, 0x02, 0x43, 0x4a, 0x62, 0x70, 0x47, 0x5c, 0x48, +0x00, 0x68, 0xc0, 0x6a, 0x70, 0x47, 0x5a, 0x49, 0x09, 0x68, 0xca, 0x69, 0x82, 0x43, 0xca, 0x61, +0x70, 0x47, 0x57, 0x49, 0x09, 0x68, 0xca, 0x69, 0x02, 0x43, 0xca, 0x61, 0x70, 0x47, 0x54, 0x49, +0x09, 0x68, 0x0a, 0x6a, 0x02, 0x43, 0x0a, 0x62, 0x70, 0x47, 0x51, 0x49, 0x09, 0x68, 0x0a, 0x6a, +0x82, 0x43, 0x0a, 0x62, 0x70, 0x47, 0x4e, 0x48, 0x00, 0x68, 0x80, 0x30, 0x41, 0x68, 0x49, 0x08, +0x49, 0x00, 0x41, 0x60, 0x70, 0x47, 0x4a, 0x48, 0x00, 0x68, 0x80, 0x30, 0x41, 0x68, 0x01, 0x22, +0x11, 0x43, 0x41, 0x60, 0x70, 0x47, 0x70, 0xb5, 0x45, 0x4d, 0x28, 0x68, 0x80, 0x30, 0x01, 0x68, +0x01, 0x22, 0x11, 0x43, 0x01, 0x60, 0x01, 0x68, 0x42, 0x4c, 0x49, 0x02, 0x05, 0xd5, 0x01, 0x68, +0xa1, 0x43, 0x01, 0x60, 0x0a, 0x20, 0x26, 0xf0, 0x72, 0xe8, 0x28, 0x68, 0x80, 0x30, 0x01, 0x68, +0x21, 0x43, 0x01, 0x60, 0x70, 0xbd, 0x3a, 0x48, 0x00, 0x68, 0x01, 0x00, 0x80, 0x31, 0x0a, 0x68, +0x52, 0x08, 0x52, 0x00, 0x0a, 0x60, 0x81, 0x6b, 0xc9, 0x00, 0xfc, 0xd4, 0x70, 0x47, 0x34, 0x48, +0x00, 0x68, 0x80, 0x30, 0x01, 0x68, 0x33, 0x4a, 0x91, 0x43, 0x01, 0x60, 0x70, 0x47, 0x30, 0x48, +0x00, 0x68, 0x80, 0x30, 0xc0, 0x68, 0x70, 0x47, 0x70, 0xb5, 0x2d, 0x4d, 0x29, 0x68, 0x0e, 0x69, +0x0c, 0x00, 0x01, 0x21, 0x09, 0x04, 0x0e, 0x43, 0x26, 0x61, 0x21, 0x00, 0x80, 0x31, 0x0e, 0x69, +0x08, 0x61, 0x48, 0x69, 0x4b, 0x61, 0x88, 0x69, 0xf0, 0x20, 0x88, 0x61, 0xc8, 0x69, 0xca, 0x61, +0xa0, 0x68, 0x10, 0x21, 0x08, 0x43, 0xa0, 0x60, 0xa0, 0x68, 0x20, 0x22, 0x90, 0x43, 0xa0, 0x60, +0x28, 0x68, 0x41, 0x6b, 0x43, 0x6b, 0x8b, 0x42, 0xfc, 0xd0, 0xff, 0xf7, 0xd8, 0xff, 0x00, 0x28, +0xf6, 0xd1, 0x28, 0x68, 0x81, 0x68, 0x11, 0x43, 0x81, 0x60, 0x41, 0x68, 0x01, 0x22, 0x52, 0x03, +0x11, 0x43, 0x41, 0x60, 0x70, 0xbd, 0x16, 0x48, 0x00, 0x68, 0x80, 0x30, 0x00, 0x69, 0x70, 0x47, +0x13, 0x48, 0x00, 0x68, 0x81, 0x68, 0x20, 0x22, 0x11, 0x43, 0x81, 0x60, 0x70, 0x47, 0x10, 0x48, +0x00, 0x68, 0x81, 0x68, 0x20, 0x22, 0x91, 0x43, 0x81, 0x60, 0x70, 0x47, 0x5d, 0x9e, 0x23, 0x03, +0x01, 0x00, 0x00, 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xae, 0x80, 0x2b, 0xa7, +0x0c, 0x49, 0x09, 0x68, 0x80, 0x31, 0x0a, 0x68, 0x1f, 0x23, 0xdb, 0x05, 0xc0, 0x06, 0x9a, 0x43, +0x00, 0x09, 0x02, 0x43, 0x0a, 0x60, 0x08, 0x68, 0x01, 0x22, 0x12, 0x07, 0x10, 0x43, 0x08, 0x60, +0x70, 0x47, 0x04, 0x48, 0x00, 0x68, 0x80, 0x30, 0x01, 0x68, 0xff, 0x22, 0x52, 0x1c, 0x11, 0x43, +0x01, 0x60, 0x70, 0x47, 0x2c, 0xee, 0x00, 0xc0, 0x00, 0x00, 0x40, 0x00, 0x38, 0xb5, 0x00, 0x24, +0x0c, 0x4d, 0x01, 0xe0, 0x80, 0x47, 0x64, 0x1c, 0xa0, 0x00, 0x28, 0x58, 0x00, 0x28, 0xf9, 0xd1, +0x09, 0x48, 0x0b, 0x49, 0x02, 0x68, 0x00, 0x92, 0x08, 0x4a, 0x0a, 0x48, 0x0a, 0x4b, 0x07, 0xf3, +0x57, 0xfc, 0x0a, 0xf0, 0xd2, 0xfc, 0x09, 0x48, 0x01, 0x68, 0x00, 0x29, 0x01, 0xd0, 0x00, 0x20, +0x88, 0x47, 0x38, 0xbd, 0x50, 0xb6, 0x02, 0xc0, 0x0c, 0xf1, 0x00, 0xc0, 0xb8, 0x48, 0x00, 0x04, +0x3c, 0x00, 0x00, 0x04, 0x30, 0x00, 0x00, 0x04, 0x00, 0x80, 0x02, 0xc0, 0x30, 0xee, 0x00, 0xc0, +0xfe, 0xb5, 0x0d, 0x00, 0x16, 0x00, 0x08, 0x9f, 0x0a, 0x9a, 0x09, 0x99, 0x00, 0x28, 0x00, 0xd1, +0xfe, 0xe7, 0x04, 0x68, 0x00, 0x2c, 0x00, 0xd1, 0xfe, 0xe7, 0x02, 0x92, 0x01, 0x91, 0x32, 0x00, +0x29, 0x00, 0x20, 0x00, 0x00, 0x97, 0x0e, 0xf0, 0x23, 0xfd, 0xfe, 0xbd, 0x10, 0xb5, 0x06, 0xf3, +0x1b, 0xfa, 0x00, 0x06, 0x00, 0x0e, 0x10, 0xbd, 0x10, 0xb5, 0x06, 0xf3, 0xa7, 0xf9, 0x00, 0x06, +0x00, 0x0e, 0x10, 0xbd, 0x00, 0x28, 0x10, 0xb5, 0x01, 0xd0, 0x06, 0xf3, 0xdb, 0xf9, 0x10, 0xbd, +0x38, 0xb5, 0x14, 0x00, 0x6a, 0x46, 0x06, 0xf3, 0x35, 0xf9, 0x00, 0x98, 0x20, 0x70, 0x00, 0x20, +0x38, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x06, 0xf3, 0x87, 0xf8, 0x20, 0x60, 0x00, 0x20, 0x10, 0xbd, +0x10, 0xb5, 0x06, 0xf3, 0x57, 0xf9, 0x10, 0xbd, 0x7c, 0xb5, 0x0d, 0x00, 0x16, 0x00, 0x07, 0x9a, +0x06, 0x99, 0x00, 0x28, 0x00, 0xd1, 0xfe, 0xe7, 0x04, 0x68, 0x00, 0x2c, 0x00, 0xd1, 0xfe, 0xe7, +0x01, 0x92, 0x00, 0x91, 0x32, 0x00, 0x29, 0x00, 0x20, 0x00, 0x0e, 0xf0, 0xc7, 0xfd, 0x00, 0x28, +0x00, 0xd1, 0x65, 0x63, 0x7c, 0xbd, 0x10, 0xb5, 0x41, 0x6b, 0x0e, 0xf0, 0xd6, 0xfd, 0x10, 0xbd, +0x7c, 0xb5, 0x0c, 0x00, 0x15, 0x00, 0x06, 0x9a, 0x00, 0x28, 0x00, 0xd1, 0xfe, 0xe7, 0x00, 0x68, +0x00, 0x28, 0x00, 0xd1, 0xfe, 0xe7, 0x00, 0x21, 0x01, 0x92, 0x00, 0x91, 0x2a, 0x00, 0x21, 0x00, +0x0e, 0xf0, 0xfc, 0xfc, 0x7c, 0xbd, 0x10, 0xb5, 0x0e, 0xf0, 0x17, 0xfd, 0x10, 0xbd, 0x00, 0x28, +0x10, 0xb5, 0x00, 0xd1, 0xfe, 0xe7, 0x00, 0x68, 0x00, 0x28, 0x00, 0xd1, 0xfe, 0xe7, 0x0e, 0xf0, +0x83, 0xfd, 0x10, 0xbd, 0x00, 0x28, 0x10, 0xd0, 0x09, 0x21, 0x89, 0x01, 0x42, 0x18, 0xd1, 0x6b, +0x00, 0x29, 0x0a, 0xd0, 0x0b, 0x69, 0x5b, 0x1c, 0x0b, 0x61, 0xd1, 0x6b, 0xcb, 0x68, 0x5b, 0x1c, +0xcb, 0x60, 0xd1, 0x6b, 0x0a, 0x6e, 0x52, 0x1c, 0x0a, 0x66, 0xff, 0x30, 0x41, 0x30, 0xc1, 0x79, +0x80, 0x22, 0x11, 0x43, 0xc1, 0x71, 0x70, 0x47, 0x70, 0x47, 0x06, 0x48, 0x14, 0x21, 0x10, 0xb5, +0x1b, 0xf3, 0xf0, 0xec, 0x04, 0x48, 0x01, 0x21, 0x01, 0x70, 0x00, 0x21, 0x81, 0x60, 0xc1, 0x60, +0x10, 0xbd, 0x00, 0x00, 0x30, 0x54, 0x02, 0xc0, 0x3c, 0x1b, 0x01, 0xc0, 0x90, 0x48, 0x41, 0x68, +0x10, 0x22, 0x11, 0x43, 0x41, 0x60, 0x70, 0x47, 0x70, 0x47, 0xf1, 0xb5, 0x82, 0xb0, 0x00, 0x26, +0x20, 0xf0, 0xcc, 0xfa, 0x00, 0x90, 0x8b, 0x48, 0x00, 0x21, 0x00, 0x68, 0x01, 0x28, 0x06, 0xd1, +0x88, 0x48, 0x02, 0x9a, 0x00, 0x69, 0x43, 0x69, 0x93, 0x42, 0x00, 0xd1, 0x41, 0x61, 0x86, 0x48, +0x44, 0x68, 0x01, 0x94, 0x25, 0x00, 0x1b, 0xe0, 0xa0, 0x00, 0x87, 0x18, 0xb8, 0x68, 0x02, 0x9b, +0x41, 0x69, 0x99, 0x42, 0x06, 0xd1, 0x76, 0x1c, 0x00, 0x21, 0x20, 0xf0, 0x9f, 0xfa, 0x00, 0x20, +0xb8, 0x60, 0x08, 0xe0, 0xa9, 0x00, 0x89, 0x18, 0x88, 0x60, 0x00, 0x20, 0x10, 0x2d, 0x01, 0x95, +0x00, 0xd0, 0x68, 0x1c, 0x05, 0x00, 0x00, 0x20, 0x10, 0x2c, 0x00, 0xd0, 0x60, 0x1c, 0x04, 0x00, +0x75, 0x4a, 0x00, 0x20, 0x11, 0x68, 0x10, 0x29, 0x00, 0xd0, 0x48, 0x1c, 0xa0, 0x42, 0xdb, 0xd1, +0x00, 0x2e, 0x07, 0xd0, 0x70, 0x48, 0x41, 0x68, 0xa9, 0x42, 0x01, 0xd1, 0x44, 0x60, 0x01, 0xe0, +0x01, 0x99, 0x01, 0x60, 0x6b, 0x48, 0x40, 0x68, 0x01, 0x28, 0x07, 0xd1, 0x6b, 0x48, 0x02, 0x99, +0x00, 0x68, 0x42, 0x69, 0x8a, 0x42, 0x01, 0xd1, 0x00, 0x21, 0x41, 0x61, 0x66, 0x48, 0x4c, 0x30, +0x44, 0x68, 0x01, 0x94, 0x25, 0x00, 0x00, 0x27, 0x28, 0xe0, 0x24, 0x20, 0x60, 0x43, 0x02, 0x9b, +0x86, 0x18, 0xf0, 0x68, 0x41, 0x69, 0x99, 0x42, 0x08, 0xd1, 0x7f, 0x1c, 0x21, 0xf0, 0x18, 0xfb, +0x30, 0x00, 0x0c, 0x30, 0x24, 0x21, 0x1b, 0xf3, 0x76, 0xec, 0x12, 0xe0, 0x24, 0x21, 0x69, 0x43, +0x8b, 0x18, 0xd8, 0x60, 0x30, 0x69, 0x18, 0x61, 0x31, 0x00, 0x18, 0x00, 0x14, 0x31, 0x14, 0x30, +0x1c, 0x22, 0x1b, 0xf3, 0x36, 0xec, 0x00, 0x20, 0x37, 0x2d, 0x01, 0x95, 0x00, 0xd0, 0x68, 0x1c, +0x05, 0x00, 0x00, 0x20, 0x37, 0x2c, 0x00, 0xd0, 0x60, 0x1c, 0x04, 0x00, 0x4e, 0x4a, 0x00, 0x20, +0x4c, 0x32, 0x11, 0x68, 0x37, 0x29, 0x00, 0xd0, 0x48, 0x1c, 0xa0, 0x42, 0xcd, 0xd1, 0x00, 0x2f, +0x08, 0xd0, 0x49, 0x48, 0x4c, 0x30, 0x41, 0x68, 0xa9, 0x42, 0x01, 0xd1, 0x44, 0x60, 0x01, 0xe0, +0x01, 0x99, 0x01, 0x60, 0x00, 0x98, 0x20, 0xf0, 0x3d, 0xfa, 0xfe, 0xbd, 0xf8, 0xb5, 0x05, 0x00, +0x00, 0x24, 0x20, 0xf0, 0x33, 0xfa, 0x3f, 0x49, 0x0a, 0x68, 0x01, 0x2a, 0x04, 0xd1, 0x09, 0x69, +0x49, 0x69, 0xa9, 0x42, 0x00, 0xd1, 0x01, 0x24, 0x3b, 0x4f, 0x00, 0x26, 0x3b, 0x68, 0x79, 0x68, +0x0b, 0xe0, 0x8a, 0x00, 0xd2, 0x19, 0x92, 0x68, 0x52, 0x69, 0xaa, 0x42, 0x00, 0xd1, 0x01, 0x24, +0x32, 0x00, 0x10, 0x29, 0x00, 0xd0, 0x4a, 0x1c, 0x11, 0x00, 0x00, 0x2c, 0x05, 0xd1, 0x32, 0x00, +0x10, 0x2b, 0x00, 0xd0, 0x5a, 0x1c, 0x8a, 0x42, 0xeb, 0xd1, 0x20, 0xf0, 0x13, 0xfa, 0x20, 0x00, +0xf8, 0xbd, 0x70, 0xb5, 0x0e, 0x00, 0x04, 0x98, 0x1d, 0x00, 0x01, 0x89, 0x0c, 0x18, 0x20, 0x78, +0x40, 0x07, 0x40, 0x0f, 0x90, 0x42, 0x0f, 0xd1, 0xe0, 0x6d, 0x29, 0x00, 0xff, 0x31, 0x80, 0x1d, +0x06, 0x22, 0x4a, 0x31, 0x1f, 0xf0, 0x1e, 0xff, 0x00, 0x28, 0x05, 0xd1, 0x68, 0x20, 0x06, 0x55, +0x21, 0x00, 0x28, 0x00, 0x21, 0xf0, 0xf6, 0xfa, 0x70, 0xbd, 0xff, 0xb5, 0x81, 0xb0, 0x1e, 0x00, +0x1c, 0x48, 0x01, 0x68, 0x01, 0x29, 0x06, 0xd1, 0x02, 0x69, 0x01, 0xa8, 0x00, 0x92, 0x07, 0xc8, +0x33, 0x00, 0xff, 0xf7, 0xd6, 0xff, 0x18, 0x49, 0x00, 0x27, 0x0d, 0x68, 0x38, 0x00, 0x10, 0x2d, +0x00, 0xd0, 0x68, 0x1c, 0x4c, 0x68, 0xa0, 0x42, 0x15, 0xd0, 0x0e, 0xe0, 0x12, 0x49, 0xa0, 0x00, +0x40, 0x18, 0x82, 0x68, 0x01, 0xa8, 0x00, 0x92, 0x07, 0xc8, 0x33, 0x00, 0xff, 0xf7, 0xc1, 0xff, +0x38, 0x00, 0x10, 0x2c, 0x00, 0xd0, 0x60, 0x1c, 0x04, 0x00, 0x38, 0x00, 0xa6, 0xbc, 0xbb, 0xc1, +0x01, 0x00, 0x00, 0x00, 0xec, 0x13, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x11, 0x45, 0x0e, 0x14, +0x10, 0x2d, 0x00, 0xd0, 0x68, 0x1c, 0xa0, 0x42, 0xea, 0xd1, 0x05, 0xb0, 0xf0, 0xbd, 0x07, 0x48, +0x00, 0x21, 0xc9, 0x43, 0x00, 0x22, 0x06, 0xc0, 0x44, 0x30, 0x42, 0x60, 0x01, 0x60, 0x04, 0x49, +0x81, 0x60, 0x70, 0x47, 0x00, 0xa0, 0x00, 0x90, 0x08, 0x00, 0x00, 0x04, 0x5c, 0x02, 0x00, 0x04, +0xd0, 0x3d, 0x00, 0x04, 0x00, 0x20, 0x70, 0x47, 0x10, 0xb5, 0x12, 0xf0, 0xd1, 0xfa, 0x10, 0xbd, +0x01, 0x00, 0xfd, 0x48, 0x10, 0xb5, 0xc0, 0x68, 0x07, 0x22, 0x20, 0xf0, 0xe7, 0xff, 0x00, 0x20, +0x10, 0xbd, 0xf8, 0xb5, 0x07, 0x00, 0xf8, 0x4d, 0x0a, 0xf3, 0x20, 0xf8, 0x04, 0x00, 0x0e, 0x00, +0xf6, 0x49, 0x38, 0x00, 0x0f, 0xf3, 0xfd, 0xf9, 0x0a, 0xf3, 0x18, 0xf8, 0x04, 0x1b, 0xe8, 0x6b, +0xb1, 0x41, 0x0b, 0x00, 0x00, 0x21, 0x00, 0x1b, 0x99, 0x41, 0x00, 0xd3, 0xec, 0x6b, 0xec, 0x63, +0xf8, 0xbd, 0xf1, 0xb5, 0x84, 0xb0, 0xec, 0x4c, 0xa0, 0x6a, 0x40, 0x1c, 0xa0, 0x62, 0x0a, 0xf3, +0x05, 0xf8, 0xeb, 0x4f, 0x02, 0x90, 0xfe, 0x6a, 0x0d, 0x00, 0xea, 0x48, 0xf8, 0x62, 0xea, 0x48, +0x40, 0x69, 0x21, 0x00, 0x01, 0x90, 0xe9, 0x48, 0x1e, 0x22, 0x1c, 0x31, 0x0f, 0xf3, 0xe7, 0xf9, +0x00, 0x28, 0x02, 0xd0, 0xa0, 0x6b, 0x40, 0x1c, 0xa0, 0x63, 0xfe, 0x62, 0xe2, 0x48, 0x80, 0x69, +0x60, 0x62, 0x09, 0xf3, 0xeb, 0xff, 0x02, 0x9a, 0x67, 0x6b, 0x86, 0x1a, 0xa9, 0x41, 0x0d, 0x00, +0x7a, 0x1c, 0x00, 0x20, 0x20, 0x6b, 0x61, 0x6b, 0x00, 0x23, 0x48, 0x43, 0x00, 0x21, 0x80, 0x19, +0x69, 0x41, 0x1b, 0xf3, 0xa4, 0xe8, 0x20, 0x63, 0x60, 0x6b, 0x40, 0x1c, 0x60, 0x63, 0xe0, 0x6a, +0x00, 0x21, 0x80, 0x1b, 0xa9, 0x41, 0x00, 0xd3, 0xe6, 0x6a, 0xe6, 0x62, 0xe0, 0x69, 0x21, 0x6a, +0x88, 0x42, 0x01, 0xd9, 0xe0, 0x69, 0x00, 0xe0, 0x20, 0x6a, 0x20, 0x62, 0x04, 0x9a, 0x01, 0x99, +0xce, 0x48, 0x11, 0x43, 0x88, 0x43, 0x01, 0xd0, 0xff, 0xf7, 0x9b, 0xff, 0xa2, 0x6b, 0xe1, 0x6a, +0x11, 0x20, 0x18, 0xf0, 0x87, 0xff, 0x05, 0xb0, 0xf0, 0xbd, 0xc9, 0x48, 0x00, 0x88, 0x00, 0x28, +0x04, 0xd0, 0xc8, 0x49, 0x01, 0x20, 0x09, 0x78, 0x04, 0x29, 0x00, 0xd0, 0x00, 0x20, 0x70, 0x47, +0x20, 0x20, 0x7d, 0xe7, 0xf8, 0xb5, 0x00, 0x24, 0xbb, 0x4d, 0x68, 0x68, 0x00, 0x28, 0x01, 0xd1, +0x20, 0x00, 0xf8, 0xbd, 0x20, 0xf0, 0x1c, 0xf9, 0x00, 0x90, 0xa8, 0x69, 0x01, 0x27, 0x3b, 0x00, +0x00, 0x28, 0x00, 0xd0, 0x00, 0x23, 0x00, 0x20, 0x39, 0x00, 0x81, 0x40, 0xaa, 0x69, 0x0e, 0x00, +0x16, 0x42, 0x02, 0xd1, 0x0c, 0x00, 0x0a, 0x43, 0xaa, 0x61, 0x40, 0x1c, 0x00, 0x2c, 0x01, 0xd1, +0x1f, 0x28, 0xf1, 0xdd, 0x00, 0x2b, 0x04, 0xd0, 0x10, 0xf3, 0x6d, 0xfc, 0xff, 0x20, 0xff, 0xf7, +0x78, 0xff, 0x00, 0x98, 0x20, 0xf0, 0x00, 0xf9, 0xda, 0xe7, 0x70, 0xb5, 0x04, 0x00, 0x20, 0xf0, +0xf7, 0xf8, 0x05, 0x00, 0xa4, 0x48, 0x00, 0x22, 0x41, 0x68, 0x00, 0x29, 0x01, 0xd1, 0x22, 0x60, +0x70, 0xbd, 0x23, 0x68, 0x81, 0x69, 0x99, 0x43, 0x81, 0x61, 0x22, 0x60, 0x07, 0xd1, 0xff, 0x20, +0xff, 0xf7, 0x47, 0xff, 0x10, 0xf3, 0x47, 0xfc, 0x01, 0x20, 0xff, 0xf7, 0x39, 0xff, 0x28, 0x00, +0x20, 0xf0, 0xe2, 0xf8, 0x70, 0xbd, 0x38, 0xb5, 0x04, 0x00, 0x41, 0x69, 0x6a, 0x46, 0x22, 0xf0, +0x57, 0xfc, 0x00, 0x28, 0x02, 0xd1, 0x20, 0x00, 0xff, 0xf7, 0x26, 0xff, 0x00, 0x28, 0x02, 0xd1, +0x20, 0x00, 0x1b, 0xf3, 0x9b, 0xff, 0x38, 0xbd, 0x38, 0xb5, 0x05, 0x22, 0x8e, 0x4c, 0x00, 0x21, +0xe0, 0x68, 0x20, 0xf0, 0x0b, 0xff, 0x94, 0x48, 0x05, 0x22, 0x00, 0x68, 0x00, 0x21, 0x20, 0xf0, +0x05, 0xff, 0x02, 0xe0, 0x00, 0x98, 0x1b, 0xf3, 0x89, 0xff, 0x20, 0x69, 0x04, 0x22, 0x00, 0x23, +0x69, 0x46, 0x20, 0xf0, 0xf7, 0xfe, 0x0f, 0x28, 0xf4, 0xd1, 0x8c, 0x48, 0x00, 0x25, 0x05, 0x70, +0x8b, 0x48, 0x12, 0x21, 0x1b, 0xf3, 0xb8, 0xea, 0x8a, 0x48, 0x25, 0x70, 0x05, 0x60, 0x00, 0x20, +0x38, 0xbd, 0x60, 0x23, 0x58, 0x43, 0x88, 0x4a, 0x10, 0xb5, 0x84, 0x18, 0xa0, 0x88, 0xe2, 0x88, +0x82, 0x42, 0x01, 0xd1, 0x01, 0x20, 0x10, 0xbd, 0x82, 0x00, 0xa2, 0x18, 0x92, 0x68, 0x0a, 0x60, +0x14, 0x21, 0x40, 0x1c, 0x1b, 0xf3, 0x54, 0xef, 0xa1, 0x80, 0xa0, 0x6d, 0x40, 0x1e, 0xa0, 0x65, +0x00, 0x20, 0x10, 0xbd, 0x70, 0xb5, 0x0c, 0x00, 0x41, 0x7a, 0x16, 0x00, 0x02, 0x29, 0x0a, 0xd1, +0x06, 0xf0, 0x05, 0xf8, 0x01, 0x28, 0x06, 0xd1, 0x30, 0x00, 0x1c, 0x38, 0x02, 0x21, 0x0a, 0xf0, +0x06, 0xfa, 0x01, 0x28, 0x0b, 0xd0, 0x60, 0x21, 0x61, 0x43, 0x73, 0x48, 0x0c, 0x18, 0xe5, 0x88, +0x14, 0x21, 0x68, 0x1c, 0x1b, 0xf3, 0x34, 0xef, 0xa0, 0x88, 0x88, 0x42, 0x01, 0xd1, 0x01, 0x20, +0x70, 0xbd, 0xa8, 0x00, 0x20, 0x18, 0x86, 0x60, 0xe1, 0x80, 0xa0, 0x6d, 0x40, 0x1c, 0xa0, 0x65, +0x00, 0x20, 0x70, 0xbd, 0x68, 0x48, 0x60, 0x21, 0x10, 0xb5, 0x1b, 0xf3, 0x6e, 0xea, 0x5a, 0x49, +0x00, 0x20, 0x48, 0x61, 0x10, 0xbd, 0x00, 0x1f, 0x10, 0xb5, 0x04, 0x06, 0x24, 0x0e, 0x04, 0x2c, +0x13, 0xd2, 0x60, 0x20, 0x60, 0x43, 0x60, 0x49, 0x40, 0x18, 0x60, 0x21, 0x1b, 0xf3, 0x5c, 0xea, +0x51, 0x4a, 0x01, 0x20, 0x51, 0x69, 0xa0, 0x40, 0x08, 0x43, 0x10, 0x21, 0xa1, 0x40, 0x01, 0x43, +0xff, 0x20, 0x40, 0x1c, 0xa0, 0x40, 0x81, 0x43, 0x51, 0x61, 0x10, 0xbd, 0xf8, 0xb5, 0x04, 0x1f, +0x04, 0x2c, 0x24, 0xd2, 0x20, 0xf0, 0x3c, 0xf8, 0x06, 0x00, 0x47, 0x4d, 0xff, 0x20, 0x40, 0x1c, +0x69, 0x69, 0xa0, 0x40, 0x08, 0x42, 0x0a, 0xd0, 0x03, 0xe0, 0x00, 0x98, 0x1c, 0x38, 0x21, 0xf0, +0x53, 0xf9, 0x20, 0x00, 0x69, 0x46, 0xff, 0xf7, 0x84, 0xff, 0x00, 0x28, 0xf5, 0xd0, 0xff, 0x21, +0x12, 0x31, 0x68, 0x69, 0xa1, 0x40, 0x88, 0x43, 0x68, 0x61, 0x60, 0x20, 0x60, 0x43, 0x46, 0x49, +0x40, 0x18, 0x60, 0x21, 0x1b, 0xf3, 0x28, 0xea, 0x30, 0x00, 0x20, 0xf0, 0x1d, 0xf8, 0xf8, 0xbd, +0xf8, 0xb5, 0x04, 0x1f, 0x04, 0x2c, 0x25, 0xd2, 0x20, 0xf0, 0x12, 0xf8, 0x06, 0x00, 0x32, 0x4d, +0xff, 0x20, 0x40, 0x1c, 0x69, 0x69, 0xa0, 0x40, 0x08, 0x42, 0x0b, 0xd0, 0x04, 0xe0, 0x00, 0x98, +0x00, 0x21, 0x1c, 0x38, 0x1f, 0xf0, 0xf4, 0xff, 0x20, 0x00, 0x69, 0x46, 0xff, 0xf7, 0x59, 0xff, +0x00, 0x28, 0xf4, 0xd0, 0xff, 0x21, 0x12, 0x31, 0x68, 0x69, 0xa1, 0x40, 0x88, 0x43, 0x68, 0x61, +0x60, 0x20, 0x60, 0x43, 0x30, 0x49, 0x40, 0x18, 0x60, 0x21, 0x1b, 0xf3, 0xfe, 0xe9, 0x30, 0x00, +0x1f, 0xf0, 0xf2, 0xff, 0xf8, 0xbd, 0xf8, 0xb5, 0x00, 0x24, 0x25, 0x00, 0x2a, 0x4e, 0xff, 0x27, +0x7f, 0x1c, 0x60, 0x20, 0x60, 0x43, 0x1c, 0x49, 0x35, 0x54, 0x38, 0x00, 0x49, 0x69, 0xa0, 0x40, +0x08, 0x42, 0x02, 0xd0, 0x01, 0x20, 0xff, 0xf7, 0x33, 0xfe, 0x64, 0x1c, 0x04, 0x2c, 0xf0, 0xdb, +0xf8, 0xbd, 0xf8, 0xb5, 0x05, 0x00, 0x1f, 0xf0, 0xd3, 0xff, 0x06, 0x00, 0x1f, 0x49, 0x20, 0x48, +0x25, 0xf0, 0x8a, 0xec, 0xff, 0xf7, 0xa6, 0xfe, 0x00, 0x90, 0x28, 0x00, 0x30, 0xda, 0x75, 0xba, +0x01, 0x00, 0x00, 0x00, 0xe8, 0x17, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x42, 0x9f, 0xdd, 0x78, +0xff, 0xf7, 0xf7, 0xfc, 0x00, 0x24, 0x20, 0x06, 0x00, 0x0e, 0x29, 0x00, 0x11, 0xf0, 0x88, 0xfd, +0x64, 0x1c, 0x04, 0x2c, 0xf7, 0xdb, 0x68, 0x46, 0xff, 0xf7, 0xc1, 0xfe, 0x30, 0x00, 0x1f, 0xf0, +0xbd, 0xff, 0xf8, 0xbd, 0x0b, 0x48, 0x00, 0x88, 0x00, 0x28, 0x05, 0xd0, 0x0a, 0x48, 0x01, 0x78, +0x03, 0x29, 0x01, 0xd1, 0x04, 0x21, 0x01, 0x70, 0x70, 0x47, 0x00, 0x00, 0xb0, 0x76, 0x02, 0x00, +0xff, 0xff, 0x00, 0x00, 0xc0, 0xa6, 0x00, 0x80, 0xff, 0x7f, 0xff, 0x7f, 0x40, 0xa2, 0x00, 0x80, +0xff, 0x03, 0x00, 0x00, 0x04, 0x36, 0x01, 0xc0, 0x35, 0xf0, 0x00, 0xc0, 0x0c, 0x77, 0x02, 0x00, +0x2c, 0x00, 0x00, 0x04, 0x9c, 0x3f, 0x00, 0x04, 0x00, 0x77, 0x02, 0x00, 0x1c, 0x3e, 0x00, 0x04, +0x11, 0x11, 0xff, 0xff, 0xbb, 0xbb, 0xbb, 0xbb, 0xff, 0x49, 0x00, 0x20, 0x48, 0x60, 0x70, 0x47, +0xfd, 0x49, 0x00, 0x20, 0x88, 0x60, 0x70, 0x47, 0xf7, 0xb5, 0x82, 0xb0, 0x06, 0x00, 0xfa, 0x4d, +0xa8, 0x68, 0x00, 0x28, 0x4a, 0xd1, 0xff, 0x21, 0xf8, 0x48, 0x00, 0x22, 0x2d, 0x31, 0x1b, 0xf3, +0x71, 0xfe, 0x04, 0x00, 0x42, 0xd0, 0x01, 0x20, 0x02, 0x21, 0xa8, 0x60, 0x21, 0x73, 0x66, 0x61, +0x61, 0x7b, 0x01, 0x43, 0xf2, 0x48, 0x61, 0x73, 0xa0, 0x61, 0xac, 0x20, 0x20, 0x81, 0xff, 0x20, +0x51, 0x30, 0x82, 0x5b, 0xef, 0x48, 0x00, 0x92, 0x00, 0x68, 0x32, 0x00, 0x03, 0x79, 0xb1, 0x20, +0x80, 0x00, 0x31, 0x18, 0x7e, 0x32, 0x20, 0x00, 0x0e, 0xf3, 0x33, 0xfe, 0x07, 0x00, 0x1c, 0x20, +0x25, 0x18, 0x20, 0x81, 0x70, 0x21, 0x28, 0x00, 0x1b, 0xf3, 0x60, 0xe9, 0x28, 0x00, 0x60, 0x30, +0x04, 0x99, 0x01, 0x90, 0x41, 0x72, 0x30, 0x00, 0xef, 0x65, 0x12, 0xf0, 0x84, 0xf9, 0xe3, 0x4a, +0xa8, 0x70, 0x12, 0x79, 0xe0, 0x49, 0x92, 0x06, 0x05, 0xd4, 0x00, 0x28, 0x03, 0xd0, 0xa8, 0x68, +0x4a, 0x07, 0x10, 0x43, 0xa8, 0x60, 0x01, 0x98, 0x03, 0x22, 0x02, 0x72, 0x20, 0x00, 0x12, 0xf0, +0xd5, 0xf8, 0x00, 0x28, 0x05, 0xd1, 0x20, 0x00, 0x1b, 0xf3, 0x02, 0xfe, 0x00, 0x20, 0x05, 0xb0, +0xf0, 0xbd, 0x01, 0x20, 0xfb, 0xe7, 0xff, 0xb5, 0x87, 0xb0, 0x07, 0x00, 0x00, 0x20, 0x04, 0x90, +0x0a, 0x98, 0x00, 0x28, 0x03, 0xd0, 0xcc, 0x48, 0x40, 0x68, 0x00, 0x28, 0x7e, 0xd1, 0xff, 0x24, +0x2d, 0x34, 0x02, 0xe0, 0x01, 0x20, 0xff, 0xf7, 0xc1, 0xfb, 0x21, 0x00, 0x38, 0x00, 0x04, 0xf0, +0x50, 0xfc, 0x05, 0x00, 0xf6, 0xd0, 0x28, 0x89, 0x46, 0x19, 0x38, 0x00, 0x23, 0xf0, 0x76, 0xf9, +0x00, 0x28, 0x01, 0xd0, 0x0c, 0x20, 0x00, 0xe0, 0x04, 0x20, 0xb1, 0x21, 0x05, 0x90, 0x38, 0x7a, +0x89, 0x00, 0x3a, 0x00, 0x79, 0x18, 0x7e, 0x32, 0x06, 0x28, 0x01, 0x92, 0x00, 0x91, 0x0a, 0xd1, +0x13, 0x00, 0x05, 0x9a, 0xcb, 0x33, 0x02, 0x21, 0x30, 0x00, 0x0e, 0xf3, 0x0f, 0xfe, 0xf0, 0x78, +0x40, 0x08, 0x40, 0x00, 0x08, 0xe0, 0x13, 0x00, 0x05, 0x9a, 0x02, 0x21, 0x30, 0x00, 0x0e, 0xf3, +0x05, 0xfe, 0xf0, 0x78, 0x01, 0x21, 0x08, 0x43, 0xf0, 0x70, 0xf0, 0x78, 0xef, 0x21, 0x08, 0x40, +0x08, 0x99, 0x2c, 0x00, 0xc9, 0x07, 0xc9, 0x0e, 0x08, 0x43, 0xf0, 0x70, 0xff, 0x20, 0xc0, 0x1c, +0x30, 0x71, 0x00, 0x0a, 0x70, 0x71, 0x00, 0x20, 0x30, 0x70, 0x70, 0x70, 0x1c, 0x20, 0x28, 0x81, +0x02, 0x20, 0x29, 0x00, 0x28, 0x73, 0x30, 0x31, 0x1c, 0x34, 0x03, 0x91, 0x70, 0x21, 0x20, 0x00, +0x1b, 0xf3, 0xdc, 0xe8, 0x21, 0x00, 0x60, 0x31, 0x11, 0x98, 0x06, 0x91, 0x77, 0x28, 0x48, 0x72, +0x01, 0xd0, 0x78, 0x28, 0x04, 0xd1, 0xa0, 0x68, 0x01, 0x21, 0x49, 0x06, 0x08, 0x43, 0xa0, 0x60, +0xe6, 0x65, 0x0a, 0x98, 0x00, 0x28, 0x0a, 0xd0, 0x01, 0x20, 0xc0, 0x07, 0x96, 0x49, 0xa0, 0x60, +0x01, 0x20, 0x48, 0x60, 0x69, 0x7b, 0x01, 0x43, 0x99, 0x48, 0x69, 0x73, 0xa8, 0x61, 0x00, 0x20, +0x20, 0x80, 0x05, 0x98, 0x0c, 0x28, 0x21, 0xd1, 0x09, 0x99, 0x38, 0x00, 0x23, 0xf0, 0x1a, 0xf9, +0x41, 0x07, 0x20, 0x78, 0x49, 0x0f, 0xc0, 0x08, 0xc0, 0x00, 0x00, 0xe0, 0x6c, 0xe0, 0x08, 0x43, +0x41, 0x07, 0x20, 0x70, 0x49, 0x0f, 0x38, 0x00, 0x23, 0xf0, 0x28, 0xfa, 0x01, 0x01, 0xe0, 0x6d, +0x02, 0x8b, 0x12, 0x07, 0x12, 0x0f, 0x0a, 0x43, 0x02, 0x83, 0xe0, 0x6d, 0x01, 0x7e, 0x09, 0x09, +0x09, 0x01, 0x01, 0x76, 0x20, 0x78, 0x9f, 0x21, 0x08, 0x40, 0x20, 0x70, 0x09, 0x9a, 0x21, 0x00, +0x38, 0x00, 0x00, 0x23, 0x23, 0xf0, 0x24, 0xf9, 0x10, 0x98, 0x80, 0x4e, 0x00, 0x28, 0x06, 0xd1, +0x06, 0x99, 0x09, 0x20, 0x08, 0x72, 0x38, 0x00, 0x12, 0xf0, 0xb5, 0xf8, 0x1f, 0xe0, 0x00, 0x21, +0x38, 0x00, 0x16, 0xf0, 0x85, 0xfe, 0x03, 0x28, 0xa0, 0x70, 0x1c, 0xd9, 0x30, 0x79, 0xc0, 0x06, +0x04, 0xd5, 0x76, 0x48, 0x40, 0x30, 0x80, 0x7d, 0x40, 0x06, 0x0c, 0xd5, 0x78, 0x7a, 0x02, 0x28, +0x11, 0xd1, 0x0b, 0x20, 0x80, 0x01, 0x38, 0x18, 0x00, 0x6a, 0x13, 0x21, 0x49, 0x01, 0x40, 0x18, +0x00, 0x79, 0x00, 0x07, 0x07, 0xd5, 0x03, 0x21, 0x38, 0x00, 0x12, 0xf0, 0x3e, 0xf8, 0xa0, 0x70, +0x01, 0x20, 0x00, 0x03, 0x04, 0x90, 0x30, 0x79, 0x80, 0x06, 0x07, 0xd4, 0xa0, 0x78, 0x00, 0x28, +0x04, 0xd0, 0xa0, 0x68, 0x01, 0x21, 0x89, 0x07, 0x08, 0x43, 0xa0, 0x60, 0x03, 0x99, 0x04, 0x98, +0xc8, 0x61, 0x39, 0x00, 0x28, 0x00, 0x02, 0xaa, 0x22, 0xf0, 0xc4, 0xf9, 0x01, 0x28, 0x0b, 0xd0, +0x04, 0x99, 0x28, 0x00, 0x11, 0xf0, 0xda, 0xff, 0x00, 0x28, 0x05, 0xd1, 0x28, 0x00, 0x0c, 0xf0, +0xe3, 0xf9, 0x28, 0x00, 0x1b, 0xf3, 0x04, 0xfd, 0x0b, 0xb0, 0xf0, 0xbd, 0xff, 0xb5, 0xff, 0x21, +0x2d, 0x31, 0x06, 0x00, 0x85, 0xb0, 0x04, 0xf0, 0x64, 0xfb, 0x07, 0x00, 0x7e, 0xd0, 0x30, 0x00, +0xff, 0x30, 0x31, 0x7a, 0x4a, 0x30, 0x01, 0x29, 0x04, 0x90, 0x02, 0xd0, 0x70, 0x7a, 0x02, 0x28, +0x04, 0xd1, 0x04, 0x99, 0x30, 0x00, 0x23, 0xf0, 0x75, 0xf8, 0x02, 0xe0, 0x30, 0x00, 0x23, 0xf0, +0x7d, 0xf8, 0x6b, 0x46, 0x03, 0x90, 0x18, 0x7e, 0xf3, 0x21, 0x08, 0x40, 0x08, 0x30, 0x18, 0x76, +0x03, 0x99, 0x00, 0x29, 0x03, 0xd0, 0x00, 0x07, 0x00, 0x0f, 0xc0, 0x30, 0x02, 0xe0, 0x00, 0x07, +0x00, 0x0f, 0x40, 0x30, 0x6b, 0x46, 0x18, 0x76, 0x38, 0x89, 0x32, 0x00, 0xc5, 0x19, 0xb1, 0x20, +0x80, 0x00, 0x7e, 0x32, 0x31, 0x18, 0x01, 0x92, 0x00, 0x91, 0x1c, 0x7e, 0x04, 0x9b, 0x20, 0x07, +0x81, 0x0f, 0x22, 0x09, 0x28, 0x00, 0x0e, 0xf3, 0x09, 0xfd, 0xff, 0x20, 0xc0, 0x1c, 0x28, 0x71, +0x00, 0x0a, 0x68, 0x71, 0x6b, 0x46, 0xac, 0x70, 0x58, 0x7e, 0xe8, 0x70, 0x70, 0x7a, 0x02, 0x28, +0x0d, 0xd1, 0x02, 0x21, 0x30, 0x00, 0x25, 0xf0, 0xa6, 0xea, 0xe9, 0x78, 0x8a, 0x06, 0xd2, 0x0f, +0x10, 0x43, 0xc0, 0x07, 0xdf, 0x22, 0x80, 0x0e, 0x11, 0x40, 0x01, 0x43, 0xe9, 0x70, 0x1c, 0x20, +0x38, 0x81, 0x3c, 0x18, 0x38, 0x00, 0xbd, 0x67, 0x08, 0x99, 0x7c, 0x30, 0x41, 0x72, 0x0e, 0x99, +0x01, 0x72, 0x03, 0x98, 0x00, 0x28, 0x35, 0xd0, 0x6b, 0x46, 0x98, 0x8b, 0xa3, 0x88, 0x43, 0x5b, +0x01, 0x00, 0x00, 0x00, 0xe4, 0x1b, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xb6, 0xf0, 0xa8, 0xcc, +0x20, 0x80, 0x70, 0x7a, 0x03, 0x28, 0x20, 0xd1, 0x30, 0x00, 0x1c, 0xf0, 0x4b, 0xfa, 0x01, 0x00, +0x30, 0x00, 0x23, 0xf0, 0x31, 0xf8, 0x41, 0x07, 0x20, 0x78, 0x49, 0x0f, 0xc0, 0x08, 0xc0, 0x00, +0x08, 0x43, 0x41, 0x07, 0x20, 0x70, 0x49, 0x0f, 0x30, 0x00, 0x23, 0xf0, 0x51, 0xf9, 0x01, 0x01, +0xe0, 0x6d, 0x02, 0x8b, 0x12, 0x07, 0x12, 0x0f, 0x0a, 0x43, 0x02, 0x83, 0x20, 0x78, 0x00, 0xe0, +0x33, 0xe0, 0x9f, 0x21, 0x08, 0x40, 0x20, 0x70, 0x0e, 0xe0, 0x0c, 0x4a, 0x50, 0x88, 0x01, 0x01, +0x40, 0x1c, 0x50, 0x80, 0x68, 0x7e, 0x2a, 0x7e, 0x00, 0x02, 0x10, 0x43, 0x00, 0x07, 0x00, 0x0f, +0x08, 0x43, 0x28, 0x76, 0x00, 0x0a, 0x68, 0x76, 0x00, 0x21, 0x30, 0x00, 0x16, 0xf0, 0xa2, 0xfd, +0xa0, 0x70, 0x08, 0x98, 0x31, 0x28, 0x1b, 0xd0, 0x02, 0xaa, 0x0d, 0xe0, 0x4c, 0x1b, 0x01, 0xc0, +0x6c, 0x00, 0x00, 0x04, 0x69, 0x18, 0x00, 0x00, 0x54, 0xf4, 0x00, 0xc0, 0x02, 0x14, 0x00, 0x00, +0x82, 0x55, 0x00, 0x04, 0x61, 0x18, 0x00, 0x00, 0x31, 0x00, 0x38, 0x00, 0x22, 0xf0, 0xfc, 0xf8, +0x01, 0x28, 0x05, 0xd1, 0x02, 0x98, 0x00, 0x28, 0x0c, 0xd0, 0x01, 0x20, 0x09, 0xb0, 0xf0, 0xbd, +0x00, 0x21, 0x38, 0x00, 0x11, 0xf0, 0x0c, 0xff, 0x01, 0x28, 0x03, 0xd0, 0x38, 0x00, 0x1b, 0xf3, +0x39, 0xfc, 0xf2, 0xe7, 0x00, 0x20, 0xf1, 0xe7, 0x02, 0x00, 0x89, 0x48, 0x10, 0xb5, 0x00, 0x68, +0x04, 0x21, 0x00, 0x23, 0xff, 0xf7, 0x4d, 0xfa, 0x00, 0x28, 0x04, 0xd1, 0x02, 0x20, 0xff, 0xf7, +0xb3, 0xfb, 0x00, 0x20, 0x10, 0xbd, 0x01, 0x20, 0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x81, 0x4d, +0x28, 0x68, 0x00, 0x79, 0xa0, 0x42, 0x01, 0xd0, 0x00, 0xf0, 0x73, 0xfb, 0x28, 0x68, 0x04, 0x71, +0x7d, 0x48, 0x44, 0x61, 0x70, 0xbd, 0x10, 0xb5, 0x22, 0xf0, 0x01, 0xfa, 0x00, 0x28, 0x01, 0xd1, +0x01, 0x20, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0x78, 0x49, 0x70, 0xb5, 0x01, 0x25, 0x09, 0x6b, +0x49, 0x07, 0x19, 0xd5, 0xff, 0x28, 0x04, 0xd1, 0x00, 0x24, 0x12, 0xf0, 0x31, 0xf9, 0x01, 0x00, +0x01, 0xe0, 0x01, 0x00, 0x04, 0x00, 0x72, 0x4b, 0x1e, 0x1f, 0x0a, 0xe0, 0xe0, 0x00, 0xc2, 0x18, +0x12, 0x68, 0x80, 0x19, 0x00, 0x68, 0x82, 0x42, 0x00, 0xd0, 0x00, 0x25, 0x64, 0x1c, 0x01, 0x2d, +0x08, 0xd1, 0x8c, 0x42, 0xf2, 0xd9, 0x05, 0xe0, 0x6a, 0x48, 0x81, 0x6a, 0xc0, 0x6a, 0x81, 0x42, +0x00, 0xd0, 0x00, 0x25, 0x28, 0x00, 0x70, 0xbd, 0xff, 0x20, 0x10, 0xb5, 0xff, 0xf7, 0xd4, 0xff, +0x00, 0x28, 0x01, 0xd0, 0x11, 0xf0, 0x82, 0xff, 0x10, 0xbd, 0x63, 0x48, 0x70, 0xb5, 0x00, 0x78, +0x00, 0x28, 0x4b, 0xd1, 0x61, 0x48, 0x00, 0x22, 0x00, 0x68, 0x08, 0x21, 0x09, 0xf3, 0x59, 0xfb, +0x00, 0x28, 0x43, 0xd1, 0xff, 0xf7, 0xe8, 0xff, 0x00, 0x28, 0x3f, 0xd0, 0x5c, 0x48, 0x06, 0xf3, +0x0c, 0xfe, 0x04, 0x00, 0x5a, 0x48, 0x08, 0x21, 0x06, 0xf3, 0x96, 0xfd, 0x05, 0x00, 0x58, 0x48, +0x10, 0x21, 0x06, 0xf3, 0x91, 0xfd, 0x28, 0x18, 0x84, 0x42, 0x2f, 0xd1, 0x55, 0x48, 0x06, 0xf3, +0xfc, 0xfd, 0x04, 0x00, 0x53, 0x48, 0x08, 0x21, 0x06, 0xf3, 0x86, 0xfd, 0x05, 0x00, 0x51, 0x48, +0x10, 0x21, 0x06, 0xf3, 0x81, 0xfd, 0x28, 0x18, 0x84, 0x42, 0x1f, 0xd1, 0x4e, 0x48, 0x06, 0xf3, +0xec, 0xfd, 0x04, 0x00, 0x4c, 0x48, 0x08, 0x21, 0x06, 0xf3, 0x76, 0xfd, 0x05, 0x00, 0x4a, 0x48, +0x10, 0x21, 0x06, 0xf3, 0x71, 0xfd, 0x28, 0x18, 0x84, 0x42, 0x0f, 0xd1, 0x47, 0x48, 0x06, 0xf3, +0xdc, 0xfd, 0x04, 0x00, 0x45, 0x48, 0x08, 0x21, 0x06, 0xf3, 0x66, 0xfd, 0x05, 0x00, 0x43, 0x48, +0x10, 0x21, 0x06, 0xf3, 0x61, 0xfd, 0x28, 0x18, 0x84, 0x42, 0x01, 0xd0, 0x00, 0x20, 0x70, 0xbd, +0x01, 0x20, 0x70, 0xbd, 0x70, 0xb5, 0x01, 0x20, 0x0b, 0xf0, 0x31, 0xfa, 0x00, 0x28, 0x5e, 0xd1, +0x3b, 0x4c, 0x35, 0x4d, 0x35, 0x4e, 0x08, 0xe0, 0x20, 0x78, 0x40, 0x1c, 0x20, 0x70, 0x01, 0x20, +0xff, 0xf7, 0x02, 0xfb, 0x01, 0x20, 0xff, 0xf7, 0x4b, 0xf9, 0x28, 0x78, 0x00, 0x28, 0xf3, 0xd1, +0x30, 0x68, 0x00, 0x22, 0x08, 0x21, 0x09, 0xf3, 0xf4, 0xfa, 0x00, 0x28, 0xec, 0xd1, 0x02, 0xe0, +0x01, 0x20, 0xff, 0xf7, 0x3d, 0xf9, 0xff, 0xf7, 0x7f, 0xff, 0x00, 0x28, 0xf8, 0xd0, 0x28, 0x48, +0x06, 0xf3, 0xa3, 0xfd, 0x04, 0x00, 0x26, 0x48, 0x08, 0x21, 0x06, 0xf3, 0x2d, 0xfd, 0x05, 0x00, +0x23, 0x48, 0x10, 0x21, 0x06, 0xf3, 0x28, 0xfd, 0x28, 0x18, 0x84, 0x42, 0xe8, 0xd1, 0x21, 0x48, +0x06, 0xf3, 0x93, 0xfd, 0x04, 0x00, 0x1f, 0x48, 0x08, 0x21, 0x06, 0xf3, 0x1d, 0xfd, 0x05, 0x00, +0x1c, 0x48, 0x10, 0x21, 0x06, 0xf3, 0x18, 0xfd, 0x28, 0x18, 0x84, 0x42, 0xd8, 0xd1, 0x1a, 0x48, +0x06, 0xf3, 0x83, 0xfd, 0x04, 0x00, 0x18, 0x48, 0x08, 0x21, 0x06, 0xf3, 0x0d, 0xfd, 0x05, 0x00, +0x15, 0x48, 0x10, 0x21, 0x06, 0xf3, 0x08, 0xfd, 0x28, 0x18, 0x84, 0x42, 0xc8, 0xd1, 0x13, 0x48, +0x06, 0xf3, 0x73, 0xfd, 0x04, 0x00, 0x11, 0x48, 0x08, 0x21, 0x06, 0xf3, 0xfd, 0xfc, 0x05, 0x00, +0x0e, 0x48, 0x10, 0x21, 0x06, 0xf3, 0xf8, 0xfc, 0x28, 0x18, 0x84, 0x42, 0xb8, 0xd1, 0x70, 0xbd, +0xc0, 0x76, 0x02, 0x00, 0x54, 0xf4, 0x00, 0xc0, 0x40, 0xa6, 0x00, 0x80, 0x40, 0xa3, 0x00, 0x80, +0x34, 0xa9, 0x00, 0x80, 0x00, 0xa0, 0x00, 0x80, 0x2c, 0x00, 0x00, 0x04, 0x18, 0xee, 0x00, 0xc0, +0x30, 0x00, 0x00, 0x04, 0x6c, 0x00, 0x00, 0x04, 0x4c, 0x01, 0x00, 0x04, 0xfc, 0x00, 0x00, 0x04, +0x4c, 0x1b, 0x01, 0xc0, 0xff, 0x30, 0x5d, 0x30, 0x89, 0x08, 0x0e, 0x22, 0x10, 0xb5, 0x16, 0xf3, +0xc0, 0xfe, 0x80, 0x00, 0x10, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x0c, 0x23, 0x58, 0x43, 0xff, 0x49, +0x40, 0x18, 0x00, 0x21, 0x0a, 0x00, 0x0b, 0x00, 0x0e, 0xc0, 0x20, 0x00, 0x10, 0xf3, 0x0a, 0xf9, +0x20, 0x00, 0x10, 0xf3, 0x12, 0xf9, 0x20, 0x00, 0x10, 0xf3, 0xf9, 0xf8, 0x10, 0xbd, 0xf7, 0xb5, +0x86, 0xb0, 0x04, 0x00, 0x16, 0x00, 0xf6, 0x4a, 0x00, 0x25, 0x00, 0x92, 0x07, 0x98, 0x31, 0x00, +0x04, 0xaa, 0x03, 0xab, 0x04, 0x95, 0x0e, 0xf3, 0xea, 0xf8, 0x6b, 0x46, 0x18, 0x7c, 0x00, 0x1f, +0x03, 0x28, 0x59, 0xd8, 0x30, 0x06, 0x00, 0x0e, 0x05, 0x90, 0x1b, 0xf3, 0x83, 0xff, 0x1b, 0xf3, +0x92, 0xff, 0x06, 0x00, 0x60, 0x7a, 0x03, 0x28, 0x06, 0xd1, 0x6b, 0x46, 0x1b, 0x7b, 0x05, 0x99, +0x32, 0x00, 0x20, 0x00, 0x1c, 0xf0, 0x8d, 0xf8, 0x6b, 0x46, 0x18, 0x7c, 0x31, 0x00, 0x1c, 0xf0, +0x0b, 0xf9, 0x1f, 0xf0, 0xf1, 0xfb, 0x07, 0x00, 0xff, 0xf7, 0xc8, 0xfa, 0x6b, 0x46, 0x02, 0x90, +0x18, 0x7b, 0xa4, 0x23, 0xdd, 0x49, 0x58, 0x43, 0x30, 0x31, 0x40, 0x18, 0x80, 0x30, 0x6b, 0x46, +0x05, 0x76, 0xdc, 0x4a, 0x18, 0x7c, 0x68, 0x39, 0x0e, 0xf3, 0x6f, 0xf8, 0x6b, 0x46, 0x19, 0x7c, +0x18, 0x7b, 0x11, 0xf3, 0xc8, 0xfb, 0x6b, 0x46, 0x18, 0x7c, 0xff, 0xf7, 0x93, 0xfb, 0x6b, 0x46, +0x18, 0x7c, 0x05, 0x9a, 0x31, 0x00, 0x23, 0x00, 0xff, 0xf7, 0xdd, 0xf9, 0x9f, 0x73, 0xf9, 0xd3, +0x01, 0x00, 0x00, 0x00, 0xe0, 0x1f, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xe5, 0x2a, 0x7b, 0xa0, +0x6b, 0x46, 0x19, 0x7b, 0x30, 0x00, 0x11, 0xf3, 0xc6, 0xfa, 0x6b, 0x46, 0x18, 0x7c, 0x22, 0x00, +0x31, 0x00, 0x11, 0xf0, 0xc9, 0xf9, 0x02, 0xa8, 0xff, 0xf7, 0xc5, 0xfa, 0x38, 0x00, 0x1f, 0xf0, +0xc1, 0xfb, 0x6b, 0x46, 0x19, 0x7b, 0x07, 0x9a, 0x20, 0x00, 0x12, 0xf0, 0x41, 0xfc, 0x6b, 0x46, +0x18, 0x7b, 0xff, 0xf7, 0x82, 0xff, 0x01, 0x20, 0x09, 0xb0, 0xf0, 0xbd, 0x00, 0x20, 0xfb, 0xe7, +0xf7, 0xb5, 0x84, 0xb0, 0x05, 0x00, 0x16, 0x00, 0xbe, 0x4a, 0x00, 0x92, 0x00, 0x24, 0x05, 0x98, +0x31, 0x00, 0x03, 0xaa, 0x02, 0xab, 0x03, 0x94, 0x0e, 0xf3, 0x7b, 0xf8, 0xbc, 0x4f, 0xbb, 0x49, +0x38, 0x00, 0x25, 0xf0, 0x58, 0xe8, 0x6b, 0x46, 0x18, 0x7b, 0x00, 0x1f, 0x03, 0x28, 0x47, 0xd8, +0xf9, 0x13, 0x38, 0x00, 0x25, 0xf0, 0x4e, 0xe8, 0x30, 0x06, 0x00, 0x0e, 0x1b, 0xf3, 0x0c, 0xff, +0x1b, 0xf3, 0x1b, 0xff, 0x01, 0x00, 0x6b, 0x46, 0x18, 0x7b, 0x1c, 0xf0, 0x9f, 0xf8, 0x1f, 0xf0, +0x85, 0xfb, 0x06, 0x00, 0xff, 0xf7, 0x5c, 0xfa, 0x6b, 0x46, 0x01, 0x90, 0x18, 0x7a, 0xa4, 0x23, +0xa7, 0x49, 0x58, 0x43, 0x30, 0x31, 0x40, 0x18, 0x80, 0x30, 0x6b, 0x46, 0x04, 0x76, 0xa6, 0x4a, +0x18, 0x7b, 0x68, 0x39, 0x0e, 0xf3, 0x03, 0xf8, 0x6b, 0x46, 0x19, 0x7b, 0x18, 0x7a, 0x11, 0xf3, +0x5c, 0xfb, 0x6b, 0x46, 0x18, 0x7b, 0xff, 0xf7, 0x51, 0xfb, 0x28, 0x00, 0xff, 0xf7, 0x95, 0xf8, +0x6b, 0x46, 0x18, 0x7a, 0x11, 0xf3, 0xf9, 0xfa, 0x6b, 0x46, 0x18, 0x7b, 0x29, 0x00, 0x11, 0xf0, +0x23, 0xf9, 0x01, 0xa8, 0xff, 0xf7, 0x5f, 0xfa, 0x30, 0x00, 0x1f, 0xf0, 0x5b, 0xfb, 0x6b, 0x46, +0x19, 0x7a, 0x05, 0x9a, 0x28, 0x00, 0x12, 0xf0, 0xdb, 0xfb, 0x01, 0x20, 0x07, 0xb0, 0xf0, 0xbd, +0x00, 0x20, 0xfb, 0xe7, 0xf8, 0xb5, 0x0d, 0x00, 0x06, 0x00, 0x00, 0x24, 0x1f, 0xf0, 0x46, 0xfb, +0x8c, 0x4a, 0x07, 0x00, 0x29, 0x06, 0x09, 0x0e, 0x60, 0x32, 0x30, 0x00, 0x1b, 0xf3, 0x16, 0xfc, +0x0a, 0x28, 0x0d, 0xd2, 0x87, 0x4a, 0x00, 0x21, 0x00, 0x01, 0x60, 0x32, 0x11, 0x54, 0x80, 0x18, +0xc1, 0x60, 0x29, 0x00, 0x30, 0x00, 0x11, 0xf3, 0x6a, 0xfc, 0x0b, 0xf0, 0x44, 0xf8, 0x01, 0x24, +0x38, 0x00, 0x1f, 0xf0, 0x2f, 0xfb, 0x20, 0x00, 0xf8, 0xbd, 0xf0, 0xb5, 0x05, 0x00, 0x00, 0x20, +0x85, 0xb0, 0x01, 0x90, 0x08, 0x78, 0x0c, 0x00, 0x00, 0x07, 0x40, 0x0f, 0x16, 0xd1, 0x11, 0xf3, +0xf9, 0xf8, 0x07, 0x00, 0x04, 0x28, 0x11, 0xd0, 0x77, 0x48, 0x0d, 0xf3, 0xda, 0xff, 0x06, 0x00, +0x40, 0x1c, 0x0b, 0xd0, 0x38, 0x06, 0x00, 0x0e, 0x31, 0x06, 0x09, 0x0e, 0x02, 0x00, 0x04, 0x90, +0x0f, 0x00, 0x20, 0x00, 0x11, 0xf3, 0xa3, 0xf9, 0x00, 0x28, 0x02, 0xd1, 0x00, 0x20, 0x05, 0xb0, +0xf0, 0xbd, 0x68, 0x7a, 0x02, 0x28, 0x31, 0xd1, 0x28, 0x00, 0x22, 0xf0, 0x7b, 0xfc, 0x13, 0x21, +0x49, 0x01, 0x40, 0x18, 0x80, 0x7b, 0x80, 0x07, 0x06, 0xd5, 0x63, 0x20, 0x40, 0x5d, 0x80, 0x07, +0x00, 0x28, 0x01, 0xda, 0x01, 0x20, 0x01, 0x90, 0x01, 0x99, 0x04, 0x98, 0x11, 0xf0, 0x1c, 0xf9, +0x22, 0x00, 0x04, 0x99, 0x14, 0x32, 0x28, 0x00, 0x12, 0xf0, 0x5c, 0xfb, 0x20, 0x1d, 0x1a, 0xf3, +0x98, 0xed, 0x00, 0x06, 0x00, 0x0e, 0x1b, 0xf3, 0x5f, 0xfe, 0x1b, 0xf3, 0x6e, 0xfe, 0x02, 0x90, +0x68, 0x7a, 0x03, 0x28, 0x0d, 0xd1, 0x20, 0x1d, 0x1a, 0xf3, 0x8a, 0xed, 0x01, 0x06, 0x04, 0x9b, +0x09, 0x0e, 0x3a, 0x00, 0x28, 0x00, 0x1b, 0xf0, 0x66, 0xff, 0x08, 0xe0, 0xe8, 0x68, 0x00, 0x06, +0xd6, 0xe7, 0x02, 0x28, 0x03, 0xd1, 0x02, 0x99, 0x30, 0x00, 0x1b, 0xf0, 0xe9, 0xff, 0x02, 0x20, +0x1b, 0xf3, 0x53, 0xfe, 0x01, 0x00, 0x30, 0x00, 0x1b, 0xf0, 0xd8, 0xff, 0x4d, 0x48, 0x4e, 0x4a, +0x41, 0x6a, 0x02, 0x98, 0x40, 0x00, 0x30, 0x30, 0x08, 0x5a, 0x90, 0x42, 0x00, 0xd1, 0x88, 0x6a, +0x01, 0x04, 0x09, 0x0c, 0x38, 0x00, 0x11, 0xf0, 0x86, 0xf9, 0x38, 0x00, 0x11, 0xf3, 0x5e, 0xfb, +0x30, 0x00, 0x11, 0xf3, 0x4d, 0xfb, 0x3e, 0x4a, 0x01, 0x20, 0xb1, 0x00, 0x38, 0x3a, 0x50, 0x50, +0x3c, 0x4a, 0x00, 0x92, 0x04, 0x9a, 0x3b, 0x00, 0x21, 0x00, 0x28, 0x00, 0x0d, 0xf3, 0x60, 0xfe, +0x38, 0x00, 0xff, 0xf7, 0x3e, 0xfa, 0x1f, 0xf0, 0x99, 0xfa, 0x06, 0x00, 0xff, 0xf7, 0x70, 0xf9, +0x03, 0x90, 0x20, 0x1d, 0x1a, 0xf3, 0x44, 0xed, 0x02, 0x06, 0x02, 0x98, 0x12, 0x0e, 0x2b, 0x00, +0x39, 0x00, 0xff, 0xf7, 0x9a, 0xf8, 0x20, 0x1d, 0x1a, 0xf3, 0x3a, 0xed, 0x02, 0x06, 0x02, 0x99, +0x12, 0x0e, 0x2b, 0x00, 0x38, 0x00, 0x11, 0xf0, 0x93, 0xf8, 0x03, 0xa8, 0xff, 0xf7, 0x83, 0xf9, +0x30, 0x00, 0x1f, 0xf0, 0x7f, 0xfa, 0x01, 0x20, 0x71, 0xe7, 0xf3, 0xb5, 0x81, 0xb0, 0x06, 0x00, +0x1f, 0xf0, 0x74, 0xfa, 0x23, 0x4f, 0x00, 0x24, 0x00, 0x90, 0x18, 0x20, 0x60, 0x43, 0x39, 0x5c, +0x00, 0x29, 0x0b, 0xd0, 0xc5, 0x19, 0x68, 0x78, 0x1b, 0xf3, 0xe6, 0xfd, 0x1b, 0xf3, 0xf5, 0xfd, +0xb0, 0x42, 0x03, 0xd1, 0xe8, 0x78, 0x02, 0x99, 0x11, 0xf0, 0x35, 0xf9, 0x64, 0x1c, 0x24, 0x06, +0x24, 0x0e, 0x04, 0x2c, 0xe9, 0xd3, 0x00, 0x98, 0x1f, 0xf0, 0x5c, 0xfa, 0xfe, 0xbd, 0xf8, 0xb5, +0x00, 0x25, 0x14, 0x4f, 0x18, 0x20, 0x68, 0x43, 0x39, 0x5c, 0x00, 0x29, 0x33, 0xd0, 0xc4, 0x19, +0x20, 0x1d, 0x22, 0xf0, 0x40, 0xfc, 0x06, 0x00, 0x2d, 0xd0, 0x61, 0x78, 0x00, 0x22, 0x30, 0x00, +0x0b, 0xf0, 0xb3, 0xf9, 0x6b, 0x46, 0x19, 0x88, 0x00, 0x01, 0x09, 0x07, 0x09, 0x0f, 0x01, 0x43, +0x00, 0x91, 0x18, 0x78, 0x00, 0x09, 0x00, 0x01, 0x18, 0x70, 0xa0, 0x78, 0x00, 0x99, 0x11, 0xf3, +0x9a, 0xf8, 0x6b, 0x46, 0x18, 0x88, 0x00, 0x09, 0x60, 0x81, 0x00, 0x20, 0x20, 0x73, 0x0d, 0xe0, +0x84, 0x7c, 0x02, 0x00, 0x4c, 0x7b, 0x02, 0x00, 0xf4, 0x76, 0x02, 0x00, 0x66, 0x66, 0xff, 0xff, +0xbb, 0xbb, 0xbb, 0xbb, 0x38, 0x52, 0x00, 0x04, 0xff, 0xff, 0x00, 0x00, 0x60, 0x73, 0x29, 0x00, +0x30, 0x00, 0x01, 0xf0, 0xe8, 0xf9, 0x6d, 0x1c, 0x2d, 0x06, 0x2d, 0x0e, 0x04, 0x2d, 0xc1, 0xd3, +0xf8, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x0c, 0x00, 0x0f, 0xf3, 0x01, 0xff, 0x0c, 0x21, 0x69, 0x43, +0x4e, 0x4b, 0x5a, 0x58, 0x12, 0x18, 0x5a, 0x50, 0x22, 0x60, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, +0x0c, 0x00, 0x0f, 0xf3, 0xe9, 0xfe, 0x0c, 0x22, 0x6a, 0x43, 0x48, 0x49, 0x51, 0x18, 0x8a, 0x68, +0x12, 0x18, 0x8a, 0x60, 0x22, 0x60, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x0c, 0x00, 0x0f, 0xf3, +0xd0, 0xfe, 0x0c, 0x22, 0x6a, 0x43, 0x41, 0x49, 0x51, 0x18, 0x4a, 0x68, 0x12, 0x18, 0x4a, 0x60, +0x22, 0x60, 0x70, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x1f, 0xf0, 0xe8, 0xf9, 0x3c, 0x4a, 0x01, 0x21, +0x13, 0x68, 0xa1, 0x40, 0x19, 0x43, 0x11, 0x60, 0x1f, 0xf0, 0xe4, 0xf9, 0x01, 0x20, 0x80, 0x02, +0xff, 0xf7, 0x34, 0xf8, 0x10, 0xbd, 0x36, 0x49, 0x0f, 0x20, 0x10, 0xb5, 0x08, 0x60, 0x01, 0x20, +0x80, 0x02, 0xff, 0xf7, 0x2b, 0xf8, 0x10, 0xbd, 0x70, 0xb5, 0x1f, 0xf0, 0x07, 0x9a, 0x2d, 0xa2, +0x01, 0x00, 0x00, 0x00, 0xdc, 0x23, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xcd, 0xbb, 0xfe, 0x1d, +0xcf, 0xf9, 0x2f, 0x4d, 0x00, 0x21, 0x2f, 0x4e, 0x0c, 0x00, 0x30, 0x35, 0x32, 0x68, 0xd3, 0x07, +0x04, 0xd0, 0xa4, 0x23, 0x4b, 0x43, 0x5b, 0x19, 0x80, 0x33, 0x1c, 0x76, 0x52, 0x08, 0x49, 0x1c, +0x04, 0x29, 0x32, 0x60, 0xf2, 0xd3, 0x1f, 0xf0, 0xbf, 0xf9, 0x70, 0xbd, 0xa4, 0x23, 0x24, 0x49, +0x58, 0x43, 0x30, 0x31, 0x40, 0x18, 0x70, 0x47, 0xf7, 0xb5, 0x05, 0x00, 0x00, 0x26, 0x20, 0x4f, +0x34, 0x00, 0x30, 0x37, 0xa4, 0x20, 0x60, 0x43, 0xc0, 0x19, 0x80, 0x30, 0x01, 0x7e, 0x01, 0x29, +0x1e, 0xd1, 0x69, 0x78, 0x02, 0x7d, 0x91, 0x42, 0x1a, 0xd1, 0x29, 0x78, 0x82, 0x7d, 0x91, 0x42, +0x16, 0xd1, 0x29, 0x7b, 0x42, 0x7d, 0x91, 0x42, 0x12, 0xd1, 0xc1, 0x7d, 0x00, 0x29, 0x02, 0xd1, +0x69, 0x7b, 0xc9, 0x06, 0x08, 0xd5, 0x01, 0x69, 0x01, 0x98, 0xff, 0x31, 0x4a, 0x31, 0x06, 0x22, +0x1e, 0xf0, 0xb2, 0xfe, 0x00, 0x28, 0x03, 0xd1, 0x02, 0x98, 0x01, 0x26, 0x04, 0x70, 0x02, 0xe0, +0x64, 0x1c, 0x04, 0x2c, 0xd6, 0xd3, 0x30, 0x00, 0xfe, 0xbd, 0x30, 0xb5, 0x1c, 0x00, 0xa4, 0x23, +0x58, 0x43, 0x07, 0x4b, 0x4d, 0x78, 0x30, 0x33, 0xc0, 0x18, 0x03, 0x00, 0x80, 0x33, 0x1d, 0x75, +0x0d, 0x78, 0x9d, 0x75, 0x1a, 0x61, 0x09, 0x7b, 0x59, 0x75, 0xdc, 0x75, 0x30, 0xbd, 0x00, 0x00, +0x84, 0x7c, 0x02, 0x00, 0xf0, 0x76, 0x02, 0x00, 0xf8, 0xb5, 0x03, 0x24, 0x26, 0x00, 0x03, 0x28, +0x01, 0xd1, 0x00, 0x24, 0x39, 0xe0, 0x03, 0x28, 0x37, 0xda, 0x04, 0x00, 0x46, 0x1c, 0x34, 0xe0, +0xfc, 0x48, 0x61, 0x01, 0x0a, 0x18, 0x82, 0x20, 0x60, 0x43, 0xfb, 0x4b, 0x95, 0x68, 0x00, 0x21, +0xc0, 0x18, 0x81, 0x73, 0xc1, 0x73, 0x41, 0x7c, 0xf8, 0x4b, 0x49, 0x06, 0x49, 0x0e, 0x41, 0x74, +0x01, 0x21, 0x18, 0x88, 0xa1, 0x40, 0x88, 0x43, 0x18, 0x80, 0x20, 0x21, 0x10, 0x00, 0x1a, 0xf3, +0x54, 0xeb, 0x00, 0x2d, 0x18, 0xd0, 0x0b, 0x20, 0x80, 0x01, 0x2f, 0x18, 0x38, 0x69, 0x00, 0x21, +0xff, 0x30, 0xc9, 0x43, 0x21, 0x30, 0x41, 0x81, 0x28, 0x00, 0x00, 0xf0, 0xdf, 0xfa, 0x00, 0x28, +0x04, 0xd0, 0xe8, 0x68, 0x01, 0x21, 0x09, 0x04, 0x88, 0x43, 0xe8, 0x60, 0x38, 0x69, 0xff, 0x30, +0x21, 0x30, 0x41, 0x89, 0xe5, 0x48, 0x81, 0x60, 0x64, 0x1c, 0xb4, 0x42, 0xc8, 0xdb, 0xf8, 0xbd, +0xf0, 0xb5, 0x0c, 0x00, 0x07, 0x00, 0x01, 0x20, 0x00, 0x29, 0x85, 0xb0, 0x03, 0xd1, 0x03, 0x20, +0xff, 0xf7, 0xb2, 0xff, 0x75, 0xe0, 0xe1, 0x78, 0xa2, 0x78, 0x09, 0x02, 0x11, 0x43, 0x0a, 0x00, +0xff, 0x3a, 0x19, 0x3a, 0x6e, 0xd1, 0x61, 0x7a, 0x4d, 0x06, 0x6d, 0x0e, 0x03, 0x2d, 0x69, 0xda, +0xd4, 0x4a, 0x69, 0x01, 0x89, 0x18, 0x03, 0x91, 0x89, 0x68, 0x00, 0x29, 0x01, 0xd0, 0xb9, 0x42, +0x60, 0xd1, 0xe0, 0x7a, 0xa1, 0x7a, 0x00, 0x02, 0x08, 0x43, 0x0b, 0x21, 0x89, 0x01, 0x79, 0x18, +0x00, 0x28, 0x02, 0x91, 0x03, 0xd1, 0x28, 0x00, 0xff, 0xf7, 0x8e, 0xff, 0x4a, 0xe0, 0x82, 0x21, +0x69, 0x43, 0xc9, 0x48, 0x0e, 0x18, 0x60, 0x79, 0x21, 0x79, 0x02, 0x02, 0x0a, 0x43, 0x30, 0x00, +0x92, 0x1d, 0x21, 0x00, 0x08, 0x30, 0x1a, 0xf3, 0x5c, 0xea, 0xf1, 0x7b, 0xb2, 0x7b, 0x08, 0x02, +0x10, 0x43, 0x7d, 0x23, 0xdb, 0x00, 0x58, 0x43, 0x00, 0x90, 0xc1, 0x17, 0x01, 0x91, 0x08, 0x22, +0x30, 0x00, 0x69, 0x46, 0x1a, 0xf3, 0x4c, 0xea, 0x03, 0x98, 0x20, 0x21, 0x1a, 0xf3, 0xe4, 0xea, +0x03, 0x98, 0xba, 0x49, 0x87, 0x60, 0x01, 0x20, 0x0a, 0x88, 0xa8, 0x40, 0x10, 0x43, 0x08, 0x80, +0x60, 0x7a, 0xc0, 0x09, 0x1e, 0xd0, 0xf0, 0x7b, 0xb1, 0x7b, 0x00, 0x02, 0x08, 0x43, 0x19, 0xd0, +0xf8, 0x68, 0x01, 0x21, 0x09, 0x04, 0x08, 0x43, 0xf8, 0x60, 0xf0, 0x7b, 0xb2, 0x7b, 0x01, 0x02, +0x02, 0x98, 0x11, 0x43, 0x04, 0x69, 0xe0, 0x1d, 0xf9, 0x30, 0x80, 0x6b, 0x1a, 0xf3, 0x78, 0xef, +0xff, 0x34, 0x21, 0x34, 0x61, 0x89, 0xaa, 0x4a, 0x00, 0x04, 0x00, 0x0c, 0x91, 0x42, 0x00, 0xd0, +0x08, 0x18, 0x60, 0x81, 0x02, 0x98, 0x00, 0x69, 0xff, 0x30, 0x21, 0x30, 0x41, 0x89, 0xa3, 0x48, +0x81, 0x60, 0x00, 0x20, 0x05, 0xb0, 0xf0, 0xbd, 0xf8, 0xb5, 0x06, 0x00, 0x9d, 0x4f, 0x00, 0x24, +0x82, 0x21, 0x61, 0x43, 0x9c, 0x48, 0x08, 0x18, 0xc1, 0x7b, 0x82, 0x7b, 0x08, 0x02, 0x10, 0x43, +0x07, 0xd0, 0x60, 0x01, 0xc5, 0x19, 0xa8, 0x68, 0xb0, 0x42, 0x02, 0xd1, 0x0f, 0xf3, 0xcc, 0xfa, +0x03, 0xc5, 0x64, 0x1c, 0x03, 0x2c, 0xeb, 0xdb, 0xf8, 0xbd, 0x03, 0x20, 0x10, 0xb5, 0xff, 0xf7, +0x1b, 0xff, 0x90, 0x48, 0x00, 0x21, 0x60, 0x30, 0x0a, 0x00, 0x0b, 0x00, 0x0e, 0xc0, 0x0e, 0xc0, +0x08, 0x00, 0x8e, 0x49, 0x48, 0x60, 0x88, 0x60, 0xc8, 0x60, 0x10, 0xbd, 0xf0, 0xb5, 0x00, 0x20, +0x89, 0xb0, 0x04, 0x00, 0x07, 0x90, 0x0f, 0xf3, 0xaf, 0xfa, 0x0e, 0x00, 0x06, 0x90, 0x82, 0x21, +0x61, 0x43, 0x85, 0x48, 0x08, 0x18, 0x08, 0x90, 0xc2, 0x7b, 0x81, 0x7b, 0x10, 0x02, 0x08, 0x43, +0x45, 0xd0, 0x80, 0x48, 0x61, 0x01, 0x0d, 0x18, 0x2a, 0x68, 0x06, 0x98, 0x6b, 0x68, 0x31, 0x00, +0x80, 0x1a, 0x99, 0x41, 0x06, 0xd3, 0x2a, 0x68, 0x06, 0x98, 0x6b, 0x68, 0x31, 0x00, 0x80, 0x1a, +0x99, 0x41, 0x06, 0xe0, 0x28, 0x68, 0x69, 0x68, 0x06, 0x9a, 0xc0, 0x43, 0xc9, 0x43, 0x80, 0x18, +0x71, 0x41, 0x7d, 0x22, 0x00, 0x23, 0xd2, 0x00, 0x19, 0xf3, 0x98, 0xef, 0x04, 0x90, 0x06, 0x98, +0x0f, 0x00, 0x41, 0xc5, 0x08, 0x22, 0x08, 0x99, 0x02, 0xa8, 0x1a, 0xf3, 0xb2, 0xe9, 0x02, 0xa8, +0x07, 0xc8, 0x3b, 0x00, 0x12, 0x1a, 0x8b, 0x41, 0x10, 0xd2, 0x08, 0x99, 0x08, 0x22, 0x02, 0xa8, +0x1a, 0xf3, 0xa6, 0xe9, 0x02, 0xa8, 0x07, 0xc8, 0x80, 0x1a, 0xb9, 0x41, 0x01, 0x91, 0x00, 0x90, +0x08, 0x98, 0x08, 0x22, 0x69, 0x46, 0x1a, 0xf3, 0x9c, 0xe9, 0x08, 0xe0, 0x08, 0x98, 0x08, 0x22, +0x64, 0xa1, 0x1a, 0xf3, 0x96, 0xe9, 0x07, 0x98, 0x01, 0x21, 0x08, 0x43, 0x07, 0x90, 0x64, 0x1c, +0x03, 0x2c, 0xac, 0xd3, 0x07, 0x98, 0x09, 0xb0, 0xf0, 0xbd, 0xf3, 0xb5, 0x81, 0xb0, 0x8e, 0x1c, +0x0a, 0x27, 0x00, 0x24, 0x57, 0x48, 0x61, 0x01, 0x08, 0x18, 0x81, 0x68, 0x01, 0x98, 0x81, 0x42, +0x17, 0xd1, 0x82, 0x21, 0x61, 0x43, 0x54, 0x48, 0x0d, 0x18, 0x68, 0x7b, 0x29, 0x7b, 0x02, 0x02, +0x0a, 0x43, 0x29, 0x00, 0x12, 0x1d, 0x0a, 0x31, 0x30, 0x00, 0x1a, 0xf3, 0x72, 0xe9, 0x68, 0x7b, +0x29, 0x7b, 0x00, 0x02, 0x08, 0x43, 0x36, 0x1d, 0x86, 0x19, 0x3f, 0x1d, 0xc0, 0x19, 0x07, 0x04, +0x3f, 0x0c, 0x64, 0x1c, 0x03, 0x2c, 0xdd, 0xdb, 0x38, 0x00, 0xfe, 0xbd, 0xf8, 0xb5, 0x42, 0x01, +0x82, 0x23, 0x44, 0x49, 0x58, 0x43, 0x54, 0x18, 0x43, 0x49, 0xa6, 0x68, 0x40, 0x18, 0x40, 0x7c, +0xc0, 0x09, 0x40, 0x42, 0x30, 0x42, 0x53, 0xd0, 0x0b, 0x20, 0x80, 0x01, 0x35, 0x18, 0x28, 0x69, +0x3f, 0x4a, 0xff, 0x30, 0x21, 0x30, 0x81, 0x89, 0x91, 0x42, 0x49, 0xd0, 0x22, 0x69, 0xa1, 0x69, +0x91, 0x42, 0x32, 0xd8, 0xe1, 0x68, 0x60, 0x69, 0x88, 0x42, 0x37, 0xd9, 0xd4, 0xb1, 0x06, 0x0b, +0x01, 0x00, 0x00, 0x00, 0xd8, 0x27, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x9e, 0x61, 0x2d, 0x71, +0x0f, 0xf3, 0x0c, 0xfa, 0x2a, 0x69, 0x36, 0x4f, 0xff, 0x32, 0x21, 0x32, 0x93, 0x89, 0x5b, 0x1c, +0x1b, 0x04, 0x1b, 0x0c, 0x93, 0x81, 0x2a, 0x69, 0x7b, 0x60, 0x29, 0xd0, 0xd3, 0x1d, 0xf9, 0x33, +0x9f, 0x6b, 0x33, 0x4b, 0xff, 0x32, 0x5f, 0x43, 0x31, 0x32, 0x0c, 0xca, 0x80, 0x1a, 0x99, 0x41, +0x00, 0x23, 0x3a, 0x1a, 0x8b, 0x41, 0x1b, 0xd2, 0x29, 0x49, 0x01, 0x22, 0xc8, 0x68, 0x02, 0x23, +0x40, 0x1c, 0xc8, 0x60, 0x28, 0x69, 0x00, 0x21, 0xff, 0x30, 0xc9, 0x43, 0x21, 0x30, 0x81, 0x81, +0x31, 0x00, 0xff, 0x31, 0x4a, 0x31, 0x30, 0x00, 0x16, 0xf0, 0xd6, 0xff, 0x08, 0xe0, 0x00, 0x21, +0x81, 0x81, 0x0f, 0xf3, 0xdb, 0xf9, 0x2a, 0x69, 0xff, 0x32, 0x52, 0x1c, 0x51, 0x63, 0x10, 0x63, +0x60, 0x69, 0xe0, 0x60, 0xa0, 0x69, 0x20, 0x61, 0x28, 0x69, 0xff, 0x30, 0x21, 0x30, 0x81, 0x89, +0x17, 0x48, 0x41, 0x60, 0xf8, 0xbd, 0xf7, 0xb5, 0x82, 0xb0, 0x0d, 0x00, 0x14, 0x00, 0x02, 0x98, +0x41, 0x01, 0x11, 0x48, 0x0f, 0x18, 0xbe, 0x68, 0x00, 0x2d, 0x7e, 0xd0, 0x00, 0x2c, 0x7c, 0xd0, +0x00, 0x2e, 0x7a, 0xd0, 0x02, 0x98, 0xff, 0xf7, 0x8b, 0xff, 0xff, 0x21, 0x11, 0x48, 0x00, 0x22, +0x2d, 0x31, 0x1a, 0xf3, 0x6f, 0xfe, 0x00, 0x28, 0x20, 0x60, 0x08, 0xd1, 0xff, 0x21, 0x0e, 0x48, +0x00, 0x22, 0x2d, 0x31, 0x1a, 0xf3, 0x66, 0xfe, 0x00, 0x28, 0x20, 0x60, 0x65, 0xd0, 0x68, 0x7a, +0xc0, 0x09, 0x78, 0x69, 0x12, 0xd1, 0x13, 0xe0, 0x00, 0x2f, 0x01, 0xc0, 0x78, 0x2d, 0x01, 0xc0, +0x3c, 0xee, 0x00, 0xc0, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x40, 0x42, 0x0f, 0x00, 0x6c, 0x00, 0x00, 0x04, 0xfc, 0x00, 0x00, 0x04, 0x40, 0x1c, 0x78, 0x61, +0x02, 0x99, 0x94, 0x4a, 0x89, 0x00, 0x50, 0x50, 0x20, 0x68, 0x46, 0x61, 0x21, 0x68, 0x02, 0x20, +0x08, 0x73, 0x21, 0x68, 0x1c, 0x20, 0x08, 0x81, 0x20, 0x68, 0x5a, 0x21, 0x7c, 0x30, 0x41, 0x72, +0x21, 0x68, 0xac, 0x20, 0x08, 0x81, 0x24, 0x68, 0x12, 0x21, 0xac, 0x34, 0x20, 0x00, 0x1a, 0xf3, +0x70, 0xe9, 0x14, 0x20, 0x27, 0x18, 0x01, 0x90, 0xb0, 0x7a, 0x20, 0x70, 0xf0, 0x7a, 0x21, 0x00, +0x60, 0x70, 0x08, 0x31, 0x00, 0x20, 0x1a, 0xf3, 0xf0, 0xe9, 0x00, 0x20, 0xa0, 0x73, 0xa0, 0x71, +0xe0, 0x71, 0x01, 0x98, 0x20, 0x71, 0x00, 0x0a, 0x60, 0x71, 0xe8, 0x7a, 0xa9, 0x7a, 0x00, 0x02, +0x08, 0x43, 0x01, 0x0a, 0xa0, 0x70, 0x0e, 0x28, 0xe1, 0x70, 0x0c, 0xd2, 0xe8, 0x7a, 0xa9, 0x7a, +0x00, 0x02, 0x08, 0x43, 0x0e, 0x21, 0x09, 0x1a, 0xc0, 0x19, 0x1a, 0xf3, 0x4a, 0xe9, 0x0e, 0x20, +0xa0, 0x70, 0x00, 0x20, 0xe0, 0x70, 0x30, 0x00, 0x22, 0xf0, 0x70, 0xf9, 0x00, 0x28, 0x00, 0xd0, +0x28, 0x7a, 0x20, 0x73, 0x60, 0x7b, 0x40, 0x08, 0x00, 0xe0, 0x2b, 0xe0, 0x40, 0x00, 0xf1, 0x21, +0x08, 0x40, 0x60, 0x73, 0xe8, 0x7a, 0xa9, 0x7a, 0x02, 0x02, 0x0a, 0x43, 0x29, 0x00, 0x0c, 0x31, +0x0c, 0x00, 0x38, 0x00, 0x1a, 0xf3, 0x66, 0xe8, 0x20, 0x00, 0x17, 0xf0, 0x9d, 0xff, 0xb1, 0x24, +0xa4, 0x00, 0x00, 0x28, 0x0b, 0xd0, 0x68, 0x7a, 0xc0, 0x09, 0x02, 0xd0, 0x06, 0x22, 0x31, 0x19, +0x02, 0xe0, 0x06, 0x22, 0x31, 0x00, 0x7e, 0x31, 0x38, 0x00, 0x1a, 0xf3, 0x54, 0xe8, 0x28, 0x00, +0x12, 0x30, 0x17, 0xf0, 0x89, 0xff, 0x00, 0x28, 0x04, 0xd0, 0x06, 0x22, 0x31, 0x19, 0xb8, 0x1d, +0x1a, 0xf3, 0x48, 0xe8, 0x30, 0xe6, 0xfe, 0xb5, 0x00, 0x27, 0x57, 0x4e, 0x3c, 0x00, 0x02, 0x97, +0x82, 0x20, 0x60, 0x43, 0x85, 0x19, 0xe8, 0x7b, 0xa9, 0x7b, 0x00, 0x02, 0x08, 0x43, 0x22, 0xd0, +0x08, 0x22, 0x29, 0x00, 0x68, 0x46, 0x1a, 0xf3, 0x36, 0xe8, 0x01, 0x99, 0x00, 0x98, 0x79, 0x40, +0x08, 0x43, 0x18, 0xd1, 0x82, 0x20, 0x60, 0x43, 0x02, 0xaa, 0x81, 0x19, 0x08, 0x31, 0x20, 0x00, +0xff, 0xf7, 0x29, 0xff, 0xe8, 0x7b, 0xa9, 0x7b, 0x00, 0x02, 0x7d, 0x23, 0x08, 0x43, 0xdb, 0x00, +0x58, 0x43, 0x00, 0x90, 0xc1, 0x17, 0x01, 0x91, 0x08, 0x22, 0x28, 0x00, 0x69, 0x46, 0x1a, 0xf3, +0x1a, 0xe8, 0x02, 0x98, 0xfe, 0xbd, 0x64, 0x1c, 0x03, 0x2c, 0xd1, 0xd3, 0x00, 0x20, 0xfe, 0xbd, +0x3e, 0x48, 0x00, 0x88, 0x70, 0x47, 0x3d, 0x4a, 0x01, 0x00, 0x12, 0x88, 0x00, 0x20, 0x00, 0x2a, +0x05, 0xd0, 0x00, 0x29, 0x03, 0xd0, 0xc9, 0x68, 0xc9, 0x04, 0x00, 0xd5, 0x01, 0x20, 0x70, 0x47, +0x70, 0xb5, 0x00, 0x28, 0x1b, 0xd0, 0x33, 0x4c, 0x0c, 0x34, 0x00, 0x29, 0x18, 0xd1, 0x21, 0x68, +0x00, 0x22, 0x49, 0x1c, 0x21, 0x60, 0x0b, 0x21, 0x89, 0x01, 0x44, 0x18, 0x20, 0x69, 0xff, 0x30, +0x21, 0x30, 0x82, 0x81, 0x0f, 0xf3, 0xba, 0xf8, 0x22, 0x69, 0xff, 0x32, 0x52, 0x1c, 0x51, 0x63, +0x10, 0x63, 0x20, 0x69, 0x29, 0x49, 0xff, 0x30, 0x21, 0x30, 0x80, 0x89, 0x48, 0x60, 0x70, 0xbd, +0x24, 0x4d, 0x00, 0x21, 0x60, 0x3d, 0x4b, 0x01, 0x5b, 0x19, 0x9e, 0x68, 0x86, 0x42, 0x0b, 0xd1, +0x9e, 0x69, 0x76, 0x1c, 0x00, 0x2a, 0x9e, 0x61, 0x03, 0xd0, 0x63, 0x68, 0x5b, 0x1c, 0x63, 0x60, +0x02, 0xe0, 0xa3, 0x68, 0x5b, 0x1c, 0xa3, 0x60, 0x49, 0x1c, 0x03, 0x29, 0xeb, 0xdb, 0x70, 0xbd, +0xf8, 0xb5, 0x06, 0x00, 0x0b, 0x20, 0x80, 0x01, 0x30, 0x18, 0x05, 0x69, 0x01, 0x27, 0x00, 0x24, +0x14, 0x48, 0x61, 0x01, 0x60, 0x38, 0x08, 0x18, 0x80, 0x68, 0xb0, 0x42, 0x1c, 0xd1, 0x82, 0x21, +0x61, 0x43, 0x11, 0x48, 0x08, 0x18, 0x41, 0x7c, 0xc9, 0x09, 0x15, 0xd0, 0xc1, 0x7b, 0x80, 0x7b, +0x00, 0x27, 0x09, 0x02, 0x01, 0x43, 0x0f, 0xd0, 0xe8, 0x1d, 0xf9, 0x30, 0x80, 0x6b, 0x1a, 0xf3, +0xfa, 0xec, 0x01, 0x04, 0x28, 0x00, 0xff, 0x30, 0x21, 0x30, 0x42, 0x89, 0x08, 0x4b, 0x09, 0x0c, +0x9a, 0x42, 0x00, 0xd0, 0x51, 0x18, 0x41, 0x81, 0x64, 0x1c, 0x03, 0x2c, 0xd8, 0xdb, 0x38, 0x00, +0xf8, 0xbd, 0x00, 0x00, 0x60, 0x2f, 0x01, 0xc0, 0x78, 0x2d, 0x01, 0xc0, 0x3c, 0xee, 0x00, 0xc0, +0xff, 0xff, 0x00, 0x00, 0x70, 0xb5, 0x05, 0x00, 0x00, 0x24, 0x21, 0xf0, 0x97, 0xff, 0x06, 0x00, +0x28, 0x00, 0x09, 0xf0, 0x75, 0xfd, 0x2b, 0x7a, 0x1a, 0xf3, 0xa0, 0xe9, 0x07, 0x05, 0x0f, 0x05, +0x05, 0x18, 0x18, 0x14, 0x18, 0x00, 0x69, 0x7a, 0x02, 0x29, 0x02, 0xd1, 0x34, 0x00, 0x64, 0x34, +0x13, 0xe0, 0x00, 0x29, 0x11, 0xd0, 0x04, 0x68, 0x0f, 0xe0, 0x0b, 0x20, 0x80, 0x01, 0x28, 0x18, +0x04, 0x6a, 0x0a, 0xe0, 0x17, 0x20, 0x40, 0x01, 0x2c, 0x18, 0x06, 0xe0, 0x1e, 0xf0, 0xfa, 0xfd, +0xff, 0x48, 0xfd, 0xf7, 0xbd, 0xfa, 0x24, 0xf0, 0xaa, 0xea, 0x20, 0x00, 0x70, 0xbd, 0x70, 0xb5, +0x05, 0x00, 0x00, 0x24, 0x09, 0xf0, 0x4c, 0xfd, 0x29, 0x7a, 0x00, 0x29, 0x08, 0xd0, 0x01, 0x29, +0x08, 0xd0, 0x03, 0x29, 0x0c, 0xd1, 0x69, 0x7a, 0x03, 0x29, 0x01, 0xd0, 0x01, 0x29, 0x0f, 0xd1, +0x44, 0x68, 0x0d, 0xe0, 0x0b, 0x20, 0x80, 0x01, 0x28, 0x18, 0x04, 0x6a, 0x18, 0x34, 0x07, 0xe0, +0x1e, 0xf0, 0xd8, 0xfd, 0xee, 0x48, 0x40, 0x1c, 0xfd, 0xf7, 0x9a, 0xfa, 0x69, 0x07, 0x3f, 0x56, +0x01, 0x00, 0x00, 0x00, 0xd4, 0x2b, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x6a, 0x0e, 0x58, 0xc5, +0x24, 0xf0, 0x86, 0xea, 0x20, 0x00, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x00, 0x24, 0x09, 0xf0, +0x29, 0xfd, 0x29, 0x7a, 0x00, 0x29, 0x08, 0xd0, 0x01, 0x29, 0x08, 0xd0, 0x03, 0x29, 0x0c, 0xd1, +0x69, 0x7a, 0x03, 0x29, 0x01, 0xd0, 0x01, 0x29, 0x0f, 0xd1, 0xc4, 0x68, 0x0d, 0xe0, 0x0b, 0x20, +0x80, 0x01, 0x28, 0x18, 0x04, 0x6a, 0x25, 0x34, 0x07, 0xe0, 0x1e, 0xf0, 0xb5, 0xfd, 0xdd, 0x48, +0x80, 0x1c, 0xfd, 0xf7, 0x77, 0xfa, 0x24, 0xf0, 0x64, 0xea, 0x20, 0x00, 0x70, 0xbd, 0x01, 0x7a, +0x01, 0x29, 0x05, 0xd1, 0x0b, 0x21, 0x89, 0x01, 0x40, 0x18, 0x00, 0x6a, 0x35, 0x30, 0x70, 0x47, +0x61, 0x30, 0x70, 0x47, 0x70, 0xb5, 0x04, 0x00, 0xff, 0xf7, 0x7e, 0xff, 0x05, 0x00, 0x20, 0x00, +0x21, 0xf0, 0x16, 0xff, 0x61, 0x7a, 0x02, 0x29, 0x04, 0xd1, 0x13, 0x21, 0x49, 0x01, 0x40, 0x18, +0x80, 0x7b, 0x0c, 0xe0, 0x03, 0xf0, 0xdc, 0xf9, 0x0b, 0x21, 0x89, 0x01, 0x61, 0x18, 0x01, 0x28, +0x08, 0x69, 0x02, 0xd1, 0x60, 0x30, 0x80, 0x78, 0x01, 0xe0, 0x60, 0x30, 0x00, 0x78, 0xc0, 0x06, +0xc1, 0x0f, 0x08, 0xd0, 0x20, 0x00, 0x29, 0x00, 0x61, 0x30, 0x0d, 0xf3, 0x65, 0xfe, 0x00, 0x28, +0x01, 0xd0, 0x01, 0x20, 0x70, 0xbd, 0x00, 0x20, 0x70, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, +0x21, 0xf0, 0xee, 0xfe, 0x61, 0x7a, 0x02, 0x29, 0x04, 0xd1, 0x13, 0x21, 0x49, 0x01, 0x40, 0x18, +0x80, 0x7b, 0x12, 0xe0, 0x20, 0x7a, 0x06, 0x28, 0x02, 0xd1, 0x63, 0x20, 0x00, 0x5d, 0x0c, 0xe0, +0x03, 0xf0, 0xae, 0xf9, 0x0b, 0x21, 0x89, 0x01, 0x61, 0x18, 0x01, 0x28, 0x08, 0x69, 0x02, 0xd1, +0x60, 0x30, 0x80, 0x78, 0x01, 0xe0, 0x60, 0x30, 0x00, 0x78, 0x81, 0x06, 0x40, 0x06, 0xc3, 0x0f, +0xca, 0x0f, 0x20, 0x00, 0x29, 0x00, 0x61, 0x30, 0x0d, 0xf3, 0x44, 0xfe, 0x70, 0xbd, 0x10, 0xb5, +0x04, 0x00, 0x40, 0x7a, 0x02, 0x28, 0x02, 0xd0, 0x20, 0x7a, 0x06, 0x28, 0x05, 0xd1, 0x20, 0x00, +0xff, 0xf7, 0x22, 0xff, 0xc0, 0x78, 0x40, 0x07, 0x0d, 0xe0, 0x03, 0xf0, 0x89, 0xf9, 0x0b, 0x21, +0x89, 0x01, 0x61, 0x18, 0x01, 0x28, 0x08, 0x69, 0x02, 0xd1, 0x60, 0x30, 0x80, 0x78, 0x01, 0xe0, +0x60, 0x30, 0x00, 0x78, 0x80, 0x07, 0xc0, 0x0f, 0x10, 0xbd, 0x60, 0x30, 0x40, 0x79, 0x80, 0x07, +0x80, 0x0f, 0x70, 0x47, 0xc0, 0x68, 0x40, 0x06, 0xc0, 0x0f, 0x70, 0x47, 0x01, 0x00, 0xc9, 0x68, +0x00, 0x20, 0x4a, 0x06, 0x02, 0xd5, 0x09, 0x06, 0x00, 0xd5, 0x01, 0x20, 0x70, 0x47, 0xf7, 0xb5, +0x84, 0xb0, 0x00, 0x24, 0x06, 0x00, 0x0f, 0x00, 0xff, 0xf7, 0xf6, 0xfe, 0x05, 0x00, 0x30, 0x00, +0xff, 0xf7, 0x1f, 0xff, 0x03, 0x90, 0x30, 0x00, 0xff, 0xf7, 0x3e, 0xff, 0x02, 0x00, 0x30, 0x00, +0xff, 0xf7, 0x5d, 0xff, 0x03, 0x00, 0xf0, 0x68, 0x40, 0x06, 0xc0, 0x0f, 0x0a, 0xd0, 0x03, 0x98, +0x00, 0x21, 0x6e, 0x46, 0x07, 0xc6, 0x1a, 0x00, 0x06, 0x99, 0x38, 0x00, 0x2b, 0x00, 0x0d, 0xf3, +0x08, 0xfe, 0x04, 0x00, 0x20, 0x00, 0x07, 0xb0, 0xf0, 0xbd, 0x08, 0xb5, 0x01, 0x68, 0x83, 0x6a, +0x01, 0x29, 0x0a, 0xd1, 0x00, 0x22, 0x02, 0x60, 0x01, 0x00, 0x7b, 0x4a, 0x18, 0x00, 0x00, 0x92, +0x7a, 0x4a, 0x7b, 0x4b, 0x1c, 0x31, 0x0d, 0xf3, 0x6b, 0xfe, 0x08, 0xbd, 0xf8, 0xb5, 0x0d, 0x00, +0xff, 0x21, 0x04, 0x00, 0x17, 0x00, 0x2d, 0x31, 0x03, 0xf0, 0x15, 0xfa, 0x00, 0x28, 0x28, 0x60, +0x11, 0xd0, 0x01, 0x89, 0x22, 0x00, 0x46, 0x18, 0x7e, 0x32, 0xb1, 0x21, 0x89, 0x00, 0x00, 0x92, +0x3a, 0x00, 0x61, 0x18, 0x0d, 0x23, 0x03, 0xf0, 0x5b, 0xfa, 0x03, 0x20, 0x20, 0x36, 0x30, 0x70, +0x29, 0x68, 0xac, 0x20, 0x08, 0x81, 0xf8, 0xbd, 0xf7, 0xb5, 0xff, 0x21, 0x05, 0x00, 0x06, 0x00, +0xff, 0x36, 0x4a, 0x36, 0x2d, 0x31, 0x82, 0xb0, 0x03, 0xf0, 0xf5, 0xf9, 0x04, 0x00, 0x1b, 0xd0, +0x20, 0x89, 0x2a, 0x00, 0x7e, 0x32, 0xb1, 0x21, 0x27, 0x18, 0x89, 0x00, 0x00, 0x92, 0x20, 0x00, +0x32, 0x00, 0x69, 0x18, 0x0d, 0x23, 0x03, 0xf0, 0x3b, 0xfa, 0x04, 0x20, 0x20, 0x37, 0x38, 0x70, +0xac, 0x20, 0x20, 0x81, 0x04, 0x9a, 0x03, 0x99, 0x20, 0x00, 0x0e, 0xf3, 0x83, 0xf9, 0x20, 0x00, +0x03, 0xf0, 0x84, 0xfa, 0x05, 0xb0, 0xf0, 0xbd, 0x00, 0x20, 0xc0, 0x43, 0xfa, 0xe7, 0xff, 0xb5, +0x87, 0xb0, 0x1c, 0x00, 0x06, 0x00, 0x00, 0x20, 0x06, 0x90, 0x52, 0x48, 0x40, 0x68, 0x00, 0x28, +0x02, 0xd0, 0x50, 0x48, 0x17, 0xf3, 0x7a, 0xfc, 0x4e, 0x4f, 0x08, 0x98, 0x18, 0x37, 0x00, 0x28, +0x30, 0xd1, 0x20, 0x79, 0xe1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x2b, 0xd1, 0x30, 0x7a, 0x01, 0x28, +0x04, 0xd0, 0x71, 0x7a, 0x02, 0x29, 0x01, 0xd0, 0x06, 0x28, 0x07, 0xd1, 0x60, 0x79, 0x00, 0x22, +0x80, 0x06, 0x01, 0x0f, 0x30, 0x00, 0x0a, 0xf0, 0xe6, 0xfb, 0x05, 0xe0, 0x60, 0x79, 0x80, 0x06, +0x01, 0x0f, 0x30, 0x00, 0x0b, 0xf0, 0x44, 0xf8, 0x05, 0x00, 0x60, 0x79, 0x6b, 0x46, 0x18, 0x75, +0xa0, 0x79, 0x58, 0x75, 0x38, 0x4a, 0xb1, 0x20, 0x80, 0x00, 0x03, 0x92, 0x37, 0x49, 0x09, 0x9a, +0x30, 0x18, 0x02, 0x91, 0x01, 0x90, 0x00, 0x92, 0x7a, 0x89, 0x05, 0x9b, 0x29, 0x00, 0x30, 0x00, +0x0d, 0xf3, 0x50, 0xff, 0x30, 0x00, 0x24, 0xf0, 0x1c, 0xe9, 0x05, 0x00, 0x60, 0x79, 0xc3, 0x21, +0x08, 0x40, 0x39, 0x7a, 0x23, 0x00, 0x89, 0x06, 0x09, 0x0f, 0x89, 0x00, 0x08, 0x43, 0x60, 0x71, +0x06, 0x9a, 0x00, 0x92, 0x09, 0x9a, 0x08, 0x99, 0x28, 0x00, 0x0d, 0xf3, 0x0c, 0xff, 0x28, 0x00, +0x24, 0xf0, 0x0a, 0xe9, 0x0b, 0xb0, 0xf0, 0xbd, 0x7c, 0xb5, 0x04, 0x00, 0x1e, 0xf0, 0x3c, 0xfc, +0x25, 0x49, 0x05, 0x00, 0x48, 0x68, 0x6b, 0x46, 0x40, 0x1c, 0x48, 0x60, 0xe0, 0x79, 0x98, 0x70, +0x20, 0x7a, 0xd8, 0x70, 0xa0, 0x7a, 0x61, 0x7a, 0x00, 0x02, 0x08, 0x43, 0x98, 0x80, 0xe0, 0x68, +0x63, 0x1c, 0x01, 0x22, 0x69, 0x46, 0x24, 0xf0, 0xf4, 0xe8, 0x28, 0x00, 0x1e, 0xf0, 0x28, 0xfc, +0x7c, 0xbd, 0x7f, 0xb5, 0x04, 0x00, 0x1e, 0xf0, 0x1f, 0xfc, 0x05, 0x00, 0x16, 0x4a, 0x21, 0x00, +0x01, 0xa8, 0x0e, 0xf3, 0xe1, 0xf8, 0x00, 0x28, 0x07, 0xd0, 0x01, 0x22, 0x00, 0x92, 0x20, 0x69, +0x62, 0x1c, 0x02, 0x21, 0x01, 0xab, 0xff, 0xf7, 0x72, 0xff, 0x28, 0x00, 0x1e, 0xf0, 0x10, 0xfc, +0x7f, 0xbd, 0xf8, 0xb5, 0x0d, 0x00, 0x01, 0x24, 0x41, 0x7a, 0x02, 0x29, 0x22, 0xd1, 0x0b, 0x21, +0x89, 0x01, 0x41, 0x18, 0x09, 0x68, 0x01, 0x29, 0x1c, 0xd1, 0x21, 0xf0, 0xa0, 0xfd, 0x06, 0x00, +0x28, 0x00, 0x0b, 0xe0, 0x03, 0x00, 0x01, 0x00, 0x8f, 0x2d, 0x00, 0x00, 0x4c, 0x7b, 0x02, 0x00, +0xac, 0x7b, 0x02, 0x00, 0x10, 0x57, 0x02, 0xc0, 0x58, 0x1b, 0x01, 0xc0, 0x1a, 0xf3, 0x6a, 0xff, +0x7d, 0x21, 0x89, 0x5d, 0x00, 0x91, 0x01, 0x00, 0x00, 0x98, 0x04, 0xf0, 0xcb, 0xfa, 0x00, 0x28, +0x00, 0xd0, 0x00, 0x24, 0x20, 0x00, 0xf8, 0xbd, 0xfe, 0xb5, 0x04, 0x00, 0x40, 0x1c, 0x21, 0xf0, +0xd0, 0xfd, 0x05, 0x00, 0xff, 0x4f, 0x57, 0xd0, 0xe8, 0x68, 0x40, 0x06, 0xfb, 0x18, 0x26, 0x07, +0x01, 0x00, 0x00, 0x00, 0xd0, 0x2f, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x39, 0xd4, 0x8b, 0xa9, +0xc0, 0x0f, 0x53, 0xd0, 0x20, 0x7a, 0x80, 0x06, 0x01, 0x0f, 0x28, 0x00, 0xff, 0xf7, 0xc3, 0xff, +0x00, 0x28, 0x4b, 0xd0, 0x20, 0x7a, 0x80, 0x06, 0x01, 0x0f, 0x01, 0x91, 0x68, 0x7a, 0x03, 0x28, +0x01, 0xd0, 0x01, 0x28, 0x0b, 0xd1, 0x28, 0x00, 0x21, 0xf0, 0x30, 0xfe, 0x21, 0x7a, 0x06, 0x00, +0xc3, 0x20, 0x01, 0x40, 0x30, 0x07, 0x80, 0x0e, 0x01, 0x43, 0x21, 0x72, 0x00, 0xe0, 0x0e, 0x00, +0xee, 0x49, 0x32, 0x00, 0x20, 0x00, 0x0d, 0xf3, 0x49, 0xff, 0x41, 0x1c, 0x46, 0xd0, 0x62, 0x1c, +0x28, 0x00, 0x02, 0xa9, 0xff, 0xf7, 0xc4, 0xfe, 0x02, 0x98, 0x00, 0x28, 0x26, 0xd0, 0x28, 0x7a, +0x01, 0x28, 0x04, 0xd0, 0x69, 0x7a, 0x02, 0x29, 0x01, 0xd0, 0x06, 0x28, 0x05, 0xd1, 0x00, 0x22, +0x31, 0x00, 0x28, 0x00, 0x0a, 0xf0, 0x09, 0xfb, 0x03, 0xe0, 0x31, 0x00, 0x28, 0x00, 0x0a, 0xf0, +0x69, 0xff, 0x01, 0x00, 0x02, 0x98, 0x22, 0x00, 0x0d, 0xf3, 0x00, 0xff, 0x20, 0x7a, 0xc3, 0x21, +0x08, 0x40, 0x01, 0x99, 0x09, 0x07, 0x89, 0x0e, 0x08, 0x43, 0x20, 0x72, 0xd8, 0x48, 0xe1, 0x79, +0x01, 0x70, 0x02, 0x98, 0x03, 0xf0, 0x64, 0xf9, 0x40, 0x1c, 0x01, 0xd1, 0x38, 0x00, 0x13, 0xe0, +0xd4, 0x48, 0x0e, 0x22, 0x21, 0x00, 0x19, 0xf3, 0xea, 0xec, 0xd2, 0x48, 0x05, 0x61, 0x18, 0x38, +0x17, 0xf3, 0xee, 0xfa, 0xcf, 0x48, 0x64, 0x22, 0x00, 0x92, 0xcf, 0x4a, 0xcd, 0x4b, 0x01, 0x21, +0x18, 0x38, 0x17, 0xf3, 0x24, 0xfb, 0x01, 0x20, 0x41, 0x1c, 0x16, 0xd1, 0x61, 0x7b, 0x22, 0x7b, +0x09, 0x02, 0x11, 0x43, 0xe1, 0x81, 0xe1, 0x7a, 0xa2, 0x7a, 0x09, 0x02, 0x11, 0x43, 0x21, 0x73, +0x09, 0x0a, 0x61, 0x73, 0x21, 0x7a, 0xa1, 0x72, 0x61, 0x7a, 0xe1, 0x72, 0x01, 0x21, 0x00, 0x22, +0x21, 0x72, 0x62, 0x72, 0x21, 0x70, 0xbe, 0x49, 0x0a, 0x70, 0xfe, 0xbd, 0x7c, 0xb5, 0x04, 0x00, +0x40, 0x1c, 0x21, 0xf0, 0x40, 0xfd, 0xb8, 0x4e, 0x05, 0x00, 0x12, 0xd0, 0xe8, 0x68, 0x40, 0x06, +0xc0, 0x0f, 0x0e, 0xd0, 0x62, 0x1c, 0x28, 0x00, 0x01, 0xa9, 0xff, 0xf7, 0x59, 0xfe, 0x01, 0x98, +0x00, 0x28, 0x06, 0xd0, 0x21, 0x00, 0x0d, 0xf3, 0xeb, 0xfe, 0x01, 0x98, 0x03, 0xf0, 0x18, 0xf9, +0x06, 0x00, 0x70, 0x1c, 0x02, 0xd1, 0x01, 0x20, 0x20, 0x70, 0x0c, 0xe0, 0x60, 0x7a, 0x21, 0x7a, +0x00, 0x02, 0x08, 0x43, 0x07, 0xd1, 0xad, 0x4a, 0x00, 0x92, 0xad, 0x4a, 0x00, 0x21, 0x2b, 0x00, +0x20, 0x00, 0x0e, 0xf3, 0x20, 0xf8, 0x30, 0x00, 0x7c, 0xbd, 0xfe, 0xb5, 0x04, 0x00, 0x40, 0x1c, +0x21, 0xf0, 0x11, 0xfd, 0xa0, 0x4e, 0x05, 0x00, 0x03, 0xd0, 0xe8, 0x68, 0x40, 0x06, 0xc0, 0x0f, +0x01, 0xd1, 0x30, 0x00, 0xfe, 0xbd, 0x68, 0x7a, 0x03, 0x28, 0x01, 0xd0, 0x01, 0x28, 0x0a, 0xd1, +0x20, 0x7a, 0x01, 0x09, 0x28, 0x00, 0x21, 0xf0, 0x79, 0xfd, 0x21, 0x7a, 0x09, 0x07, 0x09, 0x0f, +0x00, 0x01, 0x01, 0x43, 0x21, 0x72, 0xe0, 0x79, 0x6b, 0x46, 0x18, 0x72, 0x20, 0x7a, 0x58, 0x72, +0x02, 0x98, 0x01, 0x90, 0xa0, 0x7a, 0x61, 0x7a, 0x07, 0x02, 0x0f, 0x43, 0x62, 0x1c, 0x28, 0x00, +0x69, 0x46, 0xff, 0xf7, 0x0d, 0xfe, 0x00, 0x98, 0x00, 0x28, 0x01, 0xd1, 0x30, 0x00, 0x06, 0xe0, +0x01, 0x99, 0x3a, 0x00, 0x0d, 0xf3, 0xf5, 0xfc, 0x00, 0x98, 0x03, 0xf0, 0xc9, 0xf8, 0x41, 0x1c, +0x02, 0xd1, 0x01, 0x21, 0x21, 0x70, 0xfe, 0xbd, 0x00, 0x28, 0xfc, 0xd1, 0x85, 0x48, 0x0b, 0x22, +0x21, 0x00, 0x2c, 0x30, 0x19, 0xf3, 0x4a, 0xec, 0x82, 0x48, 0x2c, 0x30, 0xc5, 0x60, 0x18, 0x38, +0x17, 0xf3, 0x4e, 0xfa, 0x7f, 0x48, 0x64, 0x22, 0x14, 0x30, 0x03, 0x00, 0x00, 0x92, 0x81, 0x4a, +0x01, 0x21, 0x18, 0x33, 0x17, 0xf3, 0x83, 0xfa, 0x01, 0x20, 0xfe, 0xbd, 0x70, 0xb5, 0x0b, 0x00, +0x4a, 0x78, 0x0d, 0x78, 0x11, 0x02, 0x0b, 0x22, 0x92, 0x01, 0x80, 0x18, 0x00, 0x69, 0x00, 0x24, +0x29, 0x43, 0x80, 0x30, 0x01, 0x29, 0x02, 0xd1, 0x04, 0x22, 0x99, 0x1c, 0x02, 0xe0, 0x01, 0x00, +0x04, 0x22, 0x98, 0x1c, 0x19, 0xf3, 0x22, 0xec, 0x20, 0x00, 0x70, 0xbd, 0x10, 0xb5, 0xff, 0xf7, +0xe5, 0xfd, 0x00, 0x28, 0x00, 0xd1, 0x01, 0x20, 0x10, 0xbd, 0xf7, 0xb5, 0x82, 0xb0, 0x05, 0x00, +0x0e, 0x00, 0x4f, 0x6b, 0x8c, 0x6b, 0xff, 0xf7, 0x81, 0xfc, 0xe9, 0x68, 0x49, 0x06, 0xc9, 0x0f, +0x0b, 0xd0, 0x29, 0x7a, 0x01, 0x29, 0x09, 0xd1, 0x67, 0x4a, 0x2b, 0x00, 0x00, 0x92, 0x67, 0x48, +0x04, 0x9a, 0x7e, 0x33, 0x31, 0x00, 0x0d, 0xf3, 0x89, 0xfe, 0xed, 0xe5, 0x69, 0x7a, 0x03, 0x29, +0x01, 0xd0, 0x01, 0x29, 0xf9, 0xd1, 0x00, 0x2c, 0xf7, 0xd0, 0x00, 0x2f, 0xf5, 0xd0, 0x01, 0x79, +0x4a, 0x07, 0xd3, 0x0f, 0x22, 0x79, 0x52, 0x07, 0xd2, 0x0f, 0x93, 0x42, 0x04, 0xd0, 0xfb, 0x23, +0x19, 0x40, 0x92, 0x00, 0x11, 0x43, 0x01, 0x71, 0x01, 0x79, 0xca, 0x06, 0xd3, 0x0f, 0x22, 0x79, +0xd2, 0x06, 0xd2, 0x0f, 0x93, 0x42, 0x04, 0xd0, 0xef, 0x23, 0x19, 0x40, 0x12, 0x01, 0x11, 0x43, +0x01, 0x71, 0xc1, 0x78, 0x0a, 0x07, 0xd3, 0x0f, 0xe2, 0x78, 0x12, 0x07, 0xd2, 0x0f, 0x93, 0x42, +0x04, 0xd0, 0xf7, 0x23, 0x19, 0x40, 0xd2, 0x00, 0x11, 0x43, 0xc1, 0x70, 0x01, 0x79, 0x22, 0x79, +0x8b, 0x07, 0x92, 0x07, 0x9b, 0x0f, 0x92, 0x0f, 0x93, 0x42, 0x03, 0xd0, 0x89, 0x08, 0x89, 0x00, +0x11, 0x43, 0x01, 0x71, 0x28, 0x00, 0xff, 0xf7, 0xaf, 0xfc, 0x02, 0x00, 0x00, 0x21, 0x28, 0x00, +0x15, 0xf0, 0x95, 0xfb, 0xa8, 0xe5, 0x10, 0xb5, 0x04, 0x00, 0xc8, 0x79, 0x8a, 0x79, 0x03, 0x02, +0x0b, 0x20, 0x80, 0x01, 0x20, 0x18, 0x00, 0x69, 0x13, 0x43, 0x8a, 0x78, 0x60, 0x30, 0x01, 0x2b, +0x02, 0xd0, 0x02, 0x2b, 0x1b, 0xd1, 0x07, 0xe0, 0x02, 0x70, 0xca, 0x78, 0x42, 0x70, 0x0a, 0x79, +0x02, 0x71, 0x49, 0x79, 0x41, 0x71, 0x06, 0xe0, 0x82, 0x70, 0xca, 0x78, 0xc2, 0x70, 0x0a, 0x79, +0x82, 0x71, 0x49, 0x79, 0xc1, 0x71, 0x20, 0x00, 0x14, 0xf0, 0xa5, 0xff, 0x20, 0x00, 0xff, 0xf7, +0x83, 0xfc, 0x02, 0x00, 0x00, 0x21, 0x20, 0x00, 0x15, 0xf0, 0x69, 0xfb, 0x10, 0xbd, 0x02, 0x70, +0xca, 0x78, 0x42, 0x70, 0x0a, 0x79, 0x02, 0x71, 0x4a, 0x79, 0x42, 0x71, 0x8a, 0x78, 0xe3, 0xe7, +0xca, 0x79, 0x8b, 0x79, 0x12, 0x02, 0x1a, 0x43, 0x60, 0x30, 0x02, 0x2a, 0x08, 0xd1, 0x82, 0x78, +0x8a, 0x70, 0xc2, 0x78, 0xca, 0x70, 0x82, 0x79, 0x0a, 0x71, 0xc0, 0x79, 0x48, 0x71, 0x70, 0x47, +0x02, 0x78, 0x8a, 0x70, 0x42, 0x78, 0xca, 0x70, 0x02, 0x79, 0x0a, 0x71, 0x40, 0x79, 0xf5, 0xe7, +0xf8, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0x00, 0x24, 0x15, 0x4b, 0x31, 0x00, 0x20, 0x00, 0x6a, 0x46, +0x0c, 0xf3, 0x14, 0xfe, 0x01, 0x28, 0x08, 0xd1, 0x21, 0x00, 0x30, 0x00, 0xfe, 0xf7, 0xa2, 0xfe, +0x00, 0x22, 0x21, 0x00, 0x30, 0x00, 0x0d, 0xf3, 0xac, 0xfb, 0x08, 0x4a, 0x31, 0x00, 0x20, 0x00, +0x0c, 0xf3, 0x33, 0xfe, 0x01, 0x28, 0x1e, 0xd1, 0x22, 0x00, 0x31, 0x00, 0x28, 0x00, 0xfe, 0xf7, +0x2f, 0xfe, 0x01, 0x22, 0x21, 0x00, 0x13, 0xe0, 0xff, 0xff, 0xff, 0xff, 0x4b, 0xa6, 0x00, 0x8a, +0x01, 0x00, 0x00, 0x00, 0xcc, 0x33, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x86, 0x11, 0xae, 0x1a, +0x4c, 0x7b, 0x02, 0x00, 0x58, 0x1b, 0x01, 0xc0, 0x28, 0x57, 0x02, 0xc0, 0x37, 0x2f, 0x00, 0x00, +0x8f, 0x2d, 0x00, 0x00, 0xac, 0x7b, 0x02, 0x00, 0xfd, 0x2e, 0x00, 0x00, 0x40, 0x4b, 0x4c, 0x00, +0x86, 0x55, 0x00, 0x04, 0x30, 0x00, 0x0d, 0xf3, 0x86, 0xfb, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, +0x08, 0x2c, 0xc3, 0xd3, 0xf8, 0xbd, 0x38, 0xb5, 0x04, 0x00, 0xff, 0xf7, 0x99, 0xfb, 0x05, 0x00, +0xe0, 0x68, 0xc0, 0x21, 0x88, 0x43, 0x00, 0x22, 0x11, 0x00, 0xe0, 0x60, 0xff, 0x48, 0x13, 0x00, +0x00, 0x92, 0x0d, 0xf3, 0xe2, 0xfd, 0x20, 0x7a, 0x01, 0x28, 0x0a, 0xd1, 0x00, 0x22, 0x0b, 0x20, +0x80, 0x01, 0x20, 0x18, 0x00, 0x92, 0x00, 0x6a, 0x11, 0x00, 0x35, 0x30, 0x13, 0x00, 0x0d, 0xf3, +0xd4, 0xfd, 0xf7, 0x4a, 0x20, 0x00, 0x00, 0x92, 0xf6, 0x4a, 0x29, 0x00, 0x61, 0x30, 0x00, 0x23, +0x0d, 0xf3, 0xcb, 0xfd, 0x21, 0x00, 0xff, 0x31, 0x4a, 0x31, 0x20, 0x00, 0xff, 0xf7, 0x92, 0xff, +0x00, 0x22, 0x11, 0x00, 0x20, 0x00, 0x15, 0xf0, 0xd4, 0xfa, 0x38, 0xbd, 0x02, 0x00, 0x40, 0x32, +0x00, 0x21, 0x10, 0xb5, 0x11, 0x84, 0x91, 0x84, 0x03, 0x00, 0x51, 0x84, 0x60, 0x33, 0xd1, 0x84, +0x19, 0x78, 0x20, 0x22, 0x11, 0x43, 0x19, 0x70, 0x99, 0x78, 0x68, 0x30, 0x11, 0x43, 0x42, 0x22, +0x11, 0x43, 0x99, 0x70, 0x18, 0x21, 0x19, 0xf3, 0x80, 0xeb, 0x10, 0xbd, 0xf8, 0xb5, 0x0e, 0x00, +0x01, 0x89, 0x45, 0x69, 0x09, 0x18, 0xcc, 0x6d, 0x27, 0x00, 0x20, 0x37, 0x38, 0x00, 0x0d, 0xf3, +0xfc, 0xfd, 0x00, 0x28, 0x13, 0xd0, 0xd9, 0x4a, 0xa3, 0x1d, 0x48, 0x32, 0x00, 0x92, 0x1c, 0x00, +0x2a, 0x00, 0x39, 0x00, 0x30, 0x00, 0x0d, 0xf3, 0xb3, 0xfd, 0x00, 0x06, 0x00, 0x0e, 0x05, 0xd0, +0x23, 0x00, 0x32, 0x00, 0x39, 0x00, 0x28, 0x00, 0x23, 0xf0, 0x1e, 0xee, 0xf8, 0xbd, 0x38, 0x00, +0x0d, 0xf3, 0xed, 0xfd, 0x00, 0x28, 0xf9, 0xd0, 0x28, 0x7a, 0x02, 0x28, 0xf6, 0xd0, 0x32, 0x00, +0x39, 0x00, 0x28, 0x00, 0x23, 0xf0, 0x14, 0xee, 0xf8, 0xbd, 0xff, 0xb5, 0x83, 0xb0, 0x14, 0x00, +0x03, 0x98, 0x21, 0xf0, 0xb9, 0xfa, 0x8f, 0x21, 0x89, 0x00, 0x40, 0x18, 0x02, 0x90, 0x00, 0x20, +0x01, 0x90, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x05, 0x28, 0x64, 0xd9, 0x40, 0x1f, +0x04, 0x06, 0x04, 0x98, 0x24, 0x0e, 0x40, 0x1d, 0x00, 0x90, 0x03, 0x98, 0xc1, 0x7a, 0x00, 0x7a, +0x08, 0xf0, 0xcc, 0xfc, 0x21, 0xf0, 0xc7, 0xfa, 0x09, 0x26, 0x86, 0x57, 0x07, 0x00, 0x00, 0x7a, +0x08, 0x37, 0x80, 0x06, 0x35, 0x00, 0x80, 0x0f, 0x0b, 0x21, 0x01, 0x28, 0x0b, 0xd1, 0xf2, 0x1e, +0x01, 0x2a, 0x00, 0xdd, 0xf0, 0x1e, 0x05, 0x06, 0x08, 0x00, 0x2d, 0x16, 0xf1, 0x1d, 0x0b, 0x29, +0x0f, 0xda, 0xf0, 0x1d, 0x0d, 0xe0, 0x03, 0x28, 0x39, 0xd1, 0x01, 0x20, 0xf2, 0x1f, 0x01, 0x2a, +0x00, 0xdd, 0xf0, 0x1f, 0x05, 0x06, 0x08, 0x00, 0x2d, 0x16, 0xf1, 0x1c, 0x0b, 0x29, 0x00, 0xda, +0xf0, 0x1c, 0x06, 0x06, 0x36, 0x16, 0x2a, 0xe0, 0x00, 0x98, 0x22, 0x00, 0x49, 0x21, 0x0c, 0xf0, +0xcf, 0xfc, 0x01, 0x00, 0x28, 0xd0, 0x4a, 0x78, 0x90, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x84, 0x46, +0x00, 0x20, 0x52, 0x1e, 0x96, 0x46, 0x0e, 0xe0, 0x0b, 0x18, 0xda, 0x78, 0xaa, 0x42, 0x07, 0xdb, +0xb2, 0x42, 0x05, 0xdc, 0x7b, 0x78, 0x93, 0x42, 0x02, 0xd0, 0x01, 0x20, 0x01, 0x90, 0x04, 0xe0, +0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x86, 0x45, 0xee, 0xd8, 0x00, 0x98, 0x08, 0x1a, 0x22, 0x1a, +0x60, 0x46, 0x10, 0x1a, 0x04, 0x06, 0x24, 0x0e, 0x60, 0x46, 0x08, 0x18, 0x00, 0x90, 0x00, 0x2c, +0x02, 0xd0, 0x01, 0x98, 0x00, 0x28, 0xcf, 0xd0, 0x02, 0x98, 0x20, 0x30, 0x80, 0x7c, 0x80, 0x07, +0x0b, 0xd5, 0x04, 0x98, 0x00, 0x79, 0x40, 0x07, 0x80, 0x0f, 0x02, 0xd1, 0x01, 0x98, 0x01, 0x28, +0x03, 0xd1, 0x03, 0x98, 0x00, 0x21, 0x23, 0xf0, 0x90, 0xed, 0x04, 0x98, 0x09, 0x21, 0x00, 0x79, +0x08, 0x42, 0x0b, 0xd0, 0x48, 0x20, 0x6b, 0x46, 0x18, 0x70, 0x01, 0x20, 0x58, 0x70, 0x00, 0x20, +0x98, 0x70, 0x03, 0x98, 0x03, 0x22, 0x69, 0x46, 0xff, 0xf7, 0xe2, 0xfb, 0x01, 0x20, 0x07, 0xb0, +0xf0, 0xbd, 0xfe, 0xb5, 0x05, 0x00, 0x16, 0x00, 0x48, 0x78, 0x0c, 0x00, 0x01, 0x27, 0x0c, 0x36, +0x00, 0x28, 0x0c, 0xd0, 0x01, 0x28, 0x2f, 0xd0, 0x02, 0x28, 0x42, 0xd1, 0xe8, 0x68, 0xc0, 0x04, +0x40, 0xd5, 0x22, 0x00, 0x31, 0x00, 0x28, 0x00, 0x0d, 0xf3, 0x13, 0xfb, 0x3a, 0xe0, 0xe8, 0x68, +0x40, 0x06, 0xc0, 0x0f, 0x0b, 0xd0, 0x20, 0xf0, 0x03, 0xfb, 0x00, 0x28, 0x16, 0xd0, 0x0b, 0x20, +0x80, 0x01, 0x28, 0x18, 0x00, 0x69, 0x80, 0x30, 0x00, 0x78, 0xc0, 0x07, 0x0e, 0xd0, 0x32, 0x00, +0x28, 0x00, 0x69, 0x46, 0xff, 0xf7, 0x96, 0xfb, 0x00, 0x98, 0x00, 0x28, 0x22, 0xd0, 0x21, 0x00, +0x0d, 0xf3, 0x96, 0xfa, 0x00, 0x98, 0x02, 0xf0, 0x55, 0xfe, 0x1b, 0xe0, 0x2a, 0x00, 0x21, 0x00, +0x30, 0x00, 0x0d, 0xf3, 0xaa, 0xfa, 0x15, 0xe0, 0x1e, 0xf0, 0x6a, 0xf8, 0x01, 0x90, 0x5d, 0x48, +0xa1, 0x78, 0x40, 0x1e, 0x02, 0x78, 0x91, 0x42, 0x07, 0xd1, 0x00, 0x21, 0x01, 0x70, 0x23, 0x00, +0x32, 0x00, 0x28, 0x00, 0x00, 0x91, 0xff, 0xf7, 0xbe, 0xfb, 0x01, 0x98, 0x1e, 0xf0, 0x5c, 0xf8, +0x00, 0xe0, 0x00, 0x27, 0x38, 0x00, 0xfe, 0xbd, 0xf8, 0xb5, 0x01, 0x25, 0x07, 0x00, 0x52, 0x4e, +0x00, 0x24, 0x2d, 0x03, 0xff, 0x37, 0x4a, 0x37, 0x18, 0x20, 0x60, 0x43, 0x81, 0x19, 0x30, 0x5c, +0x0a, 0x00, 0x0a, 0x32, 0x00, 0x28, 0x0b, 0xd0, 0x10, 0x88, 0xa8, 0x42, 0x08, 0xd0, 0x09, 0x1d, +0x06, 0x22, 0x38, 0x00, 0x1d, 0xf0, 0x60, 0xfd, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0xf8, 0xbd, +0x64, 0x1c, 0x04, 0x2c, 0xe8, 0xd3, 0x00, 0x20, 0xf8, 0xbd, 0xfe, 0xb5, 0x04, 0x00, 0x0d, 0x00, +0x40, 0x7a, 0x02, 0x28, 0x0c, 0xd1, 0x20, 0x00, 0x03, 0xf0, 0xa9, 0xff, 0x00, 0x28, 0x07, 0xd0, +0xff, 0x20, 0x51, 0x30, 0x01, 0x5b, 0x01, 0x22, 0x20, 0x00, 0x23, 0xf0, 0xfa, 0xec, 0xfe, 0xbd, +0x18, 0x21, 0x69, 0x43, 0x38, 0x48, 0x02, 0xaa, 0x0d, 0x18, 0x68, 0x89, 0x2f, 0x00, 0x0d, 0x37, +0x01, 0x90, 0x78, 0x1e, 0x00, 0x90, 0x08, 0x21, 0x20, 0x00, 0x02, 0xf0, 0x67, 0xfd, 0x06, 0x00, +0xed, 0xd0, 0x02, 0x98, 0x04, 0x21, 0xc0, 0x6d, 0x01, 0x70, 0x00, 0x21, 0x41, 0x70, 0x20, 0x30, +0x04, 0x21, 0x04, 0x00, 0x19, 0xf3, 0x3a, 0xea, 0x20, 0x78, 0x04, 0x21, 0x08, 0x43, 0x20, 0x70, +0x60, 0x78, 0x01, 0x07, 0x68, 0x78, 0x09, 0x0f, 0x00, 0x01, 0x01, 0x43, 0x61, 0x70, 0xe0, 0x78, +0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x99, 0x00, 0x07, 0x00, 0x0f, 0x09, 0x01, 0x08, 0x43, +0xa0, 0x70, 0x00, 0x0a, 0xe0, 0x70, 0x21, 0x49, 0x30, 0x00, 0x10, 0xf0, 0x85, 0xf9, 0x00, 0x28, +0xc5, 0xd0, 0x38, 0x78, 0x40, 0x1c, 0x38, 0x70, 0x00, 0x98, 0x01, 0x21, 0x01, 0x70, 0xfe, 0xbd, +0xf8, 0xb5, 0x05, 0x00, 0x1d, 0xf0, 0xdc, 0xff, 0x17, 0x4e, 0x07, 0x00, 0x35, 0xef, 0x06, 0x8b, +0x01, 0x00, 0x00, 0x00, 0xc8, 0x37, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xd5, 0xcb, 0x7d, 0x76, +0x00, 0x24, 0x18, 0x20, 0x60, 0x43, 0x81, 0x19, 0x0a, 0x00, 0x30, 0x5c, 0x0c, 0x32, 0x93, 0x1e, +0x00, 0x28, 0x15, 0xd0, 0x10, 0x78, 0x00, 0x28, 0x12, 0xd1, 0x18, 0x88, 0x01, 0x22, 0x12, 0x03, +0x90, 0x42, 0x0d, 0xd0, 0x28, 0x00, 0xff, 0x30, 0x09, 0x1d, 0x06, 0x22, 0x4a, 0x30, 0x1d, 0xf0, +0xe5, 0xfc, 0x00, 0x28, 0x04, 0xd1, 0x21, 0x06, 0x09, 0x0e, 0x28, 0x00, 0xff, 0xf7, 0x87, 0xff, +0x64, 0x1c, 0x04, 0x2c, 0xdd, 0xd3, 0x38, 0x00, 0x1d, 0xf0, 0xb8, 0xff, 0xf8, 0xbd, 0x00, 0x00, +0xf4, 0x56, 0x02, 0xc0, 0x44, 0x54, 0x02, 0xc0, 0x59, 0x1b, 0x01, 0xc0, 0x4c, 0x7b, 0x02, 0x00, +0x02, 0x10, 0x00, 0x00, 0x10, 0xb5, 0xfa, 0x4c, 0x60, 0x6b, 0x00, 0x28, 0x05, 0xd1, 0x23, 0xf0, +0x7e, 0xec, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, 0x60, 0x63, 0x60, 0x6b, 0x10, 0xbd, 0x10, 0xb5, +0x23, 0xf0, 0x78, 0xec, 0xf2, 0x49, 0x00, 0x20, 0x48, 0x63, 0x10, 0xbd, 0x30, 0xb5, 0x00, 0x20, +0xf0, 0x4d, 0x0d, 0x21, 0x04, 0x00, 0x03, 0x00, 0x89, 0x01, 0x69, 0x18, 0x14, 0xe0, 0xe8, 0x68, +0x40, 0x1c, 0xe8, 0x60, 0x10, 0x00, 0x52, 0x6b, 0x8a, 0x62, 0x00, 0x2a, 0x00, 0xd1, 0xcb, 0x62, +0x02, 0x79, 0x05, 0x2a, 0x0b, 0xd1, 0x2a, 0x69, 0x52, 0x1c, 0x2a, 0x61, 0x83, 0x62, 0x03, 0x60, +0x03, 0x71, 0x00, 0x20, 0x00, 0x2c, 0x02, 0xd1, 0x8a, 0x6a, 0x00, 0x2a, 0xe7, 0xd1, 0x30, 0xbd, +0x10, 0xb5, 0x0a, 0x68, 0xdf, 0x4b, 0x00, 0x2a, 0x03, 0xd1, 0x18, 0x68, 0x40, 0x1c, 0x18, 0x60, +0x10, 0xbd, 0x8a, 0x6a, 0x82, 0x42, 0x03, 0xd0, 0x58, 0x68, 0x40, 0x1c, 0x58, 0x60, 0x10, 0xbd, +0xd7, 0x48, 0x00, 0x24, 0x02, 0x6a, 0x00, 0x2a, 0x0f, 0xd0, 0x8a, 0x42, 0x10, 0xd0, 0x9a, 0x68, +0x52, 0x1c, 0x9a, 0x60, 0x04, 0x22, 0x0a, 0x71, 0xc2, 0x6a, 0x00, 0x2a, 0x01, 0xd0, 0x51, 0x63, +0x00, 0xe0, 0x81, 0x62, 0xc1, 0x62, 0x4c, 0x63, 0x10, 0xbd, 0x01, 0x22, 0x01, 0x62, 0x0a, 0x71, +0x00, 0x6a, 0x07, 0x22, 0x84, 0x62, 0xcc, 0x48, 0x40, 0x21, 0x00, 0x68, 0x1e, 0xf0, 0x88, 0xfd, +0x10, 0xbd, 0x10, 0xb5, 0x0a, 0x68, 0x00, 0x2a, 0x10, 0xd0, 0xc5, 0x4a, 0x93, 0x6b, 0x83, 0x42, +0x0c, 0xd1, 0x10, 0x6a, 0x00, 0x28, 0x09, 0xd0, 0x88, 0x42, 0x07, 0xd1, 0x00, 0x20, 0x90, 0x63, +0xc1, 0x48, 0x07, 0x22, 0x00, 0x68, 0x80, 0x21, 0x1e, 0xf0, 0x72, 0xfd, 0x10, 0xbd, 0xf0, 0xb5, +0x05, 0x00, 0x85, 0xb0, 0x00, 0xf0, 0xc4, 0xfb, 0x00, 0x20, 0x00, 0xf0, 0xcf, 0xfb, 0x04, 0x00, +0x7e, 0xd0, 0x28, 0x6b, 0x20, 0x63, 0xb6, 0x48, 0x04, 0x90, 0x41, 0x6a, 0x49, 0x1c, 0x41, 0x62, +0x21, 0x60, 0x00, 0xf0, 0xbd, 0xfb, 0x0e, 0xf3, 0x51, 0xf9, 0x03, 0x91, 0x02, 0x90, 0x20, 0x68, +0x00, 0x27, 0x2e, 0x00, 0x39, 0x00, 0x20, 0x36, 0x00, 0x28, 0x03, 0xd1, 0x04, 0x9a, 0x01, 0x20, +0x50, 0x62, 0x20, 0x60, 0x00, 0x23, 0x23, 0x71, 0x30, 0x7a, 0x60, 0x71, 0xa0, 0x79, 0x71, 0x7a, +0x80, 0x08, 0x89, 0x07, 0x80, 0x00, 0x89, 0x0f, 0x08, 0x43, 0xf3, 0x21, 0xa0, 0x71, 0x08, 0x40, +0xb1, 0x7a, 0x89, 0x07, 0x09, 0x0f, 0x08, 0x43, 0xcf, 0x21, 0xa0, 0x71, 0x08, 0x40, 0xf1, 0x7a, +0x89, 0x07, 0x89, 0x0e, 0x08, 0x43, 0xa0, 0x71, 0x69, 0x69, 0x28, 0x69, 0x59, 0x40, 0x08, 0x43, +0x0d, 0xd0, 0x2a, 0x69, 0x02, 0x98, 0x6b, 0x69, 0x03, 0x99, 0x12, 0x1a, 0x8b, 0x41, 0x0a, 0xd3, +0x02, 0x9a, 0x28, 0x69, 0x03, 0x9b, 0x69, 0x69, 0x80, 0x1a, 0x99, 0x41, 0x02, 0xe0, 0xa8, 0x69, +0x00, 0x28, 0x00, 0xd0, 0x07, 0x00, 0x02, 0x9a, 0x03, 0x9b, 0x00, 0x21, 0xb8, 0x18, 0x59, 0x41, +0xe1, 0x60, 0xa0, 0x60, 0xe8, 0x69, 0x20, 0x61, 0x28, 0x6a, 0x60, 0x61, 0x68, 0x6a, 0xa0, 0x61, +0x28, 0x68, 0xe0, 0x61, 0x68, 0x68, 0x20, 0x62, 0xa8, 0x68, 0x60, 0x62, 0x20, 0x00, 0x20, 0x30, +0x41, 0x7b, 0x32, 0x7b, 0x49, 0x08, 0x92, 0x07, 0x49, 0x00, 0xd2, 0x0f, 0x11, 0x43, 0xfd, 0x22, +0x41, 0x73, 0x11, 0x40, 0x32, 0x7b, 0x52, 0x07, 0xd2, 0x0f, 0x52, 0x00, 0x11, 0x43, 0xfb, 0x22, +0x41, 0x73, 0x11, 0x40, 0x32, 0x7b, 0xd2, 0x06, 0xd2, 0x0f, 0x92, 0x00, 0x11, 0x43, 0x41, 0x73, +0x02, 0x21, 0x81, 0x73, 0x31, 0x7b, 0x09, 0x07, 0x01, 0xd5, 0x06, 0x21, 0x81, 0x73, 0x00, 0xe0, +0x12, 0xe0, 0x32, 0x7b, 0x01, 0x21, 0xd2, 0x07, 0x00, 0xd1, 0x02, 0x21, 0x01, 0x73, 0x82, 0x7b, +0x23, 0x00, 0x00, 0x92, 0x75, 0x48, 0x28, 0x33, 0x3a, 0x00, 0x21, 0x00, 0x08, 0xf3, 0x96, 0xf8, +0x00, 0x28, 0x06, 0xd1, 0x20, 0x60, 0x01, 0xe0, 0x00, 0xf0, 0x32, 0xfb, 0x00, 0x20, 0x05, 0xb0, +0xf0, 0xbd, 0x20, 0x68, 0xfb, 0xe7, 0xf8, 0xb5, 0x05, 0x25, 0x0e, 0x00, 0x00, 0xf0, 0x2e, 0xfb, +0x04, 0x00, 0x67, 0x48, 0x01, 0x6a, 0xa1, 0x42, 0x16, 0xd1, 0xa0, 0x6a, 0x00, 0x28, 0x03, 0xd0, +0x08, 0xf3, 0xdf, 0xf8, 0x00, 0x20, 0xa0, 0x62, 0x00, 0x2e, 0x66, 0x61, 0x0c, 0xd0, 0x00, 0x22, +0x23, 0x00, 0x00, 0x92, 0x61, 0x48, 0x28, 0x33, 0x32, 0x00, 0x21, 0x00, 0x08, 0xf3, 0x6e, 0xf8, +0x03, 0x25, 0x00, 0x28, 0x00, 0xd1, 0x04, 0x25, 0x28, 0x00, 0xf8, 0xbd, 0x70, 0xb5, 0x05, 0x25, +0x00, 0xf0, 0x0c, 0xfb, 0x04, 0x00, 0x56, 0x48, 0x01, 0x6a, 0xa1, 0x42, 0x07, 0xd1, 0xa0, 0x6a, +0x00, 0x28, 0x04, 0xd0, 0x08, 0xf3, 0xbd, 0xf8, 0x00, 0x20, 0x03, 0x25, 0xa0, 0x62, 0x28, 0x00, +0x70, 0xbd, 0xf8, 0xb5, 0x0f, 0x00, 0x05, 0x26, 0x00, 0xf0, 0xf8, 0xfa, 0x4c, 0x4c, 0x05, 0x00, +0x21, 0x6a, 0x81, 0x42, 0x15, 0xd1, 0xa0, 0x6b, 0x00, 0x28, 0x03, 0xd0, 0x08, 0xf3, 0xa9, 0xf8, +0x00, 0x20, 0xa0, 0x63, 0x00, 0x2f, 0x0c, 0xd0, 0x45, 0x4b, 0x00, 0x22, 0x00, 0x92, 0x48, 0x48, +0x38, 0x33, 0x3a, 0x00, 0x29, 0x00, 0x08, 0xf3, 0x39, 0xf8, 0x03, 0x26, 0x00, 0x28, 0x00, 0xd1, +0x04, 0x26, 0x30, 0x00, 0xf8, 0xbd, 0x70, 0xb5, 0x05, 0x25, 0x00, 0xf0, 0xd7, 0xfa, 0x3c, 0x4c, +0x21, 0x6a, 0x81, 0x42, 0x07, 0xd1, 0xa0, 0x6b, 0x00, 0x28, 0x03, 0xd0, 0x08, 0xf3, 0x89, 0xf8, +0x00, 0x20, 0xa0, 0x63, 0x03, 0x25, 0x28, 0x00, 0x70, 0xbd, 0x38, 0xb5, 0x01, 0x20, 0xfd, 0xf7, +0x71, 0xfc, 0x33, 0x4c, 0x2c, 0x20, 0x23, 0x6a, 0xc1, 0x5c, 0x5a, 0x6a, 0x18, 0x68, 0xdb, 0x69, +0x98, 0x47, 0x20, 0x6a, 0x00, 0x6b, 0x02, 0xf0, 0xa4, 0xf9, 0x00, 0xf0, 0xa9, 0xfa, 0x1d, 0xf0, +0x09, 0xfe, 0x21, 0x6a, 0x05, 0x00, 0x00, 0x20, 0x08, 0x60, 0x00, 0xf0, 0xa9, 0xfa, 0xff, 0xf7, +0x6d, 0xfe, 0x20, 0x62, 0x28, 0x00, 0x1d, 0xf0, 0x01, 0xfe, 0x21, 0x6a, 0x00, 0x29, 0x09, 0xd0, +0x2e, 0x20, 0x42, 0x5c, 0x0b, 0x00, 0x00, 0x92, 0x26, 0x4a, 0x24, 0x48, 0x28, 0x33, 0x07, 0xf3, +0xf5, 0xff, 0x01, 0xe0, 0xff, 0xf7, 0x53, 0xfe, 0x03, 0x20, 0x38, 0xbd, 0xf8, 0xb5, 0x06, 0x00, +0x07, 0x20, 0x20, 0xf0, 0x73, 0xff, 0x1a, 0x4f, 0x05, 0x00, 0x4c, 0xe0, 0x38, 0x6a, 0x00, 0x6b, +0xa8, 0x42, 0x04, 0xd0, 0x28, 0x00, 0x23, 0xf0, 0xc2, 0xea, 0x00, 0x28, 0xb8, 0x67, 0x54, 0xa4, +0x01, 0x00, 0x00, 0x00, 0xc4, 0x3b, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x21, 0xa4, 0x08, 0xc2, +0x3e, 0xd1, 0x34, 0x00, 0x16, 0x2e, 0x10, 0xd1, 0x28, 0x00, 0x23, 0xf0, 0xbe, 0xea, 0x00, 0x28, +0x31, 0xd0, 0x68, 0x7a, 0x02, 0x28, 0x2e, 0xd1, 0x38, 0x6a, 0x20, 0x30, 0x40, 0x7b, 0x40, 0x07, +0x01, 0xd5, 0x2a, 0x24, 0x27, 0xe0, 0x28, 0x24, 0x25, 0xe0, 0x19, 0x2e, 0x03, 0xd0, 0x1a, 0x2e, +0x01, 0xd0, 0x18, 0x2e, 0x1f, 0xd1, 0x0b, 0x20, 0x80, 0x01, 0x28, 0x18, 0x00, 0x69, 0x81, 0x7b, +0x00, 0x29, 0x01, 0xd0, 0x2c, 0x24, 0x16, 0xe0, 0xc0, 0x7b, 0x00, 0x28, 0x0e, 0xd0, 0x29, 0x24, +0x11, 0xe0, 0x00, 0x00, 0xd8, 0x32, 0x01, 0xc0, 0x98, 0x2f, 0x01, 0xc0, 0x6c, 0xf4, 0x00, 0xc0, +0x99, 0x38, 0x00, 0x00, 0xfb, 0x38, 0x00, 0x00, 0xa0, 0x86, 0x01, 0x00, 0x38, 0x6a, 0x00, 0x6b, +0xa8, 0x42, 0x00, 0xd0, 0x18, 0x24, 0x22, 0x00, 0x00, 0x21, 0x28, 0x00, 0x02, 0xf0, 0xd2, 0xfb, +0x07, 0x21, 0x28, 0x00, 0x08, 0xf0, 0xe8, 0xf8, 0x05, 0x00, 0x00, 0x2d, 0xb0, 0xd1, 0xf8, 0xbd, +0xf8, 0xb5, 0x05, 0x25, 0x0f, 0x00, 0x00, 0xf0, 0x3b, 0xfa, 0x04, 0x00, 0x64, 0xd0, 0xa0, 0x6a, +0x00, 0x26, 0x00, 0x28, 0x02, 0xd0, 0x07, 0xf3, 0xee, 0xff, 0xa6, 0x62, 0xfa, 0x4d, 0x28, 0x6a, +0xa0, 0x42, 0x57, 0xd1, 0x00, 0xf0, 0x1e, 0xfa, 0x20, 0x79, 0x02, 0x28, 0x01, 0xd0, 0x03, 0x28, +0x1e, 0xd1, 0x26, 0x71, 0x00, 0xf0, 0x1e, 0xfa, 0x28, 0x6a, 0x20, 0x30, 0x07, 0x2f, 0x07, 0x73, +0x08, 0xd0, 0x08, 0x2f, 0x0b, 0xd1, 0x1a, 0x20, 0xff, 0xf7, 0x82, 0xff, 0x27, 0x20, 0x06, 0xf0, +0x2c, 0xfe, 0x40, 0xe0, 0x19, 0x20, 0xff, 0xf7, 0x7b, 0xff, 0x26, 0x20, 0xf7, 0xe7, 0x28, 0x6a, +0x00, 0x6b, 0x23, 0xf0, 0x4e, 0xea, 0x18, 0x20, 0xff, 0xf7, 0x72, 0xff, 0x25, 0x20, 0xee, 0xe7, +0x01, 0x28, 0x01, 0xd0, 0x04, 0x28, 0x2a, 0xd1, 0x00, 0xf0, 0xfc, 0xf9, 0xe3, 0x69, 0x62, 0x6a, +0x20, 0x68, 0x0b, 0x21, 0x98, 0x47, 0x28, 0x6a, 0x00, 0x6b, 0x02, 0xf0, 0xe4, 0xf8, 0x00, 0xf0, +0xe9, 0xf9, 0x1d, 0xf0, 0x49, 0xfd, 0x26, 0x60, 0x07, 0x00, 0x26, 0x71, 0x00, 0xf0, 0xea, 0xf9, +0xff, 0xf7, 0xae, 0xfd, 0x28, 0x62, 0x38, 0x00, 0x1d, 0xf0, 0x42, 0xfd, 0x29, 0x6a, 0x00, 0x29, +0x09, 0xd0, 0x2e, 0x20, 0x42, 0x5c, 0x0b, 0x00, 0x00, 0x92, 0xd4, 0x4a, 0xd4, 0x48, 0x28, 0x33, +0x07, 0xf3, 0x36, 0xff, 0x01, 0xe0, 0xff, 0xf7, 0x94, 0xfd, 0x03, 0x20, 0xf8, 0xbd, 0x00, 0xf0, +0xd1, 0xf9, 0x00, 0xe0, 0x26, 0x60, 0x03, 0x25, 0x28, 0x00, 0xf8, 0xbd, 0x70, 0xb5, 0x04, 0x00, +0x04, 0x25, 0x1d, 0xf0, 0x21, 0xfd, 0x06, 0x00, 0xc7, 0x48, 0x00, 0x6a, 0xa0, 0x42, 0x19, 0xd0, +0x21, 0x79, 0x20, 0x68, 0x03, 0x25, 0x04, 0x29, 0x06, 0xd1, 0x05, 0x21, 0x21, 0x71, 0xe3, 0x69, +0x62, 0x6a, 0x0b, 0x21, 0x98, 0x47, 0x0d, 0xe0, 0xa0, 0x6a, 0x07, 0xf3, 0x74, 0xff, 0x01, 0x28, +0x08, 0xd1, 0xe3, 0x69, 0x62, 0x6a, 0x20, 0x68, 0x0b, 0x21, 0x98, 0x47, 0x00, 0x21, 0xa1, 0x62, +0x21, 0x60, 0x21, 0x71, 0x30, 0x00, 0x1d, 0xf0, 0x03, 0xfd, 0x28, 0x00, 0x70, 0xbd, 0x70, 0xb5, +0x05, 0x00, 0x04, 0x24, 0x00, 0xf0, 0x96, 0xf9, 0x28, 0x00, 0x00, 0xf0, 0xa1, 0xf9, 0x00, 0x28, +0x02, 0xd0, 0xff, 0xf7, 0xcb, 0xff, 0x04, 0x00, 0x00, 0xf0, 0x94, 0xf9, 0x20, 0x00, 0x70, 0xbd, +0xf8, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0x00, 0xf0, 0x85, 0xf9, 0xae, 0x4f, 0x00, 0x24, 0x38, 0x20, +0x60, 0x43, 0xc0, 0x19, 0x81, 0x69, 0x00, 0x29, 0x0e, 0xd0, 0x00, 0x2d, 0x03, 0xd0, 0x45, 0x21, +0x09, 0x5c, 0x89, 0x07, 0x05, 0xd4, 0x00, 0x2e, 0x06, 0xd0, 0x45, 0x21, 0x09, 0x5c, 0xc9, 0x07, +0x02, 0xd0, 0x18, 0x30, 0xff, 0xf7, 0xaa, 0xff, 0x64, 0x1c, 0x0f, 0x2c, 0xe7, 0xd3, 0x00, 0xf0, +0x71, 0xf9, 0xf8, 0xbd, 0x01, 0x21, 0x00, 0x20, 0xda, 0xe7, 0x10, 0xb5, 0x23, 0xf0, 0xb4, 0xe9, +0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0x38, 0xb5, 0x23, 0xf0, +0xb0, 0xe9, 0x16, 0x20, 0xff, 0xf7, 0xcc, 0xfe, 0x15, 0x20, 0xff, 0xf7, 0xc9, 0xfe, 0x92, 0x4c, +0x20, 0x6a, 0x41, 0x79, 0x00, 0x29, 0x06, 0xd0, 0x81, 0x79, 0x00, 0x91, 0x41, 0x79, 0x00, 0x98, +0x00, 0x22, 0xff, 0xf7, 0xe2, 0xff, 0x21, 0x6a, 0x03, 0x20, 0x08, 0x71, 0x20, 0x6a, 0x80, 0x69, +0x00, 0x28, 0x08, 0xd0, 0x0d, 0xf3, 0xdc, 0xfe, 0x25, 0x6a, 0xaa, 0x68, 0xeb, 0x68, 0x80, 0x1a, +0x99, 0x41, 0xa9, 0x69, 0x08, 0x60, 0x21, 0x6a, 0xcb, 0x69, 0x4a, 0x6a, 0x08, 0x68, 0x03, 0x21, +0x98, 0x47, 0x21, 0x6a, 0x48, 0x69, 0x00, 0x28, 0x09, 0xd0, 0x8a, 0x6a, 0x00, 0x2a, 0x06, 0xd1, +0x00, 0x92, 0x0b, 0x00, 0x02, 0x00, 0x7e, 0x48, 0x28, 0x33, 0x07, 0xf3, 0x89, 0xfe, 0x03, 0x20, +0x38, 0xbd, 0xf8, 0xb5, 0x07, 0x00, 0x7c, 0x4e, 0x77, 0x4d, 0x30, 0x68, 0x00, 0x28, 0x1e, 0xd1, +0x2c, 0x6a, 0x23, 0xf0, 0x72, 0xe9, 0x2c, 0x20, 0x01, 0x5d, 0xe3, 0x69, 0x62, 0x6a, 0x20, 0x68, +0x98, 0x47, 0x02, 0x28, 0x24, 0xd0, 0x00, 0x2f, 0x05, 0xd0, 0x16, 0x20, 0xff, 0xf7, 0x80, 0xfe, +0x01, 0x20, 0x30, 0x60, 0x05, 0xe0, 0x17, 0x20, 0xff, 0xf7, 0x7a, 0xfe, 0x24, 0x20, 0x06, 0xf0, +0x24, 0xfd, 0x29, 0x6a, 0x02, 0x20, 0x08, 0x71, 0x30, 0x68, 0x00, 0x28, 0x17, 0xd0, 0x28, 0x6a, +0x20, 0x30, 0x40, 0x7b, 0x40, 0x07, 0x0d, 0xd5, 0x04, 0x20, 0x09, 0xf0, 0xd0, 0xf9, 0x00, 0x28, +0x08, 0xd1, 0x07, 0xf0, 0xe7, 0xff, 0x04, 0x00, 0x07, 0xf0, 0xf1, 0xff, 0x84, 0x42, 0x01, 0xd0, +0x02, 0x20, 0xf8, 0xbd, 0x00, 0x20, 0x30, 0x60, 0x23, 0x20, 0x06, 0xf0, 0x06, 0xfd, 0x03, 0x20, +0xf8, 0xbd, 0xf7, 0xb5, 0x86, 0xb0, 0x04, 0x00, 0x16, 0x00, 0x00, 0x25, 0x13, 0x00, 0x2f, 0x00, +0x03, 0xaa, 0x04, 0xa9, 0x05, 0xa8, 0x1f, 0xf0, 0x47, 0xfd, 0x05, 0x9b, 0x00, 0x2b, 0x14, 0xd0, +0x60, 0x69, 0x00, 0x28, 0x02, 0xd1, 0x30, 0x68, 0x01, 0x25, 0x60, 0x61, 0x03, 0x9a, 0x07, 0x99, +0x01, 0x92, 0x00, 0x91, 0x22, 0x00, 0x00, 0x21, 0x1e, 0x00, 0x04, 0x98, 0x0b, 0x00, 0xb0, 0x47, +0x07, 0x00, 0x00, 0x2d, 0x01, 0xd0, 0x00, 0x20, 0x60, 0x61, 0x38, 0x00, 0x09, 0xb0, 0xf0, 0xbd, +0x70, 0xb5, 0x86, 0xb0, 0x06, 0x00, 0x00, 0x25, 0x03, 0xaa, 0x04, 0xa9, 0x05, 0xa8, 0x02, 0xab, +0x1f, 0xf0, 0x22, 0xfd, 0x05, 0x9c, 0x00, 0x2c, 0x09, 0xd0, 0x03, 0x9a, 0x00, 0x21, 0x01, 0x92, +0x0a, 0x00, 0x00, 0x91, 0x31, 0x00, 0x04, 0x98, 0x00, 0x23, 0xa0, 0x47, 0x05, 0x00, 0x28, 0x00, +0x06, 0xb0, 0x70, 0xbd, 0x38, 0x48, 0x20, 0x30, 0x01, 0x7f, 0x49, 0x1c, 0x01, 0x77, 0x36, 0x49, +0x09, 0x6a, 0x00, 0x29, 0x0a, 0xd0, 0x0a, 0x79, 0x03, 0x2a, 0x07, 0xd1, 0x42, 0x7f, 0x52, 0x1c, +0x42, 0x77, 0xcb, 0x69, 0x4a, 0x6a, 0x08, 0x68, 0x09, 0x21, 0x18, 0x47, 0x70, 0x47, 0x2e, 0x48, +0x10, 0xb5, 0x00, 0x6a, 0x00, 0x28, 0x0b, 0xd0, 0x20, 0x30, 0x01, 0x7b, 0x03, 0x29, 0x07, 0xd1, +0x01, 0x21, 0x01, 0x73, 0x2d, 0x48, 0x07, 0x22, 0x00, 0x68, 0x40, 0x21, 0x2d, 0xa8, 0xaf, 0xca, +0x01, 0x00, 0x00, 0x00, 0xc0, 0x3f, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x72, 0x7e, 0xdb, 0xae, +0x1e, 0xf0, 0x22, 0xfa, 0x10, 0xbd, 0x70, 0xb5, 0x04, 0x20, 0x24, 0x4c, 0x23, 0x6a, 0x00, 0x2b, +0x24, 0xd0, 0x2c, 0x21, 0xc9, 0x5c, 0x18, 0x68, 0x03, 0x25, 0x01, 0x29, 0x09, 0xd1, 0xff, 0xf7, +0x25, 0xfc, 0x00, 0x28, 0x10, 0xd0, 0x01, 0x20, 0x0a, 0xe0, 0x20, 0x6a, 0x20, 0x30, 0x05, 0x73, +0x13, 0xe0, 0x02, 0x29, 0x13, 0xd1, 0xff, 0xf7, 0x19, 0xfc, 0x00, 0x28, 0x04, 0xd0, 0x00, 0x20, +0xff, 0xf7, 0x39, 0xff, 0x03, 0x28, 0xf0, 0xd0, 0x01, 0x20, 0xfd, 0xf7, 0x5b, 0xf8, 0x18, 0x48, +0x07, 0x22, 0x00, 0x68, 0x40, 0x21, 0x1e, 0xf0, 0xf7, 0xf9, 0x03, 0x20, 0x70, 0xbd, 0x03, 0x29, +0x0e, 0xd1, 0x18, 0x6b, 0x0b, 0x21, 0x89, 0x01, 0x40, 0x18, 0x00, 0x69, 0x02, 0x21, 0x01, 0xf0, +0x3b, 0xff, 0x20, 0x6a, 0x04, 0x21, 0x20, 0x30, 0x01, 0x73, 0xff, 0xf7, 0xe1, 0xfe, 0xec, 0xe7, +0x06, 0x29, 0x01, 0xd1, 0x06, 0x20, 0x06, 0xe0, 0x07, 0x29, 0x13, 0xd1, 0x00, 0x21, 0x01, 0x20, +0xff, 0xf7, 0xa8, 0xfe, 0x07, 0x20, 0xff, 0xf7, 0x74, 0xfd, 0xde, 0xe7, 0xd8, 0x32, 0x01, 0xc0, +0xa0, 0x86, 0x01, 0x00, 0x99, 0x38, 0x00, 0x00, 0x98, 0x2f, 0x01, 0xc0, 0x4c, 0xee, 0x00, 0xc0, +0x6c, 0xf4, 0x00, 0xc0, 0x08, 0x29, 0x01, 0xd1, 0x08, 0x20, 0xec, 0xe7, 0x5a, 0x6a, 0xdb, 0x69, +0x98, 0x47, 0xca, 0xe7, 0x1d, 0x49, 0x04, 0x20, 0x09, 0x6a, 0x00, 0x29, 0x07, 0xd0, 0x0a, 0x79, +0x03, 0x2a, 0x04, 0xd1, 0xcb, 0x69, 0x4a, 0x6a, 0x08, 0x68, 0x05, 0x21, 0x18, 0x47, 0x70, 0x47, +0x16, 0x48, 0x00, 0x6a, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x20, 0x70, 0x47, 0x13, 0x48, 0x00, 0x6a, +0x00, 0x28, 0x00, 0xd0, 0x01, 0x20, 0x70, 0x47, 0x10, 0x48, 0x00, 0x21, 0x10, 0xb5, 0x00, 0x6b, +0xc9, 0x43, 0x1e, 0xf0, 0xa5, 0xf9, 0x10, 0xbd, 0x0c, 0x48, 0x10, 0xb5, 0x00, 0x6b, 0x1e, 0xf0, +0xa6, 0xf9, 0x10, 0xbd, 0x30, 0xb5, 0x04, 0x00, 0x09, 0x4d, 0x00, 0x20, 0x01, 0x00, 0x38, 0x22, +0x4a, 0x43, 0x52, 0x19, 0x93, 0x69, 0xa3, 0x42, 0x01, 0xd1, 0x10, 0x00, 0x18, 0x30, 0x49, 0x1c, +0x00, 0x28, 0x01, 0xd1, 0x0f, 0x29, 0xf2, 0xd3, 0x30, 0xbd, 0x00, 0x00, 0xd8, 0x32, 0x01, 0xc0, +0x98, 0x2f, 0x01, 0xc0, 0x10, 0xb5, 0x00, 0x24, 0x20, 0x29, 0x0f, 0xd0, 0x65, 0x29, 0x0b, 0xd1, +0x08, 0x48, 0x19, 0xf3, 0xbd, 0xfa, 0x00, 0x28, 0x05, 0xd1, 0x06, 0x48, 0x14, 0x30, 0x19, 0xf3, +0xb7, 0xfa, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x24, 0x20, 0x00, 0x10, 0xbd, 0x02, 0x48, 0x82, 0x60, +0xfa, 0xe7, 0x00, 0x00, 0xb0, 0x3f, 0x00, 0x04, 0x50, 0xee, 0x00, 0xc0, 0x01, 0x22, 0x10, 0xb5, +0xff, 0x48, 0x06, 0x21, 0x42, 0x70, 0x01, 0x70, 0xfe, 0x48, 0x01, 0x68, 0x93, 0x05, 0x19, 0x43, +0x01, 0x60, 0xfd, 0x48, 0x01, 0x68, 0x11, 0x43, 0x01, 0x60, 0xfc, 0x48, 0x0f, 0xf3, 0xd4, 0xfe, +0x01, 0x20, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xb5, 0x0f, 0xf3, 0xa8, 0xfe, 0xf4, 0x49, 0x49, 0x1f, +0x48, 0x70, 0x10, 0xbd, 0x01, 0x20, 0x10, 0xb5, 0x0f, 0xf3, 0xa0, 0xfe, 0xf0, 0x49, 0x49, 0x1f, +0x88, 0x70, 0x10, 0xbd, 0x00, 0x20, 0x70, 0x47, 0x40, 0x42, 0x02, 0x29, 0x00, 0xd9, 0x02, 0x21, +0xeb, 0x4a, 0x89, 0x00, 0x23, 0x32, 0x89, 0x18, 0xed, 0x4a, 0x12, 0x68, 0x01, 0x2a, 0x01, 0xd1, +0x8a, 0x56, 0x01, 0xe0, 0x00, 0x22, 0x8a, 0x56, 0x10, 0x18, 0x02, 0x22, 0x8a, 0x56, 0x82, 0x42, +0x03, 0xdb, 0x03, 0x22, 0x8a, 0x56, 0x82, 0x42, 0x00, 0xdd, 0x10, 0x00, 0x00, 0x06, 0x00, 0x16, +0x70, 0x47, 0xe3, 0x49, 0xde, 0x4a, 0x09, 0x68, 0x40, 0x42, 0x92, 0x1c, 0x01, 0x29, 0x01, 0xd1, +0x51, 0x56, 0x01, 0xe0, 0x00, 0x21, 0x51, 0x56, 0x08, 0x18, 0x02, 0x21, 0x51, 0x56, 0x81, 0x42, +0x03, 0xdb, 0x03, 0x21, 0x51, 0x56, 0x81, 0x42, 0x00, 0xdd, 0x08, 0x00, 0x00, 0x06, 0x00, 0x16, +0x70, 0x47, 0xd3, 0x49, 0x02, 0x78, 0x89, 0x1c, 0x0a, 0x70, 0x02, 0x79, 0x4a, 0x70, 0x82, 0x78, +0x21, 0x31, 0x0a, 0x70, 0x82, 0x79, 0x4a, 0x70, 0x42, 0x78, 0x0a, 0x71, 0x42, 0x79, 0x4a, 0x71, +0xc2, 0x78, 0x0a, 0x72, 0xc0, 0x79, 0x48, 0x72, 0x70, 0x47, 0xc9, 0x49, 0x02, 0x20, 0xc0, 0x43, +0x89, 0x1c, 0x08, 0x70, 0x48, 0x70, 0x21, 0x31, 0x08, 0x70, 0x48, 0x70, 0x08, 0x71, 0x48, 0x71, +0x08, 0x72, 0x48, 0x72, 0x70, 0x47, 0x00, 0x28, 0x01, 0xdd, 0x00, 0x20, 0x04, 0xe0, 0x64, 0x21, +0xc9, 0x43, 0x88, 0x42, 0x00, 0xda, 0x08, 0x00, 0x40, 0x42, 0x00, 0x06, 0x00, 0x16, 0x70, 0x47, +0x00, 0x20, 0x70, 0x47, 0x7c, 0xb5, 0x6b, 0x46, 0x00, 0x24, 0xb9, 0x4e, 0x19, 0x70, 0xf6, 0x1d, +0x58, 0x70, 0x00, 0x98, 0x01, 0xa9, 0x10, 0xf0, 0xe9, 0xfe, 0x00, 0x28, 0x0b, 0xd0, 0xa5, 0x00, +0x6b, 0x46, 0x59, 0x79, 0x70, 0x5b, 0x0f, 0xf3, 0x3e, 0xfe, 0xa8, 0x19, 0x6b, 0x46, 0x19, 0x79, +0x40, 0x88, 0x0f, 0xf3, 0x38, 0xfe, 0x64, 0x1c, 0x01, 0x2c, 0xea, 0xdb, 0x7c, 0xbd, 0x7c, 0xb5, +0x6b, 0x46, 0x00, 0x24, 0xaa, 0x4e, 0x19, 0x70, 0x0b, 0x36, 0x58, 0x70, 0x00, 0x98, 0x01, 0xa9, +0x10, 0xf0, 0xb7, 0xfe, 0x00, 0x28, 0x0b, 0xd0, 0xa5, 0x00, 0x6b, 0x46, 0x59, 0x79, 0x70, 0x5b, +0x0f, 0xf3, 0x21, 0xfe, 0xa8, 0x19, 0x6b, 0x46, 0x19, 0x79, 0x40, 0x88, 0x0f, 0xf3, 0x1b, 0xfe, +0x64, 0x1c, 0x01, 0x2c, 0xea, 0xdb, 0x7c, 0xbd, 0x7c, 0xb5, 0x6b, 0x46, 0x00, 0x24, 0x9c, 0x4e, +0x19, 0x70, 0x0f, 0x36, 0x58, 0x70, 0x00, 0x98, 0x01, 0xa9, 0x10, 0xf0, 0xc3, 0xfe, 0x00, 0x28, +0x0b, 0xd0, 0xa5, 0x00, 0x6b, 0x46, 0x59, 0x79, 0x70, 0x5b, 0x0f, 0xf3, 0x04, 0xfe, 0xa8, 0x19, +0x6b, 0x46, 0x19, 0x79, 0x40, 0x88, 0x0f, 0xf3, 0xfe, 0xfd, 0x64, 0x1c, 0x01, 0x2c, 0xea, 0xdb, +0x7c, 0xbd, 0x3e, 0xb5, 0x6b, 0x46, 0x0c, 0x00, 0x19, 0x70, 0x58, 0x70, 0x00, 0x98, 0x01, 0xa9, +0x10, 0xf0, 0xd2, 0xfe, 0x00, 0x28, 0x03, 0xd0, 0x01, 0xa8, 0xff, 0xf7, 0x6a, 0xff, 0x3e, 0xbd, +0x20, 0x00, 0xff, 0xf7, 0x7a, 0xff, 0x3e, 0xbd, 0x00, 0x28, 0x00, 0xb5, 0x11, 0xd1, 0x02, 0x2a, +0x05, 0xd1, 0x09, 0x29, 0x01, 0xd8, 0x48, 0x1c, 0x00, 0xbd, 0x08, 0x20, 0x00, 0xbd, 0x03, 0x2a, +0x05, 0xd1, 0x05, 0x29, 0x01, 0xd3, 0xc8, 0x1e, 0x00, 0xbd, 0x02, 0x20, 0x00, 0xbd, 0x48, 0x1e, +0x00, 0xbd, 0x02, 0x2a, 0x01, 0xd0, 0x03, 0x2a, 0x40, 0xd1, 0x70, 0x29, 0x38, 0xd0, 0x11, 0xdc, +0x88, 0x07, 0x80, 0x0f, 0x38, 0xd1, 0x8b, 0x10, 0x09, 0x3b, 0x18, 0xf3, 0x94, 0xed, 0x13, 0x27, +0x27, 0x29, 0x29, 0x35, 0x35, 0x2b, 0x2b, 0x35, 0x35, 0x35, 0x35, 0x35, 0x35, 0x35, 0x35, 0x2f, +0x2f, 0x31, 0x35, 0x00, 0x88, 0x29, 0x0d, 0xd0, 0x0e, 0xdc, 0x7c, 0x29, 0x22, 0xd0, 0x05, 0xdc, +0x74, 0x29, 0x01, 0xd0, 0x78, 0x29, 0x1f, 0xd1, 0x76, 0x20, 0x00, 0xbd, 0x80, 0x29, 0x19, 0xd0, +0x84, 0x29, 0x19, 0xd1, 0x86, 0x20, 0x00, 0xbd, 0x95, 0x29, 0x0d, 0xd0, 0x99, 0x29, 0x0b, 0xd0, +0x9d, 0x29, 0x01, 0xd0, 0xa1, 0x29, 0x0f, 0xd1, 0x9f, 0x20, 0x00, 0xbd, 0x0b, 0x5e, 0x4a, 0xac, +0x01, 0x00, 0x00, 0x00, 0xbc, 0x43, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x70, 0x87, 0x03, 0xb8, +0x26, 0x20, 0x00, 0xbd, 0x2e, 0x20, 0x00, 0xbd, 0x3e, 0x20, 0x00, 0xbd, 0x97, 0x20, 0x00, 0xbd, +0x66, 0x20, 0x00, 0xbd, 0x6e, 0x20, 0x00, 0xbd, 0x7e, 0x20, 0x00, 0xbd, 0x36, 0x20, 0x00, 0xbd, +0x08, 0x00, 0x00, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0xff, 0xf7, 0xa0, 0xff, 0x00, 0x2c, 0x00, 0xd1, +0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x10, 0xbd, 0x00, 0x28, 0x04, 0xd0, 0x01, 0x28, 0x02, 0xd0, +0x55, 0x4a, 0x90, 0x42, 0x05, 0xd1, 0x4f, 0x4a, 0x92, 0x1e, 0x10, 0x70, 0x00, 0x20, 0x51, 0x70, +0x70, 0x47, 0x01, 0x20, 0x70, 0x47, 0x10, 0xb5, 0x4a, 0x4c, 0xa4, 0x1e, 0x20, 0x78, 0xff, 0x28, +0x1e, 0xd0, 0x01, 0x28, 0x04, 0xd1, 0x04, 0x21, 0x70, 0x20, 0x0f, 0xf3, 0x85, 0xfd, 0x03, 0xe0, +0x04, 0x21, 0x70, 0x20, 0x0f, 0xf3, 0x8d, 0xfd, 0x5f, 0x20, 0x0f, 0xf3, 0x41, 0xfd, 0x61, 0x78, +0x40, 0x18, 0x01, 0x06, 0x09, 0x0e, 0x5f, 0x20, 0x0f, 0xf3, 0x57, 0xfd, 0x60, 0x20, 0x0f, 0xf3, +0x37, 0xfd, 0x61, 0x78, 0x40, 0x18, 0x01, 0x06, 0x09, 0x0e, 0x60, 0x20, 0x0f, 0xf3, 0x4d, 0xfd, +0x10, 0xbd, 0xf7, 0xb5, 0x82, 0xb0, 0x04, 0x00, 0x0d, 0x00, 0x3c, 0x4e, 0x01, 0x20, 0x04, 0x90, +0xb0, 0x6a, 0x3b, 0x49, 0x08, 0x40, 0xb0, 0x62, 0x70, 0x6a, 0x3a, 0x49, 0x08, 0x43, 0x70, 0x62, +0x10, 0xf0, 0x30, 0xf8, 0x01, 0x90, 0x80, 0x21, 0x02, 0x20, 0x0f, 0xf3, 0x55, 0xfd, 0x01, 0x20, +0x0a, 0xf0, 0x3a, 0xff, 0x80, 0x21, 0x02, 0x20, 0x0f, 0xf3, 0x5b, 0xfd, 0x01, 0x20, 0x0a, 0xf0, +0x33, 0xff, 0x29, 0x00, 0x20, 0x00, 0x0f, 0xf0, 0xe3, 0xfe, 0x29, 0x48, 0x0f, 0xf3, 0x2e, 0xfd, +0x2f, 0x06, 0x3f, 0x0e, 0x04, 0x99, 0x3a, 0x00, 0x20, 0x00, 0x0f, 0xf0, 0x55, 0xfe, 0x00, 0x2c, +0x0c, 0xd1, 0x0e, 0x2d, 0x01, 0xd1, 0x28, 0x48, 0x06, 0xe0, 0x10, 0xf0, 0x40, 0xfb, 0x01, 0x28, +0x01, 0xd1, 0x26, 0x48, 0x00, 0xe0, 0x26, 0x48, 0x0f, 0xf3, 0x18, 0xfd, 0xff, 0xf7, 0x9b, 0xff, +0x01, 0x98, 0x10, 0xf0, 0x06, 0xf8, 0x04, 0x9a, 0x21, 0x00, 0x28, 0x00, 0xff, 0xf7, 0xee, 0xfe, +0x04, 0x9a, 0x21, 0x00, 0x28, 0x00, 0xff, 0xf7, 0xcc, 0xfe, 0x04, 0x9a, 0x21, 0x00, 0x28, 0x00, +0xff, 0xf7, 0xaa, 0xfe, 0x04, 0x9a, 0x21, 0x00, 0x28, 0x00, 0xff, 0xf7, 0xfc, 0xfe, 0x70, 0x6a, +0x14, 0x49, 0xc9, 0x43, 0x08, 0x40, 0x70, 0x62, 0x0a, 0xf0, 0x4a, 0xff, 0x04, 0x99, 0x2a, 0x00, +0x20, 0x00, 0x0e, 0xf0, 0x93, 0xfe, 0x0a, 0xf0, 0x7e, 0xff, 0x20, 0x00, 0x0b, 0xf0, 0x2a, 0xfa, +0x0a, 0xf0, 0x3e, 0xff, 0x04, 0x9a, 0x39, 0x00, 0x20, 0x00, 0xff, 0xf7, 0x53, 0xff, 0x07, 0x00, +0x20, 0x00, 0x17, 0xe0, 0x65, 0xee, 0x00, 0xc0, 0x80, 0x21, 0x00, 0x80, 0x00, 0x2d, 0x00, 0x80, +0x68, 0x1d, 0x01, 0xc0, 0x04, 0x00, 0x00, 0x04, 0xff, 0xff, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x80, +0xfc, 0xfd, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x80, 0x68, 0x1e, 0x01, 0xc0, 0x60, 0x1e, 0x01, 0xc0, +0x64, 0x1e, 0x01, 0xc0, 0x0a, 0xf0, 0x91, 0xfd, 0x06, 0x00, 0x01, 0x00, 0x20, 0x00, 0x0f, 0xf0, +0x2d, 0xfe, 0x31, 0x00, 0x20, 0x00, 0x0e, 0xf0, 0x85, 0xfe, 0x02, 0x21, 0x07, 0x20, 0x0d, 0xf3, +0x79, 0xf8, 0x0f, 0xf0, 0x39, 0xfe, 0x00, 0x2e, 0x04, 0xd0, 0x10, 0x21, 0x07, 0x20, 0x0d, 0xf3, +0x71, 0xf8, 0x03, 0xe0, 0x10, 0x21, 0x07, 0x20, 0x0d, 0xf3, 0x61, 0xf8, 0x39, 0x00, 0x20, 0x00, +0x0e, 0xf0, 0x78, 0xfe, 0x04, 0x99, 0x2a, 0x00, 0x20, 0x00, 0x0e, 0xf0, 0xbf, 0xfd, 0x0e, 0xf0, +0x99, 0xfd, 0x0f, 0xf0, 0x33, 0xfe, 0x23, 0x4d, 0x00, 0x2e, 0x1f, 0xd0, 0x22, 0x48, 0x00, 0x68, +0x00, 0x28, 0x17, 0xdb, 0x07, 0x20, 0x0d, 0xf3, 0x11, 0xf8, 0x80, 0x09, 0x01, 0x28, 0x03, 0xd1, +0xe8, 0x69, 0x40, 0x1c, 0xe8, 0x61, 0x0a, 0xe0, 0x02, 0x28, 0x03, 0xd1, 0x28, 0x6a, 0x40, 0x1c, +0x28, 0x62, 0x04, 0xe0, 0x03, 0x28, 0x02, 0xd1, 0x68, 0x6a, 0x40, 0x1c, 0x68, 0x62, 0xa8, 0x69, +0x40, 0x1c, 0xa8, 0x61, 0x02, 0x21, 0x07, 0x20, 0x0d, 0xf3, 0x31, 0xf8, 0x0a, 0xf0, 0x0b, 0xff, +0x12, 0x4e, 0x00, 0x2c, 0x01, 0xd1, 0x12, 0x48, 0x00, 0xe0, 0x12, 0x48, 0x30, 0x61, 0x28, 0x78, +0xa0, 0x42, 0x0b, 0xd0, 0x20, 0x00, 0x2c, 0x70, 0x0a, 0xf0, 0xdc, 0xfd, 0x20, 0x00, 0x0f, 0xf0, +0xf3, 0xfa, 0x20, 0x00, 0x0f, 0xf0, 0xfd, 0xfa, 0x6b, 0x46, 0x18, 0x70, 0x30, 0x69, 0x08, 0x21, +0x08, 0x43, 0x30, 0x61, 0x01, 0x20, 0x05, 0xb0, 0xf0, 0xbd, 0x02, 0x49, 0xff, 0x20, 0x08, 0x70, +0x70, 0x47, 0x00, 0x00, 0x60, 0xee, 0x00, 0xc0, 0x00, 0x2b, 0x00, 0x80, 0xc0, 0xa2, 0x00, 0x80, +0x08, 0xa8, 0x00, 0x00, 0x08, 0x68, 0x00, 0x00, 0x70, 0xb5, 0xff, 0x4d, 0x69, 0x69, 0xff, 0x48, +0x41, 0x65, 0xff, 0x49, 0x09, 0x68, 0x81, 0x65, 0xfe, 0x48, 0x00, 0x24, 0x84, 0x61, 0xfc, 0xf7, +0x3e, 0xfc, 0x10, 0x20, 0xfc, 0xf7, 0x21, 0xfc, 0xe8, 0x0c, 0xfc, 0xf7, 0x1e, 0xfc, 0x2c, 0x60, +0x70, 0xbd, 0x10, 0xb5, 0xf5, 0x4c, 0x02, 0x00, 0x61, 0x6b, 0x20, 0x6b, 0x18, 0xf3, 0xf8, 0xeb, +0x7d, 0x22, 0xd2, 0x00, 0x18, 0xf3, 0xf4, 0xeb, 0xe3, 0x6a, 0xa2, 0x6a, 0x17, 0xf3, 0xb6, 0xef, +0x10, 0xbd, 0xf8, 0xb5, 0x7d, 0x22, 0x07, 0x00, 0xec, 0x4c, 0xd2, 0x00, 0x61, 0x6b, 0x20, 0x6b, +0x18, 0xf3, 0xe6, 0xeb, 0x05, 0x00, 0x0e, 0x00, 0xe1, 0x6a, 0xa0, 0x6a, 0x3a, 0x00, 0x18, 0xf3, +0xe0, 0xeb, 0x33, 0x00, 0x2a, 0x00, 0x17, 0xf3, 0xa2, 0xef, 0xf8, 0xbd, 0x10, 0xb5, 0xe3, 0x4c, +0x02, 0x00, 0x61, 0x6b, 0x20, 0x6b, 0x18, 0xf3, 0xd4, 0xeb, 0x7d, 0x22, 0xd2, 0x04, 0x18, 0xf3, +0xd0, 0xeb, 0xe3, 0x6a, 0xa2, 0x6a, 0x17, 0xf3, 0x92, 0xef, 0x10, 0xbd, 0x10, 0xb5, 0x04, 0x00, +0x09, 0xf0, 0x91, 0xfc, 0x21, 0x00, 0x1c, 0xf0, 0x26, 0xee, 0xdb, 0x4a, 0x00, 0x23, 0x17, 0xf3, +0x86, 0xef, 0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0xd4, 0x4d, 0x01, 0x20, 0x68, 0x72, 0xd7, 0x48, +0x01, 0x68, 0x82, 0x0c, 0x11, 0x43, 0x01, 0x60, 0x0a, 0xf0, 0x3f, 0xff, 0xd4, 0x49, 0x40, 0x00, +0x08, 0x5a, 0x64, 0x23, 0x58, 0x43, 0xa8, 0x61, 0x60, 0x43, 0xfc, 0xf7, 0xa3, 0xfb, 0x70, 0xbd, +0x10, 0xb5, 0x01, 0x24, 0xfc, 0xf7, 0x93, 0xfb, 0x20, 0x00, 0x10, 0xbd, 0xc7, 0x48, 0x00, 0x79, +0x70, 0x47, 0x70, 0xb5, 0xfc, 0xf7, 0xa0, 0xfb, 0x06, 0x00, 0xfc, 0xf7, 0xac, 0xfb, 0xc3, 0x4c, +0x00, 0x25, 0x26, 0x63, 0x65, 0x63, 0xa1, 0x69, 0xe5, 0x62, 0x41, 0x43, 0xc3, 0x48, 0xa1, 0x62, +0x01, 0x68, 0x82, 0x0c, 0x91, 0x43, 0x01, 0x60, 0x20, 0x79, 0x00, 0x28, 0x04, 0xd1, 0x01, 0x20, +0xff, 0xf7, 0xac, 0xff, 0xfc, 0xf7, 0x8c, 0xfb, 0x65, 0x72, 0x70, 0xbd, 0x70, 0xb5, 0xb7, 0x4c, +0x20, 0x69, 0xff, 0xf7, 0x7e, 0xff, 0x61, 0x89, 0x18, 0xf3, 0xb2, 0xee, 0xe0, 0x61, 0x05, 0x00, +0xb8, 0x48, 0xa1, 0x69, 0x18, 0xf3, 0xac, 0xee, 0x01, 0x00, 0xa8, 0x42, 0x01, 0xd8, 0xe0, 0x69, +0x01, 0xe0, 0x08, 0x00, 0xe1, 0x61, 0x7d, 0x21, 0xc9, 0x00, 0x18, 0xf3, 0x21, 0x34, 0x0a, 0x8e, +0x01, 0x00, 0x00, 0x00, 0xb8, 0x47, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x23, 0x5d, 0xd0, 0xd4, +0xa2, 0xee, 0x20, 0x62, 0x70, 0xbd, 0x0a, 0x20, 0x10, 0xb5, 0xff, 0xf7, 0xa5, 0xff, 0xff, 0xf7, +0xb9, 0xff, 0x04, 0x00, 0x10, 0xd0, 0xff, 0xf7, 0xbe, 0xff, 0xff, 0xf7, 0xd9, 0xff, 0xa4, 0x48, +0x01, 0x6a, 0x08, 0x00, 0x0a, 0x29, 0x07, 0xd9, 0xff, 0xf7, 0x96, 0xff, 0xfc, 0xf7, 0x41, 0xfb, +0xff, 0xf7, 0xb1, 0xff, 0xff, 0xf7, 0xcc, 0xff, 0x20, 0x00, 0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, +0x9b, 0x4d, 0x01, 0x20, 0x68, 0x72, 0x9e, 0x48, 0x01, 0x68, 0x82, 0x0c, 0x11, 0x43, 0x01, 0x60, +0x0a, 0xf0, 0xcd, 0xfe, 0x9b, 0x49, 0x40, 0x00, 0x08, 0x5a, 0x64, 0x21, 0x41, 0x43, 0x00, 0x2c, +0xa9, 0x61, 0x02, 0xd0, 0x08, 0x00, 0x60, 0x43, 0x05, 0xe0, 0xe8, 0x69, 0x48, 0x43, 0x7d, 0x21, +0xc9, 0x00, 0x18, 0xf3, 0x68, 0xee, 0xfc, 0xf7, 0x27, 0xfb, 0x70, 0xbd, 0x8c, 0x49, 0x0a, 0x6a, +0x82, 0x42, 0x06, 0xd8, 0x4a, 0x7a, 0x00, 0x2a, 0x03, 0xd1, 0x49, 0x79, 0x00, 0x29, 0x00, 0xd1, +0xd4, 0xe7, 0x70, 0x47, 0xf3, 0xb5, 0x83, 0xb0, 0x00, 0x27, 0x85, 0x49, 0x0d, 0x00, 0x6b, 0x6b, +0x2a, 0x6b, 0x39, 0x00, 0x18, 0xf3, 0x0a, 0xec, 0x02, 0x90, 0x0c, 0x00, 0xe9, 0x6a, 0xa8, 0x6a, +0x04, 0x9a, 0x18, 0xf3, 0x10, 0xeb, 0x05, 0x00, 0x0e, 0x00, 0x06, 0x22, 0x18, 0xf3, 0x0a, 0xeb, +0x3b, 0x00, 0x05, 0x22, 0x17, 0xf3, 0xcc, 0xee, 0x01, 0x91, 0xaa, 0x0f, 0xb1, 0x00, 0x11, 0x43, +0x00, 0x90, 0xa8, 0x00, 0x3b, 0x00, 0x05, 0x22, 0x17, 0xf3, 0xc2, 0xee, 0x02, 0x9a, 0x23, 0x00, +0x12, 0x1a, 0x8b, 0x41, 0x1a, 0xd3, 0x68, 0x46, 0x07, 0xc8, 0x80, 0x1a, 0xa1, 0x41, 0x15, 0xd3, +0x07, 0x22, 0x31, 0x00, 0x28, 0x00, 0x18, 0xf3, 0xee, 0xea, 0x02, 0x9a, 0x80, 0x18, 0x61, 0x41, +0x6b, 0x4c, 0x4a, 0x07, 0xc0, 0x08, 0x10, 0x43, 0x63, 0x6b, 0x22, 0x6b, 0xc9, 0x08, 0x17, 0xf3, +0xa8, 0xee, 0xe1, 0x62, 0xa0, 0x62, 0x04, 0x98, 0x67, 0x63, 0x20, 0x63, 0x05, 0xb0, 0xf0, 0xbd, +0x70, 0xb5, 0x63, 0x4c, 0x60, 0x79, 0x00, 0x28, 0x11, 0xd1, 0xfc, 0xf7, 0xc2, 0xfa, 0xfc, 0xf7, +0xd5, 0xfa, 0x05, 0x00, 0xfc, 0xf7, 0xe1, 0xfa, 0x61, 0x4a, 0x01, 0x00, 0x10, 0x68, 0x93, 0x0c, +0x98, 0x43, 0x10, 0x60, 0xa0, 0x69, 0x48, 0x43, 0x29, 0x00, 0xff, 0xf7, 0xa3, 0xff, 0x20, 0x79, +0x00, 0x28, 0x04, 0xd1, 0x01, 0x20, 0xff, 0xf7, 0xe3, 0xfe, 0xfc, 0xf7, 0xc3, 0xfa, 0x00, 0x20, +0x60, 0x72, 0x70, 0xbd, 0x70, 0xb5, 0xff, 0x24, 0x51, 0x4d, 0x5a, 0x34, 0x2b, 0x68, 0xc3, 0x1a, +0x1b, 0x1b, 0xff, 0x3b, 0xff, 0x3b, 0x1b, 0x1f, 0x00, 0x2b, 0x04, 0xdc, 0x53, 0x49, 0x88, 0x6a, +0x40, 0x1c, 0x88, 0x62, 0x03, 0xe0, 0x81, 0x42, 0x01, 0xd8, 0x82, 0x42, 0x01, 0xd2, 0x00, 0x20, +0x70, 0xbd, 0x18, 0x00, 0xff, 0xf7, 0xaf, 0xfe, 0x06, 0x00, 0x20, 0x00, 0xff, 0xf7, 0xd0, 0xfe, +0x04, 0x00, 0x28, 0x68, 0xff, 0xf7, 0xa7, 0xfe, 0x82, 0x19, 0x23, 0x00, 0x00, 0x21, 0x30, 0x00, +0xfc, 0xf7, 0x00, 0xfb, 0x28, 0x79, 0x00, 0x28, 0x06, 0xd1, 0x28, 0x68, 0xff, 0xf7, 0x9b, 0xfe, +0x00, 0x04, 0x00, 0x0c, 0xfc, 0xf7, 0x6d, 0xfa, 0x01, 0x20, 0x70, 0xbd, 0xf8, 0xb5, 0x05, 0x00, +0x68, 0x46, 0xfc, 0xf7, 0xaa, 0xfb, 0x3e, 0x48, 0x00, 0x99, 0x00, 0x68, 0x81, 0x42, 0x01, 0xd0, +0xfc, 0xf7, 0x88, 0xfb, 0x3b, 0x48, 0x00, 0x99, 0x00, 0x68, 0x81, 0x42, 0x01, 0xd0, 0xfc, 0xf7, +0x81, 0xfb, 0x39, 0x4c, 0x39, 0x4e, 0x20, 0x78, 0xff, 0x28, 0x0a, 0xd1, 0x05, 0xf0, 0xcd, 0xfe, +0x00, 0x28, 0x06, 0xd0, 0x00, 0x2d, 0x04, 0xd0, 0x30, 0x68, 0x22, 0x00, 0x0d, 0x21, 0xfc, 0xf7, +0x83, 0xfb, 0x00, 0x99, 0x30, 0x68, 0x81, 0x42, 0x01, 0xd0, 0xfc, 0xf7, 0x6b, 0xfb, 0x30, 0x48, +0x00, 0x99, 0x00, 0x68, 0x81, 0x42, 0x01, 0xd0, 0xfc, 0xf7, 0x64, 0xfb, 0xf8, 0xbd, 0x28, 0x48, +0x38, 0xb5, 0x00, 0x68, 0xfc, 0xf7, 0x64, 0xfb, 0x26, 0x48, 0x00, 0x68, 0xfc, 0xf7, 0x60, 0xfb, +0x26, 0x4d, 0x28, 0x68, 0xfc, 0xf7, 0x5c, 0xfb, 0x25, 0x48, 0x00, 0x68, 0xfc, 0xf7, 0x58, 0xfb, +0x21, 0x4c, 0x21, 0x78, 0xff, 0x29, 0x05, 0xd0, 0x28, 0x68, 0x6a, 0x46, 0xfc, 0xf7, 0x5c, 0xfb, +0xff, 0x20, 0x20, 0x70, 0x38, 0xbd, 0x1c, 0x48, 0x10, 0xb5, 0x60, 0x38, 0x00, 0x78, 0xc0, 0x07, +0x05, 0xd0, 0x0a, 0xf0, 0xbf, 0xfc, 0x0e, 0xf0, 0x13, 0xfa, 0x0a, 0xf0, 0xf6, 0xfc, 0x10, 0xbd, +0xf8, 0xb5, 0x0a, 0xf0, 0xb0, 0xff, 0x11, 0x4e, 0x00, 0x25, 0x75, 0x60, 0xff, 0xf7, 0xcf, 0xff, +0x08, 0x49, 0x80, 0x31, 0x08, 0x6b, 0x08, 0x22, 0x10, 0x43, 0x08, 0x63, 0x0e, 0x48, 0x11, 0x4f, +0x60, 0x38, 0x00, 0x78, 0x04, 0x4c, 0xc0, 0x07, 0x3d, 0xd0, 0x1d, 0xe0, 0x00, 0xa5, 0x00, 0x80, +0x18, 0x33, 0x01, 0xc0, 0x80, 0x22, 0x00, 0x80, 0x40, 0xa6, 0x00, 0x80, 0x40, 0x42, 0x0f, 0x00, +0x00, 0x21, 0x00, 0x80, 0xb8, 0x74, 0x02, 0x00, 0x00, 0x2d, 0x31, 0x01, 0x98, 0xee, 0x00, 0xc0, +0xb8, 0x76, 0x02, 0x00, 0x08, 0x77, 0x02, 0x00, 0xe2, 0x55, 0x00, 0x04, 0x68, 0xf4, 0x00, 0xc0, +0x74, 0xf0, 0x00, 0xc0, 0xef, 0xff, 0xff, 0xff, 0x1c, 0xf0, 0x6c, 0xfe, 0x00, 0x90, 0x20, 0x69, +0x0b, 0x21, 0x88, 0x43, 0x20, 0x61, 0x20, 0x69, 0xf1, 0x68, 0x08, 0x43, 0x20, 0x61, 0xa5, 0x61, +0xfc, 0xf7, 0x1f, 0xfa, 0xfc, 0xf7, 0x91, 0xfa, 0xf9, 0x48, 0xc7, 0x60, 0xf9, 0x49, 0x08, 0x68, +0x08, 0x22, 0x10, 0x43, 0x08, 0x60, 0xf8, 0x48, 0x01, 0x68, 0x11, 0x43, 0x01, 0x60, 0x00, 0x98, +0x1c, 0xf0, 0x54, 0xfe, 0x06, 0xe0, 0xa5, 0x61, 0xfc, 0xf7, 0x0b, 0xfa, 0xfc, 0xf7, 0x7d, 0xfa, +0xef, 0x48, 0xc7, 0x60, 0x0d, 0xf3, 0xa9, 0xf9, 0xf0, 0x48, 0xf1, 0x49, 0x40, 0x6d, 0x48, 0x61, +0x20, 0x69, 0x10, 0x21, 0x88, 0x43, 0x20, 0x61, 0x07, 0xf3, 0x03, 0xf9, 0xf8, 0xbd, 0xe9, 0x48, +0x10, 0xb5, 0xc0, 0x38, 0x01, 0x69, 0x0b, 0x22, 0x91, 0x43, 0x01, 0x61, 0x01, 0x69, 0xe9, 0x4a, +0x92, 0x68, 0x11, 0x43, 0x01, 0x61, 0x00, 0x21, 0x81, 0x61, 0x0a, 0xf0, 0x43, 0xfc, 0x0e, 0xf0, +0x97, 0xf9, 0x0a, 0xf0, 0x7a, 0xfc, 0xdf, 0x4a, 0x10, 0x68, 0x08, 0x21, 0x08, 0x43, 0x10, 0x60, +0xdd, 0x4a, 0x10, 0x68, 0x08, 0x43, 0x10, 0x60, 0x10, 0xbd, 0xff, 0xb5, 0x83, 0xb0, 0x04, 0x00, +0x00, 0x27, 0xdd, 0x4d, 0x05, 0xf0, 0xfc, 0xfd, 0x00, 0x28, 0x00, 0xd0, 0x02, 0x20, 0x1f, 0xf0, +0xdd, 0xff, 0x06, 0x00, 0x02, 0xd0, 0xf0, 0x68, 0xc0, 0x04, 0xc0, 0x0f, 0xff, 0xf7, 0x0e, 0xff, +0x1c, 0xf0, 0x08, 0xfe, 0x00, 0x22, 0x02, 0x90, 0xd4, 0x48, 0x00, 0x92, 0x00, 0x68, 0x08, 0x22, +0x01, 0x21, 0x01, 0xab, 0x1d, 0xf0, 0x38, 0xfc, 0x01, 0x98, 0x00, 0x28, 0x17, 0xd1, 0xd0, 0x48, +0x00, 0x22, 0x00, 0x68, 0x4a, 0x21, 0x06, 0xf3, 0x4a, 0xfc, 0x00, 0x28, 0x02, 0xd0, 0x0c, 0x98, +0x00, 0x28, 0x0c, 0xd0, 0xc5, 0x49, 0xcb, 0x4b, 0x08, 0x6e, 0x49, 0x6e, 0xff, 0x22, 0x18, 0x40, +0xf9, 0x32, 0x00, 0x23, 0x11, 0x40, 0x59, 0x40, 0x58, 0x40, 0x08, 0x43, 0x4e, 0x06, 0xf6, 0xad, +0x01, 0x00, 0x00, 0x00, 0xb4, 0x4b, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xd7, 0x32, 0xa5, 0x60, +0x0a, 0xd0, 0xbf, 0x48, 0xc4, 0x4c, 0x01, 0x6e, 0x42, 0x6e, 0xff, 0x23, 0xf9, 0x33, 0x21, 0x40, +0x1a, 0x40, 0x42, 0x66, 0x01, 0x66, 0x20, 0xe0, 0x00, 0x2c, 0x2a, 0xd0, 0x0d, 0xf3, 0x10, 0xf8, +0x00, 0x90, 0x04, 0x98, 0x22, 0x68, 0x63, 0x68, 0x0f, 0x00, 0x10, 0x1a, 0x00, 0x21, 0x8b, 0x41, +0x00, 0x9a, 0x19, 0x00, 0x3b, 0x00, 0x12, 0x1a, 0x8b, 0x41, 0x0a, 0xd2, 0x00, 0x9a, 0x20, 0x68, +0x61, 0x68, 0x80, 0x1a, 0xb9, 0x41, 0x06, 0x9a, 0x05, 0x99, 0xff, 0xf7, 0x8d, 0xfe, 0x00, 0x28, +0x06, 0xd1, 0xad, 0x48, 0x81, 0x69, 0x49, 0x1c, 0x81, 0x61, 0xff, 0xf7, 0x13, 0xff, 0xe7, 0xe0, +0xa7, 0x48, 0x62, 0x68, 0x21, 0x68, 0x80, 0x30, 0xc2, 0x60, 0x81, 0x60, 0x00, 0xf0, 0x5f, 0xf9, +0x07, 0x00, 0xa2, 0x4a, 0x10, 0x68, 0x08, 0x21, 0x88, 0x43, 0x10, 0x60, 0x9e, 0x4a, 0x10, 0x68, +0x88, 0x43, 0x10, 0x60, 0x9c, 0x48, 0xc0, 0x38, 0x01, 0x69, 0x9f, 0x4a, 0x04, 0x23, 0x19, 0x40, +0xd1, 0x60, 0x01, 0x69, 0x99, 0x43, 0x01, 0x61, 0x01, 0x69, 0x03, 0x22, 0x11, 0x43, 0x01, 0x61, +0x43, 0xe0, 0x99, 0x48, 0x41, 0x6a, 0x49, 0x1c, 0x6d, 0x1e, 0x41, 0x62, 0x3a, 0xd1, 0x05, 0x00, +0x00, 0x6a, 0x40, 0x1c, 0x28, 0x62, 0x05, 0xf0, 0x77, 0xfd, 0x00, 0x28, 0x97, 0x48, 0x12, 0xd0, +0x81, 0x69, 0x81, 0x69, 0x01, 0x69, 0x0b, 0x22, 0x91, 0x43, 0x01, 0x61, 0x8b, 0x4a, 0x11, 0x68, +0x08, 0x23, 0x19, 0x43, 0x11, 0x60, 0x01, 0x69, 0x8b, 0x4a, 0xd2, 0x68, 0x11, 0x43, 0x01, 0x61, +0x07, 0xf3, 0x39, 0xf8, 0xa4, 0xe0, 0x80, 0x69, 0x80, 0x06, 0x80, 0x0f, 0x01, 0x28, 0x02, 0xd1, +0x28, 0x69, 0x40, 0x1c, 0x28, 0x61, 0xff, 0xf7, 0x2c, 0xff, 0x06, 0xf0, 0x75, 0xff, 0x7f, 0x4a, +0x10, 0x68, 0x08, 0x21, 0x88, 0x43, 0x10, 0x60, 0x7b, 0x4a, 0x10, 0x68, 0x88, 0x43, 0x10, 0x60, +0x82, 0x48, 0x01, 0x69, 0x04, 0x22, 0x91, 0x43, 0x01, 0x61, 0x01, 0x69, 0x03, 0x22, 0x11, 0x43, +0x01, 0x61, 0x7a, 0x4d, 0x01, 0x20, 0x0a, 0xf0, 0x13, 0xfb, 0x7c, 0x48, 0x80, 0x69, 0x80, 0x06, +0x80, 0x0f, 0x03, 0x28, 0xb5, 0xd1, 0x00, 0x2c, 0x0d, 0xd0, 0x00, 0xf0, 0xf8, 0xf8, 0x06, 0x99, +0x07, 0x00, 0x88, 0x42, 0x02, 0xd8, 0x05, 0x98, 0x87, 0x42, 0x04, 0xd2, 0x6e, 0x48, 0xc1, 0x69, +0x49, 0x1c, 0xc1, 0x61, 0x68, 0xe0, 0x6b, 0x48, 0x41, 0x69, 0x69, 0x4a, 0x51, 0x65, 0x02, 0x21, +0x41, 0x61, 0x6f, 0x48, 0xfc, 0xf7, 0x52, 0xf8, 0x0d, 0xf3, 0x99, 0xf8, 0x61, 0x49, 0x80, 0x31, +0x08, 0x6b, 0x08, 0x22, 0x90, 0x43, 0x08, 0x63, 0x68, 0x48, 0x01, 0x69, 0x10, 0x22, 0x11, 0x43, +0x01, 0x61, 0x61, 0x48, 0x00, 0x78, 0x02, 0x28, 0x01, 0xd1, 0x02, 0x25, 0x00, 0xe0, 0x40, 0x25, +0x00, 0x2c, 0x02, 0xd0, 0x00, 0xf0, 0xcb, 0xf8, 0x07, 0x00, 0x00, 0x2f, 0x01, 0xd0, 0x01, 0x20, +0x05, 0x43, 0x00, 0x2e, 0x04, 0xd0, 0x0b, 0x20, 0x80, 0x01, 0x30, 0x18, 0x00, 0x69, 0x00, 0xe0, +0x00, 0x20, 0x01, 0x21, 0x01, 0xf0, 0x9e, 0xf8, 0x0a, 0xf0, 0x77, 0xfd, 0xe8, 0x07, 0xc0, 0x0f, +0x01, 0xd0, 0xfc, 0xf7, 0xb8, 0xf8, 0x42, 0x20, 0x05, 0x40, 0x1b, 0xd0, 0x68, 0x06, 0x0a, 0xd5, +0x10, 0x20, 0xfc, 0xf7, 0x98, 0xf8, 0x10, 0x20, 0xfc, 0xf7, 0xa1, 0xf8, 0x04, 0x20, 0xfc, 0xf7, +0x2d, 0xf9, 0xfc, 0xf7, 0x3c, 0xf9, 0xa8, 0x07, 0x0c, 0xd5, 0x01, 0x25, 0x2d, 0x03, 0x28, 0x00, +0xfc, 0xf7, 0x89, 0xf8, 0x28, 0x00, 0xfc, 0xf7, 0x98, 0xf8, 0x0c, 0x20, 0xfc, 0xf7, 0x1e, 0xf9, +0xfc, 0xf7, 0x2d, 0xf9, 0x40, 0x4d, 0x01, 0x20, 0x68, 0x60, 0x00, 0x2c, 0x16, 0xd0, 0x00, 0xf0, +0x8e, 0xf8, 0x06, 0x99, 0x88, 0x42, 0x02, 0xd8, 0x05, 0x99, 0x88, 0x42, 0x0e, 0xd2, 0xe8, 0x69, +0x01, 0x21, 0x09, 0x04, 0x40, 0x18, 0xe8, 0x61, 0xff, 0xf7, 0x2c, 0xfe, 0xff, 0xf7, 0x1d, 0xfe, +0x02, 0x98, 0x1c, 0xf0, 0xcd, 0xfc, 0x00, 0x20, 0x07, 0xb0, 0xf0, 0xbd, 0x0a, 0xf0, 0xe3, 0xfd, +0xc0, 0x20, 0x09, 0xf0, 0xe1, 0xf8, 0x02, 0x98, 0x1c, 0xf0, 0xc2, 0xfc, 0x00, 0x22, 0xd2, 0x43, +0x2f, 0x48, 0x00, 0x92, 0x00, 0x68, 0x08, 0x22, 0x01, 0x21, 0x01, 0xab, 0x1d, 0xf0, 0xee, 0xfa, +0x01, 0x20, 0xe9, 0xe7, 0x10, 0xb5, 0x05, 0xf0, 0x9f, 0xfc, 0x00, 0x28, 0x03, 0xd0, 0x26, 0x48, +0x40, 0x68, 0x00, 0x28, 0x01, 0xd0, 0xff, 0xf7, 0x05, 0xfe, 0x10, 0xbd, 0xf8, 0xb5, 0x1f, 0x4a, +0x22, 0x48, 0x11, 0x68, 0x08, 0x26, 0xb1, 0x43, 0x11, 0x60, 0x1b, 0x4a, 0x11, 0x68, 0xb1, 0x43, +0x11, 0x60, 0x22, 0x4c, 0x21, 0x69, 0x1c, 0x4d, 0x04, 0x27, 0x39, 0x40, 0xa9, 0x60, 0x21, 0x69, +0xb9, 0x43, 0x21, 0x61, 0x21, 0x69, 0x0b, 0x22, 0x11, 0x43, 0x21, 0x61, 0x40, 0x1e, 0x1a, 0xd1, +0xff, 0xf7, 0x4f, 0xfe, 0x06, 0xf0, 0x98, 0xfe, 0x20, 0x69, 0x38, 0x40, 0xa8, 0x60, 0x20, 0x69, +0xb8, 0x43, 0x20, 0x61, 0x0d, 0x49, 0x08, 0x68, 0xb0, 0x43, 0x08, 0x60, 0x0a, 0x49, 0x08, 0x68, +0xb0, 0x43, 0x08, 0x60, 0xa0, 0x69, 0x80, 0x06, 0x80, 0x0f, 0x01, 0x28, 0x02, 0xd1, 0x68, 0x69, +0x40, 0x1c, 0x68, 0x61, 0x09, 0x48, 0xa1, 0x69, 0x89, 0x06, 0x89, 0x0f, 0x03, 0x29, 0xd9, 0xd1, +0xf8, 0xbd, 0x00, 0x00, 0x80, 0x22, 0x00, 0x80, 0x00, 0xa7, 0x00, 0x80, 0x00, 0xa3, 0x00, 0x80, +0x18, 0x33, 0x01, 0xc0, 0x00, 0xa5, 0x00, 0x80, 0x98, 0xee, 0x00, 0xc0, 0x88, 0x13, 0x00, 0x00, +0xfc, 0x1c, 0x01, 0xc0, 0x18, 0xee, 0x00, 0xc0, 0x18, 0x00, 0x04, 0x00, 0x40, 0xa6, 0x00, 0x80, +0x10, 0x00, 0x10, 0x00, 0x01, 0x20, 0x70, 0x47, 0x09, 0x48, 0x40, 0x7a, 0x70, 0x47, 0x10, 0xb5, +0xfc, 0xf7, 0x71, 0xf8, 0x04, 0x00, 0xfc, 0xf7, 0x3a, 0xf8, 0x20, 0x1a, 0x05, 0xd5, 0x05, 0x49, +0xc8, 0x6a, 0x40, 0x1c, 0xc8, 0x62, 0x00, 0x20, 0x10, 0xbd, 0xff, 0xf7, 0xc6, 0xfb, 0x10, 0xbd, +0x18, 0x33, 0x01, 0xc0, 0x98, 0xee, 0x00, 0xc0, 0x70, 0x47, 0x10, 0xb5, 0x01, 0x24, 0x03, 0x20, +0x0d, 0xf3, 0xe7, 0xf8, 0xff, 0x49, 0x09, 0x6b, 0x02, 0x05, 0x09, 0x0c, 0x0b, 0x05, 0x12, 0x0d, +0x1b, 0x0d, 0x9a, 0x42, 0x04, 0xd1, 0x22, 0x03, 0x10, 0x40, 0x11, 0x40, 0x88, 0x42, 0x00, 0xd1, +0x00, 0x24, 0x20, 0x00, 0x10, 0xbd, 0x24, 0x21, 0x41, 0x43, 0xf7, 0x4a, 0x10, 0xb5, 0x8c, 0x18, +0x0d, 0xf3, 0xcf, 0xf8, 0xe2, 0x69, 0x01, 0x00, 0xd2, 0x04, 0xc9, 0x04, 0x01, 0x20, 0xd2, 0x0c, +0xc9, 0x0c, 0x8a, 0x42, 0x00, 0xd1, 0x00, 0x20, 0x10, 0xbd, 0x10, 0xb5, 0x02, 0xe0, 0x01, 0x20, +0xfc, 0xf7, 0xae, 0xf8, 0x04, 0x20, 0xff, 0xf7, 0xe6, 0xff, 0x00, 0x28, 0xf7, 0xd1, 0x02, 0xe0, +0x01, 0x20, 0xfc, 0xf7, 0xa5, 0xf8, 0x05, 0x20, 0xff, 0xf7, 0xdd, 0xff, 0x00, 0x28, 0xf7, 0xd1, +0x02, 0xe0, 0x01, 0x20, 0xfc, 0xf7, 0x9c, 0xf8, 0x06, 0x20, 0xff, 0xf7, 0xd4, 0xff, 0x00, 0x28, +0xf7, 0xd1, 0xe2, 0x4c, 0x0b, 0xe0, 0x22, 0xf0, 0xec, 0xe8, 0x00, 0x28, 0x04, 0xd0, 0x20, 0x68, +0x00, 0x22, 0x62, 0x21, 0x06, 0xf3, 0x3d, 0xfa, 0x01, 0x20, 0xfc, 0xf7, 0x7a, 0x2f, 0x28, 0x8a, +0x01, 0x00, 0x00, 0x00, 0xb0, 0x4f, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x84, 0xe8, 0x76, 0x0c, +0x89, 0xf8, 0x03, 0x20, 0xff, 0xf7, 0xc1, 0xff, 0x00, 0x28, 0xee, 0xd1, 0x10, 0xbd, 0xd9, 0x48, +0x40, 0x21, 0x10, 0xb5, 0x17, 0xf3, 0xe6, 0xed, 0x10, 0xbd, 0xf8, 0xb5, 0x0d, 0x00, 0x07, 0x00, +0x24, 0x20, 0x50, 0x43, 0xd1, 0x49, 0x40, 0x22, 0x44, 0x18, 0x39, 0x00, 0x28, 0x00, 0x17, 0xf3, +0x3e, 0xed, 0x28, 0x00, 0x1e, 0xf0, 0xac, 0xfd, 0x28, 0x00, 0x40, 0x30, 0x17, 0xf3, 0x78, 0xee, +0x39, 0x00, 0x40, 0x31, 0x20, 0x22, 0x0d, 0x00, 0x00, 0x90, 0x17, 0xf3, 0x30, 0xed, 0x29, 0x88, +0x22, 0x69, 0xa0, 0x69, 0x0d, 0x00, 0x60, 0x3d, 0x00, 0x26, 0x52, 0x1e, 0x90, 0x42, 0x07, 0xd1, +0xe0, 0x68, 0x0a, 0x1d, 0x82, 0x42, 0x03, 0xd9, 0x05, 0x00, 0x64, 0x3d, 0x0e, 0x1a, 0x36, 0x1d, +0x00, 0x98, 0x39, 0x00, 0x20, 0x30, 0x2a, 0x00, 0x64, 0x31, 0x00, 0x90, 0x17, 0xf3, 0x16, 0xed, +0x00, 0x2e, 0x06, 0xd0, 0x00, 0x98, 0x61, 0x69, 0x40, 0x19, 0x49, 0x68, 0x32, 0x00, 0x17, 0xf3, +0x0e, 0xed, 0xf8, 0xbd, 0xff, 0xb5, 0x81, 0xb0, 0x00, 0x24, 0x05, 0x00, 0x0e, 0x00, 0x17, 0x00, +0x05, 0x20, 0x18, 0xf3, 0xed, 0xfd, 0x41, 0x88, 0xb3, 0x4a, 0x91, 0x42, 0x1b, 0xd1, 0x01, 0x00, +0x40, 0x31, 0x28, 0x60, 0x31, 0x60, 0x09, 0x88, 0x40, 0x39, 0x09, 0x04, 0x09, 0x0c, 0x0a, 0xd0, +0x0f, 0x22, 0x92, 0x01, 0x91, 0x42, 0x06, 0xd8, 0x64, 0x30, 0x38, 0x60, 0x04, 0x98, 0x20, 0x39, +0x01, 0x24, 0x01, 0x80, 0x07, 0xe0, 0x05, 0x20, 0x0e, 0xf3, 0x32, 0xfe, 0x00, 0x04, 0x00, 0x0c, +0x05, 0x21, 0x0d, 0xf3, 0x3b, 0xf8, 0x20, 0x00, 0x05, 0xb0, 0xf0, 0xbd, 0x38, 0xb5, 0x04, 0x00, +0x1c, 0xf0, 0x6c, 0xfb, 0x05, 0x00, 0x9c, 0x48, 0x40, 0x30, 0x80, 0x69, 0x9b, 0x49, 0x00, 0x0c, +0xc0, 0x31, 0x48, 0x61, 0x05, 0x20, 0x69, 0x46, 0x18, 0xf3, 0xd1, 0xfd, 0x00, 0x28, 0x0b, 0xd0, +0x41, 0x88, 0x99, 0x4a, 0x91, 0x42, 0x07, 0xd1, 0x98, 0x49, 0x41, 0x80, 0x05, 0x22, 0x21, 0x00, +0xff, 0xf7, 0x7b, 0xff, 0x01, 0x24, 0x00, 0xe0, 0x00, 0x24, 0x28, 0x00, 0x1c, 0xf0, 0x52, 0xfb, +0x20, 0x00, 0x38, 0xbd, 0x38, 0xb5, 0x04, 0x00, 0x8b, 0x48, 0x40, 0x30, 0x00, 0x69, 0x8b, 0x49, +0x00, 0x0c, 0x80, 0x31, 0x08, 0x63, 0x04, 0x20, 0x69, 0x46, 0x18, 0xf3, 0xb0, 0xfd, 0x00, 0x28, +0x12, 0xd0, 0x40, 0x21, 0x09, 0x5a, 0x8a, 0x4a, 0x60, 0x39, 0x91, 0x42, 0x07, 0xd9, 0x20, 0x00, +0x40, 0x30, 0x17, 0xf3, 0xe6, 0xed, 0x00, 0x21, 0xc9, 0x43, 0x01, 0x80, 0x03, 0xe0, 0x04, 0x22, +0x21, 0x00, 0xff, 0xf7, 0x52, 0xff, 0x01, 0x20, 0x38, 0xbd, 0x38, 0xb5, 0x04, 0x00, 0x7a, 0x48, +0x40, 0x30, 0x00, 0x6a, 0x79, 0x49, 0x00, 0x0c, 0xc0, 0x31, 0x88, 0x63, 0x06, 0x20, 0x69, 0x46, +0x18, 0xf3, 0x8d, 0xfd, 0x00, 0x28, 0x0b, 0xd0, 0x01, 0x00, 0x40, 0x31, 0x0a, 0x88, 0x68, 0x2a, +0x01, 0xd9, 0x68, 0x22, 0x0a, 0x80, 0x06, 0x22, 0x21, 0x00, 0xff, 0xf7, 0x36, 0xff, 0x01, 0x20, +0x38, 0xbd, 0x6e, 0x49, 0xf0, 0xb5, 0x6c, 0x31, 0x0a, 0x00, 0x6b, 0x48, 0x6c, 0x32, 0x00, 0x6b, +0x04, 0x0c, 0x08, 0x00, 0x14, 0x30, 0xc4, 0x60, 0x67, 0x48, 0x40, 0x30, 0x00, 0x6a, 0x27, 0x05, +0x03, 0x0c, 0x08, 0x00, 0x54, 0x30, 0x83, 0x63, 0xce, 0x69, 0x01, 0x20, 0x31, 0x05, 0x05, 0x00, +0x09, 0x0d, 0x3f, 0x0d, 0xb9, 0x42, 0x00, 0xd1, 0x00, 0x25, 0x01, 0x27, 0x3f, 0x03, 0x01, 0x00, +0x3e, 0x40, 0x3c, 0x40, 0xa6, 0x42, 0x00, 0xd0, 0x00, 0x21, 0xd2, 0x69, 0x29, 0x43, 0x15, 0x05, +0x1e, 0x05, 0x04, 0x00, 0x2d, 0x0d, 0x36, 0x0d, 0xb5, 0x42, 0x00, 0xd1, 0x00, 0x24, 0x0c, 0x43, +0x3a, 0x40, 0x3b, 0x40, 0x9a, 0x42, 0x00, 0xd0, 0x00, 0x20, 0x20, 0x43, 0xf0, 0xbd, 0xf8, 0xb5, +0x00, 0x21, 0x03, 0x27, 0x57, 0x4a, 0x51, 0x48, 0x10, 0x60, 0x57, 0x4a, 0x51, 0x48, 0x10, 0x60, +0x56, 0x4a, 0x37, 0x20, 0x10, 0x60, 0x56, 0x4a, 0xff, 0x20, 0x40, 0x1c, 0x10, 0x60, 0x55, 0x4a, +0x10, 0x20, 0x10, 0x60, 0x49, 0x48, 0x04, 0x22, 0x80, 0x30, 0x02, 0x61, 0x52, 0x4a, 0x42, 0x61, +0x3f, 0x02, 0x87, 0x61, 0x51, 0x4d, 0xc7, 0x61, 0x02, 0x22, 0x45, 0x62, 0x02, 0x62, 0x00, 0x22, +0x02, 0x63, 0x01, 0x22, 0x12, 0x03, 0xc2, 0x62, 0x4b, 0x4a, 0x4d, 0x4e, 0xcb, 0x00, 0x5c, 0x19, +0x62, 0x60, 0xd2, 0x19, 0x49, 0x1c, 0x01, 0x29, 0xee, 0x50, 0xf7, 0xd3, 0x47, 0x4b, 0xc9, 0x00, +0xcc, 0x18, 0x62, 0x60, 0x5e, 0x50, 0x39, 0x49, 0x06, 0x22, 0xc0, 0x31, 0x8a, 0x61, 0x45, 0x4a, +0xca, 0x61, 0x02, 0x22, 0x1e, 0x00, 0x8a, 0x62, 0xd2, 0x01, 0x20, 0x36, 0x0a, 0x62, 0xce, 0x62, +0x4a, 0x62, 0x00, 0x22, 0x8a, 0x63, 0x01, 0x22, 0x12, 0x03, 0x3e, 0x4b, 0x3e, 0x4f, 0x4a, 0x63, +0x00, 0x22, 0xd4, 0x00, 0xa5, 0x19, 0x6b, 0x60, 0xff, 0x33, 0x5b, 0x1c, 0x52, 0x1c, 0x01, 0x2a, +0x37, 0x51, 0xf6, 0xd3, 0x35, 0x4c, 0xd2, 0x00, 0x20, 0x34, 0x15, 0x19, 0x6b, 0x60, 0x36, 0x4b, +0xa3, 0x50, 0x05, 0x22, 0x42, 0x63, 0x22, 0x00, 0x28, 0x32, 0x82, 0x63, 0x02, 0x22, 0x53, 0x02, +0x4a, 0x60, 0x25, 0x00, 0x9f, 0x00, 0xc3, 0x63, 0x10, 0x3d, 0x0f, 0x61, 0x8d, 0x60, 0x00, 0x22, +0x0b, 0x60, 0x4a, 0x61, 0x22, 0x00, 0x2d, 0x4e, 0x28, 0x32, 0x00, 0x21, 0xcb, 0x00, 0x5c, 0x19, +0x62, 0x60, 0x01, 0x24, 0xa4, 0x02, 0x12, 0x19, 0x49, 0x1c, 0x01, 0x29, 0xee, 0x50, 0xf5, 0xd3, +0x22, 0x4b, 0xc9, 0x00, 0x10, 0x33, 0xcc, 0x18, 0x62, 0x60, 0x5e, 0x50, 0x13, 0x49, 0x03, 0x22, +0xca, 0x66, 0x23, 0x4a, 0x0a, 0x67, 0x37, 0x22, 0xca, 0x67, 0xff, 0x22, 0x52, 0x1c, 0x8f, 0x67, +0x4a, 0x67, 0x20, 0x4d, 0x00, 0x21, 0x87, 0x60, 0x1d, 0x4e, 0x05, 0x60, 0x0c, 0x00, 0xc1, 0x60, +0x04, 0x21, 0x30, 0x00, 0x17, 0xf3, 0x78, 0xec, 0xe0, 0x00, 0x41, 0x19, 0x4e, 0x60, 0xff, 0x36, +0x15, 0x49, 0x76, 0x1c, 0x64, 0x1c, 0x36, 0x2c, 0x29, 0x50, 0xf1, 0xd3, 0x04, 0x21, 0x30, 0x00, +0x17, 0xf3, 0x6a, 0xec, 0xe0, 0x00, 0x27, 0xe0, 0xc0, 0xa3, 0x00, 0x80, 0x30, 0x40, 0x00, 0x04, +0x18, 0xee, 0x00, 0xc0, 0xe0, 0x41, 0x00, 0x04, 0xef, 0xbe, 0x00, 0x00, 0xba, 0xab, 0x00, 0x00, +0x4c, 0x07, 0x00, 0x00, 0x48, 0xbb, 0x02, 0x00, 0x4c, 0xbb, 0x02, 0x00, 0x50, 0xbb, 0x02, 0x00, +0x54, 0xbb, 0x02, 0x00, 0x58, 0xbb, 0x02, 0x00, 0x00, 0x73, 0x01, 0xc0, 0xb8, 0x6a, 0x01, 0xc0, +0x00, 0x30, 0x00, 0x80, 0x00, 0x79, 0x01, 0xc0, 0x00, 0x10, 0x00, 0x80, 0x00, 0x40, 0x00, 0x80, +0x00, 0x0e, 0x02, 0xc0, 0x00, 0x69, 0x01, 0xc0, 0x41, 0x19, 0x4e, 0x60, 0x0f, 0x49, 0x10, 0x4a, +0x00, 0x24, 0x29, 0x50, 0x14, 0x60, 0x0e, 0x48, 0x0e, 0x49, 0x40, 0x30, 0xc1, 0x61, 0x02, 0x23, +0x83, 0x61, 0x0b, 0x49, 0x40, 0x39, 0x4f, 0x62, 0x0a, 0x4e, 0x10, 0x3e, 0x46, 0x61, 0x03, 0x61, +0x0f, 0x62, 0x20, 0x36, 0x46, 0x62, 0x03, 0x62, 0x8f, 0x62, 0x55, 0x63, 0x37, 0x20, 0x10, 0x63, +0x0f, 0x61, 0x0c, 0xf3, 0x71, 0xfa, 0x04, 0x48, 0x84, 0x60, 0xf8, 0xbd, 0x71, 0x54, 0xa1, 0x35, +0x01, 0x00, 0x00, 0x00, 0xac, 0x53, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x3b, 0x2d, 0x53, 0xbf, +0x00, 0x00, 0x01, 0x80, 0xc0, 0xa3, 0x00, 0x80, 0xc8, 0x6a, 0x01, 0xc0, 0xc0, 0xa4, 0x00, 0x80, +0x99, 0x48, 0x14, 0x21, 0x10, 0xb5, 0x17, 0xf3, 0xe8, 0xeb, 0x10, 0xbd, 0x70, 0xb5, 0x05, 0x00, +0x0e, 0x00, 0x01, 0xd1, 0x01, 0x20, 0x70, 0xbd, 0x30, 0x89, 0x84, 0x19, 0x60, 0x7a, 0x21, 0x7a, +0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x0d, 0xd1, 0x60, 0x7b, 0x21, 0x7b, 0x00, 0x02, 0x08, 0x43, +0x03, 0x28, 0x07, 0xd1, 0x00, 0x2d, 0x11, 0xd0, 0x28, 0x00, 0x21, 0xf0, 0xc2, 0xee, 0x00, 0x28, +0x13, 0xd0, 0x01, 0xe0, 0x00, 0x2d, 0x03, 0xd0, 0xe8, 0x7a, 0xa0, 0x73, 0xa8, 0x7a, 0xe0, 0x73, +0x60, 0x7a, 0x21, 0x7a, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x0a, 0xd1, 0x00, 0x22, 0x31, 0x00, +0x04, 0x20, 0x00, 0xf0, 0xa6, 0xf9, 0x00, 0x28, 0x03, 0xd1, 0x30, 0x00, 0x18, 0xf3, 0x76, 0xf8, +0xd0, 0xe7, 0x00, 0x20, 0x70, 0xbd, 0xf8, 0xb5, 0x0d, 0x00, 0x04, 0x00, 0x11, 0x00, 0x00, 0x26, +0x7a, 0x48, 0x1f, 0x00, 0x32, 0x00, 0x18, 0xf3, 0x93, 0xf8, 0x00, 0x28, 0x20, 0x60, 0x14, 0xd0, +0x02, 0x21, 0x01, 0x73, 0x21, 0x68, 0x20, 0x20, 0x08, 0x81, 0x20, 0x68, 0x01, 0x21, 0x20, 0x30, +0x28, 0x60, 0x01, 0x72, 0x00, 0x21, 0x41, 0x72, 0x28, 0x68, 0x39, 0x0a, 0x07, 0x73, 0x41, 0x73, +0x29, 0x68, 0x00, 0x20, 0x88, 0x72, 0x01, 0x26, 0xc8, 0x72, 0x30, 0x00, 0xf8, 0xbd, 0x1c, 0xb5, +0x0c, 0x00, 0x03, 0x00, 0x64, 0x22, 0x69, 0x46, 0x01, 0xa8, 0xff, 0xf7, 0xd4, 0xff, 0x00, 0x28, +0x0f, 0xd0, 0x00, 0x98, 0x00, 0x21, 0x01, 0x74, 0x00, 0x2c, 0x41, 0x74, 0x05, 0xd0, 0x01, 0x99, +0x01, 0x23, 0x4a, 0x7b, 0x1a, 0x43, 0x4a, 0x73, 0x8c, 0x61, 0x02, 0x21, 0x81, 0x72, 0x00, 0x21, +0xc1, 0x72, 0x01, 0x98, 0x1c, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x08, 0x00, 0x11, 0x00, 0xff, 0xf7, +0xde, 0xff, 0x00, 0x28, 0x03, 0xd0, 0x01, 0x00, 0x20, 0x00, 0xff, 0xf7, 0x7f, 0xff, 0x10, 0xbd, +0x00, 0x22, 0xf0, 0xe7, 0x7c, 0xb5, 0x14, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x64, 0x22, 0x69, 0x46, +0x01, 0xa8, 0xff, 0xf7, 0xa8, 0xff, 0x00, 0x28, 0x0b, 0xd0, 0x00, 0x98, 0x21, 0x0a, 0x04, 0x74, +0x41, 0x74, 0x02, 0x21, 0x81, 0x72, 0x00, 0x21, 0xc1, 0x72, 0x01, 0x99, 0x28, 0x00, 0xff, 0xf7, +0x65, 0xff, 0x7c, 0xbd, 0x7c, 0xb5, 0x04, 0x00, 0x15, 0x00, 0x0b, 0x00, 0xff, 0x22, 0x91, 0x32, +0x69, 0x46, 0x01, 0xa8, 0xff, 0xf7, 0x8f, 0xff, 0x00, 0x28, 0x11, 0xd0, 0x00, 0x98, 0x00, 0x21, +0x01, 0x74, 0x41, 0x74, 0x06, 0x22, 0x29, 0x00, 0x12, 0x30, 0x17, 0xf3, 0x9a, 0xea, 0x00, 0x99, +0x08, 0x20, 0x88, 0x72, 0x00, 0x20, 0xc8, 0x72, 0x01, 0x99, 0x20, 0x00, 0xff, 0xf7, 0x46, 0xff, +0x7c, 0xbd, 0x7c, 0xb5, 0x1c, 0x00, 0x16, 0x00, 0x05, 0x00, 0x0b, 0x00, 0xff, 0x22, 0x91, 0x32, +0x69, 0x46, 0x01, 0xa8, 0xff, 0xf7, 0x6f, 0xff, 0x00, 0x28, 0x0d, 0xd0, 0x00, 0x98, 0x22, 0x00, +0x31, 0x00, 0x10, 0x30, 0x17, 0xf3, 0x7c, 0xea, 0x00, 0x98, 0x21, 0x0a, 0x84, 0x72, 0xc1, 0x72, +0x01, 0x99, 0x28, 0x00, 0xff, 0xf7, 0x2a, 0xff, 0x7c, 0xbd, 0x7c, 0xb5, 0x14, 0x00, 0x1e, 0x00, +0x05, 0x00, 0x0b, 0x00, 0x64, 0x22, 0x69, 0x46, 0x01, 0xa8, 0xff, 0xf7, 0x54, 0xff, 0x00, 0x28, +0x11, 0xd0, 0x00, 0x98, 0x21, 0x0a, 0x04, 0x74, 0x41, 0x74, 0x06, 0x22, 0x31, 0x00, 0x12, 0x30, +0x17, 0xf3, 0x5e, 0xea, 0x00, 0x99, 0x08, 0x20, 0x88, 0x72, 0x00, 0x20, 0xc8, 0x72, 0x01, 0x99, +0x28, 0x00, 0xff, 0xf7, 0x0b, 0xff, 0x7c, 0xbd, 0x70, 0xb5, 0x06, 0x00, 0x10, 0x89, 0x15, 0x00, +0x84, 0x18, 0x00, 0x22, 0x22, 0x74, 0x20, 0x00, 0x62, 0x74, 0x06, 0x22, 0x12, 0x30, 0x17, 0xf3, +0x48, 0xea, 0xe0, 0x7a, 0xa1, 0x7a, 0x00, 0x02, 0x08, 0x43, 0x08, 0x30, 0xa0, 0x72, 0x00, 0x0a, +0xe0, 0x72, 0x29, 0x00, 0x30, 0x00, 0xff, 0xf7, 0xf1, 0xfe, 0x70, 0xbd, 0xfe, 0xb5, 0x1d, 0x00, +0x06, 0x00, 0x0f, 0x00, 0x14, 0x00, 0x0b, 0x00, 0x64, 0x22, 0x69, 0x46, 0x01, 0xa8, 0xff, 0xf7, +0x1a, 0xff, 0x00, 0x28, 0x0e, 0xd0, 0x74, 0x2f, 0x0c, 0xd1, 0x00, 0x98, 0xe5, 0x21, 0x01, 0x74, +0x44, 0x74, 0x03, 0x21, 0x85, 0x74, 0x81, 0x72, 0x00, 0x21, 0xc1, 0x72, 0x01, 0x99, 0x30, 0x00, +0xff, 0xf7, 0xd4, 0xfe, 0xfe, 0xbd, 0x00, 0x00, 0xb0, 0x33, 0x01, 0xc0, 0xb0, 0x00, 0x00, 0x04, +0x70, 0xb5, 0x05, 0x00, 0x00, 0x89, 0x44, 0x19, 0x1e, 0xf0, 0x65, 0xfd, 0x00, 0x28, 0x0a, 0xd0, +0x60, 0x7b, 0x21, 0x7b, 0x00, 0x02, 0x08, 0x43, 0x0b, 0x28, 0x04, 0xd0, 0x0a, 0x28, 0x02, 0xd0, +0x05, 0x20, 0x05, 0xf0, 0x56, 0xf9, 0xfc, 0x4b, 0xfa, 0x48, 0x1c, 0x68, 0x00, 0x22, 0x29, 0x00, +0x00, 0x68, 0x02, 0x23, 0xa0, 0x47, 0x70, 0xbd, 0xf8, 0x48, 0x01, 0x1f, 0x08, 0x60, 0xf8, 0x48, +0x01, 0x21, 0x41, 0x70, 0x00, 0x21, 0x01, 0x70, 0x70, 0x47, 0xf4, 0x49, 0x00, 0x20, 0x09, 0x1f, +0x08, 0x60, 0xf3, 0x49, 0x48, 0x70, 0x08, 0x70, 0x70, 0x47, 0xf1, 0x48, 0x41, 0x78, 0x00, 0x29, +0x01, 0xd0, 0x01, 0x21, 0x01, 0x70, 0x70, 0x47, 0x70, 0xb5, 0x1c, 0xf0, 0x71, 0xf8, 0x05, 0x00, +0xec, 0x48, 0x17, 0xf3, 0xce, 0xff, 0x04, 0x00, 0x28, 0x00, 0x1c, 0xf0, 0x6d, 0xf8, 0x02, 0x25, +0x0d, 0xe0, 0x20, 0x00, 0x25, 0x73, 0xff, 0xf7, 0xbb, 0xff, 0x1c, 0xf0, 0x61, 0xf8, 0x06, 0x00, +0xe4, 0x48, 0x17, 0xf3, 0xbe, 0xff, 0x04, 0x00, 0x30, 0x00, 0x1c, 0xf0, 0x5d, 0xf8, 0x00, 0x2c, +0xef, 0xd1, 0x70, 0xbd, 0x70, 0xb5, 0x1c, 0xf0, 0x53, 0xf8, 0xdd, 0x4c, 0x05, 0x00, 0x60, 0x78, +0x00, 0x28, 0x09, 0xd0, 0xd9, 0x49, 0x04, 0x20, 0x08, 0x56, 0x41, 0x1c, 0x04, 0xd0, 0x81, 0x1c, +0x02, 0xd0, 0x00, 0x21, 0x05, 0xf3, 0x41, 0xf9, 0xd7, 0x48, 0x00, 0x78, 0x01, 0x28, 0x02, 0xd1, +0x14, 0x20, 0x05, 0xf0, 0xea, 0xf8, 0x00, 0x20, 0x20, 0x72, 0x04, 0x20, 0xfb, 0xf7, 0x90, 0xfe, +0xd2, 0x48, 0x00, 0x22, 0x00, 0x68, 0x0c, 0x21, 0x05, 0xf3, 0x87, 0xfe, 0xff, 0xf7, 0xbc, 0xff, +0x28, 0x00, 0x1c, 0xf0, 0x31, 0xf8, 0x70, 0xbd, 0x10, 0xb5, 0xff, 0xf7, 0xd3, 0xff, 0xc8, 0x49, +0x00, 0x20, 0x08, 0x70, 0x48, 0x70, 0xca, 0x49, 0x08, 0x60, 0x10, 0xbd, 0xc4, 0x48, 0x01, 0x7a, +0x03, 0x29, 0x01, 0xd0, 0x03, 0x21, 0x01, 0x72, 0x70, 0x47, 0xff, 0x28, 0x00, 0xd0, 0x08, 0x40, +0x70, 0x47, 0xc4, 0x49, 0x10, 0xb5, 0x09, 0x68, 0x1b, 0xf0, 0xfc, 0xed, 0x7d, 0x22, 0xd2, 0x00, +0x17, 0xf3, 0x96, 0xeb, 0x89, 0x05, 0x80, 0x0a, 0x08, 0x43, 0x01, 0xd0, 0x21, 0xf0, 0x52, 0xec, +0x10, 0xbd, 0xf8, 0xb5, 0x00, 0x24, 0x16, 0x00, 0x05, 0x00, 0x0f, 0x00, 0x22, 0x00, 0x00, 0x29, +0x01, 0xd0, 0x38, 0x89, 0xc2, 0x19, 0x1e, 0xf0, 0x73, 0xfa, 0x00, 0x28, 0x7d, 0xd0, 0xb0, 0x49, +0x08, 0x7a, 0x03, 0x28, 0x7a, 0xd0, 0x02, 0x28, 0xfc, 0xd0, 0x68, 0x07, 0x26, 0xd5, 0x00, 0x2f, +0x24, 0xd0, 0x50, 0x7b, 0x11, 0x7b, 0x04, 0x02, 0x0c, 0x43, 0x0b, 0x2c, 0xaf, 0x98, 0x74, 0xab, +0x01, 0x00, 0x00, 0x00, 0xa8, 0x57, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x68, 0xf7, 0x80, 0xd3, +0x08, 0xd0, 0x10, 0xdc, 0x03, 0x2c, 0x0b, 0xd0, 0x08, 0x2c, 0x09, 0xd0, 0x09, 0x2c, 0x07, 0xd0, +0x0a, 0x2c, 0x13, 0xd1, 0xa9, 0x48, 0xaa, 0x49, 0x00, 0x88, 0x09, 0x78, 0x08, 0x43, 0x0b, 0xd0, +0xff, 0x25, 0x05, 0x26, 0x15, 0xe0, 0x10, 0x2c, 0xfa, 0xd0, 0x12, 0x2c, 0xf8, 0xd0, 0x4f, 0x2c, +0x04, 0xd1, 0xff, 0x25, 0x07, 0x26, 0x0c, 0xe0, 0x04, 0x20, 0x85, 0x43, 0x04, 0x26, 0x08, 0xe0, +0x06, 0x2e, 0x06, 0xd1, 0x96, 0x48, 0x00, 0x1f, 0x00, 0x68, 0x17, 0xf3, 0x76, 0xea, 0xc0, 0x05, +0x5c, 0xd4, 0x93, 0x48, 0x00, 0x1f, 0x00, 0x68, 0x17, 0xf3, 0x6e, 0xea, 0x01, 0x00, 0x28, 0x00, +0xff, 0xf7, 0x9d, 0xff, 0x00, 0x28, 0x51, 0xd0, 0x8e, 0x48, 0x40, 0x30, 0x81, 0x8a, 0x00, 0x29, +0x00, 0xd1, 0x86, 0x82, 0x93, 0x4e, 0x00, 0x25, 0x00, 0x2c, 0x1a, 0xd0, 0x30, 0x88, 0x00, 0x28, +0x0d, 0xd0, 0x87, 0x49, 0x04, 0x20, 0x08, 0x56, 0x40, 0x1c, 0x08, 0xd1, 0x08, 0x1f, 0x00, 0x68, +0x40, 0x79, 0xff, 0xf7, 0x88, 0xff, 0xff, 0xf7, 0x71, 0xff, 0x35, 0x80, 0x4d, 0xe0, 0x1b, 0xf0, +0x99, 0xff, 0x04, 0x00, 0x80, 0x48, 0x39, 0x00, 0x17, 0xf3, 0x4d, 0xff, 0x20, 0x00, 0x1b, 0xf0, +0x95, 0xff, 0x7b, 0x4f, 0x04, 0x24, 0x3f, 0x1f, 0x38, 0x68, 0x02, 0x21, 0x04, 0x57, 0x79, 0x48, +0x01, 0x72, 0x60, 0x1c, 0x0f, 0xd0, 0xa0, 0x1c, 0x0d, 0xd0, 0x01, 0x21, 0x20, 0x00, 0x05, 0xf3, +0x7e, 0xf8, 0xc8, 0x20, 0x09, 0xf0, 0x42, 0xfd, 0x00, 0x21, 0x20, 0x00, 0x01, 0xe0, 0x26, 0xe0, +0x16, 0xe0, 0x05, 0xf3, 0x74, 0xf8, 0x38, 0x68, 0x40, 0x79, 0xff, 0x28, 0x28, 0xd0, 0xff, 0xf7, +0x5a, 0xff, 0x30, 0x88, 0x00, 0x28, 0x23, 0xd0, 0x1e, 0xf0, 0xe4, 0xf9, 0x00, 0x28, 0x03, 0xd0, +0xff, 0xf7, 0x3c, 0xff, 0x35, 0x80, 0x1b, 0xe0, 0x30, 0x88, 0x19, 0xe0, 0x00, 0x20, 0xf8, 0xbd, +0x68, 0x07, 0x15, 0xd5, 0x00, 0x2f, 0x13, 0xd0, 0x1b, 0xf0, 0x5c, 0xff, 0x04, 0x00, 0x62, 0x48, +0x39, 0x00, 0x17, 0xf3, 0x10, 0xff, 0x20, 0x00, 0x1b, 0xf0, 0x58, 0xff, 0x08, 0xe0, 0x68, 0x07, +0x06, 0xd5, 0x00, 0x2f, 0x04, 0xd0, 0xff, 0xf7, 0xd9, 0xfe, 0x38, 0x00, 0xff, 0xf7, 0xa2, 0xfe, +0x01, 0x20, 0xf8, 0xbd, 0x57, 0x48, 0x58, 0x21, 0x10, 0xb5, 0x17, 0xf3, 0x50, 0xe9, 0x10, 0xbd, +0xf8, 0xb5, 0x00, 0x20, 0x0d, 0x00, 0x53, 0x4f, 0x16, 0x00, 0xb8, 0x82, 0x32, 0xe0, 0x68, 0x78, +0x29, 0x78, 0x00, 0x02, 0x08, 0x43, 0xff, 0x38, 0x16, 0x38, 0x21, 0xd1, 0xe9, 0x78, 0xaa, 0x78, +0x09, 0x02, 0x11, 0x43, 0xcc, 0x08, 0x28, 0x00, 0xe2, 0x00, 0x91, 0x42, 0x18, 0xd1, 0x12, 0x1d, +0x11, 0x04, 0x09, 0x14, 0xb1, 0x42, 0x13, 0xdc, 0x08, 0x21, 0x08, 0x2c, 0x00, 0xd2, 0x21, 0x00, +0xca, 0x00, 0x01, 0x1d, 0x43, 0x48, 0x14, 0x30, 0x17, 0xf3, 0x8c, 0xe8, 0x06, 0xe0, 0xe0, 0x00, +0xc0, 0x19, 0x00, 0x21, 0x14, 0x30, 0x0a, 0x00, 0x06, 0xc0, 0x64, 0x1c, 0x08, 0x2c, 0xf6, 0xdb, +0xe9, 0x78, 0xaa, 0x78, 0x08, 0x02, 0x10, 0x43, 0x31, 0x1a, 0x09, 0x1f, 0x0e, 0x04, 0x36, 0x14, +0x2d, 0x1d, 0x45, 0x19, 0x04, 0x2e, 0xca, 0xdc, 0xf8, 0xbd, 0xff, 0xb5, 0x0a, 0x20, 0x8b, 0xb0, +0x00, 0x25, 0x1f, 0x00, 0x05, 0x90, 0x0b, 0x98, 0x09, 0x95, 0x40, 0x69, 0x2e, 0x00, 0x07, 0x90, +0x1f, 0xf0, 0x74, 0xf8, 0x06, 0x90, 0x0b, 0x98, 0x0b, 0x99, 0x00, 0x89, 0x44, 0x18, 0x24, 0x31, +0x40, 0x18, 0x84, 0x46, 0xe0, 0x78, 0xc0, 0x07, 0x01, 0xd1, 0xa0, 0x1d, 0x01, 0xe0, 0x20, 0x00, +0x12, 0x30, 0xa1, 0x78, 0x0a, 0x07, 0x93, 0x0f, 0x01, 0x2b, 0x04, 0xd1, 0x08, 0x09, 0x08, 0x28, +0x1f, 0xd1, 0x38, 0x80, 0xca, 0xe0, 0x91, 0x0f, 0x02, 0xd1, 0x40, 0x25, 0x09, 0x20, 0x17, 0xe0, +0x02, 0x88, 0x29, 0x49, 0x8a, 0x42, 0x09, 0xd1, 0x42, 0x88, 0x8a, 0x42, 0x06, 0xd1, 0x82, 0x88, +0x8a, 0x42, 0x03, 0xd1, 0x01, 0x25, 0x2e, 0x00, 0x28, 0x00, 0x09, 0xe0, 0x00, 0x78, 0xc0, 0x07, +0x03, 0xd0, 0x08, 0x25, 0x03, 0x26, 0x02, 0x20, 0x02, 0xe0, 0x02, 0x25, 0x2e, 0x00, 0x03, 0x20, +0x38, 0x80, 0xa0, 0x78, 0x00, 0x07, 0x80, 0x0f, 0x02, 0x28, 0x64, 0xd1, 0x0d, 0x98, 0x00, 0x27, +0x07, 0x70, 0x60, 0x46, 0x80, 0x1d, 0x09, 0x90, 0x07, 0x98, 0x40, 0x7a, 0x02, 0x28, 0x5a, 0xd1, +0x0c, 0x98, 0x00, 0x28, 0x40, 0xd0, 0x0c, 0x98, 0x20, 0x30, 0x0a, 0x90, 0x00, 0x7d, 0xc0, 0x06, +0x80, 0x0f, 0x01, 0x28, 0x22, 0xd9, 0x0c, 0x98, 0x18, 0x30, 0x17, 0xf3, 0x56, 0xe9, 0x00, 0x07, +0x1c, 0xd5, 0x01, 0x20, 0x1b, 0xe0, 0x00, 0x00, 0x1c, 0xee, 0x00, 0xc0, 0x58, 0xee, 0x00, 0xc0, +0xcc, 0xee, 0x00, 0xc0, 0xc4, 0x33, 0x01, 0xc0, 0xb0, 0x33, 0x01, 0xc0, 0x60, 0xf4, 0x00, 0xc0, +0x18, 0xee, 0x00, 0xc0, 0xac, 0xf0, 0x00, 0xc0, 0x6c, 0x1b, 0x01, 0xc0, 0x04, 0x36, 0x01, 0xc0, +0x34, 0xf0, 0x00, 0xc0, 0x38, 0xf0, 0x00, 0xc0, 0xff, 0xff, 0x00, 0x00, 0x00, 0x20, 0xa1, 0x78, +0x0a, 0x07, 0x92, 0x0f, 0x02, 0x2a, 0x03, 0xd1, 0x09, 0x09, 0x09, 0x07, 0x00, 0xd5, 0x01, 0x27, +0x38, 0x43, 0x09, 0xd0, 0x0a, 0x98, 0x32, 0x4a, 0x00, 0x7e, 0x41, 0x07, 0x20, 0x00, 0x49, 0x0f, +0x0c, 0x30, 0x17, 0xf3, 0x47, 0xff, 0x05, 0x90, 0x04, 0xa9, 0x03, 0xaa, 0x00, 0x91, 0x01, 0x92, +0x06, 0x98, 0x11, 0x21, 0x49, 0x01, 0x40, 0x18, 0x03, 0x78, 0x05, 0x9a, 0x07, 0x98, 0x21, 0x00, +0x1c, 0xf0, 0x43, 0xf8, 0x03, 0x98, 0x00, 0x28, 0x02, 0xd0, 0x0d, 0x98, 0x01, 0x21, 0x01, 0x70, +0x04, 0x98, 0x00, 0x28, 0x3f, 0xd0, 0x23, 0x48, 0x00, 0x68, 0x17, 0xf3, 0x06, 0xe9, 0x28, 0x42, +0x39, 0xd0, 0xa0, 0x78, 0x00, 0x07, 0x80, 0x0f, 0x02, 0x28, 0x37, 0xd1, 0x1e, 0x4f, 0xb8, 0x8a, +0x00, 0x28, 0x33, 0xd0, 0xc1, 0x20, 0xc0, 0x00, 0x00, 0x25, 0x08, 0x90, 0x26, 0xe0, 0xb0, 0x42, +0x02, 0xd0, 0x1a, 0x49, 0x88, 0x42, 0x1e, 0xd1, 0xe0, 0x8a, 0x18, 0x49, 0x88, 0x42, 0x07, 0xd0, +0x21, 0x00, 0x09, 0x98, 0x16, 0x31, 0x02, 0x22, 0x1b, 0xf0, 0x58, 0xfb, 0x00, 0x28, 0x12, 0xd1, +0xa0, 0x69, 0x40, 0x1c, 0x1a, 0xd0, 0x09, 0x98, 0x02, 0x22, 0x08, 0xa9, 0x1b, 0xf0, 0x4e, 0xfb, +0x00, 0x28, 0x08, 0xd1, 0x09, 0x98, 0x21, 0x00, 0x1a, 0x30, 0x18, 0x31, 0x04, 0x22, 0x1b, 0xf0, +0x45, 0xfb, 0x00, 0x28, 0x0a, 0xd0, 0x6d, 0x1c, 0x08, 0x2d, 0x04, 0xda, 0xe8, 0x00, 0xc4, 0x19, +0xa0, 0x8a, 0x00, 0x28, 0xd3, 0xd1, 0x00, 0x20, 0x0f, 0xb0, 0xf0, 0xbd, 0x01, 0x20, 0xfb, 0xe7, +0xac, 0x7b, 0x02, 0x00, 0xc8, 0xee, 0x00, 0xc0, 0xc4, 0x33, 0x01, 0xc0, 0xff, 0xff, 0x00, 0x00, +0xca, 0x49, 0x00, 0x20, 0x88, 0x80, 0x09, 0x1f, 0x08, 0x60, 0x70, 0x47, 0xf8, 0xb5, 0x0c, 0x00, +0x1b, 0xf0, 0x00, 0xfe, 0x00, 0x90, 0x20, 0x00, 0x17, 0xf3, 0xae, 0xe8, 0xc3, 0x49, 0x17, 0xf3, +0xbc, 0xe8, 0x60, 0x79, 0x21, 0x79, 0x00, 0x02, 0xc0, 0x4f, 0x08, 0x43, 0x02, 0x28, 0xb8, 0x80, +0x04, 0xd9, 0x00, 0x98, 0x1b, 0xf0, 0xf2, 0xfd, 0x00, 0x20, 0xf8, 0xbd, 0x89, 0x83, 0x7e, 0xc8, +0x01, 0x00, 0x00, 0x00, 0xa4, 0x5b, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x9c, 0x98, 0xf5, 0x67, +0xa4, 0x1d, 0xbc, 0x4e, 0x00, 0x25, 0x11, 0xe0, 0x68, 0x20, 0x68, 0x43, 0x21, 0x78, 0x31, 0x54, +0x61, 0x78, 0x80, 0x19, 0x41, 0x70, 0x80, 0x1c, 0xa1, 0x1c, 0x00, 0xf0, 0xec, 0xf8, 0xe0, 0x78, +0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x24, 0x1d, 0x04, 0x19, 0x6d, 0x1c, 0xb8, 0x88, 0xa8, 0x42, +0xea, 0xdc, 0x00, 0x98, 0x1b, 0xf0, 0xd4, 0xfd, 0x01, 0x20, 0xf8, 0xbd, 0x10, 0xb5, 0x04, 0x00, +0xab, 0x48, 0x17, 0xf3, 0x7c, 0xe8, 0x20, 0x40, 0x00, 0xd0, 0x01, 0x20, 0x10, 0xbd, 0xf7, 0xb5, +0x82, 0xb0, 0x06, 0x00, 0xa6, 0x48, 0x81, 0x88, 0x00, 0x29, 0x6b, 0xd0, 0xa5, 0x4f, 0x00, 0x24, +0x64, 0xe0, 0x1b, 0xf0, 0xb9, 0xfd, 0x68, 0x21, 0x61, 0x43, 0x05, 0x00, 0x78, 0x5c, 0x04, 0x9a, +0x82, 0x43, 0x03, 0xd0, 0x28, 0x00, 0x1b, 0xf0, 0xb3, 0xfd, 0x56, 0xe0, 0x9d, 0x4a, 0xc9, 0x19, +0xd0, 0x32, 0x10, 0x70, 0x48, 0x78, 0x50, 0x70, 0x89, 0x1c, 0x90, 0x1c, 0x00, 0xf0, 0xb3, 0xf8, +0x28, 0x00, 0x1b, 0xf0, 0xa5, 0xfd, 0x30, 0x00, 0x00, 0xf0, 0xb6, 0xf8, 0x00, 0x28, 0x44, 0xd0, +0x94, 0x4d, 0x00, 0x24, 0xd0, 0x35, 0x68, 0x78, 0x01, 0x27, 0x00, 0x09, 0x01, 0x28, 0x03, 0xd1, +0x30, 0x00, 0x00, 0xf0, 0x4a, 0xf8, 0x25, 0xe0, 0x02, 0x28, 0x23, 0xd1, 0x31, 0x89, 0x70, 0x69, +0x89, 0x19, 0x00, 0x91, 0x14, 0xf0, 0xc1, 0xfc, 0x04, 0x00, 0x01, 0xd1, 0x3c, 0x00, 0x17, 0xe0, +0x20, 0x00, 0x14, 0xf0, 0xc7, 0xfc, 0x01, 0x00, 0x87, 0x4b, 0x30, 0x00, 0x01, 0xaa, 0x0e, 0xf3, +0x72, 0xfc, 0x00, 0x28, 0x03, 0xd1, 0x20, 0x00, 0x14, 0xf0, 0x40, 0xfd, 0xee, 0xe7, 0x00, 0x99, +0x6b, 0x46, 0x9b, 0x88, 0x00, 0x22, 0x12, 0x31, 0x20, 0x00, 0x14, 0xf0, 0xb7, 0xfc, 0x00, 0x24, +0x00, 0x2c, 0x02, 0xd1, 0x68, 0x78, 0xc0, 0x07, 0x04, 0xd0, 0x03, 0x98, 0x00, 0x2c, 0x07, 0x60, +0x08, 0xd1, 0x02, 0xe0, 0x03, 0x98, 0x00, 0x21, 0x01, 0x60, 0x68, 0x78, 0x80, 0x07, 0x01, 0xd4, +0x00, 0x20, 0xb0, 0x80, 0x01, 0x20, 0x05, 0xb0, 0xf0, 0xbd, 0x64, 0x1c, 0x70, 0x48, 0x80, 0x88, +0xa0, 0x42, 0x96, 0xdc, 0x00, 0x20, 0xf6, 0xe7, 0x01, 0x00, 0x00, 0x20, 0x00, 0x29, 0x03, 0xd0, +0x09, 0x68, 0x00, 0x29, 0x00, 0xd0, 0x01, 0x20, 0x70, 0x47, 0xfe, 0xb5, 0xff, 0x21, 0x00, 0x22, +0xf5, 0x31, 0x01, 0x90, 0x46, 0x69, 0x69, 0x48, 0x17, 0xf3, 0x36, 0xfc, 0x04, 0x00, 0x23, 0xd0, +0xac, 0x20, 0x25, 0x18, 0x20, 0x81, 0x12, 0x21, 0x28, 0x00, 0x16, 0xf3, 0x6c, 0xef, 0x14, 0x20, +0x28, 0x71, 0x00, 0x20, 0x2f, 0x00, 0x14, 0x37, 0x68, 0x71, 0x00, 0x97, 0x00, 0x98, 0x0e, 0x21, +0x16, 0xf3, 0x60, 0xef, 0x02, 0x23, 0x00, 0x20, 0xab, 0x71, 0xe8, 0x71, 0xb1, 0x20, 0x80, 0x00, +0x32, 0x18, 0x39, 0x00, 0x01, 0x98, 0x0e, 0x31, 0x02, 0x92, 0x00, 0xf0, 0x63, 0xf8, 0x07, 0x00, +0x03, 0xd1, 0x20, 0x00, 0x17, 0xf3, 0xe6, 0xfb, 0xfe, 0xbd, 0x00, 0x98, 0x02, 0x99, 0x06, 0x22, +0x80, 0x1d, 0x16, 0xf3, 0x82, 0xee, 0x39, 0x00, 0x00, 0x98, 0x06, 0x22, 0x12, 0x31, 0x16, 0xf3, +0x7c, 0xee, 0x00, 0x99, 0xc1, 0x20, 0xc0, 0x00, 0x08, 0x73, 0x00, 0x0a, 0x48, 0x73, 0x01, 0x98, +0x04, 0x21, 0x80, 0x88, 0xa0, 0x80, 0x08, 0x20, 0x20, 0x73, 0x30, 0x69, 0x60, 0x61, 0xf0, 0x7a, +0x68, 0x70, 0xb0, 0x7a, 0x28, 0x70, 0x2a, 0x20, 0xa8, 0x70, 0x00, 0x20, 0xe8, 0x70, 0x20, 0x00, +0x1c, 0xf0, 0x12, 0xfb, 0xfe, 0xbd, 0x10, 0xb5, 0x4a, 0x78, 0x0b, 0x78, 0x12, 0x02, 0x1a, 0x43, +0x92, 0x1c, 0x16, 0xf3, 0x5a, 0xee, 0x10, 0xbd, 0x10, 0xb5, 0x01, 0x89, 0x04, 0x00, 0x24, 0x30, +0x09, 0x18, 0x8a, 0xb0, 0x0e, 0x39, 0x0e, 0x22, 0x06, 0xa8, 0x16, 0xf3, 0x4e, 0xee, 0x34, 0x48, +0x16, 0xf3, 0x8c, 0xef, 0x01, 0x00, 0x20, 0x00, 0x04, 0xaa, 0x0e, 0xf3, 0x64, 0xfc, 0x00, 0x28, +0x16, 0xd0, 0x0e, 0xf3, 0xb9, 0xfa, 0x2f, 0x4c, 0x04, 0xa9, 0xd0, 0x34, 0xa0, 0x1c, 0x0e, 0xf3, +0xb7, 0xfa, 0x00, 0x28, 0x05, 0xd0, 0xa0, 0x1c, 0x01, 0xa9, 0x0e, 0xf3, 0xc7, 0xf9, 0x02, 0x9c, +0x00, 0xe0, 0x00, 0x24, 0x05, 0x98, 0x0e, 0x22, 0x06, 0xa9, 0x16, 0xf3, 0x2e, 0xee, 0x20, 0x00, +0x0a, 0xb0, 0x10, 0xbd, 0x70, 0xb5, 0x0c, 0x00, 0x16, 0x00, 0x00, 0x29, 0x0d, 0xd0, 0x00, 0x28, +0x0b, 0xd0, 0x01, 0x89, 0xc1, 0x22, 0x09, 0x18, 0x21, 0x48, 0xd2, 0x00, 0x00, 0x68, 0x20, 0x30, +0x09, 0x18, 0xc8, 0x88, 0x8d, 0x1d, 0x90, 0x42, 0x01, 0xd0, 0x00, 0x20, 0x70, 0xbd, 0x01, 0x2b, +0x05, 0xd1, 0x10, 0x22, 0x20, 0x00, 0x16, 0xf3, 0x10, 0xee, 0x08, 0x34, 0x04, 0xe0, 0x08, 0x22, +0x08, 0x31, 0x20, 0x00, 0x16, 0xf3, 0x08, 0xee, 0x01, 0x20, 0x40, 0x02, 0xa0, 0x71, 0x00, 0x0a, +0xe0, 0x71, 0x20, 0x00, 0xad, 0x1c, 0x06, 0x22, 0x31, 0x00, 0x08, 0x30, 0x16, 0xf3, 0xfc, 0xed, +0x29, 0x00, 0x20, 0x00, 0x04, 0x22, 0x18, 0x31, 0x0e, 0x30, 0x16, 0xf3, 0xf6, 0xed, 0x29, 0x00, +0x20, 0x00, 0x06, 0x22, 0x08, 0x31, 0x12, 0x30, 0x16, 0xf3, 0xee, 0xed, 0x29, 0x00, 0x20, 0x00, +0x04, 0x22, 0x0e, 0x31, 0x18, 0x30, 0x16, 0xf3, 0xe8, 0xed, 0x20, 0x00, 0x70, 0xbd, 0x00, 0x00, +0xd8, 0xee, 0x00, 0xc0, 0x1c, 0x34, 0x01, 0xc0, 0x4c, 0x06, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x04, +0x98, 0xba, 0x02, 0x00, 0x70, 0x47, 0x70, 0x47, 0x38, 0xb5, 0x05, 0x00, 0x0c, 0x00, 0x00, 0x21, +0x68, 0x46, 0x21, 0xf0, 0x66, 0xe9, 0x6b, 0x46, 0x18, 0x78, 0x80, 0x07, 0x0e, 0xd1, 0x01, 0x20, +0x0d, 0xf0, 0x65, 0xfe, 0x01, 0x2c, 0x01, 0xd1, 0x09, 0x24, 0x00, 0xe0, 0x14, 0x24, 0x0d, 0xf0, +0x64, 0xfe, 0x20, 0x00, 0x0b, 0xf3, 0xe1, 0xff, 0x00, 0x24, 0x03, 0xe0, 0x02, 0x20, 0x0d, 0xf0, +0x56, 0xfe, 0xf1, 0xe7, 0x21, 0x00, 0x28, 0x00, 0x07, 0xf0, 0xf1, 0xff, 0x01, 0x00, 0x20, 0x00, +0x0e, 0xf0, 0xe0, 0xf8, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x08, 0x2c, 0xf2, 0xd3, 0x38, 0xbd, +0xfe, 0x4a, 0x10, 0x6b, 0xfe, 0x49, 0x48, 0x63, 0x50, 0x6b, 0x88, 0x63, 0x70, 0x47, 0x70, 0xb5, +0x04, 0x00, 0xb1, 0x20, 0x0d, 0x00, 0x80, 0x00, 0x21, 0x18, 0x20, 0x00, 0x7e, 0x30, 0x0f, 0xf3, +0xc1, 0xfb, 0xff, 0xf7, 0xed, 0xff, 0x0b, 0xf3, 0xcb, 0xff, 0x0b, 0x20, 0x80, 0x01, 0x20, 0x18, +0x00, 0x69, 0x20, 0x30, 0xc1, 0x7a, 0x28, 0x00, 0x0f, 0xf3, 0xb0, 0xfb, 0x28, 0x00, 0x0f, 0xf3, +0xf6, 0xfb, 0x70, 0xbd, 0xef, 0x49, 0x48, 0x6a, 0x04, 0x22, 0x90, 0x43, 0x48, 0x62, 0x70, 0x47, +0x00, 0x20, 0x10, 0xb5, 0x0f, 0xf3, 0x5d, 0xfc, 0x00, 0x21, 0x06, 0x20, 0x07, 0xf0, 0xc1, 0xfa, +0x0b, 0xf3, 0xd4, 0xff, 0x01, 0x21, 0x06, 0x20, 0x07, 0xf0, 0x8e, 0xfa, 0x0b, 0xf3, 0xd6, 0xff, +0xe3, 0x48, 0x40, 0x38, 0x01, 0x68, 0x82, 0x0c, 0x11, 0x43, 0x01, 0x60, 0x0c, 0xf3, 0x6c, 0xfc, +0x10, 0xbd, 0x10, 0xb5, 0x0e, 0xf0, 0xd0, 0xfd, 0x10, 0xbd, 0xf8, 0xb5, 0x05, 0x00, 0x0e, 0x00, +0xdd, 0x4c, 0x17, 0x00, 0x20, 0x78, 0xa8, 0x42, 0x02, 0xd1, 0x60, 0x78, 0x18, 0x08, 0x96, 0xae, +0x01, 0x00, 0x00, 0x00, 0xa0, 0x5f, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xcf, 0x42, 0x26, 0x0b, +0xb0, 0x42, 0x06, 0xd0, 0x31, 0x00, 0x28, 0x00, 0x0e, 0xf0, 0xae, 0xfd, 0x20, 0x61, 0x25, 0x70, +0x66, 0x70, 0xd7, 0x48, 0x40, 0x6a, 0x80, 0x69, 0x00, 0x28, 0x0d, 0xd0, 0x3a, 0x00, 0x31, 0x00, +0x28, 0x00, 0x11, 0xf0, 0x3a, 0xfd, 0x21, 0x69, 0x88, 0x42, 0x13, 0xda, 0x3a, 0x00, 0x31, 0x00, +0x28, 0x00, 0x11, 0xf0, 0x32, 0xfd, 0x0e, 0xe0, 0x3a, 0x00, 0x31, 0x00, 0x28, 0x00, 0x11, 0xf0, +0x03, 0xfd, 0x21, 0x69, 0x88, 0x42, 0x05, 0xda, 0x3a, 0x00, 0x31, 0x00, 0x28, 0x00, 0x11, 0xf0, +0xfb, 0xfc, 0x00, 0xe0, 0x08, 0x00, 0x61, 0x68, 0x88, 0x42, 0x00, 0xdb, 0x08, 0x00, 0xa1, 0x68, +0x88, 0x42, 0x00, 0xdb, 0x08, 0x00, 0xf8, 0xbd, 0x10, 0xb5, 0x0c, 0xf0, 0x1c, 0xff, 0x00, 0x06, +0x00, 0x0e, 0x10, 0xbd, 0x10, 0xb5, 0x0c, 0xf0, 0x19, 0xff, 0x10, 0xbd, 0x10, 0xb5, 0x04, 0x00, +0x0c, 0xf0, 0x17, 0xff, 0xcf, 0x22, 0xf3, 0x21, 0x00, 0x28, 0x06, 0xd0, 0x02, 0x28, 0x11, 0xd0, +0x03, 0x28, 0x20, 0x78, 0x13, 0xd0, 0x08, 0x40, 0x02, 0xe0, 0x20, 0x78, 0x08, 0x40, 0x00, 0x1d, +0x10, 0x40, 0x20, 0x70, 0x0c, 0xf0, 0x02, 0xff, 0x01, 0x28, 0x20, 0x78, 0x0b, 0xd0, 0x80, 0x08, +0x80, 0x00, 0x0b, 0xe0, 0x20, 0x78, 0x08, 0x40, 0x10, 0x40, 0x10, 0x30, 0xf1, 0xe7, 0x08, 0x40, +0x30, 0x21, 0x08, 0x43, 0xed, 0xe7, 0x80, 0x08, 0x80, 0x00, 0x40, 0x1c, 0x20, 0x70, 0x10, 0xbd, +0x00, 0x21, 0x08, 0x00, 0x10, 0xb5, 0x11, 0xf0, 0x63, 0xfb, 0x10, 0xbd, 0xa3, 0x4a, 0x53, 0x68, +0x83, 0x42, 0x03, 0xd0, 0x00, 0x29, 0x50, 0x60, 0x00, 0xd0, 0xf1, 0xe7, 0x70, 0x47, 0x9f, 0x4a, +0x93, 0x68, 0x83, 0x42, 0x03, 0xd0, 0x00, 0x29, 0x90, 0x60, 0x00, 0xd0, 0xe8, 0xe7, 0x70, 0x47, +0x9a, 0x48, 0x80, 0x68, 0x00, 0x06, 0x00, 0x0e, 0x70, 0x47, 0x10, 0xb5, 0x14, 0x00, 0x02, 0x68, +0x8a, 0x42, 0x01, 0xd1, 0xff, 0x29, 0x09, 0xd1, 0x01, 0x60, 0x07, 0xf0, 0xeb, 0xfb, 0x93, 0x49, +0x89, 0x68, 0x88, 0x42, 0x02, 0xd0, 0x21, 0x00, 0xff, 0xf7, 0xe1, 0xff, 0x10, 0xbd, 0xf8, 0xb5, +0x05, 0x00, 0x08, 0x00, 0x00, 0x21, 0x00, 0x91, 0xe9, 0x68, 0x16, 0x00, 0xff, 0x24, 0xc9, 0x05, +0x0a, 0xd5, 0x69, 0x46, 0x0b, 0xf0, 0x22, 0xfc, 0x01, 0x28, 0x05, 0xd1, 0x6b, 0x46, 0x89, 0x48, +0x19, 0x78, 0x40, 0x18, 0x40, 0x30, 0x04, 0x79, 0xaf, 0x20, 0x80, 0x00, 0x32, 0x00, 0x21, 0x00, +0x28, 0x18, 0xff, 0xf7, 0xd2, 0xff, 0xf8, 0xbd, 0x08, 0x00, 0x10, 0xb5, 0x04, 0x78, 0x19, 0x00, +0xa4, 0x07, 0xa4, 0x0f, 0x14, 0x70, 0x0f, 0xf3, 0x8f, 0xfb, 0x10, 0xbd, 0x7b, 0x48, 0xc0, 0x68, +0x70, 0x47, 0x7a, 0x49, 0xc8, 0x60, 0x70, 0x47, 0xff, 0xb5, 0x08, 0x00, 0x00, 0x21, 0x83, 0xb0, +0x17, 0x00, 0x79, 0x4d, 0x00, 0x91, 0x2a, 0x88, 0x1e, 0x00, 0x0c, 0x00, 0x00, 0x2a, 0x01, 0xd0, +0x01, 0x24, 0x29, 0x80, 0x01, 0x78, 0x89, 0x07, 0x89, 0x0f, 0x02, 0x91, 0x01, 0xa9, 0x0f, 0xf3, +0x73, 0xfb, 0x6b, 0x46, 0x1a, 0x79, 0x19, 0x7a, 0x03, 0x98, 0x0c, 0xf0, 0x16, 0xfc, 0x0c, 0xf0, +0xe1, 0xfb, 0x0b, 0xf3, 0x75, 0xfc, 0x38, 0x00, 0x68, 0x4f, 0x19, 0xd0, 0x6b, 0x48, 0x69, 0x46, +0x0d, 0xf0, 0xf9, 0xfc, 0x00, 0x28, 0x13, 0xd1, 0x78, 0x69, 0x40, 0x1c, 0x78, 0x61, 0x00, 0x98, +0x80, 0x06, 0x02, 0xd4, 0x00, 0x20, 0x05, 0xf0, 0xe9, 0xfc, 0x00, 0x98, 0xc0, 0x06, 0x01, 0xd4, +0x05, 0xf0, 0x04, 0xfd, 0x0b, 0xf3, 0x5c, 0xfc, 0x00, 0x20, 0x69, 0x46, 0x0d, 0xf0, 0xe3, 0xfc, +0xfe, 0x60, 0x6b, 0x46, 0x1a, 0x79, 0x18, 0x7a, 0x03, 0x99, 0x0c, 0xf0, 0x2a, 0xfe, 0xff, 0xf7, +0x5f, 0xff, 0x0d, 0xf0, 0xe3, 0xfc, 0x0b, 0xf3, 0x45, 0xfc, 0x00, 0x2e, 0x05, 0xd1, 0x6b, 0x46, +0x1a, 0x79, 0x19, 0x7a, 0x03, 0x98, 0x0c, 0xf0, 0x05, 0xfc, 0x00, 0x2c, 0x01, 0xd0, 0x01, 0x20, +0x28, 0x80, 0x07, 0xb0, 0xf0, 0xbd, 0x10, 0xb5, 0x0c, 0xf3, 0x3a, 0xfb, 0x10, 0xbd, 0x10, 0xb5, +0x0c, 0xf0, 0x31, 0xfe, 0x00, 0x06, 0x00, 0x0e, 0x10, 0xbd, 0x70, 0xb5, 0x0e, 0x04, 0x05, 0x00, +0x36, 0x0c, 0x4b, 0x48, 0x00, 0x22, 0x31, 0x00, 0x17, 0xf3, 0xb8, 0xf9, 0x04, 0x00, 0x06, 0xd1, +0x48, 0x48, 0x00, 0x22, 0x31, 0x00, 0x17, 0xf3, 0xb1, 0xf9, 0x04, 0x00, 0x0a, 0xd0, 0x02, 0x20, +0x20, 0x73, 0x1c, 0x20, 0x65, 0x61, 0x20, 0x81, 0x20, 0x18, 0x70, 0x21, 0x16, 0xf3, 0xe4, 0xec, +0xac, 0x20, 0x20, 0x81, 0x20, 0x00, 0x70, 0xbd, 0xf7, 0xb5, 0xff, 0x21, 0x2d, 0x31, 0x07, 0x00, +0xff, 0xf7, 0xdb, 0xff, 0x05, 0x00, 0x2b, 0xd0, 0x1c, 0x20, 0x2e, 0x18, 0x28, 0x81, 0x02, 0x98, +0x2c, 0x00, 0xac, 0x34, 0x06, 0x60, 0x20, 0x21, 0x20, 0x00, 0x16, 0xf3, 0xce, 0xec, 0xa0, 0x78, +0xf3, 0x21, 0x80, 0x08, 0x80, 0x00, 0x08, 0x40, 0x00, 0x1d, 0x01, 0x07, 0x01, 0x98, 0x09, 0x0f, +0x00, 0x01, 0x01, 0x43, 0xb1, 0x20, 0x80, 0x00, 0xa1, 0x70, 0x39, 0x18, 0x20, 0x00, 0x06, 0x22, +0x0c, 0x30, 0x16, 0xf3, 0xf4, 0xeb, 0x39, 0x00, 0xff, 0x31, 0x06, 0x22, 0x4a, 0x31, 0xa0, 0x1d, +0x16, 0xf3, 0xec, 0xeb, 0x03, 0x21, 0x68, 0x20, 0xf4, 0x65, 0x81, 0x55, 0x05, 0x20, 0xb0, 0x70, +0x28, 0x00, 0xfe, 0xbd, 0xff, 0xb5, 0x83, 0xb0, 0x14, 0x00, 0x01, 0x89, 0x45, 0x69, 0x0e, 0x18, +0x1c, 0x21, 0x47, 0x18, 0x01, 0x81, 0x70, 0x21, 0x38, 0x00, 0x16, 0xf3, 0x74, 0xec, 0x1e, 0x48, +0x06, 0x99, 0x00, 0x68, 0x0c, 0x9b, 0x02, 0x79, 0x01, 0x92, 0x00, 0x91, 0x04, 0x99, 0x22, 0x00, +0x30, 0x00, 0x0f, 0xf3, 0xcd, 0xfa, 0x21, 0x88, 0x18, 0x48, 0x00, 0x22, 0x81, 0x42, 0x06, 0xd1, +0x61, 0x88, 0x81, 0x42, 0x03, 0xd1, 0xa1, 0x88, 0x81, 0x42, 0x00, 0xd1, 0x01, 0x22, 0x06, 0x99, +0x28, 0x00, 0x12, 0xf0, 0x99, 0xfa, 0xb8, 0x70, 0x28, 0x7a, 0x03, 0x28, 0x26, 0xd1, 0x06, 0x98, +0x05, 0x21, 0x04, 0x28, 0x21, 0xd0, 0x05, 0x28, 0x1a, 0xd0, 0x0d, 0x28, 0x1e, 0xd1, 0x1c, 0xe0, +0x00, 0xa5, 0x00, 0x80, 0x40, 0xa3, 0x00, 0x80, 0x00, 0xa8, 0x00, 0x80, 0x58, 0xef, 0x00, 0xc0, +0x38, 0x52, 0x00, 0x04, 0xf0, 0x3b, 0x01, 0xc0, 0xac, 0xf5, 0x00, 0xc0, 0x20, 0x4e, 0x00, 0x00, +0x6c, 0x00, 0x00, 0x04, 0xfc, 0x00, 0x00, 0x04, 0x54, 0xf4, 0x00, 0xc0, 0xff, 0xff, 0x00, 0x00, +0x68, 0x7a, 0x02, 0x28, 0x01, 0xd0, 0x01, 0x28, 0x00, 0xd1, 0xb9, 0x70, 0x38, 0x00, 0x48, 0xe7, +0x10, 0xb5, 0x04, 0x00, 0xfb, 0xf7, 0xb2, 0xfc, 0x01, 0x28, 0x05, 0xd1, 0x20, 0x00, 0x17, 0xf3, +0xe3, 0xf8, 0x00, 0x20, 0xc0, 0x43, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0xff, 0xb5, 0xff, 0x21, +0x81, 0xb0, 0x06, 0x00, 0x5d, 0x31, 0x0b, 0x9f, 0xff, 0xf7, 0x3f, 0xff, 0x04, 0x00, 0x02, 0xd1, +0x40, 0x1e, 0x05, 0xb0, 0xf0, 0xbd, 0x20, 0x89, 0x03, 0x9a, 0x05, 0x19, 0x0a, 0x23, 0x00, 0x2f, +0x00, 0x92, 0x00, 0xd1, 0x0c, 0x23, 0xb1, 0x20, 0x80, 0x00, 0x31, 0x18, 0x02, 0x9a, 0x20, 0x00, +0xff, 0xf7, 0x80, 0xff, 0x02, 0x20, 0x28, 0x70, 0x00, 0x20, 0x68, 0x70, 0x9c, 0xd3, 0x6d, 0x25, +0x01, 0x00, 0x00, 0x00, 0x9c, 0x63, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xe7, 0xd3, 0xa3, 0xb6, +0x04, 0x98, 0x20, 0x35, 0x28, 0x70, 0x00, 0x0a, 0x68, 0x70, 0x21, 0x89, 0x21, 0x81, 0x0a, 0x99, +0x85, 0x20, 0x01, 0x55, 0x20, 0x00, 0xff, 0xf7, 0xc5, 0xff, 0xdc, 0xe7, 0x7c, 0xb5, 0x0c, 0x00, +0x15, 0x00, 0x06, 0x99, 0x00, 0x22, 0x01, 0x92, 0x00, 0x91, 0x2a, 0x00, 0x21, 0x00, 0xff, 0xf7, +0xc7, 0xff, 0x7c, 0xbd, 0x7c, 0xb5, 0x0c, 0x00, 0x15, 0x00, 0x06, 0x99, 0x01, 0x22, 0x01, 0x92, +0x00, 0x91, 0x2a, 0x00, 0x21, 0x00, 0xff, 0xf7, 0xbb, 0xff, 0x7c, 0xbd, 0xf0, 0xb5, 0x15, 0x00, +0x07, 0x00, 0x0e, 0x00, 0x0a, 0x00, 0x85, 0xb0, 0x00, 0x24, 0x29, 0x00, 0x68, 0x46, 0x0f, 0xf3, +0x74, 0xfa, 0x00, 0x28, 0x13, 0xd1, 0x2b, 0x00, 0x1d, 0x3b, 0x16, 0xf3, 0x46, 0xed, 0x11, 0x10, +0x0a, 0x10, 0x10, 0x10, 0x10, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x10, 0x10, 0x10, 0x0e, 0x10, 0x10, +0x0e, 0x00, 0x30, 0x78, 0x6b, 0x46, 0x18, 0x73, 0x0c, 0xe0, 0x00, 0x24, 0xe4, 0x43, 0x07, 0x2d, +0x06, 0xd1, 0x00, 0x2e, 0x04, 0xd0, 0x08, 0x22, 0x31, 0x00, 0x03, 0xa8, 0x16, 0xf3, 0x10, 0xeb, +0x00, 0x2c, 0x03, 0xd1, 0x38, 0x00, 0x69, 0x46, 0x20, 0xf0, 0xa2, 0xee, 0x20, 0x00, 0x92, 0xe7, +0xf0, 0xb5, 0x13, 0x00, 0x87, 0xb0, 0x06, 0xaa, 0x00, 0x92, 0x1a, 0x00, 0x00, 0x25, 0x05, 0xab, +0x07, 0xf0, 0x0b, 0xfc, 0x06, 0x99, 0x05, 0x98, 0x88, 0x42, 0x2a, 0xd0, 0x0d, 0xf0, 0x68, 0xf8, +0x0d, 0xf0, 0xbb, 0xfc, 0xfd, 0x4e, 0x30, 0x68, 0xb1, 0x0c, 0x88, 0x43, 0x30, 0x60, 0x05, 0x98, +0x00, 0x28, 0x1e, 0xd0, 0x00, 0x24, 0x01, 0xaf, 0x01, 0x20, 0x05, 0x99, 0xa0, 0x40, 0x08, 0x42, +0x0b, 0xd0, 0xa0, 0x00, 0x78, 0x55, 0x6d, 0x1c, 0x04, 0x2c, 0x06, 0xd1, 0x01, 0x20, 0x0b, 0xf3, +0xcd, 0xfa, 0x30, 0x68, 0xe1, 0x02, 0x08, 0x43, 0x30, 0x60, 0x64, 0x1c, 0x0d, 0x2c, 0xeb, 0xdd, +0x00, 0x2d, 0x06, 0xdd, 0xff, 0x20, 0x78, 0x55, 0x01, 0xa8, 0x0b, 0xf3, 0x31, 0xfa, 0x0b, 0xf3, +0xe7, 0xfa, 0x88, 0xe6, 0x0a, 0x00, 0x01, 0x21, 0x10, 0xb5, 0xff, 0xf7, 0xc1, 0xff, 0x01, 0x20, +0x10, 0xbd, 0x10, 0xb5, 0x8a, 0x78, 0x14, 0x07, 0xa3, 0x0f, 0x02, 0x2b, 0x07, 0xd1, 0x01, 0x28, +0x2a, 0xd1, 0xc8, 0x78, 0xc1, 0x07, 0x27, 0xd1, 0x80, 0x07, 0x25, 0xd4, 0x22, 0xe0, 0xa4, 0x0f, +0x15, 0xd1, 0x13, 0x09, 0x16, 0xf3, 0xd0, 0xec, 0x0e, 0x08, 0x08, 0x08, 0x08, 0x1e, 0x1e, 0x20, +0x20, 0x1e, 0x1e, 0x08, 0x1e, 0x1e, 0x0a, 0x20, 0x02, 0x20, 0x10, 0xbd, 0x01, 0x28, 0x11, 0xd0, +0x03, 0x28, 0x11, 0xd1, 0x20, 0x31, 0x08, 0x78, 0x04, 0x28, 0x0d, 0xd1, 0x0a, 0xe0, 0x01, 0x2b, +0x0a, 0xd1, 0x13, 0x09, 0x08, 0x3b, 0x16, 0xf3, 0xb8, 0xec, 0x08, 0x07, 0x07, 0x07, 0x05, 0x05, +0x05, 0x05, 0x05, 0x07, 0x01, 0x20, 0x10, 0xbd, 0x03, 0x20, 0x10, 0xbd, 0x01, 0x00, 0x70, 0xb5, +0x0a, 0x00, 0x8c, 0x78, 0x12, 0x32, 0x25, 0x07, 0x00, 0x20, 0xae, 0x0f, 0x93, 0x1f, 0x02, 0x2e, +0x0c, 0xd1, 0xcc, 0x78, 0xe5, 0x07, 0x05, 0xd1, 0xa0, 0x07, 0x01, 0xd4, 0x10, 0x00, 0x70, 0xbd, +0x18, 0x00, 0x70, 0xbd, 0xa2, 0x07, 0xfc, 0xd4, 0x88, 0x1d, 0x70, 0xbd, 0xad, 0x0f, 0xf5, 0xd0, +0x01, 0x2e, 0xfa, 0xd1, 0x22, 0x09, 0x0a, 0x2a, 0xf6, 0xd0, 0x0e, 0x2a, 0xf0, 0xd0, 0x0f, 0x2a, +0xee, 0xd0, 0x70, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x1e, 0xf0, 0x9d, 0xfa, 0x61, 0x7a, 0x02, 0x29, +0x04, 0xd1, 0x60, 0x30, 0x00, 0x78, 0x02, 0x28, 0x07, 0xd2, 0x03, 0xe0, 0x03, 0x29, 0x04, 0xd0, +0x01, 0x29, 0x02, 0xd0, 0x20, 0x7a, 0x01, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x10, 0xbd, 0x00, 0x20, +0x10, 0xbd, 0x00, 0x28, 0x10, 0xb5, 0x09, 0xd0, 0x1e, 0xf0, 0x5e, 0xfa, 0x00, 0x28, 0x05, 0xd0, +0x19, 0x21, 0x49, 0x01, 0x40, 0x18, 0x00, 0x7a, 0x01, 0x28, 0x00, 0xd0, 0x00, 0x20, 0x10, 0xbd, +0x70, 0xb5, 0x04, 0x00, 0x1b, 0xf0, 0xd4, 0xf8, 0x05, 0x00, 0xe1, 0x7a, 0xa0, 0x7a, 0x1e, 0xf0, +0x82, 0xfa, 0x0f, 0xe0, 0xe0, 0x68, 0xc0, 0x04, 0x07, 0xd5, 0x20, 0x00, 0xfc, 0xf7, 0x26, 0xfb, +0x02, 0x00, 0x01, 0x21, 0x20, 0x00, 0x12, 0xf0, 0x0c, 0xfa, 0xe2, 0x7a, 0xa1, 0x7a, 0x20, 0x00, +0x05, 0xf0, 0x99, 0xfe, 0x04, 0x00, 0xed, 0xd1, 0x28, 0x00, 0x1b, 0xf0, 0xbd, 0xf8, 0x70, 0xbd, +0x10, 0xb5, 0x04, 0x00, 0x1e, 0xf0, 0x30, 0xfa, 0x41, 0x6c, 0x00, 0x29, 0x09, 0xd0, 0x9b, 0x21, +0x89, 0x00, 0x42, 0x18, 0x92, 0x49, 0x03, 0x00, 0x41, 0x18, 0x64, 0x33, 0x20, 0x00, 0x0f, 0xf3, +0x97, 0xfa, 0x10, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x8d, 0x48, 0x20, 0x18, 0x0f, 0xf3, 0xdd, 0xfa, +0x13, 0x20, 0x40, 0x01, 0x00, 0x21, 0x20, 0x18, 0x01, 0x72, 0x81, 0x72, 0x05, 0x20, 0xc0, 0x01, +0x20, 0x18, 0x81, 0x60, 0x10, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x1e, 0xf0, 0x0d, 0xfa, 0x04, 0x00, +0x28, 0x00, 0x1e, 0xf0, 0x30, 0xfa, 0x8f, 0x21, 0x89, 0x00, 0x00, 0x7a, 0x61, 0x18, 0x0c, 0x00, +0x82, 0x07, 0x20, 0x34, 0x20, 0x79, 0x92, 0x0f, 0x00, 0x28, 0x17, 0xd0, 0x00, 0x2a, 0x15, 0xd1, +0x22, 0x7a, 0x25, 0x31, 0x12, 0x07, 0xd6, 0x0f, 0x0f, 0xf3, 0x69, 0xf9, 0x20, 0x7a, 0x00, 0x07, +0xc0, 0x0f, 0xb0, 0x42, 0x01, 0xd0, 0xfb, 0xf7, 0x98, 0xfe, 0x28, 0x00, 0x10, 0xf0, 0x36, 0xfc, +0x20, 0x7a, 0x00, 0x07, 0xc1, 0x0f, 0x28, 0x7a, 0x0c, 0xf0, 0x08, 0xff, 0x70, 0xbd, 0x10, 0xb5, +0x04, 0x00, 0x1e, 0xf0, 0xe1, 0xf9, 0x8f, 0x21, 0x89, 0x00, 0x40, 0x18, 0x00, 0x22, 0x2d, 0x21, +0x0a, 0x54, 0x25, 0x30, 0x0f, 0xf3, 0x62, 0xf9, 0x20, 0x00, 0xff, 0xf7, 0xc4, 0xff, 0x10, 0xbd, +0xf8, 0xb5, 0x05, 0x00, 0x1e, 0xf0, 0xd0, 0xf9, 0x13, 0x21, 0x49, 0x01, 0x41, 0x18, 0x0c, 0x78, +0x09, 0x23, 0xdf, 0x22, 0xef, 0x26, 0x9b, 0x01, 0x02, 0x2c, 0x07, 0xd1, 0x0f, 0x79, 0xc0, 0x18, +0x37, 0x40, 0x0f, 0x71, 0x01, 0x7e, 0x00, 0x24, 0x11, 0x40, 0x19, 0xe0, 0x5c, 0x4c, 0x44, 0x3c, +0x24, 0x5c, 0xe4, 0x07, 0x02, 0xd1, 0x8c, 0x78, 0x00, 0x2c, 0x00, 0xd0, 0x01, 0x24, 0x0f, 0x79, +0x37, 0x40, 0xe6, 0x07, 0xf6, 0x0e, 0x37, 0x43, 0x00, 0x2c, 0x0f, 0x71, 0x04, 0xd1, 0xc1, 0x18, +0x09, 0x7e, 0x20, 0x22, 0x11, 0x43, 0x02, 0xe0, 0xc1, 0x18, 0x09, 0x7e, 0x11, 0x40, 0xc0, 0x18, +0x01, 0x76, 0x28, 0x00, 0x10, 0xf0, 0xea, 0xfb, 0x28, 0x00, 0x10, 0xf0, 0x6f, 0xfc, 0x20, 0x00, +0x0b, 0xf3, 0x4c, 0xff, 0xf8, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x1e, 0xf0, 0x95, 0xf9, 0x13, 0x22, +0x52, 0x01, 0x00, 0x21, 0x80, 0x18, 0x81, 0x70, 0x20, 0x00, 0xff, 0xf7, 0xb9, 0xff, 0x10, 0xbd, +0x10, 0xb5, 0x04, 0x00, 0x20, 0x00, 0x1e, 0xf0, 0xae, 0xf9, 0x60, 0x30, 0x00, 0x78, 0x01, 0x28, +0x02, 0xd9, 0x20, 0x00, 0x1d, 0xf0, 0x47, 0xfb, 0xe2, 0x7a, 0xa1, 0x7a, 0x20, 0x00, 0x05, 0xf0, +0xda, 0xfd, 0x04, 0x00, 0xee, 0xd1, 0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x1e, 0xf0, 0x74, 0xf9, +0x13, 0x21, 0x49, 0x01, 0x43, 0x18, 0x1a, 0x78, 0x09, 0x21, 0xfb, 0x25, 0xca, 0x52, 0x28, 0xb6, +0x01, 0x00, 0x00, 0x00, 0x98, 0x67, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xb4, 0x09, 0x70, 0xda, +0x89, 0x01, 0x02, 0x2a, 0x01, 0xd1, 0x00, 0x22, 0x02, 0xe0, 0x00, 0x2a, 0x05, 0xd1, 0x01, 0x22, +0x40, 0x18, 0x41, 0x7e, 0x29, 0x40, 0x41, 0x76, 0x0f, 0xe0, 0xda, 0x78, 0x00, 0x2a, 0x00, 0xd0, +0x01, 0x22, 0x00, 0x2a, 0x04, 0xd1, 0x43, 0x18, 0x5b, 0x7e, 0x04, 0x25, 0x2b, 0x43, 0x02, 0xe0, +0x43, 0x18, 0x5b, 0x7e, 0x2b, 0x40, 0x40, 0x18, 0x43, 0x76, 0x01, 0x21, 0x00, 0x2a, 0x00, 0xd0, +0x00, 0x21, 0x20, 0x00, 0xff, 0xf7, 0x66, 0xfb, 0x20, 0x00, 0x10, 0xf0, 0x19, 0xfc, 0x70, 0xbd, +0x10, 0xb5, 0x04, 0x00, 0x1e, 0xf0, 0x42, 0xf9, 0x13, 0x22, 0x52, 0x01, 0x00, 0x21, 0x80, 0x18, +0xc1, 0x70, 0x20, 0x00, 0xff, 0xf7, 0xc2, 0xff, 0x10, 0xbd, 0x1b, 0x4a, 0x83, 0x1a, 0x90, 0x42, +0x0e, 0xd0, 0x05, 0xdc, 0x19, 0x4a, 0x80, 0x1a, 0x0a, 0xd0, 0x07, 0x28, 0x0e, 0xd1, 0x07, 0xe0, +0x17, 0x48, 0x18, 0x18, 0x08, 0xd0, 0x7d, 0x22, 0xd2, 0x00, 0x80, 0x1a, 0x06, 0xd1, 0x01, 0xe0, +0x00, 0x20, 0x70, 0x47, 0x01, 0x20, 0x70, 0x47, 0x02, 0x20, 0x70, 0x47, 0x0e, 0x29, 0xf9, 0xd8, +0xf6, 0xe7, 0x00, 0x29, 0x03, 0xd0, 0x0e, 0x29, 0x01, 0xd1, 0x0b, 0x48, 0x70, 0x47, 0x0a, 0x48, +0xc0, 0x1f, 0x70, 0x47, 0x10, 0xb5, 0x04, 0x00, 0x08, 0x00, 0x11, 0x00, 0xff, 0xf7, 0xf1, 0xff, +0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, 0x01, 0x2b, 0xe2, 0x70, 0x0b, 0xd1, 0x0a, 0x20, 0x0e, 0xe0, +0x00, 0xa3, 0x00, 0x80, 0x61, 0x02, 0x00, 0x00, 0x6e, 0x09, 0x00, 0x00, 0x60, 0x09, 0x00, 0x00, +0xce, 0xf9, 0xff, 0xff, 0x02, 0x2b, 0x01, 0xd1, 0x28, 0x20, 0x00, 0xe0, 0x14, 0x20, 0xa0, 0x70, +0x10, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x07, 0xf0, 0x34, 0xf8, 0x01, 0x28, 0x01, 0xdd, 0x01, 0x20, +0x00, 0xe0, 0x00, 0x20, 0x00, 0x2c, 0x06, 0xd0, 0x01, 0x2c, 0x07, 0xd0, 0x02, 0x2c, 0x01, 0xd1, +0x0b, 0xf3, 0x32, 0xfb, 0x10, 0xbd, 0x0d, 0xf0, 0x9c, 0xfb, 0x10, 0xbd, 0x0d, 0xf0, 0xa7, 0xfb, +0x10, 0xbd, 0xfe, 0xb5, 0x04, 0x00, 0x21, 0x20, 0x40, 0x5c, 0x0e, 0x00, 0x21, 0x00, 0x00, 0x25, +0x7e, 0x31, 0x2f, 0x00, 0x00, 0x28, 0x01, 0x91, 0x25, 0xd0, 0x0b, 0x21, 0x89, 0x01, 0x61, 0x18, +0x09, 0x69, 0x2b, 0x22, 0x52, 0x5c, 0x90, 0x42, 0x3b, 0xd1, 0x30, 0x00, 0x2c, 0x31, 0x22, 0x30, +0x1a, 0xf0, 0x6c, 0xfc, 0x00, 0x28, 0x34, 0xd1, 0x20, 0x7a, 0x01, 0x25, 0x02, 0x28, 0x1f, 0xd1, +0x30, 0x00, 0x0c, 0x30, 0x1e, 0xf0, 0x33, 0xf9, 0x00, 0x28, 0x0a, 0xd0, 0xc1, 0x68, 0xc9, 0x04, +0x16, 0xd4, 0xa1, 0x7a, 0x82, 0x7a, 0x91, 0x42, 0x12, 0xd1, 0xe1, 0x7a, 0xc0, 0x7a, 0x81, 0x42, +0x0e, 0xd1, 0x01, 0x27, 0x0c, 0xe0, 0x20, 0x7a, 0x02, 0x28, 0x36, 0xd1, 0x20, 0x00, 0x1e, 0xf0, +0xa5, 0xf8, 0xff, 0x30, 0xff, 0x30, 0x80, 0x1c, 0x40, 0x7f, 0x80, 0x07, 0x11, 0xd5, 0x01, 0x25, +0x30, 0x00, 0x12, 0x30, 0x01, 0x99, 0x06, 0x22, 0x00, 0x90, 0x1a, 0xf0, 0x3f, 0xfc, 0x00, 0x28, +0x07, 0xd0, 0x34, 0x48, 0x00, 0x99, 0x06, 0x22, 0x1a, 0xf0, 0x38, 0xfc, 0x00, 0x28, 0x00, 0xd0, +0x00, 0x25, 0x20, 0x7a, 0x02, 0x28, 0x16, 0xd1, 0x01, 0x2d, 0x07, 0xd1, 0x01, 0x98, 0x06, 0x22, +0xb1, 0x1d, 0x1a, 0xf0, 0x2b, 0xfc, 0x00, 0x28, 0x00, 0xd1, 0x01, 0x27, 0x1d, 0xf0, 0xc5, 0xfb, +0x00, 0x28, 0x08, 0xd0, 0x01, 0x2f, 0x06, 0xd1, 0x01, 0x2d, 0x04, 0xd1, 0x02, 0x20, 0x1e, 0xf0, +0xc5, 0xf8, 0x01, 0xf0, 0x41, 0xf8, 0x28, 0x00, 0xfe, 0xbd, 0x01, 0x28, 0xfb, 0xd1, 0xce, 0xe7, +0xff, 0xb5, 0x83, 0xb0, 0x1c, 0x00, 0x06, 0x22, 0x07, 0x00, 0x01, 0x20, 0x01, 0x90, 0x38, 0x00, +0x80, 0x30, 0x02, 0x90, 0x86, 0x69, 0x77, 0x61, 0x70, 0x7b, 0x40, 0x08, 0x40, 0x00, 0x70, 0x73, +0x02, 0x98, 0x80, 0x69, 0x05, 0x00, 0xac, 0x35, 0xb2, 0x30, 0x16, 0xf3, 0x4c, 0xe8, 0x05, 0x98, +0x00, 0x28, 0x05, 0xd0, 0x28, 0x00, 0x05, 0x99, 0x06, 0x22, 0x0c, 0x30, 0x16, 0xf3, 0x42, 0xe8, +0xe8, 0x78, 0x97, 0x21, 0x08, 0x40, 0xe8, 0x70, 0x38, 0x7a, 0x02, 0x28, 0x04, 0xd1, 0x02, 0x98, +0x81, 0x69, 0x38, 0x00, 0x20, 0xf0, 0xd2, 0xeb, 0x00, 0x2c, 0x03, 0xd0, 0x20, 0x78, 0x01, 0x21, +0x08, 0x43, 0x20, 0x70, 0x30, 0x00, 0xff, 0xf7, 0x9f, 0xfc, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x90, +0x05, 0xe0, 0x00, 0x2c, 0x03, 0xd0, 0x20, 0x78, 0x40, 0x08, 0x40, 0x00, 0x20, 0x70, 0x01, 0x98, +0x91, 0xe4, 0x00, 0x00, 0x60, 0xeb, 0x31, 0x00, 0x81, 0x68, 0x00, 0x29, 0x07, 0xd1, 0x71, 0x21, +0x09, 0x5c, 0xc9, 0x43, 0x09, 0x07, 0x04, 0xd1, 0xc0, 0x6d, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, +0x70, 0x47, 0x00, 0x20, 0x70, 0x47, 0xff, 0x4a, 0xfe, 0x4b, 0x11, 0x54, 0x4a, 0x00, 0x52, 0x18, +0x92, 0x08, 0x5b, 0x1c, 0x89, 0x08, 0x1a, 0x54, 0x5a, 0x1c, 0x11, 0x54, 0x70, 0x47, 0x70, 0xb5, +0x0c, 0x00, 0x48, 0x78, 0x09, 0x78, 0xf7, 0x4e, 0x00, 0x02, 0x00, 0x25, 0x08, 0x43, 0xb6, 0x1e, +0x01, 0x28, 0x16, 0xd1, 0x02, 0x21, 0x07, 0x20, 0x06, 0xf0, 0x1d, 0xfa, 0x00, 0x28, 0x01, 0xd0, +0x01, 0x20, 0x70, 0xbd, 0xe0, 0x78, 0x08, 0x28, 0x03, 0xd9, 0x08, 0x20, 0x70, 0x70, 0xe0, 0x70, +0x00, 0xe0, 0x70, 0x70, 0xa0, 0x78, 0x30, 0x70, 0x71, 0x78, 0x00, 0x20, 0xff, 0xf7, 0xd3, 0xff, +0x03, 0xe0, 0x70, 0x78, 0xe0, 0x70, 0x30, 0x78, 0xa0, 0x70, 0x28, 0x00, 0x70, 0xbd, 0x03, 0x22, +0x00, 0x21, 0x12, 0x02, 0x80, 0x18, 0xc1, 0x62, 0x01, 0x63, 0x41, 0x63, 0x81, 0x63, 0x70, 0x47, +0x01, 0x00, 0xe1, 0x48, 0x10, 0xb5, 0x04, 0xf3, 0x1f, 0xff, 0x01, 0x00, 0xde, 0x48, 0x0c, 0x38, +0x04, 0xf3, 0xdc, 0xfe, 0x10, 0xbd, 0x41, 0x69, 0x49, 0x68, 0x15, 0xe0, 0x81, 0x42, 0x12, 0xd1, +0x08, 0x69, 0x00, 0x28, 0x02, 0xd0, 0xca, 0x68, 0xc2, 0x60, 0x02, 0xe0, 0x4a, 0x69, 0xc8, 0x68, +0x50, 0x60, 0xc8, 0x68, 0x00, 0x28, 0x02, 0xd0, 0x09, 0x69, 0x01, 0x61, 0x06, 0xe0, 0x08, 0x69, +0x49, 0x69, 0x88, 0x60, 0x02, 0xe0, 0xc9, 0x68, 0x00, 0x29, 0xe7, 0xd1, 0x00, 0x20, 0x70, 0x47, +0x70, 0xb5, 0x05, 0x00, 0x0c, 0x00, 0x1d, 0xf0, 0xd8, 0xff, 0x0c, 0x30, 0xc2, 0x6d, 0x81, 0x68, +0x60, 0x30, 0x52, 0x18, 0xff, 0x21, 0x95, 0x31, 0x21, 0x70, 0x09, 0x0a, 0x61, 0x70, 0x08, 0x21, +0xa1, 0x70, 0x00, 0x21, 0xe1, 0x70, 0x80, 0x7c, 0xa0, 0x72, 0x29, 0x00, 0xff, 0x31, 0xe2, 0x72, +0x06, 0x22, 0x4a, 0x31, 0x20, 0x1d, 0x15, 0xf3, 0x8e, 0xef, 0x0c, 0x20, 0x70, 0xbd, 0xfe, 0xb5, +0x04, 0x00, 0x00, 0x20, 0x05, 0x00, 0x02, 0x90, 0x0e, 0x00, 0x20, 0x00, 0x00, 0x94, 0x1d, 0xf0, +0x8d, 0xff, 0x07, 0x00, 0x35, 0xe0, 0x20, 0x00, 0x1d, 0xf0, 0xaf, 0xff, 0xe1, 0x68, 0x0c, 0x30, +0xc9, 0x04, 0x28, 0xd5, 0x01, 0x00, 0x60, 0x31, 0x8a, 0x7c, 0xb2, 0x42, 0x23, 0xd0, 0x00, 0x2e, +0x02, 0xd0, 0x00, 0x7d, 0x01, 0x28, 0x1e, 0xd1, 0x8e, 0x74, 0x02, 0x98, 0x00, 0x28, 0x0b, 0xd1, +0x20, 0x20, 0xc0, 0x5d, 0x0c, 0x22, 0x42, 0x43, 0x55, 0x23, 0x64, 0x32, 0x9c, 0x95, 0x67, 0x79, +0x01, 0x00, 0x00, 0x00, 0x94, 0x6b, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x40, 0x66, 0x05, 0x6e, +0x01, 0xa9, 0x02, 0xa8, 0xfe, 0xf7, 0x4b, 0xfc, 0x01, 0x9d, 0x10, 0x35, 0x29, 0x00, 0x20, 0x00, +0xff, 0xf7, 0xb0, 0xff, 0x01, 0x00, 0x2d, 0x18, 0x01, 0x98, 0xc2, 0x7a, 0x83, 0x7a, 0x12, 0x02, +0x1a, 0x43, 0x51, 0x18, 0x81, 0x72, 0x09, 0x0a, 0xc1, 0x72, 0xe2, 0x7a, 0xa1, 0x7a, 0x20, 0x00, +0x05, 0xf0, 0xb5, 0xfb, 0x04, 0x00, 0x00, 0x2c, 0xc7, 0xd1, 0x02, 0x99, 0x00, 0x29, 0x02, 0xd0, +0x00, 0x98, 0xfe, 0xf7, 0xf7, 0xfb, 0xfe, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x02, 0x20, 0x1d, 0xf0, +0x57, 0xff, 0x0c, 0xe0, 0x20, 0x00, 0xff, 0xf7, 0xe0, 0xfc, 0x00, 0x28, 0x03, 0xd0, 0x29, 0x00, +0x20, 0x00, 0xff, 0xf7, 0xa6, 0xff, 0x21, 0x7a, 0x20, 0x00, 0x05, 0xf0, 0x0d, 0xf9, 0x04, 0x00, +0xf0, 0xd1, 0x02, 0x20, 0x15, 0xf0, 0xd1, 0xf9, 0x0d, 0xe0, 0x20, 0x00, 0xff, 0xf7, 0xcd, 0xfc, +0x00, 0x28, 0x04, 0xd0, 0x29, 0x00, 0x20, 0x00, 0xff, 0xf7, 0x93, 0xff, 0x70, 0xbd, 0x02, 0x21, +0x20, 0x00, 0x15, 0xf0, 0xd1, 0xf9, 0x04, 0x00, 0xef, 0xd1, 0x70, 0xbd, 0x70, 0xb5, 0x01, 0x25, +0x00, 0x21, 0x04, 0xf0, 0x28, 0xff, 0x80, 0x48, 0x80, 0x1e, 0x00, 0x78, 0x00, 0x28, 0x0f, 0xd0, +0x7d, 0x4c, 0xe4, 0x1c, 0x20, 0x78, 0x00, 0x28, 0x0a, 0xd0, 0x28, 0x00, 0x04, 0xf0, 0xcf, 0xfe, +0x61, 0x1e, 0x09, 0x78, 0x88, 0x42, 0x03, 0xd8, 0x00, 0x20, 0x20, 0x70, 0xff, 0xf7, 0xbc, 0xff, +0x70, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x10, 0xd0, 0x60, 0x69, 0x01, 0x68, 0x49, 0x1e, 0x01, 0x60, +0xa0, 0x68, 0xff, 0xf7, 0xdb, 0xff, 0xa0, 0x68, 0x00, 0x21, 0x1a, 0xf0, 0x6d, 0xfd, 0x20, 0x00, +0xff, 0xf7, 0x23, 0xff, 0x20, 0x00, 0xff, 0xf7, 0x15, 0xff, 0x10, 0xbd, 0x10, 0xb5, 0x1d, 0xf0, +0xef, 0xfe, 0x8f, 0x21, 0x89, 0x00, 0x44, 0x18, 0xc0, 0x34, 0x01, 0xe0, 0xff, 0xf7, 0xe1, 0xff, +0xa0, 0x6b, 0x00, 0x28, 0xfa, 0xd1, 0x10, 0xbd, 0x01, 0x00, 0x10, 0xb5, 0x4a, 0x7a, 0x00, 0x20, +0x02, 0x2a, 0x03, 0xd1, 0x08, 0x00, 0x1d, 0xf0, 0x02, 0xff, 0x0c, 0x30, 0x10, 0xbd, 0x10, 0xb5, +0xff, 0xf7, 0xf2, 0xff, 0x00, 0x21, 0xc1, 0x65, 0x01, 0x66, 0x41, 0x66, 0x06, 0x21, 0x6c, 0x30, +0x15, 0xf3, 0x5e, 0xef, 0x10, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0xff, 0xf7, 0xe5, 0xff, 0x00, 0x21, +0x01, 0x75, 0x81, 0x60, 0xc1, 0x60, 0x01, 0x61, 0x20, 0x00, 0xff, 0xf7, 0xe8, 0xff, 0x10, 0xbd, +0x52, 0x48, 0x70, 0xb5, 0x0c, 0x38, 0x04, 0xf3, 0x92, 0xfd, 0x50, 0x48, 0x04, 0xf3, 0x8f, 0xfd, +0x4f, 0x4e, 0x00, 0x24, 0x25, 0x00, 0x18, 0x20, 0x60, 0x43, 0x81, 0x19, 0x35, 0x50, 0x4b, 0x48, +0x4d, 0x60, 0x0c, 0x38, 0x04, 0xf3, 0xb4, 0xfd, 0x64, 0x1c, 0x0c, 0x2c, 0xf3, 0xd3, 0x08, 0x21, +0x00, 0x20, 0xff, 0xf7, 0x8a, 0xfe, 0x00, 0x20, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x1d, 0xf0, +0xc6, 0xfe, 0x04, 0x00, 0x0c, 0x34, 0x20, 0x00, 0xff, 0xf7, 0x70, 0xfe, 0x00, 0x28, 0x1b, 0xd1, +0xa0, 0x7f, 0xc0, 0x07, 0x18, 0xd1, 0x01, 0x21, 0x28, 0x00, 0x20, 0xf0, 0xd6, 0xe9, 0x00, 0x28, +0x12, 0xd1, 0x0b, 0x20, 0x80, 0x01, 0x28, 0x18, 0x00, 0x69, 0x40, 0x30, 0x81, 0x89, 0x39, 0x48, +0x16, 0xf3, 0xca, 0xeb, 0x21, 0x68, 0x88, 0x42, 0x06, 0xd2, 0x28, 0x00, 0xfc, 0xf7, 0xb0, 0xfc, +0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x70, 0xbd, 0x00, 0x20, 0x70, 0xbd, 0x10, 0xb5, 0xff, 0xf7, +0x93, 0xff, 0x04, 0x00, 0x01, 0xe0, 0xff, 0xf7, 0x6c, 0xff, 0x20, 0x6e, 0x00, 0x28, 0xfa, 0xd1, +0x10, 0xbd, 0xf3, 0xb5, 0x81, 0xb0, 0x0e, 0x00, 0x01, 0x98, 0x1d, 0xf0, 0x90, 0xfe, 0x04, 0x00, +0x01, 0x98, 0x1d, 0xf0, 0x65, 0xfe, 0x07, 0x00, 0x0c, 0x34, 0x1a, 0xf0, 0xe5, 0xfc, 0x05, 0x00, +0x00, 0x2e, 0x11, 0xd0, 0x61, 0x7d, 0x00, 0x20, 0x00, 0x29, 0x00, 0xd0, 0x60, 0x75, 0x21, 0x7d, +0x01, 0x29, 0x09, 0xd1, 0x20, 0x75, 0x03, 0x20, 0x00, 0x02, 0x38, 0x18, 0xc1, 0x6a, 0x49, 0x1e, +0xc1, 0x62, 0x01, 0xe0, 0xff, 0xf7, 0x45, 0xff, 0xe0, 0x68, 0x00, 0x28, 0xfa, 0xd1, 0x01, 0x98, +0xff, 0xf7, 0xcc, 0xff, 0x01, 0x98, 0xff, 0xf7, 0xa0, 0xff, 0x00, 0x28, 0x07, 0xd0, 0x01, 0x98, +0x00, 0x22, 0xff, 0x30, 0x41, 0x30, 0x01, 0x8a, 0x01, 0x98, 0x20, 0xf0, 0x96, 0xe9, 0x28, 0x00, +0x1a, 0xf0, 0xbe, 0xfc, 0xfe, 0xbd, 0xf7, 0xb5, 0x84, 0xb0, 0x05, 0x00, 0x0e, 0x00, 0x48, 0x68, +0x03, 0x90, 0x28, 0x00, 0xff, 0xf7, 0x48, 0xff, 0x00, 0x90, 0x03, 0x98, 0x00, 0x24, 0x00, 0x28, +0x71, 0xd0, 0x03, 0x98, 0x80, 0x68, 0x02, 0x90, 0x01, 0x89, 0x0f, 0x18, 0x38, 0x00, 0x14, 0x30, +0x01, 0x90, 0xfc, 0x6d, 0x30, 0x68, 0x07, 0xe0, 0x0a, 0xee, 0x00, 0xc0, 0xf8, 0x2a, 0x01, 0xc0, +0xcc, 0x29, 0x01, 0xc0, 0x88, 0x13, 0x00, 0x00, 0x40, 0x1e, 0x30, 0x60, 0x02, 0x98, 0x04, 0xf0, +0xea, 0xfd, 0x01, 0x28, 0x02, 0xd1, 0x02, 0x98, 0xff, 0xf7, 0xe8, 0xfe, 0x01, 0x98, 0x40, 0x78, +0x00, 0x28, 0x03, 0xd1, 0xe0, 0x78, 0xf7, 0x21, 0x08, 0x40, 0xe0, 0x70, 0x68, 0x7a, 0x02, 0x28, +0x1d, 0xd1, 0x28, 0x7a, 0x06, 0x28, 0x1a, 0xd1, 0xa0, 0x79, 0xc0, 0x07, 0x0c, 0xd1, 0x30, 0x68, +0x00, 0x28, 0x0c, 0xd1, 0x00, 0x98, 0x60, 0x30, 0x80, 0x7c, 0x00, 0x28, 0x07, 0xd1, 0x02, 0x21, +0x28, 0x00, 0x20, 0xf0, 0x32, 0xe9, 0x00, 0xe0, 0x06, 0x98, 0x00, 0x28, 0x03, 0xd0, 0xe0, 0x78, +0x20, 0x21, 0x08, 0x43, 0x02, 0xe0, 0xe0, 0x78, 0xdf, 0x21, 0x08, 0x40, 0xe0, 0x70, 0x28, 0x7a, +0x03, 0x28, 0x09, 0xd1, 0x68, 0x20, 0xc0, 0x5d, 0x00, 0x1f, 0x04, 0x28, 0x04, 0xd3, 0x01, 0x9a, +0x39, 0x00, 0x28, 0x00, 0x16, 0xf0, 0x34, 0xfc, 0x68, 0x20, 0xc0, 0x5d, 0x0c, 0x28, 0xa0, 0x78, +0x12, 0xd1, 0x00, 0x07, 0x80, 0x0f, 0x02, 0x98, 0x02, 0xd1, 0x0c, 0xf0, 0x33, 0xfd, 0x01, 0xe0, +0x0c, 0xf0, 0x5a, 0xfd, 0x04, 0x00, 0x68, 0x7a, 0x02, 0x28, 0x2d, 0xd1, 0x30, 0x68, 0x00, 0x28, +0x2a, 0xd1, 0x00, 0x22, 0x11, 0x00, 0x24, 0xe0, 0x01, 0x07, 0x89, 0x0f, 0x04, 0xd1, 0x02, 0x98, +0x0c, 0xf0, 0x62, 0xfd, 0x10, 0xe0, 0x2b, 0xe0, 0x00, 0x09, 0x0c, 0x28, 0x01, 0xd0, 0x04, 0x28, +0x05, 0xd1, 0x01, 0x98, 0xc1, 0x69, 0x02, 0x98, 0x0c, 0xf0, 0xca, 0xfd, 0x04, 0xe0, 0x02, 0x99, +0x3a, 0x00, 0x28, 0x00, 0x1b, 0xf0, 0x43, 0xfd, 0x04, 0x00, 0x68, 0x7a, 0x02, 0x28, 0x0b, 0xd1, +0x28, 0x00, 0xff, 0xf7, 0xfa, 0xfe, 0x00, 0x28, 0x06, 0xd0, 0xff, 0x20, 0x51, 0x30, 0x41, 0x5b, +0x00, 0x22, 0x28, 0x00, 0x20, 0xf0, 0xf0, 0xe8, 0x00, 0x2c, 0x03, 0xd1, 0x02, 0x98, 0x00, 0x21, +0x1a, 0xf0, 0x02, 0xfc, 0x03, 0x98, 0xff, 0xf7, 0xb8, 0xfd, 0x03, 0x98, 0xff, 0xf7, 0xaa, 0xfd, +0x20, 0x00, 0x07, 0xb0, 0xf0, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x0c, 0x00, 0x04, 0xe0, 0x00, 0x22, +0x21, 0x00, 0x28, 0x00, 0xff, 0xf7, 0x47, 0xff, 0x20, 0x68, 0x00, 0x28, 0xf7, 0xd1, 0x70, 0xbd, +0x3e, 0xb5, 0x69, 0x46, 0x04, 0x00, 0xff, 0xf7, 0xbd, 0xfd, 0x03, 0x00, 0xf8, 0xb8, 0x9b, 0x07, +0x01, 0x00, 0x00, 0x00, 0x90, 0x6f, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x13, 0xbc, 0xd6, 0x02, +0x55, 0x21, 0x20, 0x00, 0x6a, 0x46, 0xfe, 0xf7, 0xd2, 0xfa, 0x3e, 0xbd, 0xf3, 0xb5, 0x00, 0x24, +0x83, 0xb0, 0x0e, 0x00, 0x03, 0x98, 0x27, 0x00, 0x01, 0x94, 0x00, 0xf0, 0xa9, 0xfb, 0x00, 0x90, +0x03, 0x98, 0x1d, 0xf0, 0x5f, 0xfd, 0x33, 0x21, 0x09, 0x01, 0x45, 0x18, 0x00, 0x2e, 0x36, 0xd0, +0x03, 0x98, 0x00, 0xf0, 0x9f, 0xfb, 0x04, 0x00, 0x1d, 0xf0, 0x9b, 0xf8, 0x00, 0x28, 0x13, 0xd0, +0x02, 0x20, 0x1d, 0xf0, 0x9f, 0xfd, 0x03, 0x99, 0x88, 0x42, 0x0d, 0xd1, 0x20, 0x88, 0x02, 0x28, +0x0a, 0xd1, 0x00, 0x98, 0xc0, 0x30, 0x00, 0x7e, 0x00, 0x28, 0x05, 0xd1, 0xfa, 0xf7, 0xb7, 0xfe, +0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, 0x00, 0xe0, 0x00, 0x20, 0x00, 0x28, 0x0e, 0xd0, 0x60, 0x68, +0xc0, 0x07, 0x09, 0xd0, 0x03, 0x98, 0x00, 0x7a, 0x04, 0xf0, 0x2a, 0xff, 0x00, 0x28, 0x00, 0xd0, +0x01, 0x27, 0x60, 0x68, 0xc0, 0x07, 0x01, 0xd1, 0x01, 0x20, 0x01, 0x90, 0x03, 0x98, 0x80, 0x30, +0x00, 0x7a, 0x0c, 0xf0, 0x45, 0xfc, 0x04, 0x00, 0x0c, 0x20, 0x02, 0x90, 0x2e, 0xe0, 0x00, 0x20, +0x16, 0xf3, 0x33, 0xff, 0xf9, 0xe7, 0x68, 0x68, 0x80, 0x68, 0x01, 0x89, 0x40, 0x18, 0x60, 0x30, +0x02, 0x99, 0x00, 0x2e, 0x01, 0x72, 0x13, 0xd0, 0x29, 0x68, 0x01, 0x29, 0x01, 0xd0, 0x01, 0x2c, +0x04, 0xd1, 0x01, 0x99, 0x00, 0x29, 0x01, 0xd0, 0x14, 0x21, 0x41, 0x72, 0x28, 0x68, 0x00, 0x22, +0x01, 0x28, 0x01, 0xd8, 0x00, 0x2f, 0x08, 0xd0, 0x01, 0x2c, 0x06, 0xd9, 0x01, 0x22, 0x04, 0xe0, +0x28, 0x68, 0x01, 0x22, 0x01, 0x28, 0x00, 0xd8, 0x00, 0x22, 0x03, 0x98, 0x29, 0x00, 0xff, 0xf7, +0xc4, 0xfe, 0x01, 0x28, 0x02, 0xd1, 0x00, 0x2e, 0x00, 0xd0, 0x64, 0x1e, 0x28, 0x68, 0x00, 0x28, +0x03, 0xd0, 0x00, 0x2e, 0xcf, 0xd0, 0x00, 0x2c, 0xcd, 0xd1, 0x00, 0x2f, 0x0a, 0xd0, 0x00, 0x2c, +0x08, 0xd0, 0x00, 0x98, 0x14, 0x22, 0x80, 0x30, 0xc0, 0x6b, 0x01, 0x04, 0x03, 0x98, 0x09, 0x0c, +0x00, 0xf0, 0x4d, 0xfe, 0x05, 0xb0, 0xf0, 0xbd, 0xf8, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0x1a, 0xf0, +0x5d, 0xfb, 0x07, 0x00, 0x28, 0x7a, 0x03, 0x28, 0x04, 0xd1, 0x28, 0x00, 0x16, 0xf0, 0x0e, 0xfb, +0x00, 0x28, 0x4f, 0xd0, 0x68, 0x7a, 0x02, 0x28, 0x41, 0xd1, 0x28, 0x00, 0x1d, 0xf0, 0xca, 0xfc, +0x03, 0x21, 0x09, 0x02, 0x40, 0x18, 0xc0, 0x6a, 0x00, 0x28, 0x03, 0xd1, 0x00, 0x21, 0x28, 0x00, +0xff, 0xf7, 0x54, 0xff, 0x28, 0x00, 0xfc, 0xf7, 0x61, 0xfb, 0x00, 0x2e, 0x04, 0xd0, 0x0b, 0x20, +0x80, 0x01, 0x28, 0x18, 0x00, 0x69, 0x85, 0x68, 0x28, 0x00, 0xff, 0xf7, 0xcf, 0xfd, 0x04, 0x00, +0xe8, 0x68, 0xc0, 0x04, 0x19, 0xd5, 0x20, 0x7d, 0x00, 0x28, 0x16, 0xd1, 0x21, 0x00, 0x5c, 0x31, +0x28, 0x00, 0xff, 0xf7, 0x22, 0xff, 0x21, 0x00, 0x08, 0x31, 0x28, 0x00, 0xff, 0xf7, 0x1d, 0xff, +0xf9, 0x48, 0x00, 0x78, 0x00, 0x28, 0x08, 0xd0, 0x60, 0x34, 0xa0, 0x7c, 0x00, 0x28, 0x04, 0xd0, +0x00, 0x20, 0xa0, 0x74, 0x28, 0x00, 0xff, 0xf7, 0x1d, 0xff, 0x00, 0x2e, 0x12, 0xd0, 0xea, 0x7a, +0xa9, 0x7a, 0x28, 0x00, 0x05, 0xf0, 0xed, 0xf8, 0x05, 0x00, 0xd5, 0xd1, 0x0a, 0xe0, 0x29, 0x7a, +0x03, 0x29, 0x07, 0xd1, 0x03, 0x28, 0x05, 0xd1, 0x71, 0x20, 0xc0, 0x00, 0x29, 0x18, 0x28, 0x00, +0xff, 0xf7, 0xfb, 0xfe, 0x38, 0x00, 0x1a, 0xf0, 0x05, 0xfb, 0xf8, 0xbd, 0xf3, 0xb5, 0x81, 0xb0, +0x0d, 0x00, 0x01, 0x98, 0x1d, 0xf0, 0x9d, 0xfc, 0x04, 0x00, 0x01, 0x98, 0x1d, 0xf0, 0x72, 0xfc, +0x06, 0x00, 0x0c, 0x34, 0x1a, 0xf0, 0xf2, 0xfa, 0x07, 0x00, 0x03, 0x20, 0x00, 0x02, 0x00, 0x2d, +0x25, 0x75, 0x0a, 0xd1, 0x30, 0x18, 0xc1, 0x6a, 0x00, 0x29, 0x01, 0xd0, 0x49, 0x1e, 0xc1, 0x62, +0x01, 0x98, 0x00, 0x21, 0xff, 0xf7, 0x80, 0xff, 0x1f, 0xe0, 0x01, 0x2d, 0x1d, 0xd1, 0x62, 0x7d, +0x01, 0x23, 0x00, 0x21, 0x1d, 0x00, 0x00, 0x2a, 0x00, 0xd1, 0x65, 0x75, 0x30, 0x18, 0xc2, 0x6a, +0x52, 0x1c, 0xc2, 0x62, 0xd0, 0x48, 0x00, 0x78, 0x00, 0x28, 0x0e, 0xd0, 0x00, 0x22, 0x18, 0x00, +0x13, 0x00, 0x04, 0xf0, 0x27, 0xfc, 0x01, 0x28, 0x07, 0xd1, 0x60, 0x34, 0xa0, 0x7c, 0x00, 0x28, +0x03, 0xd1, 0xa5, 0x74, 0x01, 0x98, 0xff, 0xf7, 0xc5, 0xfe, 0x38, 0x00, 0x1a, 0xf0, 0xc2, 0xfa, +0xfe, 0xbd, 0xf8, 0xb5, 0x0d, 0x00, 0x06, 0x00, 0x08, 0x89, 0x01, 0x23, 0x47, 0x18, 0x48, 0x7b, +0xc0, 0x07, 0x30, 0xd1, 0xc1, 0x48, 0x00, 0x22, 0x01, 0x88, 0xc1, 0x48, 0x1d, 0xf0, 0x09, 0xf8, +0x04, 0x00, 0x2a, 0xd1, 0xbd, 0x48, 0x00, 0x22, 0x01, 0x88, 0xbd, 0x48, 0x03, 0x23, 0x1d, 0xf0, +0x00, 0xf8, 0x04, 0x00, 0x21, 0xd1, 0xb8, 0x49, 0xc8, 0x68, 0x40, 0x1c, 0xc8, 0x60, 0x70, 0x7a, +0x02, 0x28, 0x18, 0xd1, 0xf8, 0x6d, 0x81, 0x79, 0xc9, 0x07, 0x14, 0xd1, 0x80, 0x78, 0x01, 0x07, +0x89, 0x0f, 0x10, 0xd1, 0x00, 0x09, 0x0c, 0x28, 0x0d, 0xd1, 0x30, 0x00, 0x1d, 0xf0, 0x31, 0xfc, +0x0b, 0x21, 0x89, 0x01, 0x71, 0x18, 0x09, 0x69, 0x0c, 0x30, 0x40, 0x31, 0x89, 0x7b, 0x01, 0x60, +0x02, 0x21, 0x40, 0x30, 0x01, 0x75, 0x00, 0x20, 0xf8, 0xbd, 0x28, 0x7b, 0x20, 0x73, 0x66, 0x61, +0xa8, 0x88, 0x1c, 0x26, 0xa0, 0x80, 0xa5, 0x19, 0x70, 0x22, 0x39, 0x00, 0x28, 0x00, 0x26, 0x81, +0x15, 0xf3, 0x4e, 0xec, 0xac, 0x20, 0x20, 0x81, 0x20, 0x18, 0xe8, 0x65, 0xf9, 0x6d, 0x0a, 0x88, +0x20, 0x32, 0x15, 0xf3, 0xdc, 0xeb, 0x20, 0x00, 0x26, 0x81, 0xf8, 0xbd, 0xf3, 0xb5, 0x85, 0xb0, +0x01, 0x20, 0x00, 0x24, 0x02, 0x90, 0x05, 0x98, 0x01, 0x94, 0x1d, 0xf0, 0x02, 0xfc, 0x05, 0x98, +0xff, 0xf7, 0xf4, 0xfc, 0x07, 0x00, 0x05, 0x00, 0x5c, 0x37, 0x1a, 0xf0, 0x57, 0xfa, 0x03, 0x90, +0x05, 0x98, 0x00, 0x7a, 0x03, 0x28, 0x04, 0xd1, 0x05, 0x98, 0x16, 0xf0, 0x07, 0xfa, 0x00, 0x28, +0x75, 0xd0, 0x60, 0x35, 0x04, 0x95, 0xe8, 0x7b, 0x40, 0x06, 0x81, 0x0f, 0x12, 0xd0, 0x39, 0x68, +0x80, 0x0f, 0x40, 0x00, 0x88, 0x42, 0x00, 0xd3, 0x08, 0x00, 0x04, 0x99, 0x89, 0x7b, 0x40, 0x1a, +0x05, 0x06, 0x2d, 0x0e, 0x67, 0xd0, 0x78, 0x68, 0x80, 0x68, 0x01, 0x89, 0x40, 0x18, 0x60, 0x30, +0x06, 0x7a, 0x1b, 0xe0, 0x38, 0x68, 0xf3, 0xe7, 0x78, 0x68, 0x00, 0x28, 0x13, 0xd0, 0x80, 0x68, +0x64, 0x1c, 0x01, 0x89, 0x24, 0x06, 0x40, 0x18, 0x32, 0x21, 0x60, 0x30, 0x41, 0x72, 0x00, 0x7a, +0x24, 0x0e, 0xb0, 0x42, 0x01, 0xd0, 0x00, 0x21, 0x02, 0x91, 0x06, 0x00, 0x05, 0x98, 0x00, 0x22, +0x39, 0x00, 0xff, 0xf7, 0x62, 0xfd, 0x6d, 0x1e, 0x2d, 0x06, 0x2d, 0x0e, 0x01, 0x2d, 0xe3, 0xd8, +0x78, 0x68, 0x80, 0x68, 0x01, 0x89, 0x40, 0x18, 0x02, 0x99, 0x01, 0x29, 0x22, 0xd1, 0x01, 0x00, +0x60, 0x31, 0x0a, 0x7a, 0xb2, 0x42, 0x1d, 0xd1, 0xc2, 0x6d, 0x64, 0x1c, 0x92, 0x78, 0x24, 0x06, +0x24, 0x0e, 0x12, 0x07, 0x92, 0x0f, 0x06, 0xd1, 0x01, 0x21, 0x01, 0x91, 0x00, 0x78, 0x40, 0x07, +0x40, 0x0f, 0x06, 0x90, 0x09, 0xe0, 0x31, 0x22, 0x4a, 0x72, 0x02, 0x78, 0xe9, 0x9d, 0x79, 0x2d, +0x01, 0x00, 0x00, 0x00, 0x8c, 0x73, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xac, 0x79, 0xf3, 0xb1, +0x01, 0x00, 0x14, 0x31, 0x10, 0x23, 0x1a, 0x43, 0x02, 0x70, 0x00, 0x88, 0x08, 0x84, 0x05, 0x98, +0x00, 0x22, 0x39, 0x00, 0xff, 0xf7, 0x33, 0xfd, 0x04, 0x98, 0x44, 0x73, 0x04, 0x98, 0xc0, 0x7b, +0x40, 0x06, 0x80, 0x0f, 0x04, 0xd0, 0x04, 0x98, 0x04, 0x99, 0x80, 0x7b, 0x00, 0x19, 0x88, 0x73, +0x01, 0x98, 0x01, 0x28, 0x05, 0xd1, 0x39, 0x68, 0x06, 0x9a, 0x05, 0x98, 0x33, 0x00, 0x16, 0xf0, +0xb6, 0xfe, 0x03, 0x98, 0x1a, 0xf0, 0xd8, 0xf9, 0xc7, 0xe5, 0x06, 0x98, 0x00, 0x06, 0x00, 0x0e, +0x16, 0xf3, 0x4c, 0xfd, 0x16, 0xf3, 0x5b, 0xfd, 0x06, 0x00, 0xec, 0xe7, 0xfe, 0xb5, 0x04, 0x00, +0x04, 0xf0, 0x1d, 0xfb, 0x07, 0x00, 0x60, 0x69, 0x02, 0x90, 0x20, 0x89, 0x00, 0x25, 0x06, 0x19, +0x02, 0x98, 0x1d, 0xf0, 0x60, 0xfb, 0x0c, 0x30, 0x01, 0x90, 0x01, 0x20, 0x01, 0x2f, 0x00, 0x90, +0x10, 0xd0, 0x00, 0x99, 0x20, 0x00, 0x04, 0xf0, 0x3a, 0xfb, 0x01, 0x28, 0x0a, 0xd1, 0x41, 0x49, +0x20, 0x69, 0x88, 0x42, 0x01, 0xd1, 0x03, 0x2f, 0x04, 0xd0, 0x3c, 0x49, 0x88, 0x68, 0x40, 0x1c, +0x01, 0x25, 0x88, 0x60, 0x39, 0x48, 0x00, 0x78, 0x00, 0x28, 0x21, 0xd0, 0x37, 0x4f, 0x01, 0x24, +0x7f, 0x1d, 0x38, 0x78, 0x00, 0x28, 0x0e, 0xd1, 0x00, 0x98, 0x04, 0xf0, 0xd4, 0xfa, 0xb9, 0x1e, +0x09, 0x78, 0x88, 0x42, 0x04, 0xd3, 0x01, 0x20, 0x3c, 0x70, 0xff, 0xf7, 0xc1, 0xfb, 0x0f, 0xe0, +0x38, 0x78, 0x00, 0x28, 0x0c, 0xd0, 0xf0, 0x6d, 0x80, 0x79, 0xc0, 0x07, 0x08, 0xd1, 0x01, 0x98, +0x60, 0x30, 0x81, 0x7c, 0x00, 0x29, 0x03, 0xd1, 0x84, 0x74, 0x02, 0x98, 0xff, 0xf7, 0x84, 0xfd, +0x28, 0x00, 0xfe, 0xbd, 0x42, 0x69, 0x53, 0x68, 0x00, 0x2b, 0x03, 0xd1, 0x50, 0x60, 0x41, 0x69, +0x88, 0x60, 0x70, 0x47, 0x00, 0x29, 0x07, 0xd1, 0x18, 0x61, 0x41, 0x69, 0x4a, 0x68, 0xc2, 0x60, +0x00, 0x22, 0x02, 0x61, 0x48, 0x60, 0x70, 0x47, 0xca, 0x68, 0x00, 0x2a, 0x01, 0xd0, 0x10, 0x61, +0x01, 0xe0, 0x4a, 0x69, 0x90, 0x60, 0xca, 0x68, 0xc2, 0x60, 0x01, 0x61, 0xc8, 0x60, 0x70, 0x47, +0x01, 0x00, 0x49, 0x69, 0x00, 0x20, 0x49, 0x68, 0x00, 0x29, 0x0b, 0xd0, 0x03, 0xe0, 0x08, 0x00, +0xc9, 0x68, 0x00, 0x29, 0x06, 0xd0, 0x8a, 0x68, 0x13, 0x89, 0xd2, 0x18, 0xd2, 0x6d, 0xd2, 0x78, +0x12, 0x07, 0xf4, 0xd4, 0x70, 0x47, 0x02, 0x00, 0x00, 0x20, 0x00, 0x2a, 0x08, 0xd0, 0x01, 0x2a, +0x06, 0xd0, 0x02, 0x2a, 0x01, 0xd0, 0x03, 0x2a, 0x07, 0xd1, 0x8a, 0x42, 0x05, 0xd3, 0x03, 0xe0, +0x8a, 0x42, 0x01, 0xd0, 0x01, 0x29, 0x00, 0xd1, 0x01, 0x20, 0x70, 0x47, 0x70, 0xb5, 0x0e, 0x00, +0x40, 0x69, 0x00, 0x25, 0x44, 0x68, 0x00, 0x2c, 0x16, 0xd0, 0x09, 0xe0, 0x08, 0xee, 0x00, 0xc0, +0x56, 0xf0, 0x00, 0xc0, 0x30, 0x00, 0x00, 0x04, 0x25, 0x00, 0xe4, 0x68, 0x00, 0x2c, 0x0b, 0xd0, +0xa0, 0x68, 0x01, 0x89, 0x40, 0x5c, 0x40, 0x07, 0x40, 0x0f, 0x16, 0xf3, 0x9f, 0xfc, 0x31, 0x00, +0xff, 0xf7, 0xd1, 0xff, 0x01, 0x28, 0xef, 0xd0, 0x28, 0x00, 0x70, 0xbd, 0x03, 0xb5, 0x08, 0x20, +0xc8, 0x40, 0x6b, 0x46, 0x19, 0x78, 0x08, 0x40, 0x00, 0xd0, 0x01, 0x20, 0x0c, 0xbd, 0x70, 0xb5, +0x00, 0x24, 0x1a, 0xf0, 0x0d, 0xf9, 0x05, 0x00, 0x65, 0x48, 0x04, 0xf3, 0x63, 0xf9, 0x00, 0x28, +0x05, 0xd0, 0x04, 0x00, 0x01, 0x00, 0x62, 0x48, 0x0c, 0x30, 0x04, 0xf3, 0x85, 0xf9, 0x28, 0x00, +0x1a, 0xf0, 0x02, 0xf9, 0x20, 0x00, 0x70, 0xbd, 0xf7, 0xb5, 0x84, 0xb0, 0x05, 0x00, 0x0f, 0x00, +0xff, 0xf7, 0xe5, 0xff, 0x04, 0x00, 0x01, 0xd1, 0x01, 0x20, 0xe6, 0xe4, 0x1a, 0xf0, 0xf0, 0xf8, +0x00, 0x26, 0x02, 0x90, 0xe6, 0x60, 0xa7, 0x60, 0x26, 0x61, 0x38, 0x89, 0xc7, 0x19, 0x28, 0x7a, +0x03, 0x28, 0x0a, 0xd1, 0x68, 0x7a, 0x03, 0x28, 0x07, 0xd1, 0x71, 0x20, 0xc0, 0x00, 0x28, 0x18, +0x60, 0x61, 0x80, 0x68, 0x00, 0x21, 0x01, 0x91, 0x3f, 0xe0, 0xf8, 0x6d, 0x80, 0x79, 0xc0, 0x07, +0x0b, 0xd0, 0x28, 0x00, 0x1d, 0xf0, 0x50, 0xfa, 0x33, 0x21, 0x09, 0x01, 0x40, 0x18, 0x00, 0x21, +0x60, 0x61, 0x80, 0x68, 0x01, 0x26, 0x01, 0x91, 0x2f, 0xe0, 0x28, 0x00, 0xff, 0xf7, 0x60, 0xfb, +0x03, 0x90, 0xff, 0x20, 0x51, 0x30, 0x40, 0x5b, 0x01, 0x90, 0x38, 0x78, 0x40, 0x07, 0x40, 0x0f, +0x16, 0xf3, 0x3c, 0xfc, 0x06, 0x00, 0x0b, 0x20, 0x80, 0x01, 0x28, 0x18, 0x00, 0x68, 0x01, 0x28, +0x16, 0xd1, 0x03, 0x9f, 0x31, 0x00, 0x60, 0x37, 0x78, 0x7c, 0x00, 0x90, 0xff, 0xf7, 0x96, 0xff, +0x00, 0x28, 0x0d, 0xd0, 0x03, 0x98, 0x31, 0x00, 0x5c, 0x30, 0x60, 0x61, 0x20, 0x00, 0xff, 0xf7, +0x6d, 0xff, 0x79, 0x7c, 0x01, 0x26, 0xc9, 0x43, 0x09, 0x07, 0x06, 0xd0, 0x00, 0x26, 0x04, 0xe0, +0x03, 0x98, 0x01, 0x26, 0x08, 0x30, 0x60, 0x61, 0x80, 0x68, 0x06, 0x99, 0x00, 0x29, 0x02, 0xd0, +0x20, 0x00, 0xff, 0xf7, 0x35, 0xff, 0x01, 0x00, 0x20, 0x00, 0xff, 0xf7, 0x13, 0xff, 0x60, 0x69, +0x01, 0x68, 0x49, 0x1c, 0x01, 0x2e, 0x01, 0x60, 0x04, 0xd1, 0x01, 0x99, 0x01, 0x22, 0x28, 0x00, +0x1f, 0xf0, 0x5e, 0xed, 0x02, 0x98, 0x1a, 0xf0, 0x87, 0xf8, 0x00, 0x20, 0x75, 0xe4, 0x00, 0x28, +0x10, 0xb5, 0x07, 0xd0, 0x1d, 0xf0, 0x1f, 0xfa, 0x00, 0x28, 0x03, 0xd0, 0x0c, 0x30, 0x00, 0x7d, +0x01, 0x28, 0x00, 0xd0, 0x00, 0x20, 0x10, 0xbd, 0xfe, 0xb5, 0x05, 0x00, 0x1d, 0xf0, 0x13, 0xfa, +0x04, 0x00, 0x1a, 0xf0, 0x6d, 0xf8, 0x06, 0x00, 0x28, 0x7a, 0x03, 0x28, 0x09, 0xd1, 0x28, 0x00, +0x16, 0xf0, 0x1e, 0xf8, 0x00, 0x28, 0x04, 0xd1, 0x30, 0x00, 0x1a, 0xf0, 0x65, 0xf8, 0x01, 0x20, +0xfe, 0xbd, 0x60, 0x69, 0x00, 0x28, 0x06, 0xd0, 0x21, 0x00, 0x00, 0x22, 0x14, 0x31, 0x28, 0x00, +0xff, 0xf7, 0x9d, 0xfb, 0x0f, 0xe0, 0x00, 0x20, 0x6b, 0x46, 0x02, 0x90, 0x59, 0x7a, 0x02, 0x22, +0x11, 0x43, 0x59, 0x72, 0x01, 0x22, 0x00, 0x92, 0x02, 0x00, 0x01, 0x90, 0x02, 0x99, 0x28, 0x00, +0x00, 0x23, 0xfa, 0xf7, 0x11, 0xfa, 0x30, 0x00, 0x1a, 0xf0, 0x46, 0xf8, 0x00, 0x20, 0xfe, 0xbd, +0xec, 0x2a, 0x01, 0xc0, 0xff, 0x48, 0x70, 0x47, 0x00, 0x7a, 0x02, 0x28, 0x03, 0xd0, 0x03, 0x28, +0x04, 0xd1, 0xfd, 0x48, 0x70, 0x47, 0xfc, 0x48, 0x1c, 0x38, 0x70, 0x47, 0x00, 0x20, 0x70, 0x47, +0xfe, 0xb5, 0x05, 0x00, 0x00, 0x20, 0x0c, 0x00, 0x02, 0x90, 0x1d, 0xf0, 0xb5, 0xf9, 0x06, 0x00, +0x20, 0x68, 0x2f, 0x00, 0x2c, 0x00, 0x28, 0x37, 0xc0, 0x34, 0x10, 0x28, 0x75, 0xd0, 0x25, 0xdc, +0x29, 0x00, 0xe8, 0x31, 0x0d, 0x28, 0x6c, 0xd0, 0x06, 0xdc, 0x80, 0x1c, 0x45, 0xd0, 0x01, 0x28, +0x43, 0xd1, 0x29, 0x00, 0x10, 0x31, 0x5e, 0xe0, 0x2e, 0x00, 0x80, 0x36, 0x0e, 0x28, 0x47, 0xd0, +0x0f, 0x28, 0xf5, 0xd1, 0x01, 0x20, 0x60, 0x62, 0x28, 0x68, 0xb8, 0x42, 0xf0, 0xd1, 0xa0, 0x7f, +0x00, 0x28, 0xed, 0xd1, 0x28, 0x00, 0x74, 0x30, 0x00, 0xf3, 0x38, 0xf8, 0x70, 0x6a, 0x00, 0x28, +0x01, 0xd1, 0x01, 0x20, 0x30, 0x62, 0x29, 0x00, 0x40, 0x31, 0x44, 0xe0, 0x10, 0x50, 0x30, 0x8f, +0x01, 0x00, 0x00, 0x00, 0x88, 0x77, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xff, 0xa3, 0x20, 0xdd, +0x11, 0x28, 0x4c, 0xd0, 0x12, 0x28, 0x23, 0xd0, 0x21, 0x28, 0x6f, 0xd0, 0x22, 0x28, 0x6d, 0xd1, +0xa0, 0x7e, 0x02, 0x28, 0x01, 0xd0, 0x01, 0x28, 0x68, 0xd1, 0xe0, 0x7e, 0x41, 0x1c, 0x02, 0x28, +0xe1, 0x76, 0x18, 0xd2, 0x00, 0x2e, 0x61, 0xd0, 0xf0, 0x68, 0xc0, 0x04, 0x5e, 0xd5, 0x30, 0x00, +0x16, 0xf0, 0x66, 0xfc, 0x13, 0x22, 0x00, 0x21, 0x01, 0x92, 0x00, 0x91, 0xa1, 0x7e, 0x01, 0x29, +0x00, 0xd0, 0x00, 0x21, 0x02, 0x00, 0x30, 0x00, 0x00, 0x23, 0xfa, 0xf7, 0xa4, 0xf8, 0x4d, 0xe0, +0x01, 0x20, 0x20, 0x77, 0x4a, 0xe0, 0xca, 0x48, 0x07, 0x22, 0x00, 0x68, 0x40, 0x21, 0x1a, 0xf0, +0x0f, 0xfe, 0x43, 0xe0, 0x08, 0x00, 0xff, 0xf2, 0xfb, 0xff, 0x28, 0x68, 0xb8, 0x42, 0x3d, 0xd1, +0x01, 0x20, 0xc4, 0x49, 0x20, 0x62, 0x00, 0x20, 0x08, 0x60, 0xf0, 0x6a, 0x01, 0x28, 0x35, 0xd1, +0xb0, 0x6a, 0x01, 0x28, 0x32, 0xd1, 0x29, 0x00, 0x34, 0x31, 0x28, 0x00, 0x03, 0xf3, 0x89, 0xff, +0x2c, 0xe0, 0x04, 0xe0, 0xff, 0xe7, 0x08, 0x00, 0xff, 0xf2, 0xe2, 0xff, 0x26, 0xe0, 0x28, 0x68, +0xb8, 0x42, 0x01, 0xd1, 0x01, 0x20, 0x02, 0x90, 0x60, 0x7f, 0x02, 0x28, 0x1e, 0xd2, 0x60, 0x6a, +0x00, 0x28, 0x1b, 0xd1, 0xa0, 0x7f, 0x00, 0x28, 0x18, 0xd1, 0xfa, 0xf7, 0x8c, 0xfa, 0x00, 0x28, +0x14, 0xd0, 0x00, 0x2e, 0x12, 0xd0, 0xf0, 0x68, 0xc0, 0x04, 0x0f, 0xd5, 0x30, 0x00, 0x16, 0xf0, +0x17, 0xfc, 0x15, 0x22, 0x00, 0x21, 0x01, 0x92, 0x02, 0x00, 0x00, 0x91, 0x02, 0x99, 0x30, 0x00, +0x00, 0x23, 0xfa, 0xf7, 0x58, 0xf8, 0x60, 0x7f, 0x40, 0x1c, 0x60, 0x77, 0x00, 0x20, 0xfe, 0xbd, +0x70, 0xb5, 0x04, 0x00, 0x08, 0x00, 0x09, 0x68, 0x22, 0x00, 0x23, 0x00, 0x10, 0x32, 0x80, 0x33, +0x23, 0x29, 0x4a, 0xd0, 0x15, 0xdc, 0x89, 0x1c, 0x1f, 0xd0, 0x25, 0x00, 0xc0, 0x35, 0x01, 0x29, +0x1d, 0xd0, 0x03, 0x29, 0x34, 0xd0, 0x14, 0x29, 0x18, 0xd1, 0x01, 0x20, 0xa8, 0x77, 0x00, 0x20, +0x1d, 0xf0, 0xf4, 0xf8, 0x00, 0x28, 0x10, 0xd0, 0x01, 0x21, 0x49, 0x02, 0x1f, 0xf0, 0x72, 0xec, +0x0b, 0xe0, 0x24, 0x29, 0x2a, 0xd0, 0x25, 0x29, 0x03, 0xd0, 0x26, 0x29, 0x01, 0xd0, 0x27, 0x29, +0x04, 0xd1, 0x91, 0x48, 0x00, 0x22, 0x03, 0xf3, 0x0d, 0xff, 0x00, 0x20, 0x70, 0xbd, 0xf9, 0xf7, +0x29, 0xfe, 0x01, 0x20, 0x03, 0xf0, 0xc9, 0xfa, 0x01, 0x20, 0x03, 0xf0, 0xc9, 0xfa, 0x89, 0x48, +0x00, 0x24, 0x04, 0x60, 0x20, 0x00, 0xfa, 0xf7, 0xee, 0xf9, 0x28, 0x7f, 0x00, 0x28, 0x03, 0xd0, +0x12, 0x20, 0x03, 0xf0, 0x00, 0xf8, 0x2c, 0x77, 0x00, 0x20, 0x03, 0xf0, 0x1b, 0xfa, 0xe4, 0xe7, +0x20, 0x6f, 0x1f, 0xf0, 0x4c, 0xec, 0x21, 0x00, 0x1c, 0x31, 0x02, 0xe0, 0x21, 0x00, 0x64, 0x31, +0x9a, 0x63, 0x20, 0x00, 0x03, 0xf3, 0x05, 0xff, 0xd7, 0xe7, 0x21, 0x00, 0x58, 0x31, 0x9a, 0x63, +0xf7, 0xe7, 0x10, 0xb5, 0x08, 0x6f, 0xff, 0xf7, 0xe9, 0xfe, 0x00, 0x20, 0xc0, 0x31, 0x08, 0x61, +0x13, 0x20, 0x02, 0xf0, 0xe0, 0xff, 0x10, 0xbd, 0xf8, 0xb5, 0x6f, 0x4d, 0xff, 0xf7, 0xde, 0xfe, +0x87, 0x69, 0x19, 0xf0, 0x17, 0xff, 0x2c, 0x00, 0x06, 0x00, 0xc0, 0x34, 0x20, 0x69, 0x00, 0x28, +0x03, 0xd0, 0x04, 0xf3, 0x76, 0xf9, 0x00, 0x20, 0x20, 0x61, 0x00, 0x22, 0x2b, 0x00, 0x00, 0x92, +0x6a, 0x48, 0xd0, 0x33, 0x3a, 0x00, 0x29, 0x00, 0x04, 0xf3, 0x08, 0xf9, 0x30, 0x00, 0x19, 0xf0, +0x05, 0xff, 0xf8, 0xbd, 0xf0, 0xb5, 0x08, 0x00, 0xc0, 0x30, 0x87, 0xb0, 0x06, 0x90, 0x08, 0x6f, +0x0e, 0x00, 0x80, 0x36, 0x0c, 0x00, 0x05, 0x90, 0xff, 0xf7, 0xb8, 0xfe, 0x05, 0x00, 0x0a, 0xf3, +0x2d, 0xf9, 0x04, 0x90, 0x32, 0x6c, 0x73, 0x6c, 0x0f, 0x00, 0x12, 0x1a, 0x8b, 0x41, 0x06, 0xd2, +0x32, 0x6c, 0x04, 0x98, 0x73, 0x6c, 0x39, 0x00, 0x80, 0x1a, 0x99, 0x41, 0x06, 0xe0, 0x30, 0x6c, +0x71, 0x6c, 0x04, 0x9a, 0xc0, 0x43, 0xc9, 0x43, 0x80, 0x18, 0x79, 0x41, 0x02, 0x90, 0x28, 0x69, +0x02, 0x9a, 0x0e, 0x00, 0x00, 0x27, 0x33, 0x00, 0x12, 0x1a, 0xbb, 0x41, 0x12, 0xd2, 0x28, 0x69, +0x02, 0x9a, 0x39, 0x00, 0x80, 0x1a, 0x00, 0x22, 0xb1, 0x41, 0x00, 0x92, 0x23, 0x00, 0x02, 0x00, +0x4b, 0x48, 0xd4, 0x33, 0x21, 0x00, 0x04, 0xf3, 0xc9, 0xf8, 0x06, 0x99, 0x01, 0x20, 0x08, 0x76, +0x07, 0xb0, 0xf0, 0xbd, 0x06, 0x98, 0x47, 0x61, 0x07, 0x76, 0x28, 0x88, 0x01, 0x28, 0xf7, 0xd1, +0x05, 0x98, 0xff, 0xf7, 0x99, 0xff, 0xf3, 0xe7, 0xfe, 0xb5, 0x3b, 0x4e, 0xff, 0xf7, 0x76, 0xfe, +0x37, 0x00, 0x04, 0x00, 0x80, 0x37, 0x38, 0x6b, 0x01, 0x28, 0x26, 0xd0, 0x20, 0x88, 0x35, 0x00, +0xc0, 0x35, 0x01, 0x28, 0x06, 0xd1, 0x28, 0x69, 0x00, 0x28, 0x03, 0xd0, 0x04, 0xf3, 0x09, 0xf9, +0x00, 0x21, 0x29, 0x61, 0x19, 0xf0, 0x9e, 0xfe, 0x01, 0x90, 0x0a, 0xf3, 0xd7, 0xf8, 0x79, 0x64, +0x38, 0x64, 0x68, 0x69, 0x00, 0x28, 0x08, 0xd1, 0x00, 0x22, 0x33, 0x00, 0x00, 0x92, 0x30, 0x48, +0x22, 0x69, 0xd4, 0x33, 0x31, 0x00, 0x04, 0xf3, 0x91, 0xf8, 0x01, 0x20, 0x28, 0x76, 0x01, 0x98, +0x19, 0xf0, 0x8c, 0xfe, 0x08, 0x20, 0x02, 0xf0, 0x46, 0xff, 0xfe, 0xbd, 0x70, 0xb5, 0x04, 0x00, +0x74, 0x30, 0xff, 0xf2, 0xb5, 0xfe, 0x20, 0x00, 0xe8, 0x30, 0xff, 0xf2, 0xb1, 0xfe, 0xc0, 0x34, +0x20, 0x69, 0x04, 0xf3, 0xde, 0xf8, 0x00, 0x25, 0x25, 0x61, 0x60, 0x69, 0x04, 0xf3, 0xd9, 0xf8, +0x65, 0x61, 0x70, 0xbd, 0xf3, 0xb5, 0x87, 0xb0, 0x06, 0x00, 0x00, 0x6f, 0x03, 0x90, 0xff, 0xf7, +0x2d, 0xfe, 0x02, 0x90, 0x00, 0x20, 0x1c, 0xf0, 0xf1, 0xff, 0x07, 0x00, 0x08, 0x98, 0x31, 0x00, +0x03, 0x68, 0x30, 0x00, 0x28, 0x31, 0x40, 0x30, 0x05, 0x91, 0x35, 0x00, 0xc0, 0x31, 0x34, 0x00, +0x06, 0x90, 0x34, 0x30, 0x80, 0x35, 0xc0, 0x34, 0x09, 0x2b, 0x04, 0x91, 0x7e, 0xd0, 0x09, 0xdc, +0x9b, 0x1c, 0x15, 0xf3, 0xdc, 0xe9, 0x0b, 0x3a, 0x4b, 0xa1, 0xa1, 0x67, 0xcd, 0xd8, 0xa5, 0xa8, +0xbb, 0xf2, 0xa1, 0x00, 0x31, 0x00, 0x1c, 0x31, 0x23, 0x2b, 0x70, 0xd0, 0x30, 0xdc, 0x0a, 0x2b, +0x6e, 0xd0, 0x0b, 0x2b, 0x6d, 0xd0, 0x0d, 0xe0, 0x20, 0x42, 0x00, 0x04, 0x6c, 0x43, 0x00, 0x04, +0x6c, 0xf4, 0x00, 0xc0, 0x88, 0xef, 0x00, 0xc0, 0x88, 0x43, 0x00, 0x04, 0x2b, 0x79, 0x00, 0x00, +0x7d, 0x79, 0x00, 0x00, 0x12, 0x2b, 0x7e, 0xd0, 0x1c, 0x2b, 0x7d, 0xd1, 0x60, 0x69, 0x04, 0xf3, +0x90, 0xf8, 0x00, 0x27, 0x67, 0x61, 0x27, 0x76, 0x20, 0x69, 0x04, 0xf3, 0x8a, 0xf8, 0x27, 0x61, +0xe8, 0x6a, 0x01, 0x28, 0x07, 0xd1, 0x31, 0x68, 0x06, 0x98, 0x81, 0x42, 0x03, 0xd1, 0x05, 0x99, +0x30, 0x00, 0x03, 0xf3, 0xee, 0xfd, 0x01, 0x20, 0x28, 0x63, 0x00, 0x20, 0x09, 0xb0, 0xf0, 0xbd, +0x24, 0x2b, 0x77, 0xd0, 0x25, 0x2b, 0x03, 0xd0, 0x26, 0x2b, 0x01, 0xd0, 0x27, 0x2b, 0xdc, 0xd1, +0x00, 0x22, 0x19, 0x00, 0xff, 0x48, 0x03, 0xf3, 0xbd, 0xfd, 0xee, 0xe7, 0x00, 0x20, 0x03, 0xf0, +0x7f, 0xf9, 0x00, 0x20, 0x03, 0xf0, 0x79, 0xf9, 0xfb, 0x49, 0x01, 0x20, 0x4d, 0xbe, 0xde, 0x2a, +0x01, 0x00, 0x00, 0x00, 0x84, 0x7b, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x0b, 0xcc, 0x55, 0x69, +0x00, 0x27, 0x08, 0x60, 0xa7, 0x77, 0x20, 0x7f, 0x00, 0x28, 0x03, 0xd0, 0x12, 0x20, 0x02, 0xf0, +0xb4, 0xfe, 0x27, 0x77, 0x01, 0x20, 0x28, 0x62, 0xf5, 0x49, 0xff, 0x20, 0xf1, 0x30, 0x48, 0x63, +0x03, 0x98, 0xff, 0xf7, 0x33, 0xff, 0xcc, 0xe0, 0xfc, 0xf7, 0x94, 0xfe, 0xfd, 0xf7, 0x32, 0xf9, +0x68, 0x6a, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x28, 0x62, 0x30, 0x00, 0x00, 0xf0, 0x86, 0xfd, +0x30, 0x00, 0xff, 0xf7, 0x55, 0xff, 0x03, 0x98, 0x1f, 0xf0, 0xea, 0xea, 0x00, 0x2f, 0x03, 0xe0, +0x76, 0xe0, 0x70, 0xe0, 0x85, 0xe0, 0x95, 0xe0, 0x1b, 0xd0, 0xf8, 0x68, 0xc0, 0x04, 0x18, 0xd5, +0x38, 0x00, 0x16, 0xf0, 0x4f, 0xfa, 0x15, 0x22, 0x00, 0x21, 0x01, 0x92, 0x02, 0x00, 0x38, 0x00, +0x0b, 0x00, 0x00, 0x91, 0xf9, 0xf7, 0x91, 0xfe, 0x00, 0x20, 0x60, 0x62, 0x04, 0x98, 0xff, 0xf2, +0xf1, 0xfd, 0x04, 0x98, 0x00, 0x22, 0x64, 0x21, 0xff, 0xf2, 0x9e, 0xfd, 0x04, 0x98, 0xff, 0xf2, +0x8b, 0xfd, 0x31, 0x00, 0x10, 0x31, 0x30, 0x00, 0x01, 0xe0, 0x3c, 0xe0, 0x93, 0xe0, 0x03, 0xf3, +0x82, 0xfd, 0x94, 0xe7, 0x01, 0x20, 0x68, 0x62, 0x8b, 0xe0, 0x02, 0x98, 0x80, 0x78, 0x00, 0x28, +0x0b, 0xd0, 0x02, 0x98, 0x00, 0x88, 0x01, 0x28, 0x89, 0xd1, 0x20, 0x7e, 0x00, 0x28, 0x86, 0xd1, +0x03, 0x98, 0xff, 0xf7, 0x7b, 0xfe, 0x82, 0xe7, 0x31, 0xe0, 0x00, 0x20, 0x60, 0x76, 0x7e, 0xe7, +0x01, 0x20, 0x00, 0x2f, 0x60, 0x76, 0x0d, 0xd0, 0xb1, 0x20, 0x03, 0x9b, 0x80, 0x00, 0x39, 0x18, +0x06, 0x22, 0x18, 0x18, 0x19, 0xf0, 0xac, 0xfa, 0x00, 0x28, 0x03, 0xd1, 0xbf, 0x49, 0x08, 0x68, +0x40, 0x1c, 0x08, 0x60, 0x02, 0x98, 0x00, 0x88, 0x01, 0x28, 0x62, 0xd1, 0x20, 0x7e, 0x00, 0x28, +0x5f, 0xd1, 0x03, 0x98, 0xff, 0xf7, 0x5a, 0xfe, 0x5b, 0xe0, 0x01, 0x20, 0x28, 0x62, 0x30, 0x00, +0x00, 0xf0, 0x1c, 0xfd, 0x55, 0xe0, 0x01, 0x20, 0xa0, 0x77, 0x00, 0x20, 0x1c, 0xf0, 0xf8, 0xfe, +0x00, 0x28, 0xbe, 0xd0, 0x01, 0x21, 0x49, 0x02, 0x1f, 0xf0, 0x76, 0xea, 0x4f, 0xe7, 0xa9, 0x63, +0x31, 0x00, 0x64, 0x31, 0xaf, 0xe7, 0xa9, 0x63, 0x31, 0x00, 0x58, 0x31, 0xab, 0xe7, 0x12, 0xe0, +0x01, 0x21, 0xe9, 0x62, 0xff, 0xf2, 0x8e, 0xfd, 0xa8, 0x6a, 0x01, 0x28, 0xa9, 0xd1, 0x31, 0x68, +0x05, 0x98, 0x81, 0x42, 0xa5, 0xd1, 0x20, 0x6a, 0x01, 0x28, 0xa2, 0xd1, 0x31, 0x00, 0x34, 0x31, +0x99, 0xe7, 0x00, 0x21, 0x29, 0x63, 0xe9, 0x6a, 0x00, 0x29, 0x07, 0xd1, 0x08, 0x99, 0x09, 0x68, +0x08, 0x29, 0x01, 0xd1, 0xff, 0xf2, 0x76, 0xfd, 0x01, 0x20, 0x28, 0x62, 0x01, 0x20, 0x03, 0xf0, +0x1b, 0xf8, 0x1e, 0xe0, 0x00, 0x2f, 0x1c, 0xd0, 0xf8, 0x68, 0xc0, 0x04, 0x19, 0xd5, 0x03, 0x98, +0xff, 0xf7, 0x7c, 0xfe, 0x38, 0x00, 0x16, 0xf0, 0xb5, 0xf9, 0x15, 0x22, 0x00, 0x21, 0x01, 0x92, +0x02, 0x00, 0x38, 0x00, 0x0b, 0x00, 0x00, 0x91, 0xf9, 0xf7, 0xf7, 0xfd, 0x04, 0x98, 0xff, 0xf2, +0x59, 0xfd, 0x04, 0x98, 0x00, 0x22, 0x64, 0x21, 0xff, 0xf2, 0x06, 0xfd, 0x04, 0x98, 0xff, 0xf2, +0xf3, 0xfc, 0x06, 0x99, 0x67, 0xe7, 0x08, 0x98, 0x02, 0xe7, 0xf7, 0xb5, 0x86, 0xb0, 0x06, 0x98, +0xff, 0xf7, 0xd6, 0xfc, 0x05, 0x90, 0x06, 0x98, 0x1c, 0xf0, 0x8a, 0xfe, 0xff, 0x21, 0x04, 0x90, +0x06, 0x98, 0x00, 0x24, 0x2d, 0x31, 0xfe, 0xf7, 0x3e, 0xfa, 0x05, 0x00, 0x59, 0xd0, 0x28, 0x89, +0x70, 0x21, 0x46, 0x19, 0x1c, 0x20, 0x2c, 0x18, 0x28, 0x81, 0x20, 0x00, 0x14, 0xf3, 0x08, 0xef, +0x06, 0x98, 0x0b, 0xf0, 0x32, 0xff, 0xa0, 0x70, 0xe0, 0x68, 0xa1, 0x78, 0x40, 0x09, 0x40, 0x01, +0x08, 0x43, 0x10, 0x21, 0x08, 0x43, 0xe0, 0x60, 0x15, 0x20, 0x00, 0x02, 0x03, 0x90, 0x27, 0x00, +0xe6, 0x65, 0x08, 0x98, 0x60, 0x37, 0x78, 0x72, 0x06, 0x99, 0xb1, 0x20, 0x80, 0x00, 0x09, 0x18, +0x00, 0x91, 0x01, 0x91, 0x6f, 0x4b, 0x04, 0x22, 0x02, 0x21, 0x30, 0x00, 0x08, 0xf3, 0xf0, 0xfb, +0xf0, 0x78, 0x02, 0x21, 0x08, 0x43, 0xf0, 0x70, 0x07, 0x98, 0x30, 0x71, 0x00, 0x0a, 0x70, 0x71, +0x08, 0x98, 0x14, 0x28, 0x27, 0xd1, 0x05, 0x98, 0x00, 0x88, 0x02, 0x28, 0x0a, 0xd1, 0x0c, 0x20, +0x38, 0x72, 0x03, 0x9a, 0x06, 0x98, 0x21, 0x00, 0x0b, 0xf0, 0x1b, 0xfe, 0x28, 0x00, 0x0b, 0xf0, +0xd3, 0xfd, 0x10, 0xe0, 0x04, 0x98, 0x40, 0x6a, 0x01, 0x28, 0x04, 0xd0, 0x06, 0x98, 0x1c, 0xf0, +0x1f, 0xff, 0x00, 0x28, 0x02, 0xd0, 0x00, 0x20, 0x16, 0xf3, 0x45, 0xf8, 0x38, 0x72, 0x03, 0x99, +0x28, 0x00, 0x0b, 0xf0, 0x4d, 0xfe, 0x04, 0x00, 0x03, 0xd1, 0x00, 0x21, 0x28, 0x00, 0x19, 0xf0, +0x9b, 0xfc, 0x20, 0x00, 0x94, 0xe6, 0x07, 0x20, 0xf0, 0xe7, 0xf0, 0xb5, 0x1f, 0xb4, 0x8c, 0xb0, +0x04, 0x00, 0x00, 0x20, 0x26, 0x00, 0xbc, 0x36, 0x0a, 0x90, 0x1c, 0xf0, 0x29, 0xfe, 0x00, 0x28, +0x7e, 0xd0, 0xc1, 0x68, 0xff, 0x34, 0xca, 0x04, 0x0b, 0x21, 0x89, 0x01, 0x64, 0x1c, 0x00, 0x2a, +0x76, 0xda, 0x40, 0x18, 0x0b, 0x90, 0x00, 0x69, 0x0f, 0x99, 0x40, 0x30, 0x80, 0x89, 0x80, 0x02, +0x02, 0x90, 0xc5, 0x17, 0xa2, 0x69, 0x0e, 0x98, 0xe3, 0x69, 0x80, 0x1a, 0x99, 0x41, 0x08, 0xd3, +0xa2, 0x69, 0x0e, 0x98, 0xe3, 0x69, 0x0f, 0x99, 0x80, 0x1a, 0x99, 0x41, 0x0f, 0x00, 0x06, 0x90, +0x08, 0xe0, 0x0e, 0x9a, 0xa0, 0x69, 0x0f, 0x9b, 0x80, 0x1a, 0xe1, 0x69, 0xc0, 0x43, 0x99, 0x41, +0xcf, 0x43, 0x06, 0x90, 0x06, 0x9a, 0x20, 0x6a, 0x61, 0x6a, 0x80, 0x18, 0x79, 0x41, 0x05, 0x91, +0x04, 0x90, 0x02, 0x9a, 0x06, 0x98, 0x2b, 0x00, 0x39, 0x00, 0x14, 0xf3, 0xb4, 0xeb, 0x0b, 0x99, +0x09, 0x69, 0x40, 0x31, 0x89, 0x7b, 0x0f, 0x00, 0x15, 0xf3, 0x1e, 0xeb, 0xa0, 0x6a, 0x44, 0x1a, +0x00, 0x2c, 0x00, 0xdc, 0x3c, 0x19, 0x02, 0x9a, 0x05, 0x99, 0x04, 0x98, 0x2b, 0x00, 0x14, 0xf3, +0xa2, 0xeb, 0x1f, 0x00, 0x00, 0x92, 0x02, 0x9a, 0x20, 0x00, 0xe1, 0x17, 0x2b, 0x00, 0x15, 0xf3, +0xc8, 0xe8, 0x00, 0x9a, 0x80, 0x1a, 0x08, 0x90, 0x23, 0x48, 0xb9, 0x41, 0x00, 0x78, 0x0c, 0x00, +0x00, 0x28, 0x14, 0xd0, 0x87, 0x02, 0x05, 0x20, 0x80, 0x02, 0x87, 0x42, 0x00, 0xd9, 0x07, 0x00, +0x08, 0x9a, 0x00, 0x21, 0xb8, 0x1a, 0xa1, 0x41, 0x07, 0xd2, 0x08, 0x9a, 0x00, 0x21, 0xd0, 0x1b, +0x23, 0x00, 0x8b, 0x41, 0x1c, 0x00, 0x08, 0x90, 0x01, 0xe0, 0x00, 0x24, 0x08, 0x94, 0x0b, 0x98, +0x7d, 0x27, 0x00, 0x69, 0x3f, 0x01, 0x40, 0x30, 0x82, 0x7b, 0x02, 0x98, 0x29, 0x00, 0x14, 0xf3, +0xac, 0xef, 0x08, 0x9a, 0x05, 0x00, 0x00, 0x21, 0xb8, 0x1a, 0xa1, 0x41, 0x2c, 0xd2, 0x00, 0xe0, +0x2c, 0xe0, 0x08, 0x9a, 0xe8, 0x1b, 0x00, 0x25, 0x23, 0x00, 0x12, 0x1a, 0xab, 0x41, 0x23, 0xd2, +0x08, 0x9a, 0x23, 0x00, 0xd0, 0x1b, 0x04, 0x00, 0x02, 0x00, 0x30, 0x68, 0xab, 0x41, 0x12, 0x1a, +0xab, 0x41, 0x1b, 0xd2, 0x29, 0x00, 0x09, 0xe0, 0x88, 0x43, 0x00, 0x04, 0x88, 0xef, 0x00, 0xc0, +0x00, 0xa6, 0x00, 0x80, 0x70, 0x74, 0x02, 0x00, 0x4d, 0xf0, 0x00, 0xc0, 0x77, 0xb1, 0x88, 0x76, +0x01, 0x00, 0x00, 0x00, 0x80, 0x7f, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x58, 0x16, 0x86, 0x05, +0x34, 0x60, 0x0e, 0x9a, 0x0f, 0x9b, 0xa0, 0x18, 0x16, 0x9a, 0x59, 0x41, 0x03, 0xc2, 0xff, 0x49, +0xff, 0x4a, 0x09, 0x68, 0x30, 0x68, 0x89, 0x18, 0x88, 0x42, 0x01, 0xd8, 0x01, 0x20, 0x0a, 0x90, +0x0a, 0x98, 0x11, 0xb0, 0xf0, 0xbd, 0xf0, 0xb5, 0x07, 0x00, 0x1f, 0xb4, 0x82, 0xb0, 0x00, 0x6f, +0xf8, 0x4e, 0x01, 0x90, 0xb0, 0x69, 0x00, 0x25, 0x84, 0x02, 0x05, 0x99, 0x04, 0x98, 0x2b, 0x00, +0x22, 0x00, 0x14, 0xf3, 0x2a, 0xeb, 0x29, 0x00, 0x76, 0x6b, 0xa5, 0x1a, 0x99, 0x41, 0x3c, 0x00, +0xfa, 0x36, 0x80, 0x34, 0xb5, 0x42, 0x05, 0xd9, 0xe0, 0x6b, 0x80, 0x19, 0xa8, 0x42, 0x01, 0xd9, +0xa8, 0x1b, 0xe0, 0x63, 0xe0, 0x6b, 0x04, 0x9a, 0x05, 0x9b, 0x80, 0x18, 0x0c, 0x9a, 0x00, 0x21, +0x59, 0x41, 0x03, 0xc2, 0x20, 0x6b, 0x01, 0x28, 0x3f, 0xd0, 0xe0, 0x6b, 0x81, 0x19, 0xa9, 0x42, +0x3d, 0xd8, 0x3c, 0x00, 0xc0, 0x34, 0x61, 0x7e, 0x01, 0x29, 0x38, 0xd1, 0xdf, 0x49, 0xe0, 0x4a, +0x09, 0x68, 0x89, 0x18, 0x88, 0x42, 0x32, 0xd3, 0x01, 0x98, 0x00, 0x7a, 0x05, 0xf0, 0xb1, 0xfb, +0x00, 0x28, 0x2c, 0xd1, 0x20, 0x7e, 0x00, 0x28, 0x29, 0xd1, 0x20, 0x69, 0x00, 0x28, 0x26, 0xd1, +0x1a, 0xf0, 0xfa, 0xf9, 0x00, 0x28, 0x22, 0xd1, 0x1a, 0xf0, 0xf6, 0xf9, 0x00, 0x28, 0x1e, 0xd1, +0xd5, 0x48, 0x00, 0x22, 0x00, 0x68, 0x46, 0x21, 0x03, 0xf3, 0xed, 0xf9, 0x00, 0x28, 0x16, 0xd1, +0xfc, 0xf7, 0x5d, 0xff, 0x00, 0x28, 0x12, 0xd0, 0x0c, 0x9a, 0x00, 0x92, 0x05, 0x9b, 0x04, 0x9a, +0x38, 0x00, 0xff, 0xf7, 0xe4, 0xfe, 0x00, 0x28, 0x09, 0xd1, 0xf9, 0xf7, 0x78, 0xfe, 0x00, 0x28, +0x05, 0xd0, 0x1f, 0xf0, 0x9c, 0xe8, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0xbc, 0xe4, 0x00, 0x20, +0xba, 0xe4, 0xf3, 0xb5, 0x8d, 0xb0, 0x06, 0x00, 0x00, 0x6f, 0x07, 0x90, 0x1c, 0xf0, 0xf2, 0xfc, +0x07, 0x98, 0xff, 0xf7, 0x37, 0xfb, 0x07, 0x00, 0x00, 0x20, 0x1c, 0xf0, 0xfb, 0xfc, 0x06, 0x90, +0x0e, 0x98, 0x31, 0x00, 0x00, 0x68, 0x34, 0x31, 0x0b, 0x91, 0x0c, 0x31, 0x0a, 0x91, 0x34, 0x31, +0x09, 0x91, 0x74, 0x31, 0x35, 0x00, 0x34, 0x00, 0xc0, 0x35, 0x80, 0x34, 0x12, 0x28, 0x08, 0x91, +0x7e, 0xd0, 0x47, 0xdc, 0x80, 0x1c, 0x7c, 0xd0, 0x01, 0x28, 0x7b, 0xd1, 0x09, 0xf3, 0x92, 0xfd, +0x04, 0x90, 0x00, 0x20, 0x05, 0x91, 0x02, 0x90, 0x03, 0x90, 0xa0, 0x62, 0xa0, 0x64, 0xe0, 0x64, +0x28, 0x62, 0x68, 0x62, 0x68, 0x77, 0xa8, 0x77, 0x01, 0x20, 0xf9, 0xf7, 0xf0, 0xfd, 0xf8, 0x68, +0xe0, 0x63, 0x1c, 0xf0, 0x06, 0xf8, 0x00, 0x28, 0x38, 0xd0, 0x02, 0xaa, 0x00, 0x92, 0x05, 0x9b, +0x04, 0x9a, 0x30, 0x00, 0xff, 0xf7, 0x4f, 0xff, 0x00, 0x28, 0x2f, 0xd0, 0x06, 0x98, 0x00, 0x28, +0x2e, 0xd0, 0x06, 0x98, 0xc0, 0x68, 0xc0, 0x04, 0x2a, 0xd5, 0xa0, 0x48, 0x00, 0x68, 0x00, 0x28, +0x26, 0xd0, 0x06, 0x98, 0x15, 0xf0, 0xb0, 0xff, 0x15, 0x22, 0x00, 0x21, 0x01, 0x92, 0x02, 0x00, +0x00, 0x91, 0x06, 0x98, 0x01, 0x21, 0x00, 0x23, 0xf9, 0xf7, 0xf1, 0xfb, 0x08, 0x98, 0xff, 0xf2, +0x53, 0xfb, 0x08, 0x98, 0x00, 0x22, 0x64, 0x21, 0xff, 0xf2, 0x00, 0xfb, 0x08, 0x98, 0xff, 0xf2, +0xed, 0xfa, 0x0f, 0xe0, 0x1e, 0x28, 0x56, 0xd0, 0x1f, 0x28, 0x74, 0xd1, 0x09, 0x98, 0xff, 0xf2, +0x43, 0xfb, 0x60, 0x6a, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x20, 0x62, 0x0a, 0x99, 0x46, 0xe0, +0x01, 0x20, 0x28, 0x62, 0x60, 0x6a, 0x01, 0x28, 0x13, 0xd1, 0x00, 0x20, 0x60, 0x62, 0x01, 0x21, +0xe0, 0x62, 0x30, 0x6f, 0x49, 0x03, 0x1f, 0xf0, 0x0a, 0xe8, 0x09, 0x98, 0xff, 0xf2, 0x2c, 0xfb, +0x7d, 0x21, 0x09, 0x98, 0x00, 0x22, 0x09, 0x01, 0xff, 0xf2, 0xd8, 0xfa, 0x09, 0x98, 0xff, 0xf2, +0xc5, 0xfa, 0x20, 0x6b, 0x00, 0x28, 0x1b, 0xd1, 0x38, 0x88, 0x02, 0x28, 0x18, 0xd0, 0x78, 0x68, +0xc0, 0x07, 0x15, 0xd0, 0x7a, 0x49, 0xe0, 0x6b, 0x88, 0x42, 0x11, 0xd8, 0x07, 0x98, 0x02, 0xe0, +0x28, 0xe0, 0x1f, 0xe0, 0x3f, 0xe0, 0x00, 0x7a, 0x03, 0xf0, 0x4a, 0xfe, 0x00, 0x28, 0x07, 0xd0, +0xe0, 0x6b, 0x14, 0x22, 0x01, 0x04, 0x30, 0x6f, 0x09, 0x0c, 0xff, 0xf7, 0xb8, 0xfd, 0x01, 0xe0, +0x01, 0x20, 0xa0, 0x62, 0xe0, 0x6a, 0x01, 0x28, 0x2a, 0xd1, 0xa0, 0x6a, 0x01, 0x28, 0x27, 0xd1, +0x28, 0x6a, 0x01, 0x28, 0x24, 0xd1, 0x09, 0x98, 0xff, 0xf2, 0xf6, 0xfa, 0x1e, 0xe0, 0x30, 0x00, +0x03, 0xf3, 0x93, 0xfa, 0x1c, 0xe0, 0x01, 0x20, 0xa0, 0x62, 0xe0, 0x6a, 0x01, 0x28, 0x17, 0xd1, +0x28, 0x6a, 0x11, 0xe0, 0x01, 0x27, 0x00, 0x20, 0xaf, 0x77, 0x1c, 0xf0, 0x3b, 0xfc, 0x00, 0x28, +0x02, 0xd0, 0x79, 0x02, 0x1e, 0xf0, 0xba, 0xef, 0x2f, 0x62, 0x08, 0x98, 0xff, 0xf2, 0xdc, 0xfa, +0xe0, 0x6a, 0x01, 0x28, 0x04, 0xd1, 0xa0, 0x6a, 0x01, 0x28, 0x01, 0xd1, 0x0b, 0x99, 0xde, 0xe7, +0x00, 0x20, 0x0f, 0xb0, 0xf0, 0xbd, 0x0e, 0x98, 0xfb, 0xe7, 0xf0, 0xb5, 0x0d, 0x00, 0x06, 0x00, +0x4e, 0x49, 0x00, 0x6f, 0x09, 0x68, 0x87, 0xb0, 0xff, 0x31, 0x5a, 0x31, 0x09, 0x04, 0x09, 0x0c, +0x05, 0x91, 0xff, 0xf7, 0x4f, 0xfa, 0x09, 0xf3, 0xc5, 0xfc, 0x0f, 0x00, 0x00, 0x21, 0x02, 0x91, +0x03, 0x91, 0x04, 0x90, 0x28, 0x68, 0x80, 0x1c, 0x58, 0xd0, 0x34, 0x00, 0x80, 0x34, 0x01, 0x28, +0x56, 0xd1, 0xe1, 0x6c, 0xa0, 0x6c, 0x00, 0x23, 0x59, 0x40, 0x58, 0x40, 0x08, 0x43, 0x25, 0xd0, +0xa2, 0x6c, 0x04, 0x98, 0xe3, 0x6c, 0x39, 0x00, 0x80, 0x1a, 0x99, 0x41, 0x08, 0xd3, 0xa2, 0x6c, +0x04, 0x98, 0xe3, 0x6c, 0x80, 0x1a, 0x39, 0x00, 0x99, 0x41, 0x0d, 0x00, 0x00, 0x90, 0x07, 0xe0, +0x04, 0x9a, 0xa0, 0x6c, 0xe1, 0x6c, 0x80, 0x1a, 0xc0, 0x43, 0xb9, 0x41, 0xcd, 0x43, 0x00, 0x90, +0xe0, 0x6b, 0x00, 0x9a, 0x00, 0x21, 0x2b, 0x00, 0x12, 0x1a, 0x8b, 0x41, 0x04, 0xd2, 0xe0, 0x6b, +0x00, 0x9a, 0x80, 0x1a, 0xa9, 0x41, 0x00, 0xe0, 0x00, 0x20, 0xe0, 0x63, 0xfc, 0xf7, 0xfc, 0xfa, +0x03, 0xf3, 0xea, 0xfc, 0x1b, 0xf0, 0x0d, 0xff, 0x00, 0x28, 0x16, 0xd0, 0x20, 0x6b, 0x00, 0x28, +0x13, 0xd1, 0x02, 0xaa, 0x00, 0x92, 0x04, 0x9a, 0x3b, 0x00, 0x30, 0x00, 0xff, 0xf7, 0x53, 0xfe, +0x00, 0x28, 0x0a, 0xd0, 0x01, 0x22, 0x00, 0x92, 0x7d, 0x22, 0xe3, 0x6b, 0x05, 0x99, 0xd2, 0x00, +0x02, 0xa8, 0xfc, 0xf7, 0x16, 0xfc, 0x00, 0x28, 0x08, 0xd1, 0x03, 0xf3, 0xf6, 0xfc, 0x00, 0x20, +0x31, 0x00, 0x20, 0x63, 0x40, 0x31, 0x30, 0x00, 0x03, 0xf3, 0xff, 0xf9, 0x00, 0x20, 0xa5, 0xe6, +0x28, 0x00, 0xa3, 0xe6, 0xf8, 0xb5, 0x04, 0x00, 0x0f, 0x00, 0x06, 0x6f, 0x30, 0x00, 0xff, 0xf7, +0xe1, 0xf9, 0x05, 0x00, 0x00, 0x20, 0x1c, 0xf0, 0xa5, 0xfb, 0x38, 0x68, 0x80, 0x1c, 0x3f, 0xd0, +0x01, 0x28, 0x05, 0xd0, 0x15, 0x28, 0x36, 0xd0, 0x16, 0x28, 0x3b, 0xd1, 0x01, 0x20, 0x2f, 0xe0, +0x00, 0x20, 0xf9, 0xf7, 0xb4, 0xfc, 0x20, 0x00, 0x00, 0xf0, 0xb2, 0xf9, 0xf9, 0xf7, 0xde, 0xf8, +0xc0, 0x34, 0x20, 0x7f, 0x00, 0x27, 0x00, 0x28, 0x03, 0xd0, 0x12, 0x20, 0x2d, 0x70, 0x77, 0x7d, +0x01, 0x00, 0x00, 0x00, 0x7c, 0x83, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x0e, 0x3f, 0xe5, 0x45, +0x02, 0xf0, 0xbf, 0xfa, 0x27, 0x77, 0x05, 0x48, 0x00, 0x22, 0x00, 0x68, 0x69, 0x21, 0x0b, 0xe0, +0x18, 0x33, 0x01, 0xc0, 0x2f, 0x08, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x80, 0x18, 0xee, 0x00, 0xc0, +0x88, 0xef, 0x00, 0xc0, 0xf0, 0x7f, 0x00, 0x00, 0x03, 0xf3, 0x3f, 0xf8, 0x67, 0x62, 0x67, 0x77, +0x28, 0x88, 0x01, 0x28, 0x05, 0xd1, 0x20, 0x7e, 0x00, 0x28, 0x02, 0xd1, 0x30, 0x00, 0xff, 0xf7, +0xc1, 0xfa, 0x05, 0x20, 0xf9, 0xf7, 0x34, 0xf8, 0x04, 0xe0, 0x21, 0x00, 0x28, 0x31, 0x20, 0x00, +0x03, 0xf3, 0xad, 0xf9, 0x00, 0x20, 0xf8, 0xbd, 0x38, 0x00, 0xf8, 0xbd, 0x10, 0xb5, 0x0b, 0x68, +0x04, 0x6f, 0x9b, 0x1c, 0x1a, 0xd0, 0x01, 0x2b, 0x13, 0xd0, 0x02, 0x00, 0x80, 0x32, 0x03, 0x2b, +0x11, 0xd0, 0x04, 0x2b, 0x17, 0xd1, 0x01, 0x00, 0x10, 0x31, 0x91, 0x63, 0x51, 0x6a, 0x00, 0x29, +0x01, 0xd1, 0x01, 0x21, 0x11, 0x62, 0x00, 0xf0, 0x65, 0xf9, 0x20, 0x00, 0x1e, 0xf0, 0xcc, 0xee, +0x07, 0xe0, 0x01, 0x20, 0x03, 0xe0, 0x1c, 0x30, 0x90, 0x63, 0xf6, 0xe7, 0x00, 0x20, 0x02, 0xf0, +0x30, 0xfd, 0x00, 0x20, 0x10, 0xbd, 0x08, 0x00, 0x10, 0xbd, 0xf3, 0xb5, 0x85, 0xb0, 0x07, 0x00, +0x00, 0x20, 0x03, 0x90, 0x1c, 0xf0, 0x30, 0xfb, 0x05, 0x00, 0x06, 0x98, 0x3a, 0x00, 0x00, 0x68, +0xb4, 0x32, 0x3e, 0x00, 0x3c, 0x00, 0x03, 0x21, 0x80, 0x36, 0xc0, 0x34, 0x25, 0x28, 0x04, 0x92, +0x6a, 0xd0, 0x08, 0xdc, 0x80, 0x1c, 0x15, 0xd0, 0x01, 0x28, 0x14, 0xd0, 0x23, 0x28, 0x52, 0xd0, +0x24, 0x28, 0x7e, 0xd1, 0x05, 0xe0, 0x26, 0x28, 0x51, 0xd0, 0x27, 0x28, 0x4f, 0xd0, 0x29, 0x28, +0xf7, 0xd1, 0xa0, 0x7e, 0x01, 0x28, 0x2d, 0xd1, 0xe0, 0x7e, 0x42, 0x1c, 0x02, 0x28, 0xe2, 0x76, +0x19, 0xd9, 0xa1, 0x76, 0x86, 0xe0, 0x38, 0x00, 0xff, 0xf7, 0xf6, 0xfa, 0x00, 0x20, 0xa0, 0x76, +0xe0, 0x76, 0xf9, 0xf7, 0x4f, 0xf8, 0x00, 0x2d, 0x70, 0x63, 0x7b, 0xd0, 0xe8, 0x68, 0xc0, 0x04, +0x78, 0xd5, 0x1b, 0xf0, 0x76, 0xfa, 0x00, 0x28, 0x74, 0xd1, 0x01, 0x20, 0xf9, 0xf7, 0x11, 0xfc, +0x01, 0x20, 0xa0, 0x76, 0x04, 0xe0, 0x00, 0x2d, 0x72, 0xd0, 0xe8, 0x68, 0xc0, 0x04, 0x6f, 0xd5, +0x28, 0x00, 0x15, 0xf0, 0xe3, 0xfd, 0x13, 0x22, 0x00, 0x21, 0x01, 0x92, 0x02, 0x00, 0x00, 0x91, +0x01, 0x21, 0x13, 0xe0, 0x02, 0x28, 0x63, 0xd1, 0xe0, 0x7e, 0x42, 0x1c, 0x02, 0x28, 0xe2, 0x76, +0xcf, 0xd8, 0x00, 0x2d, 0x5c, 0xd0, 0xe8, 0x68, 0xc0, 0x04, 0x59, 0xd5, 0x28, 0x00, 0x15, 0xf0, +0xcd, 0xfd, 0x13, 0x22, 0x00, 0x21, 0x01, 0x92, 0x02, 0x00, 0x00, 0x91, 0x28, 0x00, 0x00, 0x23, +0xf9, 0xf7, 0x0f, 0xfa, 0x4c, 0xe0, 0xa0, 0x7e, 0x01, 0x28, 0xba, 0xd0, 0x48, 0xe0, 0x01, 0x20, +0x02, 0xf0, 0x16, 0xfc, 0x00, 0x25, 0x28, 0x00, 0xa5, 0x76, 0xf9, 0xf7, 0xda, 0xfb, 0x04, 0x98, +0xf9, 0xf7, 0x33, 0xf8, 0x25, 0x77, 0x2c, 0xe0, 0xb1, 0x6b, 0x38, 0x00, 0x10, 0x30, 0x81, 0x42, +0x21, 0xd1, 0xa0, 0x7e, 0x03, 0x28, 0x1e, 0xd1, 0x00, 0x20, 0xf9, 0xf7, 0xca, 0xfb, 0x8c, 0x49, +0x00, 0x20, 0x08, 0x60, 0x8b, 0x49, 0x08, 0x60, 0xe0, 0x76, 0x02, 0x20, 0x00, 0x2d, 0xa0, 0x76, +0x11, 0xd0, 0xe8, 0x68, 0xc0, 0x04, 0x0e, 0xd5, 0x28, 0x00, 0x15, 0xf0, 0x97, 0xfd, 0x13, 0x22, +0x00, 0xe0, 0x14, 0xe0, 0x01, 0x21, 0x01, 0x92, 0x00, 0x91, 0x02, 0x00, 0x00, 0x21, 0x28, 0x00, +0x0b, 0x00, 0xf9, 0xf7, 0xd6, 0xf9, 0x04, 0x98, 0xf9, 0xf7, 0x07, 0xf8, 0x01, 0x20, 0x02, 0xf0, +0xdf, 0xfb, 0xb1, 0x6b, 0x38, 0x00, 0x03, 0xf3, 0xd2, 0xf8, 0x09, 0xe0, 0x02, 0xe0, 0x06, 0x98, +0x03, 0x90, 0x05, 0xe0, 0x78, 0x48, 0x07, 0x22, 0x00, 0x68, 0x40, 0x21, 0x19, 0xf0, 0x36, 0xff, +0x03, 0x98, 0x6d, 0xe5, 0xf8, 0xb5, 0x05, 0x00, 0x00, 0x20, 0x00, 0x90, 0x08, 0x68, 0x2e, 0x00, +0x2c, 0x00, 0x00, 0x27, 0x80, 0x36, 0xc0, 0x34, 0x25, 0x28, 0x20, 0xd0, 0x12, 0xdc, 0x80, 0x1c, +0x08, 0xd0, 0x01, 0x28, 0x22, 0xd1, 0x28, 0x00, 0xff, 0xf7, 0x56, 0xfa, 0x00, 0x20, 0xf9, 0xf7, +0x80, 0xfb, 0xe7, 0x76, 0x68, 0x48, 0x07, 0x22, 0x00, 0x68, 0x40, 0x21, 0x19, 0xf0, 0x16, 0xff, +0x00, 0x98, 0xf8, 0xbd, 0x26, 0x28, 0x0f, 0xd0, 0x27, 0x28, 0x0f, 0xd1, 0x00, 0x20, 0xa7, 0x76, +0xf9, 0xf7, 0x6f, 0xfb, 0xfc, 0xf7, 0x72, 0xf9, 0xfc, 0xf7, 0x10, 0xfc, 0x27, 0x77, 0xb1, 0x6b, +0x28, 0x00, 0x03, 0xf3, 0x94, 0xf8, 0xeb, 0xe7, 0xa7, 0x76, 0xf7, 0xe7, 0x00, 0x91, 0xe7, 0xe7, +0xf0, 0xb5, 0x04, 0x00, 0x0e, 0x00, 0x97, 0xb0, 0x19, 0xf0, 0xb2, 0xf8, 0x05, 0x00, 0x20, 0x00, +0xff, 0xf7, 0x2a, 0xfa, 0x21, 0x00, 0x74, 0x31, 0x2c, 0x22, 0x0b, 0xa8, 0x16, 0x91, 0x14, 0xf3, +0x82, 0xea, 0x21, 0x00, 0xe8, 0x31, 0x2c, 0x22, 0x0f, 0x00, 0x68, 0x46, 0x14, 0xf3, 0x7a, 0xea, +0xff, 0x21, 0x31, 0x31, 0x20, 0x00, 0x14, 0xf3, 0xa8, 0xea, 0x2c, 0x22, 0x38, 0x00, 0x69, 0x46, +0x14, 0xf3, 0x70, 0xea, 0x16, 0x98, 0x2c, 0x22, 0x0b, 0xa9, 0x14, 0xf3, 0x6c, 0xea, 0x20, 0x00, +0x00, 0xf0, 0x4b, 0xf8, 0x21, 0x00, 0x10, 0x31, 0x0f, 0x00, 0x20, 0x00, 0x03, 0xf3, 0x4f, 0xf8, +0x20, 0x00, 0x01, 0x21, 0x80, 0x30, 0x01, 0x62, 0x3e, 0x4a, 0x41, 0x62, 0x00, 0x21, 0x11, 0x60, +0xda, 0x22, 0x87, 0x63, 0x11, 0x55, 0x3d, 0x49, 0xc1, 0x63, 0x28, 0x00, 0x26, 0x67, 0x19, 0xf0, +0x7b, 0xf8, 0x17, 0xb0, 0xf0, 0xbd, 0x01, 0x21, 0x01, 0x80, 0x41, 0x60, 0x37, 0x49, 0xc1, 0x60, +0x81, 0x60, 0x37, 0x49, 0x01, 0x61, 0x7d, 0x21, 0x09, 0x01, 0x81, 0x61, 0x41, 0x61, 0x70, 0x47, +0x34, 0x48, 0x00, 0xb5, 0xff, 0xf7, 0xef, 0xff, 0x32, 0x48, 0x1c, 0x30, 0xff, 0xf7, 0xeb, 0xff, +0x00, 0xbd, 0x02, 0x00, 0x92, 0x78, 0x00, 0x20, 0x12, 0x09, 0x04, 0x2a, 0x01, 0xd1, 0x00, 0x22, +0x0a, 0x70, 0x70, 0x47, 0x10, 0xb5, 0x04, 0x00, 0x01, 0x20, 0xfc, 0xf7, 0xad, 0xf8, 0x20, 0x00, +0x80, 0x30, 0x01, 0x6a, 0x01, 0x29, 0x07, 0xd1, 0x00, 0x21, 0x01, 0x62, 0x01, 0x21, 0x41, 0x62, +0x20, 0x6f, 0x09, 0x03, 0x1e, 0xf0, 0x54, 0xed, 0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x22, 0x4a, +0x00, 0x21, 0x00, 0x1d, 0x03, 0xf3, 0x07, 0xf8, 0x20, 0x00, 0x20, 0x4a, 0x21, 0x1d, 0x10, 0x30, +0x03, 0xf3, 0x01, 0xf8, 0x20, 0x00, 0x1c, 0x30, 0x1d, 0x4a, 0x21, 0x1d, 0x05, 0x00, 0x02, 0xf3, +0xfa, 0xff, 0x20, 0x00, 0x4c, 0x30, 0x1b, 0x4a, 0x21, 0x1d, 0x06, 0x00, 0x02, 0xf3, 0xf3, 0xff, +0x20, 0x00, 0x19, 0x4a, 0x29, 0x00, 0x28, 0x30, 0x02, 0xf3, 0xed, 0xff, 0x20, 0x00, 0x17, 0x4a, +0x29, 0x00, 0x34, 0x30, 0x02, 0xf3, 0xe7, 0xff, 0x20, 0x00, 0x15, 0x4a, 0x29, 0x00, 0x40, 0x30, +0x02, 0xf3, 0xe1, 0xff, 0x20, 0x00, 0x13, 0x4a, 0x31, 0x00, 0x58, 0x30, 0x02, 0xf3, 0xdb, 0xff, +0x20, 0x00, 0x11, 0x4a, 0x31, 0x00, 0x64, 0x30, 0x02, 0xf3, 0xd5, 0xff, 0x70, 0xbd, 0x00, 0x00, +0x84, 0xef, 0x00, 0xc0, 0x88, 0xef, 0x00, 0xc0, 0x6c, 0xf4, 0x00, 0xc0, 0xcc, 0xe8, 0x7d, 0xa7, +0x01, 0x00, 0x00, 0x00, 0x78, 0x87, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x5d, 0xe5, 0x36, 0x29, +0x68, 0x42, 0x00, 0x00, 0x40, 0x0d, 0x03, 0x00, 0x50, 0x43, 0x00, 0x04, 0x1d, 0x77, 0x00, 0x00, +0x79, 0x78, 0x00, 0x00, 0x9d, 0x7a, 0x00, 0x00, 0xd9, 0x83, 0x00, 0x00, 0x83, 0x80, 0x00, 0x00, +0x4b, 0x82, 0x00, 0x00, 0x35, 0x83, 0x00, 0x00, 0x27, 0x84, 0x00, 0x00, 0xa1, 0x85, 0x00, 0x00, +0xff, 0x48, 0x80, 0x8b, 0x40, 0x07, 0x80, 0x0f, 0x01, 0x28, 0x00, 0xd0, 0x00, 0x20, 0x70, 0x47, +0x38, 0xb5, 0x04, 0x00, 0xfb, 0x48, 0x0d, 0x00, 0x40, 0x6b, 0x03, 0xf3, 0x42, 0xfa, 0xf9, 0x49, +0x00, 0x22, 0x34, 0x31, 0x00, 0x92, 0x22, 0x00, 0x28, 0x00, 0x0b, 0x00, 0x03, 0xf3, 0xd6, 0xf9, +0x38, 0xbd, 0x10, 0xb5, 0xf3, 0x4c, 0x60, 0x6b, 0x03, 0xf3, 0x33, 0xfa, 0x00, 0x20, 0x60, 0x63, +0x10, 0xbd, 0xf0, 0x49, 0x00, 0x20, 0x10, 0xb5, 0x02, 0x00, 0xc8, 0x60, 0xee, 0x48, 0x49, 0x21, +0x00, 0x68, 0x02, 0xf3, 0x14, 0xfe, 0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0xeb, 0x4d, 0x68, 0x88, +0x00, 0x28, 0x07, 0xd0, 0x20, 0x00, 0x01, 0xf0, 0x45, 0xff, 0x68, 0x88, 0x21, 0x00, 0x7c, 0x31, +0x28, 0x80, 0x26, 0xe0, 0x20, 0x00, 0xff, 0x30, 0x41, 0x30, 0x06, 0x6b, 0xfc, 0xf7, 0x58, 0xf8, +0xfc, 0xf7, 0xf6, 0xfa, 0xdf, 0x49, 0x01, 0x20, 0x88, 0x61, 0x00, 0x20, 0x08, 0x66, 0xf0, 0x21, +0x08, 0x53, 0x09, 0xf3, 0xdb, 0xf9, 0xe2, 0x1d, 0xf9, 0x32, 0x51, 0x65, 0x10, 0x65, 0x01, 0x20, +0x02, 0xf0, 0x78, 0xfa, 0x02, 0xf0, 0xca, 0xf8, 0x03, 0x20, 0x0d, 0xf0, 0x9b, 0xfd, 0x01, 0x21, +0x00, 0x22, 0x09, 0x03, 0x30, 0x00, 0x01, 0xf0, 0xfc, 0xfe, 0x68, 0x88, 0x21, 0x00, 0x58, 0x31, +0x28, 0x80, 0x20, 0x00, 0x02, 0xf3, 0x5d, 0xff, 0x70, 0xbd, 0x20, 0x20, 0x10, 0xb5, 0x02, 0xf0, +0x42, 0xf8, 0x10, 0xbd, 0x10, 0xb5, 0xf9, 0xf7, 0x6e, 0xfa, 0x00, 0x28, 0x22, 0xd0, 0x00, 0x20, +0x19, 0xf0, 0xce, 0xfd, 0x00, 0x28, 0x1d, 0xd1, 0x19, 0xf0, 0xca, 0xfd, 0x00, 0x28, 0x19, 0xd1, +0xfb, 0xf7, 0x02, 0xfc, 0x00, 0x28, 0x15, 0xd1, 0x1e, 0xf0, 0x88, 0xec, 0x00, 0x28, 0x11, 0xd1, +0xc1, 0x48, 0x00, 0x22, 0x00, 0x68, 0x46, 0x21, 0x02, 0xf3, 0xb9, 0xfd, 0x00, 0x28, 0x09, 0xd1, +0x05, 0xf0, 0x63, 0xfa, 0x00, 0x28, 0x05, 0xd1, 0x16, 0xf0, 0x8b, 0xf8, 0x00, 0x28, 0x01, 0xd1, +0x01, 0x20, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0xb8, 0x48, 0x10, 0xb5, 0x20, 0x38, 0x40, 0x8a, +0x00, 0x28, 0x05, 0xd0, 0xb2, 0x48, 0xb3, 0x49, 0x40, 0x6b, 0x09, 0x69, 0x88, 0x42, 0x27, 0xd1, +0xaf, 0x48, 0x80, 0x30, 0x80, 0x69, 0x00, 0x28, 0x22, 0xd1, 0xaf, 0x4c, 0x00, 0x22, 0x20, 0x68, +0x1b, 0x21, 0x02, 0xf3, 0x94, 0xfd, 0x00, 0x28, 0x1a, 0xd1, 0x20, 0x68, 0x00, 0x22, 0x46, 0x21, +0x02, 0xf3, 0x8d, 0xfd, 0x00, 0x28, 0x13, 0xd1, 0xfb, 0xf7, 0xc6, 0xfb, 0x00, 0x28, 0x0f, 0xd1, +0x1e, 0xf0, 0x4c, 0xec, 0x00, 0x28, 0x0b, 0xd1, 0x19, 0xf0, 0x82, 0xfd, 0x00, 0x28, 0x07, 0xd1, +0x19, 0xf0, 0x7e, 0xfd, 0x00, 0x28, 0x03, 0xd1, 0x16, 0xf0, 0x53, 0xf8, 0x00, 0x28, 0x00, 0xd0, +0x01, 0x20, 0x00, 0x28, 0x04, 0xd1, 0xf9, 0xf7, 0x0e, 0xfa, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, +0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0xf8, 0xb5, 0x00, 0x25, 0x2c, 0x00, 0x95, 0x4e, 0x94, 0x4f, +0x70, 0x89, 0x97, 0x49, 0x40, 0x37, 0x88, 0x42, 0x19, 0xd2, 0x79, 0x6d, 0x38, 0x6d, 0x61, 0x40, +0x08, 0x43, 0x14, 0xd0, 0x09, 0xf3, 0x42, 0xf9, 0x3a, 0x6d, 0x7b, 0x6d, 0x80, 0x1a, 0x99, 0x41, +0x7d, 0x27, 0xff, 0x00, 0x23, 0x00, 0x3a, 0x00, 0x13, 0xf3, 0x4a, 0xee, 0x76, 0x89, 0x23, 0x00, +0x3a, 0x00, 0x13, 0xf3, 0x46, 0xee, 0x80, 0x1b, 0xa1, 0x41, 0x00, 0xd3, 0x01, 0x25, 0x28, 0x00, +0xf8, 0xbd, 0x30, 0xb5, 0x87, 0xb0, 0x03, 0xa9, 0x04, 0xa8, 0x10, 0xf0, 0x49, 0xfe, 0x05, 0x00, +0x01, 0x22, 0x02, 0x21, 0x68, 0x46, 0x03, 0xf3, 0xda, 0xf9, 0x04, 0x00, 0x09, 0xd0, 0xac, 0x42, +0x07, 0xd2, 0x04, 0x20, 0x02, 0xf0, 0xbe, 0xf9, 0x00, 0x98, 0x01, 0x99, 0x05, 0x91, 0x04, 0x90, +0x03, 0xe0, 0x05, 0x20, 0x02, 0xf0, 0xb6, 0xf9, 0x2c, 0x00, 0x6b, 0x46, 0x98, 0x89, 0x20, 0x18, +0x03, 0xf3, 0x0b, 0xfa, 0x00, 0x28, 0x05, 0xd0, 0x04, 0x20, 0x02, 0xf0, 0xab, 0xf9, 0x01, 0x20, +0x07, 0xb0, 0x30, 0xbd, 0x00, 0x22, 0x00, 0x92, 0x6b, 0x46, 0x99, 0x89, 0x7d, 0x22, 0xd2, 0x00, +0x23, 0x00, 0x04, 0xa8, 0xfc, 0xf7, 0xa1, 0xf8, 0xf2, 0xe7, 0xfe, 0xb5, 0x0d, 0x00, 0x69, 0x4e, +0x09, 0x68, 0xb1, 0x66, 0x01, 0x00, 0xff, 0x31, 0x41, 0x31, 0x2b, 0x68, 0x0c, 0x00, 0x0f, 0x6b, +0x20, 0x34, 0x22, 0x2b, 0x49, 0xd0, 0x12, 0xdc, 0x02, 0x2b, 0x38, 0xd0, 0x08, 0xdc, 0x9b, 0x1c, +0x64, 0xd0, 0x01, 0x2b, 0x13, 0xd0, 0x03, 0x2b, 0x60, 0xd1, 0x61, 0x48, 0x16, 0x30, 0x29, 0xe0, +0x01, 0x20, 0x03, 0x2b, 0x2e, 0xd0, 0x12, 0x2b, 0x58, 0xd1, 0x20, 0x71, 0x56, 0xe0, 0x23, 0x3b, +0x14, 0xf3, 0x24, 0xea, 0x07, 0x0a, 0x0d, 0x10, 0x10, 0x10, 0x54, 0x30, 0x54, 0x00, 0x01, 0x00, +0x34, 0x31, 0x02, 0xf3, 0x66, 0xfe, 0x49, 0xe0, 0x55, 0x48, 0x13, 0x30, 0x12, 0xe0, 0x54, 0x48, +0x14, 0x30, 0x0f, 0xe0, 0x38, 0x00, 0xfe, 0xf7, 0x47, 0xfe, 0x01, 0x68, 0x4a, 0x68, 0x01, 0x00, +0x4c, 0x31, 0x8a, 0x42, 0x04, 0xd1, 0x29, 0x68, 0x00, 0x22, 0x02, 0xf3, 0x33, 0xfe, 0x35, 0xe0, +0x4b, 0x48, 0x15, 0x30, 0xf7, 0xf7, 0x3c, 0xfb, 0x1e, 0xf0, 0x28, 0xeb, 0x2e, 0xe0, 0x48, 0x48, +0x17, 0x30, 0xf7, 0xe7, 0x60, 0x71, 0x02, 0x20, 0x02, 0xf0, 0x4c, 0xf9, 0xf0, 0x6a, 0x40, 0x1c, +0xf0, 0x62, 0x23, 0xe0, 0x30, 0x6a, 0x40, 0x1c, 0x30, 0x62, 0x20, 0x78, 0x02, 0x28, 0x01, 0xd0, +0x01, 0x28, 0x1b, 0xd1, 0x60, 0x78, 0x41, 0x1c, 0x02, 0x28, 0x61, 0x70, 0x10, 0xd2, 0x38, 0x00, +0x15, 0xf0, 0xde, 0xfa, 0x13, 0x22, 0x00, 0x21, 0x01, 0x92, 0x00, 0x91, 0x21, 0x78, 0x01, 0x29, +0x00, 0xd0, 0x00, 0x21, 0x02, 0x00, 0x38, 0x00, 0x00, 0x23, 0xf8, 0xf7, 0x1c, 0xff, 0x05, 0xe0, +0x34, 0x48, 0x07, 0x22, 0x00, 0x68, 0x40, 0x21, 0x19, 0xf0, 0x8a, 0xfc, 0x00, 0x20, 0xfe, 0xbd, +0x70, 0xb5, 0x04, 0x00, 0xff, 0x34, 0x41, 0x34, 0x0a, 0x68, 0x25, 0x00, 0x23, 0x6b, 0x01, 0x26, +0x20, 0x35, 0x01, 0x2a, 0x0e, 0xd0, 0x05, 0xdc, 0x92, 0x1c, 0x12, 0xd0, 0x01, 0x2a, 0x15, 0xd1, +0x01, 0x20, 0x0f, 0xe0, 0x02, 0x2a, 0x03, 0xd0, 0x28, 0x2a, 0x0f, 0xd1, 0xae, 0x71, 0x0b, 0xe0, +0x34, 0x30, 0x01, 0xe0, 0x58, 0x30, 0xae, 0x71, 0xe0, 0x61, 0x18, 0x00, 0x1e, 0xf0, 0x36, 0xeb, +0x02, 0xe0, 0x00, 0x20, 0x02, 0xf0, 0x9f, 0xf9, 0x00, 0x20, 0x70, 0xbd, 0x08, 0x00, 0x70, 0xbd, +0x70, 0xb5, 0x04, 0x00, 0xff, 0x30, 0x41, 0x30, 0x05, 0x6b, 0xfb, 0xf7, 0xc1, 0xfe, 0xfc, 0xf7, +0x5f, 0xf9, 0x1a, 0xf0, 0x18, 0xff, 0x01, 0x28, 0x11, 0xd1, 0x00, 0x21, 0x28, 0x00, 0x01, 0xf0, +0x85, 0xfd, 0x20, 0x00, 0xff, 0x30, 0x25, 0x30, 0x04, 0x00, 0xfe, 0xf2, 0x69, 0x9b, 0x5c, 0x59, +0x01, 0x00, 0x00, 0x00, 0x74, 0x8b, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xa9, 0x8a, 0x43, 0x9d, +0x39, 0xfe, 0x00, 0x22, 0x64, 0x21, 0x20, 0x00, 0xfe, 0xf2, 0xe6, 0xfd, 0x20, 0x00, 0xfe, 0xf2, +0xd3, 0xfd, 0x70, 0xbd, 0xf0, 0xb5, 0x06, 0x00, 0x35, 0x00, 0xff, 0x35, 0x00, 0x20, 0x41, 0x35, +0x85, 0xb0, 0x03, 0x90, 0x28, 0x6b, 0x02, 0x90, 0x08, 0x68, 0x2c, 0x00, 0x20, 0x34, 0x0a, 0x28, +0x74, 0xd0, 0x0b, 0xe0, 0x48, 0x44, 0x00, 0x04, 0x70, 0xef, 0x00, 0xc0, 0x18, 0xee, 0x00, 0xc0, +0x98, 0x33, 0x01, 0xc0, 0xff, 0xff, 0x00, 0x00, 0x6c, 0xf4, 0x00, 0xc0, 0x0d, 0xdc, 0x80, 0x1c, +0x2f, 0xd0, 0x01, 0x28, 0x2b, 0xd0, 0x0b, 0x28, 0x63, 0xd1, 0xe9, 0x69, 0x30, 0x00, 0x64, 0x30, +0x81, 0x42, 0x2c, 0xd1, 0x58, 0x36, 0xee, 0x61, 0x29, 0xe0, 0x37, 0x00, 0x34, 0x37, 0x25, 0x28, +0x28, 0xd0, 0x26, 0x28, 0x01, 0xd0, 0x27, 0x28, 0x53, 0xd1, 0x30, 0x00, 0xff, 0x30, 0x25, 0x30, +0xfe, 0xf2, 0xf8, 0xfd, 0xe8, 0x69, 0xb8, 0x42, 0x05, 0xd0, 0x01, 0x21, 0x02, 0x98, 0x00, 0x22, +0x09, 0x03, 0x01, 0xf0, 0x28, 0xfd, 0xef, 0x61, 0x00, 0x27, 0x38, 0x00, 0x27, 0x70, 0xf9, 0xf7, +0x5c, 0xf8, 0xfb, 0xf7, 0x5f, 0xfe, 0xfc, 0xf7, 0xfd, 0xf8, 0x27, 0x71, 0x2e, 0xe0, 0x00, 0x20, +0x60, 0x70, 0xfa, 0x48, 0x07, 0x22, 0x00, 0x68, 0x40, 0x21, 0x19, 0xf0, 0xeb, 0xfb, 0x03, 0x98, +0x05, 0xb0, 0xf0, 0xbd, 0xe8, 0x69, 0xb8, 0x42, 0x03, 0xd1, 0x30, 0x00, 0xff, 0xf7, 0x82, 0xff, +0x1c, 0xe0, 0x1a, 0xf0, 0xa2, 0xfe, 0x00, 0x28, 0x11, 0xd1, 0x60, 0x70, 0x01, 0x20, 0x20, 0x70, +0xf9, 0xf7, 0x3b, 0xf8, 0x02, 0x98, 0x15, 0xf0, 0x15, 0xfa, 0x13, 0x22, 0x00, 0x21, 0x01, 0x92, +0x02, 0x00, 0x00, 0x91, 0x02, 0x98, 0x01, 0x21, 0x00, 0x23, 0xf8, 0xf7, 0x56, 0xfe, 0xd9, 0x20, +0x80, 0x5d, 0x00, 0x28, 0x02, 0xd0, 0x09, 0x20, 0x01, 0xf0, 0x3f, 0xfe, 0x01, 0x20, 0xa0, 0x70, +0xe9, 0x69, 0x30, 0x00, 0x02, 0xf3, 0x4f, 0xfd, 0xd1, 0xe7, 0xff, 0xe7, 0x01, 0x20, 0xe0, 0x70, +0xcd, 0xe7, 0x03, 0x91, 0xcb, 0xe7, 0xf0, 0xb5, 0x06, 0x00, 0x35, 0x00, 0xff, 0x35, 0x41, 0x35, +0x00, 0x20, 0x85, 0xb0, 0x2b, 0x00, 0x03, 0x90, 0x28, 0x6b, 0x28, 0x33, 0x02, 0x90, 0x08, 0x68, +0x1c, 0x00, 0x03, 0x22, 0x01, 0x27, 0x08, 0x3c, 0x22, 0x28, 0x04, 0x93, 0x3d, 0xd0, 0x30, 0xdc, +0x09, 0x28, 0x7d, 0xd0, 0x25, 0xdc, 0x80, 0x1c, 0x40, 0xd0, 0x01, 0x28, 0x79, 0xd1, 0x00, 0x20, +0x20, 0x70, 0x60, 0x70, 0xf8, 0xf7, 0x2a, 0xfc, 0xa8, 0x62, 0x02, 0x98, 0xc0, 0x68, 0xc0, 0x04, +0x34, 0xd5, 0x02, 0x98, 0x40, 0x7a, 0x03, 0x28, 0x01, 0xd0, 0x01, 0x28, 0x2e, 0xd1, 0x1a, 0xf0, +0x4c, 0xfe, 0x00, 0x28, 0x2a, 0xd1, 0x01, 0x20, 0xf8, 0xf7, 0xe7, 0xff, 0xc4, 0x49, 0x88, 0x69, +0x49, 0x69, 0x08, 0x43, 0x03, 0xd1, 0x1b, 0xf0, 0xef, 0xf9, 0x00, 0x28, 0x1e, 0xd0, 0x27, 0x70, +0x24, 0xe0, 0x0a, 0x28, 0x73, 0xd0, 0x21, 0x28, 0xd8, 0xd1, 0x20, 0x78, 0x01, 0x28, 0x3d, 0xd1, +0x13, 0xe0, 0x25, 0x28, 0x6d, 0xd0, 0x26, 0x28, 0x3b, 0xd0, 0x27, 0x28, 0x39, 0xd0, 0x29, 0x28, +0xcc, 0xd1, 0xb7, 0x48, 0xc1, 0x69, 0x49, 0x1c, 0xc1, 0x61, 0x20, 0x78, 0x01, 0x28, 0x17, 0xd1, +0x60, 0x78, 0x41, 0x1c, 0x02, 0x28, 0x61, 0x70, 0x08, 0xd9, 0x22, 0x70, 0xaf, 0x48, 0x07, 0x22, +0x00, 0x68, 0x40, 0x21, 0x19, 0xf0, 0x56, 0xfb, 0x03, 0x98, 0x69, 0xe7, 0x02, 0x98, 0x15, 0xf0, +0x91, 0xf9, 0x13, 0x22, 0x00, 0x21, 0x01, 0x92, 0x02, 0x00, 0x00, 0x91, 0x01, 0x21, 0x10, 0xe0, +0x02, 0x28, 0xf1, 0xd1, 0x60, 0x78, 0x41, 0x1c, 0x02, 0x28, 0x61, 0x70, 0x01, 0xd9, 0x22, 0x70, +0x56, 0xe0, 0x02, 0x98, 0x15, 0xf0, 0x7e, 0xf9, 0x13, 0x22, 0x00, 0x21, 0x01, 0x92, 0x02, 0x00, +0x00, 0x91, 0x02, 0x98, 0x00, 0x23, 0xf8, 0xf7, 0xc0, 0xfd, 0xdd, 0xe7, 0x02, 0x28, 0xdb, 0xd1, +0x46, 0xe0, 0x30, 0x00, 0xff, 0x30, 0x25, 0x30, 0xfe, 0xf2, 0x1c, 0xfd, 0x01, 0x20, 0x01, 0xf0, +0xc3, 0xff, 0x01, 0xf0, 0x15, 0xfe, 0x30, 0x00, 0x34, 0x30, 0xe8, 0x61, 0x00, 0x20, 0x01, 0xe0, +0x3f, 0xe0, 0x48, 0xe0, 0xf8, 0xf7, 0x81, 0xff, 0x20, 0x78, 0x03, 0x28, 0x06, 0xd1, 0x02, 0x98, +0x08, 0xf0, 0x8e, 0xfd, 0x00, 0x28, 0x01, 0xd1, 0x20, 0x71, 0x25, 0xe0, 0x00, 0x20, 0x20, 0x70, +0xfb, 0xf7, 0x78, 0xfd, 0xfc, 0xf7, 0x16, 0xf8, 0x04, 0x98, 0xf8, 0xf7, 0xca, 0xfb, 0x00, 0x20, +0x20, 0x71, 0xa7, 0x70, 0xe9, 0x69, 0x30, 0x00, 0x02, 0xf3, 0x95, 0xfc, 0xac, 0xe7, 0x28, 0xe0, +0xff, 0xe7, 0x83, 0x49, 0x00, 0x20, 0x48, 0x61, 0x88, 0x61, 0x20, 0x78, 0x03, 0x28, 0x0f, 0xd1, +0x00, 0x20, 0xf8, 0xf7, 0x5a, 0xff, 0xf8, 0xf7, 0xa0, 0xff, 0x00, 0x28, 0x03, 0xd1, 0x04, 0xf0, +0x6a, 0xfd, 0x01, 0x28, 0x04, 0xdd, 0x00, 0x20, 0x60, 0x70, 0x02, 0x20, 0x20, 0x70, 0xa8, 0xe7, +0x04, 0x98, 0xf8, 0xf7, 0xa6, 0xfb, 0x01, 0x20, 0x01, 0xf0, 0x7e, 0xff, 0x01, 0xf0, 0xd0, 0xfd, +0xd7, 0xe7, 0xe9, 0x69, 0x30, 0x00, 0x64, 0x30, 0x81, 0x42, 0x85, 0xd1, 0x58, 0x36, 0xee, 0x61, +0x82, 0xe7, 0xe7, 0x70, 0x80, 0xe7, 0x03, 0x91, 0x7e, 0xe7, 0x10, 0xb5, 0x6c, 0x4c, 0xe4, 0x1d, +0x01, 0xf0, 0x75, 0xfc, 0x00, 0x28, 0x0c, 0xd0, 0x6a, 0x48, 0x00, 0x88, 0x00, 0x28, 0x08, 0xd0, +0x20, 0x78, 0x00, 0x07, 0x05, 0xd1, 0xe0, 0x1f, 0xc0, 0x78, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, +0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0x10, 0xb5, 0x61, 0x4c, 0x63, 0x48, 0xe4, 0x1d, 0x00, 0x6b, +0x1b, 0xf0, 0xd6, 0xfe, 0x00, 0x28, 0x02, 0xd0, 0x20, 0x78, 0x00, 0x07, 0x03, 0xd1, 0x5c, 0x48, +0xc0, 0x78, 0x00, 0x28, 0x05, 0xd0, 0x5b, 0x48, 0x00, 0x88, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, +0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0xf8, 0xb5, 0x0a, 0x00, 0x01, 0x00, 0x04, 0x00, 0xff, 0x31, +0x10, 0x68, 0x41, 0x31, 0x26, 0x00, 0x0d, 0x6b, 0xe0, 0x36, 0x10, 0x28, 0x25, 0xd0, 0x2f, 0xdc, +0x02, 0x28, 0x74, 0xd0, 0x1b, 0xdc, 0x80, 0x1c, 0x40, 0xd0, 0xe7, 0x1d, 0xf9, 0x37, 0x01, 0x28, +0x3e, 0xd0, 0x03, 0x28, 0x6c, 0xd1, 0x28, 0x00, 0x1e, 0xf0, 0x5a, 0xe9, 0xff, 0xf7, 0xcb, 0xff, +0x00, 0x28, 0x03, 0xd1, 0xff, 0xf7, 0xb1, 0xff, 0x00, 0x28, 0x62, 0xd0, 0x20, 0x00, 0x01, 0xf0, +0xf5, 0xfb, 0x04, 0x20, 0x0d, 0xf0, 0x40, 0xfa, 0x21, 0x00, 0x7c, 0x31, 0x6a, 0xe0, 0x0d, 0x28, +0x71, 0xd0, 0x0f, 0x28, 0xe6, 0xd1, 0x01, 0x20, 0x30, 0x82, 0xe8, 0x68, 0xc0, 0x04, 0x6a, 0xd5, +0x30, 0x8a, 0x00, 0x28, 0x67, 0xd1, 0x00, 0x21, 0x28, 0x00, 0x01, 0xf0, 0xa1, 0xfb, 0x15, 0xe0, +0x23, 0x00, 0x34, 0x33, 0x23, 0x28, 0x77, 0xd0, 0x09, 0xdc, 0x11, 0x28, 0xed, 0xd0, 0x12, 0x28, +0x76, 0xd1, 0x01, 0x21, 0x49, 0x02, 0x28, 0x00, 0x1e, 0xf0, 0x26, 0xe9, 0x06, 0xe0, 0x24, 0x28, +0x57, 0xd0, 0x28, 0x28, 0x6c, 0xd1, 0x2f, 0x48, 0x41, 0x88, 0x01, 0x80, 0x00, 0x20, 0xf8, 0xbd, +0x20, 0x00, 0xff, 0x30, 0x61, 0x30, 0x00, 0x25, 0x00, 0x90, 0x85, 0x70, 0x29, 0x41, 0x04, 0xe5, +0x01, 0x00, 0x00, 0x00, 0x70, 0x8f, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xfa, 0x50, 0x90, 0xf1, +0xf8, 0xf7, 0xdc, 0xfa, 0x01, 0x20, 0x01, 0xf0, 0x7c, 0xff, 0x35, 0x82, 0x3d, 0x65, 0x00, 0x20, +0x7d, 0x65, 0xf8, 0xf7, 0xa4, 0xfe, 0x26, 0x48, 0x05, 0x60, 0x26, 0x48, 0xc0, 0x34, 0x05, 0x80, +0x20, 0x7e, 0x00, 0x28, 0x02, 0xd0, 0x25, 0x76, 0xfb, 0xf7, 0x03, 0xf8, 0x00, 0x98, 0x00, 0x79, +0x00, 0x28, 0x04, 0xd0, 0x12, 0x20, 0x01, 0xf0, 0xaa, 0xfc, 0x00, 0x98, 0x05, 0x71, 0x06, 0x20, +0x0d, 0xf0, 0xec, 0xf9, 0x1c, 0x48, 0x00, 0x22, 0x00, 0x68, 0x69, 0x21, 0x02, 0xf3, 0x33, 0xfa, +0xce, 0xe7, 0x15, 0xe0, 0x36, 0xe0, 0x13, 0x49, 0x01, 0x20, 0x88, 0x61, 0x02, 0x20, 0x01, 0xf0, +0xb5, 0xfe, 0x03, 0x20, 0x0d, 0xf0, 0xda, 0xf9, 0x00, 0x20, 0x30, 0x82, 0x08, 0xf3, 0x0a, 0xfe, +0x79, 0x65, 0x21, 0x00, 0x58, 0x31, 0x38, 0x65, 0x20, 0x00, 0x02, 0xf3, 0x9e, 0xfb, 0xb7, 0xe7, +0x28, 0x00, 0x1e, 0xf0, 0xd8, 0xe8, 0xb3, 0xe7, 0xff, 0xe7, 0x20, 0x00, 0xff, 0x30, 0x25, 0x30, +0xfe, 0xf2, 0xf2, 0xfb, 0xf4, 0xe7, 0xcb, 0x61, 0x21, 0x00, 0x28, 0x31, 0xec, 0xe7, 0x0d, 0xe0, +0x6c, 0xf4, 0x00, 0xc0, 0x70, 0xef, 0x00, 0xc0, 0x98, 0x33, 0x01, 0xc0, 0xc8, 0x44, 0x00, 0x04, +0xac, 0xf0, 0x00, 0xc0, 0x48, 0xf0, 0x00, 0xc0, 0x18, 0xee, 0x00, 0xc0, 0xcb, 0x61, 0x21, 0x00, +0x1c, 0x31, 0xd9, 0xe7, 0x10, 0x00, 0xf8, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0xff, 0x30, 0x41, 0x30, +0x25, 0x00, 0x00, 0x6b, 0xff, 0x35, 0x61, 0x35, 0x00, 0x90, 0x08, 0x68, 0x26, 0x00, 0x2f, 0x00, +0x34, 0x36, 0x3c, 0x3f, 0x02, 0x28, 0x39, 0xd0, 0x15, 0xdc, 0x80, 0x1c, 0x5b, 0xd0, 0x01, 0x28, +0x5d, 0xd1, 0x00, 0x20, 0x01, 0xf0, 0x08, 0xff, 0x00, 0x20, 0x01, 0xf0, 0x02, 0xff, 0x28, 0x79, +0x00, 0x28, 0x04, 0xd0, 0x12, 0x20, 0x01, 0xf0, 0x42, 0xfc, 0x00, 0x20, 0x28, 0x71, 0x00, 0x20, +0x01, 0xf0, 0x5c, 0xfe, 0x45, 0xe0, 0x12, 0x28, 0x04, 0xd0, 0x28, 0x28, 0x47, 0xd1, 0x01, 0x20, +0xa8, 0x71, 0x3e, 0xe0, 0xfb, 0xf7, 0x20, 0xfc, 0xfb, 0xf7, 0xbe, 0xfe, 0x00, 0x20, 0xf8, 0xf7, +0x16, 0xfe, 0x38, 0x00, 0xfe, 0xf2, 0xa0, 0xfb, 0x20, 0x00, 0xf8, 0x30, 0xfe, 0xf2, 0x9c, 0xfb, +0xfc, 0x49, 0x00, 0x20, 0x08, 0x63, 0xff, 0xf7, 0x90, 0xfb, 0x00, 0x98, 0x1e, 0xf0, 0x72, 0xe8, +0x01, 0x21, 0x00, 0x98, 0x49, 0x02, 0x1e, 0xf0, 0x6a, 0xe8, 0x1e, 0xe0, 0xfb, 0xf7, 0x04, 0xfc, +0xfb, 0xf7, 0xa2, 0xfe, 0x1a, 0xf0, 0x5b, 0xfc, 0x01, 0x28, 0x03, 0xd0, 0xf1, 0x48, 0x80, 0x69, +0x00, 0x28, 0x0f, 0xd1, 0x00, 0x98, 0x00, 0x21, 0x01, 0xf0, 0xc4, 0xfa, 0x38, 0x00, 0xfe, 0xf2, +0x7b, 0xfb, 0x00, 0x22, 0x64, 0x21, 0x38, 0x00, 0xfe, 0xf2, 0x28, 0xfb, 0x38, 0x00, 0xfe, 0xf2, +0x15, 0xfb, 0x02, 0xe0, 0x00, 0x98, 0x1e, 0xf0, 0x4e, 0xe8, 0x31, 0x00, 0x20, 0x00, 0x02, 0xf3, +0x0c, 0xfb, 0x00, 0x20, 0xf8, 0xbd, 0x01, 0x20, 0x01, 0xf0, 0xae, 0xfe, 0xf9, 0xe7, 0x08, 0x00, +0xf8, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x08, 0x00, 0x21, 0x00, 0x02, 0x68, 0xff, 0x31, 0x26, 0x00, +0x41, 0x31, 0x58, 0x36, 0x0f, 0x2a, 0x67, 0xd0, 0x1e, 0xdc, 0x0b, 0x2a, 0x64, 0xd0, 0x16, 0xdc, +0x92, 0x1c, 0x61, 0xd0, 0x01, 0x2a, 0x28, 0xd0, 0x05, 0x2a, 0x25, 0xd1, 0xd6, 0x4d, 0x28, 0x78, +0xff, 0x28, 0x07, 0xd0, 0x01, 0x00, 0xd5, 0x48, 0x6a, 0x46, 0x00, 0x68, 0xf7, 0xf7, 0xb8, 0xff, +0xff, 0x20, 0x28, 0x70, 0xe8, 0x20, 0x00, 0x5d, 0x02, 0x28, 0x47, 0xd1, 0x44, 0xe0, 0x0c, 0x2a, +0x4a, 0xd0, 0x0e, 0x2a, 0x10, 0xd1, 0x47, 0xe0, 0x23, 0x2a, 0x4b, 0xd0, 0x04, 0xdc, 0x15, 0x2a, +0x42, 0xd0, 0x1a, 0x2a, 0x08, 0xd1, 0x3f, 0xe0, 0x24, 0x2a, 0x3f, 0xd0, 0x29, 0x2a, 0x03, 0xd1, +0xc4, 0x4a, 0x51, 0x6a, 0x49, 0x1c, 0x51, 0x62, 0xf8, 0xbd, 0x25, 0x00, 0xff, 0x35, 0xc1, 0x48, +0x00, 0x27, 0x61, 0x35, 0xaf, 0x70, 0x87, 0x61, 0x07, 0x61, 0x47, 0x61, 0x01, 0x20, 0xf8, 0xf7, +0x8e, 0xfd, 0xfb, 0xf7, 0x91, 0xfb, 0xda, 0x20, 0x07, 0x53, 0x28, 0x79, 0x00, 0x28, 0x03, 0xd0, +0x12, 0x20, 0x01, 0xf0, 0x9c, 0xfb, 0x2f, 0x71, 0x68, 0x79, 0x00, 0x28, 0x03, 0xd0, 0x02, 0x20, +0x01, 0xf0, 0xb4, 0xfd, 0x10, 0xe0, 0xff, 0xf7, 0xe0, 0xfb, 0x00, 0x28, 0x14, 0xd1, 0xb4, 0x48, +0x08, 0x22, 0x00, 0x6e, 0x39, 0x00, 0x10, 0x40, 0x79, 0x40, 0x08, 0x43, 0x0c, 0xd1, 0x01, 0x20, +0x01, 0xf0, 0xa4, 0xfd, 0x01, 0xf0, 0xf6, 0xfb, 0x31, 0x00, 0x12, 0xe0, 0x04, 0x28, 0xfb, 0xd1, +0xa8, 0x49, 0xc8, 0x6e, 0x40, 0x1c, 0xc8, 0x66, 0x00, 0x20, 0xf8, 0xbd, 0xce, 0x61, 0x21, 0x00, +0x28, 0x31, 0x06, 0xe0, 0xa3, 0x4a, 0x10, 0x6f, 0x40, 0x1c, 0x10, 0x67, 0xce, 0x61, 0x21, 0x00, +0x1c, 0x31, 0x20, 0x00, 0x02, 0xf3, 0x81, 0xfa, 0xee, 0xe7, 0x10, 0xb5, 0xf9, 0xf7, 0x04, 0xfc, +0x00, 0x28, 0x01, 0xd0, 0xf9, 0xf7, 0x28, 0xfa, 0x10, 0xbd, 0xfe, 0xb5, 0x02, 0x00, 0xff, 0x32, +0x06, 0x00, 0x41, 0x32, 0x10, 0x6b, 0x00, 0x90, 0x0b, 0x68, 0x34, 0x00, 0xff, 0x34, 0x25, 0x34, +0x30, 0x00, 0x01, 0x94, 0x64, 0x30, 0x64, 0x3c, 0x35, 0x00, 0x27, 0x00, 0x02, 0x90, 0x00, 0x20, +0xe0, 0x35, 0xa0, 0x37, 0x14, 0x2b, 0x7e, 0xd0, 0x0f, 0xdc, 0x92, 0x4a, 0x9b, 0x1c, 0x12, 0x7a, +0x13, 0xf3, 0x10, 0xee, 0x14, 0xcf, 0x4a, 0x96, 0x96, 0x96, 0xd2, 0x96, 0x96, 0x96, 0x96, 0x96, +0x96, 0x96, 0xe8, 0xfe, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0x96, 0x1c, 0x2b, 0x6c, 0xd0, 0x2c, 0xdc, +0x15, 0x2b, 0x1a, 0xd0, 0x83, 0x48, 0x16, 0x2b, 0x00, 0x69, 0x66, 0xd0, 0x1a, 0x2b, 0x7e, 0xd0, +0x1b, 0x2b, 0x7d, 0xd1, 0x7f, 0x4d, 0x00, 0x28, 0x2d, 0xd0, 0xfb, 0xf7, 0x5a, 0xff, 0x00, 0x28, +0x29, 0xd1, 0x60, 0x6a, 0x69, 0x69, 0x88, 0x42, 0xfa, 0xd1, 0x60, 0x8b, 0x01, 0x28, 0x22, 0xd8, +0xe0, 0x6a, 0x00, 0x28, 0xf4, 0xd1, 0x01, 0xf0, 0x4b, 0xfb, 0x01, 0xf0, 0xa0, 0xfb, 0x00, 0x28, +0xee, 0xd1, 0xff, 0xf7, 0xd3, 0xfa, 0x00, 0x28, 0x7e, 0xd0, 0x76, 0x48, 0x01, 0x7a, 0x00, 0x29, +0x7a, 0xd1, 0x00, 0x69, 0x00, 0x28, 0xfb, 0xd1, 0x16, 0xe1, 0x1d, 0x2b, 0x75, 0xd0, 0x34, 0x00, +0x58, 0x34, 0x23, 0x2b, 0x72, 0xd0, 0x24, 0x2b, 0x71, 0xd0, 0x28, 0x2b, 0xd1, 0xd1, 0xb8, 0x71, +0x30, 0x00, 0xff, 0xf7, 0x7d, 0xfa, 0x77, 0xe1, 0x00, 0x20, 0xb8, 0x70, 0xf8, 0xf7, 0x0e, 0xf9, +0x78, 0x79, 0x00, 0x28, 0x04, 0xd0, 0x02, 0x20, 0x01, 0xf0, 0x10, 0xfd, 0x00, 0x20, 0x78, 0x71, +0x38, 0x79, 0x00, 0x28, 0x04, 0xd0, 0x12, 0x20, 0x01, 0xf0, 0xe9, 0xfa, 0x00, 0x20, 0x38, 0x71, +0xb8, 0x79, 0x00, 0x28, 0x09, 0xd0, 0x00, 0x20, 0xb8, 0x71, 0x30, 0x00, 0xff, 0xf7, 0x60, 0xfa, +0x5b, 0x48, 0x80, 0x30, 0x00, 0x88, 0x00, 0x28, 0xdd, 0xd1, 0x01, 0x20, 0xfb, 0xf7, 0x72, 0xfa, +0x00, 0x26, 0xa6, 0x83, 0x26, 0x62, 0x66, 0x62, 0x56, 0x48, 0x6e, 0x82, 0x2e, 0x82, 0x86, 0x70, +0x55, 0x48, 0x06, 0x60, 0x02, 0xe0, 0x67, 0xe0, 0xbd, 0xe0, 0x20, 0xe1, 0x2d, 0xd2, 0xc2, 0x48, +0x01, 0x00, 0x00, 0x00, 0x6c, 0x93, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x45, 0x95, 0xb5, 0x42, +0x53, 0x48, 0x06, 0x80, 0x53, 0x48, 0x06, 0x60, 0x53, 0x48, 0x01, 0x27, 0x00, 0x68, 0x32, 0x00, +0x46, 0x21, 0x02, 0xf3, 0x52, 0xf8, 0x00, 0x28, 0x02, 0xd1, 0x28, 0x7a, 0x02, 0x28, 0x11, 0xd1, +0x4d, 0x48, 0x2e, 0x72, 0x00, 0x68, 0x00, 0x22, 0x69, 0x21, 0x02, 0xf3, 0x46, 0xf8, 0x00, 0x28, +0x01, 0xe0, 0x18, 0xe1, 0x2c, 0xe1, 0x05, 0xd1, 0x01, 0x21, 0x00, 0x98, 0x00, 0x22, 0x09, 0x03, +0x01, 0xf0, 0x55, 0xf9, 0xff, 0xf7, 0x3b, 0xff, 0x00, 0x28, 0x00, 0xd0, 0x09, 0x27, 0x00, 0x98, +0x1d, 0xf0, 0xfe, 0xee, 0x00, 0x28, 0x04, 0xd0, 0x01, 0x21, 0x00, 0x98, 0xc9, 0x06, 0x1d, 0xf0, +0xe8, 0xee, 0x3e, 0x48, 0x01, 0x68, 0x01, 0x29, 0x0b, 0xd1, 0x03, 0xe0, 0xff, 0xe0, 0x7c, 0xe0, +0x06, 0xe1, 0x01, 0xe1, 0x06, 0x60, 0x3a, 0x48, 0x07, 0x22, 0x00, 0x68, 0x02, 0x21, 0x19, 0xf0, +0x0d, 0xf8, 0x00, 0x20, 0xf8, 0xf7, 0x6d, 0xfc, 0x38, 0x00, 0xf8, 0xf7, 0x19, 0xf8, 0x60, 0x8b, +0x00, 0x28, 0x01, 0xd0, 0x01, 0xf0, 0xea, 0xfa, 0x20, 0x7e, 0x00, 0x28, 0x02, 0xd0, 0x26, 0x76, +0xfa, 0xf7, 0xc9, 0xfd, 0xf2, 0xe0, 0x01, 0xf0, 0xa5, 0xfa, 0xef, 0xe0, 0x29, 0x7a, 0x02, 0x29, +0xf8, 0xd1, 0x04, 0x00, 0x28, 0x72, 0x00, 0x98, 0x00, 0x22, 0xc9, 0x02, 0x01, 0xf0, 0x17, 0xf9, +0x01, 0x20, 0xf7, 0xf7, 0xfd, 0xff, 0x23, 0x48, 0x04, 0x60, 0xdf, 0xe0, 0x01, 0xf0, 0xce, 0xfa, +0x01, 0x20, 0xf7, 0xf7, 0xf5, 0xff, 0xd9, 0xe0, 0x1b, 0x4d, 0x00, 0x2a, 0xe2, 0xd1, 0xe0, 0x6a, +0x00, 0x28, 0x1b, 0xd0, 0x1a, 0xf0, 0x0c, 0xfc, 0x00, 0x28, 0x02, 0xd0, 0xe8, 0x68, 0x00, 0x28, +0x14, 0xd0, 0x00, 0x98, 0x00, 0x21, 0x01, 0xf0, 0x07, 0xf9, 0x04, 0xe0, 0x64, 0xe0, 0x61, 0xe0, +0x56, 0xe0, 0x8f, 0xe0, 0x40, 0xe0, 0x01, 0x98, 0xfe, 0xf2, 0xb8, 0xf9, 0x01, 0x98, 0x00, 0x22, +0x64, 0x21, 0xfe, 0xf2, 0x65, 0xf9, 0x01, 0x98, 0xfe, 0xf2, 0x52, 0xf9, 0x05, 0x20, 0xf7, 0xf7, +0xcf, 0xff, 0x05, 0x48, 0x01, 0x69, 0x21, 0x62, 0x40, 0x69, 0x60, 0x62, 0xe0, 0x6a, 0x00, 0x28, +0x18, 0xd0, 0x01, 0xf0, 0x9b, 0xfa, 0xa9, 0xe0, 0x70, 0xef, 0x00, 0xc0, 0xe2, 0x55, 0x00, 0x04, +0x68, 0xf4, 0x00, 0xc0, 0x18, 0x33, 0x01, 0xc0, 0xc4, 0x33, 0x01, 0xc0, 0xac, 0xf0, 0x00, 0xc0, +0x48, 0xf0, 0x00, 0xc0, 0xb4, 0xf0, 0x00, 0xc0, 0x18, 0xee, 0x00, 0xc0, 0xb0, 0xf0, 0x00, 0xc0, +0x6c, 0xf4, 0x00, 0xc0, 0x01, 0xf0, 0x99, 0xfa, 0x90, 0xe0, 0x01, 0x21, 0x28, 0x72, 0x00, 0x98, +0x00, 0x22, 0x09, 0x03, 0x01, 0xf0, 0xbb, 0xf8, 0x88, 0xe0, 0x01, 0x98, 0xfe, 0xf2, 0x7e, 0xf9, +0xff, 0x48, 0x01, 0x21, 0xc1, 0x62, 0x11, 0xe0, 0x00, 0x2a, 0x7f, 0xd1, 0x05, 0x20, 0xf7, 0xf7, +0x97, 0xff, 0xfc, 0x48, 0x01, 0x69, 0x21, 0x62, 0x40, 0x69, 0x60, 0x62, 0x01, 0xf0, 0x81, 0xfa, +0x00, 0x28, 0x73, 0xd1, 0xff, 0xf7, 0xb4, 0xf9, 0x00, 0x28, 0xc2, 0xd0, 0x02, 0x99, 0x6a, 0xe0, +0x01, 0x98, 0xfe, 0xf2, 0x63, 0xf9, 0x08, 0xf3, 0x67, 0xfb, 0xf2, 0x1d, 0xf9, 0x32, 0x51, 0x65, +0x10, 0x65, 0x63, 0xe0, 0x01, 0x20, 0x28, 0x82, 0x08, 0x68, 0x11, 0x28, 0x5e, 0xd0, 0x0f, 0x28, +0x13, 0xd1, 0xf8, 0xf7, 0x0e, 0xfc, 0x00, 0x28, 0x03, 0xd0, 0x00, 0x98, 0x00, 0x21, 0x01, 0xf0, +0x93, 0xf8, 0x01, 0x98, 0xfe, 0xf2, 0x4a, 0xf9, 0x01, 0x98, 0x00, 0x22, 0x64, 0x21, 0xfe, 0xf2, +0xf7, 0xf8, 0x01, 0x98, 0xfe, 0xf2, 0xe4, 0xf8, 0x48, 0xe0, 0x10, 0x28, 0x12, 0xd1, 0x68, 0x8a, +0x40, 0x1c, 0x00, 0x04, 0x00, 0x0c, 0x68, 0x82, 0x29, 0x8a, 0x00, 0x29, 0x0a, 0xd1, 0x03, 0x28, +0x08, 0xd2, 0xf8, 0xf7, 0xee, 0xfb, 0x00, 0x28, 0x04, 0xd0, 0x00, 0x98, 0x00, 0x21, 0x01, 0xf0, +0x73, 0xf8, 0x33, 0xe0, 0xd8, 0x48, 0xc0, 0x68, 0x00, 0x28, 0x02, 0xd0, 0x01, 0x20, 0xf7, 0xf7, +0x47, 0xff, 0xa0, 0x8b, 0x01, 0x21, 0x08, 0x43, 0xa0, 0x83, 0x01, 0x98, 0xfe, 0xf2, 0x1e, 0xf9, +0x24, 0xe0, 0xd0, 0x49, 0x4a, 0x69, 0x00, 0x2a, 0x20, 0xd0, 0x00, 0x28, 0x1e, 0xd0, 0x48, 0x79, +0x01, 0x28, 0x1b, 0xd1, 0xff, 0xf7, 0x5c, 0xf9, 0x00, 0x28, 0x17, 0xd0, 0xfb, 0xf7, 0xcb, 0xfd, +0x01, 0x28, 0xa3, 0xd1, 0x12, 0xe0, 0xc7, 0x49, 0x01, 0x20, 0x48, 0x71, 0x0e, 0xe0, 0x04, 0xf0, +0xd2, 0xfb, 0x00, 0x28, 0x99, 0xd0, 0x09, 0xe0, 0x31, 0x00, 0x28, 0x31, 0xd4, 0x61, 0x02, 0xe0, +0x31, 0x00, 0x1c, 0x31, 0xd4, 0x61, 0x30, 0x00, 0x02, 0xf3, 0x99, 0xf8, 0x00, 0x20, 0xfe, 0xbd, +0x08, 0x00, 0xfe, 0xbd, 0xf0, 0xb5, 0x05, 0x00, 0x00, 0x20, 0x8d, 0xb0, 0x02, 0x90, 0x28, 0x00, +0xff, 0x30, 0x41, 0x30, 0x0c, 0x90, 0x00, 0x6b, 0x03, 0x90, 0x28, 0x00, 0x0b, 0x68, 0x58, 0x30, +0x0b, 0x90, 0x0c, 0x38, 0x0a, 0x90, 0xb4, 0x30, 0x09, 0x90, 0x60, 0x30, 0x08, 0x90, 0xb3, 0x48, +0x07, 0x90, 0x28, 0x00, 0xff, 0x30, 0x25, 0x30, 0x06, 0x90, 0x2e, 0x00, 0x2c, 0x38, 0x2c, 0x00, +0xab, 0x4f, 0x0a, 0x00, 0xe0, 0x36, 0xc0, 0x34, 0x10, 0x2b, 0x05, 0x90, 0x23, 0xd0, 0x0e, 0xdc, +0xa8, 0x48, 0x9b, 0x1c, 0x00, 0x69, 0x13, 0xf3, 0x20, 0xec, 0x12, 0xfc, 0x35, 0x32, 0x32, 0x32, +0xfb, 0x32, 0x32, 0x32, 0x32, 0x32, 0xfa, 0xf9, 0x1e, 0x1e, 0x1e, 0xf8, 0xf7, 0x32, 0xa0, 0x48, +0x20, 0x2b, 0xc0, 0x6a, 0x7e, 0xd0, 0x14, 0xdc, 0x15, 0x2b, 0xe7, 0xd0, 0x0c, 0xdc, 0x11, 0x2b, +0x79, 0xd0, 0x12, 0x2b, 0x1b, 0xd1, 0xa0, 0x8b, 0x40, 0x07, 0x80, 0x0f, 0x01, 0x28, 0x16, 0xd1, +0x08, 0x98, 0x01, 0x21, 0x01, 0x71, 0xc7, 0xe1, 0x16, 0x2b, 0xfc, 0xd0, 0x1a, 0x2b, 0x0e, 0xd1, +0xc2, 0xe1, 0x29, 0x00, 0x64, 0x31, 0x23, 0x2b, 0x66, 0xd0, 0x24, 0x2b, 0x71, 0xd0, 0x28, 0x2b, +0x70, 0xd0, 0x29, 0x2b, 0x03, 0xd1, 0x8f, 0x48, 0x81, 0x6a, 0x49, 0x1c, 0x81, 0x62, 0x10, 0x00, +0x0d, 0xb0, 0xf0, 0xbd, 0x08, 0x99, 0x89, 0x78, 0x00, 0x29, 0x30, 0xd0, 0x08, 0x98, 0xc0, 0x78, +0x00, 0x28, 0x06, 0xd0, 0x08, 0x99, 0x00, 0x20, 0xc8, 0x70, 0x0a, 0x20, 0x01, 0xf0, 0x11, 0xf9, +0xa2, 0xe1, 0xa0, 0x8b, 0x01, 0x21, 0x08, 0x43, 0xa0, 0x83, 0x05, 0x98, 0xfe, 0xf2, 0x7e, 0xf8, +0x83, 0x4d, 0x05, 0x98, 0x00, 0x22, 0x29, 0x00, 0xfe, 0xf2, 0x2a, 0xf8, 0x05, 0x98, 0xfe, 0xf2, +0x17, 0xf8, 0x08, 0x99, 0x00, 0x20, 0x88, 0x70, 0xa1, 0x8b, 0x89, 0x07, 0xc3, 0xd4, 0xf8, 0x62, +0xa0, 0x8b, 0x02, 0x21, 0x08, 0x43, 0xa0, 0x83, 0x03, 0x98, 0x00, 0x22, 0x09, 0x03, 0x00, 0xf0, +0x9e, 0xff, 0x05, 0x98, 0xfe, 0xf2, 0x62, 0xf8, 0x00, 0x22, 0x29, 0x00, 0xff, 0xe0, 0x0c, 0x9a, +0x00, 0x21, 0x91, 0x61, 0x31, 0x82, 0x71, 0x82, 0x60, 0x63, 0x6e, 0x4a, 0xa1, 0x83, 0xd1, 0x68, +0x01, 0x20, 0x40, 0x03, 0x81, 0x42, 0x02, 0xd1, 0x00, 0x20, 0x11, 0x00, 0xc8, 0x60, 0x1a, 0xf0, +0x20, 0xf9, 0x04, 0x90, 0x01, 0x20, 0xf8, 0xf7, 0xbc, 0xfa, 0x66, 0x48, 0x41, 0x69, 0x80, 0x69, +0x01, 0x43, 0x18, 0xd0, 0x04, 0x98, 0x00, 0x28, 0x1d, 0xd1, 0x03, 0x98, 0xd0, 0xa3, 0xdc, 0x94, +0x01, 0x00, 0x00, 0x00, 0x68, 0x97, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x16, 0x4f, 0x66, 0x2e, +0x01, 0x21, 0x00, 0xf0, 0x83, 0xff, 0x02, 0xe0, 0xf3, 0xe0, 0x88, 0xe0, 0x6c, 0xe1, 0x06, 0x98, +0xfe, 0xf2, 0x36, 0xf8, 0x06, 0x98, 0x00, 0x22, 0x64, 0x21, 0xfd, 0xf2, 0xe3, 0xff, 0x06, 0x98, +0xfd, 0xf2, 0xd0, 0xff, 0x0d, 0xe0, 0x4f, 0xe1, 0x4a, 0xe1, 0xff, 0xf7, 0xdc, 0xf8, 0x00, 0x28, +0x03, 0xd0, 0x0c, 0x98, 0x01, 0x21, 0x81, 0x61, 0xe1, 0xe7, 0xa0, 0x8b, 0x01, 0x21, 0x08, 0x43, +0xa0, 0x83, 0x1a, 0xf0, 0x5f, 0xfa, 0x00, 0x28, 0x02, 0xd0, 0x01, 0x20, 0x02, 0x90, 0x33, 0xe0, +0x30, 0x7a, 0x02, 0x28, 0x01, 0xd1, 0x0b, 0x99, 0x55, 0xe1, 0x4f, 0x48, 0x00, 0x22, 0x00, 0x68, +0x4a, 0x21, 0x01, 0xf3, 0x2c, 0xfe, 0x00, 0x28, 0x05, 0xd1, 0x47, 0x48, 0x01, 0x21, 0xc0, 0x68, +0x09, 0x03, 0x88, 0x42, 0x20, 0xd1, 0xa0, 0x8b, 0xc0, 0x07, 0x06, 0xd1, 0x07, 0x98, 0x40, 0x8a, +0x00, 0x28, 0x1d, 0xd1, 0xf8, 0x6a, 0x00, 0x28, 0x1a, 0xd1, 0x00, 0x20, 0xf8, 0x62, 0xa0, 0x8b, +0x02, 0x21, 0x08, 0x43, 0xa0, 0x83, 0x03, 0x98, 0x00, 0x22, 0x09, 0x03, 0x00, 0xf0, 0x29, 0xff, +0x05, 0x98, 0xfd, 0xf2, 0xed, 0xff, 0x3b, 0x49, 0x05, 0x98, 0x00, 0x22, 0xfd, 0xf2, 0x9a, 0xff, +0x05, 0x98, 0xfd, 0xf2, 0x87, 0xff, 0x03, 0xe0, 0xa0, 0x8b, 0x06, 0x21, 0x08, 0x43, 0xa0, 0x83, +0xa0, 0x8b, 0x07, 0x28, 0x20, 0xd1, 0x17, 0xf0, 0xa5, 0xff, 0x04, 0x00, 0x02, 0x98, 0x00, 0x28, +0x0a, 0xd0, 0xf8, 0xf7, 0x90, 0xfa, 0x00, 0x28, 0x0f, 0xd1, 0x0a, 0xe0, 0xa1, 0xe0, 0x3f, 0xe0, +0xc5, 0xe0, 0xb2, 0xe0, 0x13, 0xe1, 0x10, 0xe0, 0x03, 0x98, 0xff, 0xf7, 0x3d, 0xf8, 0x00, 0x28, +0x03, 0xd0, 0x20, 0x00, 0x17, 0xf0, 0x92, 0xff, 0xdc, 0xe0, 0x0a, 0x99, 0x28, 0x00, 0x01, 0xf3, +0x60, 0xff, 0x20, 0x00, 0x17, 0xf0, 0x8a, 0xff, 0xd8, 0xe0, 0x00, 0x20, 0xf8, 0x62, 0x05, 0x98, +0xfd, 0xf2, 0xb6, 0xff, 0x1c, 0x48, 0x40, 0x6e, 0x02, 0xf3, 0xe3, 0xf9, 0xce, 0xe0, 0xa1, 0x8b, +0xca, 0x07, 0xf1, 0xd1, 0x49, 0x07, 0x89, 0x0f, 0x01, 0x29, 0x0a, 0xd0, 0x00, 0x28, 0x08, 0xd1, +0x03, 0x98, 0xff, 0xf7, 0x19, 0xf8, 0x00, 0x28, 0x03, 0xd0, 0x06, 0x98, 0xfd, 0xf2, 0xa0, 0xff, +0xb8, 0xe0, 0x70, 0x8a, 0x40, 0x1c, 0x00, 0x04, 0x00, 0x0c, 0x70, 0x82, 0x31, 0x8a, 0x00, 0x29, +0x06, 0xd1, 0x03, 0x28, 0x04, 0xd2, 0x03, 0x98, 0x01, 0x21, 0x00, 0xf0, 0xd7, 0xfe, 0xad, 0xe0, +0x06, 0x98, 0xfd, 0xf2, 0x8d, 0xff, 0x08, 0xf3, 0x91, 0xf9, 0x09, 0x9a, 0x51, 0x65, 0x10, 0x65, +0xa0, 0x8b, 0xc1, 0x07, 0xc8, 0xd1, 0x01, 0x21, 0x08, 0x43, 0x07, 0x28, 0xa0, 0x83, 0x6d, 0xd0, +0xf8, 0x6a, 0x0b, 0xe0, 0xc8, 0x44, 0x00, 0x04, 0x70, 0xef, 0x00, 0xc0, 0xc4, 0x33, 0x01, 0xc0, +0x78, 0x33, 0x01, 0xc0, 0xb8, 0x0b, 0x00, 0x00, 0x18, 0xee, 0x00, 0xc0, 0x00, 0x28, 0x17, 0xd0, +0xf9, 0x48, 0x41, 0x6b, 0xf9, 0x48, 0x00, 0x69, 0x81, 0x42, 0x29, 0xd0, 0x00, 0x22, 0x00, 0x92, +0xf7, 0x4a, 0x17, 0xe0, 0x20, 0x00, 0x17, 0xf0, 0x31, 0xff, 0xf4, 0x49, 0x00, 0x20, 0x88, 0x61, +0x78, 0xe0, 0x05, 0x98, 0xfd, 0xf2, 0x0e, 0xff, 0x05, 0x98, 0xfd, 0xf2, 0xfb, 0xfe, 0x75, 0xe0, +0x07, 0x98, 0x40, 0x8a, 0x00, 0x28, 0x71, 0xd0, 0x07, 0x99, 0x00, 0x22, 0x00, 0x92, 0x09, 0x89, +0x48, 0x43, 0x02, 0x00, 0xe9, 0x4b, 0xeb, 0x48, 0x00, 0x21, 0x64, 0x33, 0x02, 0xf3, 0x16, 0xf9, +0x64, 0xe0, 0x00, 0x28, 0x04, 0xd1, 0x03, 0x98, 0xfe, 0xf7, 0xb6, 0xff, 0x00, 0x28, 0x59, 0xd1, +0x00, 0x20, 0xf8, 0x62, 0xa0, 0x8b, 0x02, 0x21, 0x08, 0x43, 0xa0, 0x83, 0x03, 0x98, 0x00, 0x22, +0x09, 0x03, 0x00, 0xf0, 0x6e, 0xfe, 0x05, 0x98, 0xfd, 0xf2, 0x32, 0xff, 0xde, 0x49, 0x00, 0x22, +0xcf, 0xe7, 0x01, 0x20, 0x30, 0x82, 0xf8, 0xf7, 0xe6, 0xf9, 0x00, 0x28, 0x03, 0xd0, 0x03, 0x98, +0x01, 0x21, 0x00, 0xf0, 0x6b, 0xfe, 0x06, 0x98, 0xfd, 0xf2, 0x22, 0xff, 0x06, 0x98, 0x00, 0x22, +0x64, 0x21, 0xfd, 0xf2, 0xcf, 0xfe, 0x06, 0x98, 0xbf, 0xe7, 0x05, 0x98, 0xfd, 0xf2, 0x18, 0xff, +0xa0, 0x8b, 0x06, 0x21, 0x08, 0x43, 0x07, 0x28, 0xa0, 0x83, 0x2f, 0xd1, 0x17, 0xf0, 0xda, 0xfe, +0x04, 0x00, 0x03, 0x98, 0xfe, 0xf7, 0x80, 0xff, 0x00, 0x28, 0xa3, 0xd1, 0x45, 0xe7, 0x1a, 0xf0, +0x49, 0xf9, 0x00, 0x28, 0x0f, 0xd0, 0xc9, 0x48, 0x00, 0x22, 0x00, 0x68, 0x46, 0x21, 0x01, 0xf3, +0x1e, 0xfd, 0x00, 0x28, 0x07, 0xd0, 0xc2, 0x48, 0x05, 0xf0, 0x88, 0xfc, 0x05, 0x22, 0x00, 0x21, +0xff, 0x20, 0xfb, 0xf7, 0xb8, 0xfe, 0x03, 0x98, 0x00, 0x21, 0x00, 0xf0, 0x37, 0xfe, 0x06, 0x98, +0xfd, 0xf2, 0xee, 0xfe, 0x06, 0x98, 0x00, 0x22, 0x64, 0x21, 0xfd, 0xf2, 0x9b, 0xfe, 0x06, 0x98, +0xfd, 0xf2, 0x88, 0xfe, 0x05, 0x20, 0x01, 0xf0, 0x8d, 0xf9, 0xcc, 0xe6, 0x00, 0x20, 0x49, 0xe6, +0x08, 0x99, 0x01, 0x20, 0x88, 0x71, 0xc6, 0xe6, 0xa2, 0x8b, 0x52, 0x07, 0x92, 0x0f, 0x01, 0x2a, +0x01, 0xd0, 0x00, 0x28, 0x02, 0xd0, 0x0c, 0x98, 0xc1, 0x61, 0x02, 0xe0, 0x0c, 0x99, 0x0b, 0x98, +0xc8, 0x61, 0x29, 0x00, 0x28, 0x31, 0x0e, 0xe0, 0xa2, 0x8b, 0x52, 0x07, 0x92, 0x0f, 0x01, 0x2a, +0x01, 0xd0, 0x00, 0x28, 0x02, 0xd0, 0x0c, 0x98, 0xc1, 0x61, 0x02, 0xe0, 0x0c, 0x99, 0x0b, 0x98, +0xc8, 0x61, 0x29, 0x00, 0x1c, 0x31, 0x28, 0x00, 0x01, 0xf3, 0x5b, 0xfe, 0xd6, 0xe7, 0x31, 0x7a, +0x02, 0x29, 0x00, 0xd0, 0x1d, 0xe6, 0xa1, 0x8b, 0x49, 0x07, 0x89, 0x0f, 0x03, 0x29, 0xf9, 0xd1, +0x9a, 0x4e, 0x00, 0x24, 0xb4, 0x61, 0x71, 0x69, 0x08, 0x43, 0x04, 0xd0, 0x08, 0xf3, 0xae, 0xf8, +0x09, 0x9a, 0x51, 0x65, 0x10, 0x65, 0x34, 0x61, 0x74, 0x61, 0x06, 0x98, 0xfd, 0xf2, 0xa0, 0xfe, +0x89, 0xe6, 0x10, 0xb5, 0xff, 0xf7, 0xbd, 0xfb, 0x04, 0x00, 0x08, 0xd1, 0x1a, 0xf0, 0x1d, 0xfb, +0x00, 0x28, 0x04, 0xd0, 0xfe, 0xf7, 0x47, 0xff, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x24, 0x20, 0x00, +0x10, 0xbd, 0x89, 0x48, 0x10, 0xb5, 0x89, 0x4c, 0x80, 0x30, 0x00, 0x6b, 0xe4, 0x1d, 0x1b, 0xf0, +0xb5, 0xf8, 0x00, 0x28, 0x02, 0xd0, 0x20, 0x78, 0x00, 0x07, 0x03, 0xd1, 0x83, 0x48, 0xc0, 0x78, +0x00, 0x28, 0x05, 0xd0, 0x86, 0x48, 0x00, 0x88, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, 0x10, 0xbd, +0x00, 0x20, 0x10, 0xbd, 0x10, 0xb5, 0x7d, 0x4c, 0xe4, 0x1d, 0x00, 0xf0, 0x26, 0xfe, 0x00, 0x28, +0x0c, 0xd0, 0x20, 0x78, 0x00, 0x07, 0x09, 0xd1, 0xe0, 0x1f, 0xc0, 0x78, 0x00, 0x28, 0x05, 0xd1, +0x7b, 0x48, 0x00, 0x88, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, +0x10, 0xb5, 0x72, 0x4c, 0xe4, 0x1d, 0xff, 0xf7, 0xac, 0xf9, 0x01, 0x28, 0x05, 0xd1, 0x20, 0x78, +0xc0, 0x43, 0x00, 0x07, 0x01, 0xd0, 0x01, 0x20, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0x70, 0xb5, +0x05, 0x00, 0x6a, 0x4c, 0xe4, 0x1d, 0xff, 0xf7, 0xeb, 0xff, 0x01, 0x28, 0x07, 0xd1, 0x28, 0x00, +0x12, 0xf3, 0x0b, 0xfa, 0x01, 0x21, 0x81, 0x40, 0x20, 0x78, 0x01, 0x42, 0x7c, 0x22, 0x89, 0xe3, +0x01, 0x00, 0x00, 0x00, 0x64, 0x9b, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xe2, 0x20, 0x13, 0x9a, +0x01, 0xd0, 0x00, 0x20, 0x70, 0xbd, 0x01, 0x20, 0x70, 0xbd, 0x03, 0xb5, 0x6b, 0x46, 0x60, 0x48, +0x19, 0x78, 0xc1, 0x71, 0x19, 0x79, 0x01, 0x72, 0x0c, 0xbd, 0x5d, 0x49, 0x10, 0xb5, 0x4a, 0x6b, +0x82, 0x42, 0x04, 0xd1, 0x00, 0x20, 0x48, 0x63, 0x17, 0x20, 0x00, 0xf0, 0xb6, 0xfe, 0x10, 0xbd, +0x57, 0x49, 0x10, 0xb5, 0x4a, 0x6b, 0x82, 0x42, 0x05, 0xd1, 0x00, 0x20, 0x08, 0x63, 0x48, 0x63, +0x03, 0x20, 0x00, 0xf0, 0xaa, 0xfe, 0x10, 0xbd, 0xf8, 0xb5, 0x94, 0x02, 0x00, 0x25, 0x06, 0x00, +0x0f, 0x00, 0x2b, 0x00, 0x22, 0x00, 0x12, 0xf3, 0x2e, 0xed, 0x3b, 0x00, 0xb0, 0x1a, 0xab, 0x41, +0x19, 0x00, 0x00, 0x19, 0x69, 0x41, 0xf8, 0xbd, 0x7c, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x68, 0x46, +0x0f, 0xf0, 0x6a, 0xfc, 0x00, 0x9a, 0x01, 0x9b, 0x12, 0x1b, 0xab, 0x41, 0x02, 0xd2, 0x01, 0x99, +0x00, 0x98, 0x7c, 0xbd, 0x00, 0x20, 0x01, 0x00, 0x7c, 0xbd, 0x10, 0xb5, 0xf8, 0xf7, 0xac, 0xf8, +0x00, 0x28, 0x1e, 0xd0, 0x44, 0x48, 0x01, 0x69, 0x40, 0x69, 0x81, 0x42, 0x19, 0xd1, 0x40, 0x48, +0x00, 0x22, 0x00, 0x68, 0x08, 0x21, 0x01, 0xf3, 0x0c, 0xfc, 0x00, 0x28, 0x11, 0xd1, 0x07, 0xf0, +0xbb, 0xfd, 0x00, 0x28, 0x0d, 0xd1, 0x18, 0xf0, 0x05, 0xfc, 0x00, 0x28, 0x09, 0xd1, 0x18, 0xf0, +0x01, 0xfc, 0x00, 0x28, 0x05, 0xd1, 0x39, 0x48, 0x00, 0x78, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, +0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0x2e, 0x49, 0x10, 0xb5, 0x4a, 0x6b, 0x82, 0x42, 0x03, 0xd1, +0x00, 0x20, 0x48, 0x63, 0x00, 0xf0, 0x01, 0xf8, 0x10, 0xbd, 0x70, 0xb5, 0xff, 0xf7, 0xcd, 0xff, +0x01, 0x28, 0x3f, 0xd1, 0x2e, 0x48, 0xfe, 0xf2, 0xa0, 0xfe, 0x04, 0x00, 0x2c, 0x48, 0x08, 0x21, +0xfe, 0xf2, 0x2a, 0xfe, 0x05, 0x00, 0x2a, 0x48, 0x10, 0x21, 0xfe, 0xf2, 0x25, 0xfe, 0x28, 0x18, +0x84, 0x42, 0x2f, 0xd1, 0x27, 0x48, 0xfe, 0xf2, 0x90, 0xfe, 0x04, 0x00, 0x25, 0x48, 0x08, 0x21, +0xfe, 0xf2, 0x1a, 0xfe, 0x05, 0x00, 0x23, 0x48, 0x10, 0x21, 0xfe, 0xf2, 0x15, 0xfe, 0x28, 0x18, +0x84, 0x42, 0x1f, 0xd1, 0x20, 0x48, 0xfe, 0xf2, 0x80, 0xfe, 0x04, 0x00, 0x1e, 0x48, 0x08, 0x21, +0xfe, 0xf2, 0x0a, 0xfe, 0x05, 0x00, 0x1c, 0x48, 0x10, 0x21, 0xfe, 0xf2, 0x05, 0xfe, 0x28, 0x18, +0x84, 0x42, 0x0f, 0xd1, 0x19, 0x48, 0xfe, 0xf2, 0x70, 0xfe, 0x04, 0x00, 0x17, 0x48, 0x08, 0x21, +0xfe, 0xf2, 0xfa, 0xfd, 0x05, 0x00, 0x15, 0x48, 0x10, 0x21, 0xfe, 0xf2, 0xf5, 0xfd, 0x28, 0x18, +0x84, 0x42, 0x06, 0xd0, 0x06, 0x4c, 0x20, 0x6e, 0x00, 0x28, 0x02, 0xd1, 0xa0, 0x79, 0x00, 0x28, +0x1e, 0xd1, 0x19, 0x20, 0x00, 0xf0, 0x09, 0xfe, 0x70, 0xbd, 0x00, 0x00, 0x48, 0x44, 0x00, 0x04, +0x70, 0xef, 0x00, 0xc0, 0x88, 0x13, 0x00, 0x00, 0x73, 0x88, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, +0x18, 0xee, 0x00, 0xc0, 0x98, 0x33, 0x01, 0xc0, 0x00, 0xa0, 0x00, 0x80, 0x2c, 0x00, 0x00, 0x04, +0x30, 0x00, 0x00, 0x04, 0x6c, 0x00, 0x00, 0x04, 0x4c, 0x01, 0x00, 0x04, 0xfc, 0x00, 0x00, 0x04, +0x01, 0x20, 0xf7, 0xf7, 0x81, 0xfb, 0xa0, 0x79, 0x40, 0x1e, 0xa0, 0x71, 0xff, 0x49, 0xff, 0x20, +0xf5, 0x30, 0xfe, 0xf7, 0x3f, 0xfd, 0xd7, 0xe7, 0x10, 0xb5, 0xff, 0xf7, 0xdd, 0xfe, 0x00, 0x28, +0x08, 0xd0, 0xf7, 0xf7, 0xd0, 0xff, 0x00, 0x28, 0x04, 0xd1, 0x07, 0xf3, 0x51, 0xff, 0xf8, 0x4a, +0xd1, 0x60, 0x90, 0x60, 0x10, 0xbd, 0xf6, 0x49, 0x01, 0x20, 0x80, 0x39, 0x48, 0x71, 0x70, 0x47, +0x00, 0x22, 0x10, 0xb5, 0xf7, 0xf7, 0x82, 0xfd, 0x01, 0x28, 0x04, 0xd1, 0x07, 0xf3, 0x40, 0xff, +0xef, 0x4a, 0x51, 0x61, 0x10, 0x61, 0x10, 0xbd, 0x70, 0xb5, 0x06, 0x00, 0xec, 0x4c, 0x0d, 0x00, +0x61, 0x69, 0x20, 0x69, 0x00, 0x23, 0x59, 0x40, 0x58, 0x40, 0x08, 0x43, 0xac, 0xd0, 0x08, 0x34, +0x0f, 0xcc, 0x12, 0x1a, 0x8b, 0x41, 0xa7, 0xd2, 0xf7, 0xf7, 0xa5, 0xff, 0x00, 0x28, 0xa3, 0xd1, +0xff, 0xf7, 0xaa, 0xfe, 0x00, 0x28, 0x9f, 0xd0, 0x00, 0xf0, 0xd1, 0xff, 0x00, 0x28, 0x9b, 0xd0, +0xe0, 0x48, 0x98, 0x3c, 0x00, 0x88, 0x00, 0x28, 0x02, 0xd0, 0x20, 0x6e, 0x00, 0x28, 0x93, 0xd1, +0xfb, 0xf7, 0xcd, 0xf9, 0x01, 0x28, 0x8f, 0xd0, 0x00, 0x2d, 0x04, 0xd0, 0x00, 0x21, 0x30, 0x00, +0xff, 0xf7, 0xc6, 0xff, 0x88, 0xe7, 0x17, 0xf0, 0xcf, 0xfc, 0x05, 0x00, 0xd6, 0x48, 0x00, 0x22, +0x00, 0x68, 0x46, 0x21, 0x01, 0xf3, 0x1d, 0xfb, 0x00, 0x28, 0x02, 0xd0, 0x01, 0x20, 0x60, 0x70, +0x02, 0xe0, 0x1b, 0x20, 0x00, 0xf0, 0x81, 0xfd, 0x28, 0x00, 0x17, 0xf0, 0xc1, 0xfc, 0x73, 0xe7, +0xf0, 0xb5, 0x05, 0x00, 0x2e, 0x00, 0xff, 0x36, 0x00, 0x20, 0x41, 0x36, 0x85, 0xb0, 0x03, 0x90, +0x30, 0x6b, 0x02, 0x90, 0x08, 0x68, 0x2a, 0x00, 0x34, 0x00, 0x00, 0x27, 0x34, 0x32, 0x20, 0x34, +0x25, 0x28, 0x1c, 0xd0, 0x0a, 0xdc, 0x80, 0x1c, 0xc0, 0x35, 0x00, 0x28, 0x39, 0xd0, 0x01, 0x28, +0x13, 0xd0, 0x0b, 0x28, 0x3f, 0xd1, 0x01, 0x20, 0x68, 0x76, 0x39, 0xe0, 0x26, 0x28, 0x01, 0xd0, +0x27, 0x28, 0x38, 0xd1, 0xf2, 0x61, 0x00, 0x20, 0x27, 0x70, 0xf7, 0xf7, 0x3e, 0xff, 0xfa, 0xf7, +0x41, 0xfd, 0xfa, 0xf7, 0xdf, 0xff, 0x27, 0x71, 0x1e, 0xe0, 0x67, 0x70, 0x22, 0xe0, 0xf0, 0x69, +0x90, 0x42, 0x03, 0xd1, 0x28, 0x00, 0xfe, 0xf7, 0x6d, 0xfe, 0x15, 0xe0, 0x19, 0xf0, 0x8d, 0xfd, +0x00, 0x28, 0x11, 0xd1, 0x01, 0x20, 0x67, 0x70, 0x20, 0x70, 0xf7, 0xf7, 0x26, 0xff, 0x02, 0x98, +0x14, 0xf0, 0x00, 0xf9, 0x13, 0x22, 0x00, 0x21, 0x01, 0x92, 0x02, 0x00, 0x00, 0x91, 0x02, 0x98, +0x01, 0x21, 0x00, 0x23, 0xf7, 0xf7, 0x41, 0xfd, 0xf1, 0x69, 0x28, 0x00, 0x01, 0xf3, 0x43, 0xfc, +0x06, 0xe0, 0x6f, 0x76, 0xa5, 0x48, 0x07, 0x22, 0x00, 0x68, 0x40, 0x21, 0x18, 0xf0, 0xaa, 0xfa, +0x03, 0x98, 0x05, 0xb0, 0xf0, 0xbd, 0x03, 0x91, 0xfa, 0xe7, 0xfe, 0xb5, 0x04, 0x00, 0x25, 0x00, +0x00, 0x20, 0xff, 0x35, 0x41, 0x35, 0x01, 0x90, 0x28, 0x6b, 0x00, 0x90, 0x08, 0x68, 0x26, 0x00, +0xc0, 0x36, 0x22, 0x28, 0x6f, 0xd0, 0x08, 0xdc, 0x80, 0x1c, 0x64, 0xd0, 0x01, 0x28, 0x18, 0xd0, +0x0b, 0x28, 0x43, 0xd0, 0x23, 0x28, 0x66, 0xd0, 0x67, 0xe0, 0x22, 0x00, 0xff, 0x32, 0x69, 0x32, +0x27, 0x00, 0x34, 0x37, 0x25, 0x28, 0x02, 0x92, 0x3b, 0xd0, 0x26, 0x28, 0x0d, 0xd0, 0x27, 0x28, +0x0b, 0xd0, 0x29, 0x28, 0x59, 0xd1, 0x8a, 0x48, 0x80, 0x38, 0xc1, 0x69, 0x49, 0x1c, 0xc1, 0x61, +0x51, 0xe0, 0xf7, 0xf7, 0x0b, 0xfb, 0xa8, 0x62, 0x47, 0xe0, 0xfa, 0xf7, 0xdb, 0xfc, 0xfa, 0xf7, +0x79, 0xff, 0x20, 0x00, 0xff, 0x30, 0x25, 0x30, 0xfd, 0xf2, 0x5c, 0xfc, 0x06, 0x20, 0x00, 0xf0, +0x03, 0xff, 0x20, 0x00, 0xff, 0x30, 0x61, 0x30, 0x00, 0x21, 0x06, 0x00, 0x01, 0x70, 0x08, 0x00, +0xf7, 0xf7, 0xc3, 0xfe, 0x02, 0x98, 0xf7, 0xf7, 0x1c, 0xfb, 0xe8, 0x69, 0xb8, 0x42, 0x05, 0xd0, +0x01, 0x21, 0x00, 0x98, 0x00, 0x22, 0x09, 0x03, 0x00, 0xf0, 0x7d, 0xfb, 0x66, 0x09, 0x07, 0x4e, +0x01, 0x00, 0x00, 0x00, 0x60, 0x9f, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xb1, 0xfa, 0xc0, 0xf6, +0x00, 0x20, 0x30, 0x71, 0x39, 0x00, 0x20, 0x00, 0xef, 0x61, 0x01, 0xf3, 0xde, 0xfb, 0x1e, 0xe0, +0x01, 0x20, 0x70, 0x76, 0x21, 0xe0, 0x00, 0x20, 0x30, 0x76, 0x02, 0x98, 0xf7, 0xf7, 0x03, 0xfb, +0xe8, 0x69, 0xb8, 0x42, 0x06, 0xd1, 0x01, 0x20, 0xf7, 0xf7, 0xa1, 0xfe, 0x20, 0x00, 0xfe, 0xf7, +0xdb, 0xfd, 0x05, 0xe0, 0x70, 0x7e, 0x00, 0x28, 0x02, 0xd0, 0x09, 0x20, 0x00, 0xf0, 0xaf, 0xfc, +0xe9, 0x69, 0x20, 0x00, 0x01, 0xf3, 0xc1, 0xfb, 0x07, 0xe0, 0x00, 0x20, 0x70, 0x76, 0x64, 0x48, +0x07, 0x22, 0x00, 0x68, 0x40, 0x21, 0x18, 0xf0, 0x27, 0xfa, 0x01, 0x98, 0xfe, 0xbd, 0x01, 0x91, +0xfb, 0xe7, 0xf0, 0xb5, 0x05, 0x00, 0x08, 0x00, 0x29, 0x00, 0xff, 0x31, 0x41, 0x31, 0x0c, 0x6b, +0x58, 0x4f, 0x0a, 0x00, 0x2b, 0x00, 0x01, 0x68, 0x7c, 0x33, 0x80, 0x3f, 0x89, 0xb0, 0x17, 0x29, +0x07, 0x93, 0x1b, 0xd0, 0x1b, 0xdc, 0x03, 0x29, 0x73, 0xd0, 0x11, 0xdc, 0x89, 0x1c, 0x37, 0xd0, +0x01, 0x29, 0x2b, 0xd0, 0x04, 0x29, 0x6d, 0xd1, 0x28, 0x00, 0xfe, 0xf7, 0xa5, 0xfd, 0x01, 0x21, +0x00, 0x22, 0x09, 0x03, 0x20, 0x00, 0x00, 0xf0, 0x28, 0xfb, 0x29, 0x00, 0x34, 0x31, 0x5c, 0xe0, +0x0b, 0x29, 0xe6, 0xd0, 0x0c, 0x29, 0xe4, 0xd0, 0x16, 0x29, 0x5b, 0xd1, 0xf9, 0xe0, 0x01, 0x23, +0x1b, 0x29, 0xfb, 0xd0, 0x09, 0xdc, 0x2c, 0x00, 0x00, 0x26, 0x80, 0x34, 0x18, 0x29, 0x7d, 0xd0, +0x19, 0x29, 0x18, 0xd0, 0x1a, 0x29, 0x4d, 0xd1, 0xeb, 0xe0, 0x23, 0x29, 0x77, 0xd0, 0x24, 0x29, +0x48, 0xd1, 0x07, 0x98, 0x29, 0x00, 0xa0, 0x31, 0xd0, 0x61, 0x3e, 0xe0, 0xfe, 0xf7, 0xcd, 0xfb, +0xfe, 0xf7, 0xc3, 0xfb, 0xf8, 0x6d, 0x40, 0x1c, 0xf8, 0x65, 0x0a, 0x20, 0xb8, 0x71, 0xd3, 0xe0, +0xfa, 0xf7, 0xda, 0xfe, 0xd5, 0xe0, 0x35, 0x48, 0x00, 0x22, 0x00, 0x68, 0x1b, 0x21, 0x01, 0xf3, +0xda, 0xf9, 0x00, 0x28, 0x02, 0xd0, 0xfa, 0xf7, 0x2f, 0xfc, 0x25, 0xe0, 0x20, 0x6b, 0x01, 0x28, +0x10, 0xd1, 0xe0, 0x6a, 0x2b, 0x49, 0x01, 0x28, 0x0c, 0xd1, 0x08, 0x00, 0xc3, 0x69, 0x82, 0x69, +0xa0, 0x6c, 0xe1, 0x6c, 0x80, 0x1a, 0x99, 0x41, 0x03, 0xd3, 0x26, 0x48, 0x86, 0x61, 0xc6, 0x61, +0x26, 0x63, 0xe6, 0x62, 0xf8, 0x6b, 0x01, 0x28, 0x02, 0xd1, 0xfa, 0xf7, 0x15, 0xfc, 0xfe, 0x63, +0x07, 0xf3, 0xa0, 0xfd, 0xf9, 0x67, 0xb8, 0x67, 0xa2, 0x6b, 0xe3, 0x6b, 0x80, 0x1a, 0x99, 0x41, +0x02, 0xd2, 0x38, 0x6e, 0x00, 0x28, 0x06, 0xd0, 0x07, 0x99, 0x28, 0x00, 0x01, 0xf3, 0x2d, 0xfb, +0x9f, 0xe0, 0x85, 0xe0, 0x9e, 0xe0, 0xba, 0x6f, 0xa0, 0x6b, 0xfb, 0x6f, 0xe1, 0x6b, 0x80, 0x1a, +0x99, 0x41, 0xb8, 0x65, 0x17, 0xf0, 0x4a, 0xfb, 0x04, 0x90, 0x20, 0x6b, 0x01, 0x28, 0x32, 0xd0, +0x14, 0x49, 0xb8, 0x6d, 0x88, 0x42, 0x2e, 0xd3, 0x0f, 0x49, 0x06, 0x91, 0x09, 0x88, 0xc9, 0x02, +0x81, 0x42, 0x28, 0xd3, 0xfe, 0xf7, 0xc1, 0xfe, 0x01, 0x28, 0x03, 0xd1, 0x79, 0x69, 0x78, 0x6c, +0x88, 0x42, 0x20, 0xd1, 0xff, 0xf7, 0x08, 0xfd, 0x00, 0x28, 0x02, 0xd0, 0x38, 0x79, 0x00, 0x28, +0x19, 0xd1, 0xb8, 0x79, 0x00, 0x28, 0x16, 0xd0, 0x00, 0x22, 0x0d, 0xe0, 0x65, 0xe0, 0x6e, 0xe0, +0x3b, 0x9c, 0x00, 0x00, 0xf0, 0xef, 0x00, 0xc0, 0x98, 0x33, 0x01, 0xc0, 0x18, 0xee, 0x00, 0xc0, +0x6c, 0xf4, 0x00, 0xc0, 0x7c, 0x15, 0x00, 0x00, 0xfc, 0x48, 0x46, 0x21, 0x00, 0x68, 0x01, 0xf3, +0x6a, 0xf9, 0x00, 0x28, 0x0d, 0xd0, 0x04, 0x98, 0x17, 0xf0, 0x14, 0xfb, 0x0f, 0x20, 0x38, 0x63, +0xb8, 0x6d, 0xf7, 0x49, 0x00, 0x04, 0x00, 0x0c, 0xfe, 0xf7, 0x26, 0xfb, 0x7e, 0x61, 0x7e, 0x64, +0x4f, 0xe0, 0xf4, 0x48, 0x00, 0x88, 0x00, 0x28, 0x09, 0xd0, 0xf3, 0x48, 0x02, 0x21, 0xfe, 0xf2, +0x9d, 0xfb, 0x00, 0x28, 0x03, 0xd0, 0x04, 0x98, 0x17, 0xf0, 0xfc, 0xfa, 0x9c, 0xe7, 0xef, 0x48, +0xa2, 0x6b, 0x80, 0x6b, 0xe3, 0x6b, 0x10, 0x1a, 0xb3, 0x41, 0x02, 0x90, 0x03, 0x93, 0x7e, 0x61, +0x06, 0x20, 0x7e, 0x64, 0x00, 0xf0, 0xca, 0xfd, 0x01, 0xf3, 0x86, 0xfd, 0x06, 0x98, 0x00, 0x22, +0x00, 0x92, 0x00, 0x88, 0x7d, 0x22, 0x83, 0x02, 0xe4, 0x48, 0xd2, 0x00, 0x00, 0x68, 0x1e, 0x30, +0x01, 0x04, 0x09, 0x0c, 0x02, 0xa8, 0xfa, 0xf7, 0xbc, 0xfc, 0x00, 0x28, 0x04, 0x98, 0x04, 0xd1, +0x17, 0xf0, 0xd8, 0xfa, 0x01, 0xf3, 0x99, 0xfd, 0x76, 0xe7, 0x17, 0xf0, 0xd3, 0xfa, 0x18, 0xe0, +0xdb, 0x4c, 0x20, 0x78, 0xff, 0x28, 0xd1, 0xd0, 0x01, 0x00, 0xda, 0x48, 0x05, 0xaa, 0x00, 0x68, +0xf6, 0xf7, 0x6e, 0xff, 0xff, 0x20, 0x20, 0x70, 0x66, 0xe7, 0xe3, 0x62, 0x38, 0x6b, 0x0f, 0x28, +0x07, 0xd1, 0x3e, 0x63, 0xfe, 0xf7, 0xe9, 0xfa, 0xff, 0xf7, 0x21, 0xfd, 0x01, 0xe0, 0xc0, 0x35, +0x2b, 0x76, 0x00, 0x20, 0x09, 0xb0, 0xf0, 0xbd, 0xf0, 0xb5, 0x05, 0x00, 0x08, 0x00, 0x29, 0x00, +0xff, 0x31, 0x41, 0x31, 0x0a, 0x00, 0x09, 0x6b, 0x87, 0xb0, 0x01, 0x91, 0x01, 0x68, 0x2e, 0x00, +0x2c, 0x00, 0x88, 0x36, 0x80, 0x34, 0x18, 0x29, 0x7e, 0xd0, 0x7e, 0xdc, 0xc6, 0x4a, 0x02, 0x29, +0x52, 0x69, 0x7b, 0xd0, 0x7b, 0xdc, 0x89, 0x1c, 0x7a, 0xd0, 0x01, 0x29, 0x79, 0xd1, 0xf7, 0xf7, +0x6d, 0xf9, 0x28, 0x00, 0xff, 0x30, 0xbd, 0x4e, 0x61, 0x30, 0x81, 0x79, 0x00, 0x27, 0x80, 0x36, +0x00, 0x29, 0x06, 0xd0, 0x87, 0x71, 0x28, 0x00, 0xfe, 0xf7, 0xca, 0xfa, 0x30, 0x88, 0x00, 0x28, +0x68, 0xd0, 0xb9, 0x48, 0x00, 0x27, 0x07, 0x61, 0x47, 0x61, 0x87, 0x61, 0x47, 0x64, 0x01, 0x00, +0x47, 0x71, 0x80, 0x31, 0x87, 0x70, 0x8f, 0x60, 0xcf, 0x60, 0x0f, 0x61, 0x4f, 0x61, 0x47, 0x70, +0x07, 0x70, 0x07, 0x66, 0x07, 0xf3, 0xae, 0xfc, 0xaf, 0x4a, 0x80, 0x32, 0x03, 0xc2, 0x32, 0x88, +0xff, 0xf7, 0x84, 0xfc, 0xa0, 0x63, 0x06, 0x90, 0xe1, 0x63, 0xa8, 0x48, 0x05, 0x91, 0x80, 0x6f, +0x7d, 0x23, 0xa9, 0x49, 0xdb, 0x00, 0x58, 0x43, 0x80, 0x31, 0x0c, 0xc9, 0x39, 0x00, 0x80, 0x18, +0x06, 0x9a, 0x59, 0x41, 0x05, 0x9b, 0x80, 0x1a, 0x99, 0x41, 0x08, 0xd3, 0x30, 0x88, 0xa2, 0x6b, +0x80, 0x02, 0xe3, 0x6b, 0xc1, 0x17, 0x80, 0x18, 0x59, 0x41, 0xe1, 0x63, 0xa0, 0x63, 0x9b, 0x48, +0x7d, 0x27, 0x80, 0x6f, 0xff, 0x00, 0x47, 0x43, 0x9b, 0x48, 0xe1, 0x6b, 0x80, 0x30, 0x0c, 0xc8, +0x04, 0x91, 0xa0, 0x6b, 0x03, 0x90, 0x80, 0x1a, 0x99, 0x41, 0xc0, 0x1b, 0x00, 0x23, 0x96, 0x4f, +0x99, 0x41, 0x96, 0x49, 0xb8, 0x65, 0x88, 0x42, 0x02, 0x90, 0x0d, 0xd2, 0x30, 0x88, 0x03, 0x9a, +0x80, 0x02, 0x04, 0x9b, 0xc1, 0x17, 0x80, 0x18, 0x59, 0x41, 0xe1, 0x63, 0xa0, 0x63, 0x30, 0x88, +0x81, 0x02, 0x02, 0x98, 0x08, 0x18, 0xb8, 0x65, 0x8b, 0x48, 0x8d, 0x49, 0x80, 0x6d, 0x00, 0x04, +0x00, 0x0c, 0xfe, 0xf7, 0x41, 0xfa, 0x06, 0xe0, 0xc7, 0xe0, 0x6f, 0xe0, 0xce, 0xe0, 0x60, 0xe0, +0x8c, 0xe0, 0xc9, 0xe0, 0x8e, 0xe0, 0x81, 0x48, 0x7d, 0x23, 0xc0, 0x6f, 0xdb, 0x00, 0x58, 0x43, +0x22, 0x6d, 0x63, 0x6d, 0x80, 0x4f, 0x00, 0x21, 0x80, 0x18, 0x59, 0x41, 0x49, 0xc5, 0xa7, 0x8c, +0x01, 0x00, 0x00, 0x00, 0x5c, 0xa3, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x99, 0x6b, 0x45, 0x4b, +0x80, 0x37, 0x3a, 0x68, 0x7b, 0x68, 0x80, 0x1a, 0x99, 0x41, 0x0c, 0xd2, 0x79, 0x68, 0x38, 0x68, +0x61, 0x65, 0x20, 0x65, 0x02, 0x20, 0xfa, 0xf7, 0x5f, 0xfa, 0x78, 0x48, 0x81, 0x6b, 0x49, 0x1c, +0x81, 0x63, 0x01, 0x21, 0xc1, 0x63, 0x32, 0x88, 0xe1, 0x6b, 0xa0, 0x6b, 0xff, 0xf7, 0x20, 0xfc, +0xf9, 0x61, 0xb8, 0x61, 0x00, 0x26, 0xe3, 0x6b, 0xa2, 0x6b, 0x71, 0x40, 0x70, 0x40, 0x63, 0x64, +0x08, 0x43, 0x22, 0x64, 0x0f, 0xd0, 0x01, 0x20, 0x20, 0x63, 0xe0, 0x6a, 0x01, 0x28, 0x0a, 0xd1, +0xba, 0x69, 0xa0, 0x6c, 0xfb, 0x69, 0xe1, 0x6c, 0x80, 0x1a, 0x99, 0x41, 0x02, 0xd3, 0xbe, 0x61, +0xfe, 0x61, 0x26, 0x63, 0xe6, 0x62, 0x01, 0x22, 0x01, 0x98, 0x11, 0x03, 0x00, 0xf0, 0x47, 0xf9, +0xe0, 0x35, 0x28, 0x7a, 0x02, 0x28, 0x00, 0xd1, 0x2e, 0x72, 0x01, 0x98, 0x1c, 0xf0, 0xf0, 0xee, +0x00, 0x28, 0x04, 0xd0, 0x01, 0x21, 0x01, 0x98, 0xc9, 0x06, 0x1c, 0xf0, 0xda, 0xee, 0xfe, 0xf7, +0x38, 0xfd, 0x00, 0x28, 0x03, 0xd0, 0x01, 0x98, 0x00, 0x21, 0xff, 0xf7, 0xb5, 0xfc, 0x01, 0x20, +0xf7, 0xf7, 0x16, 0xf8, 0x69, 0xe0, 0x16, 0x29, 0x2f, 0xd0, 0x17, 0x29, 0x66, 0xd1, 0xfe, 0xf7, +0xe6, 0xf9, 0x52, 0x48, 0x01, 0x6e, 0x49, 0x1c, 0x01, 0x66, 0x41, 0x69, 0x41, 0x64, 0x3f, 0xe0, +0x1b, 0x29, 0x42, 0xd0, 0x12, 0xdc, 0x19, 0x29, 0x57, 0xd0, 0x1a, 0x29, 0x56, 0xd1, 0x4b, 0x4c, +0xe0, 0x78, 0x00, 0x28, 0x51, 0xd1, 0xf7, 0xf7, 0x70, 0xf8, 0x01, 0x28, 0x4d, 0xd1, 0x60, 0x71, +0xfe, 0xf7, 0x0f, 0xfd, 0x00, 0x28, 0x48, 0xd0, 0xa0, 0x78, 0x3d, 0xe0, 0x23, 0x29, 0x41, 0xd0, +0x24, 0x29, 0x43, 0xd1, 0x28, 0x00, 0x7c, 0x30, 0x29, 0x00, 0xa0, 0x31, 0xd0, 0x61, 0x20, 0xe0, +0x3e, 0x48, 0x42, 0x64, 0xfe, 0xf7, 0xbb, 0xf9, 0x37, 0xe0, 0x3c, 0x4c, 0x00, 0x2a, 0x34, 0xd0, +0x20, 0x69, 0x00, 0x28, 0x31, 0xd0, 0x60, 0x79, 0x01, 0x28, 0x2e, 0xd1, 0xff, 0xf7, 0xb9, 0xfb, +0x01, 0x28, 0x2a, 0xd1, 0xfa, 0xf7, 0x6f, 0xfe, 0x01, 0x28, 0x26, 0xd0, 0xe0, 0x78, 0x00, 0x28, +0x23, 0xd1, 0xfe, 0xf7, 0xa4, 0xf9, 0x60, 0x6d, 0x40, 0x1c, 0x60, 0x65, 0x60, 0x69, 0x60, 0x64, +0x31, 0x00, 0x28, 0x00, 0x01, 0xf3, 0x43, 0xf9, 0x17, 0xe0, 0xfe, 0xf7, 0xda, 0xfc, 0x00, 0x28, +0x13, 0xd0, 0xfa, 0xf7, 0x58, 0xfe, 0x00, 0x28, 0x0f, 0xd1, 0x28, 0x48, 0x01, 0x69, 0x00, 0x29, +0x0b, 0xd0, 0x01, 0x21, 0x81, 0x70, 0x40, 0x79, 0x00, 0x28, 0xe9, 0xd1, 0x05, 0xe0, 0x01, 0x20, +0xe0, 0x62, 0x02, 0xe0, 0x01, 0x20, 0xc0, 0x35, 0x28, 0x76, 0x00, 0x20, 0x07, 0xb0, 0xf0, 0xbd, +0x28, 0x00, 0xfe, 0xf7, 0x33, 0xfb, 0x01, 0x21, 0x01, 0x98, 0x00, 0x22, 0x09, 0x03, 0x00, 0xf0, +0xb6, 0xf8, 0x29, 0x00, 0x34, 0x31, 0xd4, 0xe7, 0x10, 0xb5, 0x04, 0x00, 0x08, 0x00, 0x22, 0x00, +0x09, 0x68, 0xff, 0x32, 0x41, 0x32, 0x89, 0x1c, 0x33, 0xd0, 0x01, 0x29, 0x32, 0xd1, 0xd8, 0x20, +0x00, 0x5d, 0x00, 0x28, 0x05, 0xd0, 0x20, 0x00, 0x88, 0x30, 0x21, 0x00, 0x94, 0x31, 0xd0, 0x61, +0x24, 0xe0, 0x0e, 0x49, 0x01, 0x20, 0x48, 0x72, 0x05, 0x48, 0x00, 0x22, 0x00, 0x68, 0x1b, 0x21, +0x00, 0xf3, 0x7b, 0xff, 0x00, 0x28, 0x17, 0xd0, 0x21, 0x00, 0x7c, 0x31, 0x16, 0xe0, 0x00, 0x00, +0x18, 0xee, 0x00, 0xc0, 0x95, 0x9b, 0x00, 0x00, 0x04, 0x36, 0x01, 0xc0, 0xb0, 0x00, 0x00, 0x04, +0x18, 0x33, 0x01, 0xc0, 0xe2, 0x55, 0x00, 0x04, 0x68, 0xf4, 0x00, 0xc0, 0x70, 0xef, 0x00, 0xc0, +0x88, 0x13, 0x00, 0x00, 0x7f, 0x9b, 0x00, 0x00, 0x21, 0x00, 0x70, 0x31, 0x20, 0x00, 0x01, 0xf3, +0xde, 0xf8, 0x00, 0x20, 0x10, 0xbd, 0xfe, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0x6a, 0x48, 0x14, 0x00, +0x41, 0x8b, 0x49, 0x1c, 0x41, 0x83, 0x19, 0xf0, 0xb6, 0xfd, 0x00, 0x28, 0x12, 0xd0, 0x31, 0x00, +0x28, 0x00, 0x0f, 0xf0, 0xfd, 0xff, 0x09, 0x21, 0x01, 0x40, 0x02, 0x22, 0x10, 0x40, 0x00, 0x2c, +0x02, 0xd0, 0x00, 0x28, 0x05, 0xd0, 0x00, 0x21, 0x02, 0x00, 0x28, 0x00, 0x00, 0x23, 0x00, 0xf0, +0x36, 0xfa, 0xfe, 0xbd, 0x31, 0x00, 0x28, 0x00, 0x0f, 0xf0, 0xea, 0xff, 0x80, 0x07, 0xf8, 0xd5, +0x00, 0x20, 0x6b, 0x46, 0x02, 0x90, 0x59, 0x7a, 0x01, 0x22, 0x11, 0x43, 0x59, 0x72, 0x00, 0x92, +0x02, 0x00, 0x01, 0x90, 0x02, 0x99, 0x28, 0x00, 0x07, 0x23, 0xf7, 0xf7, 0x9d, 0xfa, 0xfe, 0xbd, +0x52, 0x48, 0x10, 0xb5, 0x00, 0x68, 0x17, 0xf0, 0x1c, 0xff, 0x4f, 0x49, 0x8c, 0x39, 0x08, 0x00, +0x34, 0x38, 0x01, 0xf3, 0x8c, 0xf8, 0x4e, 0x48, 0x00, 0x21, 0x01, 0x61, 0x41, 0x61, 0x81, 0x61, +0x1e, 0x21, 0x41, 0x81, 0x10, 0xbd, 0x48, 0x49, 0x80, 0x31, 0x08, 0x63, 0x70, 0x47, 0x49, 0x48, +0xc1, 0x78, 0x82, 0x78, 0x09, 0x02, 0x11, 0x43, 0x06, 0xd0, 0x05, 0x29, 0x02, 0xd9, 0x46, 0x4a, +0x91, 0x42, 0x01, 0xd3, 0x45, 0x4a, 0x11, 0x60, 0x41, 0x78, 0x02, 0x78, 0x09, 0x02, 0x11, 0x43, +0x01, 0xd0, 0x3f, 0x4a, 0x51, 0x81, 0x41, 0x79, 0x02, 0x79, 0x09, 0x02, 0x11, 0x43, 0x01, 0xd0, +0x3f, 0x4a, 0x11, 0x80, 0xc1, 0x79, 0x83, 0x79, 0x0a, 0x02, 0x3e, 0x49, 0x1a, 0x43, 0x0a, 0x82, +0x41, 0x7b, 0x02, 0x7b, 0x08, 0x02, 0x3c, 0x49, 0x10, 0x43, 0x08, 0x80, 0x70, 0x47, 0x70, 0xb5, +0x0c, 0x00, 0x33, 0x4d, 0xe9, 0x68, 0x8c, 0x42, 0x01, 0xd1, 0x00, 0x2a, 0x02, 0xd0, 0x21, 0x00, +0x1c, 0xf0, 0x96, 0xed, 0xec, 0x60, 0x70, 0xbd, 0x7c, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0x08, 0x00, +0xf7, 0xf7, 0x27, 0xfb, 0x01, 0x24, 0x28, 0x00, 0x13, 0xf0, 0x00, 0xfd, 0x10, 0x22, 0x01, 0x92, +0x02, 0x00, 0x31, 0x00, 0x28, 0x00, 0x00, 0x23, 0x00, 0x94, 0xf7, 0xf7, 0x42, 0xf9, 0x7c, 0xbd, +0x70, 0xb5, 0x04, 0x00, 0xff, 0x30, 0x41, 0x30, 0x05, 0x6b, 0x05, 0x20, 0x00, 0xf0, 0x48, 0xfb, +0x1f, 0x49, 0x00, 0x20, 0x08, 0x64, 0x08, 0x66, 0x88, 0x63, 0x88, 0x64, 0xc8, 0x64, 0x08, 0x65, +0x48, 0x71, 0x19, 0xf0, 0x66, 0xf9, 0x00, 0x28, 0x03, 0xd1, 0x01, 0x21, 0x28, 0x00, 0xff, 0xf7, +0xd3, 0xff, 0x07, 0xf3, 0x91, 0xfa, 0x80, 0x34, 0x20, 0x64, 0x61, 0x64, 0x61, 0x65, 0x20, 0x65, +0x04, 0x20, 0x0b, 0xf0, 0x55, 0xfe, 0x01, 0x21, 0x00, 0x22, 0x09, 0x03, 0x28, 0x00, 0xff, 0xf7, +0xb6, 0xff, 0x70, 0xbd, 0x10, 0xb5, 0x0e, 0x49, 0x04, 0x00, 0x00, 0x20, 0x08, 0x64, 0x08, 0x66, +0x88, 0x63, 0x88, 0x64, 0xc8, 0x64, 0x08, 0x65, 0x48, 0x71, 0x20, 0x00, 0xff, 0x30, 0x41, 0x30, +0x00, 0x6b, 0x01, 0x21, 0xff, 0xf7, 0xb0, 0xff, 0x07, 0xf3, 0x6e, 0xfa, 0x80, 0x34, 0x20, 0x64, +0x61, 0x64, 0x61, 0x65, 0x20, 0x65, 0x10, 0xbd, 0x48, 0x44, 0x00, 0x04, 0x28, 0xf0, 0x00, 0xc0, +0x70, 0xef, 0x00, 0xc0, 0x06, 0x36, 0x01, 0xc0, 0xfd, 0xff, 0x00, 0x00, 0x1c, 0xf0, 0x00, 0xc0, +0x30, 0xf0, 0x00, 0xc0, 0x98, 0x33, 0x01, 0xc0, 0x3a, 0xf0, 0x00, 0xc0, 0x03, 0x20, 0x10, 0xb5, +0x02, 0xf0, 0x6a, 0xff, 0x10, 0xbd, 0x01, 0x20, 0x10, 0xb5, 0x02, 0xf0, 0x40, 0x2c, 0xbd, 0x59, +0x01, 0x00, 0x00, 0x00, 0x58, 0xa7, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xca, 0xb1, 0x96, 0x27, +0x65, 0xff, 0x10, 0xbd, 0x02, 0x20, 0x10, 0xb5, 0x02, 0xf0, 0x60, 0xff, 0x10, 0xbd, 0x10, 0xb5, +0xff, 0x48, 0x00, 0x88, 0x00, 0x28, 0x07, 0xd0, 0xfe, 0xf7, 0x8b, 0xfb, 0x00, 0x28, 0x03, 0xd1, +0xfe, 0xf7, 0x71, 0xfb, 0x00, 0x28, 0x01, 0xd0, 0x00, 0x20, 0x10, 0xbd, 0x01, 0x20, 0x10, 0xbd, +0xf8, 0xb5, 0x01, 0x25, 0xf7, 0x4c, 0xf8, 0x4e, 0x20, 0x79, 0xf8, 0x4f, 0x00, 0x28, 0x1c, 0xd0, +0xf0, 0x69, 0x40, 0x00, 0x40, 0x08, 0xf0, 0x61, 0x38, 0x00, 0x04, 0xf0, 0xaf, 0xfd, 0xfa, 0xf7, +0x0a, 0xf8, 0xf3, 0x49, 0x00, 0x28, 0x48, 0x61, 0x0c, 0xd1, 0x00, 0x25, 0x25, 0x71, 0xc8, 0x21, +0xe7, 0x60, 0x21, 0x61, 0x05, 0x21, 0x61, 0x81, 0xc4, 0x20, 0x65, 0x71, 0x60, 0x61, 0x0a, 0x20, +0xe0, 0x80, 0x02, 0xe0, 0x20, 0x79, 0x00, 0x28, 0x0e, 0xd1, 0xea, 0x48, 0x81, 0x68, 0x02, 0x0d, +0x91, 0x43, 0x81, 0x60, 0x38, 0x00, 0x04, 0xf0, 0x91, 0xfd, 0xf0, 0x69, 0x01, 0x21, 0xc9, 0x07, +0x08, 0x43, 0xf0, 0x61, 0xf9, 0xf7, 0xe7, 0xff, 0x28, 0x00, 0xf8, 0xbd, 0x70, 0xb5, 0xff, 0x21, +0xe1, 0x4d, 0xdb, 0x48, 0xf5, 0x31, 0x29, 0x80, 0x00, 0x21, 0x01, 0x80, 0x0a, 0x21, 0x84, 0x1c, +0x01, 0x82, 0x1e, 0x20, 0x20, 0x70, 0x00, 0x20, 0x60, 0x70, 0x01, 0x20, 0xa0, 0x70, 0x00, 0x20, +0xe0, 0x70, 0x21, 0x71, 0x60, 0x71, 0x1c, 0xf0, 0xd2, 0xec, 0xa0, 0x71, 0x00, 0x0a, 0xe0, 0x71, +0x04, 0x20, 0x20, 0x72, 0x00, 0x20, 0x60, 0x72, 0x03, 0x20, 0xa0, 0x72, 0x00, 0x20, 0xe0, 0x72, +0x28, 0x88, 0x20, 0x73, 0x00, 0x0a, 0x60, 0x73, 0x70, 0xbd, 0xf8, 0xb5, 0xf9, 0xf7, 0x0e, 0xff, +0xce, 0x48, 0x00, 0x25, 0x05, 0x80, 0xce, 0x48, 0xc6, 0x4c, 0x05, 0x70, 0xcd, 0x48, 0x05, 0x80, +0xcd, 0x48, 0x05, 0x60, 0xff, 0x20, 0x5a, 0x30, 0xa0, 0x63, 0x04, 0xf0, 0xa0, 0xfe, 0xcb, 0x49, +0x40, 0x00, 0x08, 0x5a, 0x20, 0x60, 0x01, 0x26, 0x65, 0x72, 0x26, 0x62, 0x7d, 0x27, 0x65, 0x63, +0xff, 0x00, 0xa5, 0x62, 0xe7, 0x61, 0x26, 0x63, 0xe5, 0x62, 0x05, 0xf0, 0x30, 0xf8, 0x20, 0x71, +0x32, 0x22, 0xe6, 0x80, 0xc2, 0x48, 0xe2, 0x60, 0x20, 0x61, 0xc2, 0x48, 0x60, 0x81, 0x66, 0x71, +0x25, 0x66, 0xc1, 0x48, 0x21, 0x00, 0x65, 0x66, 0x80, 0x31, 0x60, 0x61, 0x08, 0x00, 0xb3, 0x4b, +0x20, 0x38, 0x4d, 0x60, 0xc3, 0x81, 0x42, 0x81, 0x85, 0x81, 0x45, 0x82, 0x05, 0x81, 0x0a, 0x22, +0x05, 0x82, 0x82, 0x82, 0x0d, 0x80, 0xe7, 0x67, 0xa6, 0x67, 0xff, 0xf7, 0x8b, 0xfe, 0xfd, 0xf7, +0xf1, 0xfe, 0xff, 0xf7, 0x93, 0xff, 0xff, 0xf7, 0x5b, 0xff, 0x00, 0x20, 0xf8, 0xbd, 0x10, 0xb5, +0x04, 0x00, 0xff, 0xf7, 0x35, 0xff, 0x00, 0x28, 0x07, 0xd0, 0x02, 0x20, 0x1a, 0xf0, 0x16, 0xf9, +0xfc, 0xf7, 0x0a, 0xff, 0x00, 0x22, 0x21, 0x00, 0x02, 0xe0, 0xac, 0x48, 0x00, 0x22, 0x21, 0x00, +0x00, 0xf3, 0xf8, 0xfe, 0x10, 0xbd, 0xf1, 0xb5, 0x16, 0xf0, 0x3c, 0xff, 0x99, 0x4e, 0x07, 0x00, +0x75, 0x6e, 0x34, 0x6e, 0x00, 0x9a, 0x00, 0x21, 0x01, 0x20, 0x11, 0xf3, 0x6e, 0xee, 0x29, 0x43, +0x20, 0x43, 0x71, 0x66, 0x30, 0x66, 0x38, 0x00, 0x16, 0xf0, 0x30, 0xff, 0x00, 0x23, 0x29, 0x00, +0x20, 0x00, 0x59, 0x40, 0x58, 0x40, 0x08, 0x43, 0x0a, 0xd1, 0xff, 0xf7, 0x09, 0xff, 0x00, 0x28, +0x00, 0xd0, 0x02, 0x20, 0x1a, 0xf0, 0xea, 0xf8, 0x01, 0x21, 0x89, 0x06, 0x1c, 0xf0, 0x2a, 0xec, +0xf8, 0xbd, 0x0f, 0x20, 0xd7, 0xe7, 0x8a, 0x49, 0xca, 0x69, 0x90, 0x42, 0x03, 0xd1, 0x00, 0x20, +0xc8, 0x61, 0x15, 0x20, 0xcf, 0xe7, 0x70, 0x47, 0x10, 0xb5, 0x85, 0x4c, 0xe0, 0x69, 0x01, 0xf3, +0x70, 0xf9, 0x00, 0x20, 0xe0, 0x61, 0x10, 0xbd, 0xf8, 0xb5, 0x05, 0x00, 0x7d, 0x26, 0xf6, 0x00, +0x16, 0xf0, 0x00, 0xff, 0x07, 0x00, 0xff, 0xf7, 0xef, 0xff, 0x88, 0x49, 0x01, 0x20, 0x0a, 0x68, +0x58, 0x31, 0x8a, 0x42, 0x00, 0xd0, 0x00, 0x20, 0x00, 0x28, 0x1d, 0xd0, 0x75, 0x4c, 0x60, 0x34, +0x00, 0x2d, 0x02, 0xd0, 0xa5, 0x89, 0x00, 0x2d, 0x00, 0xd1, 0x65, 0x89, 0x19, 0xf0, 0x62, 0xf9, +0x00, 0x28, 0x03, 0xd0, 0xa0, 0x8a, 0x00, 0x28, 0x00, 0xd0, 0x05, 0x00, 0x20, 0x89, 0x00, 0x28, +0x00, 0xd0, 0x06, 0x00, 0x00, 0x22, 0x00, 0x92, 0x6d, 0x4b, 0x2a, 0x00, 0x72, 0x43, 0x78, 0x48, +0x00, 0x21, 0x1c, 0x33, 0x01, 0xf3, 0xda, 0xf8, 0x38, 0x00, 0x16, 0xf0, 0xd7, 0xfe, 0xf8, 0xbd, +0x64, 0x48, 0x00, 0x21, 0x60, 0x30, 0x81, 0x75, 0x08, 0x00, 0xc5, 0xe7, 0x64, 0x48, 0x08, 0xb5, +0xc0, 0x69, 0x00, 0x28, 0x0a, 0xd1, 0x5f, 0x48, 0x00, 0x22, 0x61, 0x4b, 0x60, 0x30, 0x00, 0x92, +0xc2, 0x89, 0x6b, 0x48, 0x00, 0x21, 0x1c, 0x33, 0x01, 0xf3, 0xc0, 0xf8, 0x08, 0xbd, 0x59, 0x48, +0x60, 0x30, 0x80, 0x7d, 0xb0, 0xe7, 0x5a, 0x48, 0xc0, 0x69, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x20, +0x70, 0x47, 0xff, 0xb5, 0x85, 0xb0, 0x0e, 0x00, 0x17, 0x00, 0x00, 0x25, 0xff, 0xf7, 0x90, 0xfe, +0x04, 0x00, 0xff, 0xf7, 0x92, 0xfe, 0x5d, 0x49, 0x00, 0x28, 0x06, 0xd0, 0x0a, 0x68, 0x08, 0x00, +0x58, 0x30, 0x82, 0x42, 0x01, 0xd1, 0x01, 0x20, 0x00, 0xe0, 0x00, 0x20, 0x02, 0x90, 0x00, 0x20, +0x00, 0x2c, 0x01, 0x90, 0x04, 0xd1, 0x55, 0x48, 0x09, 0x68, 0x34, 0x30, 0x81, 0x42, 0x2a, 0xd0, +0xfe, 0xf7, 0x17, 0xfa, 0x01, 0x28, 0x03, 0xd0, 0xfe, 0xf7, 0xfd, 0xf9, 0x01, 0x28, 0x24, 0xd1, +0x00, 0x2c, 0x22, 0xd1, 0x16, 0xf0, 0x86, 0xfe, 0x04, 0x00, 0x00, 0x2e, 0x08, 0xd1, 0x07, 0xf3, +0xbd, 0xf8, 0x4a, 0x4a, 0x80, 0x32, 0xd1, 0x64, 0x90, 0x64, 0x18, 0x20, 0xff, 0xf7, 0x3b, 0xff, +0xff, 0xf7, 0x4e, 0xf8, 0x01, 0x28, 0x0b, 0xd1, 0x46, 0x4d, 0x00, 0x2f, 0x01, 0xd1, 0x00, 0x20, +0x05, 0xe0, 0x00, 0x22, 0x05, 0x98, 0x11, 0x00, 0xf6, 0xf7, 0xe6, 0xfe, 0x01, 0x20, 0x28, 0x70, +0x20, 0x00, 0x16, 0xf0, 0x6b, 0xfe, 0x09, 0xb0, 0xf0, 0xbd, 0x02, 0x98, 0x3e, 0x49, 0x20, 0x43, +0x04, 0x91, 0x4a, 0xd0, 0x01, 0x20, 0x00, 0x2c, 0x05, 0xd1, 0x38, 0x49, 0xe0, 0x31, 0x09, 0x7a, +0x05, 0x29, 0x00, 0xd0, 0x00, 0x20, 0x35, 0x49, 0x02, 0x9a, 0xc0, 0x31, 0x00, 0x2a, 0x03, 0x91, +0x03, 0xd0, 0x03, 0x99, 0xcf, 0x62, 0x04, 0x99, 0x8e, 0x75, 0x39, 0x00, 0x31, 0x43, 0x01, 0xd1, +0x0c, 0x25, 0x32, 0xe0, 0x0b, 0x25, 0x00, 0x28, 0x2f, 0xd0, 0x00, 0x2e, 0x01, 0xd0, 0x09, 0x20, +0x00, 0xe0, 0x00, 0x20, 0x00, 0x2f, 0x01, 0xd0, 0x02, 0x21, 0x00, 0xe0, 0x00, 0x21, 0x01, 0x43, +0x01, 0x91, 0x19, 0xf0, 0xaf, 0xf8, 0x00, 0x28, 0x1a, 0xd0, 0x28, 0x48, 0x00, 0x68, 0x12, 0xf3, +0xe4, 0xe8, 0x02, 0x21, 0x01, 0x43, 0x01, 0x98, 0xfa, 0xf7, 0x11, 0xfe, 0x00, 0x28, 0x0f, 0xd1, +0x01, 0x98, 0xfb, 0xf7, 0x59, 0xf8, 0x00, 0x28, 0x0a, 0xd1, 0x01, 0x00, 0x05, 0x00, 0x00, 0x2c, +0x01, 0x90, 0x00, 0xd1, 0x0c, 0x25, 0x00, 0x2c, 0x07, 0xd1, 0x03, 0x98, 0xc1, 0x62, 0x04, 0xe0, +0x00, 0x2c, 0x02, 0xd1, 0x1a, 0x49, 0x01, 0x20, 0xc8, 0x60, 0x02, 0x98, 0xec, 0x3d, 0x4e, 0x07, +0x01, 0x00, 0x00, 0x00, 0x54, 0xab, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x3e, 0xde, 0xe3, 0x93, +0x00, 0x28, 0x04, 0xd0, 0x00, 0x2c, 0x02, 0xd1, 0x04, 0x99, 0x01, 0x98, 0x08, 0x82, 0x00, 0x2d, +0xa3, 0xd0, 0x29, 0xe0, 0x04, 0x36, 0x01, 0xc0, 0x18, 0x33, 0x01, 0xc0, 0x00, 0x21, 0x00, 0x80, +0x88, 0x13, 0x00, 0x00, 0x10, 0xf0, 0x00, 0xc0, 0x80, 0x28, 0x00, 0x80, 0x3a, 0xf0, 0x00, 0xc0, +0x48, 0xf0, 0x00, 0xc0, 0x34, 0xf0, 0x00, 0xc0, 0x38, 0xf0, 0x00, 0xc0, 0x3c, 0xf0, 0x00, 0xc0, +0xce, 0x74, 0x02, 0x00, 0x20, 0x4e, 0x00, 0x00, 0x83, 0x06, 0x00, 0x00, 0x0a, 0x1a, 0x00, 0x00, +0x88, 0x43, 0x00, 0x04, 0x4f, 0xa9, 0x00, 0x00, 0x74, 0xef, 0x00, 0xc0, 0x78, 0x33, 0x01, 0xc0, +0xc8, 0xee, 0x00, 0xc0, 0xc4, 0x33, 0x01, 0xc0, 0x28, 0x00, 0xff, 0xf7, 0x9e, 0xfe, 0x74, 0xe7, +0x70, 0xb5, 0x05, 0x00, 0xae, 0x48, 0xaf, 0x49, 0x00, 0x68, 0x09, 0x68, 0x08, 0x43, 0xae, 0x49, +0x09, 0x68, 0x08, 0x43, 0x2f, 0xd1, 0xfe, 0xf7, 0x56, 0xf9, 0x00, 0x28, 0x2b, 0xd1, 0xfe, 0xf7, +0x3c, 0xf9, 0x00, 0x28, 0x27, 0xd1, 0xfe, 0xf7, 0x5e, 0xff, 0xff, 0xf7, 0xb0, 0xfd, 0xa7, 0x4c, +0x00, 0x28, 0x21, 0xd0, 0x19, 0xf0, 0x7b, 0xfa, 0x00, 0x28, 0x1d, 0xd0, 0x19, 0xf0, 0x34, 0xf8, +0x00, 0x28, 0x03, 0xd1, 0xff, 0xf7, 0xad, 0xfd, 0x00, 0x28, 0x15, 0xd0, 0xa0, 0x48, 0x00, 0x68, +0x01, 0x28, 0x07, 0xd0, 0x9f, 0x48, 0x00, 0x88, 0x00, 0x28, 0x0d, 0xd0, 0x9e, 0x48, 0x00, 0x88, +0x00, 0x28, 0x09, 0xd0, 0x04, 0xf0, 0x11, 0xfe, 0x60, 0x8b, 0x01, 0x21, 0x40, 0x1c, 0x60, 0x83, +0x28, 0x00, 0x1c, 0xf0, 0xb2, 0xea, 0x70, 0xbd, 0x60, 0x8b, 0x00, 0x22, 0x40, 0x1c, 0x60, 0x83, +0x11, 0x00, 0x28, 0x00, 0x01, 0x23, 0xff, 0xf7, 0xe6, 0xfe, 0x70, 0xbd, 0x0a, 0x20, 0x54, 0xe6, +0x70, 0xb5, 0xf9, 0xf7, 0x29, 0xfa, 0x00, 0x28, 0x0c, 0xd0, 0x19, 0xf0, 0x48, 0xfa, 0x00, 0x28, +0x4f, 0xd0, 0xff, 0xf7, 0x74, 0xfd, 0x00, 0x28, 0x4b, 0xd0, 0xfd, 0xf7, 0x9b, 0xfd, 0x00, 0x28, +0x47, 0xd0, 0x44, 0xe0, 0x89, 0x48, 0x8a, 0x49, 0xc0, 0x68, 0x88, 0x42, 0x3f, 0xd0, 0x19, 0xf0, +0x36, 0xfa, 0x00, 0x28, 0x35, 0xd0, 0x00, 0x25, 0xff, 0xf7, 0x5c, 0xfd, 0x01, 0x24, 0x00, 0x28, +0x0c, 0xd0, 0x02, 0x20, 0x19, 0xf0, 0x3c, 0xff, 0xfc, 0xf7, 0x30, 0xfd, 0x02, 0x68, 0x21, 0x00, +0x40, 0x30, 0x82, 0x42, 0x00, 0xd0, 0x00, 0x21, 0x08, 0x00, 0x70, 0xbd, 0xff, 0xf7, 0x4f, 0xfd, +0x00, 0x28, 0x1c, 0xd0, 0x75, 0x49, 0x75, 0x4a, 0xc0, 0x39, 0x09, 0x68, 0x20, 0x00, 0x68, 0x3a, +0x91, 0x42, 0x00, 0xd0, 0x00, 0x20, 0x00, 0x28, 0x0a, 0xd1, 0x70, 0x4a, 0x80, 0x32, 0xd2, 0x6a, +0x00, 0x2a, 0x05, 0xd0, 0x6d, 0x4a, 0x20, 0x00, 0x5c, 0x3a, 0x91, 0x42, 0x00, 0xd0, 0x00, 0x20, +0x6a, 0x4a, 0x44, 0x3a, 0x91, 0x42, 0x00, 0xd0, 0x00, 0x24, 0x04, 0x43, 0x25, 0x00, 0x28, 0x00, +0x70, 0xbd, 0x6c, 0x48, 0x00, 0x7a, 0x03, 0x28, 0x01, 0xd0, 0x02, 0x28, 0x01, 0xd1, 0x00, 0x20, +0x70, 0xbd, 0x01, 0x20, 0x70, 0xbd, 0x65, 0x49, 0x10, 0xb5, 0x09, 0x68, 0x00, 0x29, 0x09, 0xd1, +0x60, 0x49, 0x65, 0x4a, 0x09, 0x88, 0x12, 0x78, 0x11, 0x43, 0x03, 0xd0, 0x0a, 0x28, 0x01, 0xd0, +0x0b, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x10, 0xbd, 0x02, 0x20, 0x19, 0xf0, 0x02, 0xfa, 0x10, 0xbd, +0x56, 0x48, 0x20, 0x30, 0x00, 0x7a, 0x70, 0x47, 0x54, 0x49, 0x20, 0x31, 0x0a, 0x7a, 0x02, 0x2a, +0x03, 0xd1, 0x56, 0x4a, 0x52, 0x68, 0x00, 0x2a, 0x00, 0xd0, 0x08, 0x72, 0x70, 0x47, 0x70, 0xb5, +0xff, 0xf7, 0xfd, 0xfc, 0x01, 0x24, 0x00, 0x28, 0x16, 0xd0, 0xfe, 0xf7, 0x94, 0xf8, 0x4b, 0x4d, +0xc0, 0x3d, 0x00, 0x28, 0x03, 0xd1, 0xfe, 0xf7, 0x78, 0xf8, 0x00, 0x28, 0x04, 0xd0, 0x47, 0x49, +0x20, 0x00, 0x2a, 0x68, 0x44, 0x39, 0x03, 0xe0, 0x44, 0x49, 0x2a, 0x68, 0x20, 0x00, 0x68, 0x39, +0x8a, 0x42, 0x00, 0xd0, 0x00, 0x20, 0x70, 0xbd, 0xff, 0xf7, 0xdc, 0xfc, 0x00, 0x28, 0x0c, 0xd0, +0x02, 0x20, 0x19, 0xf0, 0xbd, 0xfe, 0xfc, 0xf7, 0xb1, 0xfc, 0x02, 0x68, 0x21, 0x00, 0x40, 0x30, +0x82, 0x42, 0x00, 0xd0, 0x00, 0x21, 0x08, 0x00, 0x70, 0xbd, 0x01, 0x20, 0x70, 0xbd, 0x1f, 0xb5, +0x00, 0x20, 0x19, 0xf0, 0xad, 0xfe, 0x00, 0x28, 0x0a, 0xd0, 0xc0, 0x68, 0xc0, 0x04, 0x07, 0xd5, +0xff, 0xf7, 0xc5, 0xfc, 0x00, 0x28, 0x03, 0xd0, 0xfd, 0xf7, 0xe5, 0xfd, 0x04, 0xb0, 0x10, 0xbd, +0x01, 0x22, 0x02, 0x21, 0x02, 0xa8, 0x00, 0xf3, 0xc4, 0xff, 0x03, 0x00, 0x08, 0xd0, 0x04, 0x20, +0xff, 0xf7, 0xaa, 0xff, 0x00, 0x22, 0x00, 0x92, 0x30, 0x4a, 0x00, 0x21, 0x02, 0xa8, 0x07, 0xe0, +0x02, 0x20, 0xff, 0xf7, 0xa1, 0xff, 0x00, 0x22, 0x11, 0x00, 0x10, 0x00, 0x13, 0x00, 0x00, 0x92, +0xf9, 0xf7, 0x9d, 0xfe, 0xe2, 0xe7, 0x25, 0x48, 0x01, 0x69, 0xc1, 0x60, 0x70, 0x47, 0xf8, 0xb5, +0x00, 0x24, 0x07, 0x00, 0x0e, 0x00, 0x19, 0xf0, 0x2b, 0xfe, 0x1e, 0x4d, 0xf0, 0x06, 0x08, 0xd5, +0x28, 0x88, 0x10, 0x21, 0x88, 0x43, 0x28, 0x80, 0xff, 0xf7, 0x8c, 0xfc, 0x00, 0x28, 0x00, 0xd1, +0x01, 0x24, 0xb0, 0x05, 0x80, 0x0f, 0x00, 0x26, 0x00, 0x28, 0x0d, 0xd0, 0x38, 0x00, 0xfc, 0xf7, +0x5f, 0xfc, 0x29, 0x88, 0x03, 0x22, 0x12, 0x02, 0x91, 0x43, 0x29, 0x80, 0x06, 0x80, 0x19, 0xf0, +0x56, 0xf9, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x24, 0x28, 0x88, 0x31, 0x21, 0x09, 0x01, 0x08, 0x42, +0x03, 0xd1, 0x0d, 0x48, 0x06, 0x80, 0x12, 0x48, 0x06, 0x60, 0x20, 0x00, 0xf8, 0xbd, 0x0b, 0x49, +0x08, 0x60, 0x70, 0x47, 0x09, 0x49, 0x48, 0x60, 0x70, 0x47, 0x08, 0x49, 0x88, 0x60, 0x70, 0x47, +0x88, 0xef, 0x00, 0xc0, 0x84, 0xef, 0x00, 0xc0, 0x80, 0xef, 0x00, 0xc0, 0x48, 0x44, 0x00, 0x04, +0xac, 0xf0, 0x00, 0xc0, 0x04, 0x36, 0x01, 0xc0, 0x48, 0xf0, 0x00, 0xc0, 0x10, 0xf0, 0x00, 0xc0, +0xff, 0xff, 0x00, 0x00, 0xc4, 0x33, 0x01, 0xc0, 0x34, 0xf0, 0x00, 0xc0, 0x88, 0x13, 0x00, 0x00, +0x3c, 0xf0, 0x00, 0xc0, 0xfd, 0x48, 0x00, 0x88, 0x00, 0x28, 0x02, 0xd0, 0xfc, 0x49, 0x01, 0x20, +0x88, 0x60, 0x00, 0x20, 0x70, 0x47, 0xf9, 0x48, 0x01, 0x88, 0xf9, 0x48, 0x00, 0x29, 0x01, 0xd0, +0x01, 0x21, 0x81, 0x60, 0x01, 0x78, 0x04, 0x29, 0x01, 0xd1, 0x05, 0x21, 0x01, 0x70, 0x00, 0x20, +0x70, 0x47, 0xf3, 0x48, 0x80, 0x68, 0x70, 0x47, 0x10, 0xb5, 0x0c, 0x00, 0x02, 0x20, 0x11, 0xf0, +0x5c, 0xf8, 0x00, 0x28, 0x03, 0xd1, 0x02, 0x21, 0x08, 0x00, 0x01, 0xf0, 0xd6, 0xff, 0x61, 0x7a, +0x03, 0x29, 0x02, 0xd0, 0x22, 0x7a, 0x01, 0x2a, 0x0c, 0xd1, 0xe2, 0x68, 0xd2, 0x04, 0x2e, 0xd5, +0x00, 0x28, 0x04, 0xd0, 0xff, 0x30, 0x41, 0x30, 0x00, 0x7a, 0x07, 0x28, 0x27, 0xd0, 0x20, 0x7a, +0x01, 0x28, 0x24, 0xd0, 0x02, 0x29, 0x08, 0xd1, 0xff, 0xf7, 0x0c, 0xfc, 0x00, 0x28, 0x1e, 0xd0, +0xff, 0x20, 0x49, 0x30, 0x00, 0x5d, 0x07, 0x28, 0x19, 0xd1, 0xe0, 0x68, 0xc0, 0x04, 0x09, 0xd5, +0x60, 0x7a, 0x03, 0x28, 0x02, 0xd0, 0x20, 0x7a, 0x01, 0x28, 0x03, 0xd1, 0x66, 0xce, 0xa0, 0x9e, +0x01, 0x00, 0x00, 0x00, 0x50, 0xaf, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x6d, 0x04, 0x30, 0xff, +0xd7, 0x48, 0x00, 0x88, 0xc0, 0x06, 0x0c, 0xd5, 0x16, 0xf0, 0x10, 0xfc, 0xd6, 0x49, 0x0a, 0x78, +0x00, 0x2a, 0x07, 0xd1, 0x01, 0x22, 0x0a, 0x70, 0x16, 0xf0, 0x0c, 0xfc, 0x01, 0x20, 0xff, 0xf7, +0xc6, 0xfc, 0x10, 0xbd, 0x16, 0xf0, 0x06, 0xfc, 0x10, 0xbd, 0x10, 0xb5, 0xcd, 0x4c, 0x20, 0x69, +0x00, 0x28, 0x03, 0xd0, 0x00, 0xf3, 0x61, 0xfe, 0x00, 0x20, 0x20, 0x61, 0x10, 0xbd, 0x38, 0xb5, +0x04, 0x00, 0xff, 0xf7, 0xd9, 0xfb, 0x00, 0x28, 0x04, 0xd0, 0xc5, 0x48, 0x00, 0x88, 0x80, 0x05, +0x80, 0x0f, 0x0e, 0xd0, 0xff, 0xf7, 0xe9, 0xff, 0x00, 0x22, 0xc2, 0x48, 0x00, 0x92, 0xc0, 0x88, +0x7d, 0x22, 0xd2, 0x00, 0xbf, 0x4b, 0x42, 0x43, 0xc0, 0x48, 0x21, 0x00, 0x10, 0x33, 0x00, 0xf3, +0xe1, 0xfd, 0x38, 0xbd, 0x10, 0xb5, 0x02, 0xf0, 0xc4, 0xfb, 0x00, 0x28, 0x05, 0xd0, 0x02, 0xf0, +0x4a, 0xf9, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0x38, 0xb5, +0x0d, 0x00, 0xb4, 0x4c, 0xe1, 0x68, 0x88, 0x42, 0x28, 0xd1, 0x00, 0x20, 0xe0, 0x60, 0xff, 0xf7, +0xe9, 0xff, 0x00, 0x28, 0x20, 0x78, 0x2a, 0xd0, 0x02, 0x28, 0x1f, 0xd1, 0x1c, 0xf0, 0xe6, 0xe8, +0x00, 0x28, 0x0f, 0xd1, 0xf9, 0xf7, 0x4c, 0xf8, 0x00, 0x28, 0x0b, 0xd1, 0xac, 0x48, 0x00, 0x22, +0x00, 0x68, 0x46, 0x21, 0x00, 0xf3, 0x07, 0xfa, 0x00, 0x28, 0x03, 0xd1, 0x1c, 0xf0, 0xca, 0xe8, +0x00, 0x28, 0x0c, 0xd0, 0x00, 0x22, 0x00, 0x92, 0x60, 0x88, 0x7d, 0x22, 0xd2, 0x00, 0xa1, 0x4b, +0x42, 0x43, 0xa4, 0x48, 0x29, 0x00, 0x0c, 0x33, 0x00, 0xf3, 0xa4, 0xfd, 0x38, 0xbd, 0x03, 0x20, +0x01, 0x21, 0x20, 0x70, 0x49, 0x03, 0x28, 0x00, 0x1c, 0xf0, 0xa8, 0xe8, 0x38, 0xbd, 0x00, 0x28, +0xfc, 0xd0, 0x06, 0x28, 0x0a, 0xd1, 0xff, 0xf7, 0x77, 0xfb, 0x00, 0x28, 0x00, 0xd0, 0x02, 0x20, +0x19, 0xf0, 0x58, 0xfd, 0x01, 0x21, 0x09, 0x03, 0x1c, 0xf0, 0x98, 0xe8, 0x07, 0x20, 0x20, 0x70, +0x38, 0xbd, 0x10, 0xb5, 0x8f, 0x4c, 0xe0, 0x68, 0x00, 0x28, 0x03, 0xd0, 0x00, 0xf3, 0xe5, 0xfd, +0x00, 0x20, 0xe0, 0x60, 0x10, 0xbd, 0x70, 0xb5, 0x16, 0xf0, 0x78, 0xfb, 0x89, 0x4c, 0x05, 0x00, +0x20, 0x78, 0x00, 0x28, 0x05, 0xd0, 0x07, 0x28, 0x03, 0xd0, 0xff, 0xf7, 0xea, 0xff, 0x07, 0x20, +0x20, 0x70, 0x28, 0x00, 0x16, 0xf0, 0x6e, 0xfb, 0x70, 0xbd, 0xf8, 0xb5, 0x06, 0x00, 0x16, 0xf0, +0x65, 0xfb, 0x80, 0x4c, 0x05, 0x00, 0x21, 0x78, 0x00, 0x29, 0x19, 0xd0, 0x01, 0x29, 0x17, 0xd0, +0x07, 0x29, 0x15, 0xd0, 0x03, 0x29, 0x13, 0xd0, 0x04, 0x29, 0x11, 0xd0, 0x05, 0x29, 0x0f, 0xd0, +0x06, 0x29, 0x0d, 0xd0, 0xff, 0xf7, 0xcd, 0xff, 0x00, 0x22, 0x00, 0x92, 0x60, 0x88, 0x7d, 0x22, +0xd2, 0x00, 0x42, 0x43, 0x23, 0x00, 0x77, 0x48, 0x31, 0x00, 0x0c, 0x33, 0x00, 0xf3, 0x4a, 0xfd, +0x28, 0x00, 0x16, 0xf0, 0x47, 0xfb, 0xf8, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x16, 0xf0, 0x3e, 0xfb, +0x6c, 0x4c, 0x06, 0x00, 0x20, 0x78, 0x07, 0x28, 0x08, 0xd1, 0xff, 0xf7, 0x5b, 0xff, 0x00, 0x28, +0x04, 0xd0, 0x02, 0x20, 0x20, 0x70, 0x28, 0x00, 0xff, 0xf7, 0xc7, 0xff, 0x30, 0x00, 0x16, 0xf0, +0x31, 0xfb, 0x70, 0xbd, 0x10, 0xb5, 0x16, 0xf0, 0x29, 0xfb, 0x04, 0x00, 0xff, 0xf7, 0xa1, 0xff, +0x60, 0x49, 0x08, 0x78, 0x05, 0x28, 0x03, 0xd0, 0x04, 0x28, 0x01, 0xd0, 0x03, 0x28, 0x01, 0xd1, +0x01, 0x20, 0x00, 0xe0, 0x00, 0x20, 0x08, 0x70, 0x20, 0x00, 0x16, 0xf0, 0x1b, 0xfb, 0x10, 0xbd, +0x10, 0xb5, 0xff, 0xf7, 0xfe, 0xfa, 0x00, 0x28, 0x01, 0xd0, 0x5b, 0x48, 0x09, 0xe0, 0xff, 0xf7, +0xf3, 0xfa, 0x00, 0x28, 0x07, 0xd0, 0x02, 0x20, 0x19, 0xf0, 0xd4, 0xfc, 0xfc, 0xf7, 0xc8, 0xfa, +0x74, 0x30, 0xfc, 0xf2, 0x39, 0xfb, 0x0a, 0x20, 0xff, 0xf7, 0xc1, 0xfb, 0x10, 0xbd, 0xf8, 0xb5, +0x04, 0x00, 0x45, 0x69, 0x4b, 0x4e, 0x00, 0x20, 0xb0, 0x60, 0xfd, 0xf7, 0x2e, 0xfb, 0x48, 0x4f, +0x38, 0x88, 0x00, 0x28, 0x03, 0xd0, 0x18, 0xf0, 0xa9, 0xff, 0x00, 0x28, 0x04, 0xd0, 0x30, 0x78, +0x01, 0x28, 0x01, 0xd0, 0x05, 0x28, 0x57, 0xd1, 0x45, 0x48, 0x00, 0x22, 0x00, 0x68, 0x46, 0x21, +0x00, 0xf3, 0x39, 0xf9, 0x00, 0x28, 0x34, 0xd1, 0xf9, 0xf7, 0xa9, 0xfe, 0x00, 0x28, 0x30, 0xd0, +0x38, 0x88, 0x01, 0x27, 0x00, 0x28, 0x21, 0xd0, 0x68, 0x7a, 0x03, 0x28, 0x02, 0xd0, 0x28, 0x7a, +0x01, 0x28, 0x03, 0xd1, 0x18, 0xf0, 0x8a, 0xff, 0x00, 0x28, 0x06, 0xd0, 0x68, 0x7a, 0x02, 0x28, +0x14, 0xd1, 0x18, 0xf0, 0x8e, 0xff, 0x00, 0x28, 0x10, 0xd0, 0x10, 0x20, 0xf5, 0xf7, 0x65, 0xfe, +0x10, 0x20, 0xf5, 0xf7, 0x6e, 0xfe, 0x04, 0x20, 0xf5, 0xf7, 0xfa, 0xfe, 0xf5, 0xf7, 0x09, 0xff, +0x09, 0x20, 0xff, 0xf7, 0x7c, 0xfb, 0x31, 0x48, 0x07, 0x70, 0x3d, 0xe0, 0x30, 0x78, 0x05, 0x28, +0x20, 0xd1, 0x2e, 0x48, 0x01, 0x21, 0x07, 0x70, 0x06, 0x20, 0x89, 0x05, 0x30, 0x70, 0x28, 0x00, +0x30, 0xe0, 0x38, 0x88, 0x00, 0x28, 0x0d, 0xd0, 0x00, 0x20, 0xff, 0xf7, 0x91, 0xff, 0x10, 0x20, +0xf5, 0xf7, 0x43, 0xfe, 0x10, 0x20, 0xf5, 0xf7, 0x4c, 0xfe, 0x04, 0x20, 0xf5, 0xf7, 0xd8, 0xfe, +0xf5, 0xf7, 0xe7, 0xfe, 0x30, 0x78, 0x05, 0x28, 0x02, 0xd1, 0x02, 0x20, 0x30, 0x70, 0x16, 0xe0, +0x01, 0x28, 0x19, 0xd1, 0x00, 0x20, 0xf9, 0xe7, 0x00, 0x28, 0x10, 0xd0, 0x07, 0x28, 0x0e, 0xd0, +0xff, 0xf7, 0xb0, 0xfe, 0x00, 0x28, 0x0a, 0xd0, 0x30, 0x78, 0x02, 0x28, 0x0c, 0xd1, 0xff, 0xf7, +0xa9, 0xfe, 0x00, 0x28, 0x08, 0xd0, 0x18, 0xf0, 0x39, 0xff, 0x00, 0x28, 0x04, 0xd0, 0x01, 0x21, +0x60, 0x69, 0x09, 0x03, 0x1b, 0xf0, 0x8a, 0xef, 0x00, 0x20, 0xf8, 0xbd, 0x10, 0xb5, 0x18, 0xf0, +0x38, 0xff, 0x00, 0x28, 0x29, 0xd1, 0x06, 0x48, 0x06, 0x49, 0x00, 0x88, 0x00, 0x28, 0x19, 0xd0, +0x0b, 0x48, 0x00, 0x88, 0x00, 0x28, 0x15, 0xd0, 0x01, 0x20, 0x48, 0x70, 0x1d, 0xe0, 0x00, 0x00, +0x04, 0x36, 0x01, 0xc0, 0x34, 0xf0, 0x00, 0xc0, 0x60, 0xf4, 0x00, 0xc0, 0xed, 0xae, 0x00, 0x00, +0x18, 0xee, 0x00, 0xc0, 0xdf, 0xaf, 0x00, 0x00, 0x80, 0x44, 0x00, 0x04, 0x25, 0x77, 0x02, 0x00, +0x98, 0x33, 0x01, 0xc0, 0x08, 0x78, 0x00, 0x28, 0x01, 0xd0, 0x07, 0x28, 0x05, 0xd1, 0x18, 0xf0, +0x1d, 0xff, 0x00, 0x28, 0x01, 0xd1, 0xff, 0xf7, 0x7d, 0xfb, 0x00, 0x20, 0x10, 0xbd, 0x70, 0xb5, +0x01, 0x89, 0x44, 0x69, 0x0d, 0x18, 0x28, 0x00, 0x0f, 0xf3, 0xf5, 0xfe, 0x00, 0x28, 0x1d, 0xd0, +0x18, 0xf0, 0xf4, 0xfe, 0x00, 0x28, 0x0a, 0xd0, 0x1b, 0x48, 0x00, 0x78, 0x00, 0x28, 0x01, 0xd0, +0x07, 0x28, 0x04, 0xd1, 0x01, 0x21, 0x89, 0x04, 0x20, 0x00, 0x1b, 0xf0, 0x40, 0xef, 0xff, 0xf7, +0x18, 0xfa, 0x00, 0x28, 0x03, 0xd1, 0xff, 0xf7, 0x0f, 0xfa, 0x00, 0x28, 0x06, 0xd0, 0x18, 0xf0, +0xe0, 0xfe, 0x00, 0x28, 0x02, 0xd0, 0x1c, 0x20, 0xff, 0xf7, 0xe1, 0xfa, 0x28, 0x00, 0x0f, 0xf3, +0xec, 0xfe, 0x00, 0x28, 0x05, 0xd0, 0x0d, 0x48, 0x00, 0x22, 0x00, 0x68, 0x5a, 0x37, 0x93, 0x0b, +0x01, 0x00, 0x00, 0x00, 0x4c, 0xb3, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xd2, 0xc1, 0x15, 0x4c, +0x1e, 0x21, 0x00, 0xf3, 0x6a, 0xf8, 0x70, 0xbd, 0x0a, 0x48, 0x00, 0x88, 0x00, 0x28, 0x05, 0xd0, +0x06, 0x48, 0x41, 0x78, 0x01, 0x29, 0x01, 0xd1, 0x02, 0x21, 0x41, 0x70, 0x70, 0x47, 0x03, 0x48, +0x41, 0x78, 0x02, 0x29, 0x01, 0xd1, 0x03, 0x21, 0x41, 0x70, 0x70, 0x47, 0x34, 0xf0, 0x00, 0xc0, +0x18, 0xee, 0x00, 0xc0, 0x04, 0x36, 0x01, 0xc0, 0x14, 0x23, 0x59, 0x43, 0x09, 0x18, 0xd0, 0x31, +0x09, 0x7c, 0x01, 0x20, 0x03, 0x29, 0x00, 0xd2, 0x00, 0x20, 0x70, 0x47, 0x10, 0xb5, 0x04, 0x00, +0x00, 0x7c, 0x03, 0x28, 0x01, 0xd2, 0x40, 0x1c, 0x20, 0x74, 0x62, 0x68, 0x22, 0x60, 0xa2, 0x68, +0x62, 0x60, 0xa1, 0x60, 0x22, 0x68, 0x60, 0x68, 0x13, 0x1a, 0xdb, 0x1c, 0x06, 0x2b, 0x0d, 0xd8, +0x43, 0x1a, 0xdb, 0x1c, 0x06, 0x2b, 0x09, 0xd8, 0x8b, 0x1a, 0xdb, 0x1c, 0x06, 0x2b, 0x05, 0xd8, +0x10, 0x18, 0x40, 0x18, 0x03, 0x21, 0x11, 0xf3, 0xa6, 0xec, 0x0b, 0xe0, 0x88, 0x42, 0x01, 0xda, +0x03, 0x00, 0x00, 0xe0, 0x0b, 0x00, 0x93, 0x42, 0x01, 0xdd, 0x10, 0x00, 0x02, 0xe0, 0x88, 0x42, +0x00, 0xdb, 0x08, 0x00, 0xe0, 0x60, 0x10, 0xbd, 0x03, 0x00, 0x02, 0x20, 0x03, 0x22, 0x10, 0xb5, +0x41, 0x1e, 0x14, 0x00, 0x8c, 0x40, 0x21, 0x04, 0x09, 0x0c, 0x8b, 0x42, 0x05, 0xd3, 0x40, 0x1c, +0x00, 0x04, 0x00, 0x0c, 0x0a, 0x28, 0xf3, 0xd9, 0x0a, 0x20, 0x10, 0xbd, 0x30, 0xb5, 0x01, 0x25, +0x44, 0x68, 0x95, 0x40, 0x03, 0x68, 0xac, 0x42, 0x03, 0xda, 0x59, 0x18, 0x64, 0x1c, 0x12, 0xc0, +0x30, 0xbd, 0x1c, 0x00, 0x14, 0x41, 0x1a, 0x1b, 0x51, 0x18, 0x01, 0x60, 0x30, 0xbd, 0x0a, 0x00, +0x10, 0xb5, 0x41, 0x68, 0x00, 0x29, 0x09, 0xd0, 0x01, 0x23, 0x93, 0x40, 0x00, 0x68, 0x99, 0x42, +0x02, 0xda, 0x11, 0xf3, 0x68, 0xec, 0x10, 0xbd, 0x10, 0x41, 0x10, 0xbd, 0x61, 0x20, 0xc0, 0x43, +0x10, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x10, 0x00, 0x06, 0x9a, 0x00, 0x92, 0x02, 0x00, 0x0f, 0x00, +0x1d, 0x00, 0x20, 0x00, 0x1b, 0xf0, 0xcc, 0xff, 0x06, 0x00, 0x19, 0xd0, 0xf8, 0x7e, 0x06, 0x98, +0x29, 0x68, 0x07, 0x68, 0x20, 0x00, 0xff, 0x30, 0x03, 0x22, 0x0d, 0x30, 0xff, 0xf7, 0xc6, 0xff, +0x20, 0x00, 0xff, 0x30, 0x03, 0x22, 0x39, 0x00, 0x15, 0x30, 0xff, 0xf7, 0xbf, 0xff, 0xff, 0x20, +0x3d, 0x30, 0x02, 0x5b, 0x20, 0x00, 0xff, 0x30, 0x39, 0x00, 0x2d, 0x30, 0xff, 0xf7, 0xb6, 0xff, +0x30, 0x00, 0xf8, 0xbd, 0x7f, 0xb5, 0x03, 0xaa, 0x04, 0x00, 0x02, 0xab, 0x00, 0x92, 0x01, 0xaa, +0x1b, 0xf0, 0xa6, 0xff, 0x01, 0x00, 0x20, 0x00, 0x01, 0x22, 0xc0, 0x30, 0x42, 0x60, 0x00, 0x22, +0x00, 0x29, 0x02, 0x73, 0x32, 0xd0, 0x25, 0x00, 0x03, 0x98, 0xa0, 0x35, 0xe8, 0x80, 0x02, 0x98, +0x03, 0x22, 0x01, 0x04, 0x09, 0x14, 0xa9, 0x80, 0x01, 0x98, 0x28, 0x81, 0x28, 0x00, 0x6c, 0x30, +0xff, 0xf7, 0x94, 0xff, 0x06, 0x21, 0x28, 0x00, 0x69, 0x5e, 0x03, 0x22, 0x74, 0x30, 0xff, 0xf7, +0x8d, 0xff, 0xff, 0x20, 0x3f, 0x30, 0x02, 0x5b, 0x06, 0x21, 0x28, 0x00, 0x69, 0x5e, 0x94, 0x30, +0xff, 0xf7, 0x84, 0xff, 0x18, 0xf0, 0xac, 0xfb, 0x00, 0x28, 0x09, 0xd0, 0xff, 0x48, 0x00, 0x68, +0x11, 0xf3, 0xe0, 0xeb, 0x01, 0x00, 0x04, 0x20, 0xfa, 0xf7, 0x0f, 0xf9, 0x00, 0x28, 0x05, 0xd0, +0x20, 0x00, 0x1b, 0xf0, 0x52, 0xee, 0x20, 0x00, 0x1b, 0xf0, 0x52, 0xee, 0x7f, 0xbd, 0x70, 0xb5, +0x04, 0x00, 0x1d, 0xd0, 0x07, 0x20, 0x08, 0x56, 0x0b, 0x26, 0x8e, 0x57, 0x25, 0x00, 0xe4, 0x35, +0x01, 0x00, 0x28, 0x00, 0xff, 0xf7, 0x22, 0xff, 0x28, 0x7c, 0x00, 0x28, 0x01, 0xd0, 0xe9, 0x68, +0x01, 0xe0, 0x61, 0x21, 0xc9, 0x43, 0x20, 0x00, 0xff, 0x30, 0x03, 0x22, 0x1d, 0x30, 0xff, 0xf7, +0x55, 0xff, 0x20, 0x00, 0xff, 0x30, 0x03, 0x22, 0x31, 0x00, 0x25, 0x30, 0xff, 0xf7, 0x4e, 0xff, +0x70, 0xbd, 0x03, 0x21, 0xff, 0x30, 0x0d, 0x30, 0x59, 0xe7, 0x03, 0x21, 0xff, 0x30, 0x15, 0x30, +0x55, 0xe7, 0xff, 0x21, 0x3d, 0x31, 0x09, 0x5a, 0xff, 0x30, 0x2d, 0x30, 0x4f, 0xe7, 0xff, 0x21, +0x3f, 0x31, 0x09, 0x5a, 0xff, 0x30, 0x35, 0x30, 0x49, 0xe7, 0x70, 0xb5, 0x05, 0x00, 0xff, 0xf7, +0xf6, 0xff, 0x04, 0x00, 0x28, 0x00, 0xff, 0xf7, 0xe4, 0xff, 0x20, 0x1a, 0x70, 0xbd, 0x70, 0xb5, +0x05, 0x00, 0xff, 0xf7, 0xe2, 0xff, 0x04, 0x00, 0x28, 0x00, 0xff, 0xf7, 0xda, 0xff, 0x20, 0x1a, +0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0xff, 0xf7, 0xdc, 0xff, 0x04, 0x00, 0x28, 0x00, 0xff, 0xf7, +0xd0, 0xff, 0x20, 0x1a, 0x70, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0xe4, 0x30, 0x14, 0x21, 0x11, 0xf3, +0xd4, 0xea, 0x20, 0x00, 0xff, 0x30, 0x00, 0x21, 0x1d, 0x30, 0x0a, 0x00, 0x06, 0xc0, 0x04, 0x00, +0x08, 0x00, 0x03, 0xc4, 0x10, 0xbd, 0x01, 0x00, 0xa0, 0x31, 0x00, 0x22, 0xca, 0x81, 0x61, 0x22, +0xd2, 0x43, 0x4a, 0x81, 0xff, 0x30, 0x8a, 0x81, 0x2d, 0x30, 0x00, 0x21, 0x0a, 0x00, 0x06, 0xc0, +0x70, 0x47, 0x61, 0x22, 0x01, 0x00, 0xd2, 0x43, 0xa0, 0x31, 0x10, 0xb5, 0x8a, 0x80, 0xca, 0x80, +0x00, 0x22, 0x0a, 0x81, 0x94, 0x31, 0x13, 0x00, 0x0c, 0xc1, 0x00, 0xf0, 0xb9, 0xf9, 0x10, 0xbd, +0x70, 0xb5, 0x04, 0x00, 0x16, 0xf0, 0x9c, 0xf8, 0x05, 0x00, 0x20, 0x00, 0xd0, 0x30, 0x14, 0x21, +0x11, 0xf3, 0xa2, 0xea, 0x20, 0x00, 0x00, 0xf0, 0xb6, 0xf9, 0x28, 0x00, 0x16, 0xf0, 0x94, 0xf8, +0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x16, 0xf0, 0x8b, 0xf8, 0x04, 0x00, 0x28, 0x00, 0xff, 0xf7, +0xe7, 0xff, 0x28, 0x00, 0xff, 0xf7, 0xd5, 0xff, 0x28, 0x00, 0xff, 0xf7, 0xc4, 0xff, 0x20, 0x00, +0x16, 0xf0, 0x82, 0xf8, 0x70, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0xff, 0x30, 0x03, 0x21, 0x21, 0x30, +0xc1, 0x83, 0x81, 0x83, 0x20, 0x00, 0xff, 0xf7, 0xa6, 0xff, 0x20, 0x00, 0xff, 0x30, 0x00, 0x21, +0x2d, 0x30, 0x0a, 0x00, 0x06, 0xc0, 0x06, 0xc0, 0x20, 0x00, 0x00, 0xf0, 0x8c, 0xf9, 0x10, 0xbd, +0x01, 0x00, 0xff, 0x31, 0x49, 0x1c, 0x89, 0x69, 0x01, 0x20, 0x01, 0x29, 0x00, 0xda, 0x00, 0x20, +0x70, 0x47, 0x70, 0xb5, 0x04, 0x00, 0xff, 0x30, 0x40, 0x1c, 0x02, 0x6a, 0xc1, 0x69, 0x02, 0x61, +0xc1, 0x60, 0x82, 0x6a, 0x41, 0x6a, 0x82, 0x61, 0x41, 0x61, 0x20, 0x00, 0xff, 0x30, 0x03, 0x21, +0x25, 0x30, 0xff, 0xf7, 0xac, 0xfe, 0x25, 0x00, 0xa0, 0x35, 0xe8, 0x80, 0x28, 0x00, 0x00, 0x21, +0x94, 0x30, 0x0a, 0x00, 0x06, 0xc0, 0x20, 0x00, 0x00, 0xf0, 0x5a, 0xf9, 0x28, 0x00, 0x03, 0x21, +0x7c, 0x30, 0xff, 0xf7, 0x9c, 0xfe, 0xa8, 0x80, 0xe9, 0x88, 0x08, 0x1a, 0x28, 0x81, 0x20, 0x00, +0xff, 0xf7, 0x69, 0xff, 0x70, 0xbd, 0x00, 0x29, 0x07, 0xd0, 0x01, 0x7a, 0x00, 0x29, 0x04, 0xd0, +0x01, 0x21, 0xc0, 0x30, 0x41, 0x60, 0x00, 0x21, 0x01, 0x73, 0x70, 0x47, 0x01, 0x21, 0xc0, 0x30, +0x41, 0x60, 0x00, 0x21, 0x01, 0x73, 0x70, 0x47, 0x03, 0x00, 0x0a, 0x00, 0x08, 0x00, 0xc0, 0x32, +0x10, 0xb5, 0x11, 0x68, 0x99, 0x42, 0x04, 0xd1, 0x00, 0x21, 0x11, 0x60, 0xa5, 0x9f, 0x16, 0x1f, +0x01, 0x00, 0x00, 0x00, 0x48, 0xb7, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x81, 0x1b, 0xc6, 0x20, +0x0a, 0xf0, 0x15, 0xf9, 0x10, 0xbd, 0x73, 0x48, 0x41, 0x68, 0x49, 0x1c, 0x41, 0x60, 0x10, 0xbd, +0x70, 0x48, 0x00, 0x78, 0x70, 0x47, 0xf0, 0xb5, 0x04, 0x00, 0x0b, 0x20, 0x80, 0x01, 0x20, 0x18, +0x07, 0x69, 0x89, 0xb0, 0x00, 0x20, 0x04, 0xa9, 0x06, 0x90, 0x1b, 0xf0, 0x08, 0xed, 0x60, 0x7a, +0x03, 0x28, 0x35, 0xd1, 0xe0, 0x68, 0xc0, 0x04, 0x32, 0xd5, 0x3d, 0x00, 0xff, 0x35, 0x41, 0x35, +0xa8, 0x68, 0x00, 0x28, 0x2c, 0xd0, 0xfa, 0xf7, 0x26, 0xfd, 0x04, 0x99, 0x88, 0x42, 0x27, 0xd1, +0x18, 0xf0, 0xa8, 0xfc, 0x00, 0x28, 0x03, 0xd0, 0x18, 0xf0, 0x64, 0xfa, 0x00, 0x28, 0x02, 0xd1, +0xa8, 0x7b, 0x00, 0x28, 0x1c, 0xd0, 0x5c, 0x4e, 0xa8, 0x68, 0x46, 0x43, 0x0a, 0xf3, 0xc8, 0xf8, +0xfd, 0x1d, 0xf9, 0x35, 0x2a, 0x6c, 0x6b, 0x6c, 0x80, 0x1a, 0x99, 0x41, 0x00, 0x23, 0x32, 0x1a, +0x8b, 0x41, 0x0d, 0xd2, 0x01, 0x21, 0x00, 0x22, 0x00, 0x91, 0x00, 0x21, 0x01, 0x92, 0x07, 0x22, +0x20, 0x00, 0x0b, 0x00, 0xf6, 0xf7, 0x9f, 0xf8, 0x0a, 0xf3, 0xb2, 0xf8, 0x69, 0x64, 0x28, 0x64, +0x0d, 0xf0, 0x3b, 0xfe, 0x25, 0x00, 0xc0, 0x35, 0x05, 0x90, 0x68, 0x68, 0x00, 0x28, 0x05, 0xd0, +0x00, 0x20, 0x48, 0x49, 0x68, 0x60, 0xa8, 0x60, 0x48, 0x70, 0x59, 0xe0, 0xa8, 0x68, 0x26, 0x00, +0x80, 0x36, 0x00, 0x28, 0x09, 0xd1, 0x01, 0x20, 0xa8, 0x60, 0x0a, 0xf3, 0x99, 0xf8, 0xf1, 0x63, +0xb0, 0x63, 0x40, 0x48, 0x00, 0x21, 0x41, 0x70, 0x48, 0xe0, 0x20, 0x00, 0x1b, 0xf0, 0x92, 0xec, +0x00, 0x28, 0x3b, 0xd0, 0xfa, 0xf7, 0xd7, 0xfc, 0x04, 0x99, 0x88, 0x42, 0x36, 0xd1, 0x0a, 0xf3, +0x87, 0xf8, 0xb2, 0x6b, 0xf3, 0x6b, 0x80, 0x1a, 0x99, 0x41, 0x05, 0x99, 0x11, 0xf3, 0x5a, 0xee, +0x00, 0x06, 0x00, 0x0e, 0x33, 0x49, 0x06, 0x90, 0x01, 0x28, 0x48, 0x70, 0x2e, 0xd9, 0x06, 0xa8, +0x0d, 0xf0, 0x3d, 0xff, 0x6b, 0x46, 0x1a, 0x7e, 0x00, 0x21, 0x0a, 0x20, 0x0e, 0xf0, 0xdc, 0xfd, +0x60, 0x20, 0x00, 0x5d, 0x00, 0x28, 0x0b, 0xd0, 0x6b, 0x46, 0x19, 0x7e, 0x88, 0x42, 0x07, 0xd8, +0x2a, 0x48, 0x01, 0x22, 0x01, 0x78, 0x11, 0x43, 0x01, 0x70, 0x20, 0x00, 0x1b, 0xf0, 0xae, 0xec, +0x5f, 0x20, 0x6b, 0x46, 0x00, 0x5d, 0x19, 0x7e, 0x88, 0x42, 0x0f, 0xd8, 0x00, 0x20, 0x01, 0x00, +0x28, 0x73, 0x07, 0x22, 0x20, 0x00, 0xfa, 0xf7, 0xa3, 0xfd, 0x07, 0xe0, 0x05, 0x98, 0xb2, 0x6b, +0xf3, 0x6b, 0x00, 0x21, 0x80, 0x18, 0x59, 0x41, 0xf1, 0x63, 0xb0, 0x63, 0x01, 0x20, 0xa8, 0x60, +0x18, 0x48, 0x6b, 0x46, 0x19, 0x7e, 0xff, 0x37, 0x41, 0x37, 0x01, 0x70, 0xb8, 0x7b, 0x00, 0x28, +0x53, 0xd0, 0xfa, 0xf7, 0x88, 0xfc, 0x04, 0x99, 0x88, 0x42, 0x4e, 0xd1, 0x0a, 0xf3, 0x38, 0xf8, +0x02, 0x90, 0x03, 0x91, 0xe1, 0x7a, 0x06, 0x20, 0x00, 0xf0, 0xf2, 0xfa, 0x43, 0xe0, 0xf8, 0x68, +0xc0, 0x04, 0x3b, 0xd5, 0x03, 0x20, 0x00, 0x02, 0x3e, 0x18, 0xf0, 0x8b, 0x00, 0x28, 0x35, 0xd0, +0x30, 0x6a, 0x00, 0x28, 0x2f, 0xd1, 0xf1, 0x6a, 0xb0, 0x6a, 0x00, 0x23, 0x59, 0x40, 0x58, 0x40, +0x08, 0x43, 0x28, 0xd0, 0xf0, 0x8b, 0x04, 0x4b, 0x58, 0x43, 0xc3, 0x17, 0x07, 0x93, 0x07, 0xe0, +0xc8, 0xee, 0x00, 0xc0, 0x4c, 0xf0, 0x00, 0xc0, 0x40, 0x42, 0x0f, 0x00, 0xe4, 0xee, 0x00, 0xc0, +0x08, 0x90, 0xb2, 0x6a, 0x02, 0x98, 0xf3, 0x6a, 0x03, 0x99, 0x80, 0x1a, 0x08, 0x9a, 0x99, 0x41, +0x07, 0x9b, 0x12, 0x1a, 0x8b, 0x41, 0x11, 0xd2, 0x01, 0x21, 0x41, 0x22, 0x00, 0x91, 0x00, 0x21, +0x01, 0x92, 0x07, 0x22, 0x38, 0x00, 0x0b, 0x00, 0xf5, 0xf7, 0xe5, 0xff, 0x03, 0x99, 0x02, 0x98, +0xf1, 0x62, 0xb0, 0x62, 0x02, 0xe0, 0x00, 0x20, 0x30, 0x62, 0xf7, 0xe7, 0xe2, 0x7a, 0x06, 0x21, +0x38, 0x00, 0x01, 0xf0, 0x46, 0xfc, 0x07, 0x00, 0xb9, 0xd1, 0x00, 0x22, 0x00, 0x92, 0x18, 0x48, +0x05, 0x9a, 0x2b, 0x00, 0x21, 0x00, 0x00, 0xf3, 0x01, 0xf9, 0x09, 0xb0, 0xf0, 0xbd, 0x10, 0xb5, +0x04, 0x00, 0x00, 0x7a, 0x01, 0x28, 0x0c, 0xd0, 0x20, 0x00, 0xc0, 0x30, 0x00, 0x68, 0x00, 0xf3, +0x58, 0xf9, 0x20, 0x00, 0x18, 0x21, 0xb8, 0x30, 0x11, 0xf3, 0xf8, 0xe8, 0x20, 0x00, 0xff, 0xf7, +0xda, 0xfe, 0x10, 0xbd, 0xff, 0x21, 0x3f, 0x31, 0x00, 0xb5, 0x0a, 0x5a, 0xa6, 0x23, 0x19, 0x5e, +0xff, 0x30, 0x35, 0x30, 0xff, 0xf7, 0x2c, 0xfd, 0x00, 0xbd, 0x01, 0x00, 0xff, 0x31, 0x00, 0x22, +0x0d, 0x31, 0x13, 0x00, 0x0c, 0xc1, 0x08, 0x00, 0x11, 0x00, 0x06, 0xc0, 0x70, 0x47, 0x00, 0x00, +0x35, 0xb7, 0x00, 0x00, 0x91, 0x42, 0x00, 0xd9, 0x11, 0x00, 0x48, 0x4b, 0x80, 0x00, 0x1a, 0x50, +0x1a, 0x00, 0x10, 0x3a, 0x11, 0x50, 0x01, 0x20, 0x70, 0x47, 0x45, 0x49, 0x80, 0x00, 0x08, 0x58, +0x70, 0x47, 0x44, 0x48, 0x10, 0xb5, 0xfc, 0xf2, 0xe1, 0xff, 0x40, 0x49, 0x14, 0x39, 0x08, 0x60, +0x00, 0x20, 0x0a, 0x1d, 0x83, 0x00, 0xd3, 0x58, 0x0c, 0x68, 0x40, 0x1c, 0xe3, 0x1a, 0x00, 0x06, +0x00, 0x0e, 0x04, 0x28, 0x0b, 0x60, 0xf5, 0xd3, 0x08, 0x68, 0x00, 0x28, 0x00, 0xda, 0xfe, 0xe7, +0x10, 0xbd, 0x37, 0x49, 0xc0, 0x7b, 0x10, 0x31, 0x08, 0x5c, 0x70, 0x47, 0xf0, 0xb5, 0x06, 0x00, +0x96, 0x46, 0x9c, 0x46, 0x32, 0x4a, 0x31, 0x4b, 0xb6, 0x00, 0x97, 0x59, 0x9b, 0x59, 0x00, 0x24, +0x01, 0x20, 0x25, 0x00, 0x9f, 0x42, 0x13, 0xd2, 0x8b, 0x00, 0xd1, 0x58, 0x1a, 0x00, 0x2b, 0x4b, +0x00, 0x20, 0x10, 0x3b, 0x9a, 0x58, 0x91, 0x42, 0x00, 0xd9, 0x01, 0x24, 0x99, 0x59, 0x8f, 0x42, +0x06, 0xd3, 0x26, 0x49, 0x01, 0x25, 0x14, 0x39, 0x09, 0x68, 0x21, 0x43, 0x00, 0xd1, 0x01, 0x20, +0x71, 0x46, 0x00, 0x29, 0x00, 0xd0, 0x0c, 0x60, 0x61, 0x46, 0x00, 0x29, 0x00, 0xd0, 0x0d, 0x60, +0xf0, 0xbd, 0xfe, 0xb5, 0x05, 0x00, 0x00, 0x20, 0x0e, 0x00, 0x01, 0x90, 0x00, 0x90, 0x1d, 0x49, +0x28, 0x69, 0x88, 0x42, 0x01, 0xd0, 0x01, 0x20, 0xfe, 0xbd, 0x19, 0x48, 0xe9, 0x7b, 0x10, 0x30, +0x47, 0x5c, 0xb7, 0x42, 0x01, 0xd1, 0x00, 0x20, 0xfe, 0xbd, 0x15, 0xf0, 0x63, 0xfe, 0x02, 0x90, +0x39, 0x00, 0x30, 0x00, 0x01, 0xaa, 0x6b, 0x46, 0xff, 0xf7, 0xb8, 0xff, 0x04, 0x00, 0x17, 0xd1, +0x0f, 0x4a, 0xb8, 0x00, 0x11, 0x58, 0x00, 0x29, 0x00, 0xd1, 0xfe, 0xe7, 0x49, 0x1e, 0x11, 0x50, +0x00, 0x99, 0x01, 0x98, 0x41, 0x1a, 0x09, 0x48, 0x14, 0x38, 0x03, 0x68, 0xc9, 0x18, 0x01, 0x60, +0x07, 0x48, 0xe9, 0x7b, 0x10, 0x30, 0x46, 0x54, 0xb0, 0x00, 0x11, 0x58, 0x49, 0x1c, 0x11, 0x50, +0x02, 0x98, 0x15, 0xf0, 0x43, 0xfe, 0x20, 0x00, 0xfe, 0xbd, 0x00, 0x00, 0x84, 0x01, 0x00, 0x04, +0xb8, 0x49, 0x00, 0x04, 0x30, 0x00, 0x00, 0x04, 0x70, 0xb5, 0x00, 0x24, 0xae, 0x4d, 0x04, 0xe0, +0x40, 0x19, 0x40, 0x68, 0xf4, 0xf7, 0x4c, 0xfb, 0x64, 0x1c, 0xe0, 0x00, 0x29, 0x58, 0x00, 0x29, +0xf6, 0xd1, 0x70, 0xbd, 0xa9, 0x48, 0x21, 0x21, 0x49, 0x01, 0x81, 0x60, 0x81, 0x68, 0x01, 0x22, +0x92, 0x05, 0x11, 0x43, 0x81, 0x60, 0x70, 0x47, 0x70, 0xb5, 0x00, 0x24, 0x52, 0x61, 0xa0, 0xac, +0x01, 0x00, 0x00, 0x00, 0x44, 0xbb, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x75, 0x74, 0xb3, 0x94, +0xa2, 0x4d, 0x04, 0xe0, 0x40, 0x19, 0x40, 0x68, 0xf4, 0xf7, 0x40, 0xfb, 0x64, 0x1c, 0xe0, 0x00, +0x29, 0x58, 0x00, 0x29, 0xf6, 0xd1, 0x70, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x05, 0xf3, 0x76, 0xff, +0x06, 0xf3, 0x0f, 0xfc, 0x14, 0x20, 0x03, 0xf0, 0xcb, 0xfb, 0x00, 0x2c, 0x01, 0xd1, 0xf9, 0xf7, +0xf4, 0xf9, 0x15, 0xf0, 0x01, 0xfe, 0x05, 0x00, 0x07, 0xf0, 0x20, 0xfe, 0xf9, 0xf7, 0x1d, 0xfa, +0x06, 0xf3, 0xf0, 0xfb, 0x00, 0x2c, 0x01, 0xd1, 0x05, 0xf3, 0x5a, 0xff, 0x06, 0xf3, 0xf3, 0xfb, +0x28, 0x00, 0x15, 0xf0, 0xf5, 0xfd, 0x70, 0xbd, 0x8c, 0x48, 0x10, 0xb5, 0x30, 0x38, 0xc2, 0x6a, +0x52, 0x1c, 0xc2, 0x62, 0x41, 0x68, 0x12, 0x20, 0x0e, 0xf0, 0x38, 0xfc, 0x15, 0xf0, 0xe4, 0xfd, +0x04, 0x00, 0x00, 0xf0, 0xc4, 0xf8, 0x20, 0x00, 0x15, 0xf0, 0xe2, 0xfd, 0x10, 0xbd, 0x04, 0x20, +0x10, 0xb5, 0xff, 0xf2, 0x48, 0xf8, 0x01, 0x20, 0x10, 0xbd, 0x70, 0xb5, 0x02, 0x20, 0xff, 0xf7, +0xb3, 0xf8, 0xf8, 0xf7, 0x2f, 0xff, 0xfe, 0xf7, 0xba, 0xfd, 0x00, 0x24, 0x01, 0x26, 0x00, 0x28, +0x19, 0xd0, 0x18, 0xf0, 0x84, 0xfa, 0x00, 0x28, 0x15, 0xd0, 0x18, 0xf0, 0x3d, 0xf8, 0x00, 0x28, +0x03, 0xd1, 0xfe, 0xf7, 0xb6, 0xfd, 0x00, 0x28, 0x0d, 0xd0, 0x18, 0xf0, 0x80, 0xfa, 0x00, 0x28, +0x09, 0xd1, 0x18, 0xf0, 0x31, 0xf8, 0x71, 0x49, 0x30, 0x39, 0x00, 0x28, 0x00, 0xd0, 0xcc, 0x61, +0x70, 0x48, 0x04, 0x80, 0x4e, 0x62, 0x07, 0xf0, 0x0c, 0xfc, 0x6f, 0x48, 0x00, 0x22, 0x00, 0x68, +0x19, 0x21, 0xff, 0xf2, 0xfe, 0xfb, 0x18, 0xf0, 0x1f, 0xf8, 0x00, 0x28, 0x0c, 0xd0, 0x6b, 0x4d, +0x2e, 0x72, 0xf9, 0xf7, 0x75, 0xfd, 0x6a, 0x48, 0x01, 0x88, 0x00, 0x29, 0x02, 0xd0, 0x04, 0x80, +0x2c, 0x72, 0x01, 0xe0, 0xf9, 0xf7, 0x76, 0xfd, 0x66, 0x48, 0x67, 0x49, 0x00, 0x68, 0x88, 0x42, +0x0b, 0xd1, 0xfe, 0xf7, 0x77, 0xfd, 0x00, 0x28, 0x00, 0xd0, 0x02, 0x20, 0x18, 0xf0, 0x58, 0xff, +0x01, 0x21, 0x09, 0x03, 0x1b, 0xf0, 0x98, 0xea, 0x08, 0xe0, 0xfe, 0xf7, 0x6b, 0xfd, 0x00, 0x28, +0x01, 0xd0, 0x04, 0x20, 0x00, 0xe0, 0x03, 0x20, 0xfe, 0xf7, 0x3f, 0xfe, 0x00, 0xf0, 0x9c, 0xf8, +0x70, 0xbd, 0xf8, 0xb5, 0x00, 0x20, 0x18, 0xf0, 0x43, 0xff, 0x00, 0x28, 0x02, 0xd0, 0x01, 0x20, +0x0d, 0xf0, 0xd7, 0xfa, 0xf8, 0xf7, 0xce, 0xfe, 0x00, 0x20, 0x18, 0xf0, 0x39, 0xff, 0x00, 0x28, +0x02, 0xd0, 0x02, 0x20, 0x0d, 0xf0, 0xcd, 0xfa, 0xfe, 0xf7, 0x51, 0xfd, 0x47, 0x4c, 0x4f, 0x4e, +0x00, 0x25, 0x30, 0x3c, 0x00, 0x28, 0x2f, 0xd0, 0x18, 0xf0, 0x19, 0xfa, 0x00, 0x28, 0x2b, 0xd0, +0x17, 0xf0, 0xd2, 0xff, 0x00, 0x28, 0x03, 0xd1, 0xfe, 0xf7, 0x4b, 0xfd, 0x00, 0x28, 0x23, 0xd0, +0x18, 0xf0, 0x15, 0xfa, 0x00, 0x28, 0x1f, 0xd1, 0x60, 0x6a, 0x3e, 0x4f, 0x00, 0x28, 0x0d, 0xd1, +0x18, 0xf0, 0x16, 0xff, 0x1b, 0xf0, 0x68, 0xea, 0x00, 0x28, 0x07, 0xd1, 0x3a, 0x48, 0x00, 0x22, +0x00, 0x68, 0x1b, 0x21, 0xff, 0xf2, 0x95, 0xfb, 0x00, 0x28, 0x02, 0xd0, 0xe5, 0x61, 0x3d, 0x80, +0x15, 0xe0, 0x30, 0x88, 0x01, 0x25, 0x00, 0x28, 0x00, 0xd0, 0x3d, 0x80, 0x17, 0xf0, 0xac, 0xff, +0x00, 0x28, 0x11, 0xd0, 0xe5, 0x61, 0x0f, 0xe0, 0x18, 0xf0, 0xf1, 0xf9, 0x00, 0x28, 0x06, 0xd0, +0x60, 0x6a, 0x00, 0x28, 0x03, 0xd0, 0x65, 0x62, 0x30, 0x88, 0x00, 0x28, 0x01, 0xd0, 0x03, 0x20, +0x00, 0xe0, 0x04, 0x20, 0xfe, 0xf7, 0xe1, 0xfd, 0x00, 0xf0, 0x3e, 0xf8, 0xf8, 0xbd, 0xfe, 0xb5, +0x2b, 0x4c, 0x60, 0x69, 0x30, 0x25, 0x28, 0x43, 0x60, 0x61, 0x2a, 0x4e, 0x70, 0x6a, 0x02, 0x27, +0x38, 0x43, 0x70, 0x62, 0x06, 0xf0, 0xd6, 0xfe, 0x01, 0x90, 0x27, 0x48, 0x00, 0x78, 0xc0, 0x07, +0x01, 0xd1, 0xf8, 0xf7, 0xce, 0xfe, 0x02, 0xa8, 0xfa, 0xf7, 0x56, 0xf9, 0x07, 0xf0, 0xc1, 0xf8, +0xfa, 0xf7, 0xd2, 0xf9, 0x00, 0x90, 0xfa, 0xf7, 0x45, 0xf9, 0x00, 0x9b, 0x00, 0x22, 0x02, 0xa9, +0xfa, 0xf7, 0xd0, 0xf9, 0x12, 0xf0, 0x02, 0xf8, 0x06, 0xf3, 0xf2, 0xfe, 0x01, 0x98, 0x06, 0xf0, +0xd2, 0xfe, 0x05, 0xf0, 0x06, 0xfd, 0xf6, 0xf7, 0x98, 0xfa, 0xf5, 0xf7, 0x00, 0xfd, 0x16, 0x48, +0x00, 0x78, 0xc0, 0x07, 0x01, 0xd1, 0xf9, 0xf7, 0x41, 0xf8, 0x60, 0x69, 0xa8, 0x43, 0x60, 0x61, +0x70, 0x6a, 0xb8, 0x43, 0x70, 0x62, 0xfe, 0xbd, 0x10, 0xb5, 0xf8, 0xf7, 0x2e, 0xfe, 0x0f, 0x48, +0x07, 0x22, 0x00, 0x68, 0x01, 0x21, 0x16, 0xf0, 0x1d, 0xfb, 0x10, 0xbd, 0xc0, 0xf0, 0x00, 0xc0, +0x00, 0x30, 0x00, 0x80, 0x48, 0xf0, 0x00, 0xc0, 0x18, 0xee, 0x00, 0xc0, 0xc4, 0x33, 0x01, 0xc0, +0x38, 0xf0, 0x00, 0xc0, 0x1c, 0xf0, 0x00, 0xc0, 0xff, 0xff, 0x00, 0x00, 0x04, 0x36, 0x01, 0xc0, +0xc0, 0xa2, 0x00, 0x80, 0xc0, 0xa8, 0x00, 0x80, 0x82, 0x55, 0x00, 0x04, 0xfc, 0x1c, 0x01, 0xc0, +0xf8, 0x4b, 0x10, 0xb5, 0x5c, 0x68, 0x00, 0x2c, 0x02, 0xd1, 0x58, 0x60, 0x02, 0x60, 0x41, 0x60, +0x00, 0x28, 0x00, 0xd1, 0x58, 0x60, 0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x0e, 0x00, 0x00, 0x25, +0x15, 0xf0, 0xaa, 0xfc, 0xef, 0x49, 0x03, 0xe0, 0xa1, 0x42, 0x01, 0xd1, 0x4c, 0x68, 0x0d, 0xe0, +0x49, 0x68, 0x00, 0x29, 0xf8, 0xd1, 0x0d, 0xe0, 0xe1, 0x68, 0x49, 0x05, 0x05, 0xd5, 0x07, 0x2e, +0x02, 0xd0, 0x21, 0x7a, 0xb1, 0x42, 0x00, 0xd1, 0x25, 0x00, 0x64, 0x68, 0x00, 0x2c, 0x01, 0xd0, +0x00, 0x2d, 0xf1, 0xd0, 0x15, 0xf0, 0x94, 0xfc, 0x28, 0x00, 0x70, 0xbd, 0xf8, 0xb5, 0x00, 0x25, +0x07, 0x00, 0x15, 0xf0, 0x89, 0xfc, 0x00, 0x90, 0x38, 0x00, 0x18, 0xf0, 0x11, 0xfe, 0x04, 0x00, +0x09, 0x26, 0xb6, 0x01, 0x0f, 0xe0, 0x20, 0x00, 0x18, 0xf0, 0xfa, 0xfd, 0x00, 0x28, 0x05, 0xd0, +0x80, 0x19, 0xc0, 0x69, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x25, 0x06, 0xe0, 0x39, 0x00, 0x20, 0x00, +0xff, 0xf7, 0xc2, 0xff, 0x04, 0x00, 0x00, 0x2c, 0xed, 0xd1, 0x00, 0x98, 0x15, 0xf0, 0x70, 0xfc, +0x28, 0x00, 0xf8, 0xbd, 0xd0, 0x48, 0x80, 0x68, 0x70, 0x47, 0xcf, 0x49, 0x88, 0x68, 0x40, 0x1c, +0x88, 0x60, 0x70, 0x47, 0xcc, 0x49, 0x88, 0x68, 0x40, 0x1e, 0x88, 0x60, 0x70, 0x47, 0xca, 0x48, +0xc0, 0x68, 0x70, 0x47, 0x70, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0x15, 0xf0, 0x55, 0xfc, 0xc5, 0x49, +0x4c, 0x68, 0x0a, 0xe0, 0x21, 0x7a, 0xa9, 0x42, 0x06, 0xd1, 0xe1, 0x7a, 0xb1, 0x42, 0x03, 0xd1, +0x15, 0xf0, 0x4e, 0xfc, 0x20, 0x00, 0x70, 0xbd, 0x64, 0x68, 0x00, 0x2c, 0xf2, 0xd1, 0x15, 0xf0, +0x47, 0xfc, 0x00, 0x20, 0x70, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x05, 0x00, 0x80, 0x34, 0x20, 0x69, +0x00, 0x26, 0x00, 0x28, 0x34, 0xd1, 0xa0, 0x69, 0x00, 0x28, 0x31, 0xd1, 0x28, 0x7a, 0x03, 0x28, +0x0f, 0xd1, 0xe8, 0x7a, 0x01, 0x28, 0x0c, 0xd1, 0x00, 0x21, 0x03, 0x20, 0xff, 0xf7, 0xd2, 0xff, +0x80, 0x30, 0x81, 0x69, 0xa1, 0x61, 0x41, 0x69, 0x61, 0x61, 0x00, 0x69, 0x20, 0x61, 0x45, 0x61, +0x1f, 0xe0, 0xae, 0x48, 0x00, 0x22, 0x64, 0x21, 0x11, 0xf3, 0x16, 0xfb, 0x66, 0xe7, 0x8a, 0x6b, +0x01, 0x00, 0x00, 0x00, 0x40, 0xbf, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x26, 0xae, 0x60, 0xf8, +0x00, 0x28, 0xa0, 0x61, 0x07, 0xd0, 0x1c, 0x21, 0x01, 0x81, 0xa0, 0x69, 0x01, 0x00, 0x30, 0x31, +0x61, 0x61, 0x01, 0x21, 0x81, 0x73, 0xa7, 0x48, 0x00, 0x22, 0x64, 0x21, 0x11, 0xf3, 0x06, 0xfb, +0x00, 0x28, 0x20, 0x61, 0x06, 0xd0, 0x45, 0x61, 0x20, 0x69, 0x00, 0x28, 0x02, 0xd0, 0xa0, 0x69, +0x00, 0x28, 0x00, 0xd1, 0x01, 0x26, 0x30, 0x00, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x2c, 0x00, +0x80, 0x34, 0xa1, 0x69, 0x01, 0x20, 0x00, 0x29, 0x14, 0xd0, 0x22, 0x69, 0x00, 0x2a, 0x11, 0xd0, +0x00, 0x26, 0x8e, 0x73, 0xa0, 0x69, 0x11, 0xf3, 0xbf, 0xfa, 0xa6, 0x61, 0x66, 0x61, 0x28, 0x7a, +0x03, 0x28, 0x02, 0xd1, 0xe8, 0x7a, 0x01, 0x28, 0x02, 0xd0, 0x20, 0x69, 0x11, 0xf3, 0xb4, 0xfa, +0x00, 0x20, 0x26, 0x61, 0x70, 0xbd, 0xfe, 0xb5, 0x04, 0x00, 0x01, 0x26, 0x15, 0xf0, 0xde, 0xfb, +0x25, 0x00, 0x80, 0x35, 0x01, 0x90, 0x28, 0x7a, 0xff, 0x28, 0x2b, 0xd1, 0x87, 0x4f, 0x00, 0x20, +0x39, 0x78, 0x01, 0x23, 0x1a, 0x00, 0x82, 0x40, 0x0a, 0x42, 0x25, 0xd1, 0x83, 0x40, 0x19, 0x43, +0x28, 0x72, 0x39, 0x70, 0x81, 0x00, 0xc9, 0x19, 0x4c, 0x61, 0x81, 0x01, 0x82, 0x48, 0x0e, 0x18, +0x40, 0x21, 0x30, 0x00, 0x10, 0xf3, 0xce, 0xed, 0xee, 0x60, 0x20, 0x7a, 0x01, 0x28, 0x11, 0xd0, +0xb8, 0x68, 0x01, 0x28, 0x01, 0xd1, 0x07, 0xf0, 0x58, 0xff, 0x0b, 0x20, 0x80, 0x01, 0x20, 0x18, +0x01, 0x69, 0x40, 0x31, 0x8a, 0x7b, 0x00, 0x92, 0x81, 0x7a, 0x13, 0x00, 0x28, 0x7a, 0x01, 0x22, +0x07, 0xf0, 0x75, 0xff, 0x00, 0x26, 0x04, 0xe0, 0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x03, 0x28, +0xd0, 0xd3, 0x01, 0x98, 0x15, 0xf0, 0xa6, 0xfb, 0x30, 0x00, 0xfe, 0xbd, 0xfe, 0xb5, 0x05, 0x00, +0x00, 0x20, 0x02, 0x90, 0x15, 0xf0, 0x9a, 0xfb, 0x00, 0x2d, 0x01, 0x90, 0x04, 0xd0, 0x88, 0x20, +0x40, 0x5d, 0x04, 0x00, 0xff, 0x28, 0x00, 0xd1, 0xfe, 0xe7, 0x29, 0x7a, 0x63, 0x4f, 0x01, 0x29, +0x29, 0xd0, 0x0b, 0x21, 0x89, 0x01, 0x69, 0x18, 0x0a, 0x69, 0x40, 0x32, 0x92, 0x7b, 0x00, 0x92, +0x13, 0x00, 0x89, 0x7a, 0x00, 0x22, 0x07, 0xf0, 0x4a, 0xff, 0xb8, 0x68, 0xa0, 0x42, 0x15, 0xd0, +0x11, 0xe0, 0xa0, 0x00, 0xc0, 0x19, 0x85, 0x69, 0x45, 0x61, 0x5b, 0x48, 0xa2, 0x01, 0x80, 0x35, +0x16, 0x18, 0x2c, 0x72, 0xe9, 0x68, 0x40, 0x22, 0x30, 0x00, 0x10, 0xf3, 0x4a, 0xed, 0x64, 0x1c, +0x24, 0x06, 0x24, 0x0e, 0xee, 0x60, 0xb8, 0x68, 0xa0, 0x42, 0xea, 0xd8, 0xb8, 0x68, 0x00, 0x28, +0x01, 0xd1, 0x07, 0xf0, 0x1b, 0xff, 0x01, 0x21, 0x38, 0x78, 0xa1, 0x40, 0x88, 0x43, 0xa1, 0x00, +0x38, 0x70, 0x00, 0x20, 0xc9, 0x19, 0x48, 0x61, 0x01, 0x98, 0x15, 0xf0, 0x5b, 0xfb, 0x02, 0x98, +0xfe, 0xbd, 0x02, 0x00, 0x11, 0x7a, 0x00, 0x20, 0x01, 0x29, 0x05, 0xd0, 0x02, 0x29, 0x03, 0xd0, +0x03, 0x29, 0x01, 0xd0, 0x04, 0x29, 0x01, 0xd1, 0x10, 0x00, 0x64, 0xe7, 0x70, 0x47, 0x10, 0xb5, +0x04, 0x00, 0x00, 0x7a, 0x01, 0x28, 0x05, 0xd0, 0x02, 0x28, 0x03, 0xd0, 0x03, 0x28, 0x01, 0xd0, +0x04, 0x28, 0x07, 0xd1, 0x20, 0x00, 0xff, 0xf7, 0x99, 0xff, 0x00, 0x20, 0x80, 0x34, 0xe0, 0x60, +0xff, 0x20, 0x20, 0x72, 0x00, 0x20, 0x10, 0xbd, 0x03, 0x00, 0x10, 0xb5, 0x01, 0xd1, 0x01, 0x20, +0x10, 0xbd, 0x18, 0x00, 0x18, 0xf0, 0xcd, 0xfc, 0x04, 0x00, 0xd8, 0x68, 0x40, 0x05, 0x07, 0xd5, +0x60, 0x68, 0x00, 0x28, 0x04, 0xd0, 0x0e, 0xf0, 0x89, 0xfc, 0x00, 0x20, 0x60, 0x60, 0x20, 0x60, +0x00, 0x20, 0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0xc0, 0x68, 0x00, 0x25, 0x40, 0x05, 0x23, 0xd5, +0x20, 0x7a, 0x03, 0x28, 0x01, 0xd0, 0x04, 0x28, 0x03, 0xd1, 0x20, 0x00, 0xff, 0xf7, 0x0d, 0xff, +0x05, 0x00, 0xb1, 0x20, 0x80, 0x00, 0x21, 0x18, 0x80, 0x1d, 0x24, 0x18, 0x22, 0x78, 0x01, 0x20, +0xff, 0x2a, 0x0e, 0xd0, 0x00, 0x20, 0x03, 0x00, 0x07, 0xf0, 0x4e, 0xfe, 0x00, 0x28, 0x08, 0xd1, +0x1a, 0x4b, 0x26, 0x78, 0x01, 0x22, 0x59, 0x68, 0xb2, 0x40, 0x91, 0x43, 0x59, 0x60, 0xff, 0x21, +0x21, 0x70, 0x01, 0x28, 0x00, 0xd1, 0x01, 0x25, 0x28, 0x00, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, +0xc0, 0x68, 0x40, 0x05, 0x30, 0xd5, 0x28, 0x00, 0x18, 0xf0, 0x8b, 0xfc, 0x04, 0x00, 0x40, 0x68, +0x00, 0x28, 0x39, 0xd1, 0x28, 0x7a, 0x03, 0x28, 0x0f, 0xd1, 0xe8, 0x7a, 0x01, 0x28, 0x0c, 0xd1, +0x00, 0x21, 0x03, 0x20, 0xff, 0xf7, 0x80, 0xfe, 0x0b, 0x21, 0x89, 0x01, 0x40, 0x18, 0xc1, 0x6a, +0x61, 0x60, 0x80, 0x6a, 0x20, 0x60, 0x60, 0x68, 0x02, 0xe0, 0x0e, 0xf0, 0x2f, 0xfc, 0x60, 0x60, +0x00, 0x28, 0x0b, 0xd1, 0x01, 0x20, 0x70, 0xbd, 0x94, 0x01, 0x00, 0x04, 0xd8, 0x49, 0x00, 0x04, +0x38, 0x01, 0x00, 0x04, 0x24, 0x01, 0x00, 0x04, 0x8c, 0x0c, 0x02, 0xc0, 0x08, 0x30, 0x20, 0x60, +0x28, 0x00, 0x1a, 0xf0, 0xf4, 0xef, 0x0f, 0xe0, 0xe9, 0x7a, 0xa8, 0x7a, 0x18, 0xf0, 0x69, 0xfc, +0x04, 0x00, 0x28, 0x00, 0x18, 0xf0, 0x55, 0xfc, 0x03, 0x00, 0x20, 0x00, 0x18, 0xf0, 0x51, 0xfc, +0x41, 0x68, 0x59, 0x60, 0x00, 0x68, 0x18, 0x60, 0x00, 0x20, 0xdc, 0xe7, 0x70, 0xb5, 0x05, 0x00, +0xc0, 0x68, 0x00, 0x24, 0x40, 0x05, 0x11, 0xd5, 0x28, 0x00, 0x01, 0xf0, 0xb5, 0xfd, 0x04, 0x00, +0x28, 0x7a, 0x03, 0x28, 0x01, 0xd0, 0x04, 0x28, 0x06, 0xd1, 0x28, 0x00, 0xff, 0xf7, 0x55, 0xfe, +0x01, 0x28, 0x01, 0xd1, 0x01, 0x24, 0x0a, 0xe0, 0x00, 0x2c, 0x08, 0xd1, 0x28, 0x7a, 0x02, 0x28, +0x01, 0xd0, 0x03, 0x28, 0x03, 0xd1, 0x28, 0x00, 0xff, 0xf7, 0x98, 0xff, 0x04, 0x00, 0x20, 0x00, +0xb9, 0xe7, 0x10, 0xb5, 0x04, 0x00, 0x40, 0x21, 0x3e, 0x30, 0x10, 0xf3, 0xb6, 0xec, 0x20, 0x00, +0x06, 0x21, 0x7e, 0x30, 0x10, 0xf3, 0xb0, 0xec, 0xe0, 0x68, 0x01, 0x21, 0x09, 0x03, 0x88, 0x43, +0xe0, 0x60, 0xff, 0x20, 0x00, 0x21, 0x49, 0x30, 0x01, 0x55, 0xfe, 0x21, 0x38, 0x20, 0x01, 0x55, +0x20, 0x00, 0x08, 0xf0, 0xd4, 0xfa, 0x10, 0xbd, 0x01, 0x00, 0x00, 0x20, 0x00, 0x29, 0x05, 0xd0, +0x0a, 0x7a, 0x01, 0x2a, 0x02, 0xd1, 0x17, 0x20, 0x40, 0x01, 0x08, 0x18, 0x70, 0x47, 0x70, 0xb5, +0x04, 0x00, 0xff, 0xf7, 0xf1, 0xff, 0x05, 0x00, 0x09, 0x20, 0x80, 0x01, 0x20, 0x18, 0x0e, 0xf3, +0x3f, 0xfa, 0x20, 0x00, 0x08, 0xf0, 0x5b, 0xfb, 0x20, 0x00, 0xff, 0x30, 0x06, 0x21, 0x4a, 0x30, +0x10, 0xf3, 0x82, 0xec, 0x00, 0x20, 0x68, 0x75, 0x7d, 0xe7, 0x3f, 0x22, 0x10, 0xb5, 0x12, 0x5c, +0xd2, 0x07, 0x0e, 0xd0, 0xaf, 0x22, 0x92, 0x00, 0x84, 0x18, 0x00, 0x29, 0x0a, 0xd0, 0x00, 0x7a, +0x01, 0x28, 0x06, 0xd1, 0x1a, 0xf0, 0x76, 0xef, 0x01, 0x22, 0x01, 0x00, 0x20, 0x00, 0xf9, 0xf7, +0xcc, 0xfe, 0x10, 0xbd, 0x01, 0x22, 0xff, 0x21, 0xf8, 0xe7, 0x10, 0xb5, 0x04, 0x00, 0x00, 0x21, +0xff, 0xf7, 0xe3, 0xff, 0x20, 0x00, 0xff, 0xf7, 0xca, 0xff, 0x20, 0x00, 0xff, 0xf7, 0xa1, 0xff, +0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x16, 0x00, 0x15, 0xf0, 0x1d, 0x4b, 0xbe, 0x31, +0x01, 0x00, 0x00, 0x00, 0x3c, 0xc3, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x24, 0x57, 0xb8, 0xee, +0x1f, 0xfa, 0xfe, 0x49, 0x03, 0xe0, 0xa1, 0x42, 0x01, 0xd1, 0x4c, 0x68, 0x0e, 0xe0, 0x49, 0x68, +0x00, 0x29, 0xf8, 0xd1, 0x0c, 0xe0, 0xa1, 0x7a, 0xa9, 0x42, 0x06, 0xd1, 0xe1, 0x7a, 0xb1, 0x42, +0x03, 0xd1, 0x15, 0xf0, 0x11, 0xfa, 0x20, 0x00, 0x3f, 0xe7, 0x64, 0x68, 0x00, 0x2c, 0xf2, 0xd1, +0x15, 0xf0, 0x0a, 0xfa, 0x00, 0x20, 0x38, 0xe7, 0xf8, 0xb5, 0x04, 0x00, 0x00, 0x25, 0xc1, 0x7a, +0x80, 0x7a, 0x18, 0xf0, 0xb0, 0xfb, 0xe2, 0x7a, 0xa1, 0x7a, 0xff, 0xf7, 0xd4, 0xff, 0x00, 0x28, +0x00, 0xd1, 0x01, 0x25, 0x20, 0x00, 0xff, 0x30, 0x06, 0x21, 0x4a, 0x30, 0x10, 0xf3, 0x26, 0xec, +0x09, 0x22, 0x20, 0x7a, 0x21, 0x00, 0x27, 0x00, 0x92, 0x01, 0xc0, 0x31, 0xb8, 0x37, 0xa6, 0x18, +0x00, 0x28, 0x08, 0xd0, 0x01, 0x28, 0x11, 0xd0, 0x02, 0x28, 0x19, 0xd0, 0x03, 0x28, 0x22, 0xd1, +0x60, 0x7a, 0x03, 0x28, 0x18, 0xd1, 0x08, 0x68, 0xff, 0xf2, 0x41, 0xfc, 0x18, 0x21, 0x38, 0x00, +0x10, 0xf3, 0xe2, 0xeb, 0x30, 0x00, 0x0e, 0xf3, 0xbd, 0xf9, 0x0f, 0xe0, 0x20, 0x00, 0xff, 0xf7, +0x9e, 0xff, 0x00, 0x2d, 0x02, 0xd0, 0x20, 0x00, 0xff, 0xf7, 0xae, 0xfe, 0x00, 0x25, 0x0a, 0xe0, +0x20, 0x00, 0xff, 0xf7, 0x93, 0xfe, 0x01, 0xe0, 0x02, 0x28, 0xf9, 0xd0, 0x00, 0x2d, 0x02, 0xd0, +0x20, 0x00, 0xff, 0xf7, 0xa1, 0xfe, 0x28, 0x00, 0xf8, 0xbd, 0x00, 0x28, 0x02, 0xd0, 0x01, 0x7a, +0x03, 0x29, 0x01, 0xd0, 0x00, 0x20, 0x70, 0x47, 0x0b, 0x21, 0x89, 0x01, 0x40, 0x18, 0x40, 0x6a, +0x70, 0x47, 0x70, 0xb5, 0x04, 0x00, 0x18, 0xf0, 0x4e, 0xfb, 0x20, 0x00, 0x18, 0xf0, 0x24, 0xfb, +0x05, 0x00, 0xe0, 0x68, 0x40, 0x05, 0x03, 0xd5, 0x09, 0x20, 0x80, 0x01, 0x28, 0x18, 0x44, 0x61, +0xbf, 0x48, 0x20, 0x63, 0xbf, 0x48, 0x60, 0x63, 0xa8, 0x7f, 0x20, 0x34, 0x20, 0x76, 0xe8, 0x6f, +0x00, 0x28, 0x18, 0xd1, 0x03, 0xf0, 0x98, 0xfd, 0x00, 0x28, 0xe8, 0x67, 0x00, 0xd1, 0xfe, 0xe7, +0x04, 0x00, 0x08, 0x34, 0x54, 0x21, 0x20, 0x00, 0x10, 0xf3, 0x96, 0xeb, 0x03, 0x21, 0xa1, 0x71, +0xe0, 0x79, 0x01, 0x09, 0x09, 0x01, 0xe1, 0x71, 0x04, 0x21, 0x48, 0x20, 0x01, 0x55, 0xa0, 0x7a, +0x41, 0x08, 0x49, 0x00, 0xa1, 0x72, 0xb0, 0xe6, 0xf8, 0xb5, 0x04, 0x00, 0x10, 0xd0, 0xab, 0x4d, +0x28, 0x78, 0x03, 0x28, 0x02, 0xd1, 0xe8, 0x68, 0xa0, 0x42, 0x09, 0xd0, 0xfe, 0xf7, 0x56, 0xf9, +0x00, 0x28, 0x07, 0xd0, 0xe8, 0x68, 0xff, 0x30, 0x41, 0x30, 0x00, 0x7a, 0x07, 0x28, 0x01, 0xd1, +0x01, 0x20, 0xf8, 0xbd, 0x23, 0x7a, 0x01, 0x26, 0x03, 0x27, 0x10, 0xf3, 0xee, 0xec, 0x06, 0x04, +0x17, 0x1e, 0x1b, 0x0f, 0x17, 0x0f, 0x03, 0x20, 0x0f, 0xf0, 0x73, 0xfd, 0x23, 0xe0, 0x00, 0x2f, +0x02, 0xd0, 0xf8, 0x68, 0xc0, 0x04, 0x01, 0xd4, 0xac, 0x60, 0x2e, 0x70, 0x28, 0x78, 0x01, 0x28, +0x02, 0xd1, 0xa8, 0x68, 0xfe, 0xf7, 0x8f, 0xf8, 0x00, 0x20, 0xf8, 0xbd, 0x02, 0x20, 0xac, 0x60, +0x28, 0x70, 0xf3, 0xe7, 0x60, 0x7a, 0x02, 0x28, 0x08, 0xd1, 0x20, 0x00, 0xfb, 0xf7, 0x02, 0xf9, +0x21, 0x00, 0xfc, 0xf7, 0x85, 0xf8, 0xec, 0x60, 0x2f, 0x70, 0xe7, 0xe7, 0x03, 0x28, 0xe5, 0xd1, +0x00, 0x20, 0x18, 0xf0, 0xc1, 0xfa, 0x07, 0x00, 0xfe, 0xf7, 0x1d, 0xf9, 0x00, 0x28, 0xdb, 0xd0, +0xd5, 0xe7, 0x70, 0xb5, 0x04, 0x00, 0x02, 0x20, 0x60, 0x72, 0x20, 0x00, 0x18, 0xf0, 0xcb, 0xfa, +0x20, 0x00, 0x18, 0xf0, 0xa1, 0xfa, 0x05, 0x00, 0xe0, 0x68, 0x40, 0x05, 0x11, 0xd5, 0x09, 0x20, +0x80, 0x01, 0x28, 0x18, 0x44, 0x61, 0xe0, 0x68, 0x40, 0x05, 0x0a, 0xd5, 0x7e, 0x48, 0x80, 0x68, +0x00, 0x28, 0x06, 0xd1, 0xfe, 0xf7, 0xff, 0xf8, 0x00, 0x28, 0x02, 0xd1, 0x20, 0x00, 0xff, 0xf7, +0x93, 0xff, 0x77, 0x48, 0x20, 0x63, 0x77, 0x48, 0x60, 0x63, 0xa8, 0x7f, 0x20, 0x34, 0x20, 0x76, +0xe8, 0x6f, 0x00, 0x28, 0x18, 0xd1, 0x03, 0xf0, 0x07, 0xfd, 0x00, 0x28, 0xe8, 0x67, 0x00, 0xd1, +0xfe, 0xe7, 0x04, 0x00, 0x08, 0x34, 0x54, 0x21, 0x20, 0x00, 0x10, 0xf3, 0x06, 0xeb, 0x03, 0x21, +0xa1, 0x71, 0xe0, 0x79, 0x01, 0x09, 0x09, 0x01, 0xe1, 0x71, 0x04, 0x21, 0x48, 0x20, 0x01, 0x55, +0xa0, 0x7a, 0x41, 0x08, 0x49, 0x00, 0xa1, 0x72, 0x1f, 0xe6, 0x10, 0xb5, 0x04, 0x00, 0x15, 0xf0, +0xe7, 0xf8, 0x0b, 0x21, 0x89, 0x01, 0x61, 0x18, 0x09, 0x69, 0x01, 0x22, 0xca, 0x73, 0x61, 0x7a, +0x02, 0x29, 0x0f, 0xd1, 0x60, 0x4b, 0xd9, 0x68, 0x49, 0x1c, 0xd9, 0x60, 0x5f, 0x4b, 0x80, 0x34, +0x21, 0x7a, 0x9c, 0x6a, 0xa1, 0x42, 0x05, 0xd1, 0x5c, 0x6b, 0x8a, 0x40, 0x94, 0x43, 0xd9, 0x0d, +0x0c, 0x43, 0x5c, 0x63, 0x15, 0xf0, 0xd0, 0xf8, 0x10, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x15, 0xf0, +0xc7, 0xf8, 0x0b, 0x22, 0x92, 0x01, 0xa2, 0x18, 0x12, 0x69, 0x00, 0x21, 0xd1, 0x73, 0x61, 0x7a, +0x02, 0x29, 0x03, 0xd1, 0x50, 0x49, 0xca, 0x68, 0x52, 0x1e, 0xca, 0x60, 0x15, 0xf0, 0xbc, 0xf8, +0x10, 0xbd, 0x02, 0x00, 0x0b, 0x20, 0x80, 0x01, 0x10, 0x18, 0x01, 0x69, 0x00, 0x20, 0x00, 0x2a, +0x05, 0xd0, 0x12, 0x7a, 0x00, 0x2a, 0x03, 0xd1, 0x08, 0x00, 0xff, 0x30, 0x51, 0x30, 0x70, 0x47, +0x03, 0x2a, 0xfc, 0xd1, 0x08, 0x00, 0xff, 0x30, 0x55, 0x30, 0x70, 0x47, 0x00, 0x21, 0x00, 0x28, +0x0a, 0xd0, 0x02, 0x7a, 0x00, 0x2a, 0x02, 0xd1, 0x17, 0x21, 0x49, 0x01, 0x03, 0xe0, 0x03, 0x2a, +0x02, 0xd1, 0xdd, 0x21, 0x89, 0x00, 0x41, 0x18, 0x08, 0x00, 0x70, 0x47, 0x00, 0x28, 0x00, 0xb5, +0x0b, 0xd0, 0x01, 0x7a, 0x03, 0x29, 0x08, 0xd1, 0xff, 0xf7, 0xcf, 0xfe, 0x00, 0x21, 0x29, 0x22, +0xc9, 0x43, 0x52, 0x01, 0x80, 0x18, 0xc1, 0x75, 0x01, 0x76, 0x00, 0xbd, 0x70, 0xb5, 0x04, 0x00, +0x1f, 0xd0, 0x20, 0x7a, 0x03, 0x28, 0x1c, 0xd1, 0x20, 0x00, 0xff, 0xf7, 0xd7, 0xff, 0x05, 0x00, +0x17, 0xd0, 0x20, 0x00, 0xe4, 0x62, 0x1a, 0xf0, 0xb4, 0xed, 0x20, 0x00, 0xff, 0xf7, 0xf4, 0xfe, +0x2b, 0x48, 0x20, 0x63, 0x2b, 0x48, 0x60, 0x63, 0x0b, 0x20, 0x80, 0x01, 0x20, 0x18, 0x00, 0x69, +0x68, 0x30, 0x28, 0x60, 0x28, 0x48, 0x68, 0x60, 0x28, 0x48, 0xe8, 0x60, 0x20, 0x00, 0x1a, 0xf0, +0xa4, 0xed, 0x92, 0xe5, 0x70, 0xb5, 0x04, 0x00, 0xff, 0xf7, 0xb8, 0xff, 0x05, 0x00, 0x1b, 0xd0, +0x03, 0x20, 0x60, 0x72, 0x20, 0x00, 0xe4, 0x62, 0xff, 0xf7, 0xd6, 0xfe, 0x1c, 0x48, 0x20, 0x63, +0x1c, 0x48, 0x60, 0x63, 0x0b, 0x20, 0x80, 0x01, 0x26, 0x18, 0x30, 0x69, 0x68, 0x30, 0x28, 0x60, +0x19, 0x48, 0x68, 0x60, 0x19, 0x48, 0xe8, 0x60, 0x20, 0x00, 0x1a, 0xf0, 0x86, 0xed, 0x30, 0x69, +0x00, 0x21, 0xff, 0x30, 0x41, 0x30, 0x81, 0x73, 0x6f, 0xe5, 0x10, 0xb5, 0x04, 0x00, 0x04, 0x20, +0x60, 0x72, 0xe0, 0x68, 0x40, 0x05, 0x02, 0xd5, 0x20, 0x00, 0xff, 0xf7, 0xb5, 0xfe, 0x0b, 0x21, +0x89, 0x01, 0x0f, 0x48, 0x61, 0x18, 0x08, 0x62, 0x20, 0x00, 0x1a, 0xf0, 0x6e, 0xed, 0x17, 0x21, +0x00, 0x20, 0x49, 0x01, 0x61, 0x18, 0x48, 0x75, 0x10, 0xbd, 0x00, 0x00, 0x24, 0x40, 0xa7, 0x3b, +0x01, 0x00, 0x00, 0x00, 0x38, 0xc7, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x77, 0x8d, 0x6b, 0x82, +0x94, 0x01, 0x00, 0x04, 0xfd, 0x63, 0x00, 0xc0, 0xc3, 0x63, 0x00, 0xc0, 0xd8, 0x49, 0x00, 0x04, +0xc0, 0xa2, 0x00, 0x80, 0xc5, 0x60, 0x00, 0xc0, 0x7f, 0x63, 0x00, 0xc0, 0x59, 0x1b, 0x01, 0xc0, +0x44, 0x54, 0x02, 0xc0, 0x20, 0x43, 0x01, 0xc0, 0x30, 0xb5, 0x04, 0x21, 0x41, 0x72, 0x00, 0x21, +0xff, 0x4a, 0x01, 0x63, 0x41, 0x63, 0x13, 0x68, 0x0b, 0x22, 0x92, 0x01, 0x82, 0x18, 0x14, 0x69, +0xdd, 0x88, 0x40, 0x34, 0x25, 0x82, 0x14, 0x69, 0x5d, 0x89, 0x40, 0x34, 0x65, 0x82, 0x14, 0x69, +0x1d, 0x7a, 0x40, 0x34, 0x25, 0x75, 0x12, 0x69, 0x5b, 0x7a, 0x40, 0x32, 0x53, 0x75, 0x03, 0x22, +0x12, 0x02, 0x80, 0x18, 0x41, 0x83, 0x0a, 0x22, 0xc1, 0x83, 0x82, 0x83, 0x01, 0x62, 0x81, 0x62, +0xc1, 0x62, 0x30, 0xbd, 0xef, 0x4a, 0x00, 0x21, 0x38, 0xb5, 0x08, 0x00, 0x11, 0x70, 0x51, 0x60, +0x11, 0x61, 0x83, 0x00, 0x40, 0x1c, 0x9b, 0x18, 0x00, 0x06, 0x00, 0x0e, 0x03, 0x28, 0x59, 0x61, +0xf7, 0xd3, 0x0e, 0xf0, 0xa3, 0xf8, 0xe8, 0x4c, 0xe9, 0x49, 0x22, 0x68, 0x00, 0x92, 0xe7, 0x4a, +0xe8, 0x48, 0xe9, 0x4b, 0xfc, 0xf2, 0x90, 0xf8, 0x00, 0x28, 0x04, 0xd0, 0xe7, 0x48, 0xf3, 0xf7, +0x8f, 0xfc, 0x1a, 0xf0, 0x7c, 0xec, 0x22, 0x68, 0x00, 0x92, 0xe5, 0x4a, 0xe5, 0x49, 0xe6, 0x48, +0xe6, 0x4b, 0xfc, 0xf2, 0x81, 0xf8, 0x00, 0x28, 0x05, 0xd0, 0xe0, 0x48, 0x40, 0x1c, 0xf3, 0xf7, +0x7f, 0xfc, 0x1a, 0xf0, 0x6c, 0xec, 0x0e, 0xf0, 0x03, 0xf9, 0x0e, 0xf0, 0xd9, 0xf8, 0xe1, 0x49, +0xdf, 0x48, 0x48, 0x60, 0x08, 0x00, 0x1a, 0xf0, 0xf6, 0xec, 0x00, 0x20, 0x38, 0xbd, 0xff, 0xb5, +0x81, 0xb0, 0x0d, 0x00, 0x00, 0x26, 0x03, 0x99, 0x28, 0x00, 0x18, 0xf0, 0x56, 0xf9, 0x07, 0x00, +0x00, 0xd1, 0x01, 0x26, 0x0e, 0xf0, 0x7e, 0xf8, 0x04, 0x00, 0x02, 0xd1, 0x00, 0x20, 0x05, 0xb0, +0xf0, 0xbd, 0x01, 0x98, 0x20, 0x72, 0xa5, 0x72, 0x03, 0x98, 0xe0, 0x72, 0x0c, 0x98, 0x20, 0x61, +0xe0, 0x68, 0x01, 0x21, 0x89, 0x02, 0x88, 0x43, 0xf1, 0x07, 0x49, 0x0d, 0x08, 0x43, 0x0b, 0x21, +0x89, 0x01, 0x65, 0x18, 0xe0, 0x60, 0x00, 0x20, 0x68, 0x61, 0x61, 0x21, 0x20, 0x00, 0xc9, 0x43, +0xa0, 0x30, 0x01, 0x82, 0x41, 0x82, 0x05, 0x20, 0xc0, 0x01, 0x20, 0x18, 0xff, 0x21, 0x00, 0x90, +0xc1, 0x63, 0x01, 0x98, 0x05, 0x28, 0x73, 0xd0, 0x00, 0x2e, 0x6c, 0xd0, 0x28, 0x69, 0x00, 0x28, +0x06, 0xd1, 0x20, 0x00, 0x0e, 0xf0, 0xa7, 0xf8, 0x00, 0x28, 0x28, 0x61, 0x00, 0xd1, 0xfe, 0xe7, +0x2e, 0x69, 0x0b, 0x98, 0x30, 0x73, 0x0f, 0x20, 0x80, 0x02, 0x30, 0x61, 0x01, 0x21, 0x29, 0x20, +0x81, 0x55, 0x09, 0x21, 0x30, 0x00, 0x89, 0x01, 0x88, 0x30, 0x61, 0x18, 0xc8, 0x63, 0x30, 0x00, +0xf6, 0xf7, 0xce, 0xfd, 0xff, 0x36, 0x00, 0x20, 0x76, 0x1c, 0x70, 0x61, 0xb0, 0x61, 0xa4, 0x48, +0x06, 0x22, 0x01, 0x68, 0xb1, 0x20, 0x80, 0x00, 0x20, 0x18, 0x10, 0xf3, 0x26, 0xe9, 0xff, 0x20, +0x88, 0x21, 0x08, 0x55, 0xa8, 0x72, 0x20, 0x00, 0xff, 0xf7, 0x9c, 0xfc, 0x01, 0x28, 0x6e, 0xd0, +0x0a, 0x98, 0x00, 0x28, 0x06, 0xd0, 0x20, 0x00, 0xff, 0x30, 0x0a, 0x99, 0x06, 0x22, 0x4a, 0x30, +0x10, 0xf3, 0xa8, 0xe8, 0x00, 0x98, 0x00, 0x21, 0x81, 0x80, 0x9c, 0x4a, 0x20, 0x00, 0xff, 0x30, +0x1b, 0x3a, 0x41, 0x30, 0x02, 0x80, 0x42, 0x80, 0x0f, 0x22, 0x81, 0x80, 0x82, 0x71, 0x01, 0x72, +0xfe, 0x22, 0x38, 0x20, 0x02, 0x55, 0xe2, 0x68, 0x31, 0x20, 0x00, 0x03, 0x82, 0x43, 0x09, 0x20, +0x80, 0x01, 0x20, 0x18, 0x41, 0x62, 0xc1, 0x61, 0x01, 0x62, 0x81, 0x62, 0xc1, 0x62, 0x01, 0x63, +0x01, 0x20, 0xc0, 0x03, 0x82, 0x43, 0x20, 0x00, 0x40, 0x21, 0x3e, 0x30, 0xe2, 0x60, 0x10, 0xf3, +0x48, 0xe9, 0x04, 0x98, 0x00, 0x28, 0x0c, 0xd0, 0x20, 0x00, 0x04, 0x99, 0x06, 0x22, 0x7e, 0x30, +0x10, 0xf3, 0x78, 0xe8, 0x0a, 0xe0, 0xb1, 0x20, 0x06, 0x22, 0x80, 0x00, 0x39, 0x18, 0xb3, 0xe7, +0x0e, 0xe0, 0x20, 0x00, 0x06, 0x21, 0x7e, 0x30, 0x10, 0xf3, 0x32, 0xe9, 0xe0, 0x68, 0xc0, 0x21, +0x88, 0x43, 0xe0, 0x60, 0x20, 0x00, 0xfe, 0xf7, 0x78, 0xfe, 0x20, 0x00, 0x0b, 0xf0, 0x6f, 0xfc, +0xff, 0x20, 0x00, 0x26, 0x48, 0x30, 0x06, 0x55, 0x01, 0x9b, 0x10, 0xf3, 0x78, 0xea, 0x07, 0x05, +0x31, 0x11, 0x15, 0x34, 0x34, 0x0d, 0x34, 0x00, 0x20, 0x00, 0xe4, 0x62, 0x1a, 0xf0, 0x22, 0xec, +0x20, 0x00, 0xff, 0xf7, 0x81, 0xfe, 0x26, 0xe0, 0x20, 0x00, 0xff, 0xf7, 0xcd, 0xfe, 0x22, 0xe0, +0x20, 0x00, 0xff, 0xf7, 0xa8, 0xfd, 0x1e, 0xe0, 0x03, 0x98, 0x02, 0x28, 0x03, 0xd3, 0x20, 0x00, +0x0d, 0xf0, 0xc7, 0xff, 0x32, 0xe7, 0x03, 0x98, 0xaf, 0x23, 0xdb, 0x00, 0x58, 0x43, 0x6e, 0x49, +0x40, 0x18, 0x68, 0x62, 0x20, 0x00, 0xff, 0xf7, 0x33, 0xfe, 0x20, 0x00, 0xff, 0xf7, 0x40, 0xfe, +0x20, 0x00, 0xff, 0xf7, 0x10, 0xfd, 0x69, 0x48, 0x20, 0x63, 0x69, 0x48, 0x60, 0x63, 0x02, 0xe0, +0x20, 0x00, 0xff, 0xf7, 0x7c, 0xfe, 0x28, 0x69, 0x00, 0x28, 0x2e, 0xd0, 0xe1, 0x68, 0x49, 0x05, +0x2b, 0xd5, 0x05, 0x00, 0x20, 0x21, 0x2c, 0x30, 0x10, 0xf3, 0xb8, 0xe8, 0x2b, 0x20, 0x46, 0x55, +0x28, 0x00, 0x40, 0x30, 0x64, 0x21, 0x86, 0x73, 0x81, 0x81, 0x4d, 0x49, 0x09, 0x68, 0xca, 0x88, +0x02, 0x82, 0x4a, 0x89, 0x42, 0x82, 0x0a, 0x7a, 0x02, 0x75, 0x49, 0x7a, 0x41, 0x75, 0x09, 0x20, +0x80, 0x01, 0x20, 0x18, 0xc0, 0x6b, 0x8c, 0x21, 0x10, 0xf3, 0xa0, 0xe8, 0x28, 0x00, 0x80, 0x30, +0xc6, 0x80, 0x01, 0x79, 0xfd, 0x22, 0x49, 0x08, 0x49, 0x00, 0x11, 0x40, 0x01, 0x71, 0x78, 0x21, +0x80, 0x30, 0x81, 0x63, 0x1e, 0x21, 0x40, 0x30, 0x81, 0x60, 0x20, 0x00, 0xe7, 0xe6, 0x70, 0xb5, +0x04, 0x00, 0x00, 0x7a, 0x16, 0x00, 0x00, 0x25, 0x03, 0x28, 0x01, 0xd0, 0x21, 0x72, 0x00, 0xe0, +0x0d, 0x00, 0x00, 0x2b, 0x06, 0xd0, 0x20, 0x00, 0xff, 0x30, 0x06, 0x22, 0x19, 0x00, 0x4a, 0x30, +0x0f, 0xf3, 0xe0, 0xef, 0x05, 0x20, 0xc0, 0x01, 0x00, 0x21, 0x20, 0x18, 0x81, 0x80, 0x37, 0x4a, +0x20, 0x00, 0xff, 0x30, 0x1b, 0x3a, 0x41, 0x30, 0x02, 0x80, 0x42, 0x80, 0x0f, 0x22, 0x81, 0x80, +0x82, 0x71, 0x01, 0x72, 0xfe, 0x21, 0x38, 0x20, 0x01, 0x55, 0xe0, 0x68, 0x01, 0x21, 0x09, 0x03, +0x88, 0x43, 0xe0, 0x60, 0x20, 0x00, 0x40, 0x21, 0x3e, 0x30, 0x10, 0xf3, 0x8a, 0xe8, 0x00, 0x2e, +0x05, 0xd0, 0x20, 0x00, 0x06, 0x22, 0x31, 0x00, 0x7e, 0x30, 0x0f, 0xf3, 0xbc, 0xef, 0x20, 0x00, +0xfe, 0xf7, 0xcb, 0xfd, 0x20, 0x00, 0x0b, 0xf0, 0xc2, 0xfb, 0x20, 0x7a, 0x00, 0x28, 0x1d, 0xd0, +0x01, 0x28, 0x1f, 0xd0, 0x03, 0x28, 0x26, 0xd1, 0x00, 0x2d, 0x1f, 0xd1, 0x0b, 0x20, 0x80, 0x01, +0x20, 0x18, 0x01, 0x69, 0x0d, 0x20, 0x80, 0x01, 0x68, 0x31, 0x20, 0x18, 0x41, 0x63, 0x25, 0x49, +0x81, 0x63, 0x07, 0x21, 0xc9, 0x01, 0x24, 0x48, 0x61, 0x18, 0x08, 0x60, 0x1f, 0x48, 0x20, 0x63, +0x1f, 0x48, 0x60, 0x63, 0x20, 0x00, 0x1a, 0xf0, 0x6a, 0xeb, 0x0c, 0xe0, 0xb9, 0x16, 0x84, 0x46, +0x01, 0x00, 0x00, 0x00, 0x34, 0xcb, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x83, 0xe2, 0x1e, 0x36, +0x20, 0x00, 0xff, 0xf7, 0xc3, 0xfd, 0x08, 0xe0, 0x20, 0x00, 0xff, 0xf7, 0xe2, 0xfd, 0x04, 0xe0, +0x02, 0x2d, 0x02, 0xd1, 0x20, 0x00, 0xff, 0xf7, 0x68, 0xfc, 0xe0, 0x68, 0x40, 0x05, 0x08, 0xd5, +0x09, 0x20, 0x80, 0x01, 0x20, 0x18, 0xc0, 0x6b, 0x00, 0x28, 0x02, 0xd0, 0x8c, 0x21, 0x10, 0xf3, +0x18, 0xe8, 0x25, 0xe0, 0x50, 0xf4, 0x00, 0xc0, 0xd8, 0x49, 0x00, 0x04, 0x0c, 0xf1, 0x00, 0xc0, +0x80, 0x49, 0x00, 0x04, 0x30, 0x01, 0x00, 0x04, 0x24, 0x01, 0x00, 0x04, 0xe0, 0xdf, 0x01, 0xc0, +0x1a, 0x00, 0x01, 0x00, 0x8c, 0x49, 0x00, 0x04, 0x44, 0x01, 0x00, 0x04, 0x38, 0x01, 0x00, 0x04, +0x40, 0xec, 0x01, 0xc0, 0x9d, 0xa9, 0x01, 0x00, 0x64, 0x1b, 0x01, 0xc0, 0x10, 0x51, 0x01, 0xc0, +0xc5, 0x60, 0x00, 0xc0, 0x7f, 0x63, 0x00, 0xc0, 0x59, 0x1b, 0x01, 0xc0, 0x44, 0x54, 0x02, 0xc0, +0x00, 0x20, 0x64, 0xe4, 0x3e, 0xb5, 0x00, 0x23, 0x0c, 0x00, 0x0a, 0x69, 0x00, 0x21, 0x00, 0x91, +0x02, 0x92, 0x01, 0x91, 0xe2, 0x7a, 0xa1, 0x7a, 0x20, 0x7a, 0xff, 0xf7, 0x2a, 0xfe, 0x61, 0x7a, +0x41, 0x72, 0x17, 0x21, 0x49, 0x01, 0x62, 0x18, 0x12, 0x78, 0x41, 0x18, 0x0a, 0x70, 0xfb, 0x49, +0x01, 0x63, 0xfb, 0x49, 0x41, 0x63, 0x3e, 0xbd, 0x3e, 0xb5, 0x00, 0x23, 0x0c, 0x00, 0x0a, 0x69, +0x00, 0x21, 0x00, 0x91, 0x02, 0x92, 0x01, 0x91, 0xe2, 0x7a, 0xa1, 0x7a, 0x20, 0x7a, 0xff, 0xf7, +0x10, 0xfe, 0x61, 0x7a, 0x41, 0x72, 0x3e, 0xbd, 0xfe, 0xb5, 0x00, 0x23, 0x0d, 0x00, 0x06, 0x00, +0x0a, 0x69, 0x00, 0x21, 0x00, 0x91, 0x02, 0x92, 0x01, 0x91, 0xea, 0x7a, 0xa9, 0x7a, 0x05, 0x20, +0xff, 0xf7, 0xff, 0xfd, 0x04, 0x00, 0x7e, 0xd0, 0x68, 0x7a, 0x60, 0x72, 0x28, 0x7a, 0x20, 0x72, +0x20, 0x00, 0x14, 0x30, 0x1a, 0xf0, 0xec, 0xea, 0xa0, 0x69, 0xe4, 0x62, 0x24, 0x30, 0x60, 0x61, +0x29, 0x00, 0x20, 0x00, 0x40, 0x22, 0x3e, 0x31, 0x3e, 0x30, 0x0f, 0xf3, 0x06, 0xef, 0x29, 0x00, +0x20, 0x00, 0x06, 0x22, 0x7e, 0x31, 0x7e, 0x30, 0x0f, 0xf3, 0xfe, 0xee, 0x20, 0x00, 0xff, 0x30, +0x06, 0x22, 0x31, 0x00, 0x4a, 0x30, 0x0f, 0xf3, 0xf8, 0xee, 0xb1, 0x20, 0x80, 0x00, 0x29, 0x18, +0x06, 0x22, 0x20, 0x18, 0x0f, 0xf3, 0x5a, 0xef, 0x20, 0x00, 0xff, 0x30, 0xe8, 0x21, 0x59, 0x30, +0x0f, 0xf3, 0x86, 0xef, 0x28, 0x6b, 0x20, 0x63, 0x29, 0x00, 0x20, 0x31, 0x8e, 0x7e, 0x20, 0x00, +0x20, 0x30, 0x82, 0x7e, 0xf6, 0x06, 0xef, 0x23, 0xf6, 0x0f, 0x1a, 0x40, 0x36, 0x01, 0x32, 0x43, +0x82, 0x76, 0x42, 0x7e, 0xf7, 0x26, 0x32, 0x40, 0x4e, 0x7e, 0x36, 0x07, 0xf6, 0x0f, 0xf6, 0x00, +0x32, 0x43, 0x42, 0x76, 0x1a, 0x40, 0x4b, 0x7e, 0xdb, 0x06, 0xdb, 0x0f, 0x1b, 0x01, 0x1a, 0x43, +0x42, 0x76, 0x2a, 0x00, 0x80, 0x32, 0x16, 0x69, 0x13, 0x00, 0x22, 0x00, 0x80, 0x32, 0x16, 0x61, +0x9b, 0x69, 0x93, 0x61, 0x09, 0x7e, 0x01, 0x76, 0xe0, 0x68, 0x40, 0x21, 0x88, 0x43, 0xe9, 0x68, +0x49, 0x06, 0xc9, 0x0f, 0x89, 0x01, 0x08, 0x43, 0x80, 0x21, 0xe0, 0x60, 0x88, 0x43, 0xe9, 0x68, +0x09, 0x06, 0xc9, 0x0f, 0xc9, 0x01, 0x08, 0x43, 0xff, 0x21, 0x49, 0x1c, 0xe0, 0x60, 0x88, 0x43, +0xe9, 0x68, 0xc9, 0x05, 0xc9, 0x0f, 0x09, 0x02, 0x08, 0x43, 0x04, 0x21, 0xe0, 0x60, 0x88, 0x43, +0xe9, 0x68, 0x49, 0x07, 0xc9, 0x0f, 0x89, 0x00, 0x08, 0x43, 0xe0, 0x60, 0xe8, 0x68, 0x40, 0x07, +0x0d, 0xd4, 0x09, 0x21, 0x00, 0xe0, 0x0a, 0xe0, 0x89, 0x01, 0x68, 0x18, 0xc2, 0x69, 0x61, 0x18, +0xca, 0x61, 0x02, 0x6a, 0x0a, 0x62, 0x42, 0x6a, 0x4a, 0x62, 0x80, 0x6a, 0x88, 0x62, 0x20, 0x00, +0xfe, 0xbd, 0x01, 0x00, 0xff, 0x31, 0x70, 0xb5, 0x04, 0x00, 0x4a, 0x31, 0xf6, 0xf7, 0x16, 0xfb, +0x0b, 0x20, 0x80, 0x01, 0x20, 0x18, 0x00, 0x69, 0xff, 0x30, 0x41, 0x30, 0x81, 0x7b, 0x49, 0x1e, +0x09, 0x06, 0x09, 0x0e, 0x81, 0x73, 0x0c, 0xd1, 0xe1, 0x7a, 0x00, 0x20, 0xff, 0xf7, 0xaa, 0xf8, +0x17, 0xf0, 0x66, 0xff, 0x00, 0x28, 0x04, 0xd1, 0x00, 0x22, 0x11, 0x00, 0x20, 0x00, 0x11, 0xf0, +0xa3, 0xf8, 0x09, 0x20, 0x80, 0x01, 0x25, 0x18, 0xa8, 0x6a, 0x00, 0x26, 0x00, 0x28, 0x02, 0xd0, +0x03, 0xf0, 0x0e, 0xf9, 0xae, 0x62, 0x6e, 0x62, 0xe0, 0x68, 0x04, 0x21, 0x88, 0x43, 0xe0, 0x60, +0x00, 0x21, 0x20, 0x00, 0x05, 0xf0, 0xb2, 0xf9, 0x20, 0x00, 0xee, 0x62, 0xff, 0xf7, 0x85, 0xfa, +0x20, 0x00, 0xff, 0xf7, 0x5c, 0xfa, 0x17, 0x20, 0x40, 0x01, 0x20, 0x18, 0x0c, 0xf0, 0xd9, 0xff, +0x7b, 0xe4, 0xf3, 0xb5, 0x83, 0xb0, 0x0d, 0x00, 0x0b, 0x27, 0xbf, 0x01, 0xce, 0x19, 0x30, 0x69, +0x0a, 0x69, 0x01, 0x7b, 0x00, 0x20, 0x6b, 0x46, 0x07, 0xc3, 0x2b, 0x00, 0xea, 0x7a, 0xa9, 0x7a, +0x7e, 0x33, 0x06, 0x20, 0xff, 0xf7, 0x1d, 0xfd, 0x04, 0x00, 0x30, 0xd0, 0x20, 0x00, 0x39, 0x30, +0x01, 0x78, 0x10, 0x22, 0x11, 0x43, 0xca, 0x06, 0x49, 0x08, 0xd2, 0x0f, 0x49, 0x00, 0x11, 0x43, +0x01, 0x70, 0xff, 0x30, 0x03, 0x99, 0x06, 0x22, 0x11, 0x30, 0x0f, 0xf3, 0x26, 0xee, 0x30, 0x69, +0xe1, 0x19, 0x08, 0x61, 0x09, 0x20, 0x80, 0x01, 0x29, 0x18, 0x4a, 0x6a, 0x20, 0x18, 0x42, 0x62, +0xe2, 0x68, 0x01, 0x23, 0x1b, 0x03, 0x9a, 0x43, 0x02, 0x23, 0x1a, 0x43, 0xe2, 0x60, 0x4b, 0x6a, +0x43, 0x62, 0xc9, 0x6a, 0xc1, 0x62, 0xff, 0x20, 0x00, 0x21, 0x49, 0x30, 0x01, 0x55, 0x04, 0x20, +0x82, 0x43, 0xe8, 0x68, 0x40, 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x02, 0x43, 0xe2, 0x60, 0x20, 0x00, +0xf7, 0xe4, 0x10, 0xb5, 0x0c, 0x00, 0x09, 0x7a, 0x02, 0x00, 0x00, 0x20, 0x01, 0x29, 0x10, 0xd0, +0x02, 0x29, 0x09, 0xd0, 0x03, 0x29, 0x1f, 0xd1, 0x61, 0x7a, 0x02, 0x29, 0x1c, 0xd1, 0x21, 0x00, +0x10, 0x00, 0xff, 0xf7, 0x9f, 0xfe, 0x08, 0xe0, 0x21, 0x00, 0x10, 0x00, 0xff, 0xf7, 0xb4, 0xfe, +0x03, 0xe0, 0x21, 0x00, 0x10, 0x00, 0xff, 0xf7, 0xbf, 0xfe, 0x00, 0x28, 0x0c, 0xd0, 0x0b, 0x22, +0x92, 0x01, 0xa1, 0x18, 0x09, 0x69, 0x82, 0x18, 0x00, 0x29, 0x11, 0x61, 0x04, 0xd0, 0x09, 0x22, +0x88, 0x31, 0x92, 0x01, 0x82, 0x18, 0xd1, 0x63, 0x42, 0xe4, 0xf8, 0xb5, 0x00, 0x25, 0x06, 0x00, +0x0f, 0x00, 0x14, 0xf0, 0x61, 0xfc, 0x47, 0x49, 0x4c, 0x68, 0x27, 0xe0, 0xe1, 0x68, 0x4a, 0x05, +0x23, 0xd5, 0x07, 0x2e, 0x02, 0xd0, 0x22, 0x7a, 0xb2, 0x42, 0x1e, 0xd1, 0x04, 0x2f, 0x02, 0xd0, +0x62, 0x7a, 0xba, 0x42, 0x19, 0xd1, 0x62, 0x7a, 0x02, 0x2a, 0x05, 0xd1, 0xff, 0x21, 0x49, 0x31, +0x09, 0x5d, 0x07, 0x29, 0x11, 0xd1, 0x0f, 0xe0, 0x03, 0x2a, 0x02, 0xd1, 0xc9, 0x04, 0x0c, 0xd5, +0x0a, 0xe0, 0x21, 0x7a, 0x01, 0x29, 0x05, 0xd1, 0xff, 0x21, 0x49, 0x31, 0x09, 0x5d, 0x06, 0x29, +0x03, 0xd1, 0x01, 0xe0, 0x04, 0x29, 0x00, 0xd1, 0x25, 0x00, 0x64, 0x68, 0x00, 0x2c, 0xd5, 0xd1, +0x14, 0xf0, 0x36, 0xfc, 0x28, 0x00, 0xf8, 0xbd, 0xf8, 0xb5, 0x05, 0x00, 0x02, 0x21, 0x03, 0x20, +0xff, 0xf7, 0xc3, 0xff, 0x07, 0x00, 0x02, 0x21, 0x08, 0x00, 0xff, 0xf7, 0xcd, 0xe6, 0x41, 0x38, +0x01, 0x00, 0x00, 0x00, 0x30, 0xcf, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xd0, 0x38, 0xcd, 0x5a, +0xbe, 0xff, 0x06, 0x00, 0xa8, 0x42, 0x00, 0xd1, 0x00, 0x26, 0xaf, 0x42, 0x00, 0xd1, 0x00, 0x27, +0x28, 0x7a, 0x01, 0x24, 0x24, 0x03, 0x00, 0x28, 0x19, 0xd0, 0x02, 0x28, 0x01, 0xd0, 0x03, 0x28, +0x23, 0xd1, 0xfd, 0xf7, 0xf9, 0xfb, 0x00, 0x28, 0x03, 0xd1, 0xfd, 0xf7, 0xfa, 0xfb, 0x00, 0x28, +0x1b, 0xd0, 0x30, 0x00, 0x38, 0x43, 0x24, 0xd0, 0x02, 0x20, 0x17, 0xf0, 0xd3, 0xfd, 0xa8, 0x42, +0x13, 0xd1, 0x3c, 0x00, 0x32, 0xd1, 0x34, 0x00, 0x00, 0x2c, 0x2f, 0xd1, 0x0d, 0xe0, 0xe8, 0x68, +0x03, 0x21, 0xa0, 0x43, 0xe8, 0x60, 0x08, 0x00, 0xff, 0xf7, 0x91, 0xff, 0x04, 0x00, 0x04, 0xd0, +0x00, 0x20, 0x17, 0xf0, 0xbf, 0xfd, 0xa0, 0x42, 0x20, 0xd1, 0x0f, 0x48, 0x01, 0x78, 0x03, 0x29, +0x2e, 0xd1, 0x00, 0x2e, 0x2c, 0xd1, 0x00, 0x2f, 0x2a, 0xd1, 0x00, 0x21, 0x01, 0x70, 0x08, 0x00, +0xf8, 0xbd, 0xe8, 0x68, 0x03, 0x21, 0xa0, 0x43, 0xe8, 0x60, 0x08, 0x00, 0xff, 0xf7, 0x77, 0xff, +0x04, 0x00, 0x0b, 0xd1, 0x03, 0x21, 0xff, 0xf7, 0x72, 0xff, 0x04, 0x00, 0xd4, 0xe7, 0x00, 0x00, +0xfd, 0x63, 0x00, 0xc0, 0xc3, 0x63, 0x00, 0xc0, 0x94, 0x01, 0x00, 0x04, 0xac, 0x42, 0x0f, 0xd0, +0x20, 0x00, 0xff, 0xf7, 0x4f, 0xfa, 0xfc, 0x4c, 0x20, 0x78, 0x01, 0x28, 0x08, 0xd1, 0xfb, 0x48, +0x00, 0x88, 0xc0, 0x06, 0x04, 0xd5, 0x1a, 0xf0, 0x12, 0xe9, 0xa0, 0x68, 0xfd, 0xf7, 0xc7, 0xff, +0xfd, 0xf7, 0xa2, 0xfb, 0x00, 0x28, 0x00, 0xd0, 0x02, 0x20, 0x17, 0xf0, 0x83, 0xfd, 0xf8, 0xbd, +0xf8, 0xb5, 0x04, 0x00, 0x0b, 0x22, 0xe1, 0x68, 0x92, 0x01, 0x01, 0x20, 0x49, 0x05, 0x00, 0x26, +0xa5, 0x18, 0x00, 0x29, 0x03, 0xda, 0x20, 0x00, 0xff, 0xf7, 0xa4, 0xf9, 0x1e, 0xe0, 0x23, 0x7a, +0x0f, 0xf3, 0x30, 0xef, 0x07, 0x1c, 0x05, 0x09, 0x0d, 0x15, 0x1c, 0x11, 0x1c, 0x00, 0x20, 0x00, +0xff, 0xf7, 0x6b, 0xf9, 0x14, 0xe0, 0x20, 0x00, 0xff, 0xf7, 0x66, 0xf8, 0x10, 0xe0, 0x60, 0x7a, +0x02, 0x28, 0xf8, 0xd0, 0x0c, 0xe0, 0x20, 0x00, 0xff, 0xf7, 0x75, 0xfe, 0x08, 0xe0, 0x68, 0x69, +0x06, 0x70, 0x20, 0x00, 0x6e, 0x61, 0x07, 0xf0, 0xf2, 0xfb, 0x01, 0xe0, 0x00, 0x28, 0x1f, 0xd0, +0x20, 0x00, 0xff, 0xf7, 0x53, 0xff, 0x14, 0xf0, 0x81, 0xfb, 0x07, 0x00, 0x00, 0x2c, 0x04, 0xd1, +0xd7, 0x48, 0xf3, 0xf7, 0x41, 0xf8, 0x1a, 0xf0, 0x2e, 0xe8, 0xe0, 0x68, 0x40, 0x05, 0x04, 0xd5, +0x28, 0x69, 0x00, 0x28, 0x01, 0xd0, 0x0d, 0xf0, 0xb6, 0xfc, 0x09, 0x20, 0x80, 0x01, 0x20, 0x18, +0x2e, 0x61, 0xc6, 0x63, 0x20, 0x00, 0x0d, 0xf0, 0x60, 0xfc, 0x38, 0x00, 0x14, 0xf0, 0x6a, 0xfb, +0xf8, 0xbd, 0x10, 0xb5, 0x14, 0xf0, 0x62, 0xfb, 0xc7, 0x49, 0x07, 0xe0, 0x39, 0x22, 0x52, 0x5c, +0x12, 0x07, 0x03, 0xd5, 0x14, 0xf0, 0x5e, 0xfb, 0x01, 0x20, 0xef, 0xe6, 0x49, 0x68, 0x00, 0x29, +0xf4, 0xd1, 0x14, 0xf0, 0x57, 0xfb, 0x00, 0x20, 0xe8, 0xe6, 0x10, 0xb5, 0x14, 0xf0, 0x4e, 0xfb, +0xbd, 0x49, 0x06, 0xe0, 0xca, 0x68, 0x52, 0x07, 0x03, 0xd5, 0x14, 0xf0, 0x4b, 0xfb, 0x01, 0x20, +0xdc, 0xe6, 0x49, 0x68, 0x00, 0x29, 0xf5, 0xd1, 0x14, 0xf0, 0x44, 0xfb, 0x00, 0x20, 0xd5, 0xe6, +0x10, 0xb5, 0x14, 0xf0, 0x3b, 0xfb, 0xb4, 0x49, 0x06, 0xe0, 0xca, 0x68, 0xd2, 0x06, 0x03, 0xd5, +0x14, 0xf0, 0x38, 0xfb, 0x01, 0x20, 0xc9, 0xe6, 0x49, 0x68, 0x00, 0x29, 0xf5, 0xd1, 0x14, 0xf0, +0x31, 0xfb, 0x00, 0x20, 0xc2, 0xe6, 0x10, 0xb5, 0x14, 0xf0, 0x28, 0xfb, 0xaa, 0x49, 0x0b, 0xe0, +0xff, 0x22, 0x49, 0x32, 0x52, 0x5c, 0x00, 0x2a, 0x06, 0xd0, 0xca, 0x68, 0xd2, 0x05, 0x03, 0xd5, +0x14, 0xf0, 0x20, 0xfb, 0x01, 0x20, 0xb1, 0xe6, 0x49, 0x68, 0x00, 0x29, 0xf0, 0xd1, 0x14, 0xf0, +0x19, 0xfb, 0x00, 0x20, 0xaa, 0xe6, 0x10, 0xb5, 0x14, 0xf0, 0x10, 0xfb, 0x9e, 0x49, 0x09, 0x23, +0x49, 0x68, 0x9b, 0x01, 0x19, 0xe0, 0x0a, 0x7a, 0x01, 0x2a, 0x15, 0xd1, 0xca, 0x68, 0x52, 0x07, +0x12, 0xd4, 0xca, 0x18, 0x52, 0x6a, 0x00, 0x2a, 0x0e, 0xd0, 0x08, 0x32, 0xd4, 0x79, 0x24, 0x07, +0x24, 0x0f, 0x02, 0x2c, 0x08, 0xd1, 0x00, 0x2a, 0x06, 0xd0, 0x92, 0x7a, 0xd2, 0x07, 0x03, 0xd0, +0x14, 0xf0, 0xf8, 0xfa, 0x01, 0x20, 0x89, 0xe6, 0x49, 0x68, 0x00, 0x29, 0xe3, 0xd1, 0x14, 0xf0, +0xf1, 0xfa, 0x00, 0x20, 0x82, 0xe6, 0x10, 0xb5, 0xff, 0xf7, 0x83, 0xff, 0x00, 0x28, 0x0b, 0xd1, +0xff, 0xf7, 0x93, 0xff, 0x00, 0x28, 0x07, 0xd1, 0xff, 0xf7, 0xa2, 0xff, 0x00, 0x28, 0x03, 0xd1, +0xff, 0xf7, 0xc9, 0xff, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x24, 0x00, 0xe0, 0x00, 0x24, 0x85, 0x49, +0x85, 0x48, 0x02, 0xf3, 0x89, 0xfd, 0x00, 0x2c, 0x07, 0xd0, 0x00, 0x28, 0x02, 0xd0, 0x02, 0xf0, +0x61, 0xfb, 0x63, 0xe6, 0x02, 0xf0, 0x4c, 0xfb, 0x60, 0xe6, 0x00, 0x28, 0x02, 0xd0, 0x02, 0xf0, +0x50, 0xfb, 0x5b, 0xe6, 0x02, 0xf0, 0x3b, 0xfb, 0x58, 0xe6, 0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, +0x16, 0x00, 0x14, 0xf0, 0xbb, 0xfa, 0x74, 0x49, 0x03, 0xe0, 0xa1, 0x42, 0x01, 0xd1, 0x4c, 0x68, +0x0e, 0xe0, 0x49, 0x68, 0x00, 0x29, 0xf8, 0xd1, 0x0c, 0xe0, 0x21, 0x7a, 0xa9, 0x42, 0x06, 0xd1, +0xe1, 0x7a, 0xb1, 0x42, 0x03, 0xd1, 0x14, 0xf0, 0xad, 0xfa, 0x20, 0x00, 0xc3, 0xe4, 0x64, 0x68, +0x00, 0x2c, 0xf2, 0xd1, 0x14, 0xf0, 0xa6, 0xfa, 0x00, 0x20, 0xbc, 0xe4, 0x10, 0xb5, 0x14, 0xf0, +0x9d, 0xfa, 0x65, 0x49, 0x08, 0xe0, 0xff, 0x22, 0x49, 0x32, 0x52, 0x5c, 0x00, 0x2a, 0x03, 0xd0, +0x14, 0xf0, 0x98, 0xfa, 0x00, 0x20, 0x29, 0xe6, 0x49, 0x68, 0x00, 0x29, 0xf3, 0xd1, 0x14, 0xf0, +0x91, 0xfa, 0x01, 0x20, 0x22, 0xe6, 0x5c, 0x48, 0x00, 0x69, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x20, +0x70, 0x47, 0x10, 0xb5, 0x04, 0x00, 0x14, 0xf0, 0x81, 0xfa, 0x57, 0x49, 0x49, 0x68, 0x00, 0x29, +0x07, 0xd1, 0x02, 0xe0, 0x49, 0x68, 0x00, 0x29, 0x03, 0xd1, 0x14, 0xf0, 0x7b, 0xfa, 0x00, 0x20, +0x0c, 0xe6, 0x0a, 0x7a, 0xa2, 0x42, 0xf5, 0xd1, 0x14, 0xf0, 0x74, 0xfa, 0x01, 0x20, 0x05, 0xe6, +0x06, 0x22, 0x7e, 0x30, 0x10, 0xb5, 0x13, 0xf0, 0x8d, 0xff, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, +0xfc, 0xe5, 0x00, 0x20, 0xfa, 0xe5, 0xf8, 0xb5, 0x05, 0x00, 0x00, 0x24, 0x14, 0xf0, 0x5e, 0xfa, +0x07, 0x00, 0x00, 0x2d, 0x01, 0xd1, 0x00, 0x20, 0xf8, 0xbd, 0x19, 0x26, 0x2b, 0x7a, 0x76, 0x01, +0x0f, 0xf3, 0xe0, 0xed, 0x07, 0x11, 0x15, 0x08, 0x05, 0x19, 0x19, 0x11, 0x19, 0x00, 0x68, 0x7a, +0x02, 0x28, 0x08, 0xd1, 0x28, 0x00, 0x17, 0xf0, 0xc5, 0xfb, 0x80, 0x19, 0x00, 0x7a, 0x01, 0x28, +0x09, 0xd1, 0x01, 0x24, 0x07, 0xe0, 0xe8, 0x68, 0xc0, 0x04, 0xfa, 0xd4, 0x03, 0xe0, 0x28, 0x00, +0x19, 0xf0, 0x90, 0xef, 0x04, 0x00, 0x38, 0x00, 0x14, 0xf0, 0x3c, 0xfa, 0x20, 0x00, 0xf8, 0xbd, +0x20, 0x30, 0x80, 0x7e, 0x40, 0x21, 0xc2, 0x07, 0x34, 0x48, 0x00, 0x2a, 0x02, 0x68, 0x01, 0xd0, +0x0a, 0x43, 0x00, 0xe0, 0x8a, 0x43, 0x02, 0x60, 0x70, 0x47, 0x10, 0xb5, 0xf9, 0x5c, 0x11, 0xe4, +0x01, 0x00, 0x00, 0x00, 0x2c, 0xd3, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x6f, 0xfd, 0xe8, 0xe9, +0x17, 0xf0, 0x8a, 0xfc, 0x00, 0x28, 0x23, 0xd1, 0x02, 0x20, 0x17, 0xf0, 0xad, 0xfb, 0x0e, 0xe0, +0x20, 0x00, 0x17, 0xf0, 0x99, 0xfb, 0xff, 0x21, 0x49, 0x31, 0x09, 0x5d, 0x00, 0x29, 0x02, 0xd0, +0x40, 0x6a, 0x00, 0x28, 0x14, 0xd1, 0x02, 0x21, 0x20, 0x00, 0xfe, 0xf7, 0x61, 0xfd, 0x04, 0x00, +0xee, 0xd1, 0x02, 0x20, 0x0e, 0xf0, 0x25, 0xfe, 0x10, 0xe0, 0x20, 0x00, 0x17, 0xf0, 0x84, 0xfb, +0xff, 0x21, 0x49, 0x31, 0x09, 0x5d, 0x00, 0x29, 0x04, 0xd0, 0x40, 0x6a, 0x00, 0x28, 0x01, 0xd0, +0x01, 0x20, 0x95, 0xe5, 0x02, 0x21, 0x20, 0x00, 0x0e, 0xf0, 0x22, 0xfe, 0x04, 0x00, 0xec, 0xd1, +0x8e, 0xe5, 0x18, 0x48, 0x00, 0x68, 0x70, 0x47, 0xf8, 0xb5, 0x01, 0x25, 0x07, 0x00, 0x0c, 0x00, +0x14, 0xf0, 0xee, 0xf9, 0x06, 0x00, 0x3b, 0x00, 0x0f, 0xf3, 0x76, 0xed, 0x0b, 0x2e, 0x26, 0x43, +0x07, 0x3d, 0x3d, 0x3d, 0x2e, 0x2e, 0x2e, 0x2e, 0x3d, 0x00, 0x03, 0x20, 0x0e, 0xf0, 0xf9, 0xfd, +0x00, 0x28, 0x03, 0xd1, 0x17, 0xf0, 0x68, 0xfb, 0x00, 0x28, 0x34, 0xd0, 0xc1, 0x68, 0xc9, 0x04, +0x31, 0xd5, 0x04, 0x00, 0xff, 0x34, 0x4a, 0x34, 0x2d, 0xe0, 0x00, 0x00, 0x94, 0x01, 0x00, 0x04, +0x04, 0x36, 0x01, 0xc0, 0x1d, 0x00, 0x01, 0x00, 0xac, 0x7b, 0x02, 0x00, 0x4c, 0x7b, 0x02, 0x00, +0x00, 0xa3, 0x00, 0x80, 0x50, 0xf4, 0x00, 0xc0, 0x00, 0x2c, 0x05, 0xd1, 0x17, 0xf0, 0x9c, 0xfb, +0x00, 0x28, 0x01, 0xd0, 0x04, 0x00, 0x7e, 0x34, 0x04, 0x21, 0x07, 0x20, 0xff, 0xf7, 0x51, 0xfd, +0x00, 0x28, 0x00, 0xd0, 0x00, 0x25, 0x04, 0x21, 0x01, 0x20, 0xff, 0xf7, 0x4a, 0xfd, 0x00, 0x28, +0x07, 0xd0, 0x00, 0x25, 0x0c, 0xe0, 0xf8, 0x48, 0xf2, 0xf7, 0x70, 0xfe, 0x19, 0xf0, 0x5c, 0xee, +0x01, 0xe0, 0x01, 0x2d, 0x04, 0xd1, 0x20, 0x00, 0x08, 0xf3, 0x14, 0xf9, 0xf8, 0xf7, 0x64, 0xfd, +0x30, 0x00, 0x14, 0xf0, 0xa1, 0xf9, 0x28, 0x00, 0xf8, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x01, 0x25, +0x14, 0xf0, 0x96, 0xf9, 0x06, 0x00, 0x00, 0x2c, 0x05, 0xd0, 0x01, 0x2c, 0x03, 0xd0, 0x03, 0x2c, +0x01, 0xd0, 0x04, 0x2c, 0x07, 0xd1, 0x04, 0x21, 0x07, 0x20, 0xff, 0xf7, 0x22, 0xfd, 0x00, 0x28, +0x07, 0xd0, 0x00, 0x25, 0x07, 0xe0, 0xe4, 0x48, 0x40, 0x1c, 0xf2, 0xf7, 0x47, 0xfe, 0x19, 0xf0, +0x34, 0xee, 0x04, 0xf3, 0xff, 0xfa, 0x30, 0x00, 0x14, 0xf0, 0x7e, 0xf9, 0x28, 0x00, 0x9b, 0xe4, +0xf8, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0x01, 0x24, 0x14, 0xf0, 0x72, 0xf9, 0x07, 0x00, 0x2b, 0x00, +0x0f, 0xf3, 0xfa, 0xec, 0x11, 0x12, 0x0a, 0x19, 0x19, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x12, +0x12, 0x12, 0x12, 0x12, 0x0a, 0x0a, 0x12, 0x00, 0x02, 0x21, 0x07, 0x20, 0xff, 0xf7, 0xf9, 0xfc, +0x00, 0x28, 0x0a, 0xd0, 0x00, 0x24, 0x0b, 0xe0, 0xcf, 0x48, 0x80, 0x1c, 0xf2, 0xf7, 0x1e, 0xfe, +0x19, 0xf0, 0x0a, 0xee, 0x01, 0xe0, 0x01, 0x2c, 0x02, 0xd1, 0x30, 0x00, 0x04, 0xf3, 0x6c, 0xfc, +0x38, 0x00, 0x14, 0xf0, 0x51, 0xf9, 0x20, 0x00, 0xf8, 0xbd, 0xf8, 0xb5, 0x05, 0x00, 0x0e, 0x00, +0x01, 0x24, 0x14, 0xf0, 0x45, 0xf9, 0x07, 0x00, 0x2b, 0x00, 0x0f, 0xf3, 0xce, 0xec, 0x07, 0x1b, +0x05, 0x1b, 0x14, 0x1b, 0x05, 0x05, 0x1b, 0x00, 0x02, 0x21, 0x07, 0x20, 0xff, 0xf7, 0xd1, 0xfc, +0x00, 0x28, 0x00, 0xd0, 0x00, 0x24, 0x04, 0x21, 0x01, 0x20, 0xff, 0xf7, 0xca, 0xfc, 0x00, 0x28, +0x08, 0xd0, 0x00, 0x24, 0x0b, 0xe0, 0x03, 0x21, 0x07, 0x20, 0xff, 0xf7, 0xc2, 0xfc, 0x00, 0x28, +0xf7, 0xd1, 0x01, 0xe0, 0x01, 0x2c, 0x02, 0xd1, 0x30, 0x00, 0x04, 0xf3, 0x5e, 0xfc, 0x38, 0x00, +0x14, 0xf0, 0x22, 0xf9, 0x20, 0x00, 0xf8, 0xbd, 0xf0, 0xb5, 0x05, 0x00, 0x01, 0x20, 0x85, 0xb0, +0x0c, 0x00, 0x04, 0x90, 0x14, 0xf0, 0x14, 0xf9, 0x00, 0x27, 0x00, 0x2d, 0x03, 0x90, 0x25, 0xd0, +0x01, 0x2d, 0x52, 0xd0, 0x02, 0x2d, 0x10, 0xd0, 0x03, 0x2d, 0x4e, 0xd1, 0x00, 0x20, 0x17, 0xf0, +0x93, 0xfa, 0x00, 0x28, 0x49, 0xd0, 0xc0, 0x68, 0xc0, 0x04, 0x46, 0xd5, 0x08, 0xf3, 0xe6, 0xf9, +0x61, 0x60, 0x20, 0x60, 0x04, 0xf3, 0x38, 0xfb, 0x3d, 0xe0, 0x03, 0x20, 0x0e, 0xf0, 0x11, 0xfd, +0x00, 0x28, 0x03, 0xd1, 0x17, 0xf0, 0x80, 0xfa, 0x00, 0x28, 0x36, 0xd0, 0xc0, 0x68, 0xc0, 0x04, +0x33, 0xd5, 0x08, 0xf3, 0xd3, 0xf9, 0x61, 0x60, 0x20, 0x60, 0x2e, 0xe0, 0x97, 0x48, 0x80, 0x68, +0x00, 0x28, 0x02, 0xd0, 0x00, 0x20, 0x04, 0x90, 0x2a, 0xe0, 0xe6, 0x68, 0xa5, 0x69, 0xa0, 0x68, +0x02, 0x90, 0x04, 0xf3, 0x6e, 0xfb, 0x01, 0x91, 0x00, 0x90, 0x02, 0x98, 0x31, 0x00, 0x79, 0x40, +0x08, 0x43, 0x0d, 0xd0, 0x02, 0x9a, 0x39, 0x00, 0xa8, 0x18, 0x00, 0x9a, 0x01, 0x9b, 0x71, 0x41, +0x80, 0x1a, 0x99, 0x41, 0x04, 0xd3, 0x68, 0x46, 0x07, 0xc8, 0x80, 0x1a, 0xb1, 0x41, 0x0c, 0xd2, +0x02, 0x98, 0x2a, 0x00, 0x3b, 0x00, 0x31, 0x00, 0x0f, 0xf3, 0x10, 0xe8, 0x40, 0x1c, 0x79, 0x41, +0x2a, 0x00, 0x0f, 0xf3, 0x46, 0xec, 0xe1, 0x60, 0xa0, 0x60, 0x20, 0x00, 0x04, 0xf3, 0x89, 0xfb, +0x03, 0x98, 0x14, 0xf0, 0xb9, 0xf8, 0x04, 0x98, 0x1e, 0xe4, 0x7d, 0x49, 0x08, 0x61, 0x00, 0x20, +0x70, 0x47, 0x7b, 0x48, 0x00, 0x69, 0x70, 0x47, 0x79, 0x49, 0x09, 0x78, 0x88, 0x42, 0x01, 0xd1, +0x01, 0x20, 0x70, 0x47, 0x00, 0x20, 0x70, 0x47, 0x10, 0xb5, 0x04, 0x00, 0xff, 0x30, 0x59, 0x30, +0x0b, 0xf0, 0xa5, 0xf8, 0x20, 0x00, 0x07, 0xf0, 0x13, 0xfa, 0x31, 0xe4, 0x01, 0x23, 0xc2, 0x68, +0xdb, 0x02, 0xc9, 0x07, 0x9a, 0x43, 0x09, 0x0d, 0x0a, 0x43, 0xc2, 0x60, 0x70, 0x47, 0x10, 0xb5, +0x43, 0x7a, 0x03, 0x2b, 0x07, 0xd1, 0x00, 0x2a, 0x02, 0xd0, 0x17, 0xf0, 0x25, 0xfc, 0x1f, 0xe4, +0x17, 0xf0, 0x12, 0xfc, 0x1c, 0xe4, 0x49, 0x00, 0x09, 0x18, 0x05, 0x20, 0xc0, 0x01, 0x09, 0x18, +0x88, 0x8a, 0x01, 0x2a, 0xf3, 0xd1, 0x42, 0x1c, 0x12, 0x05, 0x12, 0x0d, 0x8a, 0x82, 0x0f, 0xe4, +0x10, 0xb5, 0x04, 0x00, 0xc0, 0x68, 0x40, 0x05, 0x03, 0xd4, 0x20, 0x00, 0xff, 0xf7, 0xba, 0xfc, +0x06, 0xe4, 0x00, 0x29, 0x03, 0xd0, 0x20, 0x00, 0xfe, 0xf7, 0x39, 0xfe, 0x0f, 0xe5, 0x01, 0x21, +0x20, 0x00, 0xfe, 0xf7, 0x1c, 0xfe, 0x20, 0x00, 0xfe, 0xf7, 0x03, 0xfe, 0x07, 0xe5, 0x70, 0xb5, +0x06, 0x00, 0x14, 0xf0, 0x5d, 0xf8, 0x05, 0x00, 0x51, 0x48, 0x40, 0x68, 0x07, 0xe0, 0x01, 0x7a, +0x44, 0x68, 0x01, 0x29, 0x02, 0xd1, 0x31, 0x00, 0xff, 0xf7, 0xda, 0xff, 0x20, 0x00, 0x00, 0x28, +0xf5, 0xd1, 0x28, 0x00, 0x14, 0xf0, 0x50, 0xf8, 0xa2, 0xe5, 0xfe, 0xb5, 0x00, 0x21, 0x0a, 0x00, +0x68, 0x46, 0x06, 0xc0, 0x46, 0x48, 0x44, 0x68, 0x04, 0xf3, 0x07, 0xfb, 0x05, 0x00, 0x0b, 0x26, +0x44, 0x4f, 0xb6, 0x01, 0x24, 0xe0, 0x20, 0x7a, 0x01, 0x28, 0x20, 0xd1, 0x20, 0x00, 0xff, 0x30, +0x4a, 0x30, 0x06, 0x22, 0x69, 0x46, 0x02, 0x90, 0x13, 0xf0, 0x56, 0xfd, 0x00, 0x28, 0x16, 0xd0, +0x20, 0x00, 0x19, 0xf0, 0x16, 0xed, 0x00, 0x28, 0x01, 0xd1, 0xa0, 0x19, 0xea, 0x4f, 0x53, 0x6d, +0x01, 0x00, 0x00, 0x00, 0x28, 0xd7, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x3c, 0x27, 0x3b, 0x85, +0x05, 0x63, 0xa0, 0x19, 0x01, 0x6b, 0x28, 0x00, 0x08, 0xf3, 0xcf, 0xfd, 0xb8, 0x42, 0x08, 0xd3, +0x02, 0x9a, 0x21, 0x21, 0x20, 0x00, 0xf7, 0xf7, 0xdf, 0xfe, 0x00, 0x21, 0x20, 0x00, 0xff, 0xf7, +0xa1, 0xff, 0x64, 0x68, 0x00, 0x2c, 0xd8, 0xd1, 0xfe, 0xbd, 0x10, 0xb5, 0x14, 0xf0, 0x12, 0xf8, +0x2c, 0x49, 0x49, 0x68, 0x00, 0x29, 0x07, 0xd1, 0x02, 0xe0, 0x49, 0x68, 0x00, 0x29, 0x03, 0xd1, +0x14, 0xf0, 0x0c, 0xf8, 0x01, 0x20, 0xac, 0xe4, 0xff, 0x22, 0x49, 0x32, 0x52, 0x5c, 0x00, 0x2a, +0xf3, 0xd0, 0x14, 0xf0, 0x03, 0xf8, 0x00, 0x20, 0xa3, 0xe4, 0x70, 0xb5, 0x04, 0x00, 0x00, 0x25, +0x13, 0xf0, 0xf8, 0xff, 0x06, 0x00, 0x20, 0x00, 0x17, 0xf0, 0x80, 0xf9, 0x03, 0x00, 0x0d, 0xe0, +0x18, 0x7a, 0xa0, 0x42, 0x09, 0xd1, 0x18, 0x00, 0x17, 0xf0, 0x8f, 0xf9, 0x00, 0x28, 0x04, 0xd0, +0x40, 0x69, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x25, 0x02, 0xe0, 0x5b, 0x68, 0x00, 0x2b, 0xef, 0xd1, +0x30, 0x00, 0x13, 0xf0, 0xe3, 0xff, 0x28, 0x00, 0x34, 0xe5, 0x70, 0xb5, 0x04, 0x00, 0x15, 0x00, +0x00, 0x29, 0x04, 0xd0, 0x20, 0x00, 0x06, 0x22, 0x7e, 0x30, 0x0f, 0xf3, 0x44, 0xe9, 0x00, 0x2d, +0x06, 0xd0, 0x20, 0x00, 0xff, 0x30, 0x06, 0x22, 0x29, 0x00, 0x4a, 0x30, 0x0f, 0xf3, 0x3a, 0xe9, +0x20, 0xe5, 0x70, 0xb5, 0x05, 0x00, 0xff, 0x30, 0x00, 0x24, 0x4a, 0x30, 0x0d, 0xf0, 0x6c, 0xf8, +0x00, 0x28, 0x00, 0xd1, 0x01, 0x24, 0x28, 0x00, 0x09, 0xe0, 0x00, 0x00, 0x20, 0x00, 0x01, 0x00, +0xd8, 0x49, 0x00, 0x04, 0x94, 0x01, 0x00, 0x04, 0x80, 0x8d, 0x5b, 0x00, 0x64, 0x1c, 0xc2, 0x7a, +0x81, 0x7a, 0xfe, 0xf7, 0x8a, 0xfd, 0x00, 0x28, 0xf8, 0xd1, 0x20, 0x00, 0x02, 0xe5, 0xf8, 0xb5, +0xfc, 0xa1, 0x00, 0x26, 0x09, 0x68, 0x02, 0x28, 0x00, 0x91, 0x15, 0xd1, 0x00, 0x25, 0x6f, 0x46, +0x78, 0x5d, 0x17, 0xf0, 0x2b, 0xf9, 0x0a, 0xe0, 0x60, 0x7a, 0x02, 0x28, 0x03, 0xd1, 0x20, 0x00, +0xff, 0xf7, 0xcf, 0xff, 0x86, 0x19, 0x21, 0x7a, 0x20, 0x00, 0xfe, 0xf7, 0xe3, 0xfa, 0x04, 0x00, +0xf2, 0xd1, 0x6d, 0x1c, 0x02, 0x2d, 0xeb, 0xd3, 0x30, 0x00, 0xf8, 0xbd, 0x10, 0xb5, 0x04, 0x00, +0x17, 0xf0, 0x04, 0xf9, 0x21, 0x7a, 0x01, 0x29, 0x02, 0xd1, 0xe1, 0x68, 0x49, 0x07, 0x0b, 0xd5, +0x61, 0x7a, 0x02, 0x29, 0x06, 0xd1, 0x00, 0x28, 0x06, 0xd0, 0xff, 0x30, 0x61, 0x30, 0x00, 0x79, +0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, 0x1c, 0xe4, 0x00, 0x20, 0x1a, 0xe4, 0x10, 0xb5, 0xff, 0x24, +0x13, 0xf0, 0x70, 0xff, 0xe0, 0x49, 0x05, 0x23, 0x49, 0x68, 0xdb, 0x01, 0x05, 0xe0, 0xca, 0x18, +0xd2, 0x6b, 0xa2, 0x42, 0x00, 0xda, 0x14, 0x00, 0x49, 0x68, 0x00, 0x29, 0xf7, 0xd1, 0x13, 0xf0, +0x65, 0xff, 0x20, 0x00, 0x05, 0xe4, 0x01, 0x00, 0x01, 0x20, 0x06, 0x22, 0x03, 0x00, 0x10, 0xb5, +0x06, 0xf0, 0xa6, 0xfa, 0x00, 0x28, 0x04, 0xd1, 0xd4, 0x49, 0x40, 0x23, 0x4a, 0x68, 0x1a, 0x43, +0x4a, 0x60, 0x09, 0xe4, 0x01, 0x00, 0x06, 0x22, 0x00, 0x20, 0x01, 0x23, 0x10, 0xb5, 0x06, 0xf0, +0x97, 0xfa, 0x00, 0x28, 0x04, 0xd1, 0xcd, 0x4a, 0x40, 0x23, 0x51, 0x68, 0x99, 0x43, 0x51, 0x60, +0x0d, 0xe4, 0x70, 0xb5, 0x13, 0xf0, 0x3e, 0xff, 0xc7, 0x49, 0x49, 0x68, 0x00, 0x29, 0x03, 0xd1, +0x13, 0xf0, 0x3c, 0xff, 0x00, 0x20, 0x8d, 0xe4, 0x00, 0x22, 0x14, 0x00, 0x01, 0x26, 0x0d, 0x7a, +0x07, 0x2d, 0x06, 0xd2, 0x33, 0x00, 0xab, 0x40, 0x1d, 0x00, 0x15, 0x42, 0x01, 0xd1, 0x64, 0x1c, +0x1a, 0x43, 0x49, 0x68, 0x00, 0x29, 0xf2, 0xd1, 0x13, 0xf0, 0x28, 0xff, 0x20, 0x00, 0x79, 0xe4, +0xf8, 0xb5, 0x00, 0x25, 0x07, 0x00, 0x0c, 0xf0, 0xc7, 0xff, 0x00, 0x28, 0x01, 0xd0, 0x00, 0x20, +0xf8, 0xbd, 0x13, 0xf0, 0x17, 0xff, 0x06, 0x00, 0xb3, 0x48, 0x44, 0x68, 0x0c, 0xe0, 0xe0, 0x68, +0x40, 0x05, 0x08, 0xd5, 0x20, 0x00, 0x06, 0x22, 0x39, 0x00, 0x7e, 0x30, 0x13, 0xf0, 0x2e, 0xfc, +0x00, 0x28, 0x00, 0xd1, 0x25, 0x00, 0x64, 0x68, 0x00, 0x2c, 0x01, 0xd0, 0x00, 0x2d, 0xee, 0xd0, +0x30, 0x00, 0x13, 0xf0, 0x03, 0xff, 0x28, 0x00, 0xf8, 0xbd, 0xa8, 0x49, 0x80, 0x00, 0x40, 0x18, +0x40, 0x69, 0x70, 0x47, 0x10, 0xb5, 0x06, 0xf0, 0x21, 0xfb, 0x00, 0x20, 0x06, 0xe4, 0xfe, 0xb5, +0x00, 0xf0, 0x35, 0xfa, 0x06, 0xf0, 0xea, 0xfa, 0x44, 0x1c, 0x06, 0xf0, 0x34, 0xfa, 0x44, 0x43, +0xa5, 0x02, 0x06, 0xf0, 0xe3, 0xfa, 0x04, 0x00, 0x06, 0xf0, 0x2d, 0xfa, 0x44, 0x43, 0x01, 0x20, +0xa1, 0x02, 0x80, 0x02, 0x0f, 0x18, 0x28, 0x1a, 0x00, 0x26, 0x01, 0x90, 0x04, 0xf3, 0x16, 0xf9, +0x2a, 0x00, 0x33, 0x00, 0x0e, 0xf3, 0x24, 0xee, 0x1c, 0x00, 0x31, 0x00, 0xb8, 0x1a, 0x99, 0x41, +0x02, 0x92, 0xf3, 0xd2, 0x02, 0x9a, 0x01, 0x98, 0x23, 0x00, 0x12, 0x1a, 0xb3, 0x41, 0xed, 0xd2, +0x06, 0xf0, 0xca, 0xfa, 0x00, 0x20, 0xfe, 0xbd, 0x70, 0xb5, 0x0d, 0x00, 0x00, 0x28, 0x05, 0xd0, +0x09, 0x21, 0x89, 0x01, 0x40, 0x18, 0xc4, 0x6b, 0x00, 0x2c, 0x01, 0xd1, 0x00, 0x20, 0x11, 0xe4, +0xe0, 0x6c, 0x29, 0x00, 0x0f, 0xf3, 0x78, 0xe9, 0x20, 0x68, 0x29, 0x1d, 0x0f, 0xf3, 0x74, 0xe9, +0x29, 0x00, 0x20, 0x6d, 0x08, 0x31, 0x0f, 0xf3, 0x70, 0xe9, 0x29, 0x00, 0x60, 0x6d, 0x0c, 0x31, +0x0f, 0xf3, 0x6a, 0xe9, 0x29, 0x00, 0x60, 0x68, 0x10, 0x31, 0x0f, 0xf3, 0x66, 0xe9, 0x29, 0x00, +0xa0, 0x68, 0x14, 0x31, 0x0f, 0xf3, 0x60, 0xe9, 0x29, 0x00, 0xe0, 0x68, 0x18, 0x31, 0x0f, 0xf3, +0x5c, 0xe9, 0x29, 0x00, 0x20, 0x6e, 0x1c, 0x31, 0x0f, 0xf3, 0x56, 0xe9, 0x29, 0x00, 0x20, 0x31, +0x20, 0x69, 0x0e, 0x00, 0x0f, 0xf3, 0x50, 0xe9, 0x29, 0x00, 0x60, 0x6e, 0x24, 0x31, 0x0f, 0xf3, +0x4c, 0xe9, 0x20, 0x00, 0x60, 0x30, 0x01, 0x8b, 0x31, 0x72, 0x09, 0x0a, 0x71, 0x72, 0x41, 0x8b, +0xb1, 0x72, 0x09, 0x0a, 0xf1, 0x72, 0x81, 0x8b, 0x31, 0x73, 0x09, 0x0a, 0x71, 0x73, 0xc0, 0x8b, +0xb0, 0x73, 0x00, 0x0a, 0x80, 0x34, 0xf0, 0x73, 0x20, 0x88, 0x30, 0x35, 0x28, 0x70, 0x00, 0x0a, +0x68, 0x70, 0x60, 0x88, 0xa8, 0x70, 0x00, 0x0a, 0xe8, 0x70, 0xa0, 0x88, 0x28, 0x71, 0x00, 0x0a, +0x68, 0x71, 0xe0, 0x88, 0xa8, 0x71, 0x00, 0x0a, 0xe8, 0x71, 0x20, 0x89, 0x28, 0x72, 0x00, 0x0a, +0x68, 0x72, 0x60, 0x89, 0xa8, 0x72, 0x00, 0x0a, 0xe8, 0x72, 0x01, 0x20, 0xe1, 0xe4, 0xfe, 0xb5, +0x00, 0x20, 0x00, 0x90, 0x13, 0xf0, 0x56, 0xfe, 0x01, 0x90, 0x53, 0x48, 0x44, 0x68, 0x61, 0xe0, +0xe0, 0x68, 0x40, 0x05, 0x5b, 0xd5, 0x0b, 0x20, 0x80, 0x01, 0x26, 0x18, 0x20, 0x7a, 0x35, 0x69, +0x01, 0x28, 0x12, 0xd0, 0x02, 0x28, 0x0c, 0xd0, 0x03, 0x28, 0x14, 0xd1, 0x20, 0x00, 0x0d, 0xf0, +0x16, 0xf8, 0x01, 0x28, 0x05, 0xd1, 0x01, 0x98, 0x01, 0x24, 0x13, 0xf0, 0x3f, 0xfe, 0x20, 0x00, +0xfe, 0xbd, 0x20, 0x00, 0x19, 0xf0, 0x8e, 0xeb, 0x27, 0xe0, 0x00, 0x22, 0x11, 0x00, 0x20, 0x00, +0x13, 0x00, 0xfe, 0xf7, 0xac, 0xff, 0x42, 0x4f, 0x28, 0x00, 0x39, 0x68, 0x1e, 0x3a, 0x42, 0x71, +0x01, 0x00, 0x00, 0x00, 0x24, 0xdb, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xc8, 0x48, 0x4e, 0x31, +0x40, 0x30, 0xca, 0x88, 0x02, 0x82, 0x4a, 0x89, 0x42, 0x82, 0x0a, 0x7a, 0x02, 0x75, 0x49, 0x7a, +0x41, 0x75, 0x00, 0x21, 0x2b, 0x20, 0x41, 0x55, 0x28, 0x00, 0x20, 0x21, 0x2c, 0x30, 0x0f, 0xf3, +0x28, 0xe8, 0xb1, 0x20, 0x80, 0x00, 0x39, 0x68, 0x20, 0x18, 0x06, 0x22, 0x07, 0x00, 0x0e, 0xf3, +0xee, 0xef, 0xb2, 0x7a, 0x39, 0x00, 0x02, 0x20, 0x01, 0x23, 0x06, 0xf0, 0x5b, 0xf9, 0x00, 0x2d, +0x19, 0xd0, 0x09, 0x20, 0x80, 0x01, 0x20, 0x18, 0xc0, 0x6b, 0x8c, 0x21, 0x0f, 0xf3, 0x10, 0xe8, +0x28, 0x00, 0xf5, 0xf7, 0x77, 0xfc, 0xe8, 0x1d, 0x00, 0x21, 0xf9, 0x30, 0x41, 0x61, 0x86, 0x22, +0x81, 0x61, 0x51, 0x53, 0x78, 0x21, 0x81, 0x63, 0x1e, 0x20, 0xff, 0x35, 0x41, 0x35, 0xa8, 0x60, +0x01, 0xe0, 0x01, 0x20, 0x00, 0x90, 0x64, 0x68, 0x00, 0x2c, 0x9b, 0xd1, 0x01, 0x98, 0x13, 0xf0, +0xef, 0xfd, 0x00, 0x98, 0xfe, 0xbd, 0xf3, 0xb5, 0x81, 0xb0, 0x07, 0x00, 0x0c, 0xf0, 0x8e, 0xfe, +0x00, 0x28, 0x01, 0xd0, 0x00, 0x20, 0xfe, 0xbd, 0x13, 0xf0, 0xde, 0xfd, 0x06, 0x00, 0x17, 0x48, +0x00, 0x25, 0x44, 0x68, 0x13, 0xe0, 0x20, 0x00, 0xff, 0x30, 0x06, 0x22, 0x39, 0x00, 0x4a, 0x30, +0x13, 0xf0, 0xf6, 0xfa, 0x00, 0x28, 0x09, 0xd1, 0x20, 0x00, 0x02, 0x99, 0x06, 0x22, 0x7e, 0x30, +0x13, 0xf0, 0xee, 0xfa, 0x00, 0x28, 0x01, 0xd1, 0x25, 0x00, 0x02, 0xe0, 0x64, 0x68, 0x00, 0x2c, +0xe9, 0xd1, 0x30, 0x00, 0x13, 0xf0, 0xc4, 0xfd, 0x28, 0x00, 0xfe, 0xbd, 0x10, 0xb5, 0x04, 0x00, +0x03, 0xf0, 0x76, 0xfe, 0x00, 0x28, 0x04, 0xd1, 0x20, 0x00, 0xf3, 0xf7, 0x7d, 0xfb, 0x00, 0x28, +0x00, 0xd0, 0x01, 0x20, 0x15, 0xe5, 0x00, 0x00, 0x02, 0x03, 0x00, 0x00, 0x94, 0x01, 0x00, 0x04, +0xd8, 0x49, 0x00, 0x04, 0x50, 0xf4, 0x00, 0xc0, 0xf8, 0xb5, 0x05, 0x00, 0x13, 0xf0, 0xa4, 0xfd, +0x00, 0x90, 0xa4, 0x48, 0x0b, 0x26, 0xb6, 0x01, 0x44, 0x68, 0x01, 0x27, 0x13, 0xe0, 0xe0, 0x68, +0x40, 0x05, 0x0f, 0xd5, 0xa0, 0x19, 0x00, 0x69, 0xff, 0x30, 0x40, 0x1c, 0x41, 0x69, 0xa8, 0x78, +0x02, 0x09, 0x38, 0x00, 0x90, 0x40, 0x01, 0x42, 0x04, 0xd0, 0xe5, 0x22, 0x29, 0x00, 0x20, 0x00, +0xf2, 0xf7, 0x07, 0xfc, 0x64, 0x68, 0x00, 0x2c, 0xe9, 0xd1, 0x00, 0x98, 0x13, 0xf0, 0x88, 0xfd, +0xf8, 0xbd, 0xff, 0xb5, 0x81, 0xb0, 0x1c, 0x00, 0x15, 0x00, 0x0a, 0x9e, 0x13, 0xf0, 0x7c, 0xfd, +0x00, 0x21, 0x21, 0x60, 0x31, 0x60, 0x8f, 0x49, 0x4a, 0x68, 0x28, 0xe0, 0xd1, 0x68, 0x49, 0x05, +0x24, 0xd5, 0x0b, 0x21, 0x89, 0x01, 0x51, 0x18, 0x09, 0x69, 0xff, 0x31, 0x49, 0x1c, 0x8f, 0x69, +0x4b, 0x69, 0x3b, 0x43, 0x37, 0x68, 0x3b, 0x43, 0x33, 0x60, 0x01, 0x9b, 0x93, 0x42, 0x0f, 0xd1, +0x02, 0x9b, 0x00, 0x2b, 0x23, 0x68, 0x05, 0xd0, 0x8f, 0x69, 0x3b, 0x43, 0x2b, 0x43, 0x23, 0x60, +0x4d, 0x61, 0x0b, 0xe0, 0x4f, 0x69, 0x3b, 0x43, 0x2b, 0x43, 0x23, 0x60, 0x8d, 0x61, 0x05, 0xe0, +0x4b, 0x69, 0x89, 0x69, 0x0b, 0x43, 0x21, 0x68, 0x0b, 0x43, 0x23, 0x60, 0x52, 0x68, 0x00, 0x2a, +0xd4, 0xd1, 0x13, 0xf0, 0x4d, 0xfd, 0x93, 0xe4, 0x70, 0xb5, 0x00, 0x25, 0x03, 0x21, 0x28, 0x00, +0xff, 0xf7, 0xdb, 0xf8, 0x04, 0x00, 0x03, 0x21, 0x08, 0x00, 0xff, 0xf7, 0xd6, 0xf8, 0x00, 0x2c, +0x01, 0xd0, 0x00, 0x28, 0x15, 0xd1, 0x21, 0x00, 0x01, 0x43, 0x13, 0xd0, 0x00, 0x2c, 0x00, 0xd1, +0x04, 0x00, 0x00, 0x2c, 0x0e, 0xd0, 0x21, 0x7a, 0x20, 0x00, 0xfe, 0xf7, 0x7d, 0xf8, 0x04, 0x00, +0x08, 0xd0, 0x60, 0x7a, 0x03, 0x28, 0xf6, 0xd1, 0x20, 0x00, 0xff, 0xf7, 0xc2, 0xfa, 0x00, 0x28, +0xf1, 0xd0, 0x01, 0x25, 0x28, 0x00, 0xd3, 0xe4, 0x10, 0xb5, 0xc2, 0x68, 0x04, 0x00, 0xd0, 0x04, +0x15, 0xd5, 0x20, 0x7a, 0x00, 0x28, 0x08, 0xd0, 0x01, 0x28, 0x11, 0xd0, 0x03, 0x28, 0x0e, 0xd1, +0x60, 0x7a, 0x03, 0x28, 0x01, 0xd0, 0x01, 0x28, 0x09, 0xd1, 0x00, 0x29, 0x04, 0xd1, 0x20, 0x00, +0x19, 0xf0, 0x98, 0xf8, 0x00, 0x28, 0x02, 0xd1, 0x20, 0x00, 0x19, 0xf0, 0x62, 0xea, 0x68, 0xe4, +0x90, 0x03, 0xfc, 0xd4, 0x01, 0x20, 0x40, 0x04, 0x02, 0x43, 0xe2, 0x60, 0x61, 0xe4, 0x10, 0xb5, +0x13, 0xf0, 0xfa, 0xfc, 0x4f, 0x49, 0x06, 0xe0, 0x0a, 0x7a, 0x06, 0x2a, 0x03, 0xd1, 0x13, 0xf0, +0xf7, 0xfc, 0x01, 0x20, 0x55, 0xe4, 0x49, 0x68, 0x00, 0x29, 0xf5, 0xd1, 0x13, 0xf0, 0xf0, 0xfc, +0x00, 0x20, 0x4e, 0xe4, 0x01, 0x00, 0x0b, 0x22, 0xf8, 0xb5, 0x92, 0x01, 0x8a, 0x18, 0x00, 0x92, +0x92, 0x7a, 0x01, 0x20, 0x05, 0x00, 0xff, 0x2a, 0x1e, 0xd1, 0x0a, 0x7a, 0x02, 0x2a, 0x00, 0xd1, +0x00, 0x25, 0xb1, 0x22, 0x00, 0x24, 0x01, 0x27, 0x92, 0x00, 0x8e, 0x18, 0x3e, 0x4a, 0x39, 0x00, +0x52, 0x68, 0xa1, 0x40, 0x11, 0x42, 0x10, 0xd1, 0x22, 0x06, 0x12, 0x0e, 0x2b, 0x00, 0x31, 0x00, +0x01, 0x20, 0x06, 0xf0, 0x17, 0xf8, 0x00, 0x28, 0x07, 0xd1, 0x00, 0x99, 0x36, 0x4a, 0x8c, 0x72, +0x51, 0x68, 0xa7, 0x40, 0x39, 0x43, 0x51, 0x60, 0xf8, 0xbd, 0x64, 0x1c, 0x06, 0x2c, 0xe5, 0xd3, +0xf8, 0xbd, 0xfe, 0xb5, 0x00, 0xf0, 0x3d, 0xf8, 0x2f, 0x4c, 0x02, 0x90, 0xa1, 0x68, 0x0f, 0xf3, +0x74, 0xeb, 0x00, 0x25, 0x01, 0x90, 0x2c, 0x48, 0xa9, 0x00, 0x08, 0x18, 0x44, 0x69, 0x00, 0x2c, +0x21, 0xd0, 0x0b, 0x20, 0x80, 0x01, 0x27, 0x18, 0x3e, 0x69, 0x02, 0x99, 0x40, 0x36, 0xb0, 0x89, +0x0f, 0xf3, 0x62, 0xeb, 0xb0, 0x75, 0x00, 0x20, 0xf0, 0x75, 0x80, 0x34, 0x21, 0x7a, 0x01, 0x9a, +0x51, 0x43, 0xe2, 0x68, 0x89, 0x02, 0x11, 0x61, 0xe1, 0x68, 0x80, 0x22, 0x48, 0x61, 0xe0, 0x68, +0xc1, 0x78, 0x11, 0x43, 0xc1, 0x70, 0xb2, 0x7b, 0x00, 0x92, 0x13, 0x00, 0xb9, 0x7a, 0x20, 0x7a, +0x01, 0x22, 0x06, 0xf0, 0x52, 0xf8, 0x6d, 0x1c, 0x2d, 0x06, 0x2d, 0x0e, 0x03, 0x2d, 0xd2, 0xd3, +0x01, 0x98, 0x04, 0xf3, 0x08, 0xf8, 0x14, 0x48, 0x80, 0x68, 0x40, 0x1e, 0x06, 0xf0, 0x67, 0xf8, +0xfe, 0xbd, 0xf8, 0xb5, 0x00, 0x20, 0x05, 0x00, 0x0f, 0x4e, 0x0b, 0x27, 0xbf, 0x01, 0x30, 0x61, +0xa8, 0x00, 0x80, 0x19, 0x40, 0x69, 0x00, 0x28, 0x0d, 0xd0, 0xc0, 0x19, 0x00, 0x69, 0x34, 0x69, +0x40, 0x30, 0x80, 0x89, 0x04, 0xe0, 0x21, 0x00, 0x0f, 0xf3, 0x26, 0xeb, 0x20, 0x00, 0x0c, 0x00, +0x00, 0x2c, 0xf8, 0xd1, 0x30, 0x61, 0x6d, 0x1c, 0x2d, 0x06, 0x2d, 0x0e, 0x03, 0x2d, 0xe7, 0xd3, +0x30, 0x69, 0xf8, 0xbd, 0x94, 0x01, 0x00, 0x04, 0xd8, 0x49, 0x00, 0x04, 0x70, 0x47, 0x7f, 0xb5, +0x03, 0x00, 0x0b, 0x20, 0x80, 0x01, 0x18, 0x18, 0x42, 0x69, 0x0d, 0x00, 0x02, 0x24, 0x04, 0x29, +0x1b, 0xd2, 0x18, 0x00, 0x16, 0xf0, 0xac, 0xfe, 0x00, 0x28, 0x05, 0xd0, 0x14, 0x20, 0x68, 0x43, +0x80, 0x18, 0x00, 0x79, 0x04, 0x09, 0x10, 0xe0, 0x18, 0x00, 0xff, 0xf7, 0x14, 0xfa, 0x00, 0x28, +0x0b, 0xd0, 0x02, 0x21, 0x68, 0x46, 0x0f, 0xf0, 0x73, 0xff, 0x28, 0x00, 0x10, 0xf0, 0x41, 0xf9, +0x80, 0x00, 0x69, 0x46, 0x08, 0x5c, 0x04, 0x07, 0x24, 0x0f, 0x20, 0x00, 0x3a, 0x12, 0xf5, 0x13, +0x01, 0x00, 0x00, 0x00, 0x20, 0xdf, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x9b, 0x92, 0x9d, 0x5d, +0x04, 0xb0, 0x70, 0xbd, 0x03, 0x00, 0x0a, 0x00, 0x00, 0xb5, 0x16, 0xf0, 0x8b, 0xfe, 0x00, 0x28, +0x07, 0xd0, 0x0b, 0x20, 0x80, 0x01, 0x18, 0x18, 0x41, 0x69, 0x60, 0x20, 0x50, 0x43, 0xb0, 0x30, +0x08, 0x5a, 0x00, 0xbd, 0x10, 0xb5, 0xf2, 0xf7, 0x75, 0xff, 0x00, 0x28, 0x10, 0xd0, 0xf2, 0xf7, +0x69, 0xff, 0x75, 0x49, 0x01, 0x20, 0x80, 0x05, 0x88, 0x60, 0xc0, 0x11, 0xf2, 0xf7, 0x30, 0xff, +0x00, 0xf0, 0x38, 0xf9, 0x19, 0xf0, 0x2a, 0xe8, 0x00, 0xf0, 0x44, 0xf9, 0xf2, 0xf7, 0x52, 0xff, +0x10, 0xbd, 0x70, 0xb5, 0x13, 0xf0, 0x02, 0xfc, 0x06, 0x00, 0x6c, 0x48, 0x01, 0x68, 0x08, 0x06, +0x09, 0xd5, 0x48, 0x06, 0x07, 0xd5, 0x68, 0x4c, 0xa5, 0x68, 0xe0, 0x17, 0xe0, 0x60, 0xff, 0xf7, +0xd9, 0xff, 0xa5, 0x60, 0x01, 0xe0, 0x19, 0xf0, 0x12, 0xe8, 0x30, 0x00, 0x13, 0xf0, 0xf2, 0xfb, +0x70, 0xbd, 0xe6, 0xe7, 0x10, 0xb5, 0x13, 0xf0, 0xe9, 0xfb, 0x04, 0x00, 0x00, 0xf0, 0xec, 0xf8, +0x00, 0xf0, 0xf4, 0xf8, 0x20, 0x00, 0x13, 0xf0, 0xe5, 0xfb, 0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, +0x13, 0xf0, 0xdc, 0xfb, 0x05, 0x00, 0x59, 0x48, 0x01, 0x68, 0x21, 0x43, 0x01, 0x60, 0x60, 0x06, +0x01, 0xd4, 0x20, 0x06, 0x18, 0xd5, 0x48, 0x06, 0x16, 0xd5, 0x08, 0x06, 0x14, 0xd5, 0xf2, 0xf7, +0x94, 0xff, 0x51, 0x49, 0xff, 0x20, 0x40, 0x1c, 0xc8, 0x60, 0x4a, 0x68, 0x02, 0x42, 0x00, 0xd0, +0x88, 0x60, 0x4f, 0x49, 0x08, 0x68, 0x61, 0x22, 0x12, 0x05, 0x90, 0x43, 0x08, 0x60, 0x4d, 0x49, +0x88, 0x68, 0x4d, 0x4a, 0x10, 0x40, 0x88, 0x60, 0x28, 0x00, 0x13, 0xf0, 0xbb, 0xfb, 0x70, 0xbd, +0x10, 0xb5, 0xf6, 0xf7, 0x99, 0xfb, 0x00, 0x28, 0x01, 0xd1, 0x48, 0x48, 0x10, 0xbd, 0x48, 0x48, +0x10, 0xbd, 0x10, 0xb5, 0x01, 0xf0, 0xbf, 0xfa, 0x46, 0x49, 0x40, 0x00, 0x08, 0x5a, 0x46, 0x4b, +0x40, 0x49, 0x58, 0x43, 0xc9, 0x68, 0x0b, 0x07, 0x1b, 0x0f, 0x0e, 0xf3, 0x2c, 0xef, 0x08, 0x05, +0x07, 0x06, 0x06, 0x09, 0x09, 0x0b, 0x0b, 0x06, 0x40, 0x08, 0x10, 0xbd, 0x80, 0x08, 0x10, 0xbd, +0xc0, 0x08, 0x10, 0xbd, 0x00, 0x09, 0x10, 0xbd, 0x10, 0xb5, 0xff, 0xf7, 0xe2, 0xff, 0x3b, 0x49, +0x88, 0x42, 0x01, 0xd1, 0x3a, 0x48, 0x10, 0xbd, 0x3a, 0x49, 0x88, 0x42, 0x01, 0xd1, 0x3a, 0x48, +0x10, 0xbd, 0x3a, 0x4a, 0x3a, 0x49, 0x90, 0x42, 0x19, 0xd0, 0x3a, 0x4a, 0x90, 0x42, 0x01, 0xd1, +0x39, 0x48, 0x10, 0xbd, 0x39, 0x4a, 0x90, 0x42, 0x02, 0xd1, 0x37, 0x48, 0xd2, 0x38, 0x10, 0xbd, +0x37, 0x4a, 0x90, 0x42, 0x01, 0xd1, 0x37, 0x48, 0x10, 0xbd, 0x37, 0x4a, 0x90, 0x42, 0x01, 0xd1, +0x36, 0x48, 0x10, 0xbd, 0x36, 0x4a, 0x90, 0x42, 0x01, 0xd1, 0x36, 0x48, 0x10, 0xbd, 0x08, 0x00, +0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x13, 0xf0, 0x61, 0xfb, 0x05, 0x00, 0x1b, 0x48, 0x01, 0x68, +0xa1, 0x43, 0x01, 0x60, 0x60, 0x06, 0x01, 0xd4, 0x20, 0x06, 0x18, 0xd5, 0x48, 0x06, 0x01, 0xd5, +0x08, 0x06, 0x14, 0xd4, 0x16, 0x48, 0x01, 0x68, 0x61, 0x22, 0x12, 0x05, 0x11, 0x43, 0x01, 0x60, +0x01, 0x68, 0x42, 0x05, 0x11, 0x43, 0x01, 0x60, 0x0f, 0x49, 0xc0, 0x0d, 0x88, 0x60, 0xf2, 0xf7, +0x24, 0xff, 0x10, 0x48, 0x81, 0x68, 0x10, 0x4a, 0xd2, 0x43, 0x11, 0x43, 0x81, 0x60, 0x28, 0x00, +0x13, 0xf0, 0x40, 0xfb, 0x70, 0xbd, 0x09, 0x4a, 0x01, 0x00, 0x12, 0x68, 0x00, 0x20, 0x91, 0x43, +0x00, 0xd1, 0x01, 0x20, 0x70, 0x47, 0xc0, 0x00, 0x05, 0xd5, 0x04, 0x48, 0x18, 0x30, 0x40, 0x68, +0x00, 0x28, 0x00, 0xd0, 0x00, 0x47, 0x70, 0x47, 0x00, 0x30, 0x00, 0x80, 0xdc, 0xf0, 0x00, 0xc0, +0x00, 0x21, 0x00, 0x80, 0x00, 0x28, 0x00, 0x80, 0x7f, 0xff, 0xdf, 0xff, 0x3f, 0x3d, 0x00, 0x00, +0x7f, 0x84, 0x1e, 0x00, 0xb8, 0x74, 0x02, 0x00, 0xa0, 0x86, 0x01, 0x00, 0x00, 0x1b, 0xb7, 0x00, +0x54, 0x15, 0x00, 0x00, 0x40, 0x5d, 0xc6, 0x00, 0xb0, 0x13, 0x00, 0x00, 0x00, 0xf8, 0x24, 0x01, +0x54, 0x0d, 0x00, 0x00, 0x00, 0x36, 0x6e, 0x01, 0xaa, 0x0a, 0x00, 0x00, 0x80, 0xba, 0x8c, 0x01, +0x00, 0xf0, 0x49, 0x02, 0xaa, 0x06, 0x00, 0x00, 0x00, 0x75, 0x19, 0x03, 0xeb, 0x04, 0x00, 0x00, +0x00, 0x7c, 0x92, 0x00, 0xaa, 0x1a, 0x00, 0x00, 0x33, 0x49, 0x00, 0x20, 0x10, 0xb5, 0x08, 0x61, +0x32, 0x49, 0x04, 0x20, 0x08, 0x61, 0x00, 0xf0, 0x36, 0xf8, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xb5, +0xf2, 0xf7, 0xda, 0xfc, 0x01, 0x20, 0xf2, 0xf7, 0xd7, 0xfc, 0x03, 0x20, 0xf2, 0xf7, 0xd4, 0xfc, +0x04, 0x00, 0x00, 0x20, 0xf2, 0xf7, 0x03, 0xfd, 0x01, 0x20, 0xf2, 0xf7, 0x00, 0xfd, 0x03, 0x20, +0xf2, 0xf7, 0xfd, 0xfc, 0x02, 0x00, 0x21, 0x00, 0x03, 0x20, 0x00, 0x23, 0x00, 0xf0, 0x58, 0xf8, +0x10, 0xbd, 0x70, 0x47, 0x23, 0x49, 0x22, 0x48, 0x08, 0x60, 0x22, 0x48, 0x31, 0x21, 0x80, 0x30, +0x41, 0x61, 0xb3, 0x21, 0x41, 0x61, 0x1f, 0x48, 0x40, 0x30, 0xc1, 0x6b, 0x02, 0x22, 0x91, 0x43, +0xc1, 0x63, 0x70, 0x47, 0x1b, 0x49, 0xb1, 0x20, 0x80, 0x31, 0x48, 0x61, 0x18, 0x48, 0x19, 0x49, +0x08, 0x38, 0x08, 0x60, 0x70, 0x47, 0x15, 0x48, 0x10, 0xb5, 0x01, 0x68, 0x16, 0x4a, 0x11, 0x40, +0x01, 0x60, 0x81, 0x68, 0x15, 0x4a, 0x11, 0x40, 0x81, 0x60, 0x41, 0x68, 0x14, 0x4a, 0x11, 0x40, +0x41, 0x60, 0x81, 0x68, 0x05, 0x22, 0x91, 0x43, 0x81, 0x60, 0x12, 0x49, 0x48, 0x68, 0x12, 0x4a, +0x10, 0x40, 0x48, 0x60, 0x01, 0xf0, 0x7a, 0xfa, 0x10, 0x48, 0xc0, 0x69, 0x00, 0x28, 0x03, 0xdb, +0x40, 0x21, 0x0e, 0x20, 0x01, 0xf0, 0x99, 0xf9, 0x08, 0x21, 0x1f, 0x20, 0x01, 0xf0, 0x95, 0xf9, +0x01, 0xf0, 0x41, 0xfa, 0x10, 0xbd, 0x00, 0x00, 0x00, 0x29, 0x00, 0x80, 0x00, 0x28, 0x00, 0x80, +0xcd, 0x02, 0x00, 0x00, 0x00, 0x23, 0x00, 0x80, 0x00, 0xcf, 0xff, 0xcf, 0xef, 0x7b, 0xfb, 0xab, +0xb5, 0xaa, 0xaa, 0xbf, 0x00, 0x22, 0x00, 0x80, 0x40, 0xf0, 0xff, 0xff, 0x00, 0x21, 0x00, 0x80, +0x0a, 0x2a, 0x10, 0xb5, 0x11, 0xd0, 0x0b, 0x2a, 0x0f, 0xd0, 0x0c, 0x2a, 0x0d, 0xd1, 0x00, 0x2b, +0x0b, 0xd1, 0x00, 0x21, 0x04, 0x20, 0xfc, 0xf2, 0x27, 0xfb, 0x04, 0x48, 0x42, 0x69, 0x10, 0x21, +0x8a, 0x43, 0x42, 0x61, 0x82, 0x69, 0x8a, 0x43, 0x82, 0x61, 0x10, 0xbd, 0x00, 0x02, 0x00, 0x90, +0xf8, 0xb5, 0xfe, 0x48, 0xfe, 0x4a, 0x01, 0x88, 0x91, 0x42, 0x1d, 0xd0, 0x02, 0x00, 0x12, 0x88, +0x01, 0x24, 0x41, 0x88, 0x94, 0x40, 0xfb, 0x4f, 0x01, 0x29, 0x04, 0xd1, 0xfd, 0x68, 0xa5, 0x43, +0x2c, 0x43, 0x26, 0x00, 0x03, 0xe0, 0xfe, 0x68, 0xa6, 0x43, 0x34, 0x43, 0x25, 0x00, 0xf6, 0x49, +0x80, 0x88, 0x09, 0x68, 0x13, 0xf0, 0x34, 0xe8, 0x89, 0x05, 0x80, 0x0a, 0x08, 0x43, 0xfd, 0x60, +0x01, 0xd0, 0x18, 0xf0, 0x8e, 0xee, 0xfe, 0x60, 0xf8, 0xbd, 0xf8, 0xb5, 0x01, 0x21, 0x06, 0x00, +0xea, 0x48, 0x01, 0x25, 0x58, 0x38, 0x81, 0x55, 0xe8, 0x49, 0x10, 0x20, 0x57, 0x39, 0x88, 0x55, +0xea, 0x48, 0xb1, 0x01, 0x0f, 0x18, 0xea, 0x48, 0x00, 0x22, 0x01, 0x88, 0x5c, 0x14, 0xe4, 0x56, +0x01, 0x00, 0x00, 0x00, 0x1c, 0xe3, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xb3, 0x03, 0x18, 0xe0, +0xe9, 0x48, 0x13, 0x00, 0x15, 0xf0, 0x87, 0xff, 0xa9, 0x00, 0x00, 0x91, 0x00, 0x28, 0x78, 0x50, +0x2f, 0xd0, 0xac, 0x21, 0x01, 0x81, 0xde, 0x48, 0xb4, 0x00, 0x50, 0x38, 0x00, 0x59, 0x40, 0x30, +0x45, 0x72, 0x00, 0x98, 0x38, 0x58, 0x01, 0x89, 0x40, 0x18, 0xd9, 0x49, 0x50, 0x39, 0x09, 0x59, +0x44, 0x31, 0x0e, 0xf3, 0xd8, 0xec, 0x00, 0x98, 0x08, 0x21, 0x38, 0x58, 0xd4, 0x4a, 0x01, 0x73, +0x01, 0x23, 0x08, 0x3a, 0x18, 0x00, 0x11, 0x59, 0xa8, 0x40, 0x01, 0x43, 0x11, 0x51, 0x11, 0x00, +0x48, 0x39, 0x09, 0x59, 0x12, 0x1d, 0x88, 0x71, 0x00, 0x0a, 0xc8, 0x71, 0x10, 0x00, 0x54, 0x38, +0x80, 0x5d, 0x11, 0x59, 0x83, 0x40, 0x19, 0x43, 0x11, 0x51, 0x40, 0x1c, 0x11, 0x00, 0x54, 0x39, +0x88, 0x55, 0x6d, 0x1c, 0x10, 0x2d, 0xc0, 0xdb, 0x01, 0x21, 0x00, 0x20, 0x16, 0xf0, 0xa2, 0xfd, +0xf8, 0xbd, 0xc3, 0x49, 0x10, 0xb5, 0xc0, 0x68, 0x5c, 0x39, 0x09, 0x5c, 0x00, 0x29, 0x08, 0xd1, +0xc6, 0x49, 0x0a, 0x68, 0x00, 0x2a, 0x02, 0xd1, 0xc5, 0x48, 0x08, 0x60, 0x01, 0xe0, 0xff, 0xf7, +0x9e, 0xff, 0x00, 0x20, 0x10, 0xbd, 0xf8, 0xb5, 0x85, 0x01, 0x84, 0x00, 0xb8, 0x4e, 0xbc, 0x4f, +0x5c, 0x3e, 0xb1, 0x6a, 0x00, 0x29, 0x12, 0xd1, 0x30, 0x00, 0x0c, 0x30, 0x00, 0x59, 0xc1, 0x79, +0x82, 0x79, 0x08, 0x02, 0x31, 0x00, 0x58, 0x31, 0x09, 0x59, 0x10, 0x43, 0x08, 0x40, 0x31, 0x00, +0x50, 0x31, 0x08, 0x51, 0xc0, 0x07, 0x2b, 0xd1, 0x78, 0x59, 0x00, 0x28, 0x28, 0xd1, 0x7d, 0x21, +0xb4, 0x48, 0x00, 0x22, 0x09, 0x01, 0x0f, 0xf3, 0xb3, 0xf8, 0x00, 0x28, 0x78, 0x51, 0x1f, 0xd0, +0x00, 0x21, 0xb1, 0x62, 0xa6, 0x4e, 0xac, 0x22, 0x50, 0x3e, 0x02, 0x81, 0x30, 0x59, 0x40, 0x30, +0x41, 0x72, 0x78, 0x59, 0x01, 0x89, 0x40, 0x18, 0x31, 0x59, 0x44, 0x31, 0x0e, 0xf3, 0x6a, 0xec, +0x01, 0x20, 0x31, 0x00, 0x48, 0x31, 0x08, 0x51, 0x31, 0x59, 0x00, 0x22, 0x88, 0x71, 0xca, 0x71, +0x32, 0x00, 0x4c, 0x32, 0x11, 0x59, 0x01, 0x43, 0x11, 0x51, 0x79, 0x59, 0x08, 0x20, 0x08, 0x73, +0xf8, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x00, 0x20, 0xe1, 0x68, 0x95, 0x4e, 0x89, 0x00, 0x50, 0x3e, +0x71, 0x58, 0x88, 0x71, 0xc8, 0x71, 0xe1, 0x68, 0x89, 0x00, 0x71, 0x58, 0x01, 0x22, 0x08, 0x71, +0x48, 0x71, 0xe1, 0x68, 0x89, 0x00, 0x71, 0x58, 0x20, 0x31, 0x0a, 0x76, 0xe1, 0x68, 0x89, 0x00, +0x71, 0x58, 0x37, 0x00, 0x20, 0x31, 0x08, 0x76, 0xe0, 0x68, 0x0c, 0x3f, 0x39, 0x5c, 0x00, 0x29, +0x13, 0xd1, 0x80, 0x00, 0x35, 0x58, 0x6c, 0x35, 0x28, 0x00, 0x0e, 0xf3, 0x24, 0xec, 0x03, 0x21, +0x89, 0x02, 0x08, 0x43, 0x29, 0x00, 0x0e, 0xf3, 0x2e, 0xec, 0xe0, 0x68, 0x80, 0x00, 0x30, 0x58, +0x10, 0x22, 0x6b, 0x30, 0x01, 0x78, 0x11, 0x43, 0x01, 0x70, 0x7d, 0x48, 0x01, 0x25, 0x5c, 0x38, +0x05, 0x64, 0x45, 0x64, 0x85, 0x64, 0xc5, 0x64, 0x85, 0x62, 0xe0, 0x68, 0x39, 0x5c, 0x00, 0x29, +0x08, 0xd1, 0xff, 0xf7, 0x78, 0xff, 0x76, 0x49, 0xe0, 0x68, 0x58, 0x39, 0x0d, 0x54, 0xe0, 0x68, +0x49, 0x1c, 0x0d, 0x54, 0x20, 0x00, 0xff, 0xf7, 0x5c, 0xff, 0xe0, 0x68, 0x07, 0x21, 0x80, 0x00, +0x30, 0x58, 0x00, 0x23, 0x20, 0x30, 0x01, 0x75, 0xe0, 0x68, 0x80, 0x00, 0x30, 0x58, 0x6d, 0x49, +0x20, 0x30, 0x03, 0x77, 0xe0, 0x68, 0x00, 0x28, 0x03, 0xd1, 0x69, 0x4a, 0x11, 0x80, 0x51, 0x80, +0x91, 0x80, 0x67, 0x4a, 0x0d, 0x0a, 0x92, 0x1d, 0x11, 0x70, 0x55, 0x70, 0x91, 0x70, 0x09, 0x0a, +0xd1, 0x70, 0x11, 0x00, 0x52, 0x39, 0x00, 0x28, 0x02, 0xd1, 0x08, 0x68, 0xc3, 0x70, 0x03, 0xe0, +0x05, 0x22, 0x80, 0x00, 0x08, 0x58, 0xc2, 0x70, 0xe0, 0x68, 0x80, 0x00, 0x08, 0x58, 0x83, 0x70, +0xe0, 0x68, 0x80, 0x00, 0x08, 0x58, 0x03, 0x71, 0xe0, 0x68, 0x80, 0x00, 0x08, 0x58, 0x43, 0x71, +0xe0, 0x68, 0x81, 0x00, 0x72, 0x58, 0xd5, 0x79, 0x96, 0x79, 0x2a, 0x02, 0x32, 0x43, 0x09, 0xd0, +0x53, 0x48, 0x08, 0x38, 0x05, 0x00, 0x42, 0x58, 0x18, 0x3d, 0x6a, 0x50, 0xe1, 0x68, 0x89, 0x00, +0x43, 0x50, 0xe0, 0x68, 0x0c, 0x21, 0x16, 0xf0, 0xb5, 0xfc, 0x00, 0x20, 0xf8, 0xbd, 0x70, 0xb5, +0x04, 0x00, 0x13, 0xf0, 0xfd, 0xf8, 0x4a, 0x4a, 0xef, 0x25, 0xa1, 0x00, 0x50, 0x3a, 0x53, 0x58, +0x20, 0x33, 0x00, 0x2c, 0x1d, 0x76, 0x03, 0xd0, 0x52, 0x58, 0x17, 0x23, 0x20, 0x32, 0x13, 0x75, +0x43, 0x4b, 0x00, 0x22, 0x3c, 0x3b, 0x5a, 0x50, 0x13, 0xf0, 0xee, 0xf8, 0x70, 0xbd, 0x70, 0xb5, +0x04, 0x00, 0x14, 0x23, 0x42, 0x49, 0x58, 0x43, 0x3c, 0x39, 0x40, 0x18, 0x0f, 0xf3, 0x6a, 0xf8, +0x3f, 0x4b, 0x3b, 0x4e, 0x01, 0x21, 0xa2, 0x01, 0x40, 0x33, 0x0d, 0x00, 0xd3, 0x18, 0x57, 0x3e, +0x09, 0xe0, 0x2a, 0x00, 0x00, 0x28, 0x04, 0xd1, 0x88, 0x00, 0x18, 0x58, 0x00, 0x28, 0x00, 0xd1, +0x00, 0x22, 0x10, 0x00, 0x49, 0x1c, 0x00, 0x28, 0x02, 0xd1, 0x32, 0x5d, 0x8a, 0x42, 0xf0, 0xd8, +0x70, 0xbd, 0x01, 0x20, 0x08, 0xb5, 0x00, 0x90, 0x37, 0x48, 0x14, 0x21, 0x00, 0x68, 0x6a, 0x46, +0xfc, 0xf2, 0x13, 0xff, 0x08, 0xbd, 0x35, 0x48, 0x70, 0x47, 0x70, 0xb5, 0x0c, 0x00, 0x01, 0x21, +0xc9, 0x07, 0x8a, 0x78, 0x26, 0x4b, 0x80, 0x00, 0x38, 0x3b, 0x19, 0x58, 0xa1, 0x42, 0x30, 0xd0, +0x00, 0x2c, 0x1c, 0x50, 0x0d, 0xd0, 0x00, 0x20, 0x01, 0x21, 0x85, 0x00, 0x5d, 0x59, 0xa5, 0x42, +0x04, 0xd0, 0x45, 0x1c, 0x0e, 0x00, 0xae, 0x40, 0x16, 0x42, 0x22, 0xd1, 0x40, 0x1c, 0x01, 0x28, +0xf3, 0xd3, 0x1b, 0x4d, 0x5c, 0x3d, 0xa8, 0x78, 0xa0, 0x42, 0x1a, 0xd0, 0x28, 0x00, 0x19, 0x49, +0x62, 0x30, 0x00, 0x2c, 0x09, 0xd0, 0xc2, 0x78, 0x83, 0x78, 0x10, 0x02, 0x18, 0x43, 0x88, 0x42, +0x0f, 0xd0, 0x00, 0xf0, 0x51, 0xfe, 0x01, 0x20, 0x08, 0xe0, 0x42, 0x78, 0x03, 0x78, 0x10, 0x02, +0x18, 0x43, 0x88, 0x42, 0x05, 0xd0, 0x00, 0xf0, 0x47, 0xfe, 0x00, 0x20, 0xf2, 0xf7, 0xb9, 0xfb, +0xac, 0x70, 0x70, 0xbd, 0xf0, 0xb5, 0x05, 0x00, 0x00, 0x24, 0x09, 0x4a, 0x21, 0x00, 0x80, 0x00, +0x50, 0x3a, 0x13, 0x58, 0x85, 0xb0, 0x20, 0x33, 0x1c, 0x75, 0x16, 0x58, 0x01, 0x23, 0x20, 0x36, +0x33, 0x76, 0x10, 0x58, 0xae, 0x01, 0x20, 0x30, 0x04, 0x76, 0x05, 0x48, 0x37, 0x18, 0x22, 0xe0, +0x80, 0x77, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x02, 0x00, 0x90, 0x6c, 0x1b, 0x01, 0xc0, +0x40, 0x90, 0x02, 0x00, 0x56, 0xf0, 0x00, 0xc0, 0x30, 0x00, 0x00, 0x04, 0x30, 0xee, 0x00, 0xc0, +0xfb, 0xe2, 0x00, 0x00, 0x88, 0x00, 0x00, 0x04, 0x18, 0xee, 0x00, 0xc0, 0xef, 0xe5, 0x00, 0x00, +0xa0, 0x00, 0x04, 0x90, 0x38, 0x58, 0x00, 0x28, 0x04, 0xd0, 0x0e, 0xf3, 0x17, 0xff, 0x04, 0x99, +0x00, 0x20, 0x78, 0x50, 0x64, 0x1c, 0x49, 0x48, 0x40, 0x5d, 0xa0, 0x42, 0xf0, 0xd8, 0x48, 0x4f, +0x14, 0x20, 0x3a, 0x00, 0x14, 0x3a, 0x11, 0x00, 0x68, 0x43, 0x7c, 0x31, 0x0b, 0x00, 0x54, 0x3b, +0xc3, 0x18, 0x82, 0x18, 0xc0, 0x19, 0x01, 0xaf, 0x0d, 0xc7, 0x00, 0x24, 0xc7, 0xb1, 0x4c, 0x58, +0x01, 0x00, 0x00, 0x00, 0x18, 0xe7, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xe0, 0xd9, 0xcb, 0x8c, +0xa8, 0x01, 0x47, 0x18, 0x0a, 0xe0, 0xa0, 0x00, 0x00, 0x90, 0x38, 0x58, 0x00, 0x28, 0x04, 0xd0, +0x13, 0xf0, 0x64, 0xf8, 0x00, 0x99, 0x00, 0x20, 0x78, 0x50, 0x64, 0x1c, 0x38, 0x48, 0x40, 0x1c, +0x40, 0x5d, 0xa0, 0x42, 0xef, 0xd8, 0x37, 0x4c, 0x68, 0x34, 0x05, 0xe0, 0x01, 0x98, 0x0e, 0xf3, +0x7a, 0xff, 0xa0, 0x51, 0x13, 0xf0, 0x52, 0xf8, 0x01, 0x98, 0x0e, 0xf3, 0x9d, 0xff, 0x00, 0x28, +0xf4, 0xd1, 0x05, 0xe0, 0x02, 0x98, 0x0e, 0xf3, 0x6e, 0xff, 0x78, 0x60, 0x13, 0xf0, 0x46, 0xf8, +0x02, 0x98, 0x0e, 0xf3, 0x91, 0xff, 0x00, 0x28, 0xf4, 0xd1, 0x05, 0xe0, 0x03, 0x98, 0x0e, 0xf3, +0x62, 0xff, 0xa0, 0x51, 0x13, 0xf0, 0x3a, 0xf8, 0x03, 0x98, 0x0e, 0xf3, 0x85, 0xff, 0x00, 0x28, +0xf4, 0xd1, 0x23, 0x49, 0xa0, 0x51, 0x01, 0x20, 0x09, 0x1f, 0x08, 0x64, 0x48, 0x64, 0xc8, 0x64, +0x88, 0x64, 0x05, 0xb0, 0xf0, 0xbd, 0xf8, 0xb5, 0x00, 0x24, 0x25, 0x00, 0x1c, 0x48, 0xa7, 0x00, +0x34, 0x30, 0x14, 0x26, 0xc5, 0x51, 0x1b, 0x48, 0x66, 0x43, 0x14, 0x38, 0x30, 0x18, 0x14, 0x21, +0x0e, 0xf3, 0xec, 0xe9, 0x17, 0x48, 0x14, 0x21, 0x30, 0x18, 0x0e, 0xf3, 0xe8, 0xe9, 0x15, 0x48, +0x14, 0x21, 0x14, 0x30, 0x30, 0x18, 0x0e, 0xf3, 0xe2, 0xe9, 0x11, 0x48, 0x30, 0x22, 0x00, 0x1d, +0xc1, 0x59, 0x10, 0x48, 0x62, 0x43, 0xa8, 0x30, 0x10, 0x18, 0xc4, 0x60, 0x81, 0x60, 0x45, 0x61, +0x85, 0x61, 0x0d, 0x49, 0xc5, 0x61, 0x01, 0x61, 0x0c, 0x49, 0x01, 0x62, 0x0c, 0x49, 0x85, 0x62, +0x41, 0x62, 0xfc, 0xf2, 0x7d, 0xfd, 0x64, 0x1c, 0x01, 0x2c, 0xcf, 0xdb, 0x09, 0x49, 0x08, 0x20, +0xf1, 0xf7, 0xd6, 0xfc, 0x08, 0x49, 0xff, 0x20, 0x40, 0x1c, 0x88, 0x60, 0xf8, 0xbd, 0x00, 0x00, +0x28, 0x77, 0x02, 0x00, 0x18, 0x90, 0x02, 0x00, 0x4f, 0xe4, 0x00, 0x00, 0x83, 0x50, 0x02, 0x00, +0x53, 0x54, 0x02, 0x00, 0xdd, 0x59, 0x02, 0x00, 0x00, 0x30, 0x00, 0x80, 0x31, 0xb5, 0x6b, 0x46, +0x1a, 0x78, 0x58, 0x78, 0x99, 0x78, 0x00, 0x24, 0x01, 0x2a, 0x0e, 0xd0, 0x02, 0x2a, 0x0a, 0xd1, +0x48, 0x4a, 0x10, 0x70, 0x48, 0x48, 0x01, 0x70, 0x00, 0xf0, 0x3a, 0xfe, 0x10, 0xf0, 0x86, 0xfa, +0x04, 0x00, 0x00, 0xf0, 0x58, 0xfe, 0x20, 0x00, 0x38, 0xbd, 0x44, 0x4a, 0x10, 0x70, 0x44, 0x48, +0x01, 0x70, 0x00, 0xf0, 0xf8, 0xfd, 0x10, 0xf0, 0xbd, 0xfa, 0x04, 0x00, 0x00, 0xf0, 0x19, 0xfe, +0xf1, 0xe7, 0xf8, 0xb5, 0x00, 0x26, 0x3f, 0x4f, 0x34, 0x00, 0x3d, 0x1d, 0xa0, 0x00, 0x40, 0x19, +0x00, 0x68, 0xff, 0xf7, 0xd3, 0xff, 0x00, 0x28, 0x06, 0xd0, 0xa0, 0x00, 0x39, 0x68, 0x40, 0x19, +0x00, 0x68, 0x88, 0x60, 0x01, 0x20, 0xf8, 0xbd, 0x64, 0x1c, 0x05, 0x2c, 0xee, 0xdb, 0x00, 0x2e, +0x05, 0xd1, 0x38, 0x68, 0x01, 0x21, 0x02, 0x22, 0x81, 0x72, 0x02, 0x72, 0x41, 0x72, 0x00, 0x20, +0xf8, 0xbd, 0x30, 0x48, 0x00, 0x22, 0x00, 0x68, 0x01, 0x7a, 0x01, 0x29, 0x0c, 0xd0, 0x02, 0x29, +0x29, 0xd1, 0x28, 0x4b, 0x41, 0x7a, 0x19, 0x70, 0x2b, 0x49, 0xc1, 0x60, 0x2b, 0x49, 0x01, 0x61, +0x2b, 0x49, 0x41, 0x61, 0x2b, 0x49, 0x16, 0xe0, 0x24, 0x4b, 0x41, 0x7a, 0x19, 0x70, 0x81, 0x7a, +0x23, 0x4b, 0x02, 0x29, 0x19, 0x70, 0x28, 0x4b, 0xc3, 0x60, 0x28, 0x4b, 0x03, 0x61, 0x28, 0x4b, +0x43, 0x61, 0x07, 0xd1, 0x27, 0x49, 0x09, 0x78, 0xbf, 0x29, 0x01, 0xd0, 0x1f, 0x29, 0x01, 0xd1, +0x25, 0x49, 0x00, 0xe0, 0x25, 0x49, 0xc2, 0x61, 0x42, 0x60, 0x81, 0x61, 0x01, 0x21, 0x42, 0x70, +0x01, 0x70, 0x08, 0x00, 0x70, 0x47, 0x00, 0x20, 0x70, 0x47, 0x21, 0x49, 0x7d, 0x20, 0x00, 0x01, +0x10, 0xb5, 0x08, 0x60, 0x20, 0x49, 0x1f, 0x48, 0x08, 0x60, 0x20, 0x49, 0x11, 0x4c, 0x08, 0x60, +0x20, 0x68, 0x00, 0x78, 0x00, 0x28, 0x03, 0xd1, 0xff, 0xf7, 0x9b, 0xff, 0xff, 0xf7, 0xb9, 0xff, +0x20, 0x68, 0xc0, 0x68, 0x80, 0x47, 0x10, 0xbd, 0x0a, 0x48, 0x00, 0x68, 0x00, 0x69, 0x00, 0x47, +0x10, 0xb5, 0x0c, 0x00, 0x07, 0x49, 0x09, 0x68, 0x49, 0x69, 0x88, 0x47, 0x20, 0x60, 0x01, 0x20, +0x10, 0xbd, 0x00, 0x00, 0xb0, 0xb9, 0x02, 0x00, 0xb1, 0xb9, 0x02, 0x00, 0xb4, 0xb9, 0x02, 0x00, +0xc4, 0xb9, 0x02, 0x00, 0x10, 0xf1, 0x00, 0xc0, 0xc9, 0xf4, 0x00, 0x00, 0x0f, 0xf5, 0x00, 0x00, +0x01, 0xad, 0x30, 0x00, 0x95, 0xac, 0x30, 0x00, 0x5f, 0xf4, 0x00, 0x00, 0xab, 0xf4, 0x00, 0x00, +0xfb, 0xad, 0x30, 0x00, 0xc5, 0xb9, 0x02, 0x00, 0x57, 0xaf, 0x30, 0x00, 0xf7, 0xae, 0x30, 0x00, +0xb8, 0xb9, 0x02, 0x00, 0x10, 0x27, 0x00, 0x00, 0xbc, 0xb9, 0x02, 0x00, 0xc0, 0xb9, 0x02, 0x00, +0x10, 0xb5, 0x04, 0x00, 0x12, 0xf0, 0xde, 0xfe, 0x1f, 0x49, 0x01, 0x2c, 0x0c, 0xd1, 0x1f, 0x4a, +0x4a, 0x60, 0x1f, 0x49, 0x4b, 0x6a, 0x80, 0x22, 0x13, 0x43, 0x4b, 0x62, 0x4b, 0x6a, 0x93, 0x43, +0x4b, 0x62, 0x12, 0xf0, 0xd3, 0xfe, 0x10, 0xbd, 0x18, 0x4a, 0x52, 0x1c, 0xf0, 0xe7, 0x08, 0x00, +0xe6, 0xe7, 0x70, 0xb5, 0x04, 0x00, 0x40, 0x1e, 0x04, 0x42, 0x23, 0xd1, 0x06, 0xf0, 0x54, 0xf8, +0x20, 0x42, 0x1f, 0xd0, 0x06, 0xf0, 0x46, 0xf8, 0x20, 0x42, 0x1b, 0xd0, 0x20, 0x00, 0x18, 0xf0, +0x1a, 0xec, 0x10, 0x4c, 0x61, 0x6a, 0x60, 0x31, 0xc8, 0x72, 0xff, 0xf7, 0xd1, 0xff, 0x60, 0x6a, +0x00, 0x25, 0x60, 0x30, 0x45, 0x73, 0x0a, 0xf0, 0x88, 0xf9, 0x0b, 0x48, 0x05, 0x60, 0x61, 0x6a, +0x60, 0x31, 0xc8, 0x7a, 0x88, 0x72, 0xff, 0xf7, 0xc3, 0xff, 0x60, 0x6a, 0x60, 0x30, 0x05, 0x73, +0x01, 0x20, 0x70, 0xbd, 0x00, 0x20, 0x70, 0xbd, 0x00, 0x23, 0x00, 0x80, 0x01, 0x00, 0x03, 0x00, +0x00, 0xa8, 0x00, 0x80, 0x38, 0x52, 0x00, 0x04, 0x80, 0x1e, 0x01, 0xc0, 0x10, 0xb5, 0xfa, 0xf2, +0x75, 0xfa, 0x10, 0xbd, 0xfb, 0x48, 0x80, 0x78, 0x70, 0x47, 0xfa, 0x48, 0xc0, 0x78, 0x70, 0x47, +0xf8, 0x48, 0x00, 0x69, 0x70, 0x47, 0xf7, 0x49, 0x1f, 0x20, 0x88, 0x80, 0x70, 0x47, 0xf8, 0xb5, +0x04, 0x00, 0xf4, 0x4d, 0xf4, 0x4f, 0x13, 0xe0, 0xa0, 0x01, 0x06, 0x00, 0x10, 0xf0, 0xad, 0xfa, +0x00, 0x28, 0x0a, 0xd0, 0x30, 0x00, 0x10, 0xf0, 0x85, 0xfa, 0x2a, 0x89, 0xd3, 0x00, 0xdb, 0x19, +0x03, 0xc3, 0x60, 0x1c, 0x52, 0x1c, 0xe8, 0x80, 0x2a, 0x81, 0x64, 0x1c, 0x24, 0x04, 0x24, 0x0c, +0xa8, 0x88, 0x84, 0x42, 0xe8, 0xd3, 0xf8, 0xbd, 0xf3, 0xb5, 0x81, 0xb0, 0x00, 0x24, 0x0f, 0x00, +0xe4, 0x4e, 0xf0, 0x88, 0x00, 0x90, 0x40, 0x18, 0xb1, 0x88, 0x88, 0x42, 0x2a, 0xd9, 0xff, 0x20, +0xfe, 0xbd, 0xf0, 0x88, 0xb1, 0x88, 0x88, 0x42, 0x03, 0xd3, 0x00, 0x98, 0xff, 0xf7, 0xcf, 0xff, +0xf5, 0xe7, 0x01, 0x9a, 0xe1, 0x00, 0x8d, 0x18, 0x6b, 0x68, 0x2a, 0x68, 0x80, 0x01, 0x10, 0xf0, +0x5b, 0xfa, 0xf0, 0x88, 0x80, 0x01, 0x10, 0xf0, 0x55, 0xfa, 0x0c, 0xcd, 0x50, 0x40, 0x59, 0x40, +0x08, 0x43, 0x1b, 0xd1, 0xf0, 0x88, 0x80, 0x01, 0x10, 0xf0, 0x80, 0xfa, 0xf0, 0x88, 0x80, 0x01, +0x10, 0xf0, 0x6b, 0xfa, 0x00, 0x28, 0x11, 0xd0, 0xf0, 0x88, 0x40, 0x1c, 0x11, 0x77, 0xa8, 0xdf, +0x01, 0x00, 0x00, 0x00, 0x14, 0xeb, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x14, 0xb6, 0xbe, 0x38, +0x64, 0x1c, 0x24, 0x04, 0x24, 0x0c, 0xf0, 0x80, 0xbc, 0x42, 0xd4, 0xd3, 0x00, 0x98, 0xff, 0xf7, +0xa8, 0xff, 0xf1, 0x88, 0x00, 0x98, 0x08, 0x1a, 0xc0, 0x1b, 0x00, 0x04, 0x00, 0x0c, 0xfe, 0xbd, +0xf0, 0x88, 0x40, 0x1c, 0xf0, 0x80, 0xc6, 0xe7, 0xf8, 0xb5, 0x01, 0x24, 0x00, 0x25, 0xc2, 0x4f, +0xb8, 0x88, 0x00, 0x90, 0x70, 0xe0, 0xc1, 0x49, 0xe0, 0x00, 0x41, 0x18, 0x08, 0x78, 0x4e, 0x78, +0x42, 0x06, 0x5e, 0xd5, 0x03, 0x00, 0x3f, 0x3b, 0x0e, 0xf3, 0x9a, 0xe9, 0x0b, 0x69, 0x1c, 0x1c, +0x07, 0x11, 0x0b, 0x0e, 0x15, 0x15, 0x15, 0x17, 0x1d, 0x00, 0x64, 0x1c, 0x24, 0x04, 0x24, 0x0c, +0x5a, 0xe0, 0x88, 0x78, 0x38, 0x61, 0xf8, 0xe7, 0x88, 0x78, 0x78, 0x70, 0xf5, 0xe7, 0xb4, 0x48, +0x20, 0x22, 0x0d, 0xf3, 0x6a, 0xef, 0x30, 0x19, 0x4c, 0xe0, 0x88, 0x78, 0xb8, 0x70, 0xc8, 0x78, +0xf8, 0x70, 0xea, 0xe7, 0x89, 0x1c, 0x4a, 0x28, 0x1c, 0xd0, 0x7f, 0x28, 0x1a, 0xd0, 0x48, 0x88, +0x00, 0x0b, 0x01, 0xd0, 0x08, 0x88, 0x15, 0xe0, 0x08, 0x78, 0x02, 0x00, 0xaf, 0x3a, 0x07, 0x2a, +0x01, 0xd9, 0xbf, 0x28, 0x0e, 0xd1, 0x0a, 0x7a, 0xd3, 0x03, 0x03, 0x43, 0x10, 0x09, 0x1b, 0x04, +0x00, 0x01, 0x1b, 0x0c, 0x00, 0x02, 0x18, 0x43, 0xb2, 0x28, 0x03, 0xd1, 0x49, 0x7a, 0x09, 0x07, +0x09, 0x0d, 0x08, 0x43, 0x9e, 0x4a, 0x00, 0x21, 0x20, 0x32, 0x0b, 0xe0, 0x06, 0x23, 0x4b, 0x43, +0xd3, 0x5a, 0x83, 0x42, 0x03, 0xd1, 0x6d, 0x1e, 0x2d, 0x06, 0x2d, 0x0e, 0x04, 0xe0, 0x49, 0x1c, +0x09, 0x06, 0x09, 0x0e, 0xa9, 0x42, 0xf1, 0xd3, 0x06, 0x23, 0x59, 0x43, 0x50, 0x52, 0x88, 0x18, +0x44, 0x80, 0x46, 0x71, 0x30, 0x19, 0x04, 0x04, 0x6d, 0x1c, 0x24, 0x0c, 0x2d, 0x06, 0x2d, 0x0e, +0x0a, 0xe0, 0x02, 0x28, 0x01, 0xd1, 0x89, 0x78, 0x39, 0x70, 0x01, 0x21, 0x00, 0x28, 0x00, 0xd0, +0x31, 0x00, 0x08, 0x19, 0x04, 0x04, 0x24, 0x0c, 0x00, 0x98, 0x84, 0x42, 0x8b, 0xd3, 0xf8, 0xbd, +0x87, 0x49, 0x00, 0x20, 0x10, 0xb5, 0x08, 0x70, 0x83, 0x48, 0x41, 0x69, 0x00, 0x29, 0x0f, 0xd1, +0x01, 0x21, 0x41, 0x61, 0x00, 0x20, 0x10, 0xf0, 0xca, 0xf9, 0x00, 0x28, 0x01, 0xd1, 0x10, 0xf0, +0xd7, 0xf9, 0xff, 0xf7, 0x0a, 0xff, 0x00, 0x20, 0xff, 0xf7, 0x0b, 0xff, 0xff, 0xf7, 0x6c, 0xff, +0x10, 0xbd, 0x7b, 0x4a, 0x00, 0x20, 0x20, 0x32, 0x0d, 0xe0, 0x7f, 0x29, 0x08, 0xd1, 0x06, 0x23, +0x58, 0x43, 0x76, 0x49, 0x80, 0x18, 0x40, 0x88, 0xc0, 0x00, 0x41, 0x18, 0x03, 0xc9, 0x70, 0x47, +0x40, 0x1c, 0x20, 0x28, 0x04, 0xda, 0x06, 0x21, 0x41, 0x43, 0x51, 0x5c, 0x00, 0x29, 0xec, 0xd1, +0x00, 0x20, 0xc0, 0x43, 0x01, 0x00, 0x70, 0x47, 0x70, 0xb5, 0x06, 0x00, 0x0d, 0x00, 0xff, 0xf7, +0xe0, 0xff, 0x0c, 0x00, 0xfc, 0xf2, 0x88, 0xfe, 0x00, 0x04, 0x00, 0x0c, 0x30, 0x60, 0x20, 0x00, +0xfc, 0xf2, 0x82, 0xfe, 0x28, 0x60, 0x01, 0x20, 0x70, 0xbd, 0x7c, 0xb5, 0x04, 0x00, 0x00, 0x20, +0x63, 0x4a, 0x20, 0x32, 0x00, 0x2c, 0x2b, 0xd0, 0x25, 0xe0, 0x0d, 0x29, 0x20, 0xd1, 0x06, 0x23, +0x58, 0x43, 0x5e, 0x49, 0x80, 0x18, 0x40, 0x88, 0xc0, 0x00, 0x40, 0x18, 0x82, 0x88, 0x11, 0x0b, +0x01, 0xd1, 0x81, 0x1c, 0x0f, 0xe0, 0x11, 0x06, 0x57, 0x4b, 0x12, 0x0b, 0x92, 0x00, 0x18, 0x33, +0xd2, 0x18, 0x09, 0x0e, 0x80, 0x1c, 0x40, 0x3a, 0xd5, 0x6b, 0x6a, 0x46, 0x01, 0xab, 0xa8, 0x47, +0x6b, 0x46, 0x1a, 0x79, 0x00, 0x99, 0x20, 0x00, 0x0d, 0xf3, 0xa6, 0xee, 0x01, 0x20, 0x7c, 0xbd, +0x40, 0x1c, 0x20, 0x28, 0x04, 0xda, 0x06, 0x21, 0x41, 0x43, 0x51, 0x5c, 0x00, 0x29, 0xd4, 0xd1, +0x00, 0x20, 0x7c, 0xbd, 0xf8, 0xb5, 0x0d, 0x00, 0x16, 0x00, 0x1a, 0x00, 0x00, 0x21, 0x00, 0x2d, +0x3d, 0xd0, 0x47, 0x4c, 0x45, 0x4f, 0x20, 0x34, 0x00, 0x28, 0x33, 0xd0, 0x00, 0x06, 0x00, 0x16, +0x40, 0x1c, 0x40, 0x42, 0x44, 0x01, 0xff, 0x20, 0x0b, 0x30, 0x82, 0x42, 0x2f, 0xd3, 0x20, 0x2c, +0x2d, 0xda, 0x01, 0x00, 0x28, 0x00, 0x0d, 0xf3, 0x46, 0xef, 0xe0, 0x00, 0xc1, 0x19, 0xff, 0x22, +0x28, 0x00, 0x52, 0x1c, 0x0a, 0x30, 0x0d, 0xf3, 0x78, 0xee, 0xff, 0x20, 0x0b, 0x30, 0x30, 0x80, +0x13, 0xe0, 0x4a, 0x28, 0x13, 0xd1, 0x06, 0x20, 0x48, 0x43, 0x00, 0x19, 0x40, 0x88, 0xc0, 0x00, +0xc1, 0x19, 0x48, 0x88, 0x00, 0x1f, 0x04, 0x04, 0x24, 0x0c, 0x94, 0x42, 0x0f, 0xd8, 0x09, 0x1d, +0x22, 0x00, 0x28, 0x00, 0x0d, 0xf3, 0x60, 0xee, 0x34, 0x80, 0x00, 0x20, 0xf8, 0xbd, 0x49, 0x1c, +0x20, 0x29, 0x04, 0xda, 0x06, 0x20, 0x48, 0x43, 0x20, 0x5c, 0x00, 0x28, 0xe1, 0xd1, 0x01, 0x20, +0xf8, 0xbd, 0x00, 0x23, 0x10, 0xb5, 0x1a, 0x00, 0x83, 0x70, 0x04, 0xe0, 0x84, 0x5c, 0xe3, 0x18, +0x1b, 0x06, 0x1b, 0x0e, 0x52, 0x1c, 0x8a, 0x42, 0xf8, 0xd3, 0x01, 0x21, 0xc9, 0x1a, 0x81, 0x70, +0x10, 0xbd, 0xff, 0xb5, 0xc3, 0xb0, 0x68, 0x46, 0xff, 0xf7, 0x6f, 0xff, 0x00, 0x28, 0x2f, 0xd0, +0x6b, 0x46, 0x5c, 0x88, 0x44, 0x98, 0x84, 0x42, 0x2a, 0xd8, 0x00, 0x25, 0x6e, 0x46, 0x05, 0xe0, +0x70, 0x59, 0xfc, 0xf2, 0xe1, 0xfd, 0x43, 0x99, 0x48, 0x51, 0x2d, 0x1d, 0xa5, 0x42, 0xf7, 0xd3, +0x45, 0x98, 0x20, 0x18, 0xfc, 0xf2, 0xd8, 0xfd, 0x43, 0x99, 0x48, 0x60, 0x43, 0x98, 0x21, 0x00, +0xff, 0xf7, 0xcf, 0xff, 0x0e, 0x48, 0x00, 0x27, 0x20, 0x30, 0x6a, 0xe0, 0x09, 0x06, 0x65, 0xd5, +0x0b, 0x49, 0x44, 0x9b, 0x20, 0x31, 0x40, 0x18, 0x40, 0x88, 0xc1, 0x00, 0x07, 0x48, 0x08, 0x18, +0x81, 0x88, 0x0a, 0x0b, 0x0e, 0x05, 0x36, 0x0d, 0xa1, 0x19, 0x99, 0x42, 0x41, 0x92, 0x09, 0xd9, +0x01, 0x20, 0x47, 0xb0, 0xf0, 0xbd, 0x00, 0x00, 0x28, 0xf1, 0x00, 0xc0, 0x80, 0x39, 0x01, 0xc0, +0x80, 0x3a, 0x01, 0xc0, 0x00, 0x2a, 0x02, 0xd1, 0x80, 0x1c, 0x42, 0x90, 0x0e, 0xe0, 0x6d, 0x4b, +0x92, 0x00, 0x31, 0x06, 0xd2, 0x18, 0x09, 0x0e, 0x80, 0x1c, 0x40, 0x3a, 0xd5, 0x6b, 0x40, 0xaa, +0x41, 0xab, 0xa8, 0x47, 0x40, 0x98, 0x40, 0xab, 0x42, 0x90, 0x1e, 0x79, 0x00, 0x68, 0x80, 0x21, +0x88, 0x43, 0xfc, 0xf2, 0x99, 0xfd, 0x43, 0x99, 0x04, 0x25, 0x08, 0x51, 0x09, 0xe0, 0x42, 0x99, +0xa8, 0x08, 0x80, 0x00, 0x08, 0x58, 0xfc, 0xf2, 0x8f, 0xfd, 0x43, 0x9a, 0x61, 0x19, 0x2d, 0x1d, +0x50, 0x50, 0xb5, 0x42, 0xf3, 0xd3, 0x5c, 0x49, 0x7d, 0x1c, 0x02, 0xe0, 0x00, 0x06, 0x07, 0xd4, +0x6d, 0x1c, 0x20, 0x2d, 0x04, 0xd2, 0x06, 0x20, 0x68, 0x43, 0x08, 0x5c, 0x00, 0x28, 0xf5, 0xd1, +0x00, 0x20, 0xc0, 0x43, 0x20, 0x2d, 0x07, 0xd0, 0x06, 0x22, 0x6a, 0x43, 0x89, 0x5c, 0x00, 0x29, +0x02, 0xd0, 0x45, 0x98, 0xa1, 0x19, 0x08, 0x18, 0xfc, 0xf2, 0x6e, 0xfd, 0x01, 0x00, 0x43, 0x98, +0x00, 0x19, 0x41, 0x60, 0x31, 0x00, 0xff, 0xf7, 0x64, 0xff, 0xa4, 0x19, 0x7f, 0x1c, 0x20, 0x2f, +0x05, 0xd2, 0x06, 0x20, 0x78, 0x43, 0x48, 0x4a, 0x11, 0x5c, 0x00, 0x29, 0x8e, 0xd1, 0x46, 0x98, +0x04, 0x80, 0x00, 0x20, 0x9d, 0xe7, 0xff, 0xb5, 0xff, 0x21, 0x00, 0x24, 0x1c, 0x96, 0x8b, 0x6a, +0x01, 0x00, 0x00, 0x00, 0x10, 0xef, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x47, 0x6c, 0x6d, 0x54, +0x05, 0x00, 0x49, 0x1c, 0x42, 0x48, 0x81, 0xb0, 0x0d, 0xf3, 0x3c, 0xee, 0x40, 0x4a, 0x28, 0x68, +0x08, 0x21, 0x10, 0x60, 0x04, 0x20, 0x29, 0xe0, 0x2b, 0x5c, 0xe3, 0x40, 0xa4, 0x1c, 0x9b, 0x07, +0x24, 0x06, 0x9b, 0x0f, 0x24, 0x0e, 0x08, 0x2c, 0x03, 0xd1, 0x40, 0x1c, 0x00, 0x24, 0x00, 0x06, +0x00, 0x0e, 0x03, 0x2b, 0x12, 0xd1, 0x2b, 0x5c, 0x00, 0x2c, 0x04, 0xd1, 0x40, 0x1c, 0x00, 0x06, +0x00, 0x0e, 0x53, 0x54, 0x0f, 0xe0, 0x40, 0x1c, 0xe3, 0x40, 0x00, 0x06, 0x00, 0x0e, 0x08, 0x27, +0x53, 0x54, 0x2e, 0x5c, 0x3f, 0x1b, 0xbe, 0x40, 0x1e, 0x43, 0x03, 0xe0, 0xff, 0x26, 0x02, 0x2b, +0x00, 0xd0, 0x1e, 0x00, 0x56, 0x54, 0x49, 0x1c, 0x09, 0x06, 0x09, 0x0e, 0x02, 0x9b, 0x98, 0x42, +0xd2, 0xd3, 0x04, 0x98, 0x01, 0x70, 0x03, 0x98, 0x02, 0x60, 0x04, 0x98, 0x00, 0x78, 0x50, 0x80, +0x05, 0xb0, 0x59, 0xe7, 0xf7, 0xb5, 0x00, 0x24, 0x16, 0x00, 0x22, 0x48, 0x1f, 0x4f, 0x15, 0x1d, +0xfc, 0x2a, 0x36, 0xd8, 0x17, 0xe0, 0x4a, 0x29, 0x10, 0xd1, 0xc0, 0x19, 0x40, 0x88, 0xc1, 0x00, +0x1c, 0x48, 0x09, 0x18, 0x48, 0x88, 0xa8, 0x42, 0x12, 0xd1, 0x01, 0x98, 0x09, 0x1d, 0x32, 0x00, +0x12, 0xf0, 0x00, 0xf9, 0x00, 0x28, 0x01, 0xd1, 0x00, 0x20, 0xfe, 0xbd, 0x64, 0x1c, 0x24, 0x06, +0x24, 0x0e, 0x20, 0x2c, 0x04, 0xd2, 0x06, 0x20, 0x60, 0x43, 0x39, 0x5c, 0x00, 0x29, 0xe2, 0xd1, +0x11, 0x4c, 0x4a, 0x20, 0x20, 0x70, 0x30, 0x00, 0x0b, 0x30, 0xc0, 0x08, 0x60, 0x70, 0x01, 0x99, +0x32, 0x00, 0x20, 0x1d, 0x0d, 0xf3, 0x32, 0xed, 0x29, 0x04, 0x09, 0x0c, 0x61, 0x80, 0xc9, 0x1d, +0xc9, 0x08, 0x20, 0x00, 0xff, 0xf7, 0x54, 0xfd, 0xff, 0x28, 0x02, 0xd0, 0xff, 0xf7, 0x96, 0xfd, +0xda, 0xe7, 0x01, 0x20, 0xfe, 0xbd, 0x00, 0x00, 0x40, 0xf1, 0x00, 0xc0, 0xa0, 0x3a, 0x01, 0xc0, +0x80, 0x37, 0x01, 0xc0, 0x80, 0x39, 0x01, 0xc0, 0x80, 0x38, 0x01, 0xc0, 0xab, 0x49, 0x08, 0x22, +0x00, 0x28, 0xc8, 0x68, 0x01, 0xd0, 0x10, 0x43, 0x00, 0xe0, 0x90, 0x43, 0xc8, 0x60, 0x70, 0x47, +0xa7, 0x49, 0x00, 0x20, 0x10, 0xb5, 0x48, 0x60, 0xf5, 0xf7, 0xfd, 0xfa, 0x10, 0xbd, 0xf0, 0xb5, +0x03, 0x25, 0x2d, 0x03, 0xa1, 0x48, 0xa3, 0x4c, 0xc0, 0x30, 0xc2, 0x0d, 0x93, 0x02, 0x87, 0x0c, +0x00, 0x29, 0x9e, 0x4e, 0x01, 0x6a, 0x0a, 0xd0, 0x11, 0x43, 0x01, 0x62, 0x01, 0x6a, 0x99, 0x43, +0x01, 0x62, 0xa0, 0x68, 0x28, 0x43, 0xa0, 0x60, 0x30, 0x68, 0x38, 0x43, 0x09, 0xe0, 0x91, 0x43, +0x01, 0x62, 0x01, 0x6a, 0x19, 0x43, 0x01, 0x62, 0xa0, 0x68, 0xa8, 0x43, 0xa0, 0x60, 0x30, 0x68, +0xb8, 0x43, 0x30, 0x60, 0xf0, 0xbd, 0x38, 0xb5, 0x05, 0x00, 0x00, 0x24, 0x68, 0x46, 0x05, 0xf0, +0xf3, 0xfd, 0x00, 0x28, 0x1a, 0xd0, 0x00, 0x2d, 0x0b, 0xd1, 0x6b, 0x46, 0x58, 0x78, 0xc1, 0x07, +0x14, 0xd0, 0x40, 0x06, 0x12, 0xd5, 0x98, 0x78, 0x80, 0x07, 0x80, 0x0f, 0x0c, 0xe0, 0x01, 0x24, +0x0c, 0xe0, 0x01, 0x2d, 0x0a, 0xd1, 0x6b, 0x46, 0x58, 0x78, 0x81, 0x07, 0x06, 0xd5, 0xc0, 0x09, +0x04, 0xd0, 0x98, 0x78, 0x80, 0x06, 0x80, 0x0f, 0x01, 0x28, 0xf0, 0xd0, 0x20, 0x00, 0x38, 0xbd, +0x73, 0xb5, 0x6b, 0x46, 0x05, 0x00, 0x5c, 0x79, 0x60, 0x07, 0x05, 0xd5, 0x7c, 0x48, 0x41, 0x68, +0x00, 0x29, 0x01, 0xd1, 0x01, 0x21, 0x41, 0x60, 0x28, 0x00, 0xff, 0xf7, 0xcc, 0xff, 0x01, 0x06, +0x09, 0x0e, 0x28, 0x00, 0xff, 0xf7, 0xa3, 0xff, 0x60, 0x07, 0x03, 0xd4, 0x6b, 0x46, 0x18, 0x79, +0x00, 0x09, 0x00, 0xd0, 0x01, 0x20, 0xff, 0xf7, 0x89, 0xff, 0x7c, 0xbd, 0x33, 0xb5, 0x6b, 0x46, +0x00, 0x28, 0x19, 0x79, 0x02, 0xd1, 0x08, 0x07, 0x00, 0x0f, 0x02, 0xe0, 0x01, 0x28, 0x13, 0xd1, +0x08, 0x09, 0x6d, 0x4a, 0x69, 0x49, 0xd4, 0x43, 0x80, 0x31, 0x00, 0x28, 0x0d, 0xd0, 0x6b, 0x4b, +0x6b, 0x4d, 0x01, 0x28, 0x0d, 0xd0, 0x09, 0x28, 0x10, 0xd0, 0x0f, 0x28, 0x04, 0xd1, 0xc8, 0x17, +0xc8, 0x60, 0x08, 0x61, 0xc8, 0x61, 0x08, 0x62, 0x3c, 0xbd, 0xca, 0x60, 0x0a, 0x61, 0xcc, 0x61, +0x02, 0xe0, 0xcb, 0x60, 0x0a, 0x61, 0xcd, 0x61, 0x0c, 0x62, 0x3c, 0xbd, 0xcb, 0x60, 0x61, 0x48, +0x08, 0x61, 0xcd, 0x61, 0x60, 0x48, 0xee, 0xe7, 0xf0, 0xb5, 0x00, 0x28, 0x04, 0x7a, 0x45, 0x78, +0x06, 0x79, 0x47, 0x79, 0x2b, 0xd0, 0x01, 0x29, 0x0c, 0xd1, 0x05, 0x99, 0x01, 0x29, 0x09, 0xd1, +0x01, 0x2a, 0x06, 0xd1, 0x65, 0x40, 0xd9, 0x07, 0x00, 0xd0, 0x66, 0x40, 0x99, 0x07, 0x00, 0xd5, +0x67, 0x40, 0x2c, 0x00, 0x55, 0x4b, 0x19, 0x68, 0x91, 0x42, 0x00, 0xd0, 0x1a, 0x60, 0x01, 0x78, +0x2a, 0x06, 0x09, 0x04, 0x0a, 0x43, 0x21, 0x02, 0x0a, 0x43, 0x48, 0x49, 0x22, 0x43, 0xc0, 0x31, +0x4a, 0x62, 0x82, 0x79, 0xc3, 0x78, 0x12, 0x04, 0x1b, 0x02, 0x1a, 0x43, 0x32, 0x43, 0x8a, 0x62, +0xc2, 0x79, 0x80, 0x78, 0x12, 0x04, 0x3b, 0x02, 0x1a, 0x43, 0x02, 0x43, 0xca, 0x62, 0xf0, 0xbd, +0x38, 0xb5, 0x05, 0x00, 0x00, 0x24, 0x68, 0x46, 0x05, 0xf0, 0x4e, 0xfd, 0x00, 0x28, 0x03, 0xd1, +0x28, 0x00, 0x00, 0xf0, 0x0f, 0xf8, 0x38, 0xbd, 0x6b, 0x46, 0x18, 0x78, 0x00, 0x07, 0x00, 0x0f, +0x01, 0xd0, 0x01, 0x28, 0x04, 0xd1, 0x00, 0x99, 0x28, 0x00, 0x00, 0xf0, 0x38, 0xf8, 0x04, 0x00, +0x20, 0x00, 0x38, 0xbd, 0x30, 0xb5, 0x00, 0x24, 0x85, 0xb0, 0x05, 0x00, 0x21, 0x00, 0x22, 0x00, +0x23, 0x00, 0x01, 0xa8, 0x04, 0x94, 0x0e, 0xc0, 0x6b, 0x46, 0x18, 0x7c, 0x1c, 0x74, 0x58, 0x7c, +0x01, 0x21, 0x08, 0x43, 0x58, 0x74, 0x98, 0x7c, 0x9c, 0x74, 0x1c, 0x71, 0x5c, 0x71, 0x80, 0x20, +0x9c, 0x71, 0xd8, 0x71, 0x1c, 0x72, 0x5c, 0x72, 0x98, 0x72, 0xd8, 0x72, 0x1c, 0x73, 0x04, 0x99, +0x28, 0x00, 0xff, 0xf7, 0x45, 0xff, 0x6b, 0x46, 0x99, 0x7c, 0x28, 0x00, 0x00, 0x91, 0xff, 0xf7, +0x5d, 0xff, 0x6b, 0x46, 0x18, 0x7c, 0x23, 0x00, 0x02, 0x07, 0x12, 0x0f, 0x00, 0x92, 0x22, 0x00, +0x21, 0x00, 0x01, 0xa8, 0xff, 0xf7, 0x80, 0xff, 0x01, 0x20, 0x05, 0xb0, 0x30, 0xbd, 0xf3, 0xb5, +0x85, 0xb0, 0x00, 0x25, 0x07, 0x00, 0x1e, 0x48, 0x2e, 0x00, 0x40, 0x6a, 0x2c, 0x00, 0x60, 0x30, +0xc2, 0x7a, 0x38, 0x00, 0x02, 0xa9, 0x05, 0xf0, 0x12, 0xfd, 0x00, 0x28, 0x1c, 0xd0, 0x06, 0x99, +0x38, 0x00, 0xff, 0xf7, 0x1d, 0xff, 0x6b, 0x46, 0x99, 0x7e, 0x38, 0x00, 0x01, 0x91, 0xff, 0xf7, +0x35, 0xff, 0x6b, 0x46, 0x58, 0x7e, 0xc1, 0x06, 0x01, 0xd4, 0x80, 0x06, 0x00, 0xd5, 0x01, 0x25, +0x6b, 0x46, 0x18, 0x7e, 0x23, 0x00, 0x02, 0x07, 0x12, 0x0f, 0x00, 0x92, 0x32, 0x00, 0x29, 0x00, +0x02, 0xa8, 0xff, 0xf7, 0x51, 0xff, 0x01, 0x20, 0x07, 0xb0, 0xf0, 0xbd, 0x00, 0xa7, 0x00, 0x80, +0x44, 0xf1, 0x00, 0xc0, 0x00, 0x28, 0x00, 0x80, 0x11, 0xdd, 0x55, 0xdd, 0x1f, 0xdf, 0x5f, 0xdf, +0xef, 0x2f, 0xaf, 0x2f, 0xf1, 0xfd, 0xf5, 0xfd, 0xfe, 0xf2, 0xfa, 0xf2, 0x04, 0x00, 0x00, 0x04, +0x38, 0x52, 0x00, 0x04, 0xf9, 0x49, 0x10, 0xb5, 0x09, 0x68, 0x12, 0xf0, 0x5c, 0x61, 0x68, 0xd3, +0x01, 0x00, 0x00, 0x00, 0x0c, 0xf3, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xf8, 0xa9, 0x48, 0xe7, +0x22, 0xe8, 0x89, 0x05, 0x80, 0x0a, 0x08, 0x43, 0x01, 0xd0, 0x17, 0xf0, 0x7c, 0xee, 0x10, 0xbd, +0xf4, 0x48, 0x01, 0x6a, 0x0f, 0x22, 0x11, 0x43, 0x01, 0x62, 0x02, 0x20, 0xec, 0xe7, 0xf1, 0x48, +0x01, 0x6a, 0x09, 0x09, 0x09, 0x01, 0x01, 0x62, 0x01, 0x20, 0xe5, 0xe7, 0xee, 0x49, 0x70, 0xb5, +0x08, 0x68, 0x08, 0x22, 0x90, 0x43, 0x08, 0x60, 0xec, 0x4a, 0x50, 0x68, 0x40, 0x08, 0x40, 0x00, +0x50, 0x60, 0x10, 0x69, 0x0b, 0x21, 0x08, 0x43, 0x10, 0x61, 0xe9, 0x49, 0x08, 0x00, 0x93, 0x69, +0xdb, 0x06, 0x01, 0xd4, 0x40, 0x1e, 0xfa, 0xd2, 0x90, 0x69, 0x80, 0x06, 0x01, 0xd4, 0x49, 0x1e, +0xfa, 0xd2, 0x12, 0xf0, 0x05, 0xfa, 0xe3, 0x49, 0x0a, 0x68, 0x01, 0x24, 0x64, 0x06, 0xa2, 0x43, +0x0a, 0x60, 0xe0, 0x4a, 0x80, 0x32, 0x13, 0x68, 0xdf, 0x4d, 0x2b, 0x40, 0x13, 0x60, 0x13, 0x68, +0xed, 0x43, 0x2b, 0x43, 0x13, 0x60, 0x0a, 0x68, 0x22, 0x43, 0x0a, 0x60, 0x12, 0xf0, 0xf4, 0xf9, +0x01, 0x20, 0xff, 0xf7, 0xb1, 0xff, 0xff, 0xf7, 0xbb, 0xff, 0xff, 0xf7, 0x4b, 0xfe, 0x70, 0xbd, +0x70, 0xb5, 0xf4, 0xf2, 0xee, 0xee, 0xd5, 0x4d, 0x04, 0x00, 0x28, 0x78, 0x02, 0x28, 0x12, 0xd1, +0xa8, 0x69, 0x40, 0x1c, 0xa8, 0x61, 0x20, 0x06, 0x04, 0xd4, 0xd1, 0x48, 0xf0, 0xf7, 0x9e, 0xfe, +0x17, 0xf0, 0x8a, 0xee, 0x80, 0x2c, 0x02, 0xd1, 0xf4, 0xf2, 0xda, 0xee, 0x70, 0xbd, 0x20, 0x00, +0xf4, 0xf2, 0xe0, 0xee, 0x70, 0xbd, 0x68, 0x69, 0x00, 0x28, 0x05, 0xd0, 0xc8, 0x48, 0x0a, 0x38, +0xf0, 0xf7, 0x8c, 0xfe, 0x17, 0xf0, 0x78, 0xee, 0x02, 0x20, 0x6c, 0x61, 0x28, 0x70, 0x01, 0x20, +0xa8, 0x61, 0xc4, 0x4d, 0xac, 0x88, 0x80, 0x02, 0x04, 0x40, 0xa8, 0x88, 0x6b, 0x26, 0xa0, 0x43, +0xf6, 0x00, 0xb0, 0x42, 0xe6, 0xd0, 0x02, 0x20, 0x00, 0xf0, 0x6e, 0xfa, 0x00, 0x28, 0xe1, 0xd0, +0x34, 0x43, 0xac, 0x80, 0x70, 0xbd, 0xb9, 0x49, 0x10, 0xb5, 0x88, 0x69, 0x40, 0x1e, 0x88, 0x61, +0x0c, 0xd1, 0x48, 0x69, 0x00, 0x22, 0x4a, 0x61, 0xff, 0x22, 0x80, 0x28, 0x0a, 0x70, 0x02, 0xd1, +0xf4, 0xf2, 0xa6, 0xee, 0x10, 0xbd, 0xf4, 0xf2, 0xae, 0xee, 0x10, 0xbd, 0x00, 0x28, 0xfc, 0xda, +0xf4, 0xf2, 0x9e, 0xee, 0xae, 0x48, 0x09, 0x38, 0xf0, 0xf7, 0x58, 0xfe, 0x17, 0xf0, 0x44, 0xee, +0x10, 0xbd, 0x70, 0xb5, 0xa9, 0x4e, 0x70, 0x69, 0x00, 0x28, 0x07, 0xd0, 0x12, 0xf0, 0x88, 0xf9, +0xa7, 0x48, 0x24, 0x38, 0xf0, 0xf7, 0x4a, 0xfe, 0x17, 0xf0, 0x36, 0xee, 0x12, 0xf0, 0x80, 0xf9, +0xa4, 0x4d, 0x70, 0x61, 0xac, 0x88, 0x01, 0x20, 0x80, 0x02, 0x04, 0x40, 0xa8, 0x88, 0xa0, 0x43, +0x82, 0x28, 0x0b, 0xd0, 0x28, 0x88, 0xf0, 0x80, 0x00, 0x20, 0x00, 0xf0, 0x2d, 0xfa, 0x00, 0x28, +0x04, 0xd0, 0xa8, 0x88, 0x30, 0x81, 0x82, 0x20, 0x04, 0x43, 0xac, 0x80, 0x70, 0xbd, 0x97, 0x49, +0x10, 0xb5, 0x98, 0x4a, 0x0b, 0x89, 0x48, 0x69, 0x93, 0x80, 0xcb, 0x88, 0x13, 0x80, 0x00, 0x22, +0x4a, 0x61, 0xff, 0x22, 0x0a, 0x70, 0x12, 0xf0, 0x5f, 0xf9, 0x10, 0xbd, 0x10, 0xb5, 0x8f, 0x4c, +0x60, 0x69, 0x00, 0x28, 0x07, 0xd0, 0x12, 0xf0, 0x53, 0xf9, 0x8d, 0x48, 0x23, 0x38, 0xf0, 0xf7, +0x15, 0xfe, 0x17, 0xf0, 0x02, 0xee, 0x12, 0xf0, 0x4b, 0xf9, 0x8a, 0x49, 0x60, 0x61, 0x88, 0x88, +0x01, 0x22, 0x92, 0x02, 0x10, 0x40, 0x8a, 0x88, 0x82, 0x43, 0x02, 0x2a, 0x08, 0xd0, 0x0a, 0x88, +0xe2, 0x80, 0x1a, 0x22, 0x0a, 0x80, 0x8a, 0x88, 0x22, 0x81, 0x02, 0x22, 0x10, 0x43, 0x88, 0x80, +0x10, 0xbd, 0x7e, 0x49, 0x10, 0xb5, 0x7f, 0x4a, 0x0b, 0x89, 0x48, 0x69, 0x93, 0x80, 0xcb, 0x88, +0x13, 0x80, 0x00, 0x22, 0x4a, 0x61, 0xff, 0x22, 0x0a, 0x70, 0x12, 0xf0, 0x2d, 0xf9, 0x10, 0xbd, +0x70, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0xfb, 0xf2, 0xbe, 0xfe, 0x76, 0x4c, 0x20, 0x34, 0x25, 0x81, +0xfb, 0xf2, 0xb9, 0xfe, 0xa6, 0x80, 0xfb, 0xf2, 0xb6, 0xfe, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, +0x0e, 0x00, 0xfb, 0xf2, 0xb0, 0xfe, 0x6f, 0x4c, 0x20, 0x34, 0x25, 0x81, 0xfb, 0xf2, 0xab, 0xfe, +0xa6, 0x80, 0xfb, 0xf2, 0xa8, 0xfe, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0xfb, 0xf2, 0xa3, 0xfe, +0x68, 0x4c, 0x20, 0x34, 0x25, 0x81, 0xfb, 0xf2, 0x9e, 0xfe, 0x20, 0x79, 0x70, 0xbd, 0x70, 0xb5, +0x04, 0x00, 0x0d, 0x00, 0xff, 0xf7, 0xf0, 0xff, 0x28, 0x43, 0x01, 0x00, 0x20, 0x00, 0xff, 0xf7, +0xdd, 0xff, 0x70, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0xff, 0xf7, 0xe5, 0xff, 0xa8, 0x43, +0x01, 0x00, 0x20, 0x00, 0xff, 0xf7, 0xd2, 0xff, 0x70, 0xbd, 0x58, 0x48, 0x41, 0x78, 0x00, 0x29, +0x09, 0xd1, 0x59, 0x49, 0x09, 0x68, 0x01, 0x22, 0x09, 0x04, 0x42, 0x70, 0x09, 0x0f, 0x02, 0x00, +0x24, 0x32, 0x51, 0x5c, 0x81, 0x70, 0x80, 0x78, 0x70, 0x47, 0x50, 0x4a, 0xd0, 0x78, 0x00, 0x28, +0x18, 0xd1, 0x10, 0x61, 0x50, 0x48, 0x00, 0x68, 0x11, 0x00, 0x80, 0x07, 0x80, 0x0f, 0x10, 0x31, +0x01, 0x23, 0x00, 0x28, 0x07, 0xd0, 0x01, 0x28, 0x07, 0xd0, 0x02, 0x28, 0x07, 0xd0, 0x03, 0x28, +0x07, 0xd1, 0x40, 0x20, 0x04, 0xe0, 0x20, 0x20, 0x02, 0xe0, 0x0b, 0x60, 0x01, 0xe0, 0x10, 0x20, +0x08, 0x60, 0xd3, 0x70, 0x10, 0x69, 0x70, 0x47, 0x44, 0x4b, 0x59, 0x68, 0x1c, 0x22, 0x91, 0x43, +0x10, 0x40, 0x08, 0x43, 0x58, 0x60, 0x70, 0x47, 0x40, 0x4b, 0x59, 0x68, 0xff, 0x22, 0xe1, 0x32, +0x91, 0x43, 0x10, 0x40, 0x08, 0x43, 0x58, 0x60, 0x70, 0x47, 0x70, 0xb5, 0x0c, 0x00, 0xff, 0xf7, +0xf3, 0xff, 0x20, 0x00, 0xff, 0xf7, 0xe8, 0xff, 0x38, 0x4d, 0x39, 0x48, 0x28, 0x60, 0xff, 0xf7, +0x0f, 0xfa, 0x38, 0x4e, 0xff, 0x28, 0x22, 0xd0, 0x68, 0x68, 0x30, 0x40, 0x68, 0x60, 0x2c, 0x68, +0x35, 0x48, 0x04, 0x40, 0xff, 0xf7, 0x04, 0xfa, 0x00, 0x07, 0x02, 0xd5, 0x01, 0x20, 0x80, 0x06, +0x04, 0x43, 0xff, 0xf7, 0xfd, 0xf9, 0x40, 0x07, 0x02, 0xd5, 0x01, 0x20, 0x80, 0x04, 0x04, 0x43, +0xff, 0xf7, 0xf6, 0xf9, 0x80, 0x07, 0x02, 0xd5, 0x01, 0x20, 0xc0, 0x04, 0x04, 0x43, 0xff, 0xf7, +0xef, 0xf9, 0xc0, 0x07, 0x02, 0xd0, 0x01, 0x20, 0xc0, 0x06, 0x04, 0x43, 0x2c, 0x60, 0xff, 0xf7, +0xea, 0xf9, 0xff, 0x28, 0x20, 0xd0, 0xa8, 0x68, 0x30, 0x40, 0xa8, 0x60, 0x2c, 0x68, 0x23, 0x48, +0x04, 0x40, 0xff, 0xf7, 0xe0, 0xf9, 0x00, 0x07, 0x02, 0xd5, 0x01, 0x20, 0x80, 0x02, 0x04, 0x43, +0xff, 0xf7, 0xd9, 0xf9, 0x40, 0x07, 0x01, 0xd5, 0x04, 0x20, 0x04, 0x43, 0xff, 0xf7, 0xd3, 0xf9, +0x80, 0x07, 0x01, 0xd5, 0x08, 0x20, 0x04, 0x43, 0xff, 0xf7, 0xcd, 0xf9, 0xc0, 0x07, 0x02, 0xd0, +0x01, 0x20, 0xc0, 0x02, 0x04, 0x43, 0x2c, 0x60, 0x70, 0xbd, 0x0c, 0x49, 0x10, 0xb5, 0x48, 0x69, +0x00, 0x22, 0x4a, 0x61, 0xff, 0x22, 0x0a, 0x70, 0x12, 0xf0, 0x4e, 0xf8, 0x10, 0xbd, 0x00, 0x00, +0x6c, 0x1b, 0x01, 0xc0, 0x80, 0xa1, 0x00, 0x80, 0x00, 0xa3, 0x00, 0x80, 0x40, 0xa6, 0x00, 0x80, +0x88, 0x13, 0x00, 0x00, 0x00, 0x21, 0x00, 0x80, 0xff, 0xef, 0xff, 0xef, 0xa7, 0x58, 0x40, 0x0f, +0x01, 0x00, 0x00, 0x00, 0x08, 0xf7, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xab, 0x73, 0x9b, 0x8b, +0x4c, 0xf1, 0x00, 0xc0, 0x57, 0x00, 0x01, 0x00, 0x00, 0x08, 0x00, 0x90, 0x00, 0x20, 0x00, 0x80, +0x00, 0x29, 0x00, 0x80, 0x04, 0xfb, 0x04, 0xfb, 0xfd, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xf3, 0xf3, +0xf3, 0xf3, 0xff, 0xff, 0x70, 0xb5, 0x7b, 0x4c, 0x60, 0x69, 0x00, 0x28, 0x06, 0xd0, 0x12, 0xf0, +0x21, 0xf8, 0x79, 0x48, 0xf0, 0xf7, 0xe4, 0xfc, 0x17, 0xf0, 0xd0, 0xec, 0x12, 0xf0, 0x1a, 0xf8, +0x76, 0x4d, 0x60, 0x61, 0xac, 0x88, 0x01, 0x20, 0x80, 0x02, 0x04, 0x40, 0xa8, 0x88, 0xb5, 0x26, +0xa0, 0x43, 0x36, 0x01, 0xb0, 0x42, 0x06, 0xd0, 0x02, 0x20, 0x00, 0xf0, 0xc7, 0xf8, 0x00, 0x28, +0x01, 0xd0, 0x34, 0x43, 0xac, 0x80, 0x70, 0xbd, 0x10, 0xb5, 0x6a, 0x4c, 0x20, 0x79, 0x00, 0x28, +0x0b, 0xd1, 0x01, 0x20, 0x20, 0x71, 0xff, 0xf7, 0xd5, 0xff, 0x06, 0x20, 0xff, 0xf7, 0xee, 0xfe, +0xc0, 0x06, 0xc0, 0x0f, 0x60, 0x71, 0xff, 0xf7, 0xa2, 0xff, 0x60, 0x79, 0xa8, 0xe7, 0xf8, 0xb5, +0x07, 0x00, 0xff, 0xf7, 0xe9, 0xff, 0x62, 0x4c, 0x25, 0x0d, 0x66, 0x0d, 0x00, 0x28, 0x0f, 0xd0, +0xff, 0xf7, 0xc0, 0xff, 0x80, 0x21, 0x26, 0x20, 0xff, 0xf7, 0xe3, 0xfe, 0xff, 0xf7, 0x8f, 0xff, +0xa0, 0x68, 0x28, 0x43, 0xa0, 0x60, 0xa0, 0x68, 0x30, 0x43, 0xa0, 0x60, 0x00, 0x20, 0x06, 0xe0, +0xa0, 0x68, 0xa8, 0x43, 0xa0, 0x60, 0xa0, 0x68, 0xb0, 0x43, 0xa0, 0x60, 0x38, 0x00, 0x00, 0xf0, +0xc3, 0xf8, 0xf8, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0xf5, 0xf7, 0x7c, 0xfb, 0x00, 0x28, 0x1e, 0xd1, +0x50, 0x48, 0xc1, 0x68, 0x09, 0x09, 0x09, 0x01, 0x21, 0x43, 0xc1, 0x60, 0x81, 0x68, 0x09, 0x09, +0x09, 0x01, 0x21, 0x43, 0x81, 0x60, 0x82, 0x68, 0x01, 0x0c, 0x0a, 0x43, 0x82, 0x60, 0x02, 0x69, +0x12, 0x09, 0x12, 0x01, 0x22, 0x43, 0x02, 0x61, 0x02, 0x69, 0x0a, 0x43, 0x02, 0x61, 0x82, 0x69, +0x0a, 0x43, 0x82, 0x61, 0x44, 0x49, 0xa0, 0x00, 0x08, 0x58, 0x44, 0x49, 0x08, 0x60, 0x5f, 0xe7, +0x40, 0x48, 0x80, 0x38, 0x00, 0x88, 0x00, 0x06, 0x00, 0x0e, 0x70, 0x47, 0x3d, 0x48, 0x80, 0x38, +0x00, 0x68, 0x3f, 0x49, 0x88, 0x74, 0x01, 0x0c, 0x3d, 0x48, 0x20, 0x38, 0x01, 0x86, 0x3d, 0x49, +0x49, 0x69, 0x81, 0x63, 0x70, 0x47, 0x3a, 0x48, 0x10, 0xb5, 0x20, 0x38, 0x01, 0x6a, 0x00, 0x20, +0x00, 0xf0, 0x57, 0xf8, 0x44, 0xe7, 0x36, 0x48, 0x10, 0xb5, 0x20, 0x38, 0x81, 0x69, 0x00, 0x20, +0x00, 0xf0, 0x4f, 0xf8, 0x3c, 0xe7, 0x32, 0x48, 0x10, 0xb5, 0x20, 0x38, 0x41, 0x68, 0x81, 0x61, +0x00, 0x20, 0x00, 0xf0, 0x46, 0xf8, 0x33, 0xe7, 0x2d, 0x48, 0x10, 0xb5, 0x20, 0x38, 0x81, 0x68, +0x81, 0x61, 0x00, 0x20, 0x00, 0xf0, 0x3d, 0xf8, 0x2a, 0xe7, 0x29, 0x48, 0x10, 0xb5, 0x20, 0x38, +0xc1, 0x68, 0x81, 0x61, 0x00, 0x20, 0x00, 0xf0, 0x34, 0xf8, 0x21, 0xe7, 0x24, 0x48, 0x10, 0xb5, +0x20, 0x38, 0x01, 0x69, 0x81, 0x61, 0x00, 0x20, 0x00, 0xf0, 0x2b, 0xf8, 0x18, 0xe7, 0x1d, 0x48, +0x21, 0x4a, 0x01, 0x68, 0x11, 0x43, 0x01, 0x60, 0x70, 0x47, 0x1a, 0x49, 0x1e, 0x4a, 0x08, 0x68, +0x90, 0x43, 0x08, 0x60, 0x70, 0x47, 0x16, 0x49, 0x88, 0x68, 0xca, 0x0c, 0x90, 0x43, 0x88, 0x60, +0x28, 0xe7, 0x13, 0x48, 0x81, 0x68, 0xc2, 0x0c, 0x11, 0x43, 0x81, 0x60, 0xf7, 0xe6, 0x00, 0x20, +0x70, 0x47, 0x0c, 0x48, 0xc0, 0x68, 0x70, 0x47, 0x00, 0x20, 0x70, 0x47, 0x10, 0x21, 0x0a, 0x28, +0x03, 0xd2, 0x08, 0x49, 0x40, 0x00, 0x34, 0x31, 0x09, 0x5a, 0x08, 0x48, 0x01, 0x80, 0x01, 0x20, +0x70, 0x47, 0x08, 0x00, 0x0a, 0x49, 0x20, 0x39, 0x4a, 0x69, 0x82, 0x42, 0x01, 0xd0, 0x48, 0x61, +0x60, 0xe7, 0x70, 0x47, 0x4c, 0xf1, 0x00, 0xc0, 0x37, 0x00, 0x01, 0x00, 0x00, 0x08, 0x00, 0x90, +0x80, 0x28, 0x00, 0x80, 0x00, 0x21, 0x00, 0x80, 0x78, 0x74, 0x02, 0x00, 0x6c, 0x1b, 0x01, 0xc0, +0x58, 0x52, 0x00, 0x04, 0x00, 0xa8, 0x00, 0x80, 0x00, 0x08, 0x20, 0x88, 0x04, 0x49, 0x03, 0x48, +0x08, 0x60, 0x04, 0x49, 0x00, 0x1f, 0x00, 0x78, 0x08, 0x70, 0x70, 0x47, 0x90, 0xf1, 0x00, 0xc0, +0xac, 0xb9, 0x02, 0x00, 0xa8, 0xb9, 0x02, 0x00, 0x70, 0xb5, 0x05, 0x00, 0x29, 0x24, 0xff, 0xf7, +0xe1, 0xfe, 0x20, 0x00, 0xff, 0xf7, 0xfa, 0xfd, 0x29, 0x00, 0x20, 0x00, 0xff, 0xf7, 0xe8, 0xfd, +0xff, 0xf7, 0xad, 0xfe, 0x70, 0xbd, 0x70, 0x47, 0x70, 0x47, 0x10, 0xb5, 0xff, 0xf7, 0x70, 0xf8, +0x41, 0x1c, 0x02, 0xd0, 0x00, 0x06, 0x00, 0x0e, 0x10, 0xbd, 0x4a, 0x20, 0x10, 0xbd, 0x10, 0xb5, +0x00, 0xf0, 0x40, 0xf8, 0x10, 0xbd, 0x10, 0xb5, 0xff, 0xf7, 0x95, 0xff, 0x10, 0x21, 0x04, 0x20, +0xff, 0xf7, 0xf2, 0xfd, 0x01, 0x21, 0x05, 0x20, 0xff, 0xf7, 0xee, 0xfd, 0xff, 0xf7, 0x91, 0xff, +0x10, 0xbd, 0x10, 0xb5, 0xff, 0xf7, 0x87, 0xff, 0x10, 0x21, 0x04, 0x20, 0xff, 0xf7, 0xd9, 0xfd, +0x01, 0x21, 0x05, 0x20, 0xff, 0xf7, 0xd5, 0xfd, 0xff, 0xf7, 0x83, 0xff, 0x10, 0xbd, 0x10, 0xb5, +0x04, 0x00, 0xff, 0xf7, 0xa7, 0xfe, 0x00, 0x2c, 0x15, 0xd0, 0xff, 0xf7, 0xf0, 0xfd, 0x00, 0x07, +0x02, 0xd4, 0x2c, 0x21, 0x19, 0x20, 0x09, 0xe0, 0xa4, 0x21, 0x19, 0x20, 0xff, 0xf7, 0xa8, 0xfd, +0x60, 0x21, 0x1a, 0x20, 0xff, 0xf7, 0xa4, 0xfd, 0x6c, 0x21, 0x28, 0x20, 0xff, 0xf7, 0xa0, 0xfd, +0xff, 0xf7, 0x65, 0xfe, 0x10, 0xbd, 0x0f, 0x21, 0x19, 0x20, 0xff, 0xf7, 0x99, 0xfd, 0xfe, 0x21, +0x66, 0x20, 0xf3, 0xe7, 0xf8, 0xb5, 0x00, 0x24, 0x67, 0x27, 0x12, 0xf0, 0xdb, 0xfc, 0x00, 0x28, +0x3d, 0xd1, 0xff, 0xf7, 0x7f, 0xfe, 0x04, 0x21, 0x16, 0x20, 0xff, 0xf7, 0xad, 0xfd, 0x1d, 0x4d, +0x06, 0x21, 0x28, 0x68, 0x11, 0xf0, 0x88, 0xec, 0x89, 0x05, 0x80, 0x0a, 0x08, 0x43, 0x01, 0xd0, +0x17, 0xf0, 0xe2, 0xea, 0xff, 0xf7, 0x99, 0xff, 0x01, 0x00, 0x1f, 0x20, 0xff, 0xf7, 0x78, 0xfd, +0x10, 0x21, 0x20, 0x20, 0xff, 0xf7, 0x8d, 0xfd, 0x7d, 0x26, 0xf6, 0x00, 0x28, 0x68, 0x06, 0x21, +0x11, 0xf0, 0x72, 0xec, 0x89, 0x05, 0x80, 0x0a, 0x08, 0x43, 0x01, 0xd0, 0x17, 0xf0, 0xcc, 0xea, +0x09, 0x20, 0xff, 0xf7, 0x73, 0xfd, 0x64, 0x1c, 0x00, 0x06, 0x02, 0xd4, 0xb4, 0x42, 0xed, 0xd3, +0x03, 0xe0, 0x08, 0x20, 0xff, 0xf7, 0x6a, 0xfd, 0x07, 0x00, 0x10, 0x21, 0x20, 0x20, 0xff, 0xf7, +0x7b, 0xfd, 0x04, 0x21, 0x16, 0x20, 0xff, 0xf7, 0x6c, 0xfd, 0xff, 0xf7, 0x18, 0xfe, 0x38, 0x00, +0xf8, 0xbd, 0x00, 0x00, 0x6c, 0x1b, 0x01, 0xc0, 0x03, 0x49, 0x0a, 0x7f, 0xd2, 0x07, 0xfc, 0xd1, +0x01, 0x49, 0x20, 0x31, 0x08, 0x82, 0x70, 0x47, 0x00, 0x08, 0x00, 0x90, 0x8c, 0x4a, 0x8b, 0x49, +0x11, 0x60, 0x01, 0x60, 0x8b, 0x48, 0x00, 0x78, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x20, 0x70, 0x47, +0x00, 0x28, 0x04, 0xd0, 0x0a, 0x28, 0x03, 0xd0, 0x10, 0x28, 0x03, 0xd1, 0x03, 0x20, 0x70, 0x47, +0x0f, 0x20, 0x70, 0x47, 0x01, 0x20, 0x70, 0x47, 0xf0, 0xb5, 0x87, 0xb0, 0x0e, 0x00, 0x84, 0x46, +0x11, 0x00, 0x18, 0x00, 0x0d, 0x9d, 0x0c, 0x9c, 0x00, 0x22, 0x0e, 0x9b, 0x7e, 0x69, 0x19, 0x62, +0x01, 0x00, 0x00, 0x00, 0x04, 0xfb, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x5f, 0x1c, 0xee, 0x3f, +0x00, 0x96, 0x04, 0x92, 0x03, 0x90, 0x05, 0x92, 0x01, 0x91, 0x02, 0x90, 0x2a, 0x00, 0x21, 0x00, +0x60, 0x46, 0xf7, 0xf2, 0xb1, 0xfa, 0x00, 0x28, 0x01, 0xd0, 0xff, 0xf7, 0xdb, 0xff, 0x07, 0xb0, +0xf0, 0xbd, 0x70, 0xb5, 0x0c, 0x00, 0x15, 0x00, 0x04, 0x9a, 0x19, 0x00, 0x0a, 0x2c, 0x04, 0xd1, +0x13, 0x00, 0x2a, 0x00, 0xf4, 0xf2, 0x82, 0xfd, 0x01, 0xe0, 0xf4, 0xf2, 0xab, 0xfb, 0x00, 0x28, +0x01, 0xd0, 0xff, 0xf7, 0xc7, 0xff, 0x70, 0xbd, 0x7c, 0xb5, 0x5a, 0x43, 0x04, 0x00, 0x06, 0x98, +0x0d, 0x00, 0x16, 0x00, 0x00, 0x28, 0x01, 0xab, 0x0a, 0xd1, 0x00, 0x22, 0x65, 0x48, 0x00, 0x92, +0x00, 0x68, 0x32, 0x00, 0x0a, 0x21, 0xff, 0xf7, 0xdc, 0xff, 0x00, 0x28, 0x00, 0xd0, 0xfe, 0xe7, +0x01, 0x9b, 0x01, 0x22, 0x29, 0x00, 0x20, 0x00, 0x00, 0x96, 0xf6, 0xf2, 0x65, 0xfd, 0x00, 0x28, +0x00, 0xd0, 0xfe, 0xe7, 0x7c, 0xbd, 0x1f, 0xb5, 0x00, 0x22, 0x02, 0xa9, 0xf7, 0xf2, 0x12, 0xf8, +0x00, 0x28, 0x01, 0xd0, 0xff, 0xf7, 0x9e, 0xff, 0x04, 0xb0, 0x10, 0xbd, 0x1a, 0x00, 0x10, 0xb5, +0xf6, 0xf2, 0x3a, 0xff, 0x00, 0x28, 0x01, 0xd0, 0xff, 0xf7, 0x94, 0xff, 0x10, 0xbd, 0x53, 0x49, +0x10, 0xb5, 0x49, 0x68, 0xf5, 0xf2, 0xf2, 0xff, 0x00, 0x28, 0x01, 0xd0, 0xff, 0xf7, 0x8a, 0xff, +0x10, 0xbd, 0x05, 0x2a, 0x10, 0xb5, 0x07, 0xd0, 0x06, 0x2a, 0x05, 0xd0, 0x07, 0x2a, 0x01, 0xd0, +0x08, 0x2a, 0x02, 0xd1, 0x00, 0x22, 0x00, 0xe0, 0x02, 0x22, 0xf6, 0xf2, 0xe1, 0xf8, 0x00, 0x28, +0x01, 0xd0, 0xff, 0xf7, 0x77, 0xff, 0x10, 0xbd, 0x00, 0xb5, 0x87, 0xb0, 0x0b, 0x00, 0x03, 0xaa, +0x04, 0xa9, 0x01, 0x92, 0x1a, 0x00, 0x00, 0x91, 0x06, 0xa9, 0x05, 0xab, 0xf6, 0xf2, 0xa8, 0xf8, +0x00, 0x28, 0x01, 0xd0, 0xff, 0xf7, 0x66, 0xff, 0x07, 0xb0, 0x00, 0xbd, 0x7c, 0xb5, 0x06, 0x00, +0x10, 0x00, 0x1d, 0x00, 0x00, 0x23, 0x06, 0x9a, 0x05, 0x28, 0x01, 0x93, 0x0b, 0xd0, 0x06, 0x28, +0x07, 0xd0, 0x07, 0x28, 0x03, 0xd0, 0x08, 0x28, 0x06, 0xd1, 0x01, 0x20, 0x04, 0xe0, 0x00, 0x20, +0x02, 0xe0, 0x03, 0x20, 0x00, 0xe0, 0x02, 0x20, 0x00, 0x92, 0x02, 0x00, 0x30, 0x00, 0x01, 0xab, +0xf6, 0xf2, 0x1e, 0xf8, 0x04, 0x00, 0x01, 0x98, 0x1a, 0x2c, 0x28, 0x60, 0x01, 0xd0, 0x07, 0x2c, +0x08, 0xd1, 0x29, 0x00, 0x30, 0x00, 0xff, 0xf7, 0xc7, 0xff, 0x02, 0x20, 0x1a, 0x2c, 0x00, 0xd0, +0x21, 0x20, 0x7c, 0xbd, 0x00, 0x2c, 0x01, 0xd1, 0x00, 0x20, 0x7c, 0xbd, 0x20, 0x00, 0xff, 0xf7, +0x31, 0xff, 0x7c, 0xbd, 0x0a, 0x00, 0x22, 0xa1, 0x10, 0xb5, 0xf7, 0xf2, 0x7d, 0xf8, 0x00, 0x28, +0x01, 0xd0, 0xff, 0xf7, 0x27, 0xff, 0x10, 0xbd, 0x10, 0xb5, 0xf7, 0xf2, 0xe9, 0xf8, 0x00, 0x28, +0x01, 0xd0, 0xff, 0xf7, 0x1f, 0xff, 0x10, 0xbd, 0x10, 0xb5, 0xf7, 0xf2, 0xa5, 0xf9, 0x00, 0x28, +0x01, 0xd0, 0xff, 0xf7, 0x17, 0xff, 0x10, 0xbd, 0x38, 0xb5, 0x14, 0x00, 0x04, 0x9d, 0x1a, 0x00, +0x0a, 0x29, 0x05, 0xd1, 0x13, 0x00, 0x11, 0x49, 0x22, 0x00, 0xf4, 0xf2, 0x51, 0xfd, 0x05, 0xe0, +0x00, 0x92, 0x0e, 0x49, 0x23, 0x00, 0x2a, 0x00, 0xf4, 0xf2, 0x68, 0xfb, 0x00, 0x28, 0x01, 0xd0, +0xff, 0xf7, 0x00, 0xff, 0x38, 0xbd, 0x0a, 0x29, 0x10, 0xb5, 0x02, 0xd1, 0xf4, 0xf2, 0x84, 0xfd, +0x01, 0xe0, 0xf4, 0xf2, 0xa7, 0xfb, 0x00, 0x28, 0x01, 0xd0, 0xff, 0xf7, 0xf3, 0xfe, 0x10, 0xbd, +0x0c, 0x7a, 0x02, 0x00, 0xac, 0x76, 0x02, 0x00, 0xa8, 0x76, 0x02, 0x00, 0xb0, 0xf1, 0x00, 0xc0, +0x4f, 0x53, 0x41, 0x5f, 0x53, 0x65, 0x6d, 0x61, 0x00, 0x00, 0x00, 0x00, 0x70, 0xb5, 0x05, 0x00, +0x0c, 0x00, 0x00, 0x09, 0x00, 0xf0, 0xde, 0xf8, 0x20, 0x70, 0x28, 0x07, 0x00, 0x0f, 0x00, 0xf0, +0xd9, 0xf8, 0x60, 0x70, 0x70, 0xbd, 0xf8, 0xb5, 0x05, 0x00, 0x0c, 0x00, 0x00, 0x26, 0x02, 0x28, +0x75, 0xd0, 0x77, 0xdc, 0x00, 0x2d, 0x74, 0xd0, 0x01, 0x2d, 0x7f, 0xd1, 0x20, 0x00, 0x0c, 0xf3, +0xa9, 0xff, 0x00, 0x19, 0x67, 0xa1, 0x11, 0xf0, 0xd9, 0xfa, 0x20, 0x00, 0x0c, 0xf3, 0xa2, 0xff, +0x07, 0x19, 0xff, 0xf7, 0x67, 0xfd, 0x00, 0x06, 0x00, 0x0e, 0x39, 0x00, 0xff, 0xf7, 0xd6, 0xff, +0x20, 0x00, 0x0c, 0xf3, 0x97, 0xff, 0x00, 0x19, 0x61, 0xa1, 0x11, 0xf0, 0xc7, 0xfa, 0x20, 0x00, +0x0c, 0xf3, 0x90, 0xff, 0x00, 0x19, 0x5f, 0xa1, 0x11, 0xf0, 0xc0, 0xfa, 0x20, 0x00, 0x0c, 0xf3, +0x89, 0xff, 0x07, 0x19, 0xf4, 0xf7, 0xec, 0xf9, 0x39, 0x00, 0xff, 0xf7, 0xbf, 0xff, 0x20, 0x00, +0x0c, 0xf3, 0x80, 0xff, 0x00, 0x19, 0x28, 0x21, 0x01, 0x70, 0x46, 0x70, 0x20, 0x00, 0x0c, 0xf3, +0x79, 0xff, 0x07, 0x19, 0xf4, 0xf7, 0xe4, 0xf9, 0x39, 0x00, 0xff, 0xf7, 0xaf, 0xff, 0x20, 0x00, +0x0c, 0xf3, 0x70, 0xff, 0x00, 0x19, 0x2e, 0x21, 0x01, 0x70, 0x46, 0x70, 0x20, 0x00, 0x0c, 0xf3, +0x69, 0xff, 0x07, 0x19, 0xf4, 0xf7, 0xdc, 0xf9, 0x39, 0x00, 0xff, 0xf7, 0x9f, 0xff, 0x20, 0x00, +0x0c, 0xf3, 0x60, 0xff, 0x00, 0x19, 0x48, 0xa1, 0x11, 0xf0, 0x90, 0xfa, 0x20, 0x00, 0x0c, 0xf3, +0x59, 0xff, 0x07, 0x19, 0x03, 0xf0, 0x82, 0xf8, 0x39, 0x00, 0xff, 0xf7, 0x8f, 0xff, 0x20, 0x00, +0x0c, 0xf3, 0x50, 0xff, 0x00, 0x19, 0x28, 0x21, 0x01, 0x70, 0x46, 0x70, 0x20, 0x00, 0x0c, 0xf3, +0x49, 0xff, 0x07, 0x19, 0x03, 0xf0, 0x6f, 0xf8, 0x39, 0x00, 0xff, 0xf7, 0x7f, 0xff, 0x20, 0x00, +0x0c, 0xf3, 0x40, 0xff, 0x00, 0x19, 0x29, 0x21, 0x01, 0x70, 0x46, 0x70, 0x0e, 0xe0, 0x1c, 0xe0, +0x00, 0xe0, 0x0e, 0xe0, 0x0a, 0x2d, 0x51, 0xd0, 0x63, 0x2d, 0x07, 0xd1, 0x34, 0x48, 0x00, 0x78, +0x58, 0x28, 0x03, 0xd1, 0x33, 0x49, 0x20, 0x00, 0x11, 0xf0, 0x60, 0xfa, 0x30, 0x48, 0x05, 0x70, +0xf8, 0xbd, 0x30, 0x49, 0x20, 0x00, 0x24, 0x39, 0x11, 0xf0, 0x58, 0xfa, 0x20, 0x00, 0x0c, 0xf3, +0x21, 0xff, 0x00, 0x19, 0x20, 0x38, 0x86, 0x77, 0xf0, 0xe7, 0x20, 0x00, 0x2a, 0xa1, 0x11, 0xf0, +0x4d, 0xfa, 0x20, 0x00, 0x0c, 0xf3, 0x16, 0xff, 0x01, 0x19, 0x29, 0x48, 0x40, 0x78, 0xff, 0xf7, +0x4d, 0xff, 0x20, 0x00, 0x0c, 0xf3, 0x0e, 0xff, 0x00, 0x19, 0x2e, 0x27, 0x07, 0x70, 0x46, 0x70, +0x20, 0x00, 0x0c, 0xf3, 0x07, 0xff, 0x01, 0x19, 0x21, 0x48, 0x00, 0x78, 0xff, 0xf7, 0x3e, 0xff, +0x20, 0x00, 0x0c, 0xf3, 0xff, 0xfe, 0x00, 0x19, 0x1e, 0xa1, 0x11, 0xf0, 0x2f, 0xfa, 0x20, 0x00, +0x0c, 0xf3, 0xf8, 0xfe, 0x01, 0x19, 0x1e, 0x48, 0x40, 0x78, 0xff, 0xf7, 0x2f, 0xff, 0x20, 0x00, +0x0c, 0xf3, 0xf0, 0xfe, 0x00, 0x19, 0x07, 0x70, 0x46, 0x70, 0x20, 0x00, 0x0c, 0xf3, 0xea, 0xfe, +0x01, 0x19, 0x17, 0x48, 0x00, 0x78, 0xff, 0xf7, 0x21, 0xff, 0xb7, 0xe7, 0x15, 0x49, 0xb2, 0xe7, +0x22, 0x20, 0x70, 0x47, 0x0a, 0x28, 0x01, 0xd2, 0x30, 0x30, 0x00, 0xe0, 0x57, 0x30, 0x00, 0x06, +0x00, 0x0e, 0x70, 0x47, 0x43, 0x68, 0x69, 0x70, 0x52, 0x65, 0x76, 0x3a, 0x00, 0x00, 0x00, 0x00, +0x2c, 0x20, 0x00, 0x00, 0x42, 0x42, 0x3a, 0x00, 0x29, 0x2c, 0x20, 0x52, 0x69, 0xf0, 0xb6, 0xda, +0x01, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x0c, 0xc6, 0x3d, 0x53, +0x46, 0x3a, 0x00, 0x00, 0xb8, 0xf1, 0x00, 0xc0, 0x49, 0x75, 0x02, 0x00, 0x4f, 0x2e, 0x52, 0x2e, +0x3a, 0x00, 0x00, 0x00, 0x65, 0xee, 0x00, 0xc0, 0x20, 0x20, 0x43, 0x61, 0x6c, 0x20, 0x4f, 0x2e, +0x52, 0x2e, 0x3a, 0x00, 0x1e, 0xfa, 0x00, 0xc0, 0x24, 0xee, 0x00, 0xc0, 0x08, 0xe0, 0x03, 0x78, +0x8b, 0x42, 0x08, 0xd0, 0x43, 0x78, 0x80, 0x1c, 0x18, 0x18, 0x43, 0x78, 0xd2, 0x1a, 0x92, 0x1e, +0x02, 0x2a, 0xf4, 0xda, 0x00, 0x20, 0x70, 0x47, 0x04, 0x48, 0xc1, 0x69, 0x00, 0x29, 0xfc, 0xd0, +0x81, 0x6a, 0x04, 0x22, 0x11, 0x43, 0x81, 0x62, 0x70, 0x47, 0x00, 0x00, 0x00, 0x34, 0x00, 0x80, +0x07, 0x48, 0x00, 0x21, 0x10, 0xb5, 0x00, 0x68, 0xc9, 0x43, 0x12, 0xf0, 0x51, 0xfa, 0x00, 0x20, +0x10, 0xbd, 0x03, 0x48, 0x10, 0xb5, 0x00, 0x68, 0x12, 0xf0, 0x51, 0xfa, 0x10, 0xbd, 0x00, 0x00, +0xf8, 0x1c, 0x01, 0xc0, 0x70, 0xb5, 0x11, 0xf0, 0xf9, 0xfb, 0x05, 0x00, 0xff, 0x48, 0xfb, 0xf2, +0x4f, 0xfc, 0x04, 0x00, 0x09, 0xd0, 0x20, 0x00, 0x54, 0x21, 0x08, 0x30, 0x0c, 0xf3, 0xfa, 0xed, +0xfa, 0x48, 0x21, 0x00, 0x0c, 0x30, 0xfb, 0xf2, 0x6d, 0xfc, 0x28, 0x00, 0x11, 0xf0, 0xea, 0xfb, +0x20, 0x00, 0x70, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x11, 0xf0, 0xe0, 0xfb, 0x05, 0x00, 0x00, 0x2c, +0x0d, 0xd0, 0x20, 0x00, 0x54, 0x21, 0x08, 0x30, 0x0c, 0xf3, 0xe4, 0xed, 0xef, 0x48, 0x21, 0x00, +0x0c, 0x30, 0xfb, 0xf2, 0x95, 0xfc, 0x01, 0x00, 0xec, 0x48, 0xfb, 0xf2, 0x53, 0xfc, 0x28, 0x00, +0x11, 0xf0, 0xd0, 0xfb, 0x70, 0xbd, 0x10, 0xb5, 0xf1, 0xf7, 0xdf, 0xf8, 0x00, 0x20, 0x10, 0xbd, +0x70, 0x47, 0x70, 0x47, 0x00, 0x28, 0x03, 0xd0, 0x20, 0x30, 0x40, 0x7e, 0x00, 0x07, 0xc0, 0x0f, +0x70, 0x47, 0x00, 0x28, 0x07, 0xd0, 0x20, 0x30, 0x42, 0x7e, 0xf7, 0x23, 0xc9, 0x07, 0x1a, 0x40, +0x09, 0x0f, 0x0a, 0x43, 0x42, 0x76, 0x70, 0x47, 0x00, 0x28, 0x07, 0xd0, 0x20, 0x30, 0x82, 0x7e, +0xfb, 0x23, 0xc9, 0x07, 0x1a, 0x40, 0x49, 0x0f, 0x0a, 0x43, 0x82, 0x76, 0x70, 0x47, 0x00, 0x28, +0x06, 0xd0, 0xc2, 0x68, 0xc9, 0x07, 0x52, 0x08, 0x52, 0x00, 0xc9, 0x0f, 0x0a, 0x43, 0xc2, 0x60, +0x70, 0x47, 0x00, 0x28, 0x06, 0xd0, 0xc2, 0x68, 0x02, 0x23, 0xc9, 0x07, 0x9a, 0x43, 0x89, 0x0f, +0x0a, 0x43, 0xc2, 0x60, 0x70, 0x47, 0x00, 0x28, 0x06, 0xd0, 0xc2, 0x68, 0x10, 0x23, 0xc9, 0x07, +0x9a, 0x43, 0xc9, 0x0e, 0x0a, 0x43, 0xc2, 0x60, 0x70, 0x47, 0xf8, 0xb5, 0x00, 0x25, 0x0e, 0x00, +0x17, 0x00, 0x2c, 0x00, 0x00, 0x28, 0x24, 0xd0, 0x09, 0x21, 0x89, 0x01, 0x42, 0x18, 0x91, 0x6a, +0x00, 0x29, 0x01, 0xd0, 0x0d, 0x00, 0x08, 0x35, 0x51, 0x6a, 0x00, 0x29, 0x01, 0xd0, 0x0c, 0x00, +0x08, 0x34, 0x33, 0x00, 0x22, 0x00, 0x29, 0x00, 0x00, 0x97, 0xfc, 0xf2, 0xfd, 0xff, 0x00, 0x2e, +0x06, 0xd0, 0x00, 0x2d, 0x04, 0xd0, 0x28, 0x00, 0x48, 0x21, 0x0c, 0x30, 0x0c, 0xf3, 0x72, 0xed, +0x00, 0x2f, 0x06, 0xd0, 0x00, 0x2c, 0x04, 0xd0, 0x20, 0x00, 0x48, 0x21, 0x0c, 0x30, 0x0c, 0xf3, +0x6a, 0xed, 0xf8, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x00, 0x68, 0x00, 0x28, 0x0b, 0xd0, 0x80, 0x6d, +0x00, 0x25, 0x00, 0x28, 0x03, 0xd0, 0xff, 0xf7, 0x6d, 0xff, 0x20, 0x68, 0x85, 0x65, 0x20, 0x68, +0xff, 0xf7, 0x68, 0xff, 0x25, 0x60, 0x70, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x14, 0xf0, 0xe9, 0xfc, +0x20, 0x00, 0x14, 0xf0, 0xbf, 0xfc, 0x21, 0x00, 0x20, 0x31, 0x4b, 0x7e, 0xf7, 0x22, 0x13, 0x40, +0x4b, 0x76, 0xe5, 0x68, 0x04, 0x26, 0xb5, 0x43, 0x21, 0x22, 0xe5, 0x60, 0x12, 0x5c, 0x97, 0x07, +0x0a, 0xd5, 0x09, 0x22, 0x92, 0x01, 0xc5, 0x6f, 0xa2, 0x18, 0x55, 0x62, 0xc0, 0x6f, 0x90, 0x62, +0x08, 0x20, 0x03, 0x43, 0x4b, 0x76, 0x05, 0xe0, 0x10, 0x07, 0x01, 0xd4, 0x90, 0x06, 0x01, 0xd5, +0x35, 0x43, 0xe5, 0x60, 0x20, 0x00, 0x17, 0xf0, 0x86, 0xe8, 0x00, 0x20, 0xf8, 0xbd, 0x10, 0xb5, +0x04, 0x00, 0x02, 0x00, 0x80, 0x34, 0x20, 0x68, 0x00, 0x28, 0x0f, 0xd0, 0xc1, 0x7b, 0x20, 0x32, +0x09, 0x07, 0x09, 0x0f, 0x01, 0x29, 0x0a, 0xd0, 0x02, 0x29, 0x08, 0xd0, 0x03, 0x29, 0x05, 0xd1, +0x50, 0x78, 0xc0, 0x09, 0x02, 0xd1, 0x20, 0x00, 0xff, 0xf7, 0xac, 0xff, 0x10, 0xbd, 0x51, 0x78, +0x0a, 0x07, 0xfb, 0xd4, 0x89, 0x06, 0xf9, 0xd4, 0xff, 0xf7, 0x1c, 0xff, 0x00, 0x20, 0x20, 0x60, +0x10, 0xbd, 0x70, 0xb5, 0x14, 0x00, 0x1d, 0x00, 0x00, 0x29, 0x0a, 0xd0, 0x01, 0x28, 0x09, 0xd0, +0x02, 0x28, 0x01, 0xd0, 0x04, 0x28, 0x04, 0xd1, 0x0a, 0x00, 0x29, 0x00, 0x20, 0x00, 0x0c, 0xf3, +0x5e, 0xec, 0x70, 0xbd, 0x10, 0x22, 0x29, 0x00, 0x20, 0x00, 0x0c, 0xf3, 0x58, 0xec, 0x10, 0x35, +0x20, 0x00, 0x08, 0x22, 0x29, 0x00, 0x10, 0x30, 0x0c, 0xf3, 0x50, 0xec, 0x29, 0x00, 0x08, 0x31, +0x08, 0x22, 0x20, 0x00, 0x18, 0x30, 0xea, 0xe7, 0xff, 0xb5, 0x91, 0xb0, 0x0b, 0x20, 0x0e, 0x00, +0x80, 0x01, 0x11, 0x99, 0x1a, 0x9f, 0x08, 0x18, 0x10, 0x90, 0x00, 0x69, 0x0c, 0x90, 0x00, 0x20, +0x14, 0x00, 0x1d, 0x00, 0x00, 0x2b, 0x0b, 0x90, 0x04, 0xd0, 0xe8, 0x79, 0x00, 0x07, 0x00, 0x0f, +0x20, 0x30, 0xe8, 0x71, 0x00, 0x2c, 0x04, 0xd0, 0xe0, 0x79, 0x00, 0x07, 0x00, 0x0f, 0x20, 0x30, +0xe0, 0x71, 0x00, 0x2f, 0x04, 0xd0, 0xf8, 0x79, 0x00, 0x07, 0x00, 0x0f, 0x20, 0x30, 0xf8, 0x71, +0x21, 0x00, 0xf3, 0x7a, 0x0c, 0x31, 0x0f, 0x91, 0x29, 0x00, 0x0c, 0x31, 0x0e, 0x91, 0x21, 0x00, +0x30, 0x00, 0x40, 0x31, 0x0e, 0x30, 0x0d, 0x91, 0x0c, 0xf3, 0x34, 0xee, 0x05, 0x04, 0x80, 0x80, +0xf5, 0x80, 0x7f, 0x00, 0x07, 0x00, 0x00, 0x2c, 0x77, 0xd0, 0x00, 0x2d, 0xfc, 0xd0, 0xb0, 0x7a, +0x04, 0x28, 0x72, 0xd2, 0x70, 0x7b, 0x31, 0x7b, 0x00, 0x02, 0x08, 0x43, 0x40, 0x07, 0xa0, 0x7a, +0x02, 0xd5, 0x01, 0x21, 0x08, 0x43, 0x01, 0xe0, 0x40, 0x08, 0x40, 0x00, 0xa0, 0x72, 0xe0, 0x79, +0xf1, 0x7a, 0x00, 0x09, 0x09, 0x07, 0x00, 0x01, 0x09, 0x0f, 0x08, 0x43, 0xe0, 0x71, 0x78, 0x78, +0x39, 0x78, 0x00, 0x02, 0x08, 0x43, 0x20, 0x81, 0x03, 0x20, 0xa0, 0x71, 0x0d, 0x98, 0xb2, 0x7a, +0x01, 0x21, 0x40, 0x7a, 0x91, 0x40, 0x08, 0x43, 0x0d, 0x99, 0x0d, 0x22, 0x48, 0x72, 0xb0, 0x7a, +0xb9, 0x1c, 0x03, 0x01, 0x18, 0x1a, 0x00, 0x19, 0x0c, 0x30, 0x0a, 0x90, 0x80, 0x1c, 0x0c, 0xf3, +0xde, 0xeb, 0x78, 0x78, 0x39, 0x78, 0x00, 0x02, 0x08, 0x43, 0x0d, 0x28, 0xe0, 0x7a, 0x06, 0xd1, +0x08, 0x21, 0x08, 0x43, 0xe0, 0x72, 0x0a, 0x99, 0x01, 0x20, 0x48, 0x70, 0x05, 0xe0, 0xf7, 0x21, +0x08, 0x40, 0xe0, 0x72, 0x0a, 0x98, 0x00, 0x21, 0x41, 0x70, 0x0a, 0x99, 0xb0, 0x7a, 0x08, 0x70, +0x70, 0x7b, 0x31, 0x7b, 0x00, 0x02, 0x08, 0x43, 0x00, 0x07, 0x02, 0xd5, 0x0d, 0x98, 0xb1, 0x7a, +0x01, 0x72, 0xa0, 0x7a, 0xc0, 0x07, 0x1f, 0xd0, 0x11, 0x98, 0x01, 0x21, 0xc0, 0x68, 0x02, 0x22, +0x08, 0x43, 0x10, 0x43, 0x11, 0x9a, 0xd0, 0x60, 0xa8, 0x7a, 0xc2, 0x07, 0x30, 0x7a, 0x99, 0xc1, +0x01, 0x00, 0x00, 0x00, 0xfc, 0x02, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x0e, 0x90, 0x3b, 0x7a, +0x02, 0xd0, 0xea, 0x79, 0x12, 0x07, 0x11, 0xd1, 0x08, 0x43, 0xa8, 0x72, 0xe8, 0x79, 0x3f, 0x22, +0x00, 0x09, 0x00, 0x01, 0xe8, 0x71, 0x03, 0x20, 0xa8, 0x71, 0x78, 0x78, 0x39, 0x78, 0x00, 0x02, +0x08, 0x43, 0x28, 0x81, 0x0f, 0x99, 0x0e, 0x98, 0x0c, 0xf3, 0x04, 0xec, 0x15, 0xe2, 0xea, 0xe1, +0x00, 0x2d, 0x0a, 0x90, 0x72, 0xd0, 0x70, 0x7b, 0x31, 0x7b, 0x00, 0x02, 0x08, 0x43, 0x81, 0x07, +0x6c, 0xd5, 0x40, 0x07, 0xa8, 0x7a, 0x02, 0xd5, 0x01, 0x21, 0x08, 0x43, 0x01, 0xe0, 0x40, 0x08, +0x40, 0x00, 0xa8, 0x72, 0xe8, 0x79, 0xf1, 0x7a, 0x00, 0x09, 0x09, 0x07, 0x00, 0x01, 0x09, 0x0f, +0x08, 0x43, 0xe8, 0x71, 0x0a, 0x98, 0x41, 0x7a, 0x02, 0x7a, 0x08, 0x02, 0x10, 0x43, 0x28, 0x81, +0x03, 0x20, 0xa8, 0x71, 0xb1, 0x7a, 0x50, 0x20, 0x41, 0x55, 0x01, 0x21, 0xe9, 0x72, 0xa8, 0x7a, +0xc0, 0x07, 0x54, 0xd0, 0x11, 0x98, 0x03, 0x21, 0xc0, 0x68, 0x08, 0x43, 0x11, 0x99, 0x01, 0xe0, +0xec, 0x8f, 0x02, 0x00, 0xc8, 0x60, 0x00, 0x21, 0x4a, 0x1e, 0x29, 0x86, 0xea, 0x62, 0x11, 0x98, +0x13, 0x23, 0x5b, 0x01, 0xc0, 0x18, 0x01, 0x83, 0x11, 0x98, 0x09, 0x23, 0x9b, 0x01, 0xc0, 0x18, +0x42, 0x63, 0x08, 0x00, 0x11, 0x9b, 0x42, 0x00, 0xd2, 0x18, 0x15, 0x23, 0x5b, 0x01, 0x00, 0x21, +0xd2, 0x18, 0x91, 0x82, 0x4b, 0x1e, 0x11, 0x9a, 0x81, 0x00, 0x89, 0x18, 0x05, 0x22, 0xd2, 0x01, +0x89, 0x18, 0x40, 0x1c, 0x04, 0x28, 0x4b, 0x62, 0xec, 0xdb, 0x00, 0x20, 0x68, 0x63, 0x01, 0x20, +0x28, 0x87, 0x11, 0x98, 0x40, 0x7a, 0x02, 0x28, 0x3a, 0xd1, 0x11, 0x98, 0x14, 0xf0, 0x44, 0xfb, +0x09, 0x90, 0x11, 0x98, 0x14, 0xf0, 0x67, 0xfb, 0x09, 0x99, 0x20, 0x31, 0x49, 0x78, 0x89, 0x06, +0x0d, 0xd5, 0x10, 0x99, 0x09, 0x69, 0x80, 0x31, 0x09, 0x79, 0xc9, 0x07, 0x07, 0xd0, 0x80, 0x30, +0x80, 0x68, 0x00, 0x28, 0x03, 0xd0, 0x01, 0x21, 0x02, 0xe0, 0xdc, 0xe0, 0x12, 0xe0, 0x00, 0x21, +0x11, 0x98, 0x01, 0xf0, 0x77, 0xfe, 0xa8, 0x7a, 0xfd, 0x21, 0x08, 0x40, 0xa8, 0x72, 0x0a, 0x98, +0x0a, 0x9b, 0x41, 0x7a, 0x00, 0x7a, 0x09, 0x02, 0x01, 0x43, 0xf0, 0x7a, 0x0e, 0x9a, 0x0a, 0x33, +0xff, 0xf7, 0xa1, 0xfe, 0x00, 0x2c, 0x69, 0xd0, 0x70, 0x7b, 0x31, 0x7b, 0x00, 0x02, 0x08, 0x43, +0xc1, 0x07, 0x63, 0xd0, 0x40, 0x07, 0xa0, 0x7a, 0x06, 0xd5, 0x01, 0x21, 0x08, 0x43, 0x05, 0xe0, +0xa8, 0x7a, 0x02, 0x21, 0x08, 0x43, 0xe1, 0xe7, 0x40, 0x08, 0x40, 0x00, 0xa0, 0x72, 0xe0, 0x79, +0xf1, 0x7a, 0x00, 0x09, 0x09, 0x07, 0x00, 0x01, 0x09, 0x0f, 0x08, 0x43, 0xe0, 0x71, 0x0a, 0x98, +0x41, 0x7a, 0x02, 0x7a, 0x08, 0x02, 0x10, 0x43, 0x20, 0x81, 0x03, 0x20, 0xa0, 0x71, 0x0d, 0x99, +0xb0, 0x7a, 0x08, 0x74, 0xe0, 0x7a, 0x02, 0x21, 0x08, 0x43, 0xe0, 0x72, 0xa0, 0x7a, 0xc0, 0x07, +0x2a, 0xd0, 0x70, 0x7b, 0x31, 0x7b, 0x00, 0x02, 0x08, 0x43, 0x80, 0x06, 0x14, 0xd5, 0x0a, 0x99, +0x20, 0x00, 0x0a, 0x78, 0x20, 0x30, 0x02, 0x74, 0x49, 0x78, 0x41, 0x74, 0x0a, 0x99, 0x04, 0x22, +0x89, 0x1c, 0x0c, 0x30, 0x0c, 0xf3, 0xcc, 0xea, 0x20, 0x8e, 0x00, 0x28, 0x04, 0xd1, 0xe0, 0x6a, +0x00, 0x28, 0x01, 0xd1, 0x40, 0x1e, 0xe0, 0x62, 0x70, 0x7b, 0x31, 0x7b, 0x00, 0x02, 0x08, 0x43, +0xc0, 0x06, 0x03, 0xd5, 0x00, 0x20, 0x60, 0x63, 0x01, 0x20, 0x20, 0x87, 0x11, 0x98, 0x03, 0x21, +0xc0, 0x68, 0x08, 0x43, 0x11, 0x99, 0xc8, 0x60, 0x0c, 0x98, 0x80, 0x30, 0x00, 0x79, 0xc0, 0x07, +0x01, 0xd1, 0x01, 0x20, 0x0b, 0x90, 0x0a, 0x98, 0x0a, 0x9b, 0x41, 0x7a, 0x00, 0x7a, 0x09, 0x02, +0x01, 0x43, 0xf0, 0x7a, 0x0f, 0x9a, 0x0a, 0x33, 0xff, 0xf7, 0x35, 0xfe, 0x00, 0x2f, 0x7d, 0xd0, +0x70, 0x7b, 0x31, 0x7b, 0x00, 0x02, 0x08, 0x43, 0x41, 0x05, 0x77, 0xd5, 0x40, 0x07, 0xb8, 0x7a, +0x02, 0xd5, 0x01, 0x21, 0x08, 0x43, 0x01, 0xe0, 0x40, 0x08, 0x40, 0x00, 0xb8, 0x72, 0xf8, 0x79, +0xf1, 0x7a, 0x00, 0x09, 0x09, 0x07, 0x00, 0x01, 0x09, 0x0f, 0x08, 0x43, 0xf8, 0x71, 0x0a, 0x98, +0x41, 0x7a, 0x02, 0x7a, 0x08, 0x02, 0x10, 0x43, 0x38, 0x81, 0x03, 0x20, 0xb8, 0x71, 0xb1, 0x7a, +0x50, 0x20, 0xc1, 0x55, 0xf8, 0x7a, 0x40, 0x21, 0x08, 0x43, 0xf8, 0x72, 0xb8, 0x7a, 0xc0, 0x07, +0x24, 0xd0, 0x70, 0x7b, 0x31, 0x7b, 0x00, 0x02, 0x08, 0x43, 0x80, 0x06, 0x14, 0xd5, 0x0a, 0x99, +0x38, 0x00, 0x0a, 0x78, 0x20, 0x30, 0x02, 0x74, 0x49, 0x78, 0x41, 0x74, 0x0a, 0x99, 0x04, 0x22, +0x89, 0x1c, 0x0c, 0x30, 0x0c, 0xf3, 0x64, 0xea, 0x38, 0x8e, 0x00, 0x28, 0x04, 0xd1, 0xf8, 0x6a, +0x00, 0x28, 0x01, 0xd1, 0x40, 0x1e, 0xf8, 0x62, 0x70, 0x7b, 0x31, 0x7b, 0x00, 0x02, 0x08, 0x43, +0xc0, 0x06, 0x03, 0xd5, 0x00, 0x20, 0x78, 0x63, 0x01, 0x20, 0x38, 0x87, 0x0a, 0x98, 0x0a, 0x9b, +0x41, 0x7a, 0x00, 0x7a, 0x09, 0x02, 0x01, 0x43, 0x3a, 0x00, 0xf0, 0x7a, 0x0a, 0x33, 0x0c, 0x32, +0xff, 0xf7, 0xd9, 0xfd, 0xbd, 0xe0, 0x00, 0x21, 0x09, 0x90, 0x05, 0xa8, 0x0a, 0x91, 0xff, 0xa7, +0x8e, 0xcf, 0x8e, 0xc0, 0x00, 0x21, 0x0a, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x01, 0xa8, 0x8e, 0xc0, +0x70, 0x7b, 0x31, 0x7b, 0x00, 0x02, 0x08, 0x43, 0x81, 0x07, 0x00, 0xd5, 0x0a, 0x95, 0xc0, 0x07, +0x00, 0xd0, 0x0a, 0x94, 0x0a, 0x98, 0x00, 0x28, 0x7d, 0xd0, 0x0a, 0x98, 0x80, 0x7a, 0xc0, 0x07, +0x12, 0xd0, 0x0a, 0x98, 0x00, 0x6d, 0x00, 0x28, 0x07, 0xd1, 0x00, 0xe0, 0x96, 0xe0, 0xff, 0xf7, +0xb3, 0xfc, 0x0a, 0x99, 0x00, 0x28, 0x08, 0x65, 0x06, 0xd0, 0x0a, 0x98, 0x0a, 0x99, 0x00, 0x6d, +0x54, 0x22, 0x08, 0x30, 0x0c, 0xf3, 0x7e, 0xea, 0x11, 0x99, 0x01, 0x24, 0x49, 0x7a, 0x20, 0x00, +0x02, 0x29, 0x00, 0xd0, 0x00, 0x20, 0x71, 0x7b, 0x32, 0x7b, 0x09, 0x02, 0x11, 0x43, 0x89, 0x07, +0x1f, 0xd5, 0x00, 0x28, 0x09, 0xd0, 0x11, 0x98, 0x10, 0x21, 0xc0, 0x68, 0x6b, 0x46, 0x08, 0x43, +0x11, 0x99, 0xc8, 0x60, 0x18, 0x7d, 0x40, 0x1c, 0x18, 0x75, 0x0a, 0x98, 0x05, 0x21, 0xc1, 0x72, +0x11, 0x99, 0x0a, 0x98, 0xff, 0x31, 0x06, 0x22, 0x4a, 0x31, 0x0c, 0xf3, 0xf2, 0xe9, 0x11, 0x98, +0x11, 0x9a, 0xc0, 0x68, 0x02, 0x21, 0x20, 0x43, 0x08, 0x43, 0xd0, 0x60, 0x0a, 0x98, 0x20, 0x30, +0x41, 0x73, 0x70, 0x7b, 0x31, 0x7b, 0x00, 0x02, 0x08, 0x43, 0xc0, 0x07, 0x0b, 0xd0, 0x0a, 0x99, +0x12, 0x20, 0xc8, 0x72, 0x0a, 0x98, 0x06, 0x21, 0x0c, 0xf3, 0x76, 0xea, 0x0a, 0x98, 0x20, 0x30, +0x44, 0x73, 0x01, 0x20, 0x0b, 0x90, 0x0a, 0x98, 0xf1, 0x7a, 0xc0, 0x79, 0x09, 0x07, 0x00, 0x09, +0x00, 0x01, 0x09, 0x0f, 0x08, 0x43, 0x0a, 0x99, 0xc8, 0x71, 0x0a, 0x98, 0x03, 0x21, 0x81, 0x71, +0x09, 0x98, 0x41, 0x7c, 0x02, 0x7c, 0x08, 0x02, 0x0a, 0x99, 0x10, 0x43, 0x08, 0x81, 0x09, 0x99, +0x10, 0x22, 0x01, 0xa8, 0x10, 0xf0, 0x70, 0xfd, 0x00, 0x28, 0x0d, 0xd1, 0x0a, 0x98, 0x10, 0x22, +0x2e, 0x30, 0x05, 0xa9, 0x0c, 0xf3, 0xb4, 0xe9, 0x0a, 0x98, 0x10, 0x22, 0x76, 0x3a, 0x15, 0xc5, +0x01, 0x00, 0x00, 0x00, 0xf8, 0x06, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x5d, 0x4a, 0xe8, 0x16, +0x3e, 0x30, 0x05, 0xa9, 0x0c, 0xf3, 0xae, 0xe9, 0x0c, 0xe0, 0x35, 0xe0, 0x0a, 0x98, 0x09, 0x99, +0x10, 0x22, 0x2e, 0x30, 0xfe, 0xf2, 0x86, 0xfd, 0x0a, 0x98, 0x09, 0x99, 0x10, 0x22, 0x3e, 0x30, +0xfe, 0xf2, 0x80, 0xfd, 0x0a, 0x98, 0xb1, 0x7a, 0x01, 0x73, 0x09, 0x99, 0x0a, 0x98, 0x10, 0x22, +0x12, 0x31, 0x1d, 0x30, 0x0c, 0xf3, 0x96, 0xe9, 0x09, 0x99, 0x0a, 0x98, 0x10, 0x22, 0x22, 0x31, +0x0d, 0x30, 0x0c, 0xf3, 0x90, 0xe9, 0x0a, 0x98, 0x0a, 0x99, 0x80, 0x7a, 0x20, 0x43, 0x88, 0x72, +0x0b, 0x98, 0x00, 0x28, 0x03, 0xd0, 0x11, 0x98, 0x00, 0x21, 0xfd, 0xf7, 0xf3, 0xfa, 0xfc, 0xf7, +0x26, 0xfd, 0x00, 0x2d, 0x05, 0xd0, 0xa8, 0x7a, 0xc0, 0x07, 0x02, 0xd0, 0x11, 0x98, 0x16, 0xf0, +0x6e, 0xed, 0x00, 0x20, 0x15, 0xb0, 0xf0, 0xbd, 0x01, 0x20, 0xfb, 0xe7, 0xf7, 0xb5, 0x82, 0xb0, +0x00, 0x27, 0x02, 0x98, 0x3e, 0x00, 0x01, 0x97, 0x14, 0xf0, 0x78, 0xf9, 0x02, 0x99, 0x02, 0x9a, +0x4b, 0x7a, 0x09, 0x21, 0x89, 0x01, 0x54, 0x18, 0x02, 0x2b, 0x2a, 0xd1, 0x05, 0x00, 0x20, 0x30, +0x40, 0x78, 0xc1, 0x09, 0x03, 0xd1, 0x01, 0x07, 0x01, 0xd4, 0x80, 0x06, 0x39, 0xd5, 0x2f, 0x00, +0x80, 0x37, 0x38, 0x68, 0x00, 0x28, 0x04, 0xd1, 0xff, 0xf7, 0xe8, 0xfb, 0x00, 0x28, 0x38, 0x60, +0x0e, 0xd0, 0x3f, 0x68, 0x67, 0x62, 0x02, 0x98, 0x08, 0x37, 0x01, 0xf0, 0xc1, 0xfc, 0x00, 0x28, +0x0a, 0xd0, 0xff, 0xf7, 0xdb, 0xfb, 0x85, 0x21, 0x89, 0x00, 0x00, 0x28, 0x48, 0x51, 0x03, 0xd1, +0x00, 0x20, 0xc0, 0x43, 0x05, 0xb0, 0xf0, 0xbd, 0xff, 0x35, 0xff, 0x35, 0xad, 0x1c, 0x68, 0x69, +0x12, 0xe0, 0x60, 0x6a, 0x00, 0x28, 0x04, 0xd1, 0xff, 0xf7, 0xc8, 0xfb, 0x00, 0x28, 0x60, 0x62, +0x01, 0xd0, 0x67, 0x6a, 0x08, 0x37, 0x02, 0x98, 0x01, 0xf0, 0xa2, 0xfc, 0x00, 0x28, 0x01, 0xd1, +0xe0, 0x6a, 0x02, 0xe0, 0xff, 0xf7, 0xba, 0xfb, 0xe0, 0x62, 0x00, 0x28, 0x01, 0xd0, 0x08, 0x30, +0x01, 0x90, 0xa0, 0x6a, 0x00, 0x28, 0x04, 0xd1, 0xff, 0xf7, 0xb0, 0xfb, 0x00, 0x28, 0xa0, 0x62, +0x01, 0xd0, 0xa6, 0x6a, 0x08, 0x36, 0x01, 0x9a, 0x00, 0x92, 0x04, 0x99, 0x02, 0x98, 0x33, 0x00, +0x3a, 0x00, 0xff, 0xf7, 0xc5, 0xfc, 0xcd, 0xe7, 0x70, 0xb5, 0x05, 0x00, 0x0c, 0x00, 0x00, 0x26, +0x08, 0x1d, 0x0a, 0xf0, 0x50, 0xf8, 0x00, 0x28, 0x15, 0xd1, 0x20, 0x1d, 0x0a, 0xf0, 0x3c, 0xf8, +0x00, 0x28, 0x10, 0xd1, 0xb1, 0x20, 0x80, 0x00, 0x29, 0x18, 0x06, 0x22, 0x20, 0x1d, 0x10, 0xf0, +0xad, 0xfc, 0x00, 0x28, 0x07, 0xd0, 0x20, 0x1d, 0x14, 0xf0, 0x79, 0xf9, 0x05, 0x00, 0x01, 0xd1, +0x01, 0x20, 0x70, 0xbd, 0x01, 0x26, 0x22, 0x00, 0x31, 0x00, 0x28, 0x00, 0xff, 0xf7, 0x76, 0xff, +0x70, 0xbd, 0xff, 0xb5, 0x89, 0xb0, 0x04, 0x00, 0x1f, 0x00, 0x12, 0x9e, 0x00, 0x2e, 0x77, 0xd0, +0x00, 0x2c, 0xfc, 0xd0, 0x20, 0x00, 0x40, 0x30, 0x08, 0x90, 0x23, 0x38, 0x07, 0x90, 0x10, 0x38, +0x06, 0x90, 0x40, 0x1e, 0x05, 0x90, 0x10, 0x30, 0x04, 0x90, 0x08, 0x30, 0x03, 0x90, 0x38, 0x01, +0xc0, 0x1b, 0x00, 0x19, 0x02, 0x90, 0x20, 0x00, 0x3e, 0x30, 0xff, 0x29, 0x01, 0x90, 0x04, 0xd1, +0xe0, 0x79, 0x00, 0x09, 0x02, 0x28, 0xe2, 0xd0, 0xe8, 0xe0, 0x02, 0x29, 0xfc, 0xd1, 0xff, 0x20, +0x9d, 0x30, 0x30, 0x70, 0x00, 0x0a, 0x70, 0x70, 0x0a, 0x20, 0xb0, 0x70, 0x00, 0x20, 0xf0, 0x70, +0x0b, 0x99, 0x06, 0x22, 0x30, 0x1d, 0x0c, 0xf3, 0xb6, 0xe8, 0xe0, 0x79, 0x00, 0x07, 0x00, 0x0f, +0xf0, 0x72, 0xe0, 0x7a, 0x41, 0x06, 0x02, 0xd5, 0x01, 0x21, 0x89, 0x02, 0x04, 0xe0, 0x80, 0x07, +0x01, 0xd5, 0x01, 0x21, 0x00, 0xe0, 0x02, 0x21, 0x31, 0x73, 0x09, 0x0a, 0x71, 0x73, 0xe0, 0x79, +0x03, 0x07, 0x1b, 0x0f, 0x30, 0x00, 0x19, 0x00, 0x10, 0x30, 0x0c, 0xf3, 0xb8, 0xea, 0x05, 0x04, +0x32, 0x32, 0x32, 0x32, 0x31, 0x00, 0x04, 0x2f, 0x2a, 0xd2, 0xb7, 0x72, 0x08, 0x99, 0x09, 0x7a, +0xb9, 0x42, 0x08, 0xd1, 0x71, 0x7b, 0x32, 0x7b, 0x09, 0x02, 0x11, 0x43, 0x08, 0x22, 0x11, 0x43, +0x31, 0x73, 0x09, 0x0a, 0x71, 0x73, 0x02, 0x99, 0x49, 0x7b, 0x00, 0x29, 0x01, 0xd1, 0x05, 0x21, +0x00, 0xe0, 0x0d, 0x21, 0xb1, 0x73, 0x09, 0x0a, 0xf1, 0x73, 0xf1, 0x7b, 0xb3, 0x7b, 0x0a, 0x02, +0x02, 0x99, 0x1a, 0x43, 0x0e, 0x31, 0x0c, 0xf3, 0x76, 0xe8, 0xf0, 0x78, 0xb2, 0x78, 0x01, 0x02, +0xf0, 0x7b, 0x11, 0x43, 0xb2, 0x7b, 0x00, 0x02, 0x10, 0x43, 0x08, 0x18, 0x80, 0x1c, 0x35, 0xe0, +0x2e, 0xe1, 0x35, 0x00, 0x30, 0x35, 0x03, 0x29, 0x48, 0xd1, 0x21, 0x7b, 0xb1, 0x72, 0x20, 0x21, +0x07, 0x00, 0x81, 0x73, 0x00, 0x20, 0xf8, 0x73, 0x30, 0x00, 0x0e, 0x30, 0x01, 0x99, 0x10, 0x22, +0x00, 0x90, 0x0c, 0xf3, 0x58, 0xe8, 0x30, 0x00, 0x07, 0x99, 0x10, 0x22, 0x20, 0x30, 0x0c, 0xf3, +0x52, 0xe8, 0x06, 0x99, 0x10, 0x22, 0x28, 0x00, 0x0c, 0xf3, 0x4c, 0xe8, 0x01, 0x99, 0x00, 0x98, +0x10, 0x22, 0xfe, 0xf2, 0x27, 0xfc, 0xf0, 0x78, 0xb1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x07, 0xe0, +0x36, 0x5c, 0x36, 0x5c, 0x36, 0x5c, 0x36, 0x5c, 0x36, 0x5c, 0x36, 0x5c, 0x36, 0x5c, 0x36, 0x5c, +0xf9, 0x7b, 0xba, 0x7b, 0x09, 0x02, 0x11, 0x43, 0x40, 0x18, 0x12, 0x30, 0xb0, 0x70, 0x00, 0x0a, +0xf0, 0x70, 0xa0, 0x7a, 0xc0, 0x07, 0x08, 0xd0, 0x70, 0x7b, 0x31, 0x7b, 0x00, 0x02, 0x08, 0x43, +0x04, 0x21, 0x08, 0x43, 0x30, 0x73, 0x00, 0x0a, 0x70, 0x73, 0xf0, 0x78, 0xb1, 0x78, 0x00, 0x02, +0x08, 0x43, 0x00, 0x1d, 0x00, 0x04, 0x00, 0x0c, 0x0d, 0xb0, 0xf0, 0xbd, 0x08, 0x99, 0x0a, 0x7c, +0xb2, 0x72, 0x22, 0x89, 0xb2, 0x75, 0x12, 0x0a, 0xf2, 0x75, 0x22, 0x8e, 0x21, 0x00, 0x13, 0x78, +0xb3, 0x73, 0x52, 0x78, 0xf2, 0x73, 0x04, 0x22, 0x2c, 0x31, 0x0c, 0xf3, 0x0c, 0xe8, 0x00, 0x21, +0x31, 0x75, 0x71, 0x75, 0xe0, 0x79, 0x01, 0x07, 0x30, 0x00, 0x09, 0x0f, 0x18, 0x30, 0x01, 0x29, +0x11, 0xd1, 0x20, 0x21, 0xb1, 0x75, 0x00, 0x21, 0xf1, 0x75, 0x05, 0x99, 0x10, 0x22, 0x0b, 0xf3, +0xfa, 0xef, 0x30, 0x00, 0x04, 0x99, 0x08, 0x22, 0x28, 0x30, 0x0b, 0xf3, 0xf4, 0xef, 0x08, 0x22, +0x03, 0x99, 0x28, 0x00, 0x05, 0xe0, 0x21, 0x89, 0xb1, 0x75, 0x09, 0x0a, 0xf1, 0x75, 0x22, 0x89, +0x05, 0x99, 0x0b, 0xf3, 0xe8, 0xef, 0xf0, 0x78, 0xb2, 0x78, 0x01, 0x02, 0xf0, 0x7d, 0x11, 0x43, +0xb2, 0x7d, 0x00, 0x02, 0x10, 0x43, 0x08, 0x18, 0x0a, 0x30, 0xa7, 0xe7, 0xe0, 0x79, 0x35, 0x1d, +0x00, 0x07, 0x00, 0x0f, 0x30, 0x71, 0x00, 0x0a, 0x70, 0x71, 0xff, 0x20, 0x40, 0x1c, 0x30, 0x70, +0x00, 0x0a, 0x00, 0x22, 0x70, 0x70, 0xb2, 0x70, 0xf2, 0x70, 0xe0, 0x7a, 0x41, 0x06, 0x02, 0xd5, +0x01, 0x20, 0x80, 0x02, 0x04, 0xe0, 0x80, 0x07, 0x01, 0xd5, 0x01, 0x20, 0x00, 0xe0, 0x02, 0x20, +0xa8, 0x70, 0x00, 0x0a, 0xe8, 0x70, 0xe0, 0x79, 0x01, 0x07, 0x1e, 0xd1, 0xa8, 0x1d, 0x04, 0x2f, +0x7e, 0xd2, 0x21, 0x89, 0x29, 0x71, 0x09, 0x0a, 0x69, 0x71, 0x08, 0x99, 0x35, 0x55, 0x87, 0xd9, +0x01, 0x00, 0x00, 0x00, 0xf4, 0x0a, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xa9, 0x25, 0x9d, 0xa2, +0x09, 0x7a, 0xb9, 0x42, 0x02, 0xd1, 0x01, 0x21, 0x41, 0x70, 0x00, 0xe0, 0x42, 0x70, 0x07, 0x70, +0x02, 0x99, 0x22, 0x89, 0x0e, 0x31, 0x80, 0x1c, 0x0b, 0xf3, 0xa6, 0xef, 0xf1, 0x78, 0xb0, 0x78, +0x09, 0x02, 0x01, 0x43, 0x89, 0x1c, 0xb1, 0x70, 0x09, 0x0a, 0xf1, 0x70, 0x41, 0xe0, 0x00, 0x07, +0x00, 0x0f, 0x01, 0x28, 0x13, 0xd1, 0x20, 0x20, 0x28, 0x71, 0x00, 0x20, 0x68, 0x71, 0x05, 0x99, +0x10, 0x22, 0xa8, 0x1d, 0x0b, 0xf3, 0x90, 0xef, 0x28, 0x00, 0x04, 0x99, 0x08, 0x22, 0x16, 0x30, +0x0b, 0xf3, 0x8a, 0xef, 0x08, 0x22, 0x28, 0x00, 0x03, 0x99, 0x1e, 0x30, 0x0a, 0xe0, 0x02, 0x28, +0x01, 0xd0, 0x04, 0x28, 0x09, 0xd1, 0x10, 0x20, 0x28, 0x71, 0x00, 0x20, 0x68, 0x71, 0x05, 0x99, +0x10, 0x22, 0xa8, 0x1d, 0x0b, 0xf3, 0x78, 0xef, 0x1b, 0xe0, 0x03, 0x28, 0x53, 0xd1, 0x20, 0x89, +0x28, 0x71, 0x00, 0x0a, 0x68, 0x71, 0x20, 0x7b, 0xa8, 0x71, 0x01, 0x20, 0xe8, 0x71, 0xaf, 0x1d, +0x07, 0x99, 0x10, 0x22, 0xb8, 0x1c, 0x0b, 0xf3, 0x68, 0xef, 0x38, 0x00, 0x06, 0x99, 0x10, 0x22, +0x12, 0x30, 0x0b, 0xf3, 0x62, 0xef, 0x38, 0x00, 0x01, 0x99, 0x10, 0x22, 0x22, 0x30, 0xfe, 0xf2, +0x3b, 0xfb, 0xa0, 0x7a, 0xc0, 0x07, 0x08, 0xd0, 0xe8, 0x78, 0xa9, 0x78, 0x00, 0x02, 0x08, 0x43, +0x04, 0x21, 0x08, 0x43, 0xa8, 0x70, 0x00, 0x0a, 0xe8, 0x70, 0xf1, 0x78, 0xb2, 0x78, 0x08, 0x02, +0x69, 0x79, 0x10, 0x43, 0x2a, 0x79, 0x09, 0x02, 0x11, 0x43, 0x40, 0x18, 0x80, 0x1d, 0x02, 0x0a, +0xb0, 0x70, 0x00, 0x1d, 0x05, 0x04, 0xf2, 0x70, 0xe0, 0x79, 0x2d, 0x0c, 0x00, 0x07, 0x18, 0xd0, +0x74, 0x19, 0x00, 0xe0, 0x17, 0xe0, 0xff, 0x21, 0x21, 0x31, 0x21, 0x70, 0x09, 0x0a, 0x61, 0x70, +0x06, 0x21, 0xa1, 0x70, 0x00, 0x21, 0xe1, 0x70, 0x0b, 0x99, 0x06, 0x22, 0x20, 0x1d, 0x0b, 0xf3, +0x2c, 0xef, 0xe1, 0x78, 0xa2, 0x78, 0x08, 0x02, 0x10, 0x43, 0x2d, 0x1d, 0x40, 0x19, 0x05, 0x04, +0x2d, 0x0c, 0x28, 0x00, 0x02, 0xe7, 0x00, 0x20, 0x00, 0xe7, 0xff, 0xb5, 0x81, 0xb0, 0x00, 0x25, +0x01, 0x98, 0x0a, 0x9e, 0xc0, 0x79, 0x00, 0x07, 0x18, 0xd1, 0x04, 0x2b, 0x16, 0xd3, 0x01, 0x9f, +0x00, 0x24, 0x40, 0x37, 0x01, 0x20, 0x79, 0x7a, 0xa0, 0x40, 0x01, 0x42, 0x0a, 0xd0, 0x23, 0x06, +0x01, 0xa8, 0x00, 0x96, 0x07, 0xc8, 0x1b, 0x0e, 0xff, 0xf7, 0x1d, 0xfe, 0x36, 0x18, 0x28, 0x18, +0x05, 0x04, 0x2d, 0x0c, 0x64, 0x1c, 0x04, 0x2c, 0xec, 0xdb, 0x05, 0xe0, 0x01, 0xa8, 0x00, 0x96, +0x07, 0xc8, 0xff, 0xf7, 0x10, 0xfe, 0x05, 0x00, 0x28, 0x00, 0xb5, 0xe5, 0xff, 0xb5, 0x83, 0xb0, +0x00, 0x24, 0x05, 0x00, 0x1e, 0x00, 0xc0, 0x68, 0x0d, 0x9f, 0x40, 0x05, 0x1d, 0xd5, 0x28, 0x7a, +0x01, 0x28, 0x1a, 0xd0, 0x02, 0x28, 0x18, 0xd1, 0x28, 0x00, 0x13, 0xf0, 0xf1, 0xfe, 0x05, 0x99, +0x00, 0x29, 0x12, 0xd1, 0x00, 0x28, 0x10, 0xd0, 0x80, 0x30, 0x00, 0x68, 0x00, 0x28, 0x0c, 0xd0, +0xf1, 0x07, 0x3f, 0xd0, 0xb1, 0x21, 0x89, 0x00, 0x6a, 0x18, 0x04, 0x99, 0x08, 0x30, 0x00, 0x23, +0x00, 0x97, 0xff, 0xf7, 0xe8, 0xfd, 0x04, 0x00, 0x34, 0xe0, 0x28, 0x00, 0xff, 0x30, 0x4a, 0x30, +0x02, 0x90, 0x09, 0x20, 0x80, 0x01, 0xb1, 0x07, 0x2d, 0x18, 0x00, 0x29, 0x0b, 0xda, 0xa8, 0x6a, +0x00, 0x28, 0x08, 0xd0, 0x0c, 0x9b, 0x02, 0x9a, 0x04, 0x99, 0x08, 0x30, 0x00, 0x97, 0xff, 0xf7, +0x9c, 0xff, 0x3f, 0x18, 0x04, 0x00, 0xf0, 0x07, 0x0d, 0xd0, 0x68, 0x6a, 0x00, 0x28, 0x0a, 0xd0, +0x0c, 0x9b, 0x02, 0x9a, 0x04, 0x99, 0x08, 0x30, 0x00, 0x97, 0xff, 0xf7, 0x8e, 0xff, 0x3f, 0x18, +0x20, 0x18, 0x04, 0x04, 0x24, 0x0c, 0x70, 0x05, 0x0c, 0xd5, 0xe8, 0x6a, 0x00, 0x28, 0x09, 0xd0, +0x0c, 0x9b, 0x02, 0x9a, 0x04, 0x99, 0x08, 0x30, 0x00, 0x97, 0xff, 0xf7, 0x7e, 0xff, 0x20, 0x18, +0x04, 0x04, 0x24, 0x0c, 0x20, 0x00, 0x07, 0xb0, 0xf0, 0xbd, 0xff, 0xb5, 0x87, 0xb0, 0xff, 0x21, +0x00, 0x26, 0x1f, 0x00, 0x08, 0x9c, 0xcd, 0x4b, 0x35, 0x00, 0x30, 0x00, 0x06, 0x2c, 0x05, 0x96, +0x07, 0xd2, 0x02, 0x00, 0x07, 0x98, 0x01, 0x97, 0x00, 0x91, 0xff, 0xf7, 0x8f, 0xff, 0x06, 0x00, +0x7b, 0xe0, 0x14, 0x00, 0x71, 0xe0, 0xc5, 0x48, 0x04, 0x90, 0xff, 0x20, 0x03, 0x90, 0x00, 0x20, +0x02, 0x90, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0xc1, 0x1f, 0xf9, 0x39, 0x0f, 0xd1, +0x03, 0x99, 0x01, 0x97, 0x00, 0x91, 0xe1, 0x79, 0xa0, 0x79, 0x0b, 0x02, 0x03, 0x43, 0x02, 0x9a, +0x07, 0x98, 0x00, 0x21, 0xff, 0xf7, 0x72, 0xff, 0x05, 0x00, 0x3f, 0x18, 0x30, 0x18, 0x44, 0xe0, +0x01, 0x00, 0xff, 0x39, 0x9d, 0x39, 0x42, 0xd1, 0x07, 0x98, 0x06, 0x90, 0xe0, 0x78, 0xa1, 0x78, +0x00, 0x02, 0x08, 0x43, 0x06, 0x28, 0x29, 0xd3, 0x20, 0x1d, 0x09, 0xf0, 0x9e, 0xfd, 0x00, 0x28, +0x14, 0xd1, 0x20, 0x1d, 0x09, 0xf0, 0x8a, 0xfd, 0x00, 0x28, 0x0f, 0xd1, 0x07, 0x98, 0xb1, 0x21, +0x89, 0x00, 0x41, 0x18, 0x06, 0x22, 0x20, 0x1d, 0x10, 0xf0, 0xfa, 0xf9, 0x00, 0x28, 0x05, 0xd0, +0x20, 0x1d, 0x13, 0xf0, 0xc6, 0xfe, 0x06, 0x90, 0x01, 0x20, 0x02, 0x90, 0xe1, 0x78, 0xa2, 0x78, +0x08, 0x02, 0x10, 0x43, 0x0a, 0x28, 0x09, 0xd3, 0xa0, 0x7a, 0x03, 0x90, 0x62, 0x7b, 0x23, 0x7b, +0x9e, 0x48, 0x11, 0x02, 0x19, 0x43, 0x00, 0xd0, 0x08, 0x00, 0x04, 0x90, 0x06, 0x98, 0x00, 0x28, +0x09, 0xd0, 0x03, 0x99, 0x01, 0x97, 0x00, 0x91, 0x04, 0x9b, 0x02, 0x9a, 0x06, 0x98, 0x02, 0x21, +0xff, 0xf7, 0x2c, 0xff, 0x05, 0x00, 0x7f, 0x19, 0x70, 0x19, 0x06, 0x04, 0x36, 0x0c, 0xe0, 0x78, +0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x05, 0x99, 0x83, 0x00, 0x09, 0x1d, 0x41, 0x18, 0x09, 0x04, +0x09, 0x0c, 0x18, 0x18, 0x04, 0x19, 0x14, 0x34, 0x05, 0x91, 0x08, 0x99, 0x05, 0x98, 0x88, 0x42, +0x03, 0xd2, 0x19, 0x20, 0x80, 0x01, 0x86, 0x42, 0x85, 0xd3, 0x30, 0x00, 0x0b, 0xb0, 0xf0, 0xbd, +0x70, 0xb5, 0x06, 0x00, 0x04, 0x68, 0x08, 0x34, 0xe0, 0x79, 0x03, 0x07, 0x1b, 0x0f, 0x93, 0x42, +0x01, 0xd0, 0x01, 0x20, 0x70, 0xbd, 0x00, 0x07, 0x12, 0xd1, 0x04, 0x29, 0x10, 0xd2, 0x25, 0x00, +0x40, 0x35, 0x01, 0x22, 0x68, 0x7a, 0x8a, 0x40, 0x90, 0x43, 0x68, 0x72, 0x08, 0x01, 0x40, 0x1a, +0x00, 0x19, 0x0c, 0x30, 0x0f, 0x21, 0x0b, 0xf3, 0xae, 0xee, 0x68, 0x7a, 0x00, 0x28, 0x04, 0xd1, +0x30, 0x68, 0xff, 0xf7, 0x8d, 0xf8, 0x00, 0x20, 0x30, 0x60, 0x00, 0x20, 0x70, 0xbd, 0xff, 0xb5, +0x81, 0xb0, 0x04, 0x00, 0x00, 0x20, 0x1d, 0x00, 0x0a, 0x9f, 0x00, 0x90, 0xe0, 0x68, 0x00, 0x26, +0x40, 0x05, 0x00, 0x28, 0x27, 0xda, 0x20, 0x7a, 0x01, 0x28, 0x24, 0xd0, 0x02, 0x28, 0x01, 0xd0, +0x03, 0x28, 0x20, 0xd1, 0x20, 0x00, 0x13, 0xf0, 0xd3, 0xfd, 0x21, 0x7a, 0x03, 0x29, 0x02, 0xd1, +0x61, 0x7a, 0x02, 0x29, 0x17, 0xd1, 0x00, 0x2f, 0x15, 0xd1, 0x00, 0x28, 0x13, 0xd0, 0x80, 0x30, +0x07, 0x00, 0x00, 0x68, 0x00, 0x28, 0x0e, 0xd0, 0xe9, 0x07, 0x4c, 0xd0, 0xf2, 0xf4, 0x80, 0x7e, +0x01, 0x00, 0x00, 0x00, 0xf0, 0x0e, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xfa, 0xff, 0x4e, 0xce, +0xc1, 0x7b, 0x0a, 0x07, 0x03, 0x99, 0x12, 0x0f, 0x8a, 0x42, 0x02, 0xd0, 0x03, 0x99, 0xff, 0x29, +0x43, 0xd1, 0xff, 0xf7, 0x57, 0xf8, 0x3e, 0x60, 0x3f, 0xe0, 0x09, 0x21, 0x02, 0x98, 0x89, 0x01, +0x67, 0x18, 0xff, 0x28, 0x15, 0xd1, 0x57, 0x48, 0x85, 0x42, 0x12, 0xd1, 0xb8, 0x6a, 0x00, 0x28, +0x02, 0xd0, 0xff, 0xf7, 0x47, 0xf8, 0xbe, 0x62, 0x78, 0x6a, 0x00, 0x28, 0x02, 0xd0, 0xff, 0xf7, +0x41, 0xf8, 0x7e, 0x62, 0xf8, 0x6a, 0x00, 0x28, 0x27, 0xd0, 0xff, 0xf7, 0x3b, 0xf8, 0xfe, 0x62, +0x23, 0xe0, 0xb8, 0x6a, 0x00, 0x28, 0x08, 0xd0, 0xa8, 0x07, 0x06, 0xd5, 0x4d, 0x20, 0xc0, 0x00, +0x03, 0x9a, 0x02, 0x99, 0x20, 0x18, 0xff, 0xf7, 0x7d, 0xff, 0x78, 0x6a, 0x00, 0x28, 0x08, 0xd0, +0xe8, 0x07, 0x06, 0xd0, 0x99, 0x20, 0x80, 0x00, 0x03, 0x9a, 0x02, 0x99, 0x20, 0x18, 0xff, 0xf7, +0x71, 0xff, 0xf8, 0x6a, 0x00, 0x28, 0x08, 0xd0, 0x68, 0x05, 0x06, 0xd5, 0x9b, 0x20, 0x80, 0x00, +0x03, 0x9a, 0x02, 0x99, 0x20, 0x18, 0xff, 0xf7, 0x65, 0xff, 0x00, 0x98, 0x26, 0xe4, 0xf7, 0xb5, +0x86, 0xb0, 0x00, 0x27, 0x07, 0x98, 0x3e, 0x00, 0x06, 0x28, 0x64, 0xd3, 0x14, 0x00, 0x5e, 0xe0, +0xff, 0x20, 0x04, 0x90, 0x03, 0x90, 0x00, 0x20, 0x02, 0x90, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, +0x08, 0x43, 0x30, 0x4d, 0xc1, 0x1f, 0xf9, 0x39, 0x01, 0xd1, 0x01, 0x26, 0x43, 0xe0, 0x01, 0x00, +0xff, 0x39, 0x9d, 0x39, 0x3f, 0xd1, 0x06, 0x98, 0x05, 0x90, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, +0x08, 0x43, 0x06, 0x28, 0x2b, 0xd3, 0x20, 0x1d, 0x09, 0xf0, 0x89, 0xfc, 0x00, 0x28, 0x14, 0xd1, +0x20, 0x1d, 0x09, 0xf0, 0x75, 0xfc, 0x00, 0x28, 0x0f, 0xd1, 0x06, 0x98, 0xb1, 0x21, 0x89, 0x00, +0x41, 0x18, 0x06, 0x22, 0x20, 0x1d, 0x10, 0xf0, 0xe5, 0xf8, 0x00, 0x28, 0x05, 0xd0, 0x20, 0x1d, +0x13, 0xf0, 0xb1, 0xfd, 0x05, 0x90, 0x01, 0x20, 0x02, 0x90, 0xe1, 0x78, 0xa2, 0x78, 0x08, 0x02, +0x10, 0x43, 0x0a, 0x28, 0x0b, 0xd3, 0xa0, 0x7a, 0x04, 0x90, 0xe0, 0x7a, 0x03, 0x90, 0x61, 0x7b, +0x20, 0x7b, 0x0d, 0x02, 0x05, 0x43, 0x12, 0x48, 0x05, 0x40, 0x00, 0xd1, 0x11, 0x4d, 0x05, 0x98, +0x00, 0x28, 0x08, 0xd0, 0x02, 0x9a, 0x00, 0x92, 0x03, 0x9a, 0x04, 0x99, 0x05, 0x98, 0x2b, 0x00, +0xff, 0xf7, 0x2f, 0xff, 0x06, 0x43, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x3f, 0x1d, +0xc1, 0x19, 0x83, 0x00, 0x0f, 0x04, 0x18, 0x18, 0x3f, 0x0c, 0x04, 0x19, 0x14, 0x34, 0x07, 0x98, +0x87, 0x42, 0x9d, 0xd3, 0x00, 0xe0, 0x01, 0x26, 0x30, 0x00, 0x09, 0xb0, 0xf0, 0xbd, 0x00, 0x00, +0x03, 0x04, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x70, 0xb5, 0x0c, 0x00, 0x10, 0xf0, 0x7e, 0xfb, +0x05, 0x00, 0x00, 0x2c, 0x15, 0xd0, 0x20, 0x00, 0x13, 0xf0, 0xf4, 0xfc, 0x00, 0x28, 0x10, 0xd0, +0x0d, 0x21, 0x89, 0x01, 0x40, 0x18, 0x02, 0x79, 0x00, 0x21, 0x01, 0x2a, 0x0a, 0xd0, 0x02, 0x2a, +0x04, 0xd1, 0x01, 0x71, 0xc1, 0x60, 0x20, 0x00, 0x00, 0xf0, 0x6b, 0xf8, 0x28, 0x00, 0x10, 0xf0, +0x69, 0xfb, 0x70, 0xbd, 0x01, 0x71, 0xf9, 0xe7, 0x3e, 0xb5, 0xff, 0x22, 0x04, 0x00, 0x06, 0x21, +0x01, 0xa8, 0x10, 0xf0, 0xac, 0xe8, 0x00, 0x22, 0x00, 0x92, 0x20, 0x00, 0x0e, 0x23, 0x01, 0xaa, +0x01, 0xa9, 0xf5, 0xf7, 0x7d, 0xf9, 0x10, 0xf0, 0x51, 0xfb, 0x05, 0x00, 0xe1, 0x7a, 0xa0, 0x7a, +0x13, 0xf0, 0xff, 0xfc, 0x07, 0xe0, 0x20, 0x00, 0x16, 0xf0, 0xb0, 0xe8, 0xe2, 0x7a, 0xa1, 0x7a, +0x20, 0x00, 0xfb, 0xf7, 0x1e, 0xf9, 0x04, 0x00, 0xf5, 0xd1, 0x28, 0x00, 0x10, 0xf0, 0x42, 0xfb, +0x3e, 0xbd, 0xf1, 0xb5, 0x82, 0xb0, 0x02, 0x98, 0x13, 0xf0, 0xb4, 0xfc, 0x0d, 0x21, 0x89, 0x01, +0x05, 0x00, 0x44, 0x18, 0xa0, 0x68, 0x00, 0x28, 0x28, 0xd0, 0x10, 0xf0, 0x2f, 0xfb, 0x01, 0x90, +0x20, 0x79, 0x35, 0x27, 0x01, 0x26, 0x3f, 0x01, 0x00, 0x28, 0x20, 0xd0, 0x01, 0x28, 0x1a, 0xd1, +0x02, 0x20, 0xe6, 0x60, 0x20, 0x71, 0x20, 0x69, 0xfa, 0xf2, 0x87, 0xfd, 0x00, 0x22, 0x00, 0x92, +0x16, 0x4a, 0x17, 0x48, 0x02, 0x99, 0xeb, 0x19, 0xfa, 0xf2, 0x1c, 0xfd, 0x01, 0x98, 0x10, 0xf0, +0x19, 0xfb, 0x02, 0x98, 0x27, 0x21, 0x16, 0xf0, 0x7e, 0xe8, 0xe0, 0x68, 0x01, 0x04, 0x02, 0x98, +0x09, 0x0c, 0x00, 0xf0, 0x0e, 0xf8, 0x01, 0x98, 0x10, 0xf0, 0x0c, 0xfb, 0xfe, 0xbd, 0x00, 0x22, +0x00, 0x92, 0x0a, 0x4a, 0x0a, 0x48, 0x02, 0x99, 0xeb, 0x19, 0xfa, 0xf2, 0x03, 0xfd, 0x26, 0x71, +0xf1, 0xe7, 0x13, 0xb5, 0x04, 0x00, 0x13, 0xf0, 0x75, 0xfc, 0x06, 0x4b, 0x20, 0x00, 0x1c, 0x68, +0x4c, 0x21, 0x02, 0x23, 0x01, 0xaa, 0xa0, 0x47, 0x1c, 0xbd, 0x00, 0x00, 0x00, 0x87, 0x93, 0x03, +0x79, 0x10, 0x01, 0x00, 0xa8, 0xba, 0x02, 0x00, 0xff, 0xb5, 0xa1, 0xb0, 0x11, 0x00, 0x32, 0x31, +0x10, 0x00, 0x0f, 0x91, 0x11, 0x88, 0x94, 0x1c, 0x22, 0x39, 0x09, 0x04, 0x09, 0x0c, 0x10, 0x91, +0x81, 0x1c, 0x07, 0xa8, 0x1f, 0x00, 0x1e, 0x22, 0x80, 0x1c, 0x11, 0xae, 0x15, 0xad, 0x0b, 0xf3, +0x46, 0xec, 0xa2, 0x7f, 0x07, 0xa9, 0x01, 0x92, 0x00, 0x91, 0x10, 0x9a, 0x22, 0x99, 0x21, 0x98, +0x2b, 0x00, 0xfd, 0xf2, 0x81, 0xff, 0x00, 0x20, 0x0f, 0x21, 0x22, 0x18, 0x20, 0x32, 0x0b, 0x1a, +0x12, 0x78, 0x40, 0x1c, 0x10, 0x28, 0xf2, 0x54, 0xf7, 0xd3, 0x0f, 0x99, 0x00, 0x22, 0x78, 0x1c, +0x03, 0xab, 0x07, 0xc3, 0x3a, 0x00, 0x0f, 0x98, 0x10, 0x99, 0x2b, 0x00, 0x11, 0x32, 0x80, 0x1c, +0x6d, 0x46, 0x07, 0xc5, 0x32, 0x00, 0x21, 0x99, 0x00, 0x20, 0xfd, 0xf2, 0x0d, 0xff, 0x25, 0xb0, +0xf0, 0xbd, 0xf7, 0xb5, 0xa0, 0xb0, 0x8d, 0x1c, 0x00, 0x20, 0x0f, 0x27, 0x0f, 0xac, 0x13, 0xae, +0x2a, 0x18, 0x20, 0x32, 0x3b, 0x1a, 0x12, 0x79, 0x40, 0x1c, 0x10, 0x28, 0xe2, 0x54, 0xf7, 0xd3, +0x08, 0x88, 0x0f, 0x00, 0x82, 0x38, 0x00, 0x04, 0x00, 0x0c, 0x1f, 0x90, 0x88, 0x78, 0x36, 0x37, +0x03, 0x07, 0x00, 0x22, 0x9b, 0x0f, 0x02, 0x2b, 0x03, 0xd1, 0x00, 0x09, 0x08, 0x28, 0x00, 0xd1, +0x01, 0x22, 0x06, 0xa8, 0x0e, 0x92, 0x1e, 0x22, 0x89, 0x1c, 0x80, 0x1c, 0x0b, 0xf3, 0xf6, 0xeb, +0x20, 0x35, 0xaa, 0x78, 0x06, 0xa9, 0x01, 0x92, 0x00, 0x91, 0x1f, 0x9a, 0x20, 0x99, 0x0e, 0x98, +0x33, 0x00, 0xfd, 0xf2, 0x31, 0xff, 0x22, 0x98, 0x39, 0x00, 0x00, 0x22, 0x12, 0x39, 0x40, 0x1c, +0x03, 0xab, 0x07, 0xc3, 0x33, 0x00, 0x22, 0x9a, 0x1f, 0x99, 0x11, 0x32, 0x02, 0x92, 0x01, 0x91, +0x0e, 0x99, 0x22, 0x00, 0x01, 0x20, 0x00, 0x97, 0xfd, 0xf2, 0xc6, 0xfe, 0x01, 0x20, 0x23, 0xb0, +0xf0, 0xbd, 0x7f, 0xb5, 0x04, 0x00, 0x1e, 0x00, 0x55, 0x48, 0x04, 0x60, 0x00, 0x20, 0x11, 0xf0, +0xb7, 0xf8, 0x54, 0x49, 0x01, 0x20, 0x08, 0x60, 0xe0, 0x78, 0x40, 0x21, 0x08, 0x43, 0xe0, 0x70, +0xa0, 0x78, 0x00, 0x22, 0x01, 0x07, 0x15, 0x00, 0x89, 0x0f, 0x02, 0x29, 0x03, 0xd1, 0x00, 0x09, +0x08, 0x28, 0x00, 0xd1, 0x01, 0x25, 0x30, 0x7b, 0xa1, 0x1c, 0x88, 0x77, 0x1e, 0x4a, 0x67, 0x00, +0x01, 0x00, 0x00, 0x00, 0xec, 0x12, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x45, 0x3a, 0x6b, 0x7d, +0x30, 0x00, 0x0c, 0x30, 0xca, 0x77, 0x20, 0x31, 0x06, 0x00, 0xfd, 0xf2, 0x5b, 0xff, 0x6b, 0x46, +0x18, 0x7a, 0x33, 0x00, 0x41, 0x07, 0x49, 0x0f, 0x22, 0x00, 0x28, 0x00, 0xff, 0xf7, 0x4e, 0xff, +0x7f, 0xbd, 0xf7, 0xb5, 0x84, 0xb0, 0x06, 0x00, 0x40, 0x69, 0x01, 0x90, 0x08, 0x00, 0x0f, 0x00, +0x40, 0x30, 0x0b, 0xf3, 0xe0, 0xec, 0x06, 0x9c, 0x02, 0x90, 0xc1, 0x78, 0x0c, 0x34, 0x49, 0x06, +0x50, 0xd5, 0x02, 0x99, 0x09, 0x88, 0x82, 0x29, 0x4c, 0xd9, 0x85, 0x1c, 0x22, 0x21, 0x49, 0x5d, +0x22, 0x78, 0x60, 0x6c, 0x91, 0x42, 0x10, 0xd0, 0x00, 0x28, 0x02, 0xd0, 0x02, 0x7d, 0x8a, 0x42, +0x04, 0xd0, 0x32, 0x49, 0x88, 0x68, 0x40, 0x1c, 0x88, 0x60, 0x3b, 0xe0, 0x2f, 0x49, 0x04, 0x00, +0x48, 0x68, 0x14, 0x34, 0x40, 0x1c, 0x48, 0x60, 0x05, 0xe0, 0x00, 0x28, 0x03, 0xd0, 0xfe, 0xf7, +0x23, 0xfe, 0x00, 0x20, 0x60, 0x64, 0x01, 0x98, 0x40, 0x7a, 0x02, 0x28, 0x01, 0xd1, 0x00, 0x20, +0x00, 0xe0, 0x01, 0x20, 0x00, 0x90, 0x38, 0x00, 0x20, 0x30, 0x03, 0x90, 0x00, 0x7d, 0xc0, 0x06, +0x80, 0x0f, 0x01, 0x28, 0x12, 0xd9, 0x38, 0x00, 0x18, 0x30, 0x0b, 0xf3, 0xa4, 0xec, 0x00, 0x07, +0x0c, 0xd5, 0x2a, 0x00, 0x00, 0x98, 0x24, 0x32, 0x21, 0x00, 0xfd, 0xf2, 0x46, 0xff, 0x00, 0x28, +0x13, 0xd1, 0x1a, 0x49, 0x08, 0x68, 0x40, 0x1c, 0x08, 0x60, 0x0b, 0xe0, 0x2a, 0x00, 0x00, 0x98, +0x24, 0x32, 0x21, 0x00, 0xfd, 0xf2, 0x0d, 0xff, 0x00, 0x28, 0x06, 0xd1, 0x13, 0x48, 0x01, 0x68, +0x49, 0x1c, 0x01, 0x60, 0x00, 0x20, 0x07, 0xb0, 0xf0, 0xbd, 0xb0, 0x88, 0x44, 0x22, 0x22, 0x38, +0xb0, 0x80, 0x03, 0x98, 0x39, 0x00, 0x00, 0x7e, 0x45, 0x07, 0x0d, 0x48, 0x6d, 0x0f, 0x06, 0x60, +0x08, 0x30, 0x0b, 0xf3, 0x36, 0xeb, 0x00, 0x20, 0x11, 0xf0, 0x1c, 0xf8, 0x09, 0x49, 0x01, 0x20, +0x08, 0x60, 0x09, 0x49, 0x06, 0x98, 0x08, 0x60, 0x02, 0x99, 0x22, 0x00, 0x28, 0x00, 0xff, 0xf7, +0x0a, 0xff, 0xe0, 0xe7, 0x10, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x04, 0x94, 0x77, 0x02, 0x00, +0xd0, 0x3d, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x04, 0x14, 0x00, 0x00, 0x04, 0xff, 0xb5, 0x85, 0xb0, +0x04, 0x00, 0x1d, 0x00, 0x8f, 0x48, 0x0e, 0x9f, 0x04, 0x60, 0x00, 0x20, 0x10, 0xf0, 0xfa, 0xff, +0x8d, 0x49, 0x01, 0x20, 0x08, 0x60, 0xe0, 0x78, 0x40, 0x21, 0x08, 0x43, 0xe0, 0x70, 0x28, 0x00, +0x26, 0x00, 0x20, 0x30, 0x01, 0x7e, 0x20, 0x36, 0x31, 0x70, 0x40, 0x7e, 0x29, 0x00, 0x70, 0x70, +0x04, 0x22, 0x34, 0x31, 0x30, 0x1d, 0x0b, 0xf3, 0xfc, 0xea, 0x00, 0x20, 0xb0, 0x70, 0xf0, 0x78, +0x20, 0x21, 0x40, 0x09, 0x40, 0x01, 0x08, 0x43, 0x80, 0x06, 0x80, 0x0e, 0xb9, 0x01, 0x08, 0x43, +0xf0, 0x70, 0x10, 0xf0, 0x7d, 0xf9, 0x06, 0x00, 0x60, 0x88, 0x04, 0x90, 0x21, 0x88, 0x20, 0x00, +0x00, 0x22, 0x28, 0x30, 0x01, 0xab, 0x07, 0xc3, 0x2b, 0x00, 0x00, 0x90, 0x07, 0x9a, 0x04, 0x99, +0x0c, 0x33, 0x20, 0x00, 0xfd, 0xf2, 0xb1, 0xff, 0x20, 0x88, 0x10, 0x30, 0x20, 0x80, 0x30, 0x00, +0x10, 0xf0, 0x6a, 0xf9, 0x28, 0x8f, 0x40, 0x1c, 0x00, 0x04, 0x00, 0x0c, 0x28, 0x87, 0x02, 0xd1, +0x68, 0x6b, 0x40, 0x1c, 0x68, 0x63, 0x09, 0xb0, 0xf0, 0xbd, 0xf8, 0xb5, 0x01, 0x89, 0x43, 0x69, +0x0c, 0x18, 0xe5, 0x6e, 0xe6, 0x6d, 0xe8, 0x79, 0x00, 0x07, 0x00, 0x0f, 0x02, 0x28, 0x0e, 0xd1, +0xb0, 0x79, 0x29, 0x00, 0xc2, 0x07, 0xd2, 0x0f, 0x18, 0x00, 0x11, 0xf0, 0x70, 0xf8, 0x00, 0x90, +0x22, 0x68, 0x2b, 0x00, 0x00, 0x21, 0x30, 0x00, 0xff, 0xf7, 0x98, 0xff, 0x07, 0xe0, 0x03, 0x28, +0x05, 0xd1, 0x22, 0x68, 0x2b, 0x00, 0x00, 0x21, 0x30, 0x00, 0xff, 0xf7, 0xd4, 0xfe, 0x00, 0x20, +0xf8, 0xbd, 0xf7, 0xb5, 0x8c, 0xb0, 0x15, 0x00, 0x0c, 0x98, 0x46, 0x69, 0x0d, 0x98, 0x40, 0x30, +0x0b, 0xf3, 0xe0, 0xeb, 0x04, 0x00, 0x40, 0x88, 0x08, 0xab, 0x09, 0x90, 0x18, 0x79, 0x00, 0x07, +0x80, 0x0f, 0x02, 0x28, 0x0a, 0xd1, 0x0c, 0x98, 0x0c, 0x99, 0x80, 0x88, 0x27, 0x00, 0x10, 0x38, +0x00, 0x04, 0x00, 0x0c, 0x24, 0x37, 0x88, 0x80, 0x60, 0x38, 0x03, 0xe0, 0x20, 0x88, 0x27, 0x00, +0x20, 0x37, 0x10, 0x38, 0x0a, 0x90, 0xf8, 0x78, 0x80, 0x06, 0x52, 0xd5, 0x0a, 0x98, 0x00, 0x28, +0x4f, 0xdd, 0x30, 0x00, 0xfc, 0xf7, 0x80, 0xf9, 0x00, 0x28, 0x4d, 0xd0, 0x0d, 0x98, 0x43, 0x4a, +0x20, 0x30, 0x0b, 0x90, 0x00, 0x7e, 0x41, 0x07, 0x20, 0x00, 0x49, 0x0f, 0x0c, 0x30, 0x0c, 0xf3, +0xd7, 0xf9, 0x3f, 0x49, 0x09, 0x68, 0x88, 0x42, 0x3e, 0xd3, 0x08, 0xab, 0x18, 0x79, 0x07, 0xaa, +0x00, 0x07, 0x80, 0x0f, 0x08, 0xa9, 0x10, 0xd1, 0x9d, 0x20, 0x80, 0x00, 0x30, 0x18, 0x02, 0x92, +0x01, 0x91, 0x00, 0x90, 0xe8, 0x79, 0x39, 0x00, 0x02, 0x07, 0x4f, 0x20, 0xc0, 0x00, 0x33, 0x18, +0x12, 0x0f, 0x01, 0x20, 0xff, 0xf2, 0x72, 0xf8, 0x16, 0xe0, 0x28, 0x00, 0x2c, 0x30, 0x05, 0x92, +0x02, 0x1d, 0x04, 0x91, 0x03, 0x90, 0xe8, 0x79, 0x01, 0x07, 0x0b, 0x98, 0x09, 0x0f, 0x00, 0x7e, +0x02, 0x92, 0x40, 0x07, 0x40, 0x0f, 0x01, 0x91, 0x00, 0x90, 0xa0, 0x78, 0x3a, 0x00, 0x03, 0x09, +0x01, 0x21, 0x30, 0x00, 0xef, 0xf7, 0xbc, 0xf8, 0x00, 0x28, 0x0d, 0xd0, 0x00, 0x2e, 0x08, 0xd0, +0x09, 0x20, 0x80, 0x01, 0x30, 0x18, 0xc0, 0x6b, 0x00, 0x28, 0x02, 0xd0, 0x41, 0x6d, 0x49, 0x1c, +0x41, 0x65, 0x00, 0x20, 0x0f, 0xb0, 0xf0, 0xbd, 0x1e, 0x4e, 0x0c, 0x98, 0x30, 0x60, 0x30, 0x00, +0x0d, 0x99, 0x44, 0x22, 0x08, 0x30, 0x0b, 0xf3, 0x24, 0xea, 0x00, 0x20, 0x10, 0xf0, 0x0a, 0xff, +0x19, 0x49, 0x01, 0x20, 0x08, 0x60, 0x19, 0x48, 0x00, 0x22, 0x05, 0x60, 0x0a, 0x98, 0x03, 0x92, +0x01, 0x04, 0x09, 0x0c, 0x3a, 0x00, 0x08, 0x32, 0x02, 0x91, 0x2b, 0x00, 0x01, 0x97, 0x00, 0x92, +0x32, 0x6c, 0x09, 0x99, 0x0c, 0x33, 0x20, 0x00, 0xfd, 0xf2, 0xae, 0xfe, 0x01, 0x20, 0xd9, 0xe7, +0x10, 0xb5, 0xd3, 0x79, 0x04, 0x00, 0x1b, 0x07, 0x00, 0x20, 0x1b, 0x0f, 0x02, 0x2b, 0x03, 0xd1, +0x20, 0x68, 0xff, 0xf7, 0x56, 0xff, 0x10, 0xbd, 0x03, 0x2b, 0xfc, 0xd1, 0x20, 0x68, 0xff, 0xf7, +0x50, 0xfe, 0x10, 0xbd, 0x10, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x04, 0xac, 0x7b, 0x02, 0x00, +0xdc, 0xba, 0x02, 0x00, 0xd0, 0x3d, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x04, 0x14, 0x00, 0x00, 0x04, +0xf7, 0xb5, 0x82, 0xb0, 0x0e, 0x00, 0x10, 0xf0, 0x73, 0xf8, 0x00, 0x24, 0x37, 0x00, 0x20, 0x37, +0x01, 0x90, 0x18, 0x20, 0x60, 0x43, 0x39, 0x49, 0x0a, 0x5c, 0x00, 0x2a, 0x45, 0xd0, 0x45, 0x18, +0x79, 0x78, 0x68, 0x78, 0x09, 0x09, 0x88, 0x42, 0x3f, 0xd1, 0x28, 0x1d, 0x06, 0x22, 0xb1, 0x1d, +0x0f, 0xf0, 0x82, 0xfd, 0x00, 0x28, 0x38, 0xd1, 0x18, 0x21, 0x61, 0x43, 0x2f, 0x48, 0x2e, 0x00, +0x08, 0x18, 0x00, 0x21, 0x01, 0x73, 0xfa, 0x78, 0xbb, 0x78, 0x0a, 0x36, 0x12, 0x02, 0x30, 0x88, +0x1a, 0x43, 0x01, 0x27, 0x0d, 0x35, 0x12, 0x09, 0x3f, 0x03, 0x90, 0x42, 0x82, 0x24, 0xcd, 0xdf, +0x01, 0x00, 0x00, 0x00, 0xe8, 0x16, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x16, 0xe0, 0xb8, 0x11, +0x19, 0xd1, 0x04, 0x98, 0x00, 0x69, 0x00, 0x28, 0x02, 0xd0, 0x28, 0x78, 0x04, 0x28, 0x12, 0xd3, +0x37, 0x80, 0x29, 0x70, 0x02, 0x98, 0x40, 0x7a, 0x02, 0x28, 0x1b, 0xd1, 0x02, 0x98, 0xf5, 0xf7, +0x12, 0xfb, 0x00, 0x28, 0x07, 0xd0, 0x02, 0x98, 0x00, 0x22, 0xff, 0x30, 0x41, 0x30, 0x01, 0x8a, +0x02, 0x98, 0x15, 0xf0, 0x08, 0xed, 0x30, 0x88, 0xb8, 0x42, 0x0b, 0xd0, 0x28, 0x78, 0x02, 0x28, +0x08, 0xd2, 0x21, 0x06, 0x02, 0x98, 0x09, 0x0e, 0xf1, 0xf7, 0xf1, 0xff, 0x02, 0xe0, 0x64, 0x1c, +0x04, 0x2c, 0xb0, 0xd3, 0x01, 0x98, 0x10, 0xf0, 0x21, 0xf8, 0x05, 0xb0, 0xf0, 0xbd, 0x10, 0xb5, +0x8b, 0x78, 0x01, 0x24, 0x1b, 0x09, 0x05, 0x2b, 0x09, 0xd0, 0x06, 0xdd, 0x0b, 0x2b, 0x0d, 0xd0, +0x0c, 0x2b, 0x02, 0xd1, 0x11, 0x00, 0x15, 0xf0, 0x7e, 0xed, 0x20, 0x00, 0x10, 0xbd, 0x01, 0x7a, +0x02, 0x29, 0xfa, 0xd1, 0x15, 0xf0, 0x7a, 0xed, 0x00, 0x24, 0xf6, 0xe7, 0x20, 0x31, 0x4a, 0x79, +0x0b, 0x79, 0x11, 0x02, 0x19, 0x43, 0xf0, 0xd0, 0x15, 0xf0, 0x74, 0xed, 0xed, 0xe7, 0x00, 0x00, +0x4c, 0x7b, 0x02, 0x00, 0x63, 0x48, 0x00, 0x78, 0x70, 0x47, 0xff, 0x21, 0x62, 0x48, 0x39, 0x31, +0x10, 0xb5, 0x0b, 0xf3, 0xfc, 0xe9, 0x5f, 0x49, 0x00, 0x20, 0x08, 0x70, 0x10, 0xbd, 0xfe, 0xb5, +0x00, 0x20, 0x00, 0x90, 0x0f, 0xf0, 0xe6, 0xff, 0x00, 0x25, 0x02, 0x90, 0x01, 0x20, 0x01, 0x90, +0x59, 0x48, 0xe9, 0x00, 0x44, 0x58, 0x00, 0x2c, 0x41, 0xd0, 0x20, 0x89, 0x06, 0x19, 0x60, 0x69, +0x00, 0x28, 0x0d, 0xd0, 0x0b, 0x21, 0x89, 0x01, 0x41, 0x18, 0x09, 0x69, 0x00, 0x27, 0x20, 0x31, +0x0f, 0x72, 0x01, 0x7a, 0x03, 0x29, 0x03, 0xd1, 0xfa, 0xf7, 0x11, 0xfe, 0x80, 0x30, 0x87, 0x62, +0xf0, 0x6d, 0x80, 0x78, 0x00, 0x07, 0x80, 0x0f, 0x02, 0x28, 0x02, 0xd1, 0x20, 0x00, 0xfc, 0xf7, +0x6b, 0xfb, 0x30, 0x00, 0x60, 0x30, 0x07, 0x00, 0x40, 0x7a, 0x30, 0x28, 0x02, 0xd1, 0x20, 0x00, +0x08, 0xf0, 0x82, 0xff, 0x78, 0x7a, 0x21, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x00, 0x90, 0xf1, 0x6d, +0x88, 0x78, 0x00, 0x07, 0x80, 0x0f, 0x07, 0xd1, 0x60, 0x69, 0x42, 0x7a, 0x02, 0x2a, 0x03, 0xd1, +0x32, 0x00, 0xff, 0xf7, 0x8c, 0xff, 0x01, 0x90, 0x60, 0x69, 0x00, 0x22, 0x31, 0x00, 0x12, 0xf0, +0xe8, 0xfb, 0x01, 0x98, 0x00, 0x28, 0x02, 0xd0, 0x20, 0x00, 0x0b, 0xf3, 0x69, 0xfe, 0x6d, 0x1c, +0x27, 0x2d, 0xb3, 0xd3, 0xff, 0xf7, 0xa1, 0xff, 0x00, 0x98, 0x00, 0x28, 0x01, 0xd0, 0x01, 0xf0, +0x3d, 0xf8, 0x02, 0x98, 0x0f, 0xf0, 0x92, 0xff, 0xfe, 0xbd, 0xfe, 0xb5, 0x0f, 0xf0, 0x8a, 0xff, +0x00, 0x90, 0x10, 0xf0, 0xb7, 0xfd, 0x2b, 0x4c, 0x00, 0x28, 0x11, 0xd1, 0x2b, 0x48, 0x01, 0x69, +0x40, 0x69, 0x81, 0x42, 0x0c, 0xd0, 0x00, 0x98, 0x0f, 0xf0, 0x80, 0xff, 0xa0, 0x68, 0x07, 0x22, +0x40, 0x1c, 0xa0, 0x60, 0x26, 0x48, 0x01, 0x21, 0x00, 0x68, 0x10, 0xf0, 0xb9, 0xfd, 0xfe, 0xbd, +0x01, 0xa8, 0x0f, 0xf0, 0x7c, 0xff, 0x01, 0x9b, 0xe0, 0x68, 0x21, 0x78, 0x18, 0x1a, 0x00, 0x29, +0x20, 0xd0, 0x0a, 0x28, 0x1e, 0xd3, 0x00, 0x22, 0x1b, 0x4f, 0x10, 0x00, 0xe3, 0x60, 0x12, 0xe0, +0xc5, 0x00, 0x7e, 0x59, 0x00, 0x2e, 0x0b, 0xd0, 0xed, 0x19, 0x6d, 0x68, 0xff, 0x26, 0x5d, 0x1b, +0x49, 0x1e, 0x4b, 0x36, 0xb5, 0x42, 0x03, 0xd9, 0x65, 0x88, 0x6d, 0x1c, 0x52, 0x1c, 0x65, 0x80, +0x40, 0x1c, 0x27, 0x28, 0x01, 0xd2, 0x00, 0x29, 0xea, 0xdc, 0x00, 0x2a, 0x02, 0xd0, 0x10, 0x20, +0xef, 0xf7, 0xa0, 0xfd, 0x00, 0x98, 0x0f, 0xf0, 0x49, 0xff, 0xfe, 0xbd, 0x03, 0x00, 0x10, 0xb5, +0x09, 0x4c, 0x00, 0x20, 0x01, 0x00, 0xca, 0x00, 0xa2, 0x58, 0x00, 0x2a, 0x03, 0xd0, 0x52, 0x69, +0x9a, 0x42, 0x00, 0xd1, 0x01, 0x20, 0x49, 0x1c, 0x27, 0x29, 0x01, 0xd2, 0x00, 0x28, 0xf2, 0xd0, +0x10, 0xbd, 0x00, 0x00, 0x10, 0x77, 0x02, 0x00, 0x10, 0x53, 0x00, 0x04, 0x00, 0xa0, 0x00, 0x80, +0x0c, 0x77, 0x02, 0x00, 0x30, 0xb5, 0x00, 0x22, 0xaa, 0x4c, 0xe3, 0x78, 0x00, 0x2b, 0x0a, 0xd0, +0x07, 0xe0, 0xa5, 0x18, 0x2d, 0x79, 0x85, 0x42, 0x02, 0xd1, 0x01, 0x20, 0x0a, 0x70, 0x30, 0xbd, +0x52, 0x1c, 0x93, 0x42, 0xf5, 0xd8, 0x00, 0x20, 0x30, 0xbd, 0x10, 0xb5, 0xa1, 0x4c, 0x00, 0x20, +0xe3, 0x78, 0x0b, 0x21, 0x09, 0xe0, 0x22, 0x18, 0x12, 0x79, 0x8a, 0x42, 0x00, 0xdb, 0x11, 0x00, +0x09, 0x06, 0x40, 0x1c, 0x09, 0x16, 0x00, 0x06, 0x00, 0x16, 0x83, 0x42, 0xf3, 0xdc, 0x0b, 0x38, +0x04, 0x28, 0x00, 0xd3, 0x0b, 0x21, 0x08, 0x06, 0x00, 0x0e, 0x10, 0xbd, 0xc0, 0x68, 0xc0, 0x05, +0x05, 0xd5, 0x94, 0x48, 0xc0, 0x78, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, 0x70, 0x47, 0x00, 0x20, +0x70, 0x47, 0x90, 0x48, 0x03, 0x21, 0x10, 0xb5, 0x0b, 0xf3, 0x22, 0xe9, 0x8d, 0x48, 0x00, 0x21, +0xc1, 0x70, 0x40, 0x21, 0x00, 0x1d, 0x0b, 0xf3, 0x1c, 0xe9, 0x8a, 0x48, 0x14, 0x22, 0x40, 0x21, +0x44, 0x30, 0x0f, 0xf0, 0x30, 0xec, 0x00, 0x20, 0x10, 0xbd, 0xf3, 0xb5, 0x87, 0xb0, 0x05, 0x00, +0x00, 0x20, 0x04, 0x90, 0x83, 0x48, 0x4e, 0x1c, 0xc0, 0x78, 0x00, 0x28, 0x77, 0xd0, 0x07, 0x20, +0x08, 0x70, 0x00, 0x20, 0x8c, 0x1c, 0x30, 0x70, 0x7e, 0x49, 0x03, 0x22, 0x20, 0x00, 0x0b, 0xf3, +0x3a, 0xe8, 0x30, 0x78, 0xe4, 0x1c, 0xc0, 0x1c, 0x30, 0x70, 0x08, 0x94, 0x68, 0x7a, 0x02, 0x28, +0x04, 0xd1, 0x28, 0x00, 0x13, 0xf0, 0x61, 0xf8, 0x00, 0x7a, 0x0a, 0xe0, 0x28, 0x7a, 0x01, 0x28, +0x01, 0xd0, 0x00, 0x28, 0x08, 0xd1, 0x00, 0x21, 0x68, 0x46, 0x15, 0xf0, 0xb8, 0xeb, 0x6b, 0x46, +0x18, 0x78, 0x80, 0x07, 0x80, 0x0f, 0x00, 0xe0, 0x01, 0x20, 0x01, 0x90, 0x00, 0x20, 0x01, 0x27, +0x05, 0x00, 0x02, 0x90, 0x05, 0x90, 0x33, 0xe0, 0x00, 0x2f, 0x05, 0xd1, 0x48, 0x19, 0x40, 0x30, +0x00, 0x79, 0x02, 0x9a, 0x90, 0x42, 0x14, 0xd0, 0x05, 0x98, 0x00, 0x27, 0x43, 0x00, 0x18, 0x18, +0x04, 0x19, 0x48, 0x19, 0x02, 0x79, 0x22, 0x70, 0x40, 0x30, 0x00, 0x79, 0x01, 0x22, 0xa0, 0x70, +0x62, 0x70, 0x02, 0x90, 0x04, 0x98, 0x05, 0x92, 0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x04, 0x90, +0x02, 0xe0, 0x60, 0x78, 0x40, 0x1c, 0x60, 0x70, 0x48, 0x19, 0x06, 0x90, 0x01, 0x79, 0x03, 0x91, +0x01, 0x99, 0x03, 0x98, 0x0d, 0xf0, 0xfa, 0xfb, 0x03, 0x99, 0x40, 0x18, 0x01, 0x06, 0x06, 0x98, +0x09, 0x0e, 0x40, 0x79, 0x88, 0x42, 0x00, 0xd0, 0x01, 0x27, 0x6d, 0x1c, 0x2d, 0x06, 0x2d, 0x0e, +0x50, 0x49, 0xc8, 0x78, 0xa8, 0x42, 0xc7, 0xd8, 0x04, 0x98, 0x32, 0x78, 0x41, 0x00, 0x09, 0x18, +0x50, 0x18, 0x30, 0x70, 0x08, 0x9a, 0x89, 0x18, 0xc0, 0x07, 0x04, 0xd0, 0x00, 0x20, 0x08, 0x70, +0x30, 0x78, 0x40, 0x1c, 0x30, 0x70, 0x30, 0x78, 0x80, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x09, 0xb0, +0xf0, 0xbd, 0x10, 0xb5, 0x07, 0x22, 0x0a, 0x70, 0x00, 0x22, 0x0c, 0x00, 0x4a, 0x70, 0x89, 0x1c, +0xff, 0xf7, 0x73, 0xff, 0x00, 0x28, 0x06, 0xd0, 0x81, 0x1e, 0xa1, 0x70, 0x9e, 0x96, 0x9a, 0xad, +0x01, 0x00, 0x00, 0x00, 0xe4, 0x1a, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xe2, 0x8f, 0xcd, 0xa5, +0x09, 0x0a, 0x80, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0xe1, 0x70, 0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, +0x00, 0x78, 0x00, 0x25, 0x07, 0x28, 0x05, 0xd1, 0xff, 0xf7, 0x4d, 0xff, 0x64, 0x1c, 0x26, 0x78, +0x00, 0x2e, 0x01, 0xd1, 0x00, 0x20, 0x70, 0xbd, 0x64, 0x1c, 0x33, 0x48, 0x03, 0x22, 0x21, 0x00, +0x0a, 0xf3, 0xa2, 0xef, 0xe4, 0x1c, 0xf6, 0x1e, 0x32, 0x06, 0x2f, 0x4e, 0x12, 0x0e, 0x23, 0xe0, +0x20, 0x78, 0xc9, 0x28, 0x1c, 0xd2, 0x00, 0x28, 0x1a, 0xd0, 0x00, 0x20, 0x11, 0xe0, 0x40, 0x2d, +0x02, 0xd3, 0xff, 0xf7, 0x30, 0xff, 0xe5, 0xe7, 0x21, 0x78, 0x0b, 0x18, 0x71, 0x19, 0x0b, 0x71, +0x6d, 0x1c, 0x40, 0x31, 0x2d, 0x06, 0x40, 0x1c, 0xa3, 0x78, 0x2d, 0x0e, 0x00, 0x06, 0x00, 0x0e, +0x0b, 0x71, 0x61, 0x78, 0x81, 0x42, 0xea, 0xd8, 0xf1, 0x78, 0x60, 0x78, 0x08, 0x18, 0xf0, 0x70, +0xd2, 0x1e, 0x12, 0x06, 0x12, 0x0e, 0xe4, 0x1c, 0x01, 0x2a, 0xd9, 0xd8, 0x01, 0x20, 0x70, 0xbd, +0x70, 0xb5, 0x06, 0x00, 0x0c, 0x00, 0x02, 0x2a, 0x06, 0xd1, 0xfb, 0xf7, 0xd2, 0xfa, 0x00, 0x28, +0x0e, 0xd1, 0xff, 0xf7, 0x08, 0xff, 0x25, 0xe0, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, +0x07, 0x28, 0x05, 0xd1, 0xe1, 0x78, 0xa0, 0x78, 0x0a, 0x02, 0x02, 0x43, 0xff, 0x2a, 0x01, 0xd9, +0x00, 0x20, 0x70, 0xbd, 0x15, 0x06, 0x2d, 0x0e, 0x07, 0x21, 0xe5, 0x70, 0xa0, 0x1c, 0xa1, 0x70, +0xff, 0xf7, 0x9c, 0xff, 0x00, 0x28, 0x03, 0xd1, 0x28, 0x0a, 0xa5, 0x70, 0xe0, 0x70, 0xef, 0xe7, +0xf4, 0xf7, 0x0b, 0xfb, 0x01, 0x00, 0x01, 0x22, 0x30, 0x00, 0xf4, 0xf7, 0x7e, 0xfa, 0x28, 0x0a, +0xa5, 0x70, 0xe0, 0x70, 0x01, 0x20, 0x70, 0xbd, 0xf0, 0x3b, 0x01, 0xc0, 0xf8, 0xb5, 0x0d, 0x00, +0x04, 0x00, 0x11, 0x00, 0xf4, 0xf7, 0xff, 0xfa, 0x00, 0x28, 0x28, 0x60, 0x11, 0xd0, 0x01, 0x89, +0x22, 0x00, 0x46, 0x18, 0x7e, 0x32, 0xb1, 0x21, 0x89, 0x00, 0x00, 0x92, 0xcb, 0x32, 0x61, 0x18, +0x0d, 0x23, 0xf4, 0xf7, 0x45, 0xfb, 0x08, 0x20, 0x20, 0x36, 0x30, 0x70, 0x29, 0x68, 0xac, 0x20, +0x08, 0x81, 0xf8, 0xbd, 0x38, 0xb5, 0x15, 0x00, 0x0c, 0x00, 0xff, 0x22, 0x2d, 0x32, 0x69, 0x46, +0xff, 0xf7, 0xdc, 0xff, 0x00, 0x98, 0x00, 0x28, 0x01, 0xd1, 0x40, 0x1e, 0x38, 0xbd, 0x01, 0x89, +0x2a, 0x0a, 0x08, 0x18, 0x01, 0x00, 0x20, 0x31, 0x4c, 0x70, 0x8d, 0x70, 0xca, 0x70, 0x04, 0x21, +0x01, 0x70, 0x00, 0x21, 0x41, 0x70, 0x00, 0x98, 0xf4, 0xf7, 0x78, 0xfb, 0x38, 0xbd, 0x02, 0x00, +0x08, 0x00, 0x09, 0x21, 0x89, 0x01, 0x41, 0x18, 0x10, 0xb5, 0x0b, 0x6b, 0x93, 0x42, 0x05, 0xd1, +0x00, 0x22, 0x0a, 0x63, 0x07, 0x22, 0x00, 0x21, 0xf4, 0xf7, 0xbc, 0xfb, 0x10, 0xbd, 0x02, 0x00, +0x08, 0x00, 0x09, 0x21, 0x89, 0x01, 0x41, 0x18, 0x10, 0xb5, 0x0b, 0x6b, 0x93, 0x42, 0x07, 0xd1, +0x00, 0x22, 0x0a, 0x63, 0x01, 0x00, 0xff, 0x31, 0x02, 0x22, 0x4a, 0x31, 0x15, 0xf0, 0xf0, 0xea, +0x10, 0xbd, 0x70, 0xb5, 0x01, 0x25, 0x4a, 0x78, 0x00, 0x2a, 0x0b, 0xd0, 0x01, 0x2a, 0x07, 0xd1, +0x09, 0x21, 0x89, 0x01, 0x44, 0x18, 0x20, 0x6b, 0xf9, 0xf2, 0xcd, 0xff, 0x00, 0x20, 0x20, 0x63, +0x28, 0x00, 0x70, 0xbd, 0xca, 0x78, 0x89, 0x78, 0x12, 0x02, 0x0a, 0x43, 0x01, 0x21, 0xff, 0xf7, +0xa9, 0xff, 0xf5, 0xe7, 0xf0, 0xb5, 0x87, 0xb0, 0x00, 0x27, 0x46, 0x69, 0xcc, 0x6d, 0x30, 0x00, +0x12, 0xf0, 0xce, 0xfe, 0x21, 0x00, 0x22, 0x88, 0x20, 0x31, 0x55, 0x18, 0x06, 0x91, 0x71, 0x7a, +0x02, 0x29, 0x04, 0xd1, 0xff, 0x30, 0xff, 0x30, 0x80, 0x1c, 0x46, 0x69, 0x03, 0xe0, 0x09, 0x20, +0x80, 0x01, 0x30, 0x18, 0xc6, 0x6a, 0x00, 0x2e, 0x66, 0xd0, 0x00, 0x2d, 0x64, 0xd0, 0x4c, 0x20, +0x28, 0x70, 0x10, 0x20, 0x68, 0x70, 0x58, 0x20, 0x80, 0x5d, 0x68, 0x80, 0x30, 0x00, 0x33, 0x8f, +0x38, 0x30, 0x2a, 0x1d, 0x01, 0x1f, 0x5b, 0x1c, 0x1b, 0x04, 0x1b, 0x0c, 0x33, 0x87, 0x02, 0xd1, +0x0b, 0x68, 0x5b, 0x1c, 0x0b, 0x60, 0x00, 0x88, 0x10, 0x80, 0x90, 0x1c, 0x09, 0x68, 0x01, 0x60, +0x00, 0x22, 0xff, 0x21, 0xfe, 0x48, 0xd2, 0x43, 0xf5, 0x31, 0x0b, 0xf3, 0x15, 0xfc, 0x04, 0x90, +0x01, 0x89, 0x0f, 0x18, 0x28, 0x00, 0x0a, 0x30, 0x08, 0x21, 0x05, 0x90, 0x0a, 0xf3, 0x4a, 0xef, +0xa0, 0x78, 0x38, 0x70, 0xe0, 0x78, 0xc7, 0x21, 0x08, 0x40, 0x78, 0x70, 0x06, 0x22, 0xa1, 0x1d, +0xb8, 0x1c, 0x0a, 0xf3, 0x7a, 0xee, 0x21, 0x00, 0x38, 0x00, 0x06, 0x22, 0x0c, 0x31, 0x08, 0x30, +0x0a, 0xf3, 0x72, 0xee, 0x21, 0x00, 0x38, 0x00, 0x06, 0x22, 0x12, 0x31, 0x0e, 0x30, 0x0a, 0xf3, +0x6c, 0xee, 0x14, 0x37, 0x22, 0x88, 0x06, 0x99, 0x38, 0x00, 0x0a, 0xf3, 0x66, 0xee, 0x20, 0x88, +0x12, 0x22, 0xc0, 0x19, 0x29, 0x00, 0x0a, 0xf3, 0x60, 0xee, 0x20, 0x88, 0x6b, 0x46, 0x12, 0x30, +0x02, 0x04, 0x12, 0x0c, 0x22, 0x80, 0x04, 0x98, 0x14, 0x32, 0x01, 0x89, 0x09, 0x18, 0x30, 0x00, +0x14, 0x30, 0xfa, 0xf2, 0xfa, 0xf8, 0x05, 0x98, 0x08, 0x22, 0x69, 0x46, 0x0a, 0xf3, 0x4c, 0xee, +0x04, 0x98, 0x01, 0x27, 0x0b, 0xf3, 0xa6, 0xfb, 0x38, 0x00, 0x07, 0xb0, 0xf0, 0xbd, 0xf0, 0xb5, +0x00, 0x22, 0x91, 0xb0, 0x05, 0x00, 0x08, 0x00, 0x40, 0x30, 0x06, 0x92, 0x05, 0x92, 0x0e, 0x92, +0x0a, 0xf3, 0x7c, 0xef, 0x01, 0x00, 0x02, 0x88, 0x6f, 0x69, 0x04, 0x00, 0x20, 0x31, 0x4c, 0x20, +0x10, 0x91, 0x08, 0xf3, 0x12, 0xfe, 0x06, 0x00, 0x00, 0x2f, 0x7e, 0xd0, 0x09, 0x20, 0x80, 0x01, +0x38, 0x18, 0x0f, 0x90, 0xc5, 0x6a, 0x00, 0x2d, 0xf7, 0xd0, 0x00, 0x2e, 0xf5, 0xd0, 0x08, 0x35, +0x38, 0x00, 0xfb, 0xf7, 0x25, 0xfd, 0x00, 0x28, 0x04, 0x90, 0x1a, 0xd0, 0x28, 0x00, 0x2c, 0x30, +0x05, 0xaa, 0x06, 0xa9, 0x6b, 0x46, 0x07, 0xc3, 0x2b, 0x00, 0xe8, 0x79, 0x30, 0x33, 0x02, 0x07, +0x12, 0x0f, 0x31, 0x1d, 0x00, 0x20, 0xfe, 0xf2, 0x2d, 0xfc, 0x00, 0x28, 0x09, 0xd0, 0x0f, 0x98, +0xc0, 0x6b, 0x00, 0x28, 0x02, 0xd0, 0xc1, 0x6d, 0x49, 0x1c, 0xc1, 0x65, 0x00, 0x20, 0x11, 0xb0, +0xf0, 0xbd, 0x00, 0x22, 0xff, 0x21, 0xb6, 0x48, 0xd2, 0x43, 0xf5, 0x31, 0x0b, 0xf3, 0x84, 0xfb, +0x01, 0x89, 0x07, 0x00, 0x08, 0x18, 0x31, 0x00, 0x0a, 0x31, 0x0d, 0x90, 0x08, 0x22, 0x0e, 0x00, +0x0b, 0xa8, 0x0a, 0xf3, 0xf2, 0xed, 0x08, 0x21, 0x30, 0x00, 0x0a, 0xf3, 0xb4, 0xee, 0x0d, 0x9e, +0xa1, 0x78, 0x31, 0x70, 0xe1, 0x78, 0xc7, 0x20, 0x01, 0x40, 0x71, 0x70, 0x06, 0x22, 0xa1, 0x1d, +0xb0, 0x1c, 0x0a, 0xf3, 0xe2, 0xed, 0x21, 0x00, 0x30, 0x00, 0x06, 0x22, 0x0c, 0x31, 0x08, 0x30, +0x0a, 0xf3, 0xda, 0xed, 0x21, 0x00, 0x30, 0x00, 0x06, 0x22, 0x12, 0x31, 0x0e, 0x30, 0x0a, 0xf3, +0xd4, 0xed, 0x0d, 0x98, 0x22, 0x88, 0x10, 0x99, 0x14, 0x30, 0x0a, 0xf3, 0xce, 0xed, 0x0f, 0x98, +0x22, 0x88, 0x39, 0x89, 0xc0, 0x6a, 0x14, 0x32, 0xc9, 0x19, 0x14, 0x30, 0x07, 0xab, 0xfa, 0xf2, +0x6c, 0xf8, 0x08, 0x22, 0x07, 0xa9, 0x0b, 0xa8, 0x0f, 0xf0, 0x72, 0xf9, 0x20, 0x53, 0x09, 0x3a, +0x01, 0x00, 0x00, 0x00, 0xe0, 0x1e, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xb1, 0x55, 0x1e, 0xc9, +0x00, 0x28, 0x10, 0xd1, 0x04, 0x98, 0x00, 0x28, 0x08, 0xd0, 0x05, 0x9c, 0x29, 0x00, 0x6b, 0x46, +0x1a, 0x8b, 0x2c, 0x31, 0x08, 0x1d, 0x23, 0x00, 0xfe, 0xf2, 0xcb, 0xfb, 0x00, 0xe0, 0x0c, 0xe0, +0x01, 0x20, 0x0e, 0x90, 0x06, 0xe0, 0x0f, 0x98, 0xc0, 0x6b, 0x00, 0x28, 0x02, 0xd0, 0x81, 0x6d, +0x49, 0x1c, 0x81, 0x65, 0x38, 0x00, 0x0b, 0xf3, 0xff, 0xfa, 0x0e, 0x98, 0x99, 0xe7, 0xf8, 0xb5, +0x05, 0x00, 0x00, 0x26, 0x00, 0x89, 0x40, 0x19, 0x00, 0x90, 0x6f, 0x69, 0xc4, 0x6d, 0x00, 0x2f, +0x6c, 0xd0, 0xa0, 0x79, 0xc0, 0x07, 0x21, 0xd0, 0x0b, 0x20, 0x80, 0x01, 0x38, 0x18, 0x00, 0x69, +0x80, 0x30, 0x00, 0x79, 0xc0, 0x07, 0x19, 0xd0, 0xa0, 0x78, 0x01, 0x07, 0x89, 0x0f, 0x15, 0xd1, +0x00, 0x09, 0x0c, 0x28, 0x09, 0xd0, 0x0a, 0x28, 0x07, 0xd0, 0x0d, 0x28, 0x0e, 0xd1, 0x20, 0x00, +0x20, 0x30, 0x00, 0xf0, 0x13, 0xf9, 0x00, 0x28, 0x08, 0xd0, 0x00, 0x99, 0x28, 0x00, 0xff, 0xf7, +0xab, 0xfe, 0x00, 0x28, 0x00, 0xd1, 0xa8, 0x80, 0x00, 0x26, 0x47, 0xe0, 0x38, 0x00, 0xff, 0x30, +0x06, 0x22, 0xa1, 0x1d, 0x4a, 0x30, 0x0f, 0xf0, 0x1d, 0xf9, 0x00, 0x28, 0x3e, 0xd1, 0xf8, 0x68, +0x21, 0x00, 0x20, 0x31, 0x00, 0x04, 0x39, 0xd5, 0xa0, 0x78, 0x02, 0x07, 0x92, 0x0f, 0x35, 0xd1, +0x00, 0x09, 0x0c, 0x28, 0x08, 0xd0, 0x0a, 0x28, 0x06, 0xd0, 0x0d, 0x28, 0x2e, 0xd1, 0x08, 0x00, +0x00, 0xf0, 0xec, 0xf8, 0x00, 0x28, 0x29, 0xd0, 0x28, 0x89, 0x69, 0x69, 0x44, 0x19, 0xe0, 0x6d, +0x00, 0x26, 0x00, 0x29, 0x22, 0xd0, 0x09, 0x22, 0x92, 0x01, 0x89, 0x18, 0x8f, 0x6a, 0x00, 0x2f, +0x1c, 0xd0, 0x08, 0x37, 0x1a, 0xd0, 0xf9, 0x79, 0x09, 0x07, 0x09, 0x0f, 0x02, 0x29, 0x15, 0xd1, +0xc1, 0x78, 0x40, 0x22, 0x11, 0x43, 0xc1, 0x70, 0x41, 0x78, 0x03, 0x78, 0x0a, 0x02, 0x01, 0x00, +0x01, 0x26, 0x1a, 0x43, 0x20, 0x31, 0x28, 0x30, 0x0f, 0xf0, 0x18, 0xe9, 0x20, 0x78, 0xc0, 0x08, +0xc0, 0x00, 0x20, 0x70, 0x28, 0x00, 0xe7, 0x66, 0x10, 0xf0, 0x64, 0xfa, 0x30, 0x00, 0xf8, 0xbd, +0xf3, 0xb5, 0x04, 0x00, 0x81, 0xb0, 0x00, 0x25, 0x02, 0x98, 0x40, 0x30, 0x0a, 0xf3, 0x60, 0xee, +0x61, 0x69, 0x06, 0x00, 0x00, 0x29, 0x71, 0xd0, 0xca, 0x68, 0x30, 0x00, 0x12, 0x04, 0x6d, 0xd5, +0x80, 0x78, 0x02, 0x07, 0x92, 0x0f, 0x69, 0xd1, 0x00, 0x09, 0x0c, 0x28, 0x03, 0xd0, 0x0a, 0x28, +0x01, 0xd0, 0x0d, 0x28, 0x62, 0xd1, 0xb2, 0x79, 0x00, 0x27, 0xd2, 0x07, 0x00, 0x2a, 0x08, 0xd0, +0x02, 0x99, 0x20, 0x00, 0xff, 0xf7, 0xbd, 0xfe, 0x00, 0x28, 0x00, 0xd1, 0xa7, 0x80, 0x00, 0x25, +0x54, 0xe0, 0xf2, 0x78, 0x52, 0x06, 0x17, 0xd5, 0x09, 0x20, 0x80, 0x01, 0x08, 0x18, 0x82, 0x6a, +0x00, 0x25, 0x00, 0x2a, 0x0b, 0xd0, 0x08, 0x32, 0x09, 0xd0, 0xd0, 0x79, 0x00, 0x07, 0x00, 0x0f, +0x02, 0x28, 0x04, 0xd1, 0x02, 0x99, 0x01, 0x25, 0x20, 0x00, 0x10, 0xf0, 0x5c, 0xfa, 0x00, 0x2d, +0x3c, 0xd1, 0x01, 0x25, 0xa7, 0x80, 0x39, 0xe0, 0x0d, 0x28, 0x05, 0xd1, 0x30, 0x00, 0x20, 0x30, +0x00, 0xf0, 0x74, 0xf8, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x25, 0xa7, 0x80, 0xb0, 0x78, 0x00, 0x09, +0x0c, 0x28, 0x01, 0xd0, 0x0a, 0x28, 0x29, 0xd1, 0x20, 0x36, 0x70, 0x78, 0x31, 0x78, 0x00, 0x02, +0x08, 0x43, 0x06, 0x28, 0x01, 0xd0, 0x07, 0x28, 0x20, 0xd1, 0x61, 0x69, 0x09, 0x20, 0x80, 0x01, +0x08, 0x18, 0x00, 0x6b, 0x00, 0x28, 0x19, 0xd1, 0x27, 0x20, 0x00, 0x22, 0x00, 0x01, 0x0b, 0x18, +0x00, 0x92, 0x15, 0x4a, 0x15, 0x48, 0xf9, 0xf2, 0x4d, 0xfd, 0x60, 0x69, 0x0b, 0x26, 0xb6, 0x01, +0x81, 0x19, 0x09, 0x69, 0x80, 0x31, 0xca, 0x88, 0x00, 0x21, 0xff, 0xf7, 0x8d, 0xfd, 0x60, 0x69, +0x80, 0x19, 0x00, 0x69, 0x80, 0x30, 0xc1, 0x88, 0x49, 0x1c, 0xc1, 0x80, 0x28, 0x00, 0xfe, 0xbd, +0x10, 0xb5, 0xc2, 0x68, 0x01, 0x23, 0xdb, 0x03, 0xc9, 0x07, 0x9a, 0x43, 0x09, 0x0c, 0x0a, 0x43, +0x09, 0x21, 0x89, 0x01, 0x44, 0x18, 0xc2, 0x60, 0x20, 0x6b, 0xf9, 0xf2, 0x8e, 0xfd, 0x00, 0x20, +0x20, 0x63, 0x10, 0xbd, 0xe8, 0x00, 0x00, 0x04, 0x40, 0x42, 0x0f, 0x00, 0x53, 0x1c, 0x01, 0x00, +0xc0, 0x68, 0x00, 0x04, 0xc0, 0x0f, 0x70, 0x47, 0x0b, 0x21, 0x10, 0xb5, 0x42, 0x7a, 0x89, 0x01, +0x44, 0x18, 0x02, 0x2a, 0x0b, 0xd1, 0x12, 0xf0, 0x8d, 0xfc, 0x21, 0x69, 0x80, 0x31, 0x09, 0x79, +0xc9, 0x07, 0x11, 0xd0, 0xff, 0x30, 0xff, 0x30, 0x80, 0x1c, 0x40, 0x69, 0x08, 0xe0, 0x21, 0x69, +0x80, 0x31, 0x09, 0x79, 0xc9, 0x07, 0x07, 0xd0, 0x09, 0x21, 0x89, 0x01, 0x40, 0x18, 0xc0, 0x6a, +0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0xd4, 0xe7, 0x00, 0x20, 0xd2, 0xe7, 0x07, 0x4a, 0x00, 0x78, +0x00, 0x21, 0x53, 0x5c, 0x83, 0x42, 0x01, 0xd1, 0x01, 0x20, 0x70, 0x47, 0x49, 0x1c, 0x09, 0x06, +0x09, 0x0e, 0x09, 0x29, 0xf5, 0xd3, 0x00, 0x20, 0x70, 0x47, 0x00, 0x00, 0xc0, 0xf1, 0x00, 0xc0, +0x20, 0x39, 0x01, 0x2a, 0x01, 0xd1, 0x40, 0x18, 0x00, 0xe0, 0x40, 0x1a, 0xff, 0x28, 0x01, 0xdd, +0xff, 0x20, 0x70, 0x47, 0x00, 0x28, 0x01, 0xda, 0x00, 0x20, 0x70, 0x47, 0x00, 0x06, 0x00, 0x0e, +0x70, 0x47, 0xf8, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0x14, 0x00, 0x00, 0xf0, 0x04, 0xff, 0x40, 0x06, +0x47, 0x16, 0x31, 0x00, 0x28, 0x00, 0x00, 0xf0, 0x0f, 0xff, 0x00, 0x07, 0x00, 0x17, 0xe1, 0x19, +0x08, 0x18, 0x7f, 0x28, 0x01, 0xdd, 0x7f, 0x20, 0x02, 0xe0, 0x00, 0x28, 0x00, 0xda, 0x00, 0x20, +0x00, 0x06, 0x00, 0x0e, 0xf8, 0xbd, 0x10, 0xb5, 0xff, 0x4c, 0x0a, 0x21, 0xe0, 0x68, 0x10, 0xf0, +0xff, 0xf8, 0x00, 0x21, 0x00, 0x28, 0x61, 0x61, 0x00, 0xd0, 0x01, 0x20, 0x10, 0xbd, 0xfa, 0x48, +0x10, 0xb5, 0x00, 0x69, 0x10, 0xf0, 0xfb, 0xf8, 0x10, 0xbd, 0xf3, 0xb5, 0x00, 0x22, 0x1c, 0x21, +0x83, 0xb0, 0xf6, 0x48, 0x0b, 0xf3, 0x9a, 0xf9, 0x05, 0x00, 0x02, 0xd1, 0x01, 0x20, 0x05, 0xb0, +0xf0, 0xbd, 0x02, 0x20, 0x28, 0x73, 0x00, 0x20, 0x68, 0x61, 0xac, 0x20, 0x2f, 0x18, 0x28, 0x81, +0xef, 0x48, 0x02, 0x21, 0x02, 0x68, 0x00, 0x92, 0x13, 0x00, 0x01, 0x92, 0x04, 0x22, 0x38, 0x00, +0xfe, 0xf2, 0xa0, 0xf9, 0x1c, 0x20, 0x2e, 0x18, 0x28, 0x81, 0x70, 0x21, 0x30, 0x00, 0x0a, 0xf3, +0x92, 0xec, 0x30, 0x00, 0x08, 0x21, 0x60, 0x30, 0xf7, 0x65, 0x01, 0x72, 0x21, 0x21, 0x41, 0x72, +0x11, 0x20, 0x36, 0x65, 0x00, 0x02, 0x76, 0x65, 0x30, 0x63, 0x04, 0x98, 0x34, 0x00, 0x14, 0x34, +0x00, 0x28, 0x01, 0xd0, 0xdf, 0x48, 0xe0, 0x61, 0x01, 0x20, 0x20, 0x70, 0x67, 0x60, 0x03, 0x98, +0xd9, 0x49, 0xc0, 0x00, 0x18, 0x31, 0x0a, 0x5c, 0x40, 0x18, 0x01, 0x2a, 0x06, 0xd1, 0x41, 0x78, +0x01, 0x29, 0x01, 0xd1, 0x1e, 0x27, 0x07, 0xe0, 0x15, 0x27, 0x05, 0xe0, 0x41, 0x88, 0x03, 0x29, +0x01, 0xd8, 0x03, 0x27, 0x00, 0xe0, 0x0c, 0x27, 0x26, 0x00, 0x20, 0x36, 0x31, 0x7a, 0xd2, 0x07, +0x49, 0x08, 0x49, 0x00, 0xd2, 0x0f, 0x11, 0x43, 0x0e, 0x2f, 0x31, 0x72, 0xe6, 0xe6, 0x96, 0x1c, +0x01, 0x00, 0x00, 0x00, 0xdc, 0x22, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x99, 0xc4, 0x9b, 0x74, +0x02, 0xd3, 0x02, 0x22, 0x11, 0x43, 0x01, 0xe0, 0xfd, 0x22, 0x11, 0x40, 0x31, 0x72, 0x40, 0x78, +0xfb, 0x22, 0xc0, 0x07, 0x11, 0x40, 0x40, 0x0f, 0x01, 0x43, 0x38, 0x00, 0x31, 0x72, 0xff, 0xf2, +0x6b, 0xfa, 0x21, 0x8d, 0x7f, 0x22, 0x40, 0x06, 0xd2, 0x00, 0x80, 0x0d, 0x91, 0x43, 0x01, 0x43, +0x21, 0x85, 0x70, 0x7a, 0xe7, 0x21, 0x08, 0x40, 0x08, 0x30, 0x05, 0x2f, 0x70, 0x72, 0x02, 0xd2, +0x80, 0x21, 0x08, 0x43, 0x01, 0xe0, 0x40, 0x06, 0x40, 0x0e, 0x70, 0x72, 0xb0, 0x7a, 0x03, 0x99, +0x00, 0x09, 0x09, 0x07, 0x00, 0x01, 0x09, 0x0f, 0x08, 0x43, 0xb0, 0x72, 0x28, 0x00, 0x14, 0xf0, +0xe4, 0xfc, 0x00, 0x20, 0x7d, 0xe7, 0xb2, 0x48, 0xd4, 0x21, 0x00, 0x22, 0x10, 0xb5, 0x0b, 0xf3, +0x0f, 0xf9, 0x10, 0xbd, 0xf7, 0xb5, 0x00, 0x20, 0x88, 0xb0, 0x01, 0x2a, 0x02, 0x90, 0x01, 0xd2, +0x00, 0x92, 0x01, 0xe0, 0x00, 0x22, 0x00, 0x92, 0x10, 0x00, 0x01, 0xab, 0x0c, 0xe0, 0x08, 0x9c, +0x43, 0x00, 0x1d, 0x19, 0xec, 0x88, 0x01, 0xae, 0xf4, 0x52, 0x2d, 0x89, 0x40, 0x1c, 0x6c, 0x40, +0x0c, 0x40, 0x00, 0x06, 0x00, 0x0e, 0xf4, 0x52, 0x00, 0x9b, 0x98, 0x42, 0xef, 0xd9, 0x17, 0x00, +0x90, 0xe0, 0x01, 0x24, 0x78, 0x00, 0x01, 0xa9, 0x07, 0x90, 0x08, 0x5a, 0x09, 0x90, 0x83, 0xe0, +0x64, 0x1c, 0x00, 0xe0, 0x01, 0x26, 0x30, 0x00, 0x09, 0x99, 0xa0, 0x40, 0x08, 0x42, 0xf7, 0xd0, +0x96, 0x49, 0xe0, 0x00, 0x18, 0x31, 0x06, 0x90, 0x40, 0x18, 0x05, 0x90, 0x40, 0x68, 0x03, 0x90, +0xff, 0xf7, 0xc1, 0xff, 0x05, 0x00, 0x79, 0xd0, 0x01, 0x20, 0xb8, 0x40, 0x01, 0x06, 0x20, 0x06, +0x09, 0x0e, 0x00, 0x0e, 0xff, 0xf7, 0x2b, 0xff, 0x01, 0x28, 0x03, 0xd1, 0x28, 0x00, 0x0b, 0xf3, +0x9d, 0xf8, 0x6b, 0xe0, 0x02, 0x20, 0x28, 0x73, 0x00, 0x20, 0x68, 0x61, 0x29, 0x00, 0xac, 0x31, +0x1c, 0x20, 0x04, 0x91, 0x2e, 0x18, 0x28, 0x81, 0x70, 0x21, 0x30, 0x00, 0x0a, 0xf3, 0xcc, 0xeb, +0x04, 0x99, 0x30, 0x00, 0xf1, 0x65, 0x08, 0x21, 0x60, 0x30, 0x01, 0x72, 0x21, 0x21, 0x41, 0x72, +0x76, 0x65, 0x04, 0x99, 0xb1, 0x61, 0x31, 0x00, 0x7c, 0x4e, 0x06, 0x9b, 0x34, 0x31, 0x18, 0x36, +0x0a, 0x7a, 0xf3, 0x5c, 0x52, 0x08, 0xdb, 0x07, 0x52, 0x00, 0xdb, 0x0f, 0x1a, 0x43, 0xfb, 0x23, +0x0a, 0x72, 0x1a, 0x40, 0x05, 0x9b, 0x4c, 0x38, 0x5b, 0x78, 0xdb, 0x07, 0x5b, 0x0f, 0x1a, 0x43, +0x0a, 0x72, 0x02, 0x8d, 0x7f, 0x23, 0xdb, 0x00, 0x9a, 0x43, 0x05, 0x9b, 0x5b, 0x88, 0x5b, 0x06, +0x9b, 0x0d, 0x1a, 0x43, 0x02, 0x85, 0x8a, 0x7a, 0x23, 0x07, 0x12, 0x09, 0x12, 0x01, 0x1b, 0x0f, +0x1a, 0x43, 0x8a, 0x72, 0x4a, 0x7a, 0xe7, 0x23, 0x1a, 0x40, 0x08, 0x9b, 0x5b, 0x78, 0x9b, 0x07, +0xdb, 0x0e, 0x1a, 0x43, 0x4a, 0x72, 0x67, 0x49, 0x3b, 0x00, 0x0a, 0x68, 0x03, 0x99, 0x02, 0xf0, +0xf6, 0xf8, 0x02, 0x98, 0x40, 0x1c, 0x02, 0x90, 0x28, 0x00, 0x14, 0xf0, 0x3e, 0xfc, 0x08, 0x99, +0x07, 0x98, 0x41, 0x18, 0x01, 0x20, 0x0a, 0x89, 0xa0, 0x40, 0x02, 0x43, 0x0a, 0x81, 0x09, 0x99, +0x81, 0x43, 0x09, 0x91, 0x09, 0x98, 0x64, 0x1c, 0x00, 0x28, 0x00, 0xd0, 0x7a, 0xe7, 0x7f, 0x1c, +0x3f, 0x06, 0x3f, 0x0e, 0x00, 0x98, 0x87, 0x42, 0x00, 0xd8, 0x6a, 0xe7, 0x02, 0x98, 0x0b, 0xb0, +0xf0, 0xbd, 0x52, 0x48, 0x10, 0xb5, 0xc0, 0x68, 0x0f, 0xf0, 0xab, 0xff, 0x10, 0xbd, 0x4f, 0x49, +0x00, 0x20, 0x09, 0x78, 0xff, 0x29, 0x00, 0xd0, 0x24, 0x20, 0x70, 0x47, 0xf7, 0xb5, 0x82, 0xb0, +0x04, 0x00, 0x0e, 0x00, 0x00, 0xf0, 0xb7, 0xfc, 0x01, 0x90, 0x00, 0xf0, 0xb1, 0xfc, 0x00, 0x90, +0x00, 0xf0, 0xab, 0xfc, 0x02, 0x00, 0x01, 0x99, 0x00, 0x98, 0xff, 0xf7, 0xe8, 0xff, 0x30, 0x40, +0x05, 0x00, 0x43, 0xd0, 0x07, 0x27, 0x00, 0x21, 0x0e, 0x00, 0x01, 0x20, 0x88, 0x40, 0x28, 0x42, +0x06, 0xd0, 0x00, 0x20, 0x62, 0x18, 0x13, 0x18, 0x40, 0x1c, 0x01, 0x28, 0x1e, 0x73, 0xfa, 0xdb, +0x49, 0x1c, 0xb9, 0x42, 0xf1, 0xdb, 0x01, 0xf0, 0x82, 0xf8, 0x60, 0x70, 0x00, 0x20, 0x01, 0x22, +0x41, 0x00, 0x09, 0x19, 0xce, 0x80, 0x0e, 0x81, 0x13, 0x00, 0x4e, 0x81, 0x67, 0x78, 0x83, 0x40, +0x1f, 0x42, 0x00, 0xd0, 0xcd, 0x80, 0x40, 0x1c, 0x01, 0x28, 0xf1, 0xdb, 0x00, 0xf0, 0x7d, 0xfc, +0x60, 0x80, 0x00, 0x98, 0x60, 0x71, 0x01, 0x98, 0x20, 0x71, 0x02, 0x20, 0x20, 0x70, 0x04, 0x98, +0x00, 0x28, 0x02, 0xd0, 0x29, 0x49, 0x2d, 0x48, 0x48, 0x61, 0x2d, 0x48, 0x01, 0xf0, 0x9a, 0xff, +0x01, 0xf0, 0xb8, 0xff, 0x2a, 0x49, 0xa8, 0x43, 0x09, 0x8a, 0x29, 0x40, 0x08, 0x43, 0x01, 0xf0, +0xb8, 0xff, 0xff, 0x22, 0x29, 0x00, 0x20, 0x00, 0xff, 0xf7, 0xe4, 0xfe, 0x59, 0xe6, 0xfe, 0xb5, +0x04, 0x00, 0x0e, 0x06, 0x00, 0x20, 0x36, 0x0e, 0x0b, 0x2e, 0x00, 0x96, 0x01, 0x90, 0x73, 0xd2, +0x01, 0x20, 0xb0, 0x40, 0xe5, 0x88, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x27, 0x05, 0x40, 0x6b, 0xd0, +0x30, 0x00, 0x01, 0xf0, 0xa7, 0xff, 0x00, 0x28, 0x03, 0xd1, 0x1a, 0x49, 0x88, 0x5d, 0x40, 0x1c, +0x88, 0x55, 0x18, 0x20, 0x70, 0x43, 0x00, 0x99, 0x02, 0x19, 0x15, 0x48, 0x18, 0x32, 0x01, 0xf0, +0xae, 0xff, 0x00, 0x20, 0x00, 0xf0, 0xa2, 0xfc, 0x07, 0x00, 0x31, 0x00, 0x00, 0x20, 0x0c, 0xf0, +0xa7, 0xfe, 0x01, 0x22, 0x39, 0x00, 0xff, 0xf7, 0xe5, 0xfd, 0xa7, 0x19, 0x02, 0x00, 0x38, 0x73, +0x31, 0x00, 0x00, 0x20, 0xff, 0xf7, 0xef, 0xfd, 0x38, 0x73, 0x60, 0x89, 0x01, 0x23, 0x28, 0x43, +0x60, 0x81, 0x00, 0x20, 0x41, 0x00, 0x09, 0x19, 0xca, 0x88, 0x0d, 0xe0, 0xcc, 0xf1, 0x00, 0xc0, +0x4c, 0x01, 0x00, 0x04, 0x50, 0xf4, 0x00, 0xc0, 0x00, 0x11, 0x00, 0x40, 0xbf, 0x24, 0x01, 0x00, +0x74, 0x3c, 0x01, 0xc0, 0xcd, 0x65, 0x02, 0xc0, 0x2a, 0x42, 0x02, 0xd0, 0x49, 0x89, 0x29, 0x42, +0x0f, 0xd0, 0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x01, 0x28, 0xe3, 0xd3, 0x01, 0x2b, 0x08, 0xd1, +0x01, 0xf0, 0x50, 0xff, 0x01, 0x00, 0xf8, 0x48, 0x40, 0x8a, 0x28, 0x40, 0x08, 0x43, 0x01, 0xf0, +0x50, 0xff, 0x01, 0x23, 0x00, 0x20, 0x41, 0x00, 0x09, 0x19, 0xca, 0x88, 0x00, 0x2a, 0x02, 0xd0, +0x49, 0x89, 0x91, 0x42, 0x06, 0xd1, 0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x01, 0x28, 0xf2, 0xd3, +0x00, 0x2b, 0x0a, 0xd1, 0x01, 0x98, 0x40, 0x00, 0x00, 0x19, 0xc1, 0x88, 0x00, 0x29, 0x03, 0xd0, +0xff, 0x22, 0x20, 0x00, 0xff, 0xf7, 0x66, 0xfe, 0xfe, 0xbd, 0x01, 0x20, 0x20, 0x70, 0xe7, 0x48, +0x40, 0x69, 0x00, 0x28, 0xf8, 0xd0, 0x80, 0x47, 0xfe, 0xbd, 0xf8, 0xb5, 0x0d, 0x00, 0xc1, 0x00, +0x09, 0x18, 0xe1, 0x4a, 0xc3, 0x00, 0x78, 0x32, 0x49, 0x01, 0x18, 0x18, 0x8c, 0x18, 0x21, 0x78, +0x40, 0x01, 0x80, 0x18, 0x0c, 0x30, 0x01, 0x26, 0x00, 0x27, 0x0b, 0x00, 0x0a, 0xf3, 0xec, 0xeb, +0x04, 0x03, 0x0e, 0x1e, 0x79, 0xbb, 0x28, 0x78, 0x03, 0x28, 0x03, 0xd1, 0x00, 0x20, 0x01, 0xf0, +0x10, 0xff, 0xb0, 0xe0, 0x01, 0x28, 0xfc, 0xd1, 0x26, 0x70, 0xac, 0xe0, 0x4e, 0xa2, 0xad, 0x6a, +0x01, 0x00, 0x00, 0x00, 0xd8, 0x26, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xca, 0x1e, 0x48, 0x18, +0x28, 0x78, 0x04, 0x28, 0x04, 0xd1, 0x68, 0x68, 0x6a, 0x78, 0x01, 0x04, 0x09, 0x0c, 0x42, 0xe0, +0x02, 0x28, 0xf0, 0xd0, 0x03, 0x28, 0xee, 0xd1, 0x00, 0x20, 0x01, 0xf0, 0xfc, 0xfe, 0xf2, 0xe7, +0x29, 0x78, 0x05, 0x29, 0x04, 0xd1, 0x69, 0x68, 0x20, 0x00, 0xff, 0xf7, 0x42, 0xff, 0x94, 0xe0, +0x02, 0x29, 0x02, 0xd1, 0x03, 0x20, 0x20, 0x70, 0x8f, 0xe0, 0x04, 0x29, 0x19, 0xd1, 0x00, 0x21, +0x32, 0x00, 0x60, 0x78, 0x8a, 0x40, 0x10, 0x42, 0x0d, 0xd0, 0x48, 0x00, 0x00, 0x19, 0xc2, 0x88, +0x6b, 0x68, 0x1a, 0x43, 0xc2, 0x80, 0x02, 0x89, 0x6b, 0x68, 0x9a, 0x43, 0x02, 0x81, 0x42, 0x89, +0x6b, 0x68, 0x9a, 0x43, 0x42, 0x81, 0x49, 0x1c, 0x09, 0x06, 0x09, 0x0e, 0x01, 0x29, 0xe7, 0xd3, +0x73, 0xe0, 0x06, 0x29, 0x19, 0xd1, 0x00, 0x20, 0x41, 0x00, 0x09, 0x19, 0xc9, 0x88, 0x00, 0x29, +0x0d, 0xd0, 0xb3, 0x49, 0x49, 0x69, 0x00, 0x29, 0x01, 0xd0, 0x01, 0x22, 0x00, 0xe0, 0x00, 0x22, +0x40, 0x00, 0x00, 0x19, 0xc1, 0x88, 0x20, 0x00, 0xff, 0xf7, 0xb2, 0xfe, 0x5d, 0xe0, 0x40, 0x1c, +0x00, 0x06, 0x00, 0x0e, 0x01, 0x28, 0xe7, 0xd3, 0x57, 0xe0, 0x07, 0x29, 0x55, 0xd1, 0x0b, 0x21, +0x0a, 0xf3, 0x04, 0xea, 0x00, 0x20, 0x41, 0x00, 0x09, 0x19, 0x40, 0x1c, 0x00, 0x06, 0xcf, 0x80, +0x00, 0x0e, 0x0f, 0x81, 0x01, 0x28, 0x4f, 0x81, 0xf5, 0xd3, 0xa1, 0x49, 0x09, 0x1d, 0x08, 0x88, +0x40, 0x1c, 0x08, 0x80, 0x3f, 0xe0, 0x29, 0x78, 0x05, 0x29, 0x27, 0xd1, 0x68, 0x68, 0x01, 0x06, +0x09, 0x0e, 0x0b, 0x29, 0x39, 0xd2, 0x31, 0x00, 0x81, 0x40, 0x08, 0x04, 0xe2, 0x88, 0x61, 0x89, +0x00, 0x0c, 0x02, 0x40, 0x11, 0x43, 0x01, 0x23, 0x00, 0x20, 0x61, 0x81, 0x41, 0x00, 0x0a, 0x19, +0x11, 0x89, 0x00, 0x29, 0x02, 0xd0, 0x52, 0x89, 0x91, 0x42, 0x26, 0xd1, 0x40, 0x1c, 0x00, 0x06, +0x00, 0x0e, 0x01, 0x28, 0xf2, 0xd3, 0x00, 0x2b, 0x1f, 0xd0, 0x26, 0x70, 0xff, 0xf7, 0x13, 0xfd, +0x8b, 0x48, 0x40, 0x69, 0x00, 0x28, 0x18, 0xd0, 0x80, 0x47, 0x16, 0xe0, 0x07, 0x29, 0x14, 0xd1, +0x0b, 0x21, 0x0a, 0xf3, 0xc4, 0xe9, 0x00, 0x20, 0x41, 0x00, 0x09, 0x19, 0x40, 0x1c, 0x00, 0x06, +0xcf, 0x80, 0x00, 0x0e, 0x0f, 0x81, 0x01, 0x28, 0x4f, 0x81, 0xf5, 0xd3, 0x80, 0x49, 0x09, 0x1d, +0x48, 0x88, 0x40, 0x1c, 0x48, 0x80, 0x26, 0x70, 0x4a, 0xe7, 0x20, 0x78, 0xf8, 0xbd, 0x7c, 0xb5, +0x00, 0x26, 0x7b, 0x4d, 0x34, 0x00, 0x2a, 0x78, 0xff, 0x2a, 0x04, 0xd0, 0x01, 0x29, 0x04, 0xd1, +0x6a, 0x69, 0x00, 0x2a, 0x01, 0xd0, 0x01, 0x20, 0x7c, 0xbd, 0x04, 0x22, 0x6b, 0x46, 0x1a, 0x70, +0x59, 0x70, 0x01, 0x90, 0xa8, 0x68, 0x51, 0x1f, 0x0f, 0xf0, 0xd6, 0xfd, 0x28, 0x78, 0x69, 0x46, +0xff, 0xf7, 0x15, 0xff, 0x68, 0x69, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x24, 0xa8, 0x68, 0x0f, 0xf0, +0xd2, 0xfd, 0x00, 0x2c, 0x02, 0xd0, 0xff, 0xf7, 0xc2, 0xfc, 0x06, 0x00, 0x30, 0x00, 0x7c, 0xbd, +0x7c, 0xb5, 0x01, 0x20, 0x6b, 0x46, 0x00, 0x24, 0x18, 0x70, 0x65, 0x4d, 0x5c, 0x70, 0x81, 0x1e, +0x01, 0x94, 0xa8, 0x68, 0x0f, 0xf0, 0xb8, 0xfd, 0x20, 0x00, 0x69, 0x46, 0x2c, 0x70, 0xff, 0xf7, +0xf6, 0xfe, 0xa8, 0x68, 0x0f, 0xf0, 0xb7, 0xfd, 0x7c, 0xbd, 0x10, 0xb5, 0xff, 0xf7, 0xe8, 0xff, +0x5c, 0x48, 0x01, 0x21, 0xff, 0xf7, 0xbb, 0xff, 0x10, 0xbd, 0x5b, 0x48, 0x01, 0x21, 0x10, 0xb5, +0x00, 0x68, 0x07, 0x22, 0x49, 0x02, 0x0f, 0xf0, 0x9b, 0xfd, 0x10, 0xbd, 0x10, 0xb5, 0x54, 0x4c, +0x20, 0x78, 0xff, 0x28, 0x17, 0xd0, 0x00, 0x21, 0xa0, 0x68, 0xc9, 0x43, 0x0f, 0xf0, 0x94, 0xfd, +0x20, 0x78, 0x4e, 0x49, 0xc3, 0x00, 0x18, 0x18, 0x40, 0x01, 0x78, 0x31, 0x08, 0x5c, 0x03, 0x28, +0x06, 0xd0, 0x4d, 0x48, 0x01, 0x21, 0x00, 0x68, 0x07, 0x22, 0xc9, 0x02, 0x0f, 0xf0, 0x80, 0xfd, +0xa0, 0x68, 0x0f, 0xf0, 0x88, 0xfd, 0x10, 0xbd, 0x45, 0x48, 0x10, 0xb5, 0x00, 0x69, 0x0a, 0x21, +0x0f, 0xf0, 0x7a, 0xfd, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x20, 0x10, 0xbd, 0x70, 0xb5, 0x40, 0x4d, +0x28, 0x78, 0xff, 0x28, 0x15, 0xd0, 0x3d, 0x49, 0xc3, 0x00, 0x18, 0x18, 0x40, 0x01, 0x78, 0x31, +0x44, 0x18, 0x00, 0x21, 0xa8, 0x68, 0xc9, 0x43, 0x0f, 0xf0, 0x66, 0xfd, 0x00, 0x20, 0x01, 0xf0, +0xd2, 0xfd, 0x20, 0x00, 0x0b, 0x21, 0x0c, 0x30, 0x0a, 0xf3, 0x20, 0xe9, 0xa8, 0x68, 0x0f, 0xf0, +0x62, 0xfd, 0x70, 0xbd, 0x1c, 0xb5, 0x32, 0x4c, 0x20, 0x78, 0xff, 0x28, 0x10, 0xd0, 0x07, 0x20, +0x6b, 0x46, 0x18, 0x70, 0x00, 0x20, 0x58, 0x70, 0x41, 0x1e, 0x01, 0x90, 0xa0, 0x68, 0x0f, 0xf0, +0x4b, 0xfd, 0x20, 0x78, 0x69, 0x46, 0xff, 0xf7, 0x8a, 0xfe, 0xa0, 0x68, 0x0f, 0xf0, 0x4b, 0xfd, +0x1c, 0xbd, 0x7c, 0xb5, 0x00, 0x24, 0x26, 0x4d, 0x28, 0x78, 0xff, 0x28, 0x1d, 0xd0, 0xa8, 0x68, +0x61, 0x1e, 0x0f, 0xf0, 0x39, 0xfd, 0x02, 0x20, 0x6b, 0x46, 0x18, 0x70, 0x00, 0x20, 0x58, 0x70, +0x01, 0x90, 0x28, 0x78, 0x69, 0x46, 0xff, 0xf7, 0x72, 0xfe, 0x03, 0x28, 0x00, 0xd1, 0x01, 0x24, +0xa8, 0x68, 0x0f, 0xf0, 0x30, 0xfd, 0x00, 0x2c, 0x07, 0xd0, 0xff, 0xf7, 0xa5, 0xff, 0x00, 0x28, +0x03, 0xd0, 0xf9, 0xf7, 0xe7, 0xf8, 0xff, 0xf7, 0xc5, 0xff, 0x7c, 0xbd, 0x7c, 0xb5, 0x00, 0x24, +0x13, 0x4d, 0x28, 0x78, 0xff, 0x28, 0x1f, 0xd0, 0xa8, 0x68, 0x61, 0x1e, 0x0f, 0xf0, 0x14, 0xfd, +0x03, 0x20, 0x6b, 0x46, 0x18, 0x70, 0x01, 0x20, 0x58, 0x70, 0x0e, 0x48, 0x01, 0x90, 0x28, 0x78, +0x69, 0x46, 0xff, 0xf7, 0x4c, 0xfe, 0x68, 0x69, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x24, 0xa8, 0x68, +0x0f, 0xf0, 0x09, 0xfd, 0x00, 0x2c, 0x07, 0xd0, 0xff, 0xf7, 0xf9, 0xfb, 0x00, 0x28, 0x03, 0xd0, +0xf9, 0xf7, 0xc0, 0xf8, 0xff, 0xf7, 0x9e, 0xff, 0x7c, 0xbd, 0x00, 0x00, 0x74, 0x3c, 0x01, 0xc0, +0xcc, 0xf1, 0x00, 0xc0, 0xff, 0x07, 0x00, 0x00, 0x6c, 0xf4, 0x00, 0xc0, 0x80, 0x7d, 0x70, 0x47, +0x7c, 0xb5, 0x52, 0x4c, 0x21, 0x78, 0xff, 0x29, 0x01, 0xd1, 0x01, 0x20, 0xec, 0xe7, 0x05, 0x21, +0x6b, 0x46, 0x19, 0x70, 0x00, 0x21, 0x59, 0x70, 0x01, 0x90, 0xa0, 0x68, 0x49, 0x1e, 0x0f, 0xf0, +0xdb, 0xfc, 0x20, 0x78, 0x69, 0x46, 0xff, 0xf7, 0x1a, 0xfe, 0x05, 0x00, 0xa0, 0x68, 0x0f, 0xf0, +0xda, 0xfc, 0x28, 0x00, 0xd8, 0xe7, 0x1c, 0xb5, 0x44, 0x4c, 0x20, 0x78, 0xff, 0x28, 0x12, 0xd0, +0x04, 0x20, 0x6b, 0x46, 0x18, 0x70, 0x00, 0x20, 0x58, 0x70, 0x41, 0x48, 0x00, 0x21, 0x01, 0x90, +0xa0, 0x68, 0xc9, 0x43, 0x0f, 0xf0, 0xc0, 0xfc, 0x20, 0x78, 0x69, 0x46, 0xff, 0xf7, 0xff, 0xfd, +0xa0, 0x68, 0x0f, 0xf0, 0xc0, 0xfc, 0x1c, 0xbd, 0x7c, 0xb5, 0x05, 0x00, 0x37, 0x4c, 0x20, 0x78, +0xff, 0x28, 0xb9, 0xd0, 0x14, 0xf0, 0xe6, 0xeb, 0x01, 0x28, 0xb5, 0xd0, 0x00, 0x21, 0xa0, 0x68, +0xc9, 0x43, 0x0f, 0xf0, 0xa9, 0xfc, 0x04, 0x20, 0x6b, 0x46, 0x18, 0x70, 0x00, 0x20, 0x58, 0x70, +0x01, 0x95, 0x20, 0x78, 0x69, 0x46, 0xff, 0xf7, 0xe2, 0xfd, 0xa0, 0x68, 0xca, 0xb4, 0x13, 0x0d, +0x01, 0x00, 0x00, 0x00, 0xd4, 0x2a, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x3e, 0x71, 0x3d, 0xac, +0x0f, 0xf0, 0xa3, 0xfc, 0xa2, 0xe7, 0x1c, 0xb5, 0x29, 0x4c, 0x20, 0x78, 0xff, 0x28, 0x10, 0xd0, +0x07, 0x20, 0x6b, 0x46, 0x18, 0x70, 0x00, 0x20, 0x58, 0x70, 0x41, 0x1e, 0x01, 0x90, 0xa0, 0x68, +0x0f, 0xf0, 0x8c, 0xfc, 0x20, 0x78, 0x69, 0x46, 0xff, 0xf7, 0xcb, 0xfd, 0xa0, 0x68, 0x0f, 0xf0, +0x8c, 0xfc, 0x1c, 0xbd, 0x70, 0xb5, 0x1e, 0x4c, 0x20, 0x78, 0xff, 0x28, 0x01, 0xd1, 0x00, 0x20, +0x70, 0xbd, 0x00, 0x21, 0xa0, 0x68, 0xc9, 0x43, 0x0f, 0xf0, 0x78, 0xfc, 0x20, 0x78, 0x1a, 0x49, +0xc3, 0x00, 0x18, 0x18, 0x40, 0x01, 0x0d, 0x5c, 0x04, 0x22, 0x0a, 0x54, 0xa0, 0x68, 0x0f, 0xf0, +0x74, 0xfc, 0x28, 0x00, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x11, 0x4c, 0x20, 0x78, 0xff, 0x28, +0x0d, 0xd0, 0x00, 0x21, 0xa0, 0x68, 0xc9, 0x43, 0x0f, 0xf0, 0x60, 0xfc, 0x20, 0x78, 0x0e, 0x49, +0xc3, 0x00, 0x18, 0x18, 0x40, 0x01, 0x0d, 0x54, 0xa0, 0x68, 0x0f, 0xf0, 0x5e, 0xfc, 0x70, 0xbd, +0x07, 0x4a, 0x12, 0x78, 0xff, 0x2a, 0x01, 0xd1, 0x00, 0x20, 0x70, 0x47, 0xd3, 0x00, 0x9a, 0x18, +0x05, 0x4b, 0x52, 0x01, 0xd2, 0x18, 0x10, 0x18, 0x40, 0x18, 0x00, 0x7b, 0x70, 0x47, 0x00, 0x00, +0xcc, 0xf1, 0x00, 0xc0, 0xff, 0x07, 0x00, 0x00, 0xec, 0x3c, 0x01, 0xc0, 0x10, 0xb5, 0x04, 0x00, +0x03, 0x28, 0x0c, 0xd8, 0x11, 0x20, 0xfe, 0xf2, 0x2d, 0xfd, 0xcf, 0x21, 0x08, 0x40, 0x21, 0x01, +0x10, 0x39, 0x01, 0x43, 0x09, 0x06, 0x09, 0x0e, 0x11, 0x20, 0xfe, 0xf2, 0x3f, 0xfd, 0x10, 0xbd, +0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x16, 0x00, 0xfc, 0xf7, 0xf6, 0xfb, 0x20, 0x00, 0xff, 0xf7, +0xe5, 0xff, 0x31, 0x00, 0x28, 0x00, 0xfe, 0xf2, 0x31, 0xfd, 0x01, 0x20, 0xff, 0xf7, 0xde, 0xff, +0xfc, 0xf7, 0x25, 0xfc, 0x70, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0xfc, 0xf7, 0xe4, 0xfb, +0x20, 0x00, 0xff, 0xf7, 0xd3, 0xff, 0x28, 0x00, 0xfe, 0xf2, 0x04, 0xfd, 0x04, 0x00, 0x01, 0x20, +0xff, 0xf7, 0xcc, 0xff, 0xfc, 0xf7, 0x13, 0xfc, 0x20, 0x00, 0x70, 0xbd, 0x00, 0x02, 0xff, 0x30, +0x31, 0x30, 0x70, 0xb5, 0x00, 0x04, 0x14, 0x07, 0x00, 0x0c, 0x24, 0x0f, 0xca, 0x07, 0x0f, 0xd0, +0x49, 0x1e, 0x49, 0x10, 0x08, 0x18, 0x05, 0x04, 0x2d, 0x0c, 0x29, 0x00, 0x02, 0x20, 0xff, 0xf7, +0xda, 0xff, 0x00, 0x07, 0x00, 0x0f, 0x21, 0x01, 0x01, 0x43, 0x0a, 0x06, 0x12, 0x0e, 0x0b, 0xe0, +0x49, 0x08, 0x08, 0x18, 0x05, 0x04, 0x2d, 0x0c, 0x29, 0x00, 0x02, 0x20, 0xff, 0xf7, 0xcb, 0xff, +0x00, 0x09, 0x00, 0x01, 0x22, 0x00, 0x02, 0x43, 0x29, 0x00, 0x02, 0x20, 0xff, 0xf7, 0xb0, 0xff, +0x70, 0xbd, 0x00, 0x02, 0x40, 0x18, 0xff, 0x30, 0x11, 0x30, 0x01, 0x04, 0x09, 0x0c, 0x02, 0x20, +0xa6, 0xe7, 0xf8, 0xb5, 0x00, 0x25, 0xfc, 0xf7, 0x9f, 0xfb, 0x30, 0x27, 0x2e, 0x02, 0x30, 0x00, +0xff, 0x30, 0xb6, 0x30, 0x04, 0x04, 0x24, 0x0c, 0x20, 0x00, 0xfe, 0xf2, 0xbb, 0xfc, 0x38, 0x43, +0x01, 0x00, 0x20, 0x00, 0xfe, 0xf2, 0xd2, 0xfc, 0x30, 0x00, 0xff, 0x30, 0xba, 0x30, 0x00, 0x04, +0x00, 0x0c, 0xff, 0x21, 0xfe, 0xf2, 0xca, 0xfc, 0x30, 0x00, 0xff, 0x30, 0xbb, 0x30, 0x00, 0x04, +0x00, 0x0c, 0x00, 0x21, 0xfe, 0xf2, 0xc2, 0xfc, 0x30, 0x00, 0x41, 0x30, 0x00, 0x04, 0x00, 0x0c, +0x04, 0x21, 0xfe, 0xf2, 0xd8, 0xfc, 0x00, 0x24, 0xff, 0x22, 0x21, 0x00, 0x28, 0x00, 0x0c, 0xf0, +0xe1, 0xfa, 0x00, 0x22, 0x21, 0x00, 0x28, 0x00, 0x0c, 0xf0, 0xf1, 0xfa, 0x00, 0x22, 0x21, 0x00, +0x28, 0x00, 0xff, 0xf7, 0xbe, 0xff, 0x00, 0x22, 0x21, 0x00, 0x28, 0x00, 0xff, 0xf7, 0x8e, 0xff, +0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x10, 0x2c, 0xe6, 0xd3, 0x30, 0x00, 0xff, 0x30, 0x17, 0x30, +0x00, 0x04, 0x00, 0x0c, 0x40, 0x21, 0xfe, 0xf2, 0xb6, 0xfc, 0x30, 0x00, 0xff, 0x30, 0xa0, 0x30, +0x04, 0x04, 0x24, 0x0c, 0x80, 0x21, 0x20, 0x00, 0xfe, 0xf2, 0xad, 0xfc, 0xff, 0x36, 0x9f, 0x36, +0x30, 0x04, 0x00, 0x0c, 0x02, 0x21, 0xfe, 0xf2, 0xa6, 0xfc, 0x04, 0x21, 0x20, 0x00, 0xfe, 0xf2, +0xa2, 0xfc, 0x6d, 0x1c, 0x2d, 0x06, 0x2d, 0x0e, 0x01, 0x2d, 0x9f, 0xd3, 0xfc, 0xf7, 0x77, 0xfb, +0xf8, 0xbd, 0x08, 0x00, 0x10, 0xb5, 0xfe, 0xf2, 0x5d, 0xfc, 0x10, 0xbd, 0x08, 0x00, 0x11, 0x00, +0x10, 0xb5, 0xfe, 0xf2, 0x73, 0xfc, 0x10, 0xbd, 0xf3, 0xb5, 0x81, 0xb0, 0x00, 0x25, 0x0e, 0x00, +0x2c, 0x00, 0x01, 0x27, 0x01, 0x98, 0xfe, 0xf2, 0x4d, 0xfc, 0x31, 0x00, 0x81, 0x43, 0x04, 0xd1, +0x38, 0x00, 0xa0, 0x40, 0x28, 0x43, 0x05, 0x06, 0x2d, 0x0e, 0x64, 0x1c, 0x01, 0x2c, 0xf1, 0xdb, +0x28, 0x00, 0xfe, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0x00, 0x24, 0x31, 0x00, 0x28, 0x00, +0xfe, 0xf2, 0x54, 0xfc, 0x64, 0x1c, 0x01, 0x2c, 0xf8, 0xdb, 0x70, 0xbd, 0x70, 0xb5, 0x0c, 0x00, +0x15, 0x00, 0x08, 0x00, 0xfe, 0xf2, 0x2e, 0xfc, 0x28, 0x43, 0x01, 0x00, 0x20, 0x00, 0xfe, 0xf2, +0x45, 0xfc, 0x70, 0xbd, 0x70, 0xb5, 0x0c, 0x00, 0x15, 0x00, 0x08, 0x00, 0xfe, 0xf2, 0x22, 0xfc, +0xa8, 0x43, 0x01, 0x00, 0x20, 0x00, 0xfe, 0xf2, 0x39, 0xfc, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, +0x0e, 0x00, 0x00, 0x24, 0x20, 0x06, 0x00, 0x0e, 0x32, 0x00, 0x29, 0x00, 0xff, 0xf7, 0xde, 0xff, +0x64, 0x1c, 0x01, 0x2c, 0xf6, 0xdb, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0x00, 0x24, +0x20, 0x06, 0x00, 0x0e, 0x32, 0x00, 0x29, 0x00, 0xff, 0xf7, 0xdc, 0xff, 0x64, 0x1c, 0x01, 0x2c, +0xf6, 0xdb, 0x70, 0xbd, 0x49, 0x1e, 0x48, 0x00, 0xf9, 0x49, 0x08, 0x5a, 0x70, 0x47, 0xf8, 0xb5, +0x00, 0x24, 0xf8, 0x4d, 0x2a, 0x88, 0x00, 0x2a, 0x02, 0xd0, 0x01, 0x24, 0x00, 0x22, 0x2a, 0x80, +0xf5, 0x4b, 0xf6, 0x4e, 0x59, 0x60, 0x01, 0x22, 0x18, 0x70, 0x5a, 0x70, 0x33, 0x78, 0x00, 0x28, +0x02, 0xd1, 0xdf, 0x27, 0x3b, 0x40, 0x03, 0xe0, 0x01, 0x28, 0x02, 0xd1, 0x20, 0x27, 0x3b, 0x43, +0x33, 0x70, 0xf1, 0xf7, 0x12, 0xfb, 0x00, 0x2c, 0x01, 0xd0, 0x01, 0x20, 0x28, 0x80, 0x01, 0x20, +0xf8, 0xbd, 0xe9, 0x48, 0x40, 0x68, 0x70, 0x47, 0xe7, 0x48, 0x00, 0x78, 0x70, 0x47, 0xe6, 0x48, +0x40, 0x78, 0x70, 0x47, 0xe6, 0x48, 0x7d, 0x21, 0x10, 0xb5, 0x00, 0x68, 0x49, 0x01, 0x0e, 0xf0, +0x76, 0xea, 0x89, 0x05, 0x80, 0x0a, 0x08, 0x43, 0xe2, 0x49, 0x00, 0xe0, 0x40, 0x1e, 0x0a, 0x68, +0x00, 0x2a, 0x01, 0xdb, 0x00, 0x28, 0xf9, 0xdc, 0x00, 0x28, 0x03, 0xd1, 0xda, 0x49, 0x88, 0x68, +0x40, 0x1c, 0x88, 0x60, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xb5, 0xfe, 0xf2, 0xb3, 0xfb, 0xd6, 0x4c, +0xa0, 0x70, 0x01, 0x20, 0xfe, 0xf2, 0xae, 0xfb, 0xe0, 0x70, 0x10, 0xbd, 0x08, 0xb5, 0xfc, 0xf7, +0x83, 0xfa, 0xff, 0xf7, 0xf0, 0xff, 0xd4, 0x48, 0xfe, 0xf2, 0xcd, 0xfb, 0xfc, 0xf7, 0xb7, 0xfa, +0x00, 0x20, 0x69, 0x46, 0x02, 0xf0, 0xe8, 0xf8, 0x00, 0x28, 0x03, 0xd1, 0x6b, 0x46, 0x18, 0x70, +0x58, 0x70, 0x98, 0x70, 0xff, 0xf7, 0xcd, 0xfe, 0x00, 0xf0, 0xa6, 0xfe, 0x5b, 0x1e, 0x46, 0x99, +0x01, 0x00, 0x00, 0x00, 0xd0, 0x2e, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x6d, 0xab, 0xee, 0xc0, +0xfc, 0xf7, 0x6c, 0xfa, 0xfc, 0xf7, 0xa5, 0xfa, 0x08, 0xbd, 0x10, 0xb5, 0xff, 0xf7, 0xe0, 0xff, +0x01, 0x20, 0x0c, 0xf0, 0x18, 0xfb, 0x01, 0x20, 0x10, 0xbd, 0xc0, 0x48, 0xc0, 0x78, 0x70, 0x47, +0xbe, 0x48, 0x80, 0x78, 0x70, 0x47, 0x70, 0x47, 0x00, 0x02, 0xff, 0x30, 0x70, 0xb5, 0xbc, 0x30, +0x04, 0x04, 0x0d, 0x00, 0x24, 0x0c, 0xfc, 0xf7, 0x51, 0xfa, 0x29, 0x00, 0x20, 0x00, 0xfe, 0xf2, +0x8f, 0xfb, 0xfc, 0xf7, 0x86, 0xfa, 0x70, 0xbd, 0x00, 0x02, 0xff, 0x30, 0xbc, 0x30, 0x10, 0xb5, +0x04, 0x04, 0x24, 0x0c, 0xfc, 0xf7, 0x42, 0xfa, 0x20, 0x00, 0xfe, 0xf2, 0x65, 0xfb, 0x04, 0x00, +0xfc, 0xf7, 0x77, 0xfa, 0x20, 0x00, 0x10, 0xbd, 0xac, 0x49, 0x70, 0xb5, 0x00, 0x20, 0x4c, 0x68, +0x09, 0x78, 0x00, 0x29, 0x12, 0xd1, 0xae, 0x48, 0x45, 0x5e, 0x01, 0xf0, 0x9c, 0xfd, 0x00, 0x28, +0x03, 0xd0, 0xab, 0x49, 0x60, 0x00, 0x26, 0x31, 0x02, 0xe0, 0xa9, 0x49, 0x60, 0x00, 0x0a, 0x31, +0x40, 0x18, 0x20, 0x38, 0xc0, 0x8b, 0x40, 0x19, 0x00, 0x04, 0x00, 0x14, 0x70, 0xbd, 0x00, 0x02, +0xff, 0x30, 0x70, 0xb5, 0xe9, 0x30, 0x05, 0x04, 0x0a, 0x06, 0x0c, 0x00, 0x2d, 0x0c, 0x12, 0x0e, +0x29, 0x00, 0x03, 0x20, 0xff, 0xf7, 0x16, 0xfe, 0x20, 0x04, 0x02, 0x0e, 0x68, 0x1c, 0x01, 0x04, +0x09, 0x0c, 0x03, 0x20, 0xff, 0xf7, 0x0e, 0xfe, 0x20, 0x02, 0x02, 0x0e, 0xa8, 0x1c, 0x01, 0x04, +0x09, 0x0c, 0x03, 0x20, 0xff, 0xf7, 0x06, 0xfe, 0xed, 0x1c, 0x29, 0x04, 0x22, 0x0e, 0x09, 0x0c, +0x03, 0x20, 0xff, 0xf7, 0xff, 0xfd, 0x70, 0xbd, 0x00, 0x02, 0x70, 0xb5, 0x44, 0x18, 0x20, 0x00, +0xff, 0x30, 0x91, 0x30, 0x01, 0x04, 0x09, 0x0c, 0x02, 0x20, 0xff, 0xf7, 0x06, 0xfe, 0xff, 0x34, +0x85, 0x07, 0x71, 0x34, 0x21, 0x04, 0xad, 0x0f, 0x09, 0x0c, 0x02, 0x20, 0xff, 0xf7, 0xfd, 0xfd, +0x80, 0x00, 0x28, 0x43, 0x70, 0xbd, 0x00, 0x02, 0x40, 0x18, 0xff, 0x30, 0x51, 0x30, 0x01, 0x04, +0x09, 0x0c, 0x02, 0x20, 0x10, 0xb5, 0xff, 0xf7, 0xf0, 0xfd, 0x40, 0x06, 0x40, 0x0e, 0x10, 0xbd, +0x10, 0xb5, 0x0c, 0xf0, 0xf0, 0xf9, 0x10, 0xbd, 0x00, 0x02, 0xff, 0x30, 0x41, 0x30, 0x00, 0x04, +0x00, 0x0c, 0xca, 0x07, 0x10, 0xb5, 0x09, 0xd0, 0x49, 0x1e, 0x49, 0x10, 0x08, 0x18, 0x01, 0x04, +0x09, 0x0c, 0x02, 0x20, 0xff, 0xf7, 0xd9, 0xfd, 0x00, 0x09, 0x10, 0xbd, 0x49, 0x08, 0x08, 0x18, +0x01, 0x04, 0x09, 0x0c, 0x02, 0x20, 0xff, 0xf7, 0xd0, 0xfd, 0x00, 0x07, 0x00, 0x0f, 0x10, 0xbd, +0x00, 0x02, 0xff, 0x30, 0x80, 0x1d, 0x70, 0xb5, 0x05, 0x04, 0x2d, 0x0c, 0x00, 0x24, 0xff, 0x22, +0x29, 0x00, 0x02, 0x20, 0xff, 0xf7, 0xae, 0xfd, 0x6d, 0x1c, 0x64, 0x1c, 0x2d, 0x04, 0x24, 0x06, +0x2d, 0x0c, 0x24, 0x0e, 0x02, 0x2c, 0xf2, 0xd3, 0x70, 0xbd, 0xff, 0x23, 0x0a, 0x33, 0x70, 0xb5, +0x00, 0x2a, 0x00, 0xd1, 0x1b, 0x1f, 0xca, 0x08, 0xd2, 0x18, 0x00, 0x02, 0x80, 0x18, 0x04, 0x04, +0x4d, 0x07, 0x24, 0x0c, 0x6d, 0x0f, 0x21, 0x00, 0x02, 0x20, 0xff, 0xf7, 0xa6, 0xfd, 0x01, 0x21, +0xa9, 0x40, 0x01, 0x43, 0x0a, 0x06, 0x12, 0x0e, 0x21, 0x00, 0x02, 0x20, 0xff, 0xf7, 0x8a, 0xfd, +0x70, 0xbd, 0xf7, 0xb5, 0xcd, 0x08, 0x4e, 0x07, 0xe9, 0x1d, 0xfe, 0x31, 0x07, 0x02, 0x78, 0x18, +0x01, 0x04, 0x76, 0x0f, 0x09, 0x0c, 0x02, 0x20, 0xff, 0xf7, 0x8f, 0xfd, 0x04, 0x00, 0x02, 0x98, +0x00, 0x28, 0x08, 0xd0, 0xff, 0x35, 0x0a, 0x35, 0x78, 0x19, 0x01, 0x04, 0x09, 0x0c, 0x02, 0x20, +0xff, 0xf7, 0x83, 0xfd, 0x04, 0x43, 0x01, 0x20, 0x01, 0x00, 0xb1, 0x40, 0x21, 0x42, 0x00, 0xd0, +0x00, 0x20, 0xfe, 0xbd, 0x01, 0x00, 0x01, 0x20, 0x00, 0x29, 0x00, 0xd0, 0x00, 0x20, 0x70, 0x47, +0x10, 0xb5, 0x01, 0x24, 0x64, 0x20, 0xfc, 0xf7, 0x05, 0xf9, 0x3e, 0x48, 0x7d, 0x21, 0x00, 0x68, +0x49, 0x01, 0x0e, 0xf0, 0x26, 0xe9, 0x89, 0x05, 0x80, 0x0a, 0x08, 0x43, 0x3a, 0x49, 0x00, 0xe0, +0x40, 0x1e, 0x0a, 0x68, 0x00, 0x2a, 0x01, 0xdb, 0x00, 0x28, 0xf9, 0xdc, 0x33, 0x49, 0x00, 0x28, +0x05, 0xd1, 0xc8, 0x68, 0x01, 0x22, 0x00, 0x24, 0x12, 0x04, 0x80, 0x18, 0x01, 0xe0, 0xc8, 0x68, +0x40, 0x1c, 0xc8, 0x60, 0x20, 0x00, 0x10, 0xbd, 0xf7, 0xb5, 0x84, 0xb0, 0x04, 0x00, 0x0d, 0x00, +0x03, 0x20, 0xff, 0xf7, 0x25, 0xfd, 0x2f, 0x4e, 0x2f, 0x4f, 0x06, 0x9a, 0x29, 0x00, 0x20, 0x00, +0xff, 0xf7, 0xbb, 0xf9, 0x00, 0x90, 0x00, 0x06, 0x00, 0x0e, 0x6b, 0x46, 0x18, 0x71, 0x03, 0x90, +0x00, 0x98, 0x00, 0x0a, 0x58, 0x71, 0x00, 0x24, 0x02, 0x90, 0x01, 0x20, 0x00, 0x99, 0xa0, 0x40, +0x08, 0x42, 0x0f, 0xd0, 0x00, 0x25, 0x07, 0xe0, 0x00, 0x19, 0x89, 0x19, 0x00, 0x04, 0x89, 0x78, +0x00, 0x0c, 0xfe, 0xf2, 0x55, 0xfa, 0x6d, 0x1c, 0xa9, 0x00, 0x70, 0x5a, 0x1f, 0x4a, 0x90, 0x42, +0xf2, 0xd1, 0x0e, 0xe0, 0x00, 0x25, 0x07, 0xe0, 0x00, 0x19, 0xc9, 0x19, 0x00, 0x04, 0x89, 0x78, +0x00, 0x0c, 0xfe, 0xf2, 0x45, 0xfa, 0x6d, 0x1c, 0xa9, 0x00, 0x78, 0x5a, 0x17, 0x4a, 0x90, 0x42, +0xf2, 0xd1, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x10, 0x2c, 0xd6, 0xd3, 0xff, 0x20, 0x03, 0x99, +0xed, 0x30, 0xfe, 0xf2, 0x35, 0xfa, 0xff, 0x20, 0x02, 0x99, 0xee, 0x30, 0xfe, 0xf2, 0x30, 0xfa, +0x01, 0xf0, 0x59, 0xfc, 0x00, 0x28, 0x32, 0xd0, 0x0d, 0x4d, 0x0e, 0x4e, 0x0b, 0x4f, 0x00, 0x24, +0x1f, 0xe0, 0x00, 0x00, 0xe8, 0x0d, 0x32, 0x00, 0xac, 0xf5, 0x00, 0xc0, 0x3c, 0xf2, 0x00, 0xc0, +0x82, 0x55, 0x00, 0x04, 0x6c, 0x1b, 0x01, 0xc0, 0x00, 0x2b, 0x00, 0x80, 0xa4, 0xf6, 0x00, 0xc0, +0x0c, 0x3e, 0x01, 0xc0, 0x7c, 0xf8, 0x00, 0xc0, 0x70, 0xf8, 0x00, 0xc0, 0xff, 0xff, 0x00, 0x00, +0x9c, 0xf8, 0x00, 0xc0, 0xf0, 0xf8, 0x00, 0xc0, 0x49, 0x19, 0x89, 0x78, 0xfe, 0xf2, 0x08, 0xfa, +0x64, 0x1c, 0xa1, 0x00, 0x68, 0x5a, 0xb8, 0x42, 0xf6, 0xd1, 0x00, 0x24, 0x03, 0xe0, 0x20, 0x21, +0xfe, 0xf2, 0x1b, 0xfa, 0x64, 0x1c, 0xa0, 0x00, 0x30, 0x5a, 0xb8, 0x42, 0xf7, 0xd1, 0x01, 0x20, +0xff, 0xf7, 0xa6, 0xfc, 0x07, 0xb0, 0xf0, 0xbd, 0x00, 0x28, 0x10, 0xb5, 0x01, 0xd0, 0x01, 0x24, +0x00, 0xe0, 0x00, 0x24, 0x00, 0x22, 0x01, 0x29, 0x06, 0xd0, 0x48, 0x08, 0x01, 0x28, 0x01, 0xd1, +0x01, 0x22, 0x01, 0xe0, 0x00, 0x22, 0xd2, 0x43, 0x15, 0x49, 0xa0, 0x00, 0x08, 0x58, 0x51, 0x1c, +0x01, 0xd1, 0x00, 0x24, 0x06, 0xe0, 0x0c, 0x21, 0x11, 0x4b, 0x61, 0x43, 0x08, 0x33, 0xc9, 0x18, +0x92, 0x00, 0x8c, 0x58, 0xfe, 0xf2, 0xe1, 0xf9, 0x20, 0x00, 0xfe, 0xf2, 0xde, 0xf9, 0x10, 0xbd, +0x70, 0x47, 0x10, 0xb5, 0xfc, 0xf7, 0x87, 0xf9, 0x0a, 0x49, 0x40, 0x00, 0x08, 0x5a, 0x10, 0xbd, +0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0xff, 0xf7, 0xf4, 0xff, 0x03, 0x00, 0x29, 0x00, 0x20, 0x00, +0xff, 0xf7, 0xa2, 0xfd, 0x00, 0x22, 0x19, 0x00, 0xfe, 0xf2, 0xed, 0xf9, 0x70, 0xbd, 0x00, 0x00, +0x4c, 0xf2, 0x00, 0xc0, 0xb8, 0x74, 0x02, 0x00, 0x70, 0xb5, 0x0d, 0x00, 0xef, 0x55, 0x42, 0x5f, +0x01, 0x00, 0x00, 0x00, 0xcc, 0x32, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xd2, 0x6e, 0xcb, 0x73, +0x04, 0x6c, 0x26, 0x00, 0x1c, 0x3e, 0x00, 0x2c, 0x09, 0xd0, 0x30, 0x00, 0x13, 0xf0, 0xfe, 0xfb, +0x00, 0x28, 0x04, 0xd0, 0x60, 0x34, 0x30, 0x00, 0x25, 0x72, 0x13, 0xf0, 0x0e, 0xfd, 0x70, 0xbd, +0x10, 0xb5, 0x04, 0x6c, 0x1c, 0x3c, 0x08, 0xd0, 0x20, 0x00, 0x13, 0xf0, 0xef, 0xfb, 0x00, 0x28, +0x03, 0xd0, 0x00, 0x21, 0x20, 0x00, 0x0e, 0xf0, 0x2b, 0xfa, 0x10, 0xbd, 0xf3, 0xb5, 0x83, 0xb0, +0x00, 0x25, 0x0e, 0xf0, 0x35, 0xfa, 0x00, 0x90, 0x03, 0x98, 0x3a, 0x49, 0x80, 0x00, 0x0f, 0x58, +0x39, 0x49, 0x09, 0x58, 0x39, 0x48, 0x01, 0x90, 0x38, 0x68, 0x09, 0x68, 0xc4, 0x05, 0xc9, 0x05, +0xc9, 0x0d, 0xe4, 0x0d, 0x02, 0x91, 0x21, 0xe0, 0x03, 0x98, 0x21, 0x06, 0x00, 0x02, 0x09, 0x0e, +0x08, 0x43, 0x01, 0x99, 0x09, 0x68, 0x08, 0x43, 0x06, 0x68, 0x24, 0x1d, 0xe4, 0x05, 0xe4, 0x0d, +0x3c, 0x60, 0x00, 0x2d, 0x0d, 0xd0, 0x04, 0x99, 0x70, 0x68, 0xff, 0x31, 0x80, 0x1d, 0x06, 0x22, +0x4a, 0x31, 0x0d, 0xf0, 0x31, 0xff, 0x00, 0x28, 0x03, 0xd1, 0x30, 0x00, 0xff, 0xf7, 0xc0, 0xff, +0x04, 0xe0, 0x03, 0x99, 0x30, 0x00, 0xff, 0xf7, 0xa9, 0xff, 0x01, 0x25, 0x02, 0x98, 0x84, 0x42, +0xda, 0xd1, 0x00, 0x98, 0x0e, 0xf0, 0x00, 0xfa, 0x05, 0xb0, 0xf0, 0xbd, 0x38, 0xb5, 0x82, 0x00, +0x1c, 0x4b, 0x9c, 0x58, 0x1c, 0x4b, 0x9b, 0x58, 0x1c, 0x4a, 0x00, 0x92, 0x22, 0x00, 0x00, 0xf3, +0x21, 0xf9, 0x38, 0xbd, 0xfe, 0xb5, 0xff, 0x33, 0x05, 0x00, 0x0c, 0x00, 0x15, 0x48, 0x16, 0x00, +0x15, 0x4a, 0x89, 0x00, 0x40, 0x58, 0x51, 0x58, 0x14, 0x4a, 0x6f, 0x46, 0x07, 0xc7, 0x4a, 0x33, +0x32, 0x00, 0x21, 0x00, 0x28, 0x00, 0x00, 0xf3, 0x37, 0xf9, 0xfe, 0xbd, 0x05, 0x20, 0x10, 0xb5, +0x0b, 0xf0, 0x86, 0xff, 0x0e, 0x49, 0x00, 0x04, 0x08, 0x43, 0x10, 0xbd, 0x70, 0xb5, 0x0c, 0x00, +0x01, 0x21, 0x09, 0x03, 0x01, 0x28, 0x00, 0xd8, 0x00, 0x21, 0x00, 0x02, 0x0d, 0x18, 0xff, 0xf7, +0xed, 0xff, 0x00, 0x2c, 0x02, 0xd0, 0x01, 0x21, 0x89, 0x03, 0x08, 0x43, 0x05, 0x49, 0x69, 0x18, +0x88, 0x60, 0x70, 0xbd, 0xa8, 0x01, 0x00, 0x04, 0xe0, 0x01, 0x00, 0x04, 0x00, 0xa0, 0x00, 0x80, +0x28, 0x80, 0x00, 0x40, 0x40, 0xaa, 0x00, 0x80, 0x0c, 0x48, 0x10, 0xb5, 0x00, 0x78, 0x02, 0x28, +0x0a, 0xd1, 0x0b, 0x48, 0xc1, 0x6a, 0x10, 0x22, 0x11, 0x43, 0xc1, 0x62, 0x01, 0x22, 0x09, 0x49, +0x04, 0x20, 0x13, 0x00, 0xf7, 0xf2, 0x4d, 0xfb, 0x10, 0xbd, 0x04, 0x48, 0x10, 0xb5, 0x00, 0x78, +0x02, 0x28, 0x02, 0xd1, 0x04, 0x20, 0xf7, 0xf2, 0xf4, 0xfb, 0x10, 0xbd, 0x98, 0xee, 0x00, 0xc0, +0x00, 0x23, 0x00, 0x80, 0xc3, 0xbb, 0x00, 0x00, 0xfb, 0x4b, 0x10, 0xb5, 0x00, 0x20, 0x1c, 0x00, +0x38, 0x34, 0x81, 0x00, 0x5a, 0x58, 0x12, 0x68, 0x61, 0x58, 0x0a, 0x60, 0x40, 0x1c, 0x0e, 0x28, +0xf7, 0xd3, 0xf6, 0x4b, 0x00, 0x20, 0x1c, 0x1f, 0xc1, 0x00, 0xca, 0x18, 0x12, 0x68, 0x09, 0x19, +0x0a, 0x60, 0x40, 0x1c, 0x08, 0x28, 0xf7, 0xd3, 0x00, 0x20, 0x10, 0xbd, 0x80, 0x30, 0x10, 0xb5, +0xc0, 0x69, 0xfe, 0xf2, 0xf3, 0xfe, 0x10, 0xbd, 0x38, 0xb5, 0x14, 0x00, 0x04, 0x9a, 0x00, 0x92, +0x80, 0x30, 0xc0, 0x69, 0x22, 0x00, 0xfe, 0xf2, 0x00, 0xff, 0x38, 0xbd, 0x38, 0xb5, 0x14, 0x00, +0x04, 0x9a, 0x00, 0x92, 0x22, 0x00, 0xfe, 0xf2, 0x10, 0xff, 0x38, 0xbd, 0x70, 0xb5, 0x05, 0x00, +0xe3, 0x48, 0x0c, 0x00, 0x01, 0x88, 0xa1, 0x42, 0x1c, 0xd0, 0x04, 0x80, 0x28, 0x00, 0x11, 0xf0, +0xe3, 0xfa, 0xf9, 0xf7, 0x2c, 0xff, 0x00, 0x28, 0x14, 0xd1, 0xde, 0x49, 0x00, 0x2c, 0x12, 0xd0, +0x02, 0x2d, 0x01, 0xd1, 0x1f, 0x26, 0x00, 0xe0, 0x0f, 0x26, 0x0d, 0x00, 0x00, 0x24, 0x31, 0x00, +0x20, 0x00, 0xfe, 0xf2, 0x36, 0xfb, 0x29, 0x00, 0x20, 0x00, 0xfe, 0xf2, 0x3c, 0xfb, 0x64, 0x1c, +0x03, 0x2c, 0xf4, 0xdd, 0x70, 0xbd, 0x0f, 0x20, 0x3f, 0x22, 0xfe, 0xf2, 0xf8, 0xfe, 0x70, 0xbd, +0x01, 0x00, 0x00, 0x20, 0x0e, 0x29, 0x07, 0xd2, 0xcf, 0x48, 0x07, 0x29, 0x01, 0xd8, 0x89, 0x00, +0x08, 0x18, 0x00, 0x6b, 0x00, 0x04, 0x00, 0x0c, 0x70, 0x47, 0x0e, 0x28, 0x05, 0xd2, 0xca, 0x4a, +0x07, 0x28, 0x03, 0xd8, 0x80, 0x00, 0x80, 0x18, 0x01, 0x63, 0x70, 0x47, 0x11, 0x63, 0x70, 0x47, +0xf0, 0xb5, 0x00, 0x20, 0x87, 0xb0, 0xf9, 0xf7, 0x96, 0xfe, 0x00, 0x28, 0x04, 0xd1, 0x01, 0x20, +0xf9, 0xf7, 0x91, 0xfe, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x21, 0x00, 0xe0, 0x00, 0x21, 0x02, 0x20, +0x05, 0x91, 0xf9, 0xf7, 0x88, 0xfe, 0x04, 0x90, 0x03, 0x20, 0xf9, 0xf7, 0x84, 0xfe, 0xbf, 0x49, +0x00, 0x91, 0x4c, 0x14, 0x05, 0x99, 0xb9, 0x4a, 0xb9, 0x4b, 0xba, 0x4e, 0xba, 0x4f, 0x25, 0x00, +0x00, 0x29, 0x03, 0x93, 0x02, 0x92, 0x01, 0xd0, 0x15, 0x00, 0x1c, 0x00, 0x04, 0x99, 0x01, 0x43, +0x1f, 0xd0, 0x02, 0x20, 0x08, 0xf0, 0x0d, 0xfd, 0x00, 0x28, 0x01, 0xd0, 0x35, 0x40, 0x3c, 0x40, +0x03, 0x20, 0x08, 0xf0, 0x06, 0xfd, 0x00, 0x28, 0x03, 0xd0, 0x02, 0x98, 0x03, 0x99, 0x05, 0x40, +0x0c, 0x40, 0x01, 0x20, 0x08, 0xf0, 0xfd, 0xfc, 0x00, 0x28, 0x05, 0xd0, 0x00, 0x98, 0x02, 0x99, +0x05, 0x40, 0x03, 0x98, 0x0d, 0x40, 0x04, 0x40, 0x04, 0x98, 0x00, 0x28, 0x01, 0xd0, 0x35, 0x40, +0x3c, 0x40, 0xa7, 0x48, 0xc5, 0x62, 0x04, 0x63, 0x07, 0xb0, 0xf0, 0xbd, 0x70, 0xb5, 0x06, 0x00, +0xff, 0xf2, 0x0e, 0xfa, 0xa3, 0x4c, 0x25, 0x0c, 0x00, 0x2e, 0x07, 0xd0, 0xa2, 0x49, 0x00, 0x20, +0x08, 0x62, 0xff, 0xf7, 0xa5, 0xff, 0xe0, 0x68, 0x28, 0x43, 0x16, 0xe0, 0xfa, 0xf7, 0x78, 0xfb, +0x00, 0x28, 0x10, 0xd0, 0x03, 0x21, 0x00, 0x20, 0xfe, 0xf2, 0xcc, 0xfb, 0x92, 0x48, 0x80, 0x30, +0x01, 0x68, 0x01, 0x22, 0xd2, 0x06, 0x91, 0x43, 0x01, 0x60, 0x01, 0x68, 0x0e, 0x22, 0x49, 0x08, +0x49, 0x00, 0x11, 0x43, 0x01, 0x60, 0xe0, 0x68, 0xa8, 0x43, 0xe0, 0x60, 0x70, 0xbd, 0x88, 0x48, +0xc0, 0x68, 0x70, 0x47, 0x86, 0x4a, 0x0b, 0x00, 0x08, 0x21, 0xa4, 0x32, 0x48, 0x01, 0x10, 0xb5, +0xff, 0xf2, 0xd7, 0xf8, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x20, 0x10, 0xbd, 0x80, 0x4a, 0x08, 0x21, +0x24, 0x32, 0x00, 0x20, 0x10, 0xb5, 0xff, 0xf2, 0xae, 0xf8, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x20, +0x10, 0xbd, 0x10, 0xb5, 0x0b, 0xf0, 0xe6, 0xff, 0x0b, 0xf0, 0xde, 0xff, 0xff, 0xf7, 0xee, 0xff, +0x77, 0x48, 0x00, 0x21, 0xc0, 0x68, 0x00, 0x06, 0x00, 0x0e, 0xff, 0xf7, 0xdb, 0xff, 0x10, 0xbd, +0x10, 0xb5, 0xff, 0xf7, 0xee, 0xff, 0x00, 0x20, 0x0b, 0xf0, 0xac, 0xff, 0x10, 0xbd, 0x10, 0xb5, +0xd0, 0x24, 0x00, 0x21, 0x22, 0x00, 0x08, 0x00, 0xff, 0xf2, 0x28, 0xf8, 0x64, 0x1c, 0xff, 0x2c, +0xf7, 0xd9, 0x10, 0xbd, 0x38, 0xb5, 0x22, 0x20, 0x6b, 0x46, 0x18, 0x70, 0x32, 0x20, 0x58, 0x70, +0xff, 0x20, 0x98, 0x70, 0x66, 0x48, 0x0d, 0x00, 0x41, 0x60, 0x81, 0x68, 0x14, 0x00, 0x00, 0x29, +0x04, 0xd1, 0x01, 0x21, 0x81, 0x60, 0xfb, 0xf7, 0x39, 0xfe, 0x02, 0xe0, 0x37, 0xf5, 0xcc, 0x5e, +0x01, 0x00, 0x00, 0x00, 0xc8, 0x36, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x81, 0xb4, 0x18, 0x1f, +0x01, 0x20, 0xf8, 0xf7, 0x47, 0xfa, 0x28, 0x00, 0xff, 0xf2, 0x34, 0xf9, 0x00, 0x28, 0x72, 0xd0, +0xff, 0xf7, 0xbc, 0xfe, 0x66, 0x48, 0x5d, 0x49, 0x40, 0x6a, 0x02, 0x00, 0x20, 0x32, 0x13, 0x79, +0x0b, 0x62, 0x52, 0x79, 0x4a, 0x62, 0x63, 0x4a, 0x03, 0x78, 0x93, 0x62, 0x43, 0x88, 0xd3, 0x62, +0x80, 0x6a, 0x02, 0x04, 0x12, 0x0c, 0x00, 0x20, 0x83, 0x00, 0x5b, 0x18, 0x1a, 0x63, 0x40, 0x1c, +0x07, 0x28, 0xf9, 0xdd, 0x01, 0x20, 0xfe, 0xf2, 0x63, 0xff, 0xfe, 0xf2, 0xe7, 0xf8, 0xff, 0xf7, +0xb8, 0xff, 0x68, 0x46, 0xfe, 0xf2, 0xfe, 0xf8, 0x49, 0x49, 0x34, 0x39, 0x88, 0x6a, 0x05, 0x22, +0x12, 0x06, 0x90, 0x43, 0x88, 0x62, 0x4f, 0x48, 0xc0, 0x30, 0x01, 0x68, 0x89, 0x08, 0x89, 0x00, +0x01, 0x60, 0x4c, 0x49, 0x1e, 0x20, 0x88, 0x62, 0x20, 0x00, 0xf1, 0xf7, 0x44, 0xfd, 0xff, 0xf2, +0x7b, 0xf9, 0x41, 0x49, 0x3f, 0x22, 0x0f, 0x20, 0xfe, 0xf2, 0xd3, 0xfd, 0x3c, 0x49, 0x4a, 0x48, +0x8c, 0x31, 0x08, 0x60, 0xff, 0xf2, 0xca, 0xfd, 0x00, 0xf3, 0x8c, 0xf8, 0xff, 0xf7, 0x8a, 0xff, +0xfe, 0xf2, 0x78, 0xf9, 0xff, 0xf2, 0xce, 0xfa, 0x44, 0x48, 0x01, 0x68, 0x0b, 0x22, 0x09, 0x04, +0x09, 0x0c, 0x52, 0x04, 0x89, 0x18, 0x01, 0x60, 0x41, 0x49, 0x08, 0x68, 0x8a, 0x0c, 0x90, 0x43, +0x08, 0x60, 0xed, 0xf7, 0x23, 0xfc, 0x2e, 0x49, 0x74, 0x39, 0x08, 0x68, 0x01, 0x22, 0xd2, 0x06, +0x10, 0x43, 0x08, 0x60, 0x2d, 0x49, 0x40, 0x31, 0x08, 0x69, 0x0a, 0x0d, 0x10, 0x43, 0x08, 0x61, +0x32, 0x48, 0xc0, 0x38, 0x0b, 0xf0, 0x80, 0xff, 0x28, 0x49, 0xc0, 0x31, 0x08, 0x6b, 0x03, 0x22, +0x10, 0x43, 0x08, 0x63, 0x01, 0x20, 0x38, 0xbd, 0x2b, 0x49, 0x04, 0x20, 0x10, 0xb5, 0x08, 0x60, +0x06, 0x20, 0xfb, 0xf7, 0x9b, 0xfd, 0x2f, 0x48, 0x00, 0x68, 0xc0, 0x6b, 0xf1, 0xf7, 0xfb, 0xfc, +0x10, 0xbd, 0x10, 0xb5, 0x0c, 0x00, 0x11, 0x00, 0x0b, 0x22, 0x92, 0x01, 0x80, 0x18, 0x02, 0x69, +0x20, 0x00, 0x40, 0x32, 0x53, 0x7d, 0x12, 0x7d, 0x0c, 0x30, 0xfe, 0xf2, 0x4f, 0xfe, 0x10, 0xbd, +0x70, 0xb5, 0x06, 0x00, 0x49, 0x65, 0xc8, 0x6d, 0x0c, 0x00, 0x0d, 0x00, 0x01, 0x88, 0x82, 0x1d, +0x14, 0x34, 0x30, 0x00, 0x13, 0xf0, 0x2d, 0xfa, 0x02, 0x00, 0xe9, 0x6d, 0x20, 0x00, 0xfe, 0xf2, +0x57, 0xfe, 0x28, 0x88, 0x20, 0x84, 0x60, 0x68, 0x80, 0x78, 0x00, 0x09, 0x05, 0x28, 0x33, 0xd1, +0xe0, 0x69, 0x01, 0x21, 0x49, 0x06, 0x08, 0x43, 0xe0, 0x61, 0x03, 0x21, 0x28, 0x00, 0x21, 0x70, +0x02, 0x21, 0x0c, 0x30, 0xfe, 0xf2, 0x1b, 0xfe, 0x2b, 0xe0, 0x00, 0x00, 0xa8, 0x01, 0x00, 0x04, +0x34, 0xa9, 0x00, 0x80, 0x90, 0x1b, 0x01, 0xc0, 0xff, 0x03, 0x00, 0x00, 0x80, 0xa2, 0x00, 0x80, +0xeb, 0xef, 0xeb, 0xff, 0xe8, 0xee, 0xea, 0xff, 0xfa, 0xfe, 0xfa, 0xff, 0xf8, 0xec, 0xea, 0xff, +0xff, 0xff, 0xfe, 0xff, 0x40, 0xa4, 0x00, 0x80, 0x00, 0xa8, 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, +0x38, 0x52, 0x00, 0x04, 0x00, 0xa6, 0x00, 0x80, 0x01, 0x00, 0x03, 0x00, 0x00, 0xae, 0x00, 0x80, +0x00, 0x21, 0x00, 0x80, 0xf4, 0x1c, 0x01, 0xc0, 0x22, 0x00, 0x29, 0x00, 0x30, 0x00, 0xff, 0xf7, +0xa0, 0xff, 0xe1, 0x69, 0x01, 0x22, 0x12, 0x03, 0xa8, 0x78, 0x91, 0x43, 0xe1, 0x61, 0x04, 0xf3, +0x47, 0xff, 0xe5, 0x63, 0xe0, 0x62, 0x70, 0xbd, 0x01, 0x00, 0xca, 0x00, 0xf8, 0x49, 0x00, 0x20, +0x51, 0x18, 0x09, 0x68, 0xf6, 0x4b, 0x1b, 0x1d, 0xd2, 0x18, 0x12, 0x68, 0xd2, 0x06, 0xd2, 0x0e, +0x01, 0xe0, 0x09, 0x1d, 0x40, 0x1c, 0x0b, 0x1d, 0xdb, 0x06, 0xdb, 0x0e, 0x93, 0x42, 0xf8, 0xd1, +0x70, 0x47, 0xf8, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0x17, 0x00, 0x01, 0x24, 0x0d, 0xf0, 0x4a, 0xff, +0x80, 0x37, 0x00, 0x90, 0x39, 0x7a, 0xea, 0x4a, 0xc8, 0x00, 0x12, 0x1d, 0x83, 0x18, 0x12, 0x1f, +0xe8, 0x4f, 0x82, 0x18, 0x0c, 0x2e, 0x19, 0xd1, 0x10, 0x68, 0x1b, 0x68, 0x06, 0x1d, 0xf6, 0x06, +0xdb, 0x06, 0xf6, 0x0e, 0xdb, 0x0e, 0x9e, 0x42, 0x01, 0xd1, 0x00, 0x24, 0x13, 0xe0, 0x3b, 0x68, +0x03, 0x26, 0xb6, 0x02, 0x33, 0x43, 0xc6, 0x06, 0xf6, 0x0e, 0x49, 0x01, 0x0e, 0x43, 0x33, 0x43, +0x1d, 0x60, 0x00, 0x1d, 0x80, 0x06, 0x80, 0x0e, 0x10, 0x60, 0x04, 0xe0, 0xda, 0x48, 0xec, 0xf7, +0xe7, 0xfb, 0x13, 0xf0, 0xd4, 0xeb, 0x00, 0x98, 0x0d, 0xf0, 0x20, 0xff, 0x20, 0x00, 0xf8, 0xbd, +0xf8, 0xb5, 0x05, 0x00, 0x00, 0x89, 0x6f, 0x69, 0x44, 0x19, 0xe0, 0x6d, 0x00, 0x28, 0x1e, 0xd0, +0x00, 0x2f, 0x07, 0xd1, 0x0d, 0xf0, 0x0e, 0xff, 0xcf, 0x48, 0x40, 0x1c, 0xec, 0xf7, 0xd0, 0xfb, +0x13, 0xf0, 0xbc, 0xeb, 0x26, 0x00, 0x14, 0x36, 0x21, 0x00, 0x38, 0x00, 0xff, 0xf7, 0x40, 0xff, +0x28, 0x00, 0x13, 0xf0, 0x89, 0xf8, 0x60, 0x34, 0x21, 0x7a, 0x3a, 0x00, 0x30, 0x00, 0xff, 0xf7, +0xa8, 0xff, 0x00, 0x28, 0x04, 0xd1, 0x28, 0x00, 0x13, 0xf0, 0xa2, 0xf8, 0x00, 0x20, 0xf8, 0xbd, +0x01, 0x20, 0xf8, 0xbd, 0xf8, 0xb5, 0x05, 0x00, 0x01, 0x27, 0x00, 0x89, 0x6e, 0x69, 0x44, 0x19, +0x28, 0x00, 0x13, 0xf0, 0x71, 0xf8, 0x68, 0x20, 0x01, 0x5d, 0x20, 0x00, 0x32, 0x00, 0x14, 0x30, +0xff, 0xf7, 0x8f, 0xff, 0x00, 0x28, 0x03, 0xd1, 0x28, 0x00, 0x13, 0xf0, 0x89, 0xf8, 0x00, 0x27, +0x38, 0x00, 0xf8, 0xbd, 0xf8, 0xb5, 0x05, 0x00, 0x00, 0x89, 0x6e, 0x69, 0x44, 0x19, 0x00, 0x2e, +0x02, 0xd1, 0x0d, 0xf0, 0xcf, 0xfe, 0xfe, 0xe7, 0xe0, 0x6d, 0x27, 0x00, 0x14, 0x37, 0x00, 0x28, +0x1c, 0xd0, 0x21, 0x00, 0x30, 0x00, 0xff, 0xf7, 0x03, 0xff, 0x78, 0x68, 0x80, 0x78, 0x00, 0x09, +0x09, 0x28, 0x02, 0xd1, 0x01, 0x21, 0x68, 0x20, 0x01, 0x55, 0x28, 0x00, 0x13, 0xf0, 0x44, 0xf8, +0x21, 0x00, 0x30, 0x00, 0x13, 0xf0, 0xcf, 0xf8, 0x00, 0x28, 0x06, 0xd1, 0x28, 0x00, 0x13, 0xf0, +0x5f, 0xf8, 0x01, 0x20, 0xed, 0xf7, 0x52, 0xfb, 0xef, 0xe7, 0x01, 0x20, 0xf8, 0xbd, 0x70, 0xb5, +0x06, 0x00, 0x49, 0x65, 0xc8, 0x6d, 0x0c, 0x00, 0x0d, 0x00, 0x14, 0x34, 0x00, 0x28, 0x3c, 0xd0, +0x00, 0x21, 0x60, 0x60, 0x21, 0x81, 0x29, 0x88, 0x21, 0x84, 0x20, 0x8d, 0x7f, 0x21, 0xc9, 0x00, +0x88, 0x43, 0xa9, 0x78, 0x49, 0x06, 0x89, 0x0d, 0x08, 0x43, 0x20, 0x85, 0xe2, 0x61, 0xe9, 0x88, +0x61, 0x84, 0xa8, 0x88, 0x00, 0x28, 0x06, 0xd0, 0x60, 0x88, 0x00, 0x04, 0x03, 0xd4, 0x21, 0x00, +0x28, 0x00, 0x13, 0xf0, 0xd5, 0xf9, 0x60, 0x68, 0x80, 0x78, 0x01, 0x07, 0x89, 0x0f, 0x01, 0x29, +0x0b, 0xd1, 0x01, 0x09, 0x28, 0x00, 0x0c, 0x30, 0x0a, 0x29, 0x01, 0xd1, 0x00, 0x21, 0x02, 0xe0, +0x08, 0x29, 0x02, 0xd1, 0x03, 0x21, 0xfe, 0xf2, 0xf2, 0xfc, 0x22, 0x00, 0x29, 0x00, 0x30, 0x00, +0xff, 0xf7, 0x9f, 0xfe, 0x22, 0x00, 0x29, 0x00, 0x30, 0x00, 0x13, 0xf0, 0x09, 0xf9, 0x29, 0x8a, +0xa1, 0x81, 0x69, 0x8a, 0xe1, 0x81, 0x01, 0x20, 0xe5, 0x63, 0x70, 0xbd, 0xf8, 0xb5, 0x04, 0x00, +0x0f, 0x00, 0x00, 0x89, 0x66, 0x69, 0x05, 0x19, 0x00, 0x2e, 0x07, 0xd1, 0x21, 0xf8, 0xe9, 0x1f, +0x01, 0x00, 0x00, 0x00, 0xc4, 0x3a, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x75, 0xdb, 0x6d, 0xab, +0x0d, 0xf0, 0x5a, 0xfe, 0x75, 0x48, 0x80, 0x1c, 0xec, 0xf7, 0x1c, 0xfb, 0x13, 0xf0, 0x08, 0xeb, +0xe8, 0x6d, 0x00, 0x28, 0x24, 0xd0, 0x0d, 0xf0, 0x4f, 0xfe, 0x00, 0x90, 0x20, 0x00, 0x12, 0xf0, +0xd5, 0xff, 0x3a, 0x00, 0x29, 0x00, 0x30, 0x00, 0xff, 0xf7, 0x9b, 0xff, 0x0e, 0xe0, 0x20, 0x00, +0x12, 0xf0, 0xf0, 0xff, 0x00, 0x98, 0x0d, 0xf0, 0x43, 0xfe, 0x01, 0x20, 0xed, 0xf7, 0xe0, 0xfa, +0x0d, 0xf0, 0x3a, 0xfe, 0x00, 0x90, 0x20, 0x00, 0x12, 0xf0, 0xc0, 0xff, 0x29, 0x00, 0x30, 0x00, +0x13, 0xf0, 0x4b, 0xf8, 0x00, 0x28, 0xea, 0xd0, 0x00, 0x98, 0x0d, 0xf0, 0x31, 0xfe, 0x01, 0x20, +0xf8, 0xbd, 0x1c, 0xb5, 0x02, 0x00, 0xa3, 0x32, 0x0c, 0x00, 0x51, 0x1e, 0x01, 0x92, 0x4b, 0x1e, +0x8a, 0x1e, 0x00, 0x91, 0x21, 0x00, 0x9c, 0x30, 0xfe, 0xf2, 0xed, 0xfc, 0x1c, 0xbd, 0x10, 0xb5, +0x04, 0x00, 0xa0, 0x34, 0x80, 0x30, 0xe3, 0x78, 0xa2, 0x78, 0xc0, 0x69, 0xfe, 0xf2, 0xf6, 0xff, +0x10, 0xbd, 0x0a, 0x00, 0x80, 0x30, 0x10, 0xb5, 0xc1, 0x69, 0x10, 0x00, 0xfe, 0xf2, 0x70, 0xfb, +0x10, 0xbd, 0x4f, 0x4a, 0x10, 0xb5, 0x12, 0x69, 0x04, 0x23, 0x1a, 0x40, 0x4d, 0x4b, 0x1a, 0x62, +0x4d, 0x4a, 0xfe, 0xf2, 0x73, 0xfd, 0x10, 0xbd, 0x49, 0x48, 0x01, 0x69, 0x89, 0x08, 0x89, 0x00, +0x01, 0x61, 0x01, 0x69, 0x47, 0x4a, 0x12, 0x6a, 0x11, 0x43, 0x01, 0x61, 0x70, 0x47, 0x00, 0x28, +0x01, 0xd1, 0x08, 0x20, 0x70, 0x47, 0x10, 0x20, 0x70, 0x47, 0x41, 0x49, 0x20, 0x31, 0x08, 0x75, +0x70, 0x47, 0x42, 0x4a, 0x80, 0x00, 0x80, 0x18, 0x02, 0x68, 0x09, 0x07, 0x09, 0x0c, 0x0f, 0x23, +0x1b, 0x03, 0x9a, 0x43, 0x0a, 0x43, 0x02, 0x60, 0x70, 0x47, 0x3c, 0x4b, 0xd9, 0x6b, 0x02, 0x07, +0x08, 0x01, 0x00, 0x09, 0x10, 0x43, 0xd8, 0x63, 0x70, 0x47, 0x10, 0xb5, 0x04, 0x00, 0x0b, 0xf0, +0x83, 0xfb, 0x01, 0x00, 0x20, 0x00, 0xfe, 0xf2, 0x0a, 0xfb, 0x20, 0x00, 0x0b, 0xf0, 0x7f, 0xfb, +0xff, 0x28, 0x01, 0xd0, 0xff, 0xf7, 0xe9, 0xff, 0x10, 0xbd, 0xa0, 0x30, 0x10, 0xb5, 0x82, 0x78, +0x01, 0x00, 0xc0, 0x78, 0x82, 0x42, 0x08, 0xd2, 0x0a, 0x78, 0x48, 0x78, 0x82, 0x42, 0x04, 0xd2, +0x13, 0xf0, 0x3e, 0xeb, 0x02, 0x28, 0x01, 0xd1, 0x05, 0x20, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, +0x10, 0xb5, 0x00, 0xf0, 0xff, 0xff, 0x10, 0xbd, 0x25, 0x48, 0x10, 0xb5, 0x01, 0x6b, 0x0a, 0x22, +0x11, 0x43, 0x01, 0x63, 0xfb, 0xf7, 0xa9, 0xfe, 0x10, 0xbd, 0x08, 0xb5, 0x69, 0x46, 0x01, 0xf0, +0x2b, 0xfa, 0x00, 0x28, 0x04, 0xd1, 0x6b, 0x46, 0x18, 0x70, 0x58, 0x70, 0x98, 0x70, 0x03, 0xe0, +0x6b, 0x46, 0x18, 0x78, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x02, 0xe0, 0x01, 0x28, 0x02, 0xd1, +0x00, 0x20, 0x06, 0xf0, 0xa7, 0xfb, 0x6b, 0x46, 0x18, 0x78, 0x08, 0xbd, 0x15, 0x49, 0x09, 0x22, +0x08, 0x00, 0x38, 0x30, 0x10, 0xb5, 0xff, 0xf2, 0x5b, 0xf8, 0x10, 0xbd, 0x10, 0xb5, 0xff, 0xf7, +0x66, 0xff, 0xff, 0xf7, 0xaa, 0xff, 0x10, 0x48, 0x00, 0x79, 0x80, 0x06, 0x01, 0xd5, 0x00, 0x20, +0x00, 0xe0, 0x01, 0x20, 0xfe, 0xf2, 0x8c, 0xfc, 0x10, 0xbd, 0x03, 0x00, 0x09, 0x20, 0x0f, 0x3b, +0x00, 0xb5, 0x13, 0xe0, 0x30, 0xa9, 0x00, 0x80, 0x00, 0xa0, 0x00, 0x80, 0x07, 0x00, 0x01, 0x00, +0x40, 0xa6, 0x00, 0x80, 0x90, 0x1b, 0x01, 0xc0, 0x05, 0xf3, 0x00, 0x00, 0x00, 0xa1, 0x00, 0x80, +0x00, 0x23, 0x00, 0x80, 0xa8, 0x01, 0x00, 0x04, 0x82, 0x55, 0x00, 0x04, 0x09, 0xf3, 0xe8, 0xe8, +0x10, 0x0c, 0x0e, 0x12, 0x15, 0x18, 0x1b, 0x1b, 0x09, 0x0c, 0x12, 0x15, 0x1b, 0x1b, 0x1b, 0x1b, +0x1b, 0x09, 0x20, 0x22, 0x05, 0x20, 0x10, 0xe0, 0xe0, 0x22, 0x01, 0xe0, 0xff, 0x22, 0xe1, 0x32, +0x07, 0x20, 0x0a, 0xe0, 0x1f, 0x22, 0x52, 0x01, 0x07, 0xe0, 0x3f, 0x22, 0x52, 0x01, 0x04, 0xe0, +0x7f, 0x22, 0x52, 0x01, 0x01, 0xe0, 0xff, 0x22, 0x52, 0x01, 0x0a, 0x40, 0x51, 0x09, 0x05, 0xd0, +0x04, 0x20, 0x40, 0x1c, 0x49, 0x08, 0xfc, 0xd1, 0x00, 0x06, 0x00, 0x0e, 0x00, 0xbd, 0xf8, 0xb5, +0x05, 0x00, 0x00, 0x24, 0xef, 0x4e, 0x21, 0x00, 0x28, 0x00, 0xff, 0xf7, 0x1a, 0xff, 0x01, 0x00, +0x30, 0x55, 0x20, 0x00, 0xfe, 0xf2, 0x73, 0xf9, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x0c, 0x2c, +0xf1, 0xd9, 0xe8, 0x4f, 0x0e, 0x24, 0x80, 0x3f, 0x80, 0x35, 0x3e, 0x00, 0x90, 0x36, 0xe9, 0x69, +0x20, 0x00, 0xff, 0xf7, 0xa2, 0xff, 0x21, 0x01, 0x80, 0x00, 0xc9, 0x19, 0x80, 0x19, 0xff, 0x39, +0x80, 0x38, 0x49, 0x1e, 0x64, 0x1c, 0xc0, 0x6e, 0x24, 0x06, 0x24, 0x0e, 0x48, 0x62, 0x15, 0x2c, +0x08, 0x62, 0xec, 0xd9, 0x17, 0x24, 0xe9, 0x69, 0x20, 0x00, 0xff, 0xf7, 0x8e, 0xff, 0x22, 0x01, +0xd8, 0x49, 0x80, 0x00, 0x80, 0x39, 0x80, 0x19, 0x51, 0x18, 0x80, 0x38, 0xc0, 0x6e, 0x04, 0x27, +0x02, 0x00, 0x3a, 0x43, 0x53, 0x07, 0xdb, 0x0f, 0xb8, 0x43, 0x9b, 0x00, 0x18, 0x43, 0x03, 0x23, +0x5b, 0x03, 0xff, 0x39, 0x9a, 0x43, 0x3f, 0x03, 0x81, 0x39, 0xd2, 0x19, 0x8a, 0x61, 0x52, 0x04, +0x92, 0x0f, 0x52, 0x03, 0x98, 0x43, 0x64, 0x1c, 0x10, 0x43, 0x24, 0x06, 0x24, 0x0e, 0x1e, 0x2c, +0xc8, 0x61, 0xd8, 0xd9, 0xc8, 0x48, 0x00, 0x21, 0xc0, 0x68, 0x00, 0x06, 0x00, 0x0e, 0xff, 0xf7, +0x35, 0xfc, 0xf8, 0xbd, 0x10, 0xb5, 0xff, 0xf7, 0x00, 0xff, 0xc4, 0x48, 0x00, 0x79, 0x80, 0x06, +0x01, 0xd5, 0x00, 0x20, 0x00, 0xe0, 0x01, 0x20, 0xfe, 0xf2, 0xe2, 0xfb, 0x10, 0xbd, 0x00, 0x20, +0x70, 0x47, 0xbf, 0x49, 0x08, 0x68, 0x04, 0x22, 0x90, 0x43, 0x08, 0x60, 0x70, 0x47, 0xbc, 0x49, +0x40, 0x39, 0x48, 0x69, 0x04, 0x22, 0x10, 0x43, 0x48, 0x61, 0x70, 0x47, 0xb9, 0x49, 0x88, 0x6a, +0x01, 0x22, 0x52, 0x04, 0x10, 0x43, 0x88, 0x62, 0x70, 0x47, 0xb7, 0x48, 0x80, 0x69, 0x00, 0x04, +0x00, 0x0c, 0x70, 0x47, 0xff, 0xb5, 0x83, 0xb0, 0x14, 0x00, 0x06, 0x00, 0x0d, 0x00, 0x10, 0x2a, +0x02, 0xd3, 0x01, 0x20, 0x07, 0xb0, 0xf0, 0xbd, 0x08, 0x20, 0x00, 0x90, 0x0d, 0xf0, 0xa4, 0xfc, +0x01, 0x90, 0xab, 0x48, 0x00, 0x68, 0x02, 0x90, 0xfd, 0xf2, 0x08, 0xfe, 0xab, 0x4b, 0x00, 0x20, +0x00, 0x2e, 0x01, 0xd1, 0x00, 0x22, 0x00, 0xe0, 0x2a, 0x5c, 0x01, 0x01, 0x09, 0x19, 0x5a, 0x54, +0x09, 0x09, 0x09, 0x01, 0xca, 0x18, 0xa2, 0x49, 0x80, 0xca, 0x40, 0x31, 0xcf, 0x61, 0x80, 0xca, +0x0f, 0x62, 0x80, 0xca, 0x4f, 0x62, 0x12, 0x68, 0x8a, 0x62, 0x00, 0x9a, 0x8f, 0x0d, 0x02, 0x43, +0x3a, 0x43, 0xca, 0x62, 0x40, 0x1c, 0x06, 0x28, 0xe2, 0xd3, 0x99, 0x4b, 0x01, 0x20, 0xa0, 0x40, +0x80, 0x33, 0x00, 0x2e, 0x02, 0xd1, 0x19, 0x68, 0x81, 0x43, 0x0b, 0xe0, 0x00, 0x2c, 0x04, 0xd1, +0x97, 0x4c, 0xaa, 0x88, 0x29, 0x68, 0xa1, 0x62, 0xe2, 0x62, 0x06, 0x99, 0x01, 0x29, 0x02, 0xd1, +0x19, 0x68, 0x01, 0x43, 0x19, 0x60, 0x8e, 0x49, 0x02, 0x98, 0x08, 0x60, 0x01, 0x98, 0x0d, 0xf0, +0x67, 0xfc, 0x00, 0x20, 0xb6, 0xe7, 0x8a, 0x48, 0x40, 0x21, 0x40, 0x38, 0x0d, 0xf6, 0xed, 0xc9, +0x01, 0x00, 0x00, 0x00, 0xc0, 0x3e, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x26, 0x01, 0xbe, 0xc7, +0x10, 0xb5, 0x41, 0x62, 0x41, 0x69, 0x01, 0x22, 0x52, 0x06, 0x11, 0x43, 0x41, 0x61, 0x01, 0x20, +0xfd, 0xf2, 0xb2, 0xfd, 0x84, 0x48, 0x40, 0x38, 0x41, 0x6a, 0x04, 0x22, 0x11, 0x43, 0x41, 0x62, +0x80, 0x49, 0x08, 0x68, 0x8a, 0x0c, 0x10, 0x43, 0x08, 0x60, 0x10, 0xbd, 0x7d, 0x4b, 0x00, 0x20, +0x40, 0x3b, 0x00, 0xb5, 0x58, 0x62, 0x58, 0x69, 0x01, 0x21, 0x49, 0x06, 0x88, 0x43, 0x58, 0x61, +0xff, 0xf7, 0x71, 0xff, 0x58, 0x6b, 0xff, 0x21, 0x08, 0x43, 0x58, 0x63, 0x00, 0xbd, 0xf0, 0xb5, +0x01, 0x25, 0x2c, 0x00, 0x8c, 0x40, 0x73, 0x4e, 0x72, 0x49, 0x85, 0x40, 0x05, 0x9f, 0x80, 0x36, +0x40, 0x39, 0x00, 0x2a, 0x0e, 0xd0, 0x32, 0x68, 0x22, 0x43, 0x32, 0x60, 0x4a, 0x6b, 0x2a, 0x43, +0x4a, 0x63, 0x6e, 0x49, 0x40, 0x31, 0x88, 0x60, 0x6c, 0x48, 0x03, 0x62, 0x07, 0x61, 0x44, 0x20, +0x08, 0x60, 0xf0, 0xbd, 0x30, 0x68, 0xa0, 0x43, 0x30, 0x60, 0x48, 0x6b, 0xa8, 0x43, 0x48, 0x63, +0xf0, 0xbd, 0x64, 0x49, 0x40, 0x31, 0x0a, 0x6b, 0x06, 0x23, 0x1a, 0x40, 0x0b, 0x6b, 0x93, 0x43, +0x0b, 0x63, 0x60, 0x4b, 0x80, 0x06, 0x80, 0x0e, 0x40, 0x3b, 0x18, 0x62, 0x08, 0x6b, 0x10, 0x43, +0x08, 0x63, 0x70, 0x47, 0x5b, 0x48, 0x40, 0x38, 0x00, 0x6a, 0x80, 0x06, 0x80, 0x0e, 0x70, 0x47, +0x70, 0xb5, 0xfd, 0xf2, 0x37, 0xfe, 0x04, 0x00, 0x0d, 0x00, 0xff, 0xf7, 0x40, 0xff, 0x82, 0x02, +0xd3, 0x17, 0x29, 0x00, 0x20, 0x00, 0x08, 0xf3, 0x40, 0xeb, 0x19, 0x00, 0x2b, 0x00, 0xa2, 0x1a, +0x8b, 0x41, 0x19, 0x00, 0xff, 0xf7, 0x33, 0xff, 0x84, 0x02, 0x20, 0x00, 0xe4, 0x17, 0x0b, 0x00, +0x21, 0x00, 0x80, 0x18, 0x59, 0x41, 0xfd, 0xf2, 0xaa, 0xfe, 0x4a, 0x49, 0x40, 0x31, 0x08, 0x6b, +0x04, 0x22, 0x10, 0x43, 0x08, 0x63, 0x47, 0x49, 0x40, 0x39, 0x48, 0x6b, 0x8a, 0x0d, 0x10, 0x43, +0x48, 0x63, 0x70, 0xbd, 0x43, 0x49, 0x40, 0x31, 0x08, 0x6b, 0x04, 0x22, 0x90, 0x43, 0x08, 0x63, +0xc8, 0x0d, 0x40, 0x49, 0x40, 0x39, 0x48, 0x63, 0x70, 0x47, 0x3e, 0x49, 0x00, 0x28, 0x08, 0x68, +0x03, 0xd0, 0x40, 0x08, 0x40, 0x00, 0x0e, 0x22, 0x02, 0xe0, 0x80, 0x08, 0x80, 0x00, 0x0c, 0x22, +0x10, 0x43, 0x08, 0x60, 0x70, 0x47, 0x37, 0x49, 0x00, 0x28, 0x08, 0x68, 0x03, 0xd0, 0x05, 0x22, +0x90, 0x43, 0x0a, 0x22, 0x02, 0xe0, 0xc0, 0x08, 0xc0, 0x00, 0x08, 0x22, 0x10, 0x43, 0x08, 0x60, +0x70, 0x47, 0x30, 0xb5, 0x00, 0x23, 0x2d, 0x49, 0x32, 0x4c, 0x2e, 0x4d, 0x0a, 0x69, 0xc0, 0x3c, +0x00, 0x28, 0x10, 0xd0, 0x00, 0x2a, 0x07, 0xd1, 0xe0, 0x6a, 0x88, 0x61, 0x20, 0x6b, 0xc8, 0x61, +0x28, 0x68, 0x48, 0x61, 0x01, 0x20, 0x08, 0x61, 0xe3, 0x62, 0x23, 0x63, 0x28, 0x68, 0x2a, 0x49, +0x08, 0x43, 0x28, 0x60, 0x30, 0xbd, 0x00, 0x2a, 0xfc, 0xd0, 0x88, 0x69, 0xe0, 0x62, 0xc8, 0x69, +0x20, 0x63, 0x48, 0x69, 0x28, 0x60, 0x0b, 0x61, 0x4b, 0x61, 0x8b, 0x61, 0xcb, 0x61, 0x30, 0xbd, +0x1c, 0x48, 0x00, 0x68, 0x20, 0x21, 0x08, 0x40, 0x70, 0x47, 0x20, 0x49, 0x09, 0x22, 0x10, 0xb5, +0xca, 0x61, 0x0a, 0x62, 0x4a, 0x60, 0x8a, 0x60, 0xca, 0x60, 0x00, 0x23, 0x0a, 0x61, 0x4b, 0x61, +0x8a, 0x61, 0x08, 0x60, 0x1a, 0x48, 0x02, 0x00, 0x70, 0x32, 0x8a, 0x62, 0x08, 0x32, 0x48, 0x62, +0xca, 0x62, 0x18, 0x49, 0x11, 0x60, 0x18, 0x49, 0x51, 0x60, 0x0b, 0xf0, 0x2b, 0xfe, 0x13, 0x48, +0x10, 0xbd, 0x16, 0x49, 0x88, 0x60, 0x70, 0x47, 0x0c, 0x4a, 0x80, 0x00, 0x80, 0x32, 0x82, 0x18, +0x0a, 0x48, 0x40, 0x30, 0x00, 0x6b, 0x48, 0x43, 0x08, 0x49, 0x60, 0x31, 0x09, 0x7d, 0x40, 0x18, +0x40, 0x1f, 0x10, 0x60, 0x70, 0x47, 0x00, 0x00, 0xb4, 0x1c, 0x01, 0xc0, 0x90, 0x1b, 0x01, 0xc0, +0x82, 0x55, 0x00, 0x04, 0x00, 0xa3, 0x00, 0x80, 0x40, 0xa8, 0x00, 0x80, 0x00, 0xa6, 0x00, 0x80, +0x64, 0x57, 0x02, 0xc0, 0x00, 0xa5, 0x00, 0x80, 0xeb, 0x22, 0x02, 0x80, 0x38, 0x52, 0x00, 0x04, +0x80, 0x52, 0x00, 0x04, 0xad, 0xb5, 0x00, 0xc0, 0x7f, 0xb5, 0x00, 0xc0, 0x00, 0xa0, 0x00, 0x80, +0x03, 0x28, 0x10, 0xb5, 0x05, 0xd1, 0x2c, 0x20, 0xff, 0xf2, 0xd0, 0xfe, 0x80, 0x21, 0x01, 0x43, +0x04, 0xe0, 0x2c, 0x20, 0xff, 0xf2, 0xca, 0xfe, 0x41, 0x06, 0x49, 0x0e, 0x2c, 0x20, 0xff, 0xf2, +0xe2, 0xfe, 0x10, 0xbd, 0x70, 0xb5, 0x0d, 0x00, 0x11, 0x00, 0x04, 0x00, 0x2a, 0x00, 0xf0, 0xf7, +0x4f, 0xf9, 0x01, 0x00, 0x20, 0x00, 0xfe, 0xf7, 0x57, 0xfe, 0x00, 0x2c, 0x09, 0xd1, 0x01, 0x2d, +0x07, 0xd1, 0x26, 0x49, 0x40, 0x18, 0x0f, 0x28, 0x03, 0xd8, 0x7b, 0x21, 0xfb, 0x20, 0xff, 0xf2, +0xca, 0xfe, 0x70, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x16, 0x00, 0x00, 0x28, 0x01, 0xd0, +0x01, 0x22, 0x00, 0xe0, 0x00, 0x22, 0x00, 0x21, 0x68, 0x08, 0x01, 0x28, 0x00, 0xd0, 0x49, 0x1e, +0x1b, 0x4b, 0x90, 0x00, 0x18, 0x58, 0x4b, 0x1c, 0x01, 0xd1, 0x00, 0x27, 0x05, 0xe0, 0x18, 0x4b, +0xd2, 0x00, 0x08, 0x33, 0xd2, 0x18, 0x89, 0x00, 0x57, 0x58, 0xff, 0xf2, 0xb5, 0xfe, 0x38, 0x00, +0xff, 0xf2, 0xb2, 0xfe, 0x28, 0x00, 0xff, 0xf7, 0xb3, 0xff, 0x32, 0x00, 0x29, 0x00, 0x20, 0x00, +0xff, 0xf7, 0xc0, 0xff, 0xfb, 0xf7, 0xf7, 0xf9, 0x05, 0x28, 0x03, 0xd0, 0xfb, 0xf7, 0xf3, 0xf9, +0x01, 0x28, 0x08, 0xd1, 0x0b, 0x48, 0x04, 0x21, 0xff, 0xf2, 0x95, 0xfe, 0x09, 0x48, 0x04, 0x21, +0x40, 0x1c, 0xff, 0xf2, 0x90, 0xfe, 0xf8, 0xbd, 0x00, 0x28, 0x10, 0xb5, 0x05, 0xd1, 0x06, 0x48, +0x00, 0x29, 0x00, 0xd1, 0x05, 0x48, 0xff, 0xf2, 0x8f, 0xfe, 0x10, 0xbd, 0x67, 0xf6, 0xff, 0xff, +0x6c, 0xf2, 0x00, 0xc0, 0xfe, 0x03, 0x00, 0x00, 0x50, 0x1e, 0x01, 0xc0, 0x54, 0x1e, 0x01, 0xc0, +0x01, 0x20, 0x70, 0x47, 0x6d, 0x49, 0x08, 0x69, 0xff, 0x22, 0x92, 0x02, 0x90, 0x43, 0x5d, 0x22, +0xd2, 0x02, 0x10, 0x43, 0x08, 0x61, 0x69, 0x49, 0xc0, 0x31, 0x08, 0x6a, 0x0e, 0x22, 0x00, 0x09, +0x00, 0x01, 0x10, 0x43, 0x08, 0x62, 0x70, 0x47, 0x64, 0x49, 0x08, 0x69, 0xff, 0x22, 0x92, 0x02, +0x90, 0x43, 0x08, 0x61, 0x61, 0x49, 0xc0, 0x31, 0x08, 0x6a, 0x00, 0x0a, 0x00, 0x02, 0x08, 0x62, +0x70, 0x47, 0xf8, 0xb5, 0x00, 0x25, 0xa8, 0x00, 0x5d, 0x49, 0x00, 0x24, 0x46, 0x18, 0x68, 0x00, +0xc9, 0x1e, 0x47, 0x18, 0x60, 0x00, 0x30, 0x5a, 0x39, 0x5d, 0xff, 0xf2, 0x4c, 0xfe, 0x64, 0x1c, +0x02, 0x2c, 0xf7, 0xdb, 0x6d, 0x1c, 0x01, 0x2d, 0xed, 0xdb, 0xf8, 0xbd, 0x70, 0xb5, 0x04, 0x00, +0x0d, 0x00, 0xff, 0xf7, 0xe6, 0xff, 0x01, 0x2c, 0x0a, 0xd1, 0x29, 0x00, 0x20, 0x00, 0xfe, 0xf7, +0xbb, 0xfd, 0xff, 0xf7, 0xbd, 0xff, 0x4e, 0x49, 0xc0, 0x00, 0x2e, 0x31, 0x44, 0x18, 0x01, 0xe0, +0x4b, 0x4c, 0x2e, 0x34, 0x4a, 0x48, 0xa1, 0x78, 0x00, 0x1d, 0x00, 0x88, 0xff, 0xf2, 0x2b, 0xfe, +0x47, 0x48, 0xe1, 0x78, 0x08, 0x30, 0x00, 0x88, 0xff, 0xf2, 0x25, 0xfe, 0x44, 0x48, 0x21, 0x79, +0x0c, 0x30, 0x00, 0x88, 0xff, 0xf2, 0x1f, 0xfe, 0x41, 0x48, 0x61, 0x79, 0x1d, 0x39, 0xb6, 0x91, +0x01, 0x00, 0x00, 0x00, 0xbc, 0x42, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x24, 0xf8, 0x66, 0xd1, +0x10, 0x30, 0x00, 0x88, 0xff, 0xf2, 0x19, 0xfe, 0x3e, 0x48, 0xa1, 0x79, 0x14, 0x30, 0x00, 0x88, +0xff, 0xf2, 0x13, 0xfe, 0x3b, 0x48, 0xe1, 0x79, 0x18, 0x30, 0x00, 0x88, 0xff, 0xf2, 0x0d, 0xfe, +0x39, 0x4d, 0x00, 0x24, 0x2e, 0x00, 0x10, 0x36, 0x00, 0x2c, 0x1f, 0xd0, 0x01, 0x2c, 0x2a, 0xd0, +0x02, 0x2c, 0x45, 0xd0, 0x03, 0x2c, 0x5e, 0xd1, 0xe8, 0x68, 0x01, 0x06, 0x33, 0x48, 0x09, 0x0e, +0xff, 0xf2, 0xfb, 0xfd, 0xf0, 0x68, 0x01, 0x06, 0x30, 0x48, 0x09, 0x0e, 0x08, 0x30, 0xff, 0xf2, +0xf4, 0xfd, 0xe8, 0x68, 0x01, 0x06, 0x0d, 0x20, 0x09, 0x0e, 0xc0, 0x01, 0xff, 0xf2, 0xed, 0xfd, +0xf0, 0x68, 0x01, 0x06, 0x09, 0x0e, 0xd1, 0x20, 0xc0, 0x00, 0x26, 0xe0, 0x28, 0x68, 0x01, 0x06, +0x26, 0x48, 0x09, 0x0e, 0xc0, 0x1c, 0xff, 0xf2, 0xe0, 0xfd, 0x30, 0x68, 0x01, 0x06, 0x23, 0x48, +0x09, 0x0e, 0x0b, 0x30, 0x19, 0xe0, 0x68, 0x68, 0x01, 0x06, 0x20, 0x48, 0x09, 0x0e, 0x80, 0x1c, +0xff, 0xf2, 0xd3, 0xfd, 0x70, 0x68, 0x01, 0x06, 0x1c, 0x48, 0x09, 0x0e, 0x0a, 0x30, 0xff, 0xf2, +0xcc, 0xfd, 0x68, 0x68, 0x01, 0x06, 0x19, 0x48, 0x09, 0x0e, 0x40, 0x1e, 0xff, 0xf2, 0xc5, 0xfd, +0x70, 0x68, 0x01, 0x06, 0x15, 0x48, 0x09, 0x0e, 0xc0, 0x1d, 0xff, 0xf2, 0xbe, 0xfd, 0x1a, 0xe0, +0xa8, 0x68, 0x01, 0x06, 0x11, 0x48, 0x09, 0x0e, 0x40, 0x1c, 0xff, 0xf2, 0xb6, 0xfd, 0xb0, 0x68, +0x01, 0x06, 0x0e, 0x48, 0x09, 0x0e, 0x09, 0x30, 0xff, 0xf2, 0xaf, 0xfd, 0xa8, 0x68, 0x01, 0x06, +0x0a, 0x48, 0x09, 0x0e, 0x80, 0x1e, 0xff, 0xf2, 0xa8, 0xfd, 0xb0, 0x68, 0x01, 0x06, 0x07, 0x48, +0x09, 0x0e, 0x80, 0x1d, 0xe1, 0xe7, 0x64, 0x1c, 0x04, 0x2c, 0x95, 0xdb, 0x70, 0xbd, 0x00, 0x00, +0x00, 0xa7, 0x00, 0x80, 0x88, 0xf2, 0x00, 0xc0, 0x50, 0x3e, 0x01, 0xc0, 0x83, 0x06, 0x00, 0x00, +0x7f, 0xb5, 0x00, 0x29, 0x45, 0xd0, 0x29, 0x48, 0x27, 0x4a, 0x03, 0x78, 0x13, 0x70, 0x43, 0x78, +0x53, 0x70, 0x0a, 0x78, 0x0c, 0x00, 0x02, 0x70, 0x49, 0x78, 0x41, 0x70, 0x24, 0x49, 0xa0, 0x78, +0x09, 0x78, 0x88, 0x42, 0x35, 0xd1, 0x23, 0x4e, 0x23, 0x4d, 0x20, 0x79, 0x23, 0x00, 0x0c, 0x33, +0x40, 0x07, 0x40, 0x0f, 0x06, 0xd0, 0x01, 0x28, 0x17, 0xd0, 0x02, 0x28, 0x2c, 0xd0, 0x03, 0x28, +0x2a, 0xd0, 0x26, 0xe0, 0x20, 0x89, 0xa8, 0x42, 0x26, 0xd1, 0x30, 0x78, 0x01, 0x22, 0x80, 0x06, +0xc0, 0x0f, 0x02, 0x92, 0x03, 0x92, 0x19, 0x4a, 0x01, 0x90, 0x18, 0x00, 0x00, 0x92, 0x18, 0x4a, +0x18, 0x4b, 0x21, 0x00, 0xff, 0xf2, 0x24, 0xfb, 0x11, 0xe0, 0x20, 0x89, 0xa8, 0x42, 0x13, 0xd1, +0x30, 0x78, 0x01, 0x22, 0x80, 0x06, 0xc0, 0x0f, 0x02, 0x92, 0x03, 0x92, 0x12, 0x4a, 0x01, 0x90, +0x18, 0x00, 0x00, 0x92, 0x11, 0x4a, 0x12, 0x4b, 0x21, 0x00, 0xff, 0xf2, 0x8d, 0xfb, 0x00, 0x28, +0x02, 0xd0, 0x01, 0x20, 0x04, 0xb0, 0x70, 0xbd, 0xe0, 0x88, 0xa8, 0x42, 0x02, 0xd0, 0xe1, 0x78, +0x0c, 0x19, 0xc2, 0xd1, 0x00, 0x20, 0xf5, 0xe7, 0x94, 0xee, 0x00, 0xc0, 0x65, 0xee, 0x00, 0xc0, +0x3f, 0xf2, 0x00, 0xc0, 0x82, 0x55, 0x00, 0x04, 0xff, 0xff, 0x00, 0x00, 0x90, 0xf8, 0x00, 0xc0, +0xa4, 0xf6, 0x00, 0xc0, 0xa0, 0xf6, 0x00, 0xc0, 0x58, 0x1e, 0x01, 0xc0, 0x68, 0x1d, 0x01, 0xc0, +0x78, 0x1d, 0x01, 0xc0, 0xa5, 0x49, 0x02, 0x68, 0x09, 0x68, 0x00, 0x2a, 0x03, 0xd0, 0x01, 0x2a, +0x01, 0xd0, 0x02, 0x2a, 0x06, 0xd1, 0x0b, 0x78, 0x9b, 0x06, 0x9b, 0x0e, 0x92, 0x01, 0x13, 0x43, +0x0b, 0x70, 0x04, 0xe0, 0x0a, 0x78, 0x92, 0x06, 0x92, 0x0e, 0x80, 0x32, 0x0a, 0x70, 0xc0, 0x68, +0x00, 0x28, 0x08, 0x7c, 0x02, 0xd0, 0x02, 0x22, 0x10, 0x43, 0x01, 0xe0, 0xfd, 0x22, 0x10, 0x40, +0x08, 0x74, 0x70, 0x47, 0x95, 0x48, 0x01, 0x68, 0x08, 0x7a, 0x09, 0x79, 0x09, 0x02, 0x08, 0x43, +0x70, 0x47, 0x92, 0x49, 0x02, 0x0a, 0x09, 0x68, 0x4a, 0x60, 0x00, 0x06, 0x00, 0x0e, 0x88, 0x60, +0x01, 0x20, 0x70, 0x47, 0x8d, 0x49, 0x01, 0x23, 0x09, 0x68, 0x80, 0x31, 0x08, 0x28, 0x04, 0xd2, +0x09, 0x7c, 0x83, 0x40, 0x19, 0x40, 0x08, 0x00, 0x70, 0x47, 0x10, 0x28, 0x05, 0xd2, 0x42, 0x07, +0x08, 0x7b, 0x52, 0x0f, 0x93, 0x40, 0x18, 0x40, 0x70, 0x47, 0x00, 0x20, 0x70, 0x47, 0xf0, 0xb5, +0x82, 0x4d, 0x44, 0x69, 0x2b, 0x68, 0x18, 0x00, 0xff, 0x30, 0x41, 0x30, 0x00, 0x2c, 0x04, 0x7a, +0x02, 0xd0, 0x20, 0x26, 0x34, 0x43, 0x01, 0xe0, 0xdf, 0x26, 0x34, 0x40, 0x04, 0x72, 0x04, 0x7a, +0x09, 0x07, 0x24, 0x09, 0x24, 0x01, 0x09, 0x0f, 0x0c, 0x43, 0x04, 0x72, 0x01, 0x7a, 0x80, 0x24, +0x21, 0x43, 0x01, 0x72, 0x63, 0x21, 0x49, 0x1e, 0xfd, 0xd2, 0x01, 0x7b, 0xc9, 0x09, 0xfc, 0xd0, +0x80, 0x33, 0x98, 0x6b, 0x10, 0x70, 0x28, 0x68, 0xa0, 0x30, 0x00, 0x7f, 0x0f, 0x23, 0x00, 0x07, +0x01, 0x0c, 0x10, 0x68, 0x1b, 0x03, 0x98, 0x43, 0x08, 0x43, 0x10, 0x60, 0x29, 0x68, 0xa0, 0x31, +0x09, 0x7f, 0x1c, 0x11, 0x09, 0x09, 0x09, 0x02, 0xa0, 0x43, 0x08, 0x43, 0x10, 0x60, 0x28, 0x68, +0xc0, 0x30, 0x00, 0x68, 0x90, 0x70, 0x29, 0x68, 0x0d, 0x00, 0x08, 0x00, 0xc0, 0x30, 0x41, 0x68, +0x11, 0x71, 0x01, 0x7a, 0x09, 0x07, 0x0e, 0x0c, 0x51, 0x68, 0x99, 0x43, 0x31, 0x43, 0x51, 0x60, +0x06, 0x7a, 0xa1, 0x43, 0x36, 0x09, 0x36, 0x02, 0x31, 0x43, 0x51, 0x60, 0xc1, 0x68, 0x91, 0x71, +0x01, 0x69, 0x11, 0x72, 0x01, 0x7d, 0x09, 0x07, 0x0e, 0x0c, 0x91, 0x68, 0x99, 0x43, 0x31, 0x43, +0x91, 0x60, 0x06, 0x7d, 0xa1, 0x43, 0x36, 0x09, 0x36, 0x02, 0x31, 0x43, 0x91, 0x60, 0x81, 0x69, +0x91, 0x72, 0xc1, 0x69, 0x11, 0x73, 0x29, 0x00, 0xe0, 0x31, 0x0e, 0x78, 0x36, 0x07, 0x37, 0x0c, +0xd6, 0x68, 0x9e, 0x43, 0x3e, 0x43, 0xd6, 0x60, 0x0f, 0x78, 0xa6, 0x43, 0x3f, 0x09, 0x3f, 0x02, +0x3e, 0x43, 0xd6, 0x60, 0x46, 0x6a, 0x96, 0x73, 0x86, 0x6a, 0x16, 0x74, 0x0e, 0x7b, 0x36, 0x07, +0x37, 0x0c, 0x16, 0x69, 0x9e, 0x43, 0x3e, 0x43, 0x16, 0x61, 0x0f, 0x7b, 0xa6, 0x43, 0x3f, 0x09, +0x3f, 0x02, 0x3e, 0x43, 0x16, 0x61, 0x06, 0x6b, 0x96, 0x74, 0x46, 0x6b, 0x16, 0x75, 0x0e, 0x7e, +0x36, 0x07, 0x37, 0x0c, 0x56, 0x69, 0x9e, 0x43, 0x3e, 0x43, 0x56, 0x61, 0x09, 0x7e, 0xa6, 0x43, +0x09, 0x09, 0x09, 0x02, 0x0e, 0x43, 0x56, 0x61, 0xc0, 0x6b, 0x29, 0x00, 0xff, 0x31, 0x41, 0x31, +0x90, 0x75, 0x08, 0x7a, 0x40, 0x06, 0x40, 0x0e, 0x08, 0x72, 0x01, 0x20, 0xf0, 0xbd, 0x70, 0xb5, +0x16, 0x00, 0x44, 0x68, 0x00, 0x22, 0x40, 0x23, 0xe2, 0x70, 0xa3, 0x70, 0x21, 0x80, 0x05, 0x00, +0xa2, 0x80, 0x06, 0x22, 0x31, 0x00, 0xa0, 0x1d, 0x08, 0xf3, 0xea, 0xe9, 0x20, 0x00, 0x06, 0x22, +0x31, 0x00, 0x0c, 0x30, 0x08, 0xf3, 0xe4, 0xe9, 0x20, 0x00, 0x06, 0x22, 0x31, 0x00, 0x12, 0x30, +0x08, 0xf3, 0xde, 0xe9, 0x20, 0x7e, 0x01, 0x09, 0x09, 0x01, 0x21, 0x76, 0x20, 0x8b, 0x01, 0x07, +0x09, 0x0f, 0x21, 0x83, 0x01, 0x20, 0x28, 0x70, 0x21, 0x48, 0x29, 0x00, 0x83, 0x3a, 0x27, 0x02, +0x01, 0x00, 0x00, 0x00, 0xb8, 0x46, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x77, 0x22, 0xb5, 0xbd, +0x28, 0x31, 0xe8, 0x61, 0x08, 0x00, 0x00, 0xf0, 0x02, 0xf8, 0x00, 0x20, 0x70, 0xbd, 0x70, 0xb5, +0x0c, 0x00, 0x05, 0x00, 0x01, 0x00, 0x03, 0x22, 0x20, 0x00, 0x08, 0xf3, 0xc4, 0xe9, 0x20, 0x78, +0xfd, 0x21, 0x08, 0x40, 0x20, 0x70, 0x61, 0x78, 0xa0, 0x78, 0x49, 0x06, 0x49, 0x0e, 0x40, 0x06, +0x61, 0x70, 0x40, 0x0e, 0xbf, 0x21, 0x08, 0x40, 0xa0, 0x70, 0x28, 0x78, 0x12, 0x49, 0xc0, 0x07, +0x05, 0xd0, 0x60, 0x78, 0x22, 0x78, 0x00, 0x02, 0x10, 0x43, 0x88, 0x43, 0x12, 0xe0, 0x68, 0x78, +0x2a, 0x78, 0x00, 0x02, 0x10, 0x43, 0x80, 0x05, 0x40, 0x0e, 0x03, 0x28, 0x60, 0x78, 0x22, 0x78, +0x04, 0xd9, 0x00, 0x02, 0x10, 0x43, 0x88, 0x43, 0x28, 0x30, 0x03, 0xe0, 0x00, 0x02, 0x10, 0x43, +0x88, 0x43, 0x08, 0x30, 0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, 0x01, 0x20, 0x70, 0xbd, 0x00, 0x00, +0x38, 0xf4, 0x00, 0xc0, 0x00, 0x11, 0x00, 0x60, 0xf8, 0x03, 0x00, 0x00, 0x01, 0x00, 0xff, 0x31, +0x81, 0x31, 0x49, 0x68, 0x41, 0x18, 0xff, 0x31, 0xff, 0x31, 0x89, 0x1c, 0x0a, 0x7f, 0x01, 0x00, +0xff, 0x31, 0x41, 0x31, 0x0a, 0x75, 0x4a, 0x75, 0xff, 0x22, 0x71, 0x32, 0x12, 0x5c, 0x82, 0x18, +0xff, 0x32, 0xff, 0x32, 0x92, 0x1c, 0x12, 0x7f, 0x08, 0x00, 0xc0, 0x30, 0x8a, 0x74, 0x00, 0x7f, +0xc8, 0x74, 0x01, 0x20, 0x70, 0x47, 0x10, 0xb5, 0x04, 0x00, 0xff, 0x30, 0x59, 0x30, 0x00, 0x21, +0xe0, 0x30, 0x01, 0x71, 0x20, 0x00, 0x03, 0xf0, 0xf5, 0xfa, 0x20, 0x00, 0xff, 0xf7, 0xd6, 0xff, +0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0xff, 0x34, 0x59, 0x34, 0x25, 0x00, 0x06, 0x00, 0x80, 0x35, +0xe8, 0x6b, 0xb1, 0x49, 0x0a, 0x30, 0x88, 0x42, 0xe8, 0x63, 0x05, 0xd2, 0x20, 0x00, 0x60, 0x30, +0x0c, 0xf0, 0x3b, 0xfb, 0x02, 0x28, 0x0d, 0xd3, 0x30, 0x00, 0x03, 0xf0, 0xda, 0xfa, 0x30, 0x7a, +0x00, 0x28, 0x01, 0xd1, 0x04, 0xf0, 0xb1, 0xfa, 0x00, 0x20, 0xe0, 0x34, 0xe8, 0x63, 0x20, 0x71, +0x01, 0x20, 0x70, 0xbd, 0x00, 0x20, 0x70, 0xbd, 0x70, 0xb5, 0x06, 0x00, 0x05, 0x00, 0x11, 0x20, +0x40, 0x01, 0xff, 0x36, 0x28, 0x18, 0x04, 0x7f, 0x59, 0x36, 0x30, 0x00, 0x40, 0x30, 0x0c, 0xf0, +0x2e, 0xfb, 0x28, 0x7a, 0x00, 0x28, 0x02, 0xd1, 0x28, 0x00, 0x04, 0xf0, 0x32, 0xfa, 0x28, 0x00, +0xff, 0xf7, 0xc7, 0xff, 0x00, 0x28, 0x1d, 0xd1, 0x00, 0x2c, 0x05, 0xd0, 0x02, 0x2c, 0x03, 0xd0, +0x04, 0xf0, 0x24, 0xfa, 0x00, 0x28, 0x0d, 0xd0, 0x28, 0x7a, 0x00, 0x28, 0x03, 0xd1, 0x28, 0x00, +0x04, 0xf0, 0xab, 0xfb, 0x04, 0x00, 0x00, 0x2c, 0x04, 0xd1, 0x90, 0x48, 0x80, 0x7d, 0x40, 0x06, +0x06, 0xd4, 0x01, 0xe0, 0x01, 0x2c, 0x03, 0xd1, 0x28, 0x00, 0x03, 0xf0, 0x1b, 0xfc, 0x04, 0x00, +0xe0, 0x36, 0x34, 0x71, 0x70, 0xbd, 0xff, 0x30, 0x59, 0x30, 0x00, 0x22, 0x02, 0x60, 0xc0, 0x30, +0x01, 0x68, 0x00, 0x29, 0x01, 0xd0, 0x0a, 0x60, 0x02, 0x60, 0x70, 0x47, 0x03, 0x00, 0x02, 0x7a, +0xff, 0x33, 0x59, 0x33, 0x00, 0x2a, 0x09, 0xd0, 0x03, 0x2a, 0x03, 0xd1, 0x40, 0x7a, 0x00, 0x28, +0x09, 0xd0, 0x03, 0xe0, 0x06, 0x2a, 0x01, 0xd0, 0x02, 0x2a, 0x04, 0xd1, 0x01, 0x20, 0x1a, 0x68, +0x88, 0x40, 0x02, 0x43, 0x1a, 0x60, 0x70, 0x47, 0x03, 0x00, 0x02, 0x7a, 0xff, 0x33, 0x59, 0x33, +0x00, 0x2a, 0x09, 0xd0, 0x03, 0x2a, 0x03, 0xd1, 0x40, 0x7a, 0x00, 0x28, 0x09, 0xd0, 0x03, 0xe0, +0x06, 0x2a, 0x01, 0xd0, 0x02, 0x2a, 0x04, 0xd1, 0x01, 0x22, 0x18, 0x68, 0x8a, 0x40, 0x90, 0x43, +0x18, 0x60, 0x0c, 0x20, 0x48, 0x43, 0x6e, 0x49, 0x40, 0x18, 0x00, 0x21, 0x0a, 0x00, 0x0b, 0x00, +0x0e, 0xc0, 0x70, 0x47, 0xf1, 0xb5, 0x88, 0xb0, 0x00, 0x25, 0x08, 0x98, 0x2e, 0x00, 0xff, 0x30, +0x59, 0x30, 0x03, 0x90, 0x00, 0x1d, 0x02, 0x90, 0x03, 0x98, 0x2f, 0x00, 0x40, 0x30, 0x04, 0x95, +0x01, 0x90, 0x0c, 0xf0, 0x47, 0xff, 0x00, 0x24, 0x05, 0x90, 0x03, 0x98, 0x01, 0x68, 0x01, 0x20, +0xa0, 0x40, 0x01, 0x42, 0x18, 0xd0, 0x0c, 0x21, 0x61, 0x43, 0x5d, 0x48, 0x09, 0x18, 0x20, 0x06, +0x00, 0x0e, 0x07, 0x91, 0x06, 0x90, 0xed, 0xf7, 0x20, 0xfd, 0x07, 0x99, 0x86, 0x19, 0x06, 0x98, +0x09, 0x1d, 0xed, 0xf7, 0x35, 0xfd, 0x07, 0x99, 0xc7, 0x19, 0x06, 0x98, 0x08, 0x31, 0xed, 0xf7, +0x21, 0xfd, 0x45, 0x19, 0x01, 0x20, 0x04, 0x90, 0x64, 0x1c, 0x04, 0x2c, 0xdd, 0xd3, 0x04, 0x98, +0x00, 0x28, 0x1d, 0xd0, 0x08, 0x98, 0xa9, 0x1b, 0x00, 0xf0, 0x23, 0xfd, 0x01, 0x98, 0x40, 0x69, +0x41, 0x19, 0x01, 0x98, 0x41, 0x61, 0x01, 0x98, 0x80, 0x69, 0x81, 0x19, 0x01, 0x98, 0x10, 0x2f, +0x81, 0x61, 0x00, 0xd9, 0x10, 0x27, 0x01, 0x98, 0xc7, 0x61, 0x02, 0x98, 0x40, 0x68, 0x81, 0x19, +0x02, 0x98, 0x00, 0x2d, 0x41, 0x60, 0x03, 0xd0, 0x02, 0x98, 0x00, 0x21, 0x80, 0x30, 0x81, 0x63, +0x05, 0x98, 0x0c, 0xf0, 0x03, 0xff, 0x09, 0xb0, 0xf0, 0xbd, 0x09, 0x22, 0x00, 0x21, 0x92, 0x01, +0x80, 0x18, 0x01, 0x76, 0x70, 0x47, 0x09, 0x22, 0x01, 0x21, 0x92, 0x01, 0x80, 0x18, 0x01, 0x76, +0x70, 0x47, 0x09, 0x21, 0x10, 0xb5, 0x04, 0x00, 0x89, 0x01, 0x40, 0x18, 0x00, 0x7e, 0x01, 0x28, +0x08, 0xd0, 0x20, 0x00, 0xff, 0xf7, 0x8e, 0xff, 0x20, 0x00, 0xff, 0xf7, 0x15, 0xff, 0x20, 0x00, +0xff, 0xf7, 0xc4, 0xfe, 0x10, 0xbd, 0x10, 0xb5, 0x04, 0xf0, 0xcf, 0xf9, 0x03, 0xf0, 0xdb, 0xfd, +0x02, 0xf0, 0x03, 0xfe, 0x03, 0xf0, 0xf5, 0xf9, 0x10, 0xbd, 0x38, 0xb5, 0x05, 0x00, 0x09, 0x20, +0x80, 0x01, 0x28, 0x18, 0x04, 0x00, 0x05, 0xf3, 0xb7, 0xfe, 0x01, 0x22, 0x00, 0x92, 0x25, 0x4a, +0x2b, 0x00, 0x01, 0x21, 0x20, 0x00, 0x05, 0xf3, 0x97, 0xfe, 0x38, 0xbd, 0x02, 0x00, 0x09, 0x23, +0x9b, 0x01, 0xc0, 0x18, 0x10, 0xb5, 0x00, 0x7e, 0xff, 0x32, 0x59, 0x32, 0x01, 0x28, 0x02, 0xd0, +0x10, 0x1d, 0x03, 0xf0, 0xba, 0xfb, 0x10, 0xbd, 0xfe, 0xb5, 0x0d, 0x00, 0x38, 0x21, 0x0c, 0x5c, +0x16, 0x00, 0xfe, 0x2c, 0x05, 0xd0, 0x21, 0x00, 0x03, 0xf0, 0x1c, 0xff, 0x07, 0x06, 0x3f, 0x0e, +0x0c, 0xe0, 0xff, 0x21, 0x56, 0x31, 0x0c, 0x5c, 0xff, 0x30, 0x21, 0x00, 0x5d, 0x30, 0x03, 0xf0, +0x36, 0xff, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x27, 0x00, 0xe0, 0x00, 0x27, 0x20, 0x00, 0x6a, 0x46, +0x01, 0xa9, 0x03, 0xf0, 0xee, 0xfe, 0x00, 0x28, 0x08, 0xd0, 0x6b, 0x46, 0x18, 0x78, 0x28, 0x70, +0x18, 0x79, 0x40, 0x00, 0x40, 0x1c, 0xb9, 0x00, 0x08, 0x43, 0x01, 0xe0, 0x00, 0x20, 0x2c, 0x70, +0x30, 0x70, 0xfe, 0xbd, 0x87, 0xe6, 0x00, 0x00, 0x10, 0x27, 0x00, 0x00, 0xc2, 0x55, 0x00, 0x04, +0x30, 0x40, 0x01, 0xc0, 0x9b, 0x49, 0x01, 0x00, 0xff, 0x49, 0x08, 0x70, 0x70, 0x47, 0xfe, 0x48, +0x00, 0x78, 0x70, 0x47, 0xfd, 0x48, 0x00, 0x78, 0x00, 0x28, 0x03, 0xd0, 0xfc, 0x48, 0x80, 0x7c, +0x00, 0x09, 0x70, 0x47, 0x01, 0x20, 0x70, 0x47, 0xf8, 0x48, 0x00, 0x78, 0x00, 0x28, 0x04, 0xd0, +0xf7, 0x48, 0x80, 0x7c, 0x00, 0x07, 0x00, 0x0f, 0x70, 0x47, 0x01, 0x20, 0xb1, 0xbd, 0x2c, 0xae, +0x01, 0x00, 0x00, 0x00, 0xb4, 0x4a, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x83, 0x4d, 0xc0, 0x09, +0x70, 0x47, 0xf4, 0x48, 0x00, 0x78, 0x70, 0x47, 0xf1, 0x48, 0x00, 0xb5, 0x00, 0x78, 0x00, 0x21, +0x00, 0x28, 0x0c, 0xd0, 0xef, 0x4a, 0x10, 0x78, 0x0d, 0x28, 0x08, 0xd1, 0xff, 0xf7, 0xe6, 0xff, +0x03, 0x28, 0x04, 0xd1, 0xff, 0xf7, 0xd8, 0xff, 0x03, 0x28, 0x00, 0xd1, 0xd1, 0x7a, 0x08, 0x00, +0x00, 0xbd, 0xe7, 0x48, 0x00, 0x78, 0x00, 0x28, 0x02, 0xd0, 0xe6, 0x49, 0x0e, 0x20, 0x08, 0x56, +0x70, 0x47, 0xe3, 0x48, 0x00, 0x78, 0x00, 0x28, 0x02, 0xd0, 0xe2, 0x48, 0x00, 0x7c, 0x70, 0x47, +0x10, 0x20, 0x70, 0x47, 0x02, 0x00, 0x08, 0x00, 0x00, 0xb5, 0x11, 0x00, 0x87, 0xb0, 0x00, 0xf3, +0xb1, 0xf9, 0x01, 0xa9, 0xff, 0xf2, 0xf9, 0xff, 0x00, 0x28, 0x03, 0xd0, 0x6b, 0x46, 0xd8, 0x7a, +0x07, 0xb0, 0x00, 0xbd, 0x14, 0x20, 0xfb, 0xe7, 0x02, 0x00, 0x08, 0x00, 0x00, 0xb5, 0x11, 0x00, +0x87, 0xb0, 0x00, 0xf3, 0x9f, 0xf9, 0x01, 0xa9, 0xff, 0xf2, 0xe7, 0xff, 0x00, 0x28, 0xef, 0xd0, +0x6b, 0x46, 0x98, 0x7a, 0xec, 0xe7, 0xcf, 0x48, 0x01, 0x78, 0x40, 0x7c, 0x80, 0x06, 0x80, 0x0f, +0x70, 0x47, 0xcb, 0x48, 0x00, 0x78, 0x70, 0x47, 0x00, 0xb5, 0xff, 0xf7, 0x9f, 0xff, 0x01, 0x00, +0xff, 0xf7, 0x92, 0xff, 0x00, 0x22, 0x81, 0x42, 0x06, 0xd1, 0x4b, 0x1e, 0x19, 0x42, 0x03, 0xd1, +0x41, 0x1e, 0x08, 0x42, 0x00, 0xd1, 0x01, 0x22, 0x10, 0x00, 0x00, 0xbd, 0x10, 0xb5, 0xff, 0xf7, +0x8d, 0xff, 0xc1, 0x49, 0x00, 0x24, 0x49, 0x6a, 0x42, 0x1e, 0x60, 0x31, 0x02, 0x40, 0x01, 0x23, +0x00, 0x2a, 0xcc, 0x72, 0x04, 0xd0, 0x06, 0x28, 0x4b, 0x73, 0x00, 0xd1, 0xcb, 0x72, 0x10, 0xbd, +0x02, 0x28, 0x4c, 0x73, 0xfa, 0xd0, 0x04, 0x28, 0xf9, 0xd1, 0x02, 0x20, 0xc8, 0x72, 0x10, 0xbd, +0x10, 0xb5, 0xff, 0xf7, 0x69, 0xff, 0xb4, 0x49, 0x00, 0x24, 0x49, 0x6a, 0x42, 0x1e, 0x60, 0x31, +0x02, 0x40, 0x01, 0x23, 0x00, 0x2a, 0x8c, 0x72, 0x04, 0xd0, 0x06, 0x28, 0x0b, 0x73, 0x00, 0xd1, +0x8b, 0x72, 0x10, 0xbd, 0x02, 0x28, 0x0c, 0x73, 0xfa, 0xd0, 0x04, 0x28, 0xf9, 0xd1, 0x02, 0x20, +0x88, 0x72, 0x10, 0xbd, 0x00, 0xb5, 0xff, 0xf7, 0xc9, 0xff, 0xff, 0xf7, 0xe1, 0xff, 0x00, 0xbd, +0x38, 0xb5, 0x0c, 0x00, 0xa3, 0x49, 0xc9, 0x7b, 0x00, 0x29, 0x01, 0xd0, 0x21, 0x70, 0x07, 0xe0, +0x69, 0x46, 0xff, 0xf2, 0x10, 0xff, 0x00, 0x28, 0x03, 0xd0, 0x6b, 0x46, 0x18, 0x78, 0x20, 0x70, +0x01, 0x20, 0x38, 0xbd, 0x38, 0xb5, 0x04, 0x00, 0x00, 0x20, 0x00, 0x90, 0x98, 0x48, 0x00, 0x78, +0x00, 0x28, 0x1a, 0xd0, 0xfa, 0xf7, 0xa2, 0xfd, 0x00, 0x28, 0x16, 0xd1, 0x95, 0x49, 0x08, 0x78, +0x0d, 0x28, 0x12, 0xd1, 0x48, 0x7c, 0xc0, 0x07, 0x0f, 0xd1, 0x20, 0x00, 0x69, 0x46, 0xff, 0xf7, +0xd7, 0xff, 0x00, 0x28, 0x03, 0xd0, 0x6b, 0x46, 0x18, 0x78, 0x00, 0x28, 0x01, 0xd1, 0xb0, 0x20, +0x00, 0x90, 0x6b, 0x46, 0x18, 0x78, 0xfa, 0xf7, 0x9c, 0xfd, 0x38, 0xbd, 0x00, 0x28, 0x0f, 0xd0, +0x87, 0x49, 0x09, 0x78, 0x00, 0x29, 0x0b, 0xd0, 0x86, 0x49, 0x0a, 0x78, 0x0d, 0x2a, 0x07, 0xd1, +0x4a, 0x7b, 0x02, 0x70, 0x0a, 0x7d, 0x42, 0x70, 0x49, 0x7d, 0x81, 0x70, 0x01, 0x20, 0x70, 0x47, +0x00, 0x20, 0x70, 0x47, 0x70, 0xb5, 0x05, 0x00, 0x15, 0xd0, 0x7d, 0x48, 0x00, 0x78, 0x00, 0x28, +0x11, 0xd0, 0x7c, 0x4c, 0x20, 0x78, 0x0d, 0x28, 0x0d, 0xd1, 0x03, 0x21, 0x28, 0x00, 0x07, 0xf3, +0xa2, 0xef, 0x60, 0x7b, 0x00, 0x07, 0x00, 0x0f, 0x01, 0xd0, 0x01, 0x28, 0x03, 0xd1, 0x28, 0x00, +0xff, 0xf7, 0xd4, 0xff, 0x70, 0xbd, 0x00, 0x20, 0x70, 0xbd, 0x70, 0xb5, 0x0c, 0x00, 0x16, 0x00, +0x00, 0x29, 0x35, 0xd0, 0x6e, 0x49, 0x09, 0x78, 0x00, 0x29, 0x31, 0xd0, 0x6d, 0x4d, 0x29, 0x78, +0x0d, 0x29, 0x2d, 0xd1, 0x00, 0x28, 0x2b, 0xd1, 0x29, 0x00, 0x09, 0x22, 0x16, 0x31, 0x20, 0x00, +0x07, 0xf3, 0xba, 0xee, 0xff, 0xf7, 0xe8, 0xfe, 0x00, 0x2e, 0x1f, 0xd0, 0x00, 0x28, 0x1d, 0xd0, +0xe1, 0x78, 0x41, 0x40, 0xe1, 0x70, 0x61, 0x78, 0x41, 0x40, 0x61, 0x70, 0x21, 0x7a, 0x41, 0x40, +0x21, 0x72, 0x29, 0x7d, 0x49, 0x07, 0x11, 0xd5, 0xa1, 0x78, 0x41, 0x40, 0xa1, 0x70, 0x21, 0x78, +0x41, 0x40, 0x21, 0x70, 0x21, 0x79, 0x41, 0x40, 0x21, 0x71, 0x61, 0x79, 0x41, 0x40, 0x61, 0x71, +0xa1, 0x79, 0x41, 0x40, 0xa1, 0x71, 0xe1, 0x79, 0x41, 0x40, 0xe1, 0x71, 0x01, 0x20, 0x70, 0xbd, +0x00, 0x20, 0x70, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x16, 0x00, 0x1f, 0x00, 0x0a, 0xf0, +0x5f, 0xfd, 0x3b, 0x00, 0x32, 0x00, 0x29, 0x00, 0x20, 0x00, 0x0a, 0xf0, 0x93, 0xff, 0x00, 0x28, +0x01, 0xd1, 0x02, 0xf0, 0x15, 0xfd, 0x00, 0x20, 0xf8, 0xbd, 0x10, 0xb5, 0x0a, 0xf0, 0x3b, 0xfe, +0x10, 0xbd, 0xff, 0xb5, 0x83, 0xb0, 0x01, 0x00, 0xff, 0x25, 0x04, 0x00, 0x02, 0x95, 0x42, 0x79, +0x00, 0x26, 0x2f, 0x00, 0x08, 0x31, 0x68, 0x46, 0x07, 0xf3, 0x6e, 0xee, 0x04, 0x98, 0x21, 0x78, +0x02, 0x78, 0x60, 0x78, 0x00, 0x02, 0x08, 0x43, 0x40, 0x49, 0x88, 0x42, 0x17, 0xd2, 0xe0, 0x78, +0xa3, 0x78, 0x00, 0x02, 0x18, 0x43, 0x88, 0x42, 0x11, 0xd9, 0xb4, 0x2a, 0x01, 0xd2, 0xc8, 0x32, +0x2a, 0x40, 0x00, 0x20, 0x6b, 0x46, 0x07, 0xe0, 0x19, 0x5c, 0xb4, 0x29, 0x01, 0xd2, 0xc8, 0x31, +0x19, 0x54, 0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x61, 0x79, 0x81, 0x42, 0xf4, 0xd8, 0x63, 0x79, +0x00, 0x20, 0x1f, 0xe0, 0x69, 0x46, 0x09, 0x5c, 0x91, 0x42, 0x0c, 0xd1, 0x04, 0x99, 0x0a, 0x70, +0x05, 0x9a, 0x69, 0x46, 0x09, 0x5c, 0x11, 0x70, 0x06, 0x9a, 0x11, 0x70, 0x0c, 0x99, 0x08, 0x70, +0x0d, 0x99, 0x08, 0x70, 0x20, 0xe0, 0x91, 0x42, 0x03, 0xd2, 0xb1, 0x42, 0x01, 0xd9, 0x0e, 0x00, +0x02, 0x90, 0x91, 0x42, 0x03, 0xd9, 0xa9, 0x42, 0x01, 0xd2, 0x0d, 0x00, 0x07, 0x00, 0x40, 0x1c, +0x00, 0x06, 0x00, 0x0e, 0x83, 0x42, 0xdd, 0xd8, 0xff, 0x2f, 0x10, 0xd0, 0x02, 0x98, 0xff, 0x28, +0x0d, 0xd0, 0x04, 0x98, 0x02, 0x70, 0x05, 0x98, 0x06, 0x70, 0x06, 0x98, 0x05, 0x70, 0x0c, 0x99, +0x02, 0x98, 0x08, 0x70, 0x0d, 0x98, 0x07, 0x70, 0x01, 0x20, 0x07, 0xb0, 0xf0, 0xbd, 0x00, 0x20, +0xfb, 0xe7, 0xf7, 0xb5, 0x92, 0xb0, 0x10, 0xab, 0x16, 0x00, 0x59, 0x7a, 0x18, 0x7a, 0x00, 0xf3, +0x19, 0xf8, 0x0a, 0xa9, 0x10, 0x90, 0xff, 0xf2, 0x60, 0xfe, 0x00, 0x28, 0x7e, 0xd0, 0x10, 0xab, +0x18, 0x7b, 0x08, 0xab, 0xd9, 0x7b, 0x88, 0x42, 0x02, 0xd8, 0x99, 0x7b, 0x88, 0x42, 0x01, 0xd2, +0x10, 0xab, 0x19, 0x73, 0x05, 0x48, 0x00, 0x78, 0x00, 0x28, 0x05, 0xd0, 0x10, 0xab, 0x18, 0x7b, +0x0a, 0x28, 0x01, 0xd9, 0x0a, 0x20, 0x18, 0x73, 0x10, 0xab, 0x09, 0xe0, 0x3c, 0xf4, 0x00, 0xc0, +0x1c, 0xfa, 0x00, 0xc0, 0xa8, 0x5e, 0x01, 0xc0, 0x38, 0x52, 0x00, 0x04, 0x88, 0x13, 0x00, 0x00, +0x5d, 0x7b, 0x2f, 0x00, 0x02, 0x2d, 0x00, 0xd1, 0x01, 0x27, 0x10, 0xab, 0x1a, 0x7b, 0x10, 0x98, +0x14, 0x00, 0x39, 0x00, 0x09, 0xab, 0xff, 0xf2, 0xc7, 0xfe, 0x00, 0x28, 0xbe, 0xbe, 0x5a, 0xa4, +0x01, 0x00, 0x00, 0x00, 0xb0, 0x4e, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xd0, 0x97, 0x13, 0x65, +0xce, 0xd0, 0x10, 0xab, 0x98, 0x7b, 0x02, 0x2d, 0x11, 0x90, 0x0a, 0xd1, 0x11, 0x98, 0x40, 0x08, +0x01, 0x28, 0x06, 0xd1, 0x59, 0x7a, 0x18, 0x7a, 0x11, 0x9a, 0xef, 0xf7, 0x89, 0xfa, 0x10, 0xab, +0x58, 0x72, 0x05, 0xaa, 0x06, 0xa9, 0x01, 0x92, 0x00, 0x91, 0x31, 0x31, 0x08, 0xaa, 0x0a, 0xa8, +0x07, 0xab, 0xff, 0xf7, 0x40, 0xff, 0x00, 0x28, 0x6a, 0xd0, 0x08, 0xab, 0x1a, 0x7b, 0x00, 0x20, +0x0a, 0xa9, 0x6b, 0xe0, 0x0a, 0xa9, 0x09, 0x18, 0x8b, 0x7c, 0xa3, 0x42, 0x63, 0xd8, 0x89, 0x7b, +0xa1, 0x42, 0x60, 0xd3, 0x03, 0xaa, 0x00, 0x92, 0x04, 0x90, 0x02, 0x00, 0x6b, 0x46, 0x1b, 0x7e, +0x10, 0x98, 0x39, 0x00, 0xff, 0xf2, 0xfd, 0xfe, 0x00, 0x28, 0x51, 0xd0, 0x6b, 0x46, 0x18, 0x7e, +0x1c, 0x7d, 0xa0, 0x42, 0x2b, 0xd0, 0x02, 0xaa, 0x00, 0x92, 0x1a, 0x7c, 0x10, 0x98, 0x39, 0x00, +0x23, 0x00, 0xff, 0xf2, 0xee, 0xfe, 0x00, 0x28, 0x42, 0xd0, 0x10, 0xab, 0x5a, 0x7a, 0x08, 0x21, +0x6b, 0x46, 0x00, 0x92, 0x0c, 0x20, 0x59, 0x56, 0x18, 0x56, 0x1c, 0x7f, 0x08, 0xab, 0x00, 0xe0, +0x36, 0xe0, 0x1a, 0x78, 0x23, 0x00, 0xff, 0xf2, 0x48, 0xff, 0x6b, 0x46, 0x18, 0x73, 0x10, 0xab, +0x5a, 0x7a, 0x6b, 0x46, 0x00, 0x92, 0x09, 0x21, 0x0d, 0x20, 0x59, 0x56, 0x18, 0x56, 0x1c, 0x7f, +0x08, 0xab, 0x1a, 0x78, 0x23, 0x00, 0xff, 0xf2, 0x38, 0xff, 0x6b, 0x46, 0x58, 0x73, 0x08, 0xab, +0x59, 0x79, 0x6b, 0x46, 0x58, 0x7b, 0x08, 0xab, 0x09, 0x18, 0x59, 0x71, 0x99, 0x79, 0x08, 0x18, +0x98, 0x71, 0xd8, 0x79, 0x6b, 0x46, 0x19, 0x7b, 0x08, 0xab, 0x41, 0x18, 0x49, 0x06, 0xc0, 0x09, +0x49, 0x0e, 0xc0, 0x01, 0x01, 0x43, 0x02, 0x2d, 0xd9, 0x71, 0x27, 0xd1, 0x11, 0x98, 0xff, 0xf2, +0x80, 0xff, 0x01, 0x00, 0x10, 0x98, 0x02, 0xaa, 0xff, 0xf2, 0xe1, 0xfd, 0x00, 0x28, 0x08, 0xd1, +0x00, 0x20, 0x15, 0xb0, 0xf0, 0xbd, 0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x82, 0x42, 0x91, 0xd8, +0xf6, 0xe7, 0x08, 0xab, 0x59, 0x79, 0x6b, 0x46, 0x18, 0x7a, 0x08, 0xab, 0x09, 0x18, 0x59, 0x71, +0x99, 0x79, 0x08, 0x18, 0x98, 0x71, 0xd8, 0x79, 0x6b, 0x46, 0x59, 0x7a, 0x08, 0xab, 0x41, 0x18, +0x49, 0x06, 0x49, 0x0e, 0xc0, 0x09, 0xc0, 0x01, 0x01, 0x43, 0xd9, 0x71, 0x08, 0xab, 0x58, 0x79, +0x30, 0x70, 0x98, 0x79, 0x70, 0x70, 0xd8, 0x79, 0x40, 0x06, 0x40, 0x0e, 0xb0, 0x70, 0x01, 0x20, +0xd7, 0xe7, 0x13, 0xb5, 0x82, 0xb0, 0x6b, 0x46, 0x0c, 0x00, 0x59, 0x7a, 0x18, 0x7a, 0xff, 0xf2, +0x2b, 0xff, 0x01, 0xa9, 0xff, 0xf2, 0x11, 0xfd, 0x00, 0x28, 0x05, 0xd0, 0x6b, 0x46, 0x18, 0x79, +0x20, 0x70, 0x58, 0x79, 0x60, 0x70, 0x01, 0x20, 0x04, 0xb0, 0x10, 0xbd, 0x13, 0xb5, 0x82, 0xb0, +0x6b, 0x46, 0x0c, 0x00, 0x59, 0x7a, 0x18, 0x7a, 0xff, 0xf2, 0x16, 0xff, 0x01, 0xa9, 0xff, 0xf2, +0x0d, 0xfd, 0x00, 0x28, 0xf0, 0xd0, 0x6b, 0x46, 0x18, 0x79, 0x20, 0x70, 0x58, 0x79, 0x60, 0x70, +0x01, 0x20, 0xe9, 0xe7, 0x13, 0xb5, 0x82, 0xb0, 0x6b, 0x46, 0x0c, 0x00, 0x59, 0x7a, 0x18, 0x7a, +0xff, 0xf2, 0x02, 0xff, 0x01, 0xa9, 0xff, 0xf2, 0x0a, 0xfd, 0x00, 0x28, 0xdc, 0xd0, 0x6b, 0x46, +0x18, 0x79, 0x20, 0x70, 0x58, 0x79, 0x60, 0x70, 0x01, 0x20, 0xd5, 0xe7, 0x38, 0xb5, 0x0c, 0x00, +0x69, 0x46, 0xff, 0xf2, 0xbc, 0xfc, 0x00, 0x28, 0x0d, 0xd0, 0x6b, 0x46, 0x18, 0x78, 0xc0, 0x07, +0xc0, 0x0f, 0x20, 0x70, 0x18, 0x78, 0x80, 0x07, 0xc0, 0x0f, 0x60, 0x70, 0x18, 0x78, 0x40, 0x07, +0xc0, 0x0f, 0xa0, 0x70, 0x01, 0x20, 0x38, 0xbd, 0x33, 0xb5, 0x81, 0xb0, 0x6b, 0x46, 0x1d, 0x79, +0x0c, 0x00, 0x59, 0x79, 0x28, 0x00, 0xff, 0xf2, 0xd7, 0xfe, 0xff, 0x28, 0x02, 0xd1, 0x00, 0x2d, +0x00, 0xd1, 0x00, 0x20, 0x69, 0x46, 0xff, 0xf2, 0xea, 0xfc, 0x00, 0x28, 0x19, 0xd0, 0x6b, 0x46, +0x03, 0x20, 0x02, 0x21, 0x18, 0x56, 0x59, 0x56, 0x88, 0x42, 0x01, 0xd1, 0x59, 0x78, 0x19, 0x70, +0x6b, 0x46, 0x20, 0x70, 0x58, 0x78, 0x60, 0x70, 0xd8, 0x78, 0xa0, 0x70, 0xd8, 0x78, 0xe0, 0x70, +0x98, 0x78, 0x20, 0x71, 0x18, 0x78, 0x60, 0x71, 0x98, 0x78, 0xe0, 0x71, 0x98, 0x78, 0xa0, 0x71, +0x01, 0x20, 0x3e, 0xbd, 0xf3, 0xb5, 0x89, 0xb0, 0x0c, 0x00, 0x09, 0x98, 0x00, 0x28, 0x37, 0xd0, +0x20, 0x7d, 0x0e, 0x28, 0x34, 0xd2, 0x14, 0x26, 0x46, 0x43, 0xb1, 0x4d, 0x20, 0x21, 0xa8, 0x59, +0x40, 0x1c, 0xa8, 0x51, 0x01, 0xa8, 0x07, 0xf3, 0x2e, 0xed, 0x20, 0x00, 0x01, 0xa9, 0x03, 0xf0, +0x0e, 0xfa, 0x67, 0x7d, 0x60, 0x7e, 0x00, 0x90, 0x20, 0x68, 0x01, 0x21, 0x80, 0x68, 0x80, 0x00, +0x00, 0x28, 0x1f, 0xdb, 0x00, 0x98, 0x40, 0x1c, 0x02, 0x06, 0x20, 0x69, 0x12, 0x0e, 0x00, 0x28, +0x00, 0xd0, 0x00, 0x21, 0x09, 0x98, 0xf6, 0xf7, 0xd4, 0xfa, 0x20, 0x69, 0x01, 0xa9, 0x00, 0x28, +0x24, 0xd1, 0x0e, 0x2f, 0x05, 0xd2, 0x14, 0x20, 0x78, 0x43, 0x40, 0x19, 0x42, 0x68, 0x52, 0x1c, +0x42, 0x60, 0x00, 0x98, 0x00, 0x28, 0x0b, 0xd1, 0x70, 0x19, 0x81, 0x68, 0x49, 0x1c, 0x81, 0x60, +0x0b, 0xb0, 0xf0, 0xbd, 0x20, 0x69, 0x00, 0x28, 0x00, 0xd0, 0x00, 0x21, 0x00, 0x22, 0xe1, 0xe7, +0x00, 0x20, 0x02, 0x06, 0x12, 0x0e, 0x14, 0x23, 0x53, 0x43, 0x8a, 0x5c, 0x5b, 0x19, 0x9c, 0x68, +0x40, 0x1c, 0xa2, 0x18, 0x0e, 0x28, 0x9a, 0x60, 0xf3, 0xd3, 0xe9, 0xe7, 0xe0, 0x7d, 0x00, 0x28, +0x04, 0xd0, 0x70, 0x19, 0x02, 0x69, 0x52, 0x1c, 0x02, 0x61, 0x03, 0xe0, 0x70, 0x19, 0xc2, 0x68, +0x52, 0x1c, 0xc2, 0x60, 0x00, 0x20, 0x02, 0x06, 0x12, 0x0e, 0x14, 0x23, 0x53, 0x43, 0x8a, 0x5c, +0x5b, 0x19, 0x9c, 0x68, 0x40, 0x1c, 0xa2, 0x18, 0x0e, 0x28, 0x9a, 0x60, 0xf3, 0xd3, 0xcf, 0xe7, +0x10, 0xb5, 0xff, 0x24, 0x19, 0x34, 0x7e, 0x49, 0x22, 0x00, 0x07, 0xf3, 0x9a, 0xec, 0x7c, 0x48, +0x21, 0x00, 0x07, 0xf3, 0xc8, 0xec, 0x10, 0xbd, 0x70, 0xb5, 0x0d, 0x00, 0x00, 0x28, 0x05, 0xd0, +0x09, 0x21, 0x89, 0x01, 0x40, 0x18, 0xc4, 0x6b, 0x00, 0x2c, 0x06, 0xd1, 0x00, 0x2d, 0x03, 0xd0, +0x4c, 0x21, 0x28, 0x00, 0x07, 0xf3, 0xe0, 0xec, 0x70, 0xbd, 0x72, 0x4a, 0xd1, 0x68, 0x72, 0x48, +0x03, 0x68, 0x59, 0x18, 0x6f, 0x4b, 0x01, 0x60, 0x40, 0x3b, 0x21, 0x62, 0x59, 0x6b, 0x46, 0x68, +0x71, 0x18, 0x41, 0x60, 0x61, 0x62, 0x19, 0x6b, 0x83, 0x68, 0x59, 0x18, 0x81, 0x60, 0xa1, 0x62, +0x11, 0x68, 0xc2, 0x68, 0x51, 0x18, 0xc1, 0x60, 0x00, 0x2d, 0xa1, 0x63, 0xe4, 0xd0, 0xa0, 0x6c, +0x29, 0x00, 0x07, 0xf3, 0x4e, 0xed, 0x60, 0x69, 0x29, 0x1d, 0x07, 0xf3, 0x4a, 0xed, 0x29, 0x00, +0xa0, 0x69, 0x08, 0x31, 0x07, 0xf3, 0x44, 0xed, 0x29, 0x00, 0xe0, 0x69, 0x0c, 0x31, 0x07, 0xf3, +0x40, 0xed, 0x29, 0x00, 0x20, 0x6a, 0x10, 0x31, 0x07, 0xf3, 0x3a, 0xed, 0x29, 0x00, 0x60, 0x6a, +0x14, 0x31, 0x07, 0xf3, 0x36, 0xed, 0x29, 0x00, 0xa0, 0x6a, 0x18, 0x31, 0x07, 0xf3, 0x30, 0xed, +0x29, 0x00, 0xe0, 0x6a, 0x1c, 0x31, 0x07, 0xf3, 0x2c, 0xed, 0x29, 0x00, 0x15, 0xbe, 0x59, 0x33, +0x01, 0x00, 0x00, 0x00, 0xac, 0x52, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x6f, 0x52, 0x36, 0xd6, +0x20, 0x6b, 0x20, 0x31, 0x07, 0xf3, 0x26, 0xed, 0x29, 0x00, 0x60, 0x6b, 0x24, 0x31, 0x07, 0xf3, +0x22, 0xed, 0x29, 0x00, 0xa0, 0x6b, 0x28, 0x31, 0x07, 0xf3, 0x1c, 0xed, 0x29, 0x00, 0xe0, 0x6b, +0x2c, 0x31, 0x07, 0xf3, 0x18, 0xed, 0x29, 0x00, 0xa0, 0x6e, 0x34, 0x31, 0x07, 0xf3, 0x12, 0xed, +0x29, 0x00, 0xe0, 0x6e, 0x38, 0x31, 0x07, 0xf3, 0x0e, 0xed, 0x29, 0x00, 0x20, 0x6f, 0x3c, 0x31, +0x07, 0xf3, 0x08, 0xed, 0x29, 0x00, 0x60, 0x6f, 0x40, 0x31, 0x07, 0xf3, 0x04, 0xed, 0x04, 0xf0, +0x21, 0xfa, 0x29, 0x00, 0x44, 0x31, 0x07, 0xf3, 0xfe, 0xec, 0x04, 0xf0, 0x18, 0xfa, 0x29, 0x00, +0x48, 0x31, 0x07, 0xf3, 0xf8, 0xec, 0x70, 0xbd, 0xf0, 0xb4, 0x00, 0x28, 0x35, 0xd0, 0x09, 0x22, +0x92, 0x01, 0x82, 0x18, 0xd2, 0x6b, 0x00, 0x2a, 0x2f, 0xd0, 0x4b, 0x7e, 0xd4, 0x6a, 0xe4, 0x18, +0xd4, 0x62, 0x0c, 0x69, 0x00, 0x2c, 0x23, 0xd1, 0x0d, 0x68, 0xec, 0x6d, 0xe6, 0x78, 0xf6, 0x07, +0x07, 0xd0, 0xa6, 0x78, 0x36, 0x07, 0xb6, 0x0f, 0x02, 0x2e, 0x02, 0xd1, 0xa6, 0x7c, 0xf6, 0x07, +0x02, 0xd1, 0xa4, 0x79, 0xe4, 0x07, 0x02, 0xd0, 0x94, 0x6c, 0x64, 0x1c, 0x94, 0x64, 0xd4, 0x6b, +0x64, 0x1c, 0xd4, 0x63, 0xac, 0x68, 0xa4, 0x00, 0x0d, 0xd4, 0x00, 0x2b, 0x0b, 0xd0, 0x94, 0x69, +0x64, 0x1c, 0x01, 0x2b, 0x94, 0x61, 0x06, 0xd9, 0xd3, 0x69, 0x5b, 0x1c, 0xd3, 0x61, 0x02, 0xe0, +0x53, 0x69, 0x5b, 0x1c, 0x53, 0x61, 0xf0, 0xbc, 0xc6, 0xe6, 0xf0, 0xbc, 0x70, 0x47, 0x00, 0x28, +0x08, 0xd0, 0x09, 0x22, 0x92, 0x01, 0x80, 0x18, 0xc0, 0x6b, 0x00, 0x28, 0x02, 0xd0, 0x82, 0x69, +0x51, 0x18, 0x81, 0x61, 0x70, 0x47, 0x00, 0x28, 0x10, 0xb5, 0x1a, 0xd0, 0x09, 0x23, 0x9b, 0x01, +0xc3, 0x18, 0xd8, 0x6b, 0x00, 0x28, 0x06, 0xd0, 0x44, 0x69, 0x64, 0x1c, 0x44, 0x61, 0xd8, 0x6b, +0xc3, 0x6b, 0x5b, 0x1c, 0xc3, 0x63, 0x0e, 0x29, 0x0b, 0xd2, 0x14, 0x20, 0x48, 0x43, 0x09, 0x4b, +0x19, 0x58, 0x49, 0x1c, 0x00, 0x2a, 0x19, 0x50, 0x03, 0xd0, 0xc0, 0x18, 0x01, 0x69, 0x49, 0x1c, +0x01, 0x61, 0x10, 0xbd, 0xff, 0x21, 0x03, 0x48, 0x19, 0x31, 0x10, 0xb5, 0x07, 0xf3, 0xd4, 0xeb, +0x00, 0x20, 0x10, 0xbd, 0x48, 0x54, 0x00, 0x04, 0x40, 0xa8, 0x00, 0x80, 0x40, 0xf4, 0x00, 0xc0, +0x10, 0xb5, 0x0f, 0xc8, 0xfd, 0x4c, 0x0f, 0xc4, 0x00, 0x20, 0xfd, 0x49, 0x08, 0x70, 0x11, 0xf0, +0x40, 0xef, 0x0a, 0xf0, 0xb0, 0xfe, 0x10, 0xbd, 0xff, 0xb5, 0x81, 0xb0, 0x04, 0x00, 0x00, 0x25, +0x1f, 0x00, 0x03, 0x99, 0x6a, 0x46, 0x00, 0x95, 0xee, 0xf7, 0x67, 0xfd, 0x06, 0x00, 0x02, 0x98, +0x0b, 0xf0, 0x24, 0xfe, 0x00, 0x28, 0x07, 0xd0, 0x02, 0x99, 0x00, 0x98, 0xe2, 0x22, 0xeb, 0xf7, +0x1c, 0xf8, 0x01, 0x20, 0x05, 0xb0, 0xf0, 0xbd, 0x00, 0x2e, 0x18, 0xd1, 0x00, 0x2f, 0x07, 0xd0, +0x60, 0x69, 0x02, 0x99, 0x0e, 0xf0, 0x26, 0xfc, 0x00, 0x28, 0x01, 0xd0, 0xa5, 0x80, 0x0e, 0xe0, +0x60, 0x69, 0x00, 0x28, 0x06, 0xd0, 0x02, 0x6b, 0x00, 0x2a, 0x03, 0xd0, 0x03, 0x99, 0x20, 0x00, +0x90, 0x47, 0x03, 0xe0, 0x03, 0x99, 0x20, 0x00, 0x11, 0xf0, 0x0e, 0xef, 0x06, 0x00, 0x30, 0x00, +0xe0, 0xe7, 0xf0, 0xb5, 0x8f, 0xb0, 0x00, 0x27, 0x3e, 0x00, 0x06, 0x97, 0xdd, 0x48, 0xea, 0xf7, +0x3d, 0xfe, 0x00, 0x22, 0xd9, 0x48, 0xd2, 0x43, 0x00, 0x92, 0x00, 0x68, 0xda, 0x49, 0x00, 0x68, +0x08, 0x22, 0x08, 0xab, 0x0c, 0xf0, 0xa6, 0xff, 0xd6, 0x48, 0x80, 0x1c, 0xea, 0xf7, 0x2e, 0xfe, +0x08, 0x98, 0x00, 0x28, 0x7e, 0xd0, 0x80, 0x03, 0x0a, 0xd5, 0x07, 0xf0, 0x07, 0xff, 0xd0, 0x49, +0x02, 0x22, 0x48, 0x68, 0x90, 0x43, 0x48, 0x60, 0x02, 0xd1, 0xd0, 0x48, 0xeb, 0xf7, 0xb0, 0xff, +0x08, 0x98, 0x40, 0x07, 0x10, 0xd5, 0xc9, 0x4c, 0x05, 0xe0, 0x07, 0x98, 0x11, 0xf0, 0xe0, 0xee, +0x07, 0x98, 0x08, 0xf3, 0x1b, 0xf8, 0x60, 0x68, 0x04, 0x22, 0x00, 0x68, 0x00, 0x23, 0x07, 0xa9, +0x0c, 0xf0, 0x88, 0xff, 0x0f, 0x28, 0xf0, 0xd1, 0x08, 0x98, 0x40, 0x06, 0x01, 0xd5, 0xee, 0xf7, +0x64, 0xfd, 0x08, 0x98, 0x00, 0x06, 0x01, 0xd5, 0xee, 0xf7, 0xbe, 0xfd, 0x08, 0x98, 0xc0, 0x06, +0x03, 0xd5, 0xee, 0xf7, 0x33, 0xfd, 0xfc, 0xf2, 0x96, 0xfc, 0x08, 0x98, 0x00, 0x07, 0x10, 0xd5, +0x07, 0xe0, 0x06, 0x98, 0x00, 0x28, 0x04, 0xd0, 0xc1, 0x68, 0xc9, 0x04, 0x01, 0xd5, 0xf6, 0xf7, +0x18, 0xf9, 0xb2, 0x48, 0x00, 0x22, 0xf0, 0x38, 0x06, 0xa9, 0xf1, 0xf2, 0x71, 0xfa, 0x0a, 0x28, +0xef, 0xd1, 0x08, 0x98, 0x80, 0x04, 0x01, 0xd4, 0x08, 0x98, 0x19, 0xe0, 0x80, 0x20, 0x34, 0x00, +0x31, 0x00, 0x30, 0x81, 0x1c, 0x34, 0x30, 0x18, 0x5c, 0x31, 0x07, 0xf3, 0xd4, 0xeb, 0x05, 0x00, +0xf8, 0xf7, 0x66, 0xfb, 0x22, 0x00, 0x29, 0x00, 0x30, 0x00, 0x01, 0x23, 0xff, 0xf7, 0x54, 0xff, +0x30, 0x00, 0x07, 0xf3, 0xd3, 0xff, 0x08, 0x98, 0x00, 0x26, 0x01, 0x21, 0x08, 0x43, 0x08, 0x90, +0x40, 0x04, 0x01, 0xd4, 0x08, 0x98, 0x07, 0xe0, 0x30, 0x00, 0x07, 0xf3, 0xc7, 0xff, 0x08, 0x98, +0x00, 0x26, 0x01, 0x21, 0x08, 0x43, 0x08, 0x90, 0xc0, 0x07, 0x13, 0xd0, 0x00, 0x2e, 0x07, 0xd1, +0x7d, 0x21, 0x9b, 0x48, 0x00, 0x22, 0x09, 0x01, 0x07, 0xf3, 0xe2, 0xff, 0x04, 0x00, 0x0a, 0xd1, +0x92, 0x48, 0x00, 0xe0, 0x89, 0xe1, 0x00, 0x68, 0x07, 0x22, 0x00, 0x68, 0x01, 0x21, 0x0c, 0xf0, +0x25, 0xff, 0x01, 0x27, 0xb4, 0xe0, 0x20, 0x00, 0x1c, 0x30, 0x0e, 0x90, 0x40, 0x30, 0x0d, 0x90, +0x24, 0x30, 0x0c, 0x90, 0x00, 0x20, 0x04, 0x90, 0x0e, 0x98, 0x05, 0x90, 0x80, 0x20, 0x20, 0x81, +0x0d, 0x99, 0x0c, 0x98, 0x0d, 0x00, 0x07, 0xf3, 0x8e, 0xeb, 0x05, 0x98, 0xef, 0xf7, 0x7c, 0xfd, +0x00, 0x28, 0x7e, 0xd0, 0x28, 0x00, 0x07, 0xf3, 0x76, 0xeb, 0x05, 0x00, 0x04, 0x20, 0xfe, 0xf2, +0x79, 0xfb, 0x00, 0x04, 0x00, 0x0c, 0x04, 0x21, 0xfc, 0xf2, 0x82, 0xfd, 0x00, 0x2d, 0xf0, 0xd0, +0x68, 0x78, 0x29, 0x78, 0x00, 0x02, 0x08, 0x43, 0xeb, 0xd0, 0x7e, 0x49, 0x88, 0x42, 0xd9, 0xd0, +0x60, 0x38, 0x28, 0x70, 0x00, 0x0a, 0x68, 0x70, 0xa8, 0x78, 0x00, 0x07, 0x80, 0x0f, 0x73, 0xd1, +0x02, 0x90, 0x0c, 0xf0, 0xa5, 0xf8, 0x29, 0x00, 0x12, 0x31, 0x03, 0x90, 0x88, 0x1f, 0xf8, 0xf7, +0xb6, 0xfa, 0x06, 0x90, 0x00, 0x28, 0x60, 0x61, 0x2e, 0xd0, 0x41, 0x7a, 0x02, 0x29, 0x21, 0xd1, +0x0f, 0xf0, 0x39, 0xfa, 0x0c, 0x30, 0x01, 0x90, 0xa8, 0x78, 0x00, 0x09, 0x05, 0xd0, 0x02, 0x28, +0x03, 0xd0, 0x0b, 0x28, 0x01, 0xd0, 0x0d, 0x28, 0x0a, 0xd1, 0x01, 0x98, 0x01, 0x7d, 0xe8, 0x78, +0xc0, 0x06, 0xc0, 0x0f, 0x81, 0x42, 0x03, 0xd0, 0x01, 0x00, 0x06, 0x98, 0xf1, 0xf7, 0x80, 0xfd, +0x01, 0x98, 0x40, 0x30, 0x00, 0x7d, 0x01, 0x28, 0x01, 0xd1, 0x00, 0x20, 0xa0, 0x80, 0x06, 0x98, +0x00, 0x28, 0x09, 0xd0, 0x01, 0x22, 0x00, 0x92, 0x06, 0x9a, 0x29, 0x00, 0xff, 0x32, 0x41, 0x32, +0x20, 0x00, 0x02, 0xab, 0x08, 0xf3, 0x3c, 0xfa, 0x03, 0x98, 0x0c, 0xf0, 0xed, 0xda, 0x3a, 0x0e, +0x01, 0x00, 0x00, 0x00, 0xa8, 0x56, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x3c, 0x88, 0xe5, 0xba, +0x6d, 0xf8, 0xa0, 0x88, 0x00, 0x28, 0x1c, 0xd0, 0x0e, 0xf0, 0x27, 0xfd, 0x00, 0x28, 0x18, 0xd0, +0x01, 0x20, 0x00, 0x90, 0x28, 0x00, 0x69, 0x46, 0xf2, 0xf7, 0xfd, 0xff, 0x6b, 0x46, 0x01, 0x90, +0x18, 0x78, 0x00, 0x28, 0x04, 0xd0, 0x02, 0x20, 0x0f, 0xf0, 0x20, 0xfa, 0xf2, 0xf7, 0x9c, 0xf9, +0x01, 0x98, 0x00, 0x28, 0x05, 0xd1, 0x4d, 0x4a, 0x10, 0x68, 0x01, 0x21, 0xc9, 0x02, 0x88, 0x43, +0x10, 0x60, 0x20, 0x00, 0x00, 0xe0, 0x1a, 0xe0, 0x05, 0x99, 0xfc, 0xf7, 0x8d, 0xfc, 0x00, 0x28, +0x04, 0x90, 0x2b, 0xd1, 0x28, 0x00, 0xf8, 0xf7, 0x95, 0xfa, 0xa0, 0x88, 0x00, 0x28, 0x05, 0xd0, +0x05, 0x9a, 0x29, 0x00, 0x20, 0x00, 0x01, 0x23, 0xff, 0xf7, 0x80, 0xfe, 0x00, 0x2e, 0x00, 0xd1, +0x5a, 0xe7, 0x04, 0x98, 0x00, 0x28, 0x02, 0xd0, 0xa0, 0x88, 0x00, 0x28, 0x02, 0xd1, 0x20, 0x00, +0x07, 0xf3, 0xf6, 0xfe, 0x08, 0x98, 0x80, 0x07, 0x75, 0xd5, 0x7d, 0x21, 0x35, 0x48, 0x00, 0x22, +0x09, 0x01, 0x07, 0xf3, 0x17, 0xff, 0x05, 0x00, 0x0d, 0xd1, 0x2d, 0x48, 0x07, 0x22, 0x00, 0x68, +0x02, 0x21, 0x00, 0x68, 0x0c, 0xf0, 0x5c, 0xfe, 0x01, 0x27, 0x64, 0xe0, 0xa0, 0x88, 0x00, 0x28, +0xdc, 0xd0, 0x26, 0x00, 0xda, 0xe7, 0x28, 0x00, 0x1c, 0x30, 0x0b, 0x90, 0x40, 0x30, 0x0a, 0x90, +0x24, 0x30, 0x09, 0x90, 0x0b, 0x98, 0x05, 0x90, 0x80, 0x20, 0x28, 0x81, 0x0a, 0x99, 0x09, 0x98, +0x0c, 0x00, 0x07, 0xf3, 0xc2, 0xea, 0x05, 0x98, 0xef, 0xf7, 0x8c, 0xfc, 0x00, 0x28, 0x47, 0xd0, +0x05, 0x20, 0xfe, 0xf2, 0xb1, 0xfa, 0x00, 0x04, 0x00, 0x0c, 0x05, 0x21, 0xfc, 0xf2, 0xba, 0xfc, +0x20, 0x00, 0x07, 0xf3, 0xa2, 0xea, 0x04, 0x00, 0x3a, 0xd0, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, +0x08, 0x43, 0x35, 0xd0, 0x20, 0x00, 0x0c, 0x30, 0x0f, 0xf0, 0xd9, 0xf9, 0x06, 0x90, 0x68, 0x61, +0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x60, 0x38, 0x00, 0x04, 0x00, 0x0c, 0x01, 0x0a, +0x20, 0x70, 0x00, 0x28, 0x61, 0x70, 0xcd, 0xd0, 0x05, 0x9a, 0x21, 0x00, 0x28, 0x00, 0x00, 0x23, +0xff, 0xf7, 0x1c, 0xfe, 0x00, 0x20, 0x06, 0x90, 0x05, 0x99, 0x03, 0x22, 0x28, 0x00, 0x11, 0xf0, +0x5e, 0xed, 0x05, 0x99, 0x02, 0x22, 0x28, 0x00, 0x11, 0xf0, 0x58, 0xed, 0xba, 0xe7, 0x00, 0x00, +0x98, 0x42, 0x01, 0xc0, 0x60, 0xf4, 0x00, 0xc0, 0x00, 0x02, 0x03, 0x00, 0xff, 0xff, 0x03, 0x00, +0x07, 0x10, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x04, 0xff, 0xff, 0x00, 0x00, 0xb4, 0xf0, 0x00, 0xc0, +0x28, 0x00, 0x07, 0xf3, 0x7d, 0xfe, 0x08, 0x98, 0x80, 0x06, 0x12, 0xd5, 0x7e, 0x4d, 0x00, 0x24, +0x06, 0xe0, 0x05, 0x98, 0x84, 0x60, 0x41, 0x69, 0x00, 0x29, 0x01, 0xd0, 0x00, 0x69, 0x88, 0x47, +0xe8, 0x68, 0x04, 0x22, 0x00, 0x68, 0x00, 0x23, 0x05, 0xa9, 0x0c, 0xf0, 0xdd, 0xfd, 0x0f, 0x28, +0xef, 0xd1, 0x08, 0x98, 0x80, 0x05, 0x01, 0xd5, 0xfd, 0xf7, 0x0d, 0xf9, 0x08, 0x98, 0x00, 0x05, +0x01, 0xd5, 0xfd, 0xf7, 0x3e, 0xf9, 0x08, 0x98, 0x40, 0x05, 0x30, 0xd5, 0x27, 0xe0, 0x06, 0x98, +0x00, 0x28, 0x24, 0xd0, 0x01, 0x7a, 0x01, 0x29, 0x02, 0xd1, 0xf7, 0xf7, 0x38, 0xff, 0x1e, 0xe0, +0x41, 0x7a, 0x02, 0x29, 0x1b, 0xd1, 0xf0, 0xf7, 0x96, 0xfe, 0x00, 0x28, 0x05, 0xd0, 0x06, 0x98, +0x11, 0xf0, 0x10, 0xed, 0x06, 0x98, 0x11, 0xf0, 0x12, 0xed, 0xf6, 0xf7, 0x09, 0xfb, 0x01, 0x28, +0x0d, 0xd9, 0x06, 0x98, 0x02, 0x22, 0x80, 0x30, 0x00, 0x69, 0x00, 0x21, 0x11, 0xf0, 0xfe, 0xec, +0x06, 0x98, 0x03, 0x22, 0x80, 0x30, 0x00, 0x69, 0x00, 0x21, 0x11, 0xf0, 0xf8, 0xec, 0x5a, 0x48, +0x00, 0x22, 0x78, 0x38, 0x06, 0xa9, 0xf1, 0xf2, 0xad, 0xf8, 0x0a, 0x28, 0xcf, 0xd1, 0x00, 0x2f, +0x00, 0xd1, 0xdd, 0xe5, 0x00, 0x27, 0xeb, 0xf7, 0x0f, 0xfc, 0xd9, 0xe5, 0x10, 0xb5, 0x04, 0x00, +0x19, 0x21, 0x52, 0x48, 0x00, 0x22, 0x49, 0x01, 0x07, 0xf3, 0x44, 0xfe, 0x00, 0x28, 0x02, 0xd0, +0xac, 0x21, 0x44, 0x61, 0x01, 0x81, 0x10, 0xbd, 0x7c, 0xb5, 0x05, 0x22, 0x00, 0x21, 0x4c, 0x48, +0xc0, 0x68, 0x0c, 0xf0, 0x85, 0xfd, 0x48, 0x4c, 0x02, 0xe0, 0x01, 0x98, 0x07, 0xf3, 0x08, 0xfe, +0x60, 0x68, 0x04, 0x22, 0x00, 0x68, 0x00, 0x23, 0x01, 0xa9, 0x0c, 0xf0, 0x75, 0xfd, 0x0f, 0x28, +0xf3, 0xd1, 0x00, 0x25, 0x01, 0xe0, 0x00, 0x98, 0x85, 0x60, 0xe0, 0x68, 0x04, 0x22, 0x00, 0x68, +0x00, 0x23, 0x69, 0x46, 0x0c, 0xf0, 0x68, 0xfd, 0x0f, 0x28, 0xf4, 0xd1, 0x00, 0x21, 0xff, 0x20, +0xf0, 0xf7, 0xa0, 0xfb, 0x00, 0x21, 0xff, 0x20, 0xf0, 0xf7, 0xa5, 0xfb, 0xf0, 0xf7, 0x94, 0xfb, +0x00, 0x20, 0x7c, 0xbd, 0x10, 0xb5, 0x34, 0x4c, 0x02, 0x00, 0x60, 0x68, 0x04, 0x21, 0x00, 0x68, +0x00, 0x23, 0xeb, 0xf7, 0xfc, 0xfb, 0x00, 0x28, 0x07, 0xd1, 0x20, 0x68, 0x07, 0x22, 0x00, 0x68, +0x04, 0x21, 0x0c, 0xf0, 0x4d, 0xfd, 0x00, 0x20, 0x10, 0xbd, 0x01, 0x20, 0x10, 0xbd, 0x08, 0xb5, +0x00, 0x90, 0x29, 0x48, 0x00, 0x22, 0xf0, 0x38, 0x69, 0x46, 0xf1, 0xf2, 0x19, 0xf9, 0x00, 0x28, +0x08, 0xd1, 0x25, 0x48, 0x07, 0x22, 0x00, 0x68, 0x08, 0x21, 0x00, 0x68, 0x0c, 0xf0, 0x38, 0xfd, +0x00, 0x20, 0x08, 0xbd, 0x01, 0x20, 0x08, 0xbd, 0x08, 0xb5, 0x00, 0x90, 0x1e, 0x48, 0x00, 0x22, +0x78, 0x38, 0x69, 0x46, 0xf1, 0xf2, 0x04, 0xf9, 0x00, 0x28, 0x09, 0xd1, 0x1a, 0x48, 0x01, 0x21, +0x00, 0x68, 0x07, 0x22, 0x00, 0x68, 0x89, 0x02, 0x0c, 0xf0, 0x22, 0xfd, 0x00, 0x20, 0x08, 0xbd, +0x01, 0x20, 0x08, 0xbd, 0x10, 0xb5, 0x14, 0x4c, 0x01, 0x21, 0x81, 0x60, 0xe1, 0x68, 0x02, 0x00, +0x0b, 0x68, 0x04, 0x21, 0x18, 0x00, 0x00, 0x23, 0xeb, 0xf7, 0xb9, 0xfb, 0x00, 0x28, 0x05, 0xd1, +0x20, 0x68, 0x07, 0x22, 0x00, 0x68, 0x20, 0x21, 0x0c, 0xf0, 0x0a, 0xfd, 0x10, 0xbd, 0x0a, 0x48, +0x10, 0xb5, 0x00, 0x68, 0x01, 0x21, 0x00, 0x68, 0x07, 0x22, 0x49, 0x03, 0x0c, 0xf0, 0x00, 0xfd, +0x10, 0xbd, 0x05, 0x48, 0x10, 0xb5, 0x00, 0x68, 0x01, 0x21, 0x00, 0x68, 0x07, 0x22, 0x89, 0x03, +0x0c, 0xf0, 0xf6, 0xfc, 0x10, 0xbd, 0x00, 0x00, 0x98, 0x42, 0x01, 0xc0, 0x58, 0x00, 0x00, 0x04, +0x60, 0xf4, 0x00, 0xc0, 0xfe, 0xb5, 0xff, 0x21, 0xf9, 0x31, 0xff, 0x48, 0x07, 0xf3, 0xae, 0xe8, +0xfe, 0x49, 0xff, 0x48, 0x07, 0xf3, 0xaa, 0xe8, 0x45, 0x21, 0xfe, 0x48, 0xc9, 0x00, 0x07, 0xf3, +0xa6, 0xe8, 0xfd, 0x48, 0x34, 0x21, 0x07, 0xf3, 0xa2, 0xe8, 0xfb, 0x4e, 0x00, 0x24, 0x48, 0x3e, +0x37, 0x00, 0x24, 0x37, 0x0c, 0x25, 0x65, 0x43, 0xa8, 0x19, 0xf5, 0xf2, 0xde, 0xfe, 0xe8, 0x19, +0xf5, 0xf2, 0xdb, 0xfe, 0x64, 0x1c, 0x03, 0x2c, 0xf4, 0xdb, 0xef, 0x4e, 0x00, 0x24, 0x25, 0x00, +0x54, 0x20, 0x60, 0x43, 0x81, 0x19, 0x35, 0x50, 0xef, 0x48, 0x4d, 0x60, 0x48, 0x38, 0x4d, 0x74, +0xf5, 0xf2, 0xfc, 0xfe, 0x64, 0x1c, 0x06, 0x2c, 0xf2, 0xdb, 0xeb, 0x48, 0x00, 0x24, 0x01, 0x27, +0xe7, 0x4e, 0x3c, 0x38, 0x01, 0x90, 0xd4, 0x20, 0x60, 0x43, 0x81, 0x19, 0x33, 0x2c, 0x79, 0x99, +0x01, 0x00, 0x00, 0x00, 0xa4, 0x5a, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xc8, 0xe7, 0x90, 0x0e, +0x35, 0x50, 0x4d, 0x60, 0x4f, 0x74, 0x01, 0x98, 0xf5, 0xf2, 0xea, 0xfe, 0x64, 0x1c, 0x05, 0x2c, +0xf3, 0xdb, 0xe2, 0x48, 0x00, 0x24, 0x02, 0x27, 0xdf, 0x4e, 0x30, 0x38, 0x00, 0x90, 0xff, 0x20, +0x15, 0x30, 0x60, 0x43, 0x81, 0x19, 0x35, 0x50, 0x4d, 0x60, 0x4f, 0x74, 0x00, 0x98, 0xf5, 0xf2, +0xd7, 0xfe, 0x64, 0x1c, 0x02, 0x2c, 0xf2, 0xdb, 0xd9, 0x48, 0x05, 0x80, 0x00, 0x20, 0xfe, 0xbd, +0x70, 0xb5, 0x06, 0x00, 0x0d, 0x00, 0x00, 0x24, 0x40, 0x29, 0x09, 0xd8, 0xd3, 0x48, 0x48, 0x38, +0xf5, 0xf2, 0x9c, 0xfe, 0x04, 0x00, 0x03, 0xd0, 0xd0, 0x48, 0x21, 0x00, 0x24, 0x38, 0x0a, 0xe0, +0xc0, 0x2d, 0x0b, 0xd8, 0xcd, 0x48, 0x3c, 0x38, 0xf5, 0xf2, 0x90, 0xfe, 0x04, 0x00, 0x05, 0xd0, +0xca, 0x48, 0x21, 0x00, 0x18, 0x38, 0xf5, 0xf2, 0xb3, 0xfe, 0x0d, 0xe0, 0xff, 0x20, 0x40, 0x1c, +0x85, 0x42, 0x09, 0xd8, 0xc5, 0x48, 0x30, 0x38, 0xf5, 0xf2, 0x80, 0xfe, 0x04, 0x00, 0x03, 0xd0, +0xc2, 0x48, 0x21, 0x00, 0x0c, 0x38, 0xee, 0xe7, 0xc0, 0x49, 0xb0, 0x00, 0x0c, 0x50, 0x20, 0x00, +0x70, 0xbd, 0x0c, 0x23, 0x10, 0xb5, 0xbd, 0x4c, 0x43, 0x43, 0x24, 0x3c, 0xe0, 0x58, 0x00, 0x22, +0x1b, 0x19, 0x9b, 0x68, 0x04, 0xe0, 0xc4, 0x89, 0x8c, 0x42, 0x04, 0xd9, 0x00, 0x68, 0x52, 0x1c, +0x93, 0x42, 0xf8, 0xd8, 0x00, 0x20, 0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x00, 0x25, 0x00, 0x28, +0x46, 0xd0, 0x60, 0x7c, 0x03, 0x28, 0x43, 0xd2, 0xe1, 0x89, 0x40, 0x29, 0x0a, 0xd2, 0x00, 0x28, +0x08, 0xd1, 0x40, 0x21, 0x02, 0x20, 0xff, 0xf7, 0xdc, 0xff, 0x05, 0x00, 0x0b, 0xd1, 0x40, 0x21, +0x01, 0x20, 0x05, 0xe0, 0xc0, 0x29, 0x06, 0xd2, 0x01, 0x28, 0x04, 0xd1, 0xc0, 0x21, 0x02, 0x20, +0xff, 0xf7, 0xcf, 0xff, 0x05, 0x00, 0x21, 0x7c, 0xa4, 0x4e, 0x00, 0x20, 0x89, 0x00, 0x00, 0x2d, +0x70, 0x50, 0x12, 0xd0, 0xa8, 0x68, 0xa0, 0x60, 0xa8, 0x89, 0xa0, 0x81, 0xe8, 0x89, 0xe0, 0x81, +0x28, 0x7c, 0x20, 0x74, 0x29, 0x00, 0x20, 0x00, 0xea, 0x89, 0x14, 0x31, 0x14, 0x30, 0x06, 0xf3, +0xae, 0xef, 0x20, 0x7c, 0x80, 0x00, 0x34, 0x50, 0x2c, 0x00, 0x60, 0x7c, 0x0c, 0x23, 0x97, 0x49, +0x58, 0x43, 0x24, 0x39, 0x40, 0x18, 0x21, 0x00, 0xf5, 0xf2, 0x88, 0xfe, 0x61, 0x7c, 0x0c, 0x23, +0x92, 0x4a, 0x59, 0x43, 0x48, 0x3a, 0x8a, 0x18, 0x01, 0x00, 0x10, 0x00, 0xf5, 0xf2, 0x40, 0xfe, +0x70, 0xbd, 0xf0, 0xb5, 0x00, 0x20, 0x02, 0x00, 0x8d, 0x4d, 0x8c, 0x4f, 0x28, 0x80, 0x24, 0x3f, +0x0c, 0x20, 0x50, 0x43, 0xc1, 0x19, 0x8e, 0x68, 0x00, 0x2e, 0x0a, 0xd0, 0x39, 0x58, 0x00, 0x20, +0x05, 0xe0, 0x8b, 0x89, 0x2c, 0x88, 0x23, 0x43, 0x2b, 0x80, 0x09, 0x68, 0x40, 0x1c, 0x86, 0x42, +0xf7, 0xd8, 0x52, 0x1c, 0x03, 0x2a, 0xeb, 0xdb, 0xf0, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x48, 0x79, +0x0c, 0x00, 0x09, 0x79, 0x00, 0x02, 0x08, 0x43, 0x40, 0x28, 0x01, 0xd8, 0x00, 0x21, 0x04, 0xe0, +0xc0, 0x28, 0x01, 0xd8, 0x01, 0x21, 0x00, 0xe0, 0x02, 0x21, 0x28, 0x68, 0x42, 0x7c, 0x8a, 0x42, +0x0e, 0xd0, 0xff, 0xf7, 0x81, 0xff, 0x60, 0x79, 0x22, 0x79, 0x01, 0x02, 0x60, 0x78, 0x11, 0x43, +0x22, 0x78, 0x00, 0x02, 0x10, 0x43, 0x00, 0x06, 0x00, 0x0e, 0xff, 0xf7, 0x31, 0xff, 0x28, 0x60, +0x70, 0xbd, 0xf7, 0xb5, 0x90, 0xb0, 0x07, 0x00, 0x0c, 0x00, 0x79, 0xd1, 0xa1, 0xe0, 0x60, 0x78, +0x22, 0x78, 0x01, 0x02, 0x11, 0x43, 0x0d, 0x29, 0xf8, 0xd2, 0x62, 0x79, 0x20, 0x79, 0x12, 0x02, +0x02, 0x43, 0xff, 0x20, 0x40, 0x1c, 0x82, 0x42, 0xf0, 0xd8, 0x88, 0x00, 0x63, 0x49, 0x08, 0x58, +0x0e, 0x90, 0x00, 0x28, 0x04, 0xd1, 0x61, 0x79, 0x22, 0x79, 0x08, 0x02, 0x10, 0x43, 0x53, 0xd0, +0xf9, 0x7a, 0x38, 0x7a, 0x00, 0xf0, 0x59, 0xfb, 0x05, 0x00, 0x0e, 0x98, 0x00, 0x28, 0x4c, 0xd0, +0x62, 0x79, 0x23, 0x79, 0x11, 0x02, 0x19, 0x43, 0x47, 0xd1, 0x81, 0x68, 0xa9, 0x43, 0x81, 0x60, +0xc2, 0x89, 0x25, 0x21, 0x14, 0x30, 0xfa, 0xf7, 0x1f, 0xf9, 0x00, 0x28, 0x03, 0xd0, 0x0e, 0x99, +0x00, 0x20, 0x88, 0x60, 0x03, 0xe0, 0x0e, 0x98, 0x80, 0x68, 0x00, 0x28, 0x34, 0xd1, 0x0b, 0xf0, +0x67, 0xf9, 0x41, 0x1c, 0x0b, 0xd0, 0x62, 0x78, 0x23, 0x78, 0x11, 0x02, 0x00, 0x06, 0x19, 0x43, +0x00, 0x0e, 0x81, 0x42, 0x03, 0xd1, 0x00, 0x20, 0xc0, 0x43, 0x0b, 0xf0, 0x4f, 0xf9, 0x38, 0x00, +0xf6, 0xf7, 0x6f, 0xfb, 0x29, 0x21, 0x49, 0x01, 0x40, 0x18, 0x17, 0x22, 0x82, 0x56, 0x51, 0x1c, +0x09, 0xd0, 0x63, 0x78, 0x25, 0x78, 0x19, 0x02, 0x29, 0x43, 0x09, 0x06, 0x09, 0x0e, 0x8a, 0x42, +0x01, 0xd1, 0xff, 0x21, 0xc1, 0x75, 0x18, 0x22, 0x82, 0x56, 0x51, 0x1c, 0x09, 0xd0, 0x63, 0x78, +0x25, 0x78, 0x19, 0x02, 0x29, 0x43, 0x09, 0x06, 0x09, 0x0e, 0x8a, 0x42, 0x01, 0xd1, 0xff, 0x21, +0x01, 0x76, 0x0e, 0x98, 0xff, 0xf7, 0x00, 0xff, 0xf9, 0xe0, 0x00, 0x28, 0x22, 0xd0, 0x81, 0x68, +0xa9, 0x42, 0x06, 0xd1, 0x21, 0x00, 0x0e, 0xa8, 0xff, 0xf7, 0x5f, 0xff, 0x0e, 0x98, 0x26, 0xe0, +0xf9, 0xe0, 0xe3, 0x78, 0xa1, 0x78, 0x82, 0x89, 0x1b, 0x02, 0x0b, 0x43, 0x9a, 0x42, 0x20, 0xd1, +0x62, 0x79, 0x23, 0x79, 0xc1, 0x89, 0x12, 0x02, 0x1a, 0x43, 0x91, 0x42, 0x19, 0xd1, 0xa1, 0x1d, +0x14, 0x30, 0x0b, 0xf0, 0x0d, 0xfa, 0x00, 0x28, 0x13, 0xd1, 0x0e, 0x98, 0x81, 0x68, 0x29, 0x43, +0x81, 0x60, 0xd4, 0xe0, 0x61, 0x79, 0x20, 0x79, 0x62, 0x78, 0x09, 0x02, 0x23, 0x78, 0x01, 0x43, +0x10, 0x02, 0x18, 0x43, 0x00, 0x06, 0x00, 0x0e, 0xff, 0xf7, 0x8a, 0xfe, 0x0e, 0x90, 0x00, 0x28, +0x02, 0xd1, 0x01, 0x20, 0x13, 0xb0, 0xf0, 0xbd, 0x85, 0x60, 0xe2, 0x78, 0xa3, 0x78, 0x11, 0x02, +0x19, 0x43, 0x81, 0x81, 0x62, 0x78, 0x23, 0x78, 0x11, 0x02, 0x19, 0x43, 0x01, 0x74, 0x62, 0x79, +0x23, 0x79, 0x11, 0x02, 0x19, 0x43, 0xc1, 0x81, 0x62, 0x79, 0x21, 0x79, 0x12, 0x02, 0x0a, 0x43, +0xa1, 0x1d, 0x14, 0x30, 0x06, 0xf3, 0x28, 0xee, 0x0e, 0x98, 0x25, 0x21, 0xc2, 0x89, 0x14, 0x30, +0xfa, 0xf7, 0x8a, 0xf8, 0x00, 0x28, 0x1f, 0xd0, 0x01, 0x20, 0x0e, 0xf0, 0x39, 0xfe, 0x09, 0x4d, +0x02, 0x20, 0x06, 0xf0, 0xc2, 0xf8, 0x2e, 0x04, 0x12, 0xe0, 0x00, 0x00, 0xdc, 0x57, 0x02, 0xc0, +0x24, 0x04, 0x00, 0x00, 0xd4, 0x59, 0x02, 0xc0, 0xf8, 0x5d, 0x02, 0xc0, 0x68, 0x60, 0x02, 0xc0, +0xe4, 0x1c, 0x01, 0xc0, 0x00, 0x01, 0xff, 0x00, 0x35, 0x43, 0x02, 0x21, 0x06, 0xf0, 0xbc, 0xf8, +0x00, 0x28, 0xf9, 0xd1, 0x0e, 0x98, 0x85, 0x60, 0x38, 0x7a, 0x02, 0x28, 0x31, 0xd1, 0x0e, 0x98, +0x30, 0x21, 0xc2, 0x89, 0x14, 0x30, 0xfa, 0xf7, 0x5f, 0xf8, 0x05, 0x00, 0x29, 0xd0, 0x38, 0x00, +0x0e, 0xf0, 0xfe, 0xfd, 0x00, 0x22, 0x05, 0x20, 0x05, 0xa9, 0x01, 0xab, 0x07, 0xc3, 0x06, 0xaa, +0x00, 0x92, 0x28, 0x00, 0x0d, 0xaa, 0x0b, 0xa9, 0x0c, 0xab, 0x03, 0xf3, 0xcf, 0xfb, 0x0b, 0x20, +0x80, 0x01, 0x39, 0x18, 0x08, 0x69, 0x6b, 0x46, 0x80, 0x30, 0x02, 0x79, 0xb0, 0x82, 0x90, 0x23, +0x01, 0x00, 0x00, 0x00, 0xa0, 0x5e, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x9b, 0x3d, 0x43, 0x62, +0x1b, 0x7d, 0x52, 0x08, 0x52, 0x00, 0xdb, 0x09, 0x1a, 0x43, 0x02, 0x71, 0x08, 0x69, 0xfd, 0x21, +0x0a, 0x40, 0x6b, 0x46, 0x19, 0x7d, 0x80, 0x30, 0x49, 0x06, 0xc9, 0x17, 0x49, 0x1c, 0xc9, 0x07, +0x89, 0x0f, 0x0a, 0x43, 0x02, 0x71, 0x0e, 0x9e, 0xfb, 0x49, 0xb0, 0x89, 0x88, 0x42, 0x48, 0xd1, +0x38, 0x00, 0xf6, 0xf7, 0x98, 0xfa, 0x05, 0x00, 0x30, 0x00, 0x14, 0x30, 0xf7, 0x49, 0x04, 0x22, +0x0f, 0x90, 0x0b, 0xf0, 0x6f, 0xf9, 0x00, 0x28, 0x0e, 0xd1, 0x0e, 0x99, 0x38, 0x00, 0xca, 0x89, +0x14, 0x31, 0x11, 0xf0, 0xe4, 0xe9, 0x61, 0x78, 0x22, 0x78, 0x08, 0x02, 0x29, 0x21, 0x10, 0x43, +0x49, 0x01, 0x69, 0x18, 0xc8, 0x75, 0x2c, 0xe0, 0xed, 0x49, 0x0f, 0x98, 0x04, 0x22, 0x0b, 0xf0, +0x59, 0xf9, 0x00, 0x28, 0x19, 0xd1, 0x0e, 0x98, 0xc0, 0x89, 0x00, 0x1f, 0x01, 0x04, 0x13, 0x20, +0x80, 0x01, 0x2a, 0x18, 0x30, 0x00, 0x09, 0x0c, 0x18, 0x30, 0x11, 0xf0, 0xcc, 0xe9, 0xa8, 0x68, +0x01, 0x21, 0x49, 0x02, 0x08, 0x43, 0xa8, 0x60, 0x61, 0x78, 0x22, 0x78, 0x08, 0x02, 0x29, 0x21, +0x10, 0x43, 0x49, 0x01, 0x69, 0x18, 0x08, 0x76, 0x0b, 0xe0, 0x30, 0x00, 0xdd, 0x49, 0x04, 0x22, +0x16, 0x30, 0x0b, 0xf0, 0x37, 0xf9, 0x00, 0x28, 0x03, 0xd1, 0x0e, 0x98, 0x00, 0x7c, 0x0b, 0xf0, +0x2f, 0xf8, 0x61, 0x79, 0x22, 0x79, 0x08, 0x02, 0x12, 0x99, 0x10, 0x43, 0x09, 0x1a, 0x89, 0x1f, +0x09, 0x04, 0x09, 0x14, 0xa4, 0x1d, 0x04, 0x19, 0x12, 0x91, 0x12, 0x98, 0x06, 0x28, 0x00, 0xd3, +0x87, 0xe6, 0xff, 0xf7, 0x40, 0xfe, 0x00, 0x20, 0x26, 0xe7, 0xf7, 0xb5, 0x84, 0xb0, 0x00, 0x27, +0x00, 0x29, 0x10, 0xd0, 0x10, 0x1d, 0x00, 0x2a, 0x04, 0xd0, 0xd3, 0x78, 0x94, 0x78, 0x1a, 0x02, +0x22, 0x43, 0x02, 0xd1, 0x00, 0x26, 0x0d, 0x20, 0x0d, 0xe0, 0x42, 0x78, 0x03, 0x78, 0x10, 0x02, +0x18, 0x43, 0x0d, 0x28, 0x02, 0xd3, 0x00, 0x20, 0x07, 0xb0, 0xf0, 0xbd, 0x06, 0x06, 0x40, 0x1c, +0x36, 0x0e, 0x00, 0x06, 0x00, 0x0e, 0x03, 0x90, 0x04, 0x98, 0x0c, 0x1d, 0x01, 0x91, 0xc1, 0x7a, +0x00, 0x7a, 0x00, 0xf0, 0xd4, 0xf9, 0x02, 0x90, 0x4a, 0xe0, 0x30, 0x0a, 0x26, 0x70, 0xba, 0x49, +0x60, 0x70, 0xb0, 0x00, 0x0d, 0x58, 0x00, 0x2d, 0x30, 0xd0, 0xa8, 0x68, 0x02, 0x99, 0x08, 0x42, +0x3b, 0xd0, 0x04, 0x98, 0xf6, 0xf7, 0x07, 0xfa, 0xaa, 0x89, 0xa2, 0x70, 0x12, 0x0a, 0xe2, 0x70, +0xa9, 0x89, 0xad, 0x4a, 0x91, 0x42, 0x13, 0xd1, 0x29, 0x22, 0x52, 0x01, 0x82, 0x18, 0x17, 0x20, +0x10, 0x56, 0xb0, 0x42, 0x0c, 0xd1, 0x00, 0x20, 0x00, 0x90, 0x04, 0x98, 0x21, 0x00, 0x6a, 0x46, +0x11, 0xf0, 0x54, 0xe9, 0x6b, 0x46, 0x19, 0x88, 0x21, 0x71, 0x09, 0x0a, 0x61, 0x71, 0x12, 0xe0, +0xa1, 0x70, 0x09, 0x0a, 0xe1, 0x70, 0xe9, 0x89, 0x21, 0x71, 0x09, 0x0a, 0x61, 0x71, 0x29, 0x00, +0xea, 0x89, 0x14, 0x31, 0xa0, 0x1d, 0x06, 0xf3, 0x0a, 0xed, 0x04, 0xe0, 0x00, 0x20, 0xa0, 0x70, +0xe0, 0x70, 0x20, 0x71, 0x60, 0x71, 0x61, 0x79, 0x22, 0x79, 0x08, 0x02, 0x10, 0x43, 0xbf, 0x1d, +0xc1, 0x19, 0x0f, 0x04, 0x3f, 0x0c, 0xa4, 0x1d, 0x04, 0x19, 0x76, 0x1c, 0x36, 0x06, 0x36, 0x0e, +0x03, 0x98, 0x86, 0x42, 0xb1, 0xd3, 0x01, 0x98, 0xff, 0x21, 0x6a, 0x31, 0x01, 0x70, 0x09, 0x0a, +0x41, 0x70, 0x01, 0x98, 0x39, 0x0a, 0x87, 0x70, 0x3f, 0x1d, 0xc1, 0x70, 0x38, 0x04, 0x00, 0x0c, +0x92, 0xe7, 0x00, 0x29, 0x01, 0xd1, 0x00, 0x20, 0x70, 0x47, 0x03, 0x22, 0x0a, 0x71, 0x00, 0x22, +0x4a, 0x71, 0x40, 0x23, 0x8b, 0x71, 0x00, 0x23, 0xcb, 0x71, 0x06, 0x23, 0x0b, 0x72, 0x00, 0x23, +0xc0, 0x22, 0x4b, 0x72, 0x8a, 0x72, 0x05, 0x22, 0xcb, 0x72, 0x0a, 0x73, 0xff, 0x22, 0x52, 0x1c, +0x4b, 0x73, 0x8a, 0x73, 0x12, 0x0a, 0xca, 0x73, 0x02, 0x22, 0x0a, 0x74, 0xff, 0x22, 0xab, 0x32, +0x4b, 0x74, 0x0a, 0x70, 0x12, 0x0a, 0x0e, 0x20, 0x4a, 0x70, 0x88, 0x70, 0x00, 0x20, 0xc8, 0x70, +0x12, 0x20, 0x70, 0x47, 0xff, 0xb5, 0x81, 0xb0, 0xc1, 0x7a, 0x00, 0x7a, 0x0a, 0x9f, 0x00, 0xf0, +0x46, 0xf9, 0x06, 0x00, 0x00, 0x25, 0x74, 0x49, 0xa8, 0x00, 0x0c, 0x58, 0x00, 0x2c, 0x16, 0xd0, +0xa0, 0x68, 0xb0, 0x42, 0x13, 0xd1, 0xa0, 0x89, 0xb8, 0x42, 0x10, 0xd1, 0x20, 0x00, 0x04, 0x9a, +0x03, 0x99, 0x16, 0x30, 0x0b, 0xf0, 0x56, 0xf8, 0x00, 0x28, 0x08, 0xd1, 0x21, 0x00, 0xe2, 0x89, +0x02, 0x98, 0x14, 0x31, 0x06, 0xf3, 0x9a, 0xec, 0xe0, 0x89, 0x05, 0xb0, 0xf0, 0xbd, 0x6d, 0x1c, +0x2d, 0x06, 0x2d, 0x0e, 0x0d, 0x2d, 0xde, 0xd3, 0x00, 0x20, 0xf6, 0xe7, 0x70, 0xb5, 0x01, 0x25, +0x8d, 0x40, 0xc0, 0x00, 0x85, 0x40, 0x60, 0x4e, 0x00, 0x24, 0xa0, 0x00, 0x30, 0x58, 0x00, 0x28, +0x05, 0xd0, 0x81, 0x68, 0xa9, 0x43, 0x81, 0x60, 0x01, 0xd1, 0xff, 0xf7, 0x07, 0xfd, 0x64, 0x1c, +0x24, 0x06, 0x24, 0x0e, 0x0d, 0x2c, 0xf0, 0xd3, 0xff, 0xf7, 0x4d, 0xfd, 0x70, 0xbd, 0x10, 0xb5, +0xff, 0xf7, 0x5c, 0xfc, 0x10, 0xbd, 0xff, 0xb5, 0x81, 0xb0, 0x15, 0x00, 0x01, 0xd1, 0x01, 0x20, +0xd3, 0xe7, 0xc1, 0x7a, 0x00, 0x7a, 0x00, 0xf0, 0xfa, 0xf8, 0x06, 0x00, 0xa8, 0x78, 0x01, 0x27, +0x01, 0x09, 0x38, 0x00, 0x88, 0x40, 0x4d, 0x49, 0x09, 0x88, 0x08, 0x42, 0x28, 0xd0, 0x04, 0x98, +0x00, 0x24, 0x00, 0x06, 0x00, 0x0e, 0x00, 0x90, 0x47, 0x48, 0xa1, 0x00, 0x42, 0x58, 0x00, 0x2a, +0x1b, 0xd0, 0x90, 0x68, 0x30, 0x42, 0x18, 0xd0, 0x90, 0x89, 0x3f, 0x49, 0x88, 0x42, 0x14, 0xd0, +0xa9, 0x78, 0x3b, 0x00, 0x09, 0x09, 0x8b, 0x40, 0x18, 0x42, 0x0e, 0xd0, 0x02, 0x98, 0xd3, 0x89, +0x00, 0x28, 0x05, 0xd0, 0x00, 0x99, 0x14, 0x32, 0x28, 0x00, 0xff, 0xf2, 0x4a, 0xff, 0x04, 0xe0, +0x00, 0x99, 0x14, 0x32, 0x28, 0x00, 0xff, 0xf2, 0xab, 0xff, 0x64, 0x1c, 0x0d, 0x2c, 0xdb, 0xd3, +0x00, 0x20, 0x9a, 0xe7, 0xf7, 0xb5, 0x82, 0xb0, 0x04, 0x00, 0x80, 0x30, 0x01, 0x00, 0x00, 0x69, +0x00, 0x25, 0x02, 0x89, 0x2e, 0x00, 0x80, 0x18, 0x01, 0x90, 0x88, 0x69, 0xac, 0x30, 0x00, 0x90, +0x20, 0x7a, 0x01, 0x28, 0x03, 0xd0, 0x02, 0x28, 0x01, 0xd0, 0x03, 0x28, 0x2b, 0xd1, 0xff, 0x21, +0x49, 0x31, 0x09, 0x5d, 0x00, 0x29, 0x26, 0xd0, 0x01, 0x25, 0x02, 0x28, 0x17, 0xd1, 0x20, 0x00, +0x0e, 0xf0, 0x20, 0xfc, 0x06, 0x00, 0x0b, 0xf0, 0xa1, 0xfa, 0x13, 0x21, 0x49, 0x01, 0x77, 0x18, +0xf9, 0x7a, 0x02, 0x22, 0x11, 0x43, 0xf9, 0x72, 0x0b, 0xf0, 0x9c, 0xfa, 0x02, 0xe0, 0x01, 0x20, +0xea, 0xf7, 0x38, 0xff, 0xf8, 0x7a, 0xc0, 0x07, 0xf9, 0xd1, 0x00, 0x2d, 0x0b, 0xd0, 0x01, 0x9a, +0x00, 0x21, 0x20, 0x00, 0x0c, 0x23, 0xff, 0xf7, 0x86, 0xff, 0x00, 0x9a, 0x00, 0x21, 0x20, 0x00, +0x0c, 0x23, 0xff, 0xf7, 0x80, 0xff, 0x04, 0x9a, 0x03, 0x99, 0x20, 0x00, 0xff, 0xf7, 0x03, 0xfd, +0x07, 0x00, 0x00, 0x2d, 0x15, 0xd0, 0x01, 0x9a, 0x01, 0x21, 0x20, 0x00, 0x0c, 0x23, 0xff, 0xf7, +0x72, 0xff, 0x00, 0x9a, 0x01, 0x21, 0x20, 0x00, 0x0c, 0x23, 0xff, 0xf7, 0xdb, 0xcd, 0x3a, 0x49, +0x01, 0x00, 0x00, 0x00, 0x9c, 0x62, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xb3, 0xac, 0xc6, 0xdf, +0x6c, 0xff, 0x20, 0x7a, 0x02, 0x28, 0x06, 0xd1, 0x13, 0x20, 0x40, 0x01, 0x30, 0x18, 0xc1, 0x7a, +0xfd, 0x22, 0x11, 0x40, 0xc1, 0x72, 0x38, 0x00, 0x39, 0xe7, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, +0x60, 0x16, 0x32, 0x00, 0x20, 0x15, 0x32, 0x00, 0xfc, 0x75, 0x02, 0x00, 0x68, 0x60, 0x02, 0xc0, +0xe4, 0x1c, 0x01, 0xc0, 0xff, 0xb5, 0x81, 0xb0, 0x00, 0x20, 0x15, 0x00, 0x1f, 0x00, 0x0a, 0x9c, +0x00, 0x90, 0x26, 0x88, 0x02, 0x98, 0x0a, 0x3e, 0x00, 0x28, 0x3c, 0xd1, 0x0a, 0x20, 0x00, 0x2e, +0x20, 0x80, 0x38, 0xd1, 0x01, 0x98, 0x00, 0x22, 0x39, 0x00, 0xff, 0xf7, 0x48, 0xfe, 0x21, 0x88, +0x09, 0x18, 0x21, 0x80, 0x39, 0x18, 0x01, 0x98, 0xff, 0xf7, 0xc5, 0xfe, 0x21, 0x88, 0x40, 0x18, +0x20, 0x80, 0x00, 0x20, 0x0b, 0xe7, 0x68, 0x78, 0x29, 0x78, 0x00, 0x02, 0x08, 0x43, 0xff, 0x38, +0x6a, 0x38, 0x18, 0xd1, 0x02, 0x98, 0x01, 0x28, 0x0c, 0xd1, 0xe9, 0x78, 0xa8, 0x78, 0x09, 0x06, +0x0a, 0x14, 0x02, 0x43, 0x01, 0x98, 0x29, 0x1d, 0xff, 0xf7, 0x5e, 0xff, 0x00, 0x99, 0x08, 0x43, +0x00, 0x90, 0x08, 0xe0, 0x01, 0x98, 0x2a, 0x00, 0x39, 0x00, 0xff, 0xf7, 0x20, 0xfe, 0x21, 0x88, +0x3f, 0x18, 0x08, 0x18, 0x20, 0x80, 0xe9, 0x78, 0xaa, 0x78, 0x08, 0x02, 0x10, 0x43, 0x36, 0x1a, +0x36, 0x1f, 0x2d, 0x1d, 0x45, 0x19, 0x00, 0x2e, 0xd5, 0xdc, 0x02, 0x98, 0x00, 0x28, 0x06, 0xd1, +0x01, 0x98, 0x39, 0x00, 0xff, 0xf7, 0x8f, 0xfe, 0x21, 0x88, 0x08, 0x18, 0x20, 0x80, 0x00, 0x98, +0xd5, 0xe6, 0x01, 0x22, 0x8a, 0x40, 0xc1, 0x00, 0x10, 0x00, 0x88, 0x40, 0x70, 0x47, 0x00, 0x00, +0xf8, 0xb5, 0x05, 0x00, 0xff, 0x4c, 0x60, 0x69, 0xf6, 0xf7, 0x37, 0xf8, 0x2b, 0x00, 0x06, 0x00, +0x17, 0x27, 0xe5, 0x1f, 0xfc, 0x49, 0xfd, 0x48, 0x7f, 0x01, 0xf9, 0x3d, 0x06, 0xf3, 0x74, 0xed, +0x09, 0x06, 0x47, 0x62, 0x6f, 0x72, 0x76, 0x79, 0x83, 0x43, 0x46, 0x00, 0x60, 0x69, 0x00, 0x28, +0x0f, 0xd0, 0x01, 0x7a, 0x03, 0x29, 0x0c, 0xd1, 0xc0, 0x19, 0x01, 0x78, 0x03, 0x29, 0x08, 0xd1, +0x29, 0x78, 0x00, 0x29, 0x1c, 0xd1, 0x02, 0x21, 0x41, 0x70, 0x01, 0x20, 0x00, 0xf0, 0x30, 0xfa, +0x16, 0xe0, 0xf5, 0xf7, 0x63, 0xfd, 0x00, 0x28, 0x12, 0xd1, 0x0e, 0xf0, 0xa5, 0xfb, 0x00, 0x28, +0x0e, 0xd1, 0x28, 0x78, 0x02, 0x28, 0x0b, 0xd0, 0x00, 0x20, 0x00, 0xf0, 0x21, 0xfa, 0x60, 0x69, +0x00, 0x28, 0x05, 0xd0, 0x01, 0x7a, 0x03, 0x29, 0x02, 0xd1, 0x00, 0x21, 0xc0, 0x19, 0x41, 0x70, +0x60, 0x69, 0x04, 0xf0, 0xd5, 0xfb, 0x00, 0x28, 0x10, 0xd0, 0x60, 0x69, 0x00, 0x28, 0x0d, 0xd0, +0x01, 0x7a, 0x03, 0x29, 0x0a, 0xd1, 0xc0, 0x19, 0x00, 0x78, 0x02, 0x28, 0x06, 0xd1, 0xb0, 0x68, +0x08, 0x21, 0x08, 0x43, 0xb0, 0x60, 0x00, 0x20, 0x00, 0xf0, 0x02, 0xfa, 0xf8, 0xbd, 0x60, 0x69, +0x00, 0x28, 0x09, 0xd0, 0x01, 0x7a, 0x03, 0x29, 0x06, 0xd1, 0x41, 0x7a, 0x00, 0x29, 0x03, 0xd0, +0xc0, 0x19, 0x00, 0x78, 0x03, 0x28, 0xf1, 0xd1, 0xf5, 0xf7, 0x28, 0xfd, 0x01, 0x28, 0x03, 0xd1, +0x0e, 0xf0, 0x6a, 0xfb, 0x00, 0x28, 0x03, 0xd0, 0xf5, 0xf7, 0x20, 0xfd, 0x00, 0x28, 0xe5, 0xd1, +0x28, 0x78, 0x09, 0xe0, 0x28, 0x78, 0x00, 0x28, 0xe0, 0xd1, 0x60, 0x69, 0x00, 0x28, 0x18, 0xd0, +0x01, 0x7a, 0x03, 0x29, 0x15, 0xd1, 0x40, 0x7a, 0x00, 0x28, 0xd7, 0xd1, 0x11, 0xe0, 0x01, 0x60, +0x03, 0x20, 0xd1, 0xe7, 0xc2, 0x49, 0x01, 0x60, 0x04, 0x20, 0xcd, 0xe7, 0x01, 0x60, 0x05, 0x20, +0xca, 0xe7, 0x01, 0x60, 0x28, 0x78, 0x04, 0x28, 0x03, 0xd0, 0x03, 0x28, 0x01, 0xd0, 0x05, 0x28, +0xc4, 0xd1, 0x01, 0x20, 0xc0, 0xe7, 0x02, 0x20, 0xbe, 0xe7, 0xba, 0x48, 0x10, 0xb5, 0x00, 0x88, +0xc0, 0x07, 0x10, 0xd0, 0xb8, 0x48, 0x00, 0x78, 0x00, 0x28, 0x0c, 0xd0, 0x07, 0x28, 0x0a, 0xd0, +0xf4, 0xf7, 0xdb, 0xfd, 0xf4, 0xf7, 0x3a, 0xf9, 0x00, 0x28, 0x00, 0xd0, 0x02, 0x20, 0x0e, 0xf0, +0x1b, 0xfb, 0xf4, 0xf7, 0x0b, 0xfe, 0x00, 0x20, 0x10, 0xbd, 0xf8, 0xb5, 0x00, 0x24, 0x06, 0x00, +0xae, 0x4d, 0xaa, 0x4f, 0x6c, 0x60, 0x38, 0x68, 0x01, 0x78, 0x00, 0x29, 0x7e, 0xd0, 0x29, 0x7a, +0xc2, 0x78, 0x89, 0x18, 0x09, 0x06, 0x13, 0x22, 0x09, 0x0e, 0x52, 0x01, 0x80, 0x18, 0x29, 0x72, +0x80, 0x7f, 0x81, 0x42, 0x07, 0xd3, 0x2c, 0x72, 0xe8, 0x68, 0x91, 0x06, 0x08, 0x43, 0xe8, 0x60, +0xa8, 0x8a, 0x40, 0x1e, 0xa8, 0x82, 0xe8, 0x68, 0xa0, 0x49, 0xc0, 0x08, 0xc0, 0x00, 0x20, 0x31, +0xe8, 0x60, 0x89, 0x79, 0x00, 0x29, 0x34, 0xd0, 0x01, 0x21, 0x08, 0x43, 0xe8, 0x60, 0x00, 0x21, +0x30, 0x00, 0x0a, 0xf0, 0x27, 0xfc, 0x13, 0x23, 0x58, 0x43, 0x00, 0x21, 0x80, 0x19, 0x12, 0x30, +0x0a, 0xf0, 0x7f, 0xf9, 0x39, 0x68, 0x05, 0x22, 0xd2, 0x01, 0x89, 0x18, 0x09, 0x79, 0x00, 0x22, +0x00, 0xf3, 0x2e, 0xfc, 0x00, 0x28, 0x03, 0xd0, 0xe8, 0x68, 0x04, 0x21, 0x08, 0x43, 0xe8, 0x60, +0x01, 0x21, 0x30, 0x00, 0x0a, 0xf0, 0x0e, 0xfc, 0x13, 0x23, 0x58, 0x43, 0x01, 0x21, 0x80, 0x19, +0x12, 0x30, 0x0a, 0xf0, 0x66, 0xf9, 0x39, 0x68, 0x05, 0x22, 0xd2, 0x01, 0x89, 0x18, 0x49, 0x79, +0x01, 0x22, 0x00, 0xf3, 0x15, 0xfc, 0x00, 0x28, 0x03, 0xd0, 0xe8, 0x68, 0x02, 0x21, 0x08, 0x43, +0xe8, 0x60, 0x3b, 0x68, 0x98, 0x68, 0x00, 0x28, 0x03, 0xd0, 0xe9, 0x68, 0x88, 0x43, 0x00, 0xd1, +0x29, 0x61, 0x2e, 0x69, 0x78, 0x49, 0x7a, 0x4a, 0x76, 0x48, 0x00, 0x2e, 0x0d, 0xd0, 0x40, 0x69, +0x03, 0x7a, 0x03, 0x2b, 0x02, 0xd1, 0x43, 0x7a, 0x01, 0x2b, 0x16, 0xd0, 0x0c, 0x70, 0x01, 0x21, +0x49, 0x06, 0x14, 0x70, 0x10, 0xf0, 0x80, 0xee, 0x0f, 0xe0, 0x05, 0x26, 0xf6, 0x01, 0x9b, 0x19, +0x5b, 0x88, 0x00, 0x2b, 0x09, 0xd0, 0xab, 0x8a, 0x00, 0x2b, 0x06, 0xd1, 0x0c, 0x70, 0x14, 0x70, +0x40, 0x69, 0x6f, 0x4a, 0x65, 0x21, 0xee, 0xf7, 0x5e, 0xff, 0x00, 0xe0, 0x08, 0xe0, 0x2b, 0x78, +0x06, 0xf3, 0x4a, 0xec, 0x06, 0x06, 0x04, 0x07, 0x04, 0x04, 0x04, 0x06, 0x00, 0xf0, 0x22, 0xf8, +0xf8, 0xbd, 0x38, 0x68, 0x00, 0x78, 0x00, 0x28, 0x06, 0xd0, 0xf5, 0xf7, 0xc1, 0xfa, 0x00, 0xf0, +0x19, 0xf8, 0xf4, 0xf7, 0xc8, 0xfb, 0xf8, 0xbd, 0x5f, 0x48, 0x00, 0x78, 0x00, 0x28, 0x0b, 0xd0, +0xf4, 0xf7, 0xed, 0xfb, 0xf4, 0xf7, 0x8a, 0xf8, 0x00, 0x28, 0x00, 0xd0, 0x02, 0x20, 0x0e, 0xf0, +0x6b, 0xfa, 0xf4, 0xf7, 0x5b, 0xfd, 0xf8, 0xbd, 0x08, 0x20, 0xff, 0xf7, 0xa1, 0xfe, 0xf4, 0xf7, +0xde, 0xfb, 0xf8, 0xbd, 0xfe, 0xb5, 0x00, 0x25, 0x50, 0x4e, 0x54, 0x49, 0x37, 0x68, 0x48, 0x68, +0x3a, 0x78, 0x00, 0x2a, 0x04, 0xd0, 0x0a, 0x78, 0x00, 0x2a, 0x01, 0xd0, 0x00, 0x28, 0x02, 0xd0, +0x00, 0x20, 0xc0, 0x43, 0xfe, 0xbd, 0x47, 0x4c, 0x05, 0x21, 0x18, 0x34, 0xc9, 0x01, 0x60, 0x18, +0x02, 0x90, 0x00, 0x6a, 0x2b, 0x21, 0x00, 0x90, 0x09, 0x01, 0x20, 0x00, 0x06, 0xf3, 0x84, 0xea, +0xb9, 0x78, 0x21, 0x70, 0xff, 0x22, 0x06, 0x21, 0x60, 0x1c, 0x0a, 0xf0, 0x56, 0x45, 0x92, 0x32, +0x01, 0x00, 0x00, 0x00, 0x98, 0x66, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xe0, 0x76, 0x15, 0xb3, +0xc2, 0xed, 0xf8, 0x78, 0x0e, 0x26, 0x0e, 0x28, 0x00, 0xd2, 0x06, 0x00, 0x40, 0x48, 0x00, 0x78, +0x02, 0x28, 0x0b, 0xd0, 0x13, 0x20, 0x40, 0x01, 0x38, 0x18, 0x81, 0x7f, 0x3c, 0x48, 0x00, 0x7a, +0x08, 0x1a, 0xb0, 0x42, 0x00, 0xdc, 0x06, 0x00, 0x36, 0x06, 0x36, 0x0e, 0x3a, 0x48, 0x0e, 0x22, +0x01, 0x68, 0x3a, 0x48, 0x49, 0x1d, 0x20, 0x18, 0x06, 0xf3, 0xc4, 0xe9, 0x2e, 0x4f, 0x78, 0x69, +0x01, 0x7a, 0x03, 0x29, 0x12, 0xd1, 0x06, 0xf0, 0x45, 0xfd, 0x00, 0x28, 0x04, 0xd0, 0x2c, 0x49, +0x01, 0x20, 0x09, 0x68, 0xc8, 0x70, 0x09, 0xe0, 0x29, 0x48, 0x13, 0x21, 0x00, 0x68, 0x2c, 0x4a, +0x49, 0x01, 0x41, 0x18, 0x89, 0x7f, 0x12, 0x7a, 0x89, 0x1a, 0xc1, 0x70, 0x28, 0x48, 0xf2, 0x00, +0x92, 0x1b, 0x00, 0x7a, 0x22, 0x4e, 0xc3, 0x00, 0x31, 0x68, 0x18, 0x1a, 0x40, 0x18, 0x87, 0x21, +0x89, 0x00, 0x41, 0x18, 0xe0, 0x1d, 0x06, 0xf3, 0x9e, 0xe9, 0x31, 0x68, 0x21, 0x22, 0x0e, 0x00, +0x20, 0x00, 0x12, 0x01, 0x0c, 0x31, 0x6a, 0x30, 0x06, 0xf3, 0x94, 0xe9, 0x13, 0x20, 0x40, 0x01, +0x30, 0x18, 0xc1, 0x7f, 0x69, 0x20, 0x01, 0x55, 0x1d, 0x48, 0xf8, 0x60, 0x18, 0x48, 0x02, 0x9a, +0x16, 0x30, 0x01, 0x90, 0x50, 0x62, 0xb0, 0x68, 0x05, 0x21, 0xc9, 0x01, 0x80, 0x07, 0x02, 0xd5, +0x02, 0x98, 0x01, 0x22, 0xc2, 0x60, 0x70, 0x18, 0x01, 0x88, 0x02, 0x98, 0x01, 0x81, 0x78, 0x69, +0x01, 0x7a, 0x03, 0x29, 0x2f, 0xd1, 0x41, 0x7a, 0x01, 0x29, 0x2c, 0xd1, 0xf5, 0xf7, 0x47, 0xfe, +0x06, 0x00, 0x78, 0x69, 0x04, 0xf0, 0x1e, 0xfa, 0x08, 0x21, 0x00, 0x28, 0x1f, 0xd0, 0x04, 0x48, +0x7d, 0x25, 0x00, 0x68, 0x40, 0x68, 0x15, 0xe0, 0xa4, 0x49, 0x01, 0xc0, 0x94, 0x43, 0x01, 0xc0, +0x9c, 0xf4, 0x00, 0xc0, 0x1c, 0x46, 0x01, 0xc0, 0x04, 0x36, 0x01, 0xc0, 0x34, 0xf0, 0x00, 0xc0, +0xa4, 0x48, 0x01, 0xc0, 0xb7, 0x64, 0x01, 0x00, 0x54, 0xf4, 0x00, 0xc0, 0x7a, 0x02, 0x00, 0x00, +0xe7, 0x64, 0x01, 0x00, 0xed, 0x00, 0x45, 0x43, 0xb0, 0x68, 0x08, 0x43, 0x01, 0xe0, 0xb0, 0x68, +0x88, 0x43, 0xb0, 0x60, 0x09, 0xe0, 0xfe, 0x48, 0x40, 0x7a, 0x00, 0x28, 0x04, 0xd0, 0x70, 0x68, +0x7d, 0x25, 0xed, 0x00, 0x45, 0x43, 0x00, 0xe0, 0xfa, 0x4d, 0x00, 0x98, 0x00, 0x28, 0x04, 0xda, +0x00, 0x98, 0x40, 0x42, 0xa8, 0x42, 0x00, 0xd2, 0x2d, 0x18, 0x78, 0x69, 0x2a, 0x00, 0x21, 0x00, +0x10, 0xf0, 0x70, 0xed, 0xf2, 0x49, 0x01, 0x22, 0x48, 0x60, 0x00, 0x28, 0x4a, 0x72, 0x03, 0xd1, +0x01, 0x98, 0xff, 0xf7, 0x6c, 0xfe, 0x2d, 0xe7, 0x00, 0x20, 0xfe, 0xbd, 0xec, 0x49, 0x70, 0xb5, +0x1e, 0x31, 0x00, 0x20, 0x06, 0xf3, 0x70, 0xea, 0xe9, 0x4c, 0x00, 0x25, 0x20, 0x34, 0x20, 0x00, +0x0a, 0x38, 0xa5, 0x71, 0x10, 0xf0, 0x5a, 0xed, 0x0c, 0x20, 0xe0, 0x71, 0xe4, 0x48, 0x05, 0x61, +0xc5, 0x60, 0x70, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0xe1, 0x4d, 0x28, 0x78, 0x2c, 0x70, 0x03, 0xd1, +0x68, 0x68, 0xed, 0xf7, 0x9a, 0xfa, 0x70, 0xbd, 0x04, 0x28, 0x03, 0xd0, 0x04, 0x2c, 0x01, 0xd0, +0x00, 0x28, 0xf8, 0xd1, 0x28, 0x69, 0x00, 0x28, 0x01, 0xd1, 0xff, 0xf7, 0xd7, 0xff, 0x68, 0x68, +0x00, 0x26, 0x00, 0x28, 0x03, 0xd0, 0x2e, 0x70, 0xed, 0xf7, 0x87, 0xfa, 0x2c, 0x70, 0xd6, 0x48, +0x06, 0x62, 0xff, 0xf7, 0xe9, 0xfe, 0x70, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x01, 0x20, 0xea, 0xf7, +0x1d, 0xfc, 0x20, 0x00, 0x05, 0xf0, 0xd5, 0xfb, 0x01, 0x28, 0x01, 0xd1, 0xff, 0xf7, 0xdc, 0xfe, +0x10, 0xbd, 0xf0, 0xb5, 0x0d, 0x00, 0x00, 0x21, 0x17, 0x00, 0x89, 0xb0, 0x01, 0x28, 0x02, 0x91, +0x01, 0xd1, 0xca, 0x4c, 0x00, 0xe0, 0xca, 0x4c, 0x51, 0x21, 0xc9, 0x00, 0x20, 0x00, 0x06, 0xf3, +0x6e, 0xe9, 0x05, 0x21, 0xc9, 0x01, 0x66, 0x18, 0x01, 0x20, 0x00, 0x21, 0x30, 0x80, 0x71, 0x80, +0xbf, 0x49, 0xb0, 0x71, 0x48, 0x72, 0x28, 0x78, 0x00, 0x28, 0x7a, 0xd0, 0x20, 0x70, 0x68, 0x78, +0xa0, 0x70, 0xa8, 0x78, 0xe0, 0x70, 0xa8, 0x1d, 0x06, 0xf3, 0xfe, 0xe9, 0x60, 0x60, 0x28, 0x00, +0x0e, 0x30, 0x06, 0xf3, 0xfa, 0xe9, 0xa0, 0x60, 0x28, 0x00, 0x14, 0x30, 0x05, 0x90, 0xe8, 0x19, +0x04, 0x90, 0xb8, 0x48, 0x06, 0x90, 0x05, 0x98, 0x07, 0xe1, 0x05, 0x99, 0xff, 0x23, 0x48, 0x78, +0x0a, 0x78, 0x00, 0x02, 0x10, 0x43, 0x9b, 0x1d, 0xc2, 0x1a, 0x98, 0x42, 0x7e, 0xd0, 0x15, 0xdc, +0x00, 0x28, 0x25, 0xd0, 0xff, 0x38, 0x80, 0x1e, 0x32, 0xd0, 0x01, 0x28, 0x77, 0xd0, 0x03, 0x28, +0x76, 0xd1, 0x00, 0x20, 0x02, 0x00, 0x69, 0x46, 0x05, 0xc1, 0x09, 0x1f, 0x05, 0x98, 0x04, 0xf3, +0x8e, 0xf9, 0x05, 0x00, 0x6b, 0x46, 0x18, 0x79, 0x30, 0x71, 0xe1, 0xe0, 0x0d, 0x2a, 0x0f, 0xd0, +0x19, 0x2a, 0x66, 0xd0, 0xab, 0x2a, 0xeb, 0xd1, 0xff, 0x20, 0x05, 0x99, 0xb1, 0x30, 0x02, 0x23, +0x03, 0xaa, 0x04, 0xf3, 0xb5, 0xf8, 0x05, 0x00, 0x6b, 0x46, 0x98, 0x89, 0x70, 0x80, 0xcf, 0xe0, +0x13, 0x21, 0x10, 0x22, 0x49, 0x01, 0x61, 0x18, 0x00, 0x92, 0xc9, 0x7f, 0x4b, 0x01, 0x59, 0x18, +0x0a, 0x19, 0x99, 0x49, 0x0c, 0x32, 0x63, 0x18, 0x05, 0x99, 0x00, 0xf3, 0xcc, 0xf9, 0x9d, 0xe0, +0xc8, 0x78, 0x89, 0x78, 0x00, 0x02, 0x08, 0x43, 0x62, 0x28, 0x78, 0xd8, 0x87, 0x20, 0x80, 0x00, +0x21, 0x18, 0x05, 0x98, 0x00, 0x22, 0x04, 0xf3, 0xb6, 0xf8, 0x05, 0x00, 0x6f, 0xd0, 0x28, 0x1f, +0x00, 0x04, 0x00, 0x0c, 0x06, 0xd0, 0x07, 0x21, 0x06, 0xf3, 0xa4, 0xed, 0x13, 0x21, 0x49, 0x01, +0x61, 0x18, 0x88, 0x77, 0x13, 0x21, 0x00, 0x20, 0x49, 0x01, 0x61, 0x18, 0x08, 0x91, 0x89, 0x7f, +0x0d, 0xe0, 0xb5, 0xe0, 0xc2, 0x00, 0x12, 0x1a, 0x12, 0x19, 0xff, 0x32, 0xff, 0x32, 0x92, 0x1c, +0x52, 0x7f, 0x00, 0x2a, 0x02, 0xd0, 0x01, 0x20, 0x02, 0x90, 0x05, 0xe0, 0x40, 0x1c, 0x81, 0x42, +0xf0, 0xdc, 0x02, 0x98, 0x00, 0x28, 0xd9, 0xd0, 0x06, 0x98, 0x40, 0x69, 0x01, 0x7a, 0x03, 0x29, +0x44, 0xd1, 0xf5, 0xf7, 0x04, 0xfd, 0x81, 0x68, 0x49, 0x05, 0x3f, 0xd5, 0x09, 0x21, 0xc9, 0x01, +0x40, 0x18, 0x81, 0x7a, 0x00, 0x27, 0x42, 0x7a, 0x09, 0x02, 0x03, 0xe0, 0x45, 0xe0, 0x51, 0xe0, +0x6f, 0xe0, 0x55, 0xe0, 0x11, 0x43, 0x02, 0x7a, 0xc3, 0x79, 0x10, 0x02, 0x18, 0x43, 0x08, 0x1a, +0x00, 0x04, 0x00, 0x0c, 0x01, 0x90, 0x01, 0x20, 0x30, 0x80, 0x08, 0x98, 0x81, 0x7f, 0x01, 0x98, +0x06, 0xf3, 0x60, 0xed, 0x04, 0x28, 0x23, 0xd9, 0x1c, 0xe0, 0x01, 0x00, 0x01, 0x98, 0x06, 0xf3, +0x5a, 0xed, 0xf9, 0x00, 0xc9, 0x1b, 0x09, 0x19, 0x21, 0x22, 0x12, 0x01, 0x07, 0x91, 0x00, 0x1f, +0x89, 0x18, 0xc8, 0x73, 0x00, 0x0a, 0x08, 0x74, 0x08, 0x98, 0x81, 0x7f, 0x01, 0x98, 0x06, 0xf3, +0x4a, 0xed, 0x07, 0x99, 0x11, 0x22, 0x52, 0x01, 0x00, 0x1f, 0x89, 0x18, 0x48, 0x70, 0x00, 0x0a, +0x7f, 0x1c, 0x88, 0x70, 0x08, 0x98, 0x80, 0x7f, 0xb8, 0x42, 0xde, 0xdc, 0x40, 0xe0, 0x4b, 0xe0, +0x00, 0x27, 0x38, 0x00, 0x69, 0x46, 0x00, 0x97, 0x10, 0xf0, 0x78, 0xeb, 0xc4, 0xab, 0x1b, 0xc9, +0x01, 0x00, 0x00, 0x00, 0x94, 0x6a, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x14, 0x19, 0x60, 0x07, +0x08, 0x98, 0x52, 0x49, 0x87, 0x77, 0x00, 0x98, 0x62, 0x39, 0x08, 0x55, 0x32, 0xe0, 0x00, 0x20, +0x02, 0x00, 0x69, 0x46, 0x05, 0xc1, 0x09, 0x1f, 0x05, 0x98, 0x04, 0xf3, 0xd2, 0xf8, 0x05, 0x00, +0x6b, 0x46, 0x18, 0x79, 0x70, 0x71, 0x25, 0xe0, 0x05, 0x98, 0x31, 0x00, 0x04, 0xf3, 0x5c, 0xf8, +0x05, 0x00, 0x1f, 0xe0, 0xff, 0x20, 0x05, 0x99, 0x1f, 0x30, 0x02, 0x23, 0x03, 0xaa, 0x03, 0xf3, +0xf9, 0xff, 0x05, 0x00, 0x6b, 0x46, 0x98, 0x89, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x20, 0x00, 0x28, +0xb0, 0x71, 0x0f, 0xd1, 0x06, 0x98, 0x40, 0x69, 0xc0, 0x68, 0xc0, 0x04, 0x0a, 0xd5, 0x35, 0x49, +0x00, 0x20, 0x48, 0x72, 0x06, 0xe0, 0xc8, 0x78, 0x89, 0x78, 0x00, 0x02, 0x08, 0x43, 0x00, 0x1d, +0x05, 0x04, 0x2d, 0x0c, 0x00, 0x2d, 0x09, 0xd0, 0x05, 0x98, 0x40, 0x19, 0x05, 0x90, 0x04, 0x99, +0x88, 0x42, 0x00, 0xd2, 0xf3, 0xe6, 0x02, 0x98, 0x00, 0x28, 0x08, 0xd1, 0x51, 0x21, 0xc9, 0x00, +0x20, 0x00, 0x06, 0xf3, 0x36, 0xe8, 0x00, 0x20, 0xc0, 0x43, 0x09, 0xb0, 0xf0, 0xbd, 0x25, 0x48, +0x71, 0x88, 0x81, 0x82, 0x00, 0x20, 0xf8, 0xe7, 0xf8, 0xb5, 0x14, 0x00, 0x06, 0x00, 0x08, 0x00, +0x25, 0x49, 0x1d, 0x00, 0xff, 0x28, 0x4e, 0x61, 0x0c, 0xd1, 0x2a, 0x00, 0x21, 0x00, 0x00, 0x20, +0xff, 0xf7, 0xa1, 0xfe, 0x06, 0x00, 0x2a, 0x00, 0x21, 0x00, 0x01, 0x20, 0xff, 0xf7, 0x9b, 0xfe, +0x30, 0x43, 0x03, 0xe0, 0x2a, 0x00, 0x21, 0x00, 0xff, 0xf7, 0x95, 0xfe, 0x05, 0x00, 0x0c, 0xd1, +0x14, 0x4c, 0x00, 0x26, 0x27, 0x78, 0x26, 0x70, 0x60, 0x68, 0xed, 0xf7, 0x00, 0xf9, 0x13, 0x48, +0x27, 0x70, 0x06, 0x62, 0x26, 0x72, 0xff, 0xf7, 0x61, 0xfd, 0x28, 0x00, 0xf8, 0xbd, 0x70, 0xb5, +0x05, 0x00, 0x0c, 0x4c, 0x0e, 0x00, 0x20, 0x69, 0x29, 0x00, 0x06, 0xf3, 0xb0, 0xe8, 0x21, 0x00, +0x00, 0x22, 0x16, 0x31, 0x28, 0x1d, 0x10, 0xf0, 0xa0, 0xeb, 0x05, 0x1d, 0x00, 0x20, 0x00, 0x2e, +0x20, 0x61, 0x04, 0xd0, 0x60, 0x68, 0x00, 0x28, 0x01, 0xd1, 0xff, 0xf7, 0x29, 0xfe, 0x28, 0x00, +0x70, 0xbd, 0x00, 0x00, 0xa4, 0x48, 0x01, 0xc0, 0xa0, 0x86, 0x01, 0x00, 0x3c, 0x4c, 0x01, 0xc0, +0x1c, 0x46, 0x01, 0xc0, 0x94, 0x43, 0x01, 0xc0, 0xa4, 0x49, 0x01, 0xc0, 0x7f, 0x02, 0x00, 0x00, +0x10, 0xb5, 0x15, 0x49, 0x13, 0x48, 0x51, 0x24, 0xe4, 0x00, 0x08, 0x60, 0x21, 0x00, 0x05, 0xf3, +0xd0, 0xef, 0x12, 0x48, 0x21, 0x00, 0x05, 0xf3, 0xcc, 0xef, 0xff, 0x21, 0x10, 0x48, 0x19, 0x31, +0x05, 0xf3, 0xc6, 0xef, 0x00, 0x20, 0x10, 0xbd, 0x10, 0xb5, 0xff, 0xf7, 0x01, 0xfe, 0x0c, 0x48, +0x40, 0x68, 0xed, 0xf7, 0xb4, 0xf8, 0x10, 0xbd, 0x07, 0x48, 0x00, 0x68, 0x00, 0x78, 0x70, 0x47, +0x05, 0x49, 0x09, 0x68, 0x00, 0x29, 0x00, 0xd0, 0x08, 0x70, 0x70, 0x47, 0x05, 0x48, 0x40, 0x69, +0x70, 0x47, 0x00, 0x00, 0x94, 0x43, 0x01, 0xc0, 0x9c, 0xf4, 0x00, 0xc0, 0x1c, 0x46, 0x01, 0xc0, +0xa4, 0x48, 0x01, 0xc0, 0xa4, 0x49, 0x01, 0xc0, 0xf3, 0xb5, 0x00, 0x20, 0x8b, 0xb0, 0x0e, 0x00, +0x04, 0x90, 0x0b, 0x98, 0x0d, 0xf0, 0x0c, 0xff, 0x04, 0x00, 0x0b, 0x98, 0x0d, 0xf0, 0x2f, 0xff, +0x8f, 0x20, 0x80, 0x00, 0x27, 0x18, 0x38, 0x00, 0xdc, 0x30, 0x07, 0x90, 0x0b, 0x98, 0x05, 0xf0, +0x8e, 0xf9, 0x00, 0x28, 0x01, 0xd0, 0x05, 0x20, 0x02, 0xe0, 0x0b, 0x98, 0xfc, 0xf7, 0xb5, 0xff, +0x03, 0x90, 0x0b, 0x98, 0x80, 0x30, 0x08, 0x2e, 0x03, 0xd1, 0xc1, 0x68, 0x05, 0x91, 0x00, 0x69, +0x04, 0xe0, 0x05, 0x2e, 0x7e, 0xd1, 0x41, 0x69, 0x05, 0x91, 0x80, 0x69, 0x00, 0x28, 0x79, 0xd0, +0x05, 0x99, 0x00, 0x29, 0x76, 0xd0, 0x01, 0x00, 0xac, 0x31, 0x06, 0x91, 0x90, 0x39, 0x08, 0x2e, +0x02, 0x91, 0x01, 0xd1, 0xac, 0x21, 0x01, 0x81, 0x0b, 0x99, 0x0b, 0x22, 0x92, 0x01, 0x89, 0x18, +0x0a, 0x91, 0x0a, 0x69, 0xf5, 0x49, 0x2c, 0x32, 0x09, 0x5d, 0x01, 0x92, 0x0b, 0x9a, 0x89, 0x07, +0xc9, 0x0f, 0x7e, 0x32, 0x00, 0x91, 0x33, 0x00, 0x11, 0x00, 0x00, 0xf3, 0x81, 0xf8, 0x0a, 0x99, +0x09, 0x69, 0x40, 0x31, 0x8a, 0x89, 0x06, 0x99, 0x20, 0x31, 0x0a, 0x72, 0x12, 0x0a, 0x4a, 0x72, +0x3a, 0x7f, 0x8a, 0x72, 0x7a, 0x7f, 0xca, 0x72, 0x0a, 0x99, 0x01, 0x22, 0x09, 0x69, 0x0b, 0x7b, +0x39, 0x00, 0x20, 0x31, 0x09, 0x91, 0x09, 0x79, 0x02, 0x29, 0x00, 0xd1, 0x00, 0x22, 0x21, 0x00, +0x0e, 0x31, 0x08, 0x91, 0x00, 0xf3, 0x88, 0xf8, 0x05, 0x00, 0x08, 0x2e, 0x0c, 0xd1, 0xe8, 0x20, +0xc5, 0x51, 0x0a, 0x98, 0x07, 0x9b, 0x00, 0x69, 0x40, 0x30, 0x82, 0x7b, 0x20, 0x20, 0x01, 0x5d, +0x28, 0x00, 0x00, 0xf3, 0x8c, 0xf8, 0x05, 0x00, 0x0b, 0x98, 0xfa, 0xf7, 0x21, 0xfe, 0x00, 0x28, +0x04, 0xd0, 0x0b, 0x98, 0x29, 0x00, 0xfa, 0xf7, 0x3a, 0xfe, 0x45, 0x19, 0x13, 0x21, 0x49, 0x01, +0x60, 0x18, 0x00, 0x78, 0x01, 0x28, 0x0c, 0xd1, 0x49, 0x1c, 0x60, 0x18, 0xc0, 0x78, 0xc1, 0x06, +0xcb, 0x0f, 0x01, 0x07, 0xca, 0x0f, 0x40, 0x07, 0xc1, 0x0f, 0x28, 0x00, 0xff, 0xf2, 0x04, 0xf8, +0x45, 0x19, 0x60, 0x6c, 0x01, 0x28, 0x05, 0xd1, 0x39, 0x00, 0x30, 0x31, 0x28, 0x00, 0x00, 0xf3, +0xce, 0xf9, 0x45, 0x19, 0x08, 0x98, 0x01, 0x22, 0x29, 0x00, 0xff, 0xf2, 0x18, 0xf8, 0x45, 0x19, +0x60, 0x6c, 0x00, 0xe0, 0x93, 0xe0, 0x01, 0x28, 0x05, 0xd1, 0x21, 0x00, 0x64, 0x31, 0x28, 0x00, +0x00, 0xf3, 0xc3, 0xf9, 0x45, 0x19, 0x21, 0x20, 0x00, 0x5d, 0xc0, 0x09, 0x04, 0xd0, 0x29, 0x00, +0x20, 0x00, 0x08, 0xf0, 0xf2, 0xf9, 0x45, 0x19, 0x60, 0x6c, 0x01, 0x28, 0x17, 0xd1, 0x09, 0x98, +0x80, 0x7c, 0x80, 0x07, 0x13, 0xd5, 0x09, 0x98, 0x00, 0x79, 0x02, 0x28, 0x07, 0xd0, 0xe1, 0x1d, +0xff, 0x31, 0xfc, 0x31, 0x10, 0x22, 0x28, 0x00, 0x05, 0xf3, 0x3e, 0xee, 0x10, 0x35, 0xaf, 0x48, +0x0a, 0x22, 0x11, 0x30, 0x21, 0x18, 0x28, 0x00, 0x05, 0xf3, 0x36, 0xee, 0x0a, 0x35, 0x60, 0x6a, +0x01, 0x28, 0x05, 0xd1, 0x21, 0x00, 0x28, 0x31, 0x28, 0x00, 0x00, 0xf3, 0x9c, 0xf9, 0x45, 0x19, +0x08, 0x2e, 0x04, 0xd1, 0xa6, 0x48, 0x05, 0x60, 0x70, 0x01, 0x04, 0x90, 0x01, 0xe0, 0xa5, 0x48, +0x05, 0x60, 0x0b, 0x98, 0xf6, 0xf7, 0x4d, 0xfa, 0x00, 0x28, 0x02, 0xd1, 0x05, 0x98, 0xff, 0xf2, +0x42, 0xfe, 0x05, 0x98, 0x04, 0x99, 0xc1, 0x61, 0x02, 0x99, 0x03, 0x98, 0x88, 0x70, 0x05, 0x98, +0x01, 0x21, 0xc0, 0x69, 0x09, 0x03, 0x88, 0x43, 0x05, 0x99, 0xc8, 0x61, 0x03, 0x98, 0x01, 0xf3, +0x79, 0xfc, 0x05, 0x99, 0x0c, 0x23, 0xc8, 0x62, 0x06, 0x98, 0x06, 0x99, 0x28, 0x1a, 0x20, 0x38, +0x08, 0x70, 0x00, 0x0a, 0x48, 0x70, 0x06, 0x9a, 0x0b, 0x98, 0x01, 0x21, 0xff, 0xf7, 0x89, 0xf9, +0x0b, 0x98, 0x00, 0x7a, 0x03, 0x28, 0x23, 0xd1, 0x0b, 0x98, 0x40, 0x7a, 0x00, 0x28, 0x1f, 0xd0, +0x02, 0x28, 0x10, 0xd0, 0x05, 0x2e, 0x04, 0xd1, 0x06, 0x99, 0x0b, 0x98, 0x04, 0xf0, 0x11, 0xfb, +0x05, 0xe0, 0x08, 0x2e, 0x14, 0xd1, 0x06, 0x99, 0x0b, 0x98, 0x04, 0xf0, 0x9a, 0x3b, 0xeb, 0x51, +0x01, 0x00, 0x00, 0x00, 0x90, 0x6e, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x47, 0xc3, 0xb3, 0x6b, +0x06, 0xfb, 0x0b, 0x98, 0x40, 0x7a, 0x02, 0x28, 0x0c, 0xd1, 0x0b, 0x98, 0xf5, 0xf7, 0xb3, 0xfa, +0x08, 0x2e, 0x07, 0xd1, 0x05, 0xf0, 0xf7, 0xf8, 0x00, 0x28, 0x03, 0xd0, 0x06, 0x99, 0x0b, 0x98, +0x04, 0xf0, 0x38, 0xfc, 0xc0, 0x37, 0xbb, 0x6a, 0x06, 0x9a, 0x05, 0x98, 0x31, 0x00, 0xff, 0xf2, +0xe7, 0xff, 0x0d, 0xb0, 0xf0, 0xbd, 0x10, 0xb5, 0x0c, 0x00, 0x0d, 0xf0, 0xd3, 0xfd, 0x74, 0x49, +0x44, 0x31, 0x40, 0x18, 0xc0, 0x78, 0xc1, 0x06, 0xcb, 0x0f, 0x01, 0x07, 0xca, 0x0f, 0x40, 0x07, +0xc1, 0x0f, 0x20, 0x00, 0xff, 0xf2, 0xe9, 0xff, 0x10, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x0d, 0xf0, +0xc1, 0xfd, 0x2c, 0x00, 0x80, 0x34, 0xe1, 0x68, 0x28, 0x00, 0xff, 0xf7, 0xe4, 0xff, 0x61, 0x69, +0x28, 0x00, 0xff, 0xf7, 0xe0, 0xff, 0x70, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x0d, 0xf0, 0xb2, 0xfd, +0x20, 0x00, 0xff, 0xf7, 0xea, 0xff, 0x10, 0xbd, 0xf8, 0xb5, 0x0c, 0x00, 0x15, 0x00, 0x47, 0x68, +0x0a, 0xf0, 0x2c, 0xfc, 0x06, 0x00, 0x78, 0x78, 0x3a, 0x78, 0x00, 0x02, 0x10, 0x43, 0x0c, 0x38, +0x02, 0x04, 0x39, 0x00, 0x2c, 0x31, 0x12, 0x0c, 0x3d, 0x20, 0x03, 0xf3, 0x70, 0xfd, 0x00, 0x28, +0x28, 0xd0, 0x21, 0x79, 0xca, 0x43, 0x92, 0x07, 0x0d, 0xd0, 0x89, 0x07, 0x89, 0x0f, 0x01, 0x29, +0x09, 0xd0, 0x00, 0x2d, 0x07, 0xd0, 0xe1, 0x78, 0x08, 0x22, 0x11, 0x43, 0xe1, 0x70, 0xc1, 0x78, +0x11, 0x43, 0xc1, 0x70, 0x06, 0xe0, 0xe2, 0x78, 0xf7, 0x21, 0x0a, 0x40, 0xe2, 0x70, 0xc2, 0x78, +0x0a, 0x40, 0xc2, 0x70, 0xc1, 0x78, 0xfb, 0x22, 0x11, 0x40, 0xe2, 0x78, 0x52, 0x07, 0xd2, 0x0f, +0x92, 0x00, 0x11, 0x43, 0xc1, 0x70, 0xe2, 0x78, 0x89, 0x08, 0x89, 0x00, 0x92, 0x07, 0x92, 0x0f, +0x11, 0x43, 0xc1, 0x70, 0x30, 0x00, 0x0a, 0xf0, 0xf5, 0xfb, 0xf8, 0xbd, 0x70, 0xb5, 0x0e, 0x00, +0x0d, 0xf0, 0x68, 0xfd, 0x04, 0x00, 0x64, 0x34, 0x01, 0x25, 0x21, 0x00, 0x30, 0x00, 0xff, 0xf2, +0x9c, 0xff, 0x2a, 0x00, 0x21, 0x00, 0x30, 0x00, 0xff, 0xf7, 0xae, 0xff, 0x70, 0xbd, 0x70, 0xb5, +0x05, 0x00, 0x0d, 0xf0, 0x57, 0xfd, 0x2c, 0x00, 0x80, 0x34, 0xe1, 0x68, 0x28, 0x00, 0xff, 0xf7, +0xe5, 0xff, 0x61, 0x69, 0x28, 0x00, 0xff, 0xf7, 0xe1, 0xff, 0x70, 0xbd, 0x10, 0xb5, 0x04, 0x00, +0x0d, 0xf0, 0x48, 0xfd, 0x20, 0x00, 0xff, 0xf7, 0xea, 0xff, 0x10, 0xbd, 0x07, 0xb5, 0x6b, 0x46, +0x49, 0x68, 0x18, 0x88, 0x48, 0x85, 0x51, 0x68, 0x48, 0x85, 0x0e, 0xbd, 0x10, 0xb5, 0x04, 0x00, +0x0d, 0xf0, 0x38, 0xfd, 0xff, 0x30, 0x80, 0x34, 0xff, 0x30, 0x80, 0x1c, 0x62, 0x69, 0xe1, 0x68, +0x80, 0x6d, 0xff, 0xf7, 0xeb, 0xff, 0x10, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x0d, 0xf0, 0x2a, 0xfd, +0x20, 0x00, 0xff, 0xf7, 0xeb, 0xff, 0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x08, 0x00, 0x15, 0x00, +0x02, 0x00, 0x49, 0x68, 0x23, 0x00, 0x08, 0x20, 0xff, 0xf2, 0xe5, 0xfc, 0x69, 0x68, 0x23, 0x00, +0x2a, 0x00, 0x05, 0x20, 0xff, 0xf2, 0xdf, 0xfc, 0x70, 0xbd, 0x10, 0xb5, 0x0d, 0xf0, 0x12, 0xfd, +0x8f, 0x21, 0x89, 0x00, 0x40, 0x18, 0x01, 0x00, 0xdc, 0x31, 0x4a, 0x78, 0xc0, 0x30, 0x80, 0x6a, +0x92, 0x1c, 0x05, 0xf3, 0xfc, 0xec, 0x10, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x0d, 0xf0, 0x02, 0xfd, +0x20, 0x00, 0xff, 0xf7, 0xea, 0xff, 0x10, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x0d, 0xf0, 0xfa, 0xfc, +0x80, 0x34, 0x62, 0x69, 0xe1, 0x68, 0x28, 0x30, 0xff, 0xf7, 0xce, 0xff, 0x10, 0xbd, 0x10, 0xb5, +0x04, 0x00, 0x0d, 0xf0, 0xef, 0xfc, 0x20, 0x00, 0xff, 0xf7, 0xee, 0xff, 0x10, 0xbd, 0x00, 0x00, +0x1d, 0x02, 0x00, 0x00, 0xb4, 0xbb, 0x02, 0x00, 0xb8, 0xbb, 0x02, 0x00, 0xe0, 0x4a, 0x01, 0x00, +0x00, 0x20, 0x1c, 0x23, 0x43, 0x43, 0x9b, 0x18, 0x9b, 0x68, 0x8b, 0x42, 0x02, 0xd0, 0x40, 0x1c, +0x03, 0x28, 0xf6, 0xd3, 0x70, 0x47, 0xf8, 0xb5, 0x1c, 0x25, 0x55, 0x43, 0xd8, 0x4e, 0x01, 0x27, +0xac, 0x19, 0x0b, 0x00, 0x00, 0x92, 0x05, 0xf3, 0xde, 0xee, 0x0c, 0x47, 0x07, 0x47, 0x09, 0x18, +0x47, 0x1d, 0x47, 0x30, 0x47, 0x47, 0x30, 0x47, 0x67, 0x70, 0x3d, 0xe0, 0x62, 0x69, 0x00, 0x2a, +0x02, 0xd0, 0xe0, 0x68, 0x00, 0x21, 0x90, 0x47, 0xce, 0x48, 0x00, 0x68, 0x00, 0x28, 0x02, 0xd0, +0x00, 0x98, 0x00, 0xf0, 0x83, 0xf9, 0x77, 0x55, 0x2e, 0xe0, 0xa0, 0x68, 0x06, 0x21, 0xec, 0xf7, +0xa1, 0xfd, 0x29, 0xe0, 0xc7, 0x48, 0x00, 0x68, 0x00, 0x28, 0x0e, 0xd0, 0x70, 0x5d, 0x01, 0x28, +0x0b, 0xd1, 0xe0, 0x68, 0xf5, 0xf7, 0x6f, 0xf9, 0x04, 0xf0, 0xb5, 0xff, 0x00, 0x28, 0x04, 0xd1, +0xe0, 0x68, 0x00, 0x22, 0x5f, 0x21, 0xee, 0xf7, 0xcb, 0xf9, 0x00, 0x27, 0xa7, 0x60, 0x77, 0x55, +0x20, 0x7e, 0x00, 0x28, 0x0a, 0xd0, 0xe0, 0x68, 0xf5, 0xf7, 0x5d, 0xf9, 0x04, 0xf0, 0xa3, 0xff, +0x00, 0x28, 0x03, 0xd1, 0x00, 0x98, 0x00, 0xf0, 0x59, 0xf9, 0x27, 0x76, 0x22, 0x69, 0x00, 0x2a, +0x02, 0xd0, 0xe0, 0x68, 0x00, 0x21, 0x90, 0x47, 0x03, 0x20, 0xf8, 0xbd, 0xf8, 0xb5, 0x15, 0x00, +0x00, 0x26, 0x54, 0x69, 0x00, 0x2a, 0x23, 0xd0, 0x28, 0x89, 0x41, 0x19, 0x88, 0x78, 0x00, 0x09, +0x04, 0x28, 0x1f, 0xd0, 0x08, 0x28, 0x1b, 0xd0, 0x0d, 0x28, 0x19, 0xd1, 0x00, 0x20, 0x07, 0x00, +0x00, 0x90, 0x20, 0x00, 0xf5, 0xf7, 0x37, 0xf9, 0x00, 0x28, 0x01, 0xd0, 0x07, 0x00, 0xbd, 0x37, +0xb1, 0x20, 0x80, 0x00, 0x22, 0x18, 0x3b, 0x00, 0x28, 0x00, 0x69, 0x46, 0x04, 0xf3, 0x89, 0xfe, +0x00, 0x28, 0x05, 0xd0, 0x00, 0x9a, 0x06, 0x99, 0x28, 0x00, 0x09, 0xf0, 0x5f, 0xf9, 0x01, 0x26, +0x30, 0x00, 0xf8, 0xbd, 0x00, 0x2c, 0xfb, 0xd0, 0x20, 0x7a, 0x03, 0x28, 0xf8, 0xd1, 0x60, 0x7a, +0x01, 0x28, 0xf5, 0xd1, 0x06, 0x9a, 0x20, 0x00, 0x05, 0xf0, 0x10, 0xfe, 0xef, 0xe7, 0xff, 0xb5, +0x8f, 0xb0, 0x00, 0x20, 0x19, 0x9d, 0xff, 0xf7, 0x61, 0xff, 0x06, 0x00, 0x00, 0x27, 0x03, 0x28, +0x07, 0xd1, 0x00, 0x2d, 0x02, 0xd0, 0x0f, 0x98, 0x01, 0x21, 0xa8, 0x47, 0x1b, 0x98, 0x07, 0x60, +0x6e, 0xe0, 0x38, 0x21, 0x68, 0x46, 0x05, 0xf3, 0xc6, 0xec, 0x1c, 0x20, 0x70, 0x43, 0x88, 0x49, +0x44, 0x18, 0x1c, 0x21, 0x20, 0x00, 0x05, 0xf3, 0xbe, 0xec, 0x87, 0x48, 0x00, 0x90, 0x0f, 0x98, +0xf5, 0xf7, 0xf1, 0xf8, 0x04, 0xf0, 0x37, 0xff, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x97, 0x01, 0xe0, +0x82, 0x48, 0x01, 0x90, 0x0f, 0x98, 0x02, 0x96, 0x0c, 0x90, 0x10, 0xab, 0xe0, 0x60, 0x18, 0x78, +0xa0, 0x70, 0x11, 0x99, 0xe1, 0x70, 0x12, 0x99, 0x61, 0x60, 0x27, 0x76, 0x11, 0x99, 0x08, 0xab, +0x19, 0x72, 0x81, 0x07, 0x89, 0x0f, 0x59, 0x72, 0x01, 0x07, 0x89, 0x0f, 0x80, 0x06, 0x80, 0x0f, +0x99, 0x72, 0xd8, 0x72, 0x18, 0x7b, 0x40, 0x08, 0x40, 0x00, 0x18, 0x73, 0xf6, 0xf7, 0x71, 0xfa, +0x00, 0x28, 0x09, 0xd1, 0x08, 0xab, 0xde, 0x7a, 0x9a, 0x7a, 0x59, 0x7a, 0x18, 0x7a, 0x33, 0x00, +0x10, 0xf0, 0x38, 0xe8, 0x00, 0x28, 0x04, 0xd0, 0x08, 0xab, 0x18, 0x7b, 0xc6, 0xb5, 0xea, 0x7b, +0x01, 0x00, 0x00, 0x00, 0x8c, 0x72, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xf8, 0x06, 0x96, 0xd8, +0x40, 0x08, 0x40, 0x00, 0x03, 0xe0, 0x08, 0xab, 0x18, 0x7b, 0x01, 0x21, 0x08, 0x43, 0x08, 0xab, +0x18, 0x73, 0x12, 0x98, 0x7d, 0x23, 0xdb, 0x00, 0x58, 0x43, 0x66, 0x49, 0x08, 0x90, 0x40, 0x18, +0x07, 0x90, 0x18, 0x98, 0xfb, 0x21, 0x58, 0x43, 0x08, 0xab, 0x06, 0x90, 0x18, 0x7b, 0x08, 0x40, +0x18, 0x73, 0x25, 0x61, 0x1a, 0x98, 0x60, 0x61, 0x68, 0x46, 0xec, 0xf7, 0x2e, 0xfb, 0xa0, 0x60, +0x1b, 0x99, 0x08, 0x60, 0xa0, 0x68, 0x00, 0x28, 0x07, 0xd1, 0x00, 0x2d, 0x02, 0xd0, 0x0f, 0x98, +0x01, 0x21, 0xa8, 0x47, 0x00, 0x20, 0x13, 0xb0, 0xf0, 0xbd, 0x01, 0x20, 0xfb, 0xe7, 0x70, 0xb5, +0x04, 0x00, 0x00, 0x68, 0x00, 0x26, 0x00, 0x28, 0x01, 0xd1, 0x30, 0x00, 0x70, 0xbd, 0xff, 0xf7, +0xd7, 0xfe, 0x05, 0x00, 0x03, 0x28, 0x0e, 0xd0, 0x20, 0x68, 0xec, 0xf7, 0x3c, 0xfd, 0x04, 0x28, +0x03, 0xd1, 0x20, 0x68, 0x06, 0x21, 0xec, 0xf7, 0x9f, 0xfc, 0x1c, 0x21, 0x69, 0x43, 0x45, 0x4a, +0x01, 0x26, 0x89, 0x18, 0x0e, 0x76, 0x00, 0x20, 0x20, 0x60, 0xe6, 0xe7, 0xf7, 0xb5, 0x00, 0x20, +0x86, 0xb0, 0x0c, 0x00, 0x10, 0x60, 0x48, 0x78, 0x09, 0x78, 0x3f, 0x4f, 0x16, 0x00, 0x00, 0x02, +0x08, 0x43, 0x49, 0xd0, 0x01, 0x28, 0x19, 0xd0, 0x04, 0x28, 0x43, 0xd1, 0x38, 0x68, 0x00, 0x28, +0x40, 0xd0, 0xff, 0xf7, 0xad, 0xfe, 0x07, 0x00, 0x37, 0x48, 0xff, 0xf7, 0xc8, 0xff, 0x05, 0x00, +0x03, 0x2f, 0x04, 0xd0, 0x1c, 0x21, 0x79, 0x43, 0x32, 0x48, 0x40, 0x5c, 0xa0, 0x70, 0x1c, 0x21, +0x79, 0x43, 0x30, 0x48, 0x08, 0x18, 0x00, 0x7e, 0x30, 0x60, 0x46, 0xe0, 0xa0, 0x1d, 0x05, 0xf3, +0xb2, 0xec, 0x00, 0x28, 0x1a, 0xd0, 0x03, 0x00, 0x20, 0x79, 0x00, 0x21, 0x00, 0x91, 0x01, 0x91, +0x05, 0x90, 0x29, 0x4a, 0x02, 0x91, 0x03, 0x92, 0x62, 0x79, 0x05, 0x99, 0x06, 0x98, 0xff, 0xf7, +0x20, 0xff, 0x05, 0x00, 0x38, 0x68, 0x00, 0x28, 0x06, 0xd0, 0xff, 0xf7, 0x81, 0xfe, 0x1c, 0x21, +0x41, 0x43, 0x20, 0x48, 0x40, 0x5c, 0xa0, 0x70, 0x01, 0x20, 0xdd, 0xe7, 0xf5, 0xf7, 0x40, 0xff, +0x00, 0x28, 0x05, 0xd0, 0x20, 0x79, 0x05, 0x90, 0x61, 0x79, 0x00, 0x22, 0x0f, 0xf0, 0xc8, 0xee, +0x01, 0x25, 0x1a, 0xe0, 0x00, 0x25, 0x18, 0xe0, 0x38, 0x68, 0x00, 0x25, 0x00, 0x28, 0x14, 0xd0, +0xff, 0xf7, 0x66, 0xfe, 0x03, 0x28, 0x10, 0xd0, 0x1c, 0x25, 0x45, 0x43, 0x11, 0x4e, 0x00, 0x21, +0xa8, 0x19, 0xe1, 0x70, 0x81, 0x78, 0x21, 0x71, 0xc1, 0x78, 0x61, 0x71, 0x40, 0x68, 0xa1, 0x1d, +0x05, 0xf3, 0x80, 0xec, 0x70, 0x5d, 0xa0, 0x70, 0xe2, 0xe7, 0x28, 0x00, 0x09, 0xb0, 0xf0, 0xbd, +0x1c, 0x23, 0x58, 0x43, 0x07, 0x49, 0x10, 0xb5, 0x40, 0x18, 0xc0, 0x68, 0x0f, 0xf0, 0x74, 0xee, +0x01, 0x89, 0x09, 0x4a, 0x09, 0x18, 0x0a, 0x70, 0x12, 0x0a, 0x4a, 0x70, 0x0f, 0xf0, 0x70, 0xee, +0x10, 0xbd, 0x00, 0x00, 0x6c, 0x4c, 0x01, 0xc0, 0xa0, 0xf4, 0x00, 0xc0, 0xc7, 0x70, 0x01, 0x00, +0x6d, 0x71, 0x01, 0x00, 0x10, 0x27, 0x00, 0x00, 0x0d, 0x81, 0x00, 0x00, 0x00, 0x29, 0x0e, 0xd1, +0x0b, 0x2a, 0x0c, 0xd2, 0x40, 0x1e, 0x00, 0x06, 0x00, 0x0e, 0x0e, 0x28, 0x07, 0xd2, 0x19, 0x00, +0x0b, 0x23, 0x58, 0x43, 0xfc, 0x4b, 0xc0, 0x18, 0x81, 0x54, 0x01, 0x20, 0x70, 0x47, 0x00, 0x20, +0x70, 0x47, 0xfe, 0xb5, 0x00, 0x22, 0x06, 0x00, 0x02, 0x92, 0x3e, 0xe0, 0xf0, 0x78, 0x0f, 0x1f, +0xb1, 0x78, 0x00, 0x02, 0x35, 0x00, 0x08, 0x43, 0xb8, 0x42, 0x38, 0xdc, 0x69, 0x78, 0x2a, 0x78, +0x09, 0x02, 0x11, 0x43, 0xff, 0x39, 0x8a, 0x39, 0x28, 0xd1, 0x04, 0x28, 0x26, 0xdd, 0xe8, 0x79, +0x00, 0x90, 0x69, 0x79, 0x2a, 0x79, 0x08, 0x02, 0x00, 0x99, 0x10, 0x43, 0xef, 0xf7, 0xab, 0xf9, +0x01, 0x90, 0xe9, 0x78, 0xaa, 0x78, 0x08, 0x02, 0x10, 0x43, 0x00, 0x1f, 0x40, 0x08, 0x00, 0x24, +0x84, 0x46, 0x11, 0xe0, 0x61, 0x00, 0x48, 0x19, 0x01, 0x7a, 0x0a, 0x29, 0x0b, 0xd2, 0x49, 0x1c, +0x0a, 0x06, 0x43, 0x7a, 0x01, 0x99, 0x00, 0x98, 0x12, 0x0e, 0xff, 0xf7, 0xb7, 0xff, 0x00, 0x28, +0x01, 0xd0, 0x01, 0x20, 0x02, 0x90, 0x64, 0x1c, 0x64, 0x45, 0xeb, 0xdb, 0xe8, 0x78, 0xa9, 0x78, +0x00, 0x02, 0x08, 0x43, 0x39, 0x1a, 0x36, 0x1d, 0x86, 0x19, 0x04, 0x29, 0xbe, 0xd2, 0x02, 0x98, +0xfe, 0xbd, 0xff, 0xb5, 0x81, 0xb0, 0x0a, 0x9c, 0x00, 0x2c, 0x02, 0xd1, 0x00, 0x20, 0x05, 0xb0, +0xf0, 0xbd, 0x04, 0x21, 0xd0, 0x4f, 0x05, 0x00, 0x00, 0x91, 0x28, 0xe0, 0x0b, 0x26, 0x6e, 0x43, +0xff, 0x20, 0xba, 0x5d, 0x8a, 0x30, 0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, 0x0b, 0x99, 0x20, 0x1d, +0x00, 0x23, 0xef, 0xf7, 0x8d, 0xf9, 0x00, 0x21, 0x03, 0x98, 0xf6, 0x19, 0x09, 0xe0, 0x4a, 0x00, +0x12, 0x19, 0x33, 0x18, 0x10, 0x72, 0x40, 0x1c, 0x00, 0x06, 0x5b, 0x78, 0x00, 0x0e, 0x49, 0x1c, +0x53, 0x72, 0x04, 0x9a, 0x90, 0x42, 0xf2, 0xd3, 0x48, 0x00, 0x00, 0x99, 0x40, 0x18, 0x00, 0x04, +0x00, 0x0c, 0x02, 0x0a, 0xa0, 0x70, 0xe2, 0x70, 0x24, 0x1d, 0x04, 0x19, 0x6d, 0x1c, 0x02, 0x98, +0x85, 0x42, 0xd3, 0xdb, 0x20, 0x00, 0xca, 0xe7, 0xfe, 0xb5, 0x05, 0x00, 0x00, 0x20, 0x0c, 0x00, +0x00, 0x2d, 0x08, 0x80, 0x0e, 0xd0, 0x00, 0x2c, 0x0c, 0xd0, 0x00, 0x2a, 0x0a, 0xd1, 0x00, 0x27, +0x0a, 0x23, 0x38, 0x00, 0x0e, 0x21, 0x3a, 0x00, 0x01, 0x97, 0x00, 0x95, 0xff, 0xf7, 0xb1, 0xff, +0x00, 0x28, 0x01, 0xd1, 0x00, 0x20, 0xfe, 0xbd, 0x40, 0x1b, 0x20, 0x80, 0x01, 0x20, 0xfe, 0xbd, +0x30, 0xb4, 0x0d, 0x00, 0x14, 0x00, 0x02, 0x9a, 0x19, 0x00, 0x01, 0x20, 0x01, 0x2d, 0x03, 0xd1, +0x09, 0x88, 0x20, 0x00, 0x30, 0xbc, 0x54, 0xe7, 0x00, 0x2d, 0x02, 0xd1, 0x20, 0x00, 0x30, 0xbc, +0xd2, 0xe7, 0x30, 0xbc, 0x70, 0x47, 0x70, 0xb5, 0x00, 0x24, 0xa0, 0x4e, 0x0c, 0x20, 0x60, 0x43, +0x80, 0x19, 0x05, 0xf3, 0x80, 0xeb, 0x05, 0x00, 0xfd, 0xf7, 0x4f, 0xfa, 0x00, 0x28, 0x06, 0xd0, +0x0a, 0x2d, 0x01, 0xdd, 0x0a, 0x25, 0x02, 0xe0, 0x00, 0x2d, 0x00, 0xda, 0x00, 0x25, 0x29, 0x00, +0x20, 0x00, 0x07, 0xf0, 0x82, 0xfe, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x0b, 0x2c, 0xe5, 0xd3, +0x07, 0xf0, 0x6e, 0xff, 0x70, 0xbd, 0xff, 0xb5, 0x01, 0x20, 0x85, 0xb0, 0x01, 0x90, 0x8e, 0x48, +0x2f, 0x38, 0x01, 0x2b, 0x0b, 0xd0, 0x01, 0x78, 0x05, 0x9a, 0x91, 0x42, 0x07, 0xd1, 0x42, 0x78, +0x07, 0x99, 0x8a, 0x42, 0x03, 0xd1, 0x82, 0x78, 0x06, 0x99, 0x8a, 0x42, 0x03, 0xd0, 0x0e, 0x9a, +0x01, 0x21, 0x11, 0x60, 0x02, 0xe0, 0x0e, 0x99, 0x00, 0x22, 0x0a, 0x60, 0x06, 0x99, 0x81, 0x70, +0x05, 0x99, 0x01, 0x70, 0x07, 0x99, 0x00, 0x25, 0x41, 0x70, 0x06, 0x98, 0x00, 0x28, 0x03, 0xd1, +0x08, 0x2d, 0x01, 0xd1, 0xfb, 0xf7, 0xf4, 0xfb, 0x07, 0x98, 0x01, 0x28, 0x01, 0xd1, 0x08, 0x2d, +0x65, 0xd2, 0x07, 0x9a, 0x05, 0x99, 0x06, 0x98, 0xec, 0xf7, 0xb4, 0xfe, 0x06, 0x99, 0x2a, 0x00, +0x05, 0x90, 0xee, 0xf7, 0x86, 0xfc, 0x06, 0x00, 0x06, 0x99, 0x05, 0x98, 0xbd, 0x59, 0x5c, 0x0d, +0x01, 0x00, 0x00, 0x00, 0x88, 0x76, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xab, 0xdc, 0x45, 0xb4, +0xee, 0xf7, 0x7d, 0xfc, 0x04, 0x00, 0x86, 0x42, 0x00, 0xda, 0x26, 0x00, 0x0c, 0x20, 0x70, 0x49, +0x68, 0x43, 0x84, 0x31, 0x04, 0x90, 0x40, 0x18, 0x03, 0x90, 0x05, 0xf3, 0x1e, 0xeb, 0x07, 0x00, +0xa0, 0x42, 0x01, 0xda, 0x27, 0x00, 0x02, 0xe0, 0xb7, 0x42, 0x00, 0xdd, 0x37, 0x00, 0x68, 0x48, +0x04, 0x99, 0x08, 0x18, 0x02, 0x90, 0x05, 0xf3, 0x10, 0xeb, 0xb8, 0x42, 0x06, 0xd0, 0x02, 0x99, +0x38, 0x00, 0x05, 0xf3, 0x1a, 0xeb, 0x0e, 0x98, 0x01, 0x21, 0x01, 0x60, 0x03, 0x98, 0x00, 0x1d, +0x05, 0xf3, 0x02, 0xeb, 0x07, 0x00, 0xa0, 0x42, 0x01, 0xda, 0x27, 0x00, 0x02, 0xe0, 0xb7, 0x42, +0x00, 0xdd, 0x37, 0x00, 0x02, 0x98, 0x00, 0x1d, 0x05, 0xf3, 0xf6, 0xea, 0xb8, 0x42, 0x07, 0xd0, +0x02, 0x99, 0x38, 0x00, 0x09, 0x1d, 0x05, 0xf3, 0x00, 0xeb, 0x0e, 0x99, 0x01, 0x20, 0x08, 0x60, +0x02, 0x98, 0x05, 0xf3, 0xea, 0xea, 0x04, 0x00, 0x02, 0x98, 0x00, 0x1d, 0x05, 0xf3, 0xe4, 0xea, +0x24, 0x1a, 0x03, 0x98, 0x08, 0x30, 0x05, 0xf3, 0xe0, 0xea, 0x84, 0x42, 0x00, 0xda, 0x20, 0x00, +0x02, 0x99, 0x08, 0x31, 0x05, 0xf3, 0xe8, 0xea, 0x6d, 0x1c, 0x2d, 0x06, 0x2d, 0x0e, 0x0b, 0x2d, +0x8d, 0xd3, 0x01, 0x98, 0x09, 0xb0, 0xf0, 0xbd, 0xfe, 0xb5, 0x0f, 0x00, 0xfb, 0xf7, 0x7f, 0xfb, +0x04, 0x06, 0x24, 0x0e, 0xfb, 0xf7, 0x7e, 0xfb, 0x05, 0x00, 0xfb, 0xf7, 0x7e, 0xfb, 0x06, 0x00, +0x0a, 0xf0, 0x10, 0xf8, 0x02, 0xaa, 0x00, 0x92, 0x01, 0x90, 0x3b, 0x00, 0x32, 0x00, 0x29, 0x00, +0x20, 0x00, 0xff, 0xf7, 0x52, 0xff, 0x04, 0x00, 0x02, 0x98, 0x00, 0x28, 0x01, 0xd0, 0xff, 0xf7, +0x2c, 0xff, 0x01, 0x98, 0x0a, 0xf0, 0x02, 0xf8, 0x20, 0x00, 0xfe, 0xbd, 0xf8, 0xb5, 0x07, 0x00, +0x00, 0x20, 0x34, 0x49, 0x32, 0x4e, 0x04, 0x00, 0x84, 0x36, 0x08, 0x70, 0x0c, 0x20, 0x60, 0x43, +0x85, 0x19, 0x29, 0x00, 0x12, 0x20, 0x05, 0xf3, 0xb0, 0xea, 0x29, 0x1d, 0x12, 0x20, 0x05, 0xf3, +0xac, 0xea, 0x29, 0x00, 0x08, 0x31, 0x00, 0x20, 0x05, 0xf3, 0xa6, 0xea, 0x64, 0x1c, 0x24, 0x06, +0x24, 0x0e, 0x0b, 0x2c, 0xea, 0xd3, 0x00, 0x21, 0x38, 0x00, 0xff, 0xf7, 0xbd, 0xff, 0xf8, 0xbd, +0x70, 0xb5, 0x00, 0x24, 0x25, 0x00, 0x28, 0x00, 0x07, 0xf0, 0x8f, 0xfd, 0x84, 0x42, 0x00, 0xdb, +0x20, 0x00, 0x6d, 0x1c, 0x2d, 0x06, 0x04, 0x00, 0x2d, 0x0e, 0x0b, 0x2d, 0xf3, 0xd3, 0x20, 0x00, +0x70, 0xbd, 0xf3, 0xb5, 0x81, 0xb0, 0x07, 0x00, 0xfb, 0xf7, 0x29, 0xfb, 0x18, 0x4e, 0x00, 0x24, +0x84, 0x36, 0x0c, 0x20, 0x60, 0x43, 0x85, 0x19, 0x02, 0x98, 0x29, 0x1d, 0x05, 0xf3, 0x7c, 0xea, +0x29, 0x00, 0x05, 0xf3, 0x7a, 0xea, 0x29, 0x00, 0x08, 0x31, 0x00, 0x20, 0x05, 0xf3, 0x74, 0xea, +0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x0b, 0x2c, 0xeb, 0xd3, 0x00, 0x21, 0x38, 0x00, 0xff, 0xf7, +0x8b, 0xff, 0xfe, 0xbd, 0x01, 0x21, 0x87, 0xe7, 0xf3, 0xb5, 0x83, 0xb0, 0xfb, 0xf7, 0x07, 0xfb, +0x04, 0x98, 0x00, 0x28, 0x08, 0xd0, 0x04, 0x98, 0xc1, 0x7a, 0x82, 0x7a, 0x08, 0x02, 0x10, 0x43, +0xc0, 0x08, 0x0b, 0x28, 0x01, 0x90, 0x07, 0xd9, 0x00, 0x20, 0x5a, 0xe6, 0xd3, 0xf4, 0x00, 0xc0, +0xc0, 0x4c, 0x01, 0xc0, 0x35, 0xfa, 0x00, 0xc0, 0x04, 0x98, 0x00, 0x1d, 0x05, 0xf3, 0x3c, 0xea, +0x96, 0x4a, 0x00, 0x21, 0x01, 0x28, 0x11, 0x70, 0x53, 0xd1, 0x00, 0x20, 0x4c, 0xe0, 0x02, 0x98, +0xc1, 0x00, 0x04, 0x98, 0x0c, 0x18, 0x0c, 0x34, 0x66, 0x78, 0x40, 0xe0, 0xa0, 0x79, 0x01, 0x28, +0x20, 0x78, 0x03, 0xd1, 0x31, 0x00, 0x00, 0xf3, 0xc4, 0xfe, 0x02, 0xe0, 0x31, 0x00, 0x00, 0xf3, +0xce, 0xfe, 0x05, 0x00, 0xff, 0x28, 0x2f, 0xd0, 0x28, 0x00, 0x07, 0xf0, 0x1b, 0xfd, 0x0c, 0x21, +0x41, 0x43, 0x87, 0x48, 0x0f, 0x18, 0x05, 0x20, 0x20, 0x56, 0x39, 0x00, 0x05, 0xf3, 0x24, 0xea, +0x04, 0x20, 0x20, 0x56, 0x39, 0x1d, 0x05, 0xf3, 0x20, 0xea, 0x39, 0x00, 0x03, 0x20, 0x20, 0x56, +0x08, 0x31, 0x05, 0xf3, 0x1a, 0xea, 0x28, 0x00, 0x07, 0xf0, 0x07, 0xfd, 0xff, 0x28, 0x13, 0xd0, +0x0c, 0x21, 0x41, 0x43, 0x7a, 0x48, 0x0d, 0x18, 0x05, 0x20, 0x20, 0x56, 0x29, 0x00, 0x05, 0xf3, +0x0c, 0xea, 0x04, 0x20, 0x20, 0x56, 0x29, 0x1d, 0x05, 0xf3, 0x06, 0xea, 0x29, 0x00, 0x03, 0x20, +0x20, 0x56, 0x08, 0x31, 0x05, 0xf3, 0x00, 0xea, 0x76, 0x1c, 0x36, 0x06, 0x36, 0x0e, 0xa0, 0x78, +0xb0, 0x42, 0xbb, 0xd2, 0x02, 0x98, 0x40, 0x1c, 0x01, 0x99, 0x02, 0x90, 0x88, 0x42, 0xae, 0xd3, +0x16, 0xe0, 0x6b, 0x4e, 0x00, 0x24, 0x0c, 0x20, 0x60, 0x43, 0x85, 0x19, 0x29, 0x00, 0x12, 0x20, +0x05, 0xf3, 0xea, 0xe9, 0x29, 0x1d, 0x12, 0x20, 0x05, 0xf3, 0xe6, 0xe9, 0x29, 0x00, 0x08, 0x31, +0x00, 0x20, 0x05, 0xf3, 0xe2, 0xe9, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x0b, 0x2c, 0xea, 0xd3, +0x03, 0x98, 0x00, 0x21, 0xff, 0xf7, 0xf8, 0xfe, 0xdb, 0xe5, 0xf1, 0xb5, 0x01, 0x20, 0x00, 0x99, +0x09, 0x1d, 0x05, 0xf3, 0xd2, 0xe9, 0x59, 0x48, 0x00, 0x9c, 0x00, 0x78, 0x0c, 0x34, 0x00, 0x26, +0x00, 0x28, 0x01, 0xd0, 0x00, 0x25, 0x00, 0xe0, 0x01, 0x25, 0x56, 0x4a, 0xa9, 0x00, 0x50, 0x5c, +0x8a, 0x18, 0x20, 0x70, 0x51, 0x78, 0x61, 0x70, 0x93, 0x78, 0xa3, 0x70, 0xd3, 0x78, 0xa3, 0x71, +0xd2, 0x78, 0x01, 0x2a, 0x02, 0xd1, 0x00, 0xf3, 0x44, 0xfe, 0x01, 0xe0, 0x00, 0xf3, 0x4f, 0xfe, +0x07, 0xf0, 0xa0, 0xfc, 0x0c, 0x21, 0x41, 0x43, 0x49, 0x48, 0x84, 0x38, 0x0f, 0x18, 0x38, 0x00, +0x05, 0xf3, 0x9a, 0xe9, 0x60, 0x71, 0x38, 0x1d, 0x05, 0xf3, 0x96, 0xe9, 0x20, 0x71, 0x38, 0x00, +0x08, 0x30, 0x05, 0xf3, 0x92, 0xe9, 0x76, 0x1c, 0x36, 0x06, 0xe0, 0x70, 0x08, 0x34, 0x36, 0x0e, +0x6d, 0x1c, 0x0b, 0x2d, 0xd1, 0xd3, 0x00, 0x99, 0xff, 0x20, 0x55, 0x30, 0x08, 0x72, 0x00, 0x0a, +0x48, 0x72, 0x00, 0x99, 0xf0, 0x00, 0x02, 0x0a, 0x88, 0x72, 0x00, 0x1d, 0xca, 0x72, 0xf8, 0xbd, +0x0b, 0x2a, 0x10, 0xb5, 0x00, 0xd3, 0x02, 0x22, 0x36, 0x49, 0x40, 0x1e, 0xc6, 0x31, 0x89, 0x5c, +0x00, 0x06, 0x49, 0x1c, 0x0c, 0x06, 0x33, 0x49, 0x24, 0x0e, 0xd1, 0x31, 0x89, 0x5c, 0x00, 0x0e, +0x49, 0x1c, 0x09, 0x06, 0x09, 0x0e, 0x0e, 0x28, 0x00, 0xd3, 0x06, 0x20, 0x0a, 0x2c, 0x00, 0xd9, +0x04, 0x24, 0x0a, 0x29, 0x00, 0xd9, 0x00, 0x21, 0x0b, 0x22, 0x42, 0x43, 0x29, 0x48, 0x2c, 0x30, +0x12, 0x18, 0x10, 0x5d, 0x00, 0x29, 0x03, 0xd0, 0x51, 0x5c, 0x88, 0x42, 0x00, 0xdb, 0x08, 0x00, +0x10, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0x14, 0x00, 0x00, 0x29, 0x2f, 0xd1, 0x01, 0x2c, +0x06, 0xd3, 0x05, 0xd8, 0x0e, 0x2d, 0x01, 0xd1, 0x0c, 0x20, 0x70, 0xbd, 0x10, 0x20, 0x70, 0xbd, +0x04, 0x2c, 0x0b, 0xd8, 0x01, 0x2d, 0x2f, 0xd0, 0x02, 0x2d, 0x05, 0xd0, 0x0b, 0x2d, 0x2b, 0xd0, +0x0e, 0x2d, 0xf1, 0xd0, 0x02, 0x2c, 0xf1, 0xd1, 0x0f, 0x20, 0x70, 0xbd, 0x08, 0x2c, 0x0f, 0xd2, +0x01, 0x2d, 0x08, 0xd0, 0x0b, 0x2d, 0x02, 0xd1, 0x05, 0x2c, 0x1d, 0xd1, 0xfc, 0x55, 0x92, 0xea, +0x01, 0x00, 0x00, 0x00, 0x84, 0x7a, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x5f, 0xb3, 0x30, 0x00, +0x03, 0xe0, 0x0e, 0x2d, 0xe2, 0xd0, 0x05, 0x2c, 0x01, 0xd1, 0x0d, 0x20, 0x70, 0xbd, 0x06, 0x2c, +0xec, 0xd1, 0x13, 0xe0, 0x08, 0x2c, 0x01, 0xd1, 0x0b, 0x20, 0x70, 0xbd, 0x09, 0x2c, 0xf4, 0xd1, +0xd4, 0xe7, 0x22, 0x00, 0x31, 0x00, 0x28, 0x00, 0xff, 0xf7, 0x9c, 0xff, 0x0e, 0x28, 0x05, 0xda, +0x22, 0x00, 0x31, 0x00, 0x28, 0x00, 0xff, 0xf7, 0x95, 0xff, 0x70, 0xbd, 0x0e, 0x20, 0x70, 0xbd, +0x35, 0xfa, 0x00, 0xc0, 0x44, 0x4d, 0x01, 0xc0, 0xa7, 0xf4, 0x00, 0xc0, 0xf0, 0xb5, 0x0e, 0x28, +0x01, 0xd2, 0x00, 0x24, 0x32, 0xe0, 0x01, 0x23, 0x16, 0x28, 0x00, 0xd2, 0x00, 0x23, 0x01, 0x00, +0xfc, 0x4a, 0x0e, 0x39, 0x49, 0x00, 0x51, 0x5a, 0xfb, 0x4a, 0x96, 0x78, 0x94, 0x89, 0xd7, 0x89, +0x15, 0x8a, 0x52, 0x89, 0xb0, 0x42, 0x10, 0xd9, 0xf7, 0x4e, 0x9b, 0x00, 0x20, 0x36, 0xf6, 0x58, +0x8e, 0x42, 0x07, 0xd3, 0xf4, 0x4c, 0x28, 0x34, 0xe3, 0x58, 0x8b, 0x42, 0x01, 0xd2, 0x3c, 0x00, +0x00, 0xe0, 0x2c, 0x00, 0xa2, 0x42, 0x11, 0xdd, 0x0f, 0xe0, 0xef, 0x4e, 0x9b, 0x00, 0x38, 0x36, +0xf6, 0x58, 0x8e, 0x42, 0x01, 0xd9, 0x2c, 0x00, 0x05, 0xe0, 0xeb, 0x4d, 0x30, 0x35, 0xeb, 0x58, +0x8b, 0x42, 0x00, 0xd9, 0x3c, 0x00, 0xa2, 0x42, 0x00, 0xda, 0x14, 0x00, 0xe6, 0x49, 0x88, 0x70, +0x20, 0x00, 0xf0, 0xbd, 0xf8, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0xe3, 0x4f, 0x78, 0x69, 0x00, 0x28, +0x1b, 0xd0, 0x28, 0x00, 0xeb, 0xf7, 0xe6, 0xf8, 0x00, 0x28, 0x16, 0xd0, 0xe8, 0x68, 0xc0, 0x04, +0x13, 0xd5, 0x68, 0x7a, 0x03, 0x28, 0x01, 0xd0, 0x01, 0x28, 0x0e, 0xd1, 0x78, 0x78, 0xb0, 0x42, +0x0b, 0xd0, 0x30, 0x00, 0xff, 0xf7, 0xaa, 0xff, 0x79, 0x89, 0x04, 0x00, 0x88, 0x42, 0x04, 0xd0, +0x28, 0x00, 0x0f, 0xf0, 0xba, 0xeb, 0x7e, 0x70, 0x7c, 0x81, 0xf8, 0xbd, 0xfe, 0xb5, 0x04, 0x00, +0x05, 0x00, 0xff, 0x34, 0x5d, 0x34, 0x00, 0x20, 0x20, 0x62, 0x20, 0x7d, 0xe0, 0x61, 0x28, 0x00, +0xf3, 0xf7, 0x82, 0xfd, 0x00, 0x28, 0x09, 0xd0, 0x28, 0x00, 0xf3, 0xf7, 0x04, 0xfd, 0xca, 0x4a, +0x01, 0x04, 0x04, 0x20, 0x10, 0x5e, 0x09, 0x14, 0x81, 0x42, 0x01, 0xdd, 0xe0, 0x69, 0x17, 0xe0, +0x06, 0x20, 0x10, 0x5e, 0x81, 0x42, 0x01, 0xdc, 0x20, 0x6a, 0x11, 0xe0, 0x26, 0x6a, 0xe0, 0x69, +0xc2, 0x4b, 0x80, 0x19, 0x40, 0x08, 0x08, 0x27, 0xd7, 0x5f, 0x07, 0xe0, 0x22, 0x18, 0xc0, 0x32, +0x12, 0x78, 0x9a, 0x56, 0xd2, 0x19, 0x8a, 0x42, 0x02, 0xdd, 0x40, 0x1e, 0x86, 0x42, 0xf5, 0xd3, +0x60, 0x62, 0xa0, 0x62, 0x00, 0x21, 0x2d, 0x20, 0x01, 0x55, 0xb4, 0x20, 0x01, 0x55, 0x20, 0x00, +0x01, 0xf3, 0xaf, 0xf8, 0x00, 0x90, 0x00, 0x99, 0x22, 0x00, 0x28, 0x00, 0x00, 0xf0, 0x56, 0xfe, +0x28, 0x00, 0x00, 0x26, 0xff, 0x30, 0xb2, 0x4f, 0x4a, 0x30, 0x01, 0x90, 0x18, 0x20, 0x70, 0x43, +0x39, 0x5c, 0x00, 0x29, 0x10, 0xd0, 0xc1, 0x19, 0x01, 0x98, 0x09, 0x1d, 0x06, 0x22, 0x09, 0xf0, +0xc7, 0xfa, 0x00, 0x28, 0x08, 0xd1, 0x30, 0x00, 0xea, 0xf7, 0xb2, 0xfb, 0x31, 0x06, 0xa8, 0x4a, +0x09, 0x0e, 0x28, 0x00, 0xf8, 0xf2, 0x4c, 0xf9, 0x76, 0x1c, 0x04, 0x2e, 0xe6, 0xd3, 0x20, 0x00, +0x00, 0xf3, 0xad, 0xff, 0x03, 0x21, 0x20, 0x00, 0x00, 0xf3, 0xf6, 0xff, 0x00, 0x99, 0x28, 0x00, +0xff, 0xf7, 0x70, 0xff, 0x01, 0x20, 0xfe, 0xbd, 0xf8, 0xb5, 0x05, 0x00, 0x07, 0x00, 0xff, 0x30, +0x41, 0x30, 0xc6, 0x6a, 0x38, 0x00, 0xff, 0x30, 0xff, 0x35, 0x5d, 0x30, 0x00, 0x24, 0x5d, 0x35, +0xc0, 0x30, 0x00, 0x2e, 0x6c, 0xd0, 0x71, 0x00, 0xc9, 0x0b, 0x02, 0xd0, 0x0f, 0x21, 0x49, 0x02, +0x8e, 0x43, 0x94, 0x49, 0x0e, 0x42, 0x01, 0xd0, 0x40, 0x21, 0x8e, 0x43, 0x1e, 0x21, 0x00, 0x90, +0x01, 0x70, 0x00, 0x20, 0x8d, 0x4b, 0x01, 0x22, 0x82, 0x40, 0x19, 0x56, 0x32, 0x42, 0x12, 0xd0, +0x2a, 0x19, 0xc0, 0x32, 0x12, 0x78, 0x9a, 0x56, 0x8a, 0x42, 0x03, 0xda, 0x64, 0x1c, 0x24, 0x06, +0x24, 0x0e, 0x05, 0xe0, 0x00, 0x2c, 0x03, 0xd0, 0x64, 0x1e, 0x24, 0x06, 0x24, 0x0e, 0xef, 0xe7, +0x29, 0x19, 0xc0, 0x31, 0x08, 0x70, 0x1e, 0x28, 0x03, 0xd2, 0x00, 0xf0, 0x57, 0xfd, 0x1e, 0x28, +0xe0, 0xd9, 0x00, 0x98, 0x00, 0x78, 0x17, 0x28, 0x14, 0xd1, 0x70, 0x04, 0x28, 0xd5, 0x60, 0x1c, +0x20, 0x28, 0x25, 0xd2, 0x04, 0x06, 0x24, 0x0e, 0x20, 0x00, 0x05, 0xe0, 0x29, 0x18, 0xbf, 0x22, +0x52, 0x5c, 0xc0, 0x31, 0x40, 0x1e, 0x0a, 0x70, 0x00, 0x28, 0xf7, 0xdc, 0x00, 0x98, 0x0e, 0x21, +0x01, 0x70, 0x01, 0xe0, 0x0e, 0x28, 0x13, 0xd1, 0xb0, 0x06, 0x11, 0xd5, 0x60, 0x1c, 0x20, 0x28, +0x0e, 0xd2, 0x04, 0x06, 0x24, 0x0e, 0x20, 0x00, 0x05, 0xe0, 0x29, 0x18, 0xbf, 0x22, 0x52, 0x5c, +0xc0, 0x31, 0x40, 0x1e, 0x0a, 0x70, 0x00, 0x28, 0xf7, 0xdc, 0x00, 0x98, 0x05, 0x21, 0x01, 0x70, +0x2c, 0x75, 0x38, 0x7a, 0x02, 0x28, 0x09, 0xd0, 0x63, 0x48, 0x00, 0x78, 0x00, 0x28, 0x05, 0xd0, +0xc0, 0x35, 0x80, 0x37, 0x29, 0x78, 0xf8, 0x69, 0xfa, 0xf2, 0xa8, 0xfc, 0x01, 0x20, 0xf8, 0xbd, +0x00, 0x21, 0xec, 0xe7, 0x10, 0xb5, 0x04, 0x00, 0xff, 0xf7, 0x7e, 0xff, 0x20, 0x00, 0xff, 0xf7, +0x0d, 0xff, 0x01, 0x20, 0x10, 0xbd, 0xf5, 0xe7, 0x70, 0xb5, 0x04, 0x00, 0x06, 0x00, 0xff, 0x34, +0x5d, 0x34, 0x00, 0x20, 0x7d, 0x21, 0xc9, 0x00, 0x60, 0x60, 0xa1, 0x60, 0xb4, 0x21, 0x20, 0x60, +0x08, 0x55, 0x03, 0x21, 0x20, 0x00, 0x00, 0xf3, 0x57, 0xff, 0x25, 0x00, 0x80, 0x35, 0xe8, 0x6b, +0x00, 0x28, 0x04, 0xd1, 0x50, 0x48, 0x0c, 0x21, 0x00, 0xf3, 0xe6, 0xfd, 0xe8, 0x63, 0x30, 0x00, +0xff, 0xf7, 0xd8, 0xff, 0x70, 0xbd, 0xf8, 0xb5, 0x4c, 0x48, 0xf0, 0xf2, 0x01, 0xfe, 0xc1, 0x25, +0x40, 0x08, 0xed, 0x00, 0x45, 0x43, 0x4a, 0x4e, 0x00, 0x24, 0x7d, 0x27, 0xff, 0x00, 0x20, 0x00, +0x0e, 0x30, 0x00, 0x06, 0x00, 0x0e, 0x06, 0xf3, 0x47, 0xf8, 0xff, 0x23, 0xf5, 0x33, 0x58, 0x43, +0x2f, 0x23, 0x5b, 0x01, 0x58, 0x43, 0x39, 0x00, 0x05, 0xf3, 0x86, 0xeb, 0xc0, 0x08, 0xa8, 0x42, +0x00, 0xd9, 0x28, 0x00, 0x61, 0x00, 0x32, 0x68, 0x80, 0x08, 0x64, 0x1c, 0x11, 0x2c, 0x50, 0x52, +0xe5, 0xd3, 0xf8, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0xff, 0x34, 0x5d, 0x34, 0x05, 0x00, 0x0e, 0x00, +0x20, 0x00, 0xa1, 0x62, 0x00, 0xf3, 0x35, 0xff, 0xa0, 0x19, 0xc0, 0x30, 0x01, 0x78, 0x22, 0x00, +0x28, 0x00, 0x00, 0xf0, 0x4b, 0xfd, 0x28, 0x00, 0x00, 0x24, 0xff, 0x30, 0x2c, 0x4f, 0x4a, 0x30, +0x00, 0x90, 0x18, 0x20, 0x60, 0x43, 0x39, 0x5c, 0x00, 0x29, 0x10, 0xd0, 0xc1, 0x19, 0x00, 0x98, +0x09, 0x1d, 0x06, 0x22, 0x09, 0xf0, 0xbc, 0xf9, 0x00, 0x28, 0x08, 0xd1, 0x20, 0x00, 0xea, 0xf7, +0xa7, 0xfa, 0x21, 0x06, 0x22, 0x4a, 0x09, 0x0e, 0x28, 0x00, 0xf8, 0xf2, 0x41, 0xf8, 0x64, 0x1c, +0x04, 0x2c, 0xe6, 0xd3, 0x30, 0x00, 0xf8, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0xff, 0x34, 0x5d, 0x34, +0x05, 0x00, 0xe1, 0x69, 0x60, 0x6a, 0x88, 0x42, 0x03, 0xd2, 0x21, 0x00, 0xc3, 0xf8, 0x02, 0x53, +0x01, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x0c, 0x69, 0xe3, 0x6c, +0x00, 0xf3, 0xfb, 0xfe, 0x17, 0xe0, 0x21, 0x00, 0xc0, 0x31, 0x0a, 0x00, 0x41, 0x5c, 0x20, 0x7d, +0x80, 0x5c, 0x88, 0x42, 0x0a, 0xd1, 0x20, 0x00, 0x20, 0x30, 0x06, 0x00, 0x40, 0x7b, 0x01, 0x28, +0x04, 0xd0, 0x28, 0x00, 0x00, 0xf0, 0xda, 0xfc, 0x00, 0x28, 0x01, 0xd1, 0xff, 0x20, 0x70, 0xbd, +0x01, 0x20, 0x70, 0x73, 0x60, 0x6a, 0x01, 0x00, 0x28, 0x00, 0xff, 0xf7, 0xa5, 0xff, 0x70, 0xbd, +0x10, 0xb5, 0x04, 0x00, 0xff, 0x30, 0x5d, 0x30, 0x00, 0xf3, 0xf5, 0xfe, 0x01, 0x00, 0x20, 0x00, +0xff, 0xf7, 0x9a, 0xff, 0x10, 0xbd, 0x00, 0x00, 0xb0, 0x15, 0x32, 0x00, 0x18, 0x02, 0x00, 0x04, +0x60, 0x75, 0x02, 0x00, 0x4c, 0x7b, 0x02, 0x00, 0x08, 0x40, 0x00, 0x00, 0xa0, 0x03, 0x02, 0xc0, +0x30, 0x00, 0x00, 0x04, 0xb4, 0xbc, 0x02, 0x00, 0x01, 0x00, 0xff, 0x31, 0x81, 0x31, 0x09, 0x68, +0x82, 0xe7, 0x70, 0xb5, 0x04, 0x00, 0xff, 0x34, 0x5d, 0x34, 0x25, 0x00, 0xa0, 0x35, 0x2e, 0x7d, +0x02, 0x21, 0x29, 0x75, 0xff, 0xf7, 0xaa, 0xff, 0xff, 0x28, 0x08, 0xd1, 0x2e, 0x75, 0xa0, 0x68, +0x0a, 0x28, 0x01, 0xd1, 0x64, 0x20, 0x01, 0xe0, 0x7d, 0x20, 0xc0, 0x00, 0xa0, 0x60, 0x00, 0x20, +0x60, 0x60, 0x20, 0x60, 0x70, 0xbd, 0x01, 0x22, 0x21, 0x21, 0x09, 0x01, 0x0a, 0x54, 0xbf, 0xe7, +0x10, 0xb5, 0x04, 0x00, 0xff, 0x30, 0x5d, 0x30, 0x03, 0x29, 0xc3, 0xd8, 0x00, 0x29, 0x02, 0xd1, +0x7d, 0x22, 0xd2, 0x00, 0x04, 0xe0, 0x02, 0x29, 0x01, 0xd1, 0x0a, 0x22, 0x00, 0xe0, 0x64, 0x22, +0x82, 0x60, 0x00, 0xf3, 0xc0, 0xfe, 0x20, 0x00, 0xff, 0xf7, 0xc6, 0xff, 0xb2, 0xe7, 0xf0, 0xb5, +0x04, 0x00, 0xff, 0x34, 0x5d, 0x34, 0x07, 0x00, 0xa1, 0x6a, 0x20, 0x00, 0xc0, 0x30, 0x08, 0x5c, +0x85, 0xb0, 0x00, 0x90, 0x20, 0x00, 0x20, 0x30, 0x03, 0x90, 0x40, 0x7b, 0x00, 0x25, 0x00, 0x28, +0x06, 0xd0, 0x00, 0x99, 0x38, 0x00, 0x00, 0xf0, 0x61, 0xfc, 0x00, 0x28, 0x00, 0xd1, 0x01, 0x25, +0x38, 0x00, 0xff, 0x30, 0x41, 0x30, 0x80, 0x69, 0x00, 0x28, 0x06, 0xd0, 0x00, 0x98, 0x0e, 0xf0, +0x55, 0xff, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x23, 0x00, 0xe0, 0x00, 0x23, 0x20, 0x00, 0x3c, 0x30, +0x01, 0xaa, 0x02, 0xa9, 0x08, 0xf0, 0xe6, 0xff, 0x02, 0x28, 0x01, 0xd1, 0x00, 0x2d, 0x53, 0xd0, +0x20, 0x00, 0x00, 0xf3, 0xee, 0xfd, 0x20, 0x00, 0x02, 0xa9, 0x00, 0xf3, 0x0b, 0xfe, 0x6b, 0x46, +0x18, 0x79, 0x3e, 0x00, 0xff, 0x36, 0x28, 0x43, 0xfd, 0x36, 0x00, 0x28, 0x04, 0xd0, 0x35, 0x7d, +0x02, 0x2d, 0x07, 0xd1, 0x00, 0x25, 0x05, 0xe0, 0x30, 0x7d, 0x22, 0x00, 0x00, 0x21, 0x00, 0xf3, +0x7f, 0xfe, 0x05, 0x00, 0x20, 0x00, 0x5c, 0x30, 0x08, 0xf0, 0x1e, 0xff, 0xff, 0x28, 0x0d, 0xd0, +0x00, 0x99, 0x88, 0x42, 0x0a, 0xd0, 0x01, 0x00, 0x03, 0x22, 0x20, 0x00, 0x00, 0xf3, 0x08, 0xfe, +0x22, 0x00, 0x29, 0x00, 0x03, 0x20, 0x00, 0xf3, 0x6b, 0xfe, 0x05, 0x00, 0x00, 0x2d, 0x07, 0xd0, +0x01, 0x2d, 0x03, 0xd0, 0x02, 0x2d, 0x01, 0xd0, 0x03, 0x2d, 0x1d, 0xd1, 0x29, 0x00, 0x04, 0xe0, +0x03, 0x98, 0x00, 0x7b, 0x03, 0x28, 0x06, 0xd3, 0x00, 0x21, 0x38, 0x00, 0xff, 0xf7, 0x78, 0xff, +0x01, 0x20, 0x05, 0xb0, 0xf0, 0xbd, 0x30, 0x7d, 0x01, 0x28, 0x0b, 0xd1, 0x20, 0x00, 0x00, 0xf3, +0x37, 0xfe, 0x00, 0x28, 0x02, 0xd0, 0x38, 0x00, 0xff, 0xf7, 0x4b, 0xff, 0x30, 0x7d, 0x02, 0x28, +0xea, 0xd1, 0x01, 0xe0, 0x02, 0x28, 0xe7, 0xd0, 0x00, 0x20, 0xea, 0xe7, 0xfe, 0xb5, 0x04, 0x00, +0x05, 0x00, 0xff, 0x34, 0x5d, 0x34, 0xff, 0x48, 0x80, 0x7d, 0x40, 0x06, 0x09, 0xd5, 0x28, 0x00, +0xff, 0xf7, 0x6a, 0xfe, 0x00, 0x20, 0x60, 0x60, 0x20, 0x60, 0x7d, 0x20, 0xc0, 0x00, 0xa0, 0x60, +0x6b, 0xe0, 0x20, 0x68, 0x27, 0x00, 0x0a, 0x30, 0x2e, 0x00, 0xa0, 0x37, 0xff, 0x36, 0x20, 0x60, +0x38, 0x7d, 0x5d, 0x36, 0xc0, 0x36, 0x00, 0x28, 0x49, 0xd1, 0xa0, 0x6a, 0x80, 0x5d, 0x26, 0x00, +0x20, 0x36, 0x00, 0x90, 0x70, 0x7b, 0x00, 0x28, 0x06, 0xd0, 0x00, 0x99, 0x28, 0x00, 0x00, 0xf0, +0xc5, 0xfb, 0x00, 0x28, 0x00, 0xd1, 0x70, 0x73, 0x28, 0x00, 0xff, 0x30, 0x41, 0x30, 0x80, 0x69, +0x00, 0x28, 0x06, 0xd0, 0x00, 0x98, 0x0e, 0xf0, 0xb9, 0xfe, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x23, +0x00, 0xe0, 0x00, 0x23, 0x20, 0x00, 0x3c, 0x30, 0x01, 0xaa, 0x02, 0xa9, 0x08, 0xf0, 0x4a, 0xff, +0x06, 0x00, 0x02, 0x28, 0x31, 0xd0, 0x20, 0x00, 0x00, 0xf3, 0x53, 0xfd, 0x00, 0x2e, 0x14, 0xd1, +0x20, 0x00, 0x02, 0xa9, 0x00, 0xf3, 0x6e, 0xfd, 0x21, 0x6a, 0x60, 0x6a, 0x88, 0x42, 0x03, 0xd9, +0x28, 0x00, 0xff, 0xf7, 0x08, 0xff, 0x20, 0xe0, 0x20, 0x00, 0x00, 0xf3, 0xd1, 0xfd, 0x00, 0x28, +0x1b, 0xd0, 0x28, 0x00, 0xff, 0xf7, 0xe5, 0xfe, 0x17, 0xe0, 0x20, 0x00, 0x00, 0xf3, 0xc8, 0xfd, +0x00, 0x28, 0x12, 0xd0, 0x20, 0x00, 0x02, 0xa9, 0x00, 0xf3, 0x54, 0xfd, 0xf1, 0xe7, 0x28, 0x00, +0xff, 0xf7, 0x0d, 0xff, 0x01, 0x28, 0x08, 0xd1, 0x03, 0x21, 0x20, 0x00, 0x00, 0xf3, 0x76, 0xfd, +0x60, 0x6a, 0x81, 0x5d, 0x28, 0x00, 0xff, 0xf7, 0xef, 0xfc, 0x38, 0x7d, 0x00, 0x28, 0x06, 0xd1, +0xa1, 0x68, 0x7d, 0x20, 0xc0, 0x00, 0x81, 0x42, 0x01, 0xd1, 0x00, 0x20, 0xfe, 0xbd, 0x01, 0x20, +0xfe, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0xc0, 0x48, 0x40, 0x6a, 0x60, 0x30, 0x40, 0x7b, 0x00, 0x28, +0x03, 0xd1, 0xbc, 0x48, 0x80, 0x7d, 0x40, 0x06, 0x09, 0xd4, 0x20, 0x00, 0x3c, 0x30, 0x00, 0xf3, +0xf5, 0xfc, 0x61, 0x68, 0x40, 0x18, 0x60, 0x60, 0x00, 0x20, 0x80, 0x34, 0xa0, 0x63, 0x91, 0xe6, +0x01, 0x20, 0x70, 0x47, 0x70, 0xb5, 0x04, 0x00, 0x00, 0x1d, 0x04, 0xf3, 0x92, 0xed, 0x05, 0x00, +0x08, 0x34, 0x00, 0xf0, 0x6c, 0xfc, 0x00, 0xf0, 0xb2, 0xfc, 0x02, 0x2d, 0x04, 0xd0, 0x03, 0x2d, +0x18, 0xd1, 0xff, 0x25, 0x53, 0x35, 0x23, 0xe0, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, +0x86, 0x08, 0x00, 0x25, 0x07, 0xe0, 0xa8, 0x00, 0x00, 0x19, 0x00, 0x1d, 0x31, 0x00, 0x00, 0xf0, +0x42, 0xfc, 0x6d, 0x1c, 0x76, 0x1e, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x80, 0x08, +0xa8, 0x42, 0xf0, 0xdc, 0x70, 0xbd, 0xe1, 0x78, 0xa2, 0x78, 0x09, 0x02, 0x11, 0x43, 0x20, 0x1d, +0x89, 0x08, 0x00, 0xf0, 0x30, 0xfc, 0x21, 0x00, 0x28, 0x00, 0x00, 0xf3, 0xd8, 0xfd, 0x04, 0x00, +0x00, 0x2c, 0xf0, 0xd1, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x0c, 0x00, 0x08, 0xd0, 0x20, 0x1d, +0x04, 0xf3, 0x56, 0xed, 0x00, 0x06, 0x00, 0x0e, 0x00, 0xf0, 0x24, 0xfb, 0x01, 0x28, 0x01, 0xd1, +0x01, 0x20, 0x70, 0xbd, 0x20, 0x1d, 0x04, 0xf3, 0x4c, 0xed, 0x00, 0x28, 0x0d, 0xd0, 0x01, 0x28, +0x0e, 0xd0, 0x02, 0x28, 0x01, 0xd0, 0x03, 0x28, 0x02, 0xd1, 0x20, 0x00, 0xff, 0xf7, 0xaa, 0xff, +0x28, 0x00, 0x00, 0xf0, 0xf6, 0xfb, 0x00, 0x20, 0x70, 0xbd, 0x00, 0xf0, 0x18, 0xfc, 0xf7, 0xe7, +0x00, 0xf3, 0xc2, 0xf9, 0xf4, 0xe7, 0x10, 0xb5, 0x04, 0x00, 0x00, 0xf0, 0x53, 0x33, 0x4a, 0xb7, +0x01, 0x00, 0x00, 0x00, 0x7c, 0x82, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x5a, 0x40, 0x80, 0x2c, +0x5d, 0xfa, 0x20, 0x00, 0xfc, 0xf7, 0xf4, 0xfb, 0x26, 0xe6, 0x70, 0xb5, 0x06, 0x00, 0x08, 0x00, +0x00, 0x2a, 0x01, 0xd0, 0x01, 0x20, 0x70, 0xbd, 0x7d, 0x4d, 0xac, 0x69, 0x00, 0xf3, 0x79, 0xfd, +0xa8, 0x61, 0x30, 0x00, 0x00, 0xf0, 0x92, 0xfa, 0x00, 0x28, 0x01, 0xd0, 0xac, 0x61, 0x70, 0xbd, +0x30, 0x00, 0xff, 0xf7, 0xe2, 0xff, 0x00, 0x20, 0x70, 0xbd, 0xf7, 0xb5, 0x00, 0x27, 0x02, 0x98, +0x3d, 0x00, 0x3c, 0x00, 0x0c, 0xf0, 0xd8, 0xfb, 0x06, 0x00, 0x02, 0x98, 0x40, 0x7a, 0x02, 0x28, +0x2a, 0xd1, 0x01, 0x98, 0x00, 0xf3, 0x5d, 0xfd, 0xff, 0x21, 0xc9, 0x05, 0x88, 0x43, 0x01, 0xd1, +0x01, 0x27, 0x21, 0xe0, 0x41, 0x1e, 0x08, 0x42, 0x06, 0xd0, 0xfe, 0x20, 0xb0, 0x77, 0x1b, 0xe0, +0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x00, 0xe0, 0x01, 0x22, 0x11, 0x00, 0xa1, 0x40, 0x01, 0x42, +0xf6, 0xd0, 0x20, 0x00, 0x0e, 0x38, 0x07, 0x28, 0x0b, 0xd8, 0x02, 0x98, 0xee, 0xf7, 0x51, 0xf9, +0x00, 0x28, 0x06, 0xd0, 0x67, 0x20, 0x80, 0x5d, 0x40, 0x07, 0x02, 0xd5, 0x09, 0x34, 0x24, 0x06, +0x24, 0x0e, 0x00, 0x2f, 0x00, 0xd1, 0xb4, 0x77, 0x02, 0x9c, 0x60, 0x7a, 0x02, 0x28, 0x03, 0xd1, +0xb1, 0x7f, 0x38, 0x20, 0x01, 0x55, 0x0a, 0xe0, 0xe0, 0x68, 0xc0, 0x04, 0x06, 0xd5, 0x00, 0x9a, +0x01, 0x99, 0x20, 0x00, 0xff, 0xf7, 0xa1, 0xff, 0x05, 0x00, 0x00, 0xe0, 0x01, 0x25, 0xe2, 0x7a, +0xa1, 0x7a, 0x20, 0x00, 0xf3, 0xf7, 0xef, 0xff, 0x04, 0x00, 0x00, 0x2d, 0x00, 0xd0, 0x2f, 0x00, +0x00, 0x2c, 0xe2, 0xd1, 0x38, 0x00, 0xfe, 0xbd, 0x70, 0xb5, 0x0d, 0x00, 0x14, 0x00, 0x00, 0x28, +0x11, 0xd0, 0x01, 0x20, 0x70, 0xbd, 0x60, 0x7a, 0x02, 0x28, 0x06, 0xd0, 0xe0, 0x68, 0xc0, 0x04, +0x03, 0xd5, 0x29, 0x00, 0x20, 0x00, 0xff, 0xf7, 0x50, 0xff, 0xe2, 0x7a, 0xa1, 0x7a, 0x20, 0x00, +0xf3, 0xf7, 0xd1, 0xff, 0x04, 0x00, 0x00, 0x2c, 0xed, 0xd1, 0x00, 0x20, 0x70, 0xbd, 0xf8, 0xb5, +0x0f, 0x00, 0x41, 0x79, 0x02, 0x79, 0x08, 0x02, 0x0b, 0x21, 0x89, 0x01, 0x79, 0x18, 0x09, 0x69, +0x10, 0x43, 0xff, 0x31, 0x41, 0x31, 0x3c, 0x00, 0xfe, 0x25, 0x88, 0x81, 0xe0, 0x68, 0xc0, 0x04, +0x07, 0xd5, 0x38, 0x20, 0x05, 0x55, 0x20, 0x00, 0x00, 0xf0, 0xb8, 0xf9, 0x20, 0x00, 0xfc, 0xf7, +0x4f, 0xfb, 0xe2, 0x7a, 0xa1, 0x7a, 0x20, 0x00, 0xf3, 0xf7, 0xad, 0xff, 0x04, 0x00, 0xed, 0xd1, +0x2c, 0x4e, 0x00, 0x25, 0xff, 0x37, 0x4a, 0x37, 0x18, 0x20, 0x68, 0x43, 0x31, 0x5c, 0x00, 0x29, +0x0a, 0xd0, 0x81, 0x19, 0x09, 0x1d, 0x06, 0x22, 0x38, 0x00, 0x08, 0xf0, 0xe5, 0xfe, 0x00, 0x28, +0x02, 0xd1, 0x28, 0x00, 0xe9, 0xf7, 0xd0, 0xff, 0x6d, 0x1c, 0x2d, 0x04, 0x2d, 0x0c, 0x04, 0x2d, +0xea, 0xd3, 0x00, 0x20, 0xf8, 0xbd, 0x41, 0x7a, 0x02, 0x29, 0x0f, 0xd1, 0x20, 0x30, 0x01, 0x7e, +0xfe, 0x29, 0x09, 0xd0, 0x08, 0x00, 0x17, 0x38, 0x07, 0x28, 0x02, 0xd8, 0x09, 0x39, 0x09, 0x06, +0x09, 0x0e, 0x01, 0x20, 0x88, 0x40, 0x70, 0x47, 0x17, 0x48, 0x70, 0x47, 0x14, 0x48, 0x80, 0x69, +0x70, 0x47, 0x03, 0x00, 0x70, 0xb5, 0x0c, 0x00, 0x10, 0x00, 0xff, 0xf7, 0xe4, 0xff, 0x05, 0x00, +0x00, 0x2b, 0x01, 0xd0, 0x01, 0x20, 0x70, 0xbd, 0x04, 0x21, 0x20, 0x00, 0x04, 0xf3, 0xc6, 0xeb, +0x28, 0x07, 0x00, 0x0f, 0x20, 0x71, 0x00, 0x0a, 0x60, 0x71, 0xe8, 0x04, 0x00, 0x0e, 0xa0, 0x71, +0x00, 0x0a, 0xe0, 0x71, 0xa8, 0x02, 0x21, 0x00, 0x00, 0x0e, 0x08, 0x31, 0x04, 0xf3, 0x42, 0xec, +0x68, 0x02, 0xc0, 0x0f, 0x21, 0x00, 0x09, 0xe0, 0xc2, 0x55, 0x00, 0x04, 0x38, 0x52, 0x00, 0x04, +0x18, 0x02, 0x00, 0x04, 0x4c, 0x7b, 0x02, 0x00, 0xef, 0xdf, 0xff, 0x7f, 0x0c, 0x31, 0x04, 0xf3, +0x32, 0xec, 0xff, 0x20, 0x54, 0x30, 0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, 0x14, 0x20, 0xa0, 0x70, +0x00, 0x20, 0xe0, 0x70, 0x70, 0xbd, 0xf8, 0xb5, 0x0f, 0x00, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, +0xf8, 0xbd, 0x10, 0x00, 0xff, 0xf7, 0xa7, 0xff, 0x00, 0x24, 0x25, 0x00, 0x00, 0x90, 0x04, 0x2c, +0x1c, 0xd0, 0x0d, 0x2c, 0x1a, 0xd0, 0x01, 0x20, 0x00, 0x99, 0xa0, 0x40, 0x08, 0x42, 0x15, 0xd0, +0x3a, 0x49, 0xa0, 0x00, 0x09, 0x68, 0x08, 0x22, 0x09, 0x58, 0x24, 0x20, 0x68, 0x43, 0xc6, 0x19, +0x30, 0x00, 0x0c, 0x30, 0x00, 0xf3, 0x2a, 0xfa, 0xff, 0x20, 0x53, 0x30, 0x30, 0x72, 0x00, 0x0a, +0x70, 0x72, 0x20, 0x20, 0xb0, 0x72, 0x00, 0x20, 0x6d, 0x1c, 0xf0, 0x72, 0x64, 0x1c, 0x24, 0x06, +0x24, 0x0e, 0x16, 0x2c, 0xdb, 0xd9, 0x39, 0x1d, 0x03, 0x20, 0x04, 0xf3, 0xf4, 0xeb, 0xff, 0x20, +0x52, 0x30, 0x38, 0x70, 0x00, 0x0a, 0x78, 0x70, 0x24, 0x20, 0x68, 0x43, 0x00, 0x1d, 0xb8, 0x70, +0x00, 0x0a, 0xf8, 0x70, 0x00, 0x20, 0xf8, 0xbd, 0xff, 0x22, 0xba, 0x32, 0x02, 0x70, 0x12, 0x0a, +0x42, 0x70, 0x02, 0x22, 0x82, 0x70, 0x00, 0x22, 0xc2, 0x70, 0x0b, 0x22, 0x92, 0x01, 0x89, 0x18, +0x09, 0x69, 0xff, 0x31, 0x41, 0x31, 0x89, 0x89, 0x01, 0x71, 0x09, 0x0a, 0x41, 0x71, 0x00, 0x20, +0x70, 0x47, 0x0b, 0x00, 0x01, 0x00, 0x1f, 0x22, 0x21, 0x31, 0x18, 0x00, 0x10, 0xb5, 0x04, 0xf3, +0x78, 0xea, 0xb1, 0xe4, 0x16, 0x48, 0x17, 0x49, 0x00, 0x22, 0x81, 0x61, 0x02, 0x70, 0xc1, 0x61, +0x70, 0x47, 0x10, 0xb5, 0xff, 0xf7, 0xf6, 0xff, 0x11, 0x49, 0x01, 0x20, 0x48, 0x82, 0x00, 0xf0, +0x88, 0xfa, 0xa1, 0xe4, 0x0e, 0x48, 0x00, 0x21, 0x01, 0x82, 0x0f, 0x49, 0x0f, 0x4b, 0x09, 0x88, +0x0f, 0x4a, 0x99, 0x42, 0x02, 0xd3, 0x51, 0x00, 0xc2, 0x81, 0x07, 0xe0, 0x0d, 0x4b, 0x99, 0x42, +0x02, 0xd3, 0xc2, 0x81, 0x82, 0x81, 0x02, 0xe0, 0x0b, 0x49, 0xc1, 0x81, 0x81, 0x81, 0x00, 0x21, +0xc9, 0x43, 0x41, 0x81, 0x1f, 0x21, 0x81, 0x70, 0x41, 0x70, 0x70, 0x47, 0xec, 0xbb, 0x02, 0x00, +0x18, 0x02, 0x00, 0x04, 0xef, 0xdf, 0xff, 0x7f, 0x56, 0xf0, 0x00, 0xc0, 0x58, 0x1b, 0x00, 0x00, +0x88, 0x0e, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x44, 0x07, 0x00, 0x00, 0x10, 0xb5, 0x0c, 0x00, +0xf2, 0xf7, 0x60, 0xff, 0x20, 0x00, 0xff, 0xf7, 0xdd, 0xfd, 0x10, 0xbd, 0x70, 0xb5, 0x05, 0x00, +0x0c, 0x00, 0x08, 0x00, 0x00, 0xf3, 0x09, 0xfa, 0xa0, 0x7d, 0x06, 0xf0, 0x74, 0xfe, 0x06, 0x00, +0x20, 0x68, 0xc0, 0x6d, 0x80, 0x79, 0xc0, 0x07, 0x03, 0xd1, 0x21, 0x00, 0x28, 0x00, 0xfc, 0xf7, +0xeb, 0xf9, 0x30, 0x00, 0x70, 0xbd, 0x02, 0x00, 0xff, 0x32, 0x30, 0xb5, 0x41, 0x32, 0xd3, 0x6a, +0xff, 0x24, 0x00, 0x20, 0xe4, 0x05, 0x1a, 0x00, 0xa2, 0x43, 0x0c, 0xd0, 0x54, 0x1e, 0x22, 0x42, +0x09, 0xd1, 0x00, 0x22, 0x0a, 0x70, 0x01, 0x20, 0x1e, 0x22, 0x05, 0x00, 0x2c, 0x00, 0x94, 0x40, +0x1c, 0x42, 0x01, 0xd0, 0x0a, 0x70, 0x30, 0xbd, 0x52, 0x1e, 0x12, 0x06, 0x12, 0x0e, 0xf5, 0xd1, +0x30, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x0e, 0xf0, 0x10, 0xee, 0x02, 0x28, 0x01, 0xd0, 0x00, 0x20, +0x00, 0xe0, 0x05, 0x20, 0x20, 0x70, 0x01, 0x20, 0x10, 0xbd, 0xf3, 0xb5, 0x58, 0x13, 0xd0, 0x38, +0x01, 0x00, 0x00, 0x00, 0x78, 0x86, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x09, 0x9a, 0x53, 0x40, +0x81, 0xb0, 0x05, 0x00, 0x0b, 0x20, 0x02, 0x99, 0x01, 0x27, 0x00, 0x24, 0x80, 0x01, 0x08, 0x18, +0x00, 0x90, 0x01, 0x26, 0xa6, 0x40, 0x30, 0x00, 0x28, 0x42, 0x00, 0xd0, 0x27, 0x00, 0x20, 0x00, +0x05, 0xf3, 0xe8, 0xfb, 0x41, 0x08, 0x00, 0x98, 0x00, 0x69, 0xff, 0x30, 0x41, 0x30, 0x80, 0x89, +0x81, 0x42, 0x00, 0xd2, 0xb5, 0x43, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x1e, 0x2c, 0xe8, 0xd9, +0x00, 0x2d, 0x04, 0xd1, 0x01, 0x25, 0x02, 0x98, 0xbd, 0x40, 0x20, 0x30, 0x07, 0x76, 0x28, 0x00, +0xfe, 0xbd, 0x01, 0x00, 0x00, 0x20, 0x0c, 0x29, 0x02, 0xd8, 0x88, 0x00, 0x63, 0x49, 0x08, 0x58, +0x70, 0x47, 0xf8, 0xb5, 0x06, 0x00, 0xff, 0x30, 0x41, 0x30, 0x85, 0x6a, 0x70, 0x7a, 0x60, 0x4f, +0x02, 0x28, 0x09, 0xd1, 0x30, 0x00, 0x0c, 0xf0, 0xc1, 0xf9, 0x30, 0x00, 0xea, 0xf7, 0xf5, 0xfa, +0x00, 0x28, 0x18, 0xd1, 0x3d, 0x40, 0x16, 0xe0, 0x5a, 0x48, 0x2c, 0x00, 0x00, 0x68, 0x04, 0x40, +0x30, 0x00, 0xea, 0xf7, 0xea, 0xfa, 0x00, 0x28, 0x00, 0xd1, 0x3c, 0x40, 0x56, 0x48, 0x04, 0xf3, +0xe4, 0xea, 0x00, 0x28, 0x01, 0xd0, 0x55, 0x48, 0x04, 0x40, 0x55, 0x48, 0x00, 0x78, 0xff, 0xf7, +0xd0, 0xff, 0x20, 0x40, 0x05, 0x00, 0x31, 0x00, 0x28, 0x00, 0xff, 0xf7, 0xa0, 0xff, 0xf8, 0xbd, +0x70, 0xb5, 0x05, 0x00, 0xff, 0x35, 0x04, 0x00, 0x01, 0x26, 0x5d, 0x35, 0xff, 0xf7, 0xc9, 0xff, +0x01, 0x00, 0x60, 0x7a, 0x02, 0x28, 0x01, 0xd1, 0x29, 0x61, 0x13, 0xe0, 0x49, 0x48, 0x01, 0x60, +0x20, 0x00, 0x38, 0x30, 0x00, 0x29, 0x29, 0x61, 0x03, 0xd1, 0xff, 0xf7, 0x7c, 0xff, 0x00, 0x20, +0x70, 0xbd, 0x01, 0x00, 0x20, 0x00, 0xff, 0xf7, 0x58, 0xff, 0x00, 0x28, 0x02, 0xd1, 0xfe, 0x20, +0x20, 0x34, 0x20, 0x76, 0x30, 0x00, 0x70, 0xbd, 0x02, 0x00, 0xff, 0x32, 0x41, 0x32, 0x91, 0x62, +0xd6, 0xe7, 0x01, 0x61, 0x41, 0x61, 0x70, 0x47, 0x34, 0x49, 0x20, 0x39, 0x08, 0x5c, 0x70, 0x47, +0x02, 0x00, 0xff, 0x32, 0x81, 0x32, 0x52, 0x68, 0x00, 0x29, 0x01, 0xd1, 0x80, 0x18, 0x0a, 0xe0, +0x51, 0x18, 0xff, 0x22, 0x71, 0x32, 0x12, 0x5c, 0x8a, 0x42, 0x00, 0xda, 0x11, 0x00, 0x00, 0x29, +0x00, 0xda, 0x00, 0x21, 0x40, 0x18, 0xff, 0x30, 0xff, 0x30, 0x80, 0x1c, 0x00, 0x7f, 0x70, 0x47, +0x10, 0xb5, 0xff, 0xf7, 0x86, 0xff, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x10, 0xbd, 0x00, 0x20, +0x10, 0xbd, 0x02, 0x00, 0x10, 0xb5, 0x40, 0x7a, 0x02, 0x28, 0x13, 0xd0, 0x26, 0x48, 0x00, 0x88, +0x00, 0x28, 0x0f, 0xd0, 0x1d, 0x48, 0x38, 0x30, 0x40, 0x5c, 0xfe, 0x28, 0x0d, 0xd1, 0x0b, 0x00, +0x04, 0xf3, 0x4c, 0xeb, 0x0e, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x0c, 0x0c, 0x0c, 0x08, 0x08, +0x08, 0x08, 0x08, 0x0c, 0x10, 0x00, 0xfb, 0xf7, 0xee, 0xf9, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, +0x00, 0x2a, 0x10, 0xb5, 0x02, 0xd0, 0xfb, 0xf7, 0xe6, 0xf9, 0x10, 0xbd, 0xff, 0xf7, 0xd9, 0xff, +0x10, 0xbd, 0x01, 0x23, 0x0e, 0x28, 0x10, 0xb5, 0x11, 0xd3, 0x15, 0x28, 0x03, 0xd8, 0x00, 0x24, +0x0e, 0x38, 0x0c, 0x70, 0x09, 0xe0, 0x01, 0x24, 0x16, 0x28, 0x02, 0xd1, 0x20, 0x20, 0x0c, 0x70, +0x03, 0xe0, 0x1e, 0x28, 0x03, 0xd8, 0x17, 0x38, 0x0c, 0x70, 0x10, 0x70, 0x00, 0xe0, 0x00, 0x23, +0x18, 0x00, 0x10, 0xbd, 0x10, 0xb5, 0xea, 0xf7, 0x16, 0xfa, 0x10, 0xbd, 0xa0, 0x75, 0x02, 0x00, +0xff, 0xff, 0x3f, 0x80, 0x30, 0x02, 0x00, 0x04, 0xa0, 0x55, 0x00, 0x04, 0x1f, 0x20, 0x00, 0x80, +0x18, 0x02, 0x00, 0x04, 0x34, 0x02, 0x00, 0x04, 0x2a, 0x02, 0x00, 0x04, 0x04, 0x28, 0x03, 0xd2, +0xac, 0x49, 0x08, 0x70, 0x00, 0x20, 0x70, 0x47, 0x01, 0x20, 0x70, 0x47, 0xaa, 0x49, 0x0e, 0x28, +0x09, 0x68, 0x01, 0xd2, 0xa9, 0x4a, 0x10, 0x5c, 0x80, 0x00, 0x08, 0x58, 0x70, 0x47, 0x2d, 0x22, +0x12, 0x5c, 0x00, 0x2a, 0x06, 0xd0, 0x02, 0x7d, 0xc0, 0x30, 0x10, 0x5c, 0x88, 0x42, 0x01, 0xd1, +0x01, 0x20, 0x70, 0x47, 0x00, 0x20, 0x70, 0x47, 0xf7, 0xb5, 0x82, 0xb0, 0x07, 0x00, 0x16, 0x00, +0x08, 0xf0, 0x58, 0xff, 0x01, 0x90, 0xbc, 0x20, 0x80, 0x59, 0x03, 0x99, 0x85, 0x68, 0x44, 0x68, +0x38, 0x00, 0xff, 0x30, 0x5d, 0x30, 0xff, 0xf7, 0xe2, 0xff, 0x00, 0x90, 0x03, 0x98, 0xff, 0xf7, +0xd5, 0xff, 0x01, 0x00, 0x00, 0x68, 0x00, 0x27, 0x02, 0x01, 0x12, 0x0f, 0x0f, 0x2a, 0x17, 0xd0, +0x00, 0x9a, 0x00, 0x2a, 0x09, 0xd0, 0x02, 0x22, 0x10, 0x43, 0x0f, 0x22, 0x12, 0x06, 0x90, 0x43, +0x01, 0x22, 0x12, 0x06, 0x80, 0x18, 0x01, 0x27, 0x20, 0x60, 0x08, 0x20, 0xc0, 0x1b, 0x02, 0x06, +0xb8, 0x00, 0x33, 0x69, 0x12, 0x0e, 0x00, 0x19, 0xff, 0xf2, 0x0b, 0xfe, 0x38, 0x18, 0x0e, 0xe0, +0x20, 0x60, 0x00, 0x99, 0x00, 0x29, 0x02, 0xd0, 0x02, 0x21, 0x08, 0x43, 0x20, 0x60, 0x01, 0x20, +0x81, 0x00, 0x09, 0x19, 0x0a, 0x00, 0x80, 0x3a, 0xd2, 0x6f, 0x40, 0x1c, 0x0a, 0x60, 0x08, 0x28, +0xf6, 0xdb, 0x03, 0x98, 0x00, 0x27, 0x81, 0x00, 0x7d, 0x48, 0x41, 0x58, 0x08, 0x68, 0x02, 0x01, +0x12, 0x0f, 0x0f, 0x2a, 0x25, 0xd0, 0x00, 0x9a, 0x00, 0x2a, 0x09, 0xd0, 0x02, 0x22, 0x10, 0x43, +0x0f, 0x22, 0x12, 0x06, 0x90, 0x43, 0x01, 0x22, 0x12, 0x06, 0x80, 0x18, 0x01, 0x27, 0x28, 0x60, +0x03, 0x20, 0xc0, 0x1b, 0x02, 0x06, 0xb8, 0x00, 0x33, 0x69, 0x12, 0x0e, 0x40, 0x19, 0xff, 0xf2, +0xd8, 0xfd, 0xc0, 0x36, 0x31, 0x78, 0x38, 0x18, 0x8a, 0x00, 0x6d, 0x49, 0x80, 0x00, 0x89, 0x58, +0x42, 0x19, 0x09, 0x68, 0x11, 0x60, 0x29, 0x58, 0x0f, 0x22, 0x12, 0x06, 0x11, 0x43, 0x29, 0x50, +0x07, 0xe0, 0x28, 0x60, 0x00, 0x98, 0x00, 0x28, 0x03, 0xd0, 0x20, 0x68, 0x02, 0x21, 0x08, 0x43, +0x20, 0x60, 0x64, 0x49, 0x48, 0x69, 0x01, 0x22, 0x10, 0x43, 0x48, 0x61, 0x01, 0x98, 0x08, 0xf0, +0xdd, 0xfe, 0x05, 0xb0, 0xf0, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x5a, 0x4e, 0x14, 0x00, 0x70, 0x78, +0x82, 0x42, 0x01, 0xd1, 0x00, 0x29, 0x15, 0xd0, 0x59, 0x48, 0x21, 0x00, 0x14, 0x38, 0x74, 0x70, +0xff, 0xf2, 0x5b, 0xfe, 0x32, 0x78, 0x58, 0x48, 0x21, 0x00, 0xff, 0xf2, 0x32, 0xfe, 0x28, 0x00, +0xff, 0x30, 0x5d, 0x30, 0x04, 0x00, 0x00, 0xf3, 0xb2, 0xf9, 0x01, 0x00, 0x22, 0x00, 0x28, 0x00, +0xff, 0xf7, 0x5a, 0xff, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x4a, 0x4e, 0x14, 0x00, 0xb0, 0x78, +0x82, 0x42, 0x01, 0xd1, 0x00, 0x29, 0x17, 0xd0, 0x49, 0x49, 0x22, 0x00, 0xbc, 0x39, 0x08, 0x00, +0x44, 0x30, 0xb4, 0x70, 0xff, 0xf2, 0x4c, 0xfe, 0x32, 0x78, 0x47, 0x48, 0x21, 0x00, 0xff, 0xf2, +0x5e, 0xfe, 0x28, 0x00, 0xff, 0x30, 0x5d, 0x30, 0x04, 0x00, 0x00, 0xf3, 0x90, 0xf9, 0x01, 0x00, +0x22, 0x00, 0x28, 0x00, 0xff, 0xf7, 0x38, 0xff, 0x70, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0xea, 0xf7, +0xef, 0xf8, 0x02, 0x00, 0x01, 0x21, 0x20, 0x00, 0xff, 0xf7, 0xd5, 0xff, 0x3b, 0x48, 0x01, 0x21, +0x00, 0x79, 0x80, 0x06, 0xc2, 0x0f, 0x20, 0x00, 0xff, 0xf7, 0xad, 0xff, 0x64, 0xaa, 0xce, 0xbf, +0x01, 0x00, 0x00, 0x00, 0x74, 0x8a, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xfd, 0xf5, 0x26, 0xf4, +0x10, 0xbd, 0x36, 0x4a, 0x33, 0x4b, 0x10, 0xb5, 0xff, 0xf2, 0x64, 0xfe, 0x10, 0xbd, 0x42, 0x7a, +0x00, 0x2a, 0x00, 0xd1, 0xfe, 0xe7, 0xff, 0x30, 0xff, 0x30, 0x80, 0x1c, 0x80, 0x69, 0x00, 0x29, +0x01, 0xd0, 0x40, 0x68, 0x70, 0x47, 0x80, 0x68, 0x70, 0x47, 0x2a, 0x49, 0x29, 0x4a, 0x00, 0x20, +0x03, 0x23, 0x30, 0xb5, 0x14, 0x39, 0x1c, 0x1a, 0xa4, 0x00, 0x85, 0x00, 0x64, 0x18, 0x40, 0x1c, +0x03, 0x28, 0x54, 0x51, 0xf7, 0xd9, 0x11, 0x61, 0x22, 0x49, 0x05, 0x20, 0x0c, 0x23, 0x38, 0x39, +0x1c, 0x1a, 0xa4, 0x00, 0x85, 0x00, 0x64, 0x18, 0x40, 0x1c, 0x0c, 0x28, 0x54, 0x51, 0xf7, 0xd9, +0x1c, 0x4b, 0x51, 0x63, 0x0e, 0x20, 0x16, 0x21, 0x78, 0x3b, 0x0c, 0x1a, 0xa4, 0x00, 0x85, 0x00, +0xe4, 0x18, 0x40, 0x1c, 0x15, 0x28, 0x54, 0x51, 0xf7, 0xd9, 0x16, 0x4b, 0x17, 0x20, 0x1f, 0x21, +0xbc, 0x3b, 0x0c, 0x1a, 0xa4, 0x00, 0x85, 0x00, 0xe4, 0x18, 0x40, 0x1c, 0x1e, 0x28, 0x54, 0x51, +0xf7, 0xd9, 0x10, 0x48, 0x0f, 0x24, 0x98, 0x38, 0x90, 0x65, 0x00, 0x20, 0x24, 0x06, 0x01, 0x25, +0x6d, 0x06, 0x81, 0x00, 0x51, 0x58, 0x40, 0x1c, 0x0b, 0x68, 0x00, 0x06, 0xa3, 0x43, 0x5b, 0x19, +0x00, 0x0e, 0x1e, 0x28, 0x0b, 0x60, 0xf4, 0xd9, 0x30, 0xbd, 0x0a, 0x49, 0x07, 0x48, 0x10, 0xb5, +0x04, 0xf3, 0x2e, 0xe8, 0x10, 0xbd, 0x00, 0x00, 0x58, 0x02, 0x00, 0x04, 0xec, 0xbb, 0x02, 0x00, +0xe6, 0x75, 0x02, 0x00, 0xc0, 0x1a, 0x01, 0xc0, 0x80, 0xa1, 0x00, 0x80, 0x30, 0x04, 0x02, 0xc0, +0x82, 0x55, 0x00, 0x04, 0x5c, 0x04, 0x00, 0x00, 0x10, 0xb5, 0xfa, 0x4c, 0x60, 0x6a, 0x60, 0x30, +0x81, 0x7a, 0x00, 0x20, 0xf5, 0xf7, 0x3d, 0xff, 0x60, 0x6a, 0x60, 0x30, 0x81, 0x7a, 0x01, 0x20, +0xf5, 0xf7, 0x37, 0xff, 0xf4, 0x49, 0x02, 0x20, 0x48, 0x70, 0x10, 0xbd, 0x10, 0xb5, 0x00, 0x24, +0xfb, 0xf7, 0x8c, 0xff, 0xef, 0x49, 0x07, 0x28, 0x07, 0xd1, 0x48, 0x6a, 0x60, 0x30, 0xc0, 0x7a, +0x00, 0x28, 0x1b, 0xd0, 0x01, 0x28, 0x1a, 0xd1, 0x1e, 0xe0, 0x03, 0x28, 0x05, 0xd1, 0x48, 0x6a, +0x60, 0x30, 0xc0, 0x7a, 0x00, 0x28, 0x12, 0xd1, 0x10, 0xe0, 0x05, 0x28, 0x05, 0xd1, 0x48, 0x6a, +0x60, 0x30, 0xc0, 0x7a, 0x00, 0x28, 0x0a, 0xd1, 0x0e, 0xe0, 0x06, 0x28, 0x07, 0xd1, 0x48, 0x6a, +0x60, 0x30, 0xc0, 0x7a, 0x01, 0x28, 0x07, 0xd0, 0x02, 0x28, 0x00, 0xd1, 0x01, 0x24, 0x48, 0x6a, +0x60, 0x30, 0xc4, 0x72, 0x84, 0x72, 0x10, 0xbd, 0x02, 0x24, 0xf8, 0xe7, 0xda, 0x49, 0x24, 0x31, +0x08, 0x00, 0x8a, 0x88, 0x08, 0x38, 0x82, 0x80, 0x8a, 0x79, 0x82, 0x71, 0x0a, 0x68, 0x02, 0x60, +0xc9, 0x79, 0xc1, 0x71, 0xb0, 0xe7, 0x10, 0xb5, 0xff, 0xf7, 0xc0, 0xff, 0xff, 0xf7, 0xac, 0xff, +0x10, 0xbd, 0xd1, 0x4a, 0x24, 0x32, 0x91, 0x79, 0x10, 0x00, 0x13, 0x00, 0x00, 0x68, 0x08, 0x3b, +0x64, 0x29, 0x02, 0xd1, 0x00, 0x28, 0x22, 0xd1, 0x08, 0xe0, 0x64, 0x28, 0x06, 0xd3, 0x18, 0x68, +0x64, 0x28, 0x03, 0xd3, 0x98, 0x79, 0x49, 0x1d, 0x81, 0x42, 0x17, 0xd3, 0xc6, 0x4b, 0x04, 0x21, +0x51, 0x5e, 0x1c, 0x33, 0x04, 0x20, 0x18, 0x5e, 0x00, 0x29, 0x01, 0xdc, 0x00, 0x28, 0x02, 0xdd, +0xc0, 0x1c, 0x81, 0x42, 0x0a, 0xdc, 0xc0, 0x48, 0xd1, 0x79, 0x1c, 0x30, 0xc0, 0x79, 0x00, 0x29, +0x01, 0xd1, 0x00, 0x28, 0x03, 0xd0, 0x49, 0x1d, 0x81, 0x42, 0x00, 0xd2, 0xbe, 0xe7, 0xca, 0xe7, +0xb9, 0x48, 0x80, 0x78, 0x70, 0x47, 0xf1, 0xb5, 0x0a, 0x25, 0x2c, 0x00, 0xb5, 0x48, 0x40, 0x6a, +0x60, 0x30, 0x40, 0x7b, 0x00, 0x28, 0x59, 0xd0, 0x0b, 0xf0, 0x39, 0xfa, 0x7d, 0x27, 0xb2, 0x4e, +0xff, 0x00, 0x00, 0x28, 0x0b, 0xd0, 0xb1, 0x48, 0x04, 0x68, 0xb0, 0x69, 0x84, 0x42, 0x04, 0xd9, +0x20, 0x1a, 0x39, 0x00, 0x04, 0xf3, 0x30, 0xec, 0x05, 0x00, 0xb4, 0x61, 0x2c, 0x00, 0xf2, 0xf7, +0x59, 0xfd, 0x00, 0x28, 0x11, 0xd0, 0xf2, 0xf7, 0x55, 0xfd, 0x00, 0x9a, 0x0a, 0x21, 0x40, 0x32, +0xd2, 0x7f, 0x15, 0x2a, 0x00, 0xd8, 0x51, 0x08, 0x8a, 0x08, 0x82, 0x42, 0x00, 0xd8, 0x64, 0x00, +0x49, 0x08, 0x81, 0x42, 0x12, 0xd8, 0x64, 0x00, 0x10, 0xe0, 0x00, 0x98, 0xf2, 0xf7, 0xec, 0xfc, +0x00, 0x28, 0x0b, 0xd0, 0x00, 0x98, 0xf2, 0xf7, 0x6e, 0xfc, 0x0a, 0x28, 0x00, 0xdc, 0x64, 0x00, +0x05, 0x28, 0x00, 0xdc, 0x64, 0x00, 0x28, 0x28, 0x00, 0xdb, 0x64, 0x10, 0x30, 0x78, 0x00, 0x28, +0x09, 0xd1, 0x97, 0x49, 0x30, 0x69, 0x88, 0x42, 0x02, 0xd2, 0x00, 0x19, 0x30, 0x61, 0x0f, 0xe0, +0x01, 0x20, 0xb0, 0x70, 0x0c, 0xe0, 0x02, 0x28, 0x03, 0xd0, 0x04, 0x28, 0x01, 0xd0, 0x06, 0x28, +0x04, 0xd1, 0x71, 0x68, 0xb9, 0x42, 0x01, 0xd8, 0x49, 0x19, 0x71, 0x60, 0x00, 0x28, 0x05, 0xd1, +0x8c, 0x49, 0xb0, 0x68, 0x88, 0x42, 0x01, 0xd8, 0x40, 0x19, 0xb0, 0x60, 0xf8, 0xbd, 0x86, 0x49, +0x89, 0x48, 0x08, 0x61, 0x00, 0x20, 0x85, 0x4a, 0x48, 0x60, 0x88, 0x60, 0x12, 0x68, 0x8a, 0x61, +0x0a, 0x00, 0x24, 0x32, 0x64, 0x23, 0x90, 0x80, 0x93, 0x71, 0x10, 0x60, 0xd0, 0x71, 0x08, 0x3a, +0x90, 0x80, 0x93, 0x71, 0x10, 0x60, 0xd0, 0x71, 0x88, 0x70, 0x08, 0x70, 0x70, 0x47, 0x10, 0xb5, +0xff, 0xf7, 0xe5, 0xff, 0xfb, 0xf7, 0x9a, 0xfe, 0x04, 0x00, 0xfb, 0xf7, 0x97, 0xfe, 0x40, 0x1e, +0x04, 0x42, 0x14, 0xd0, 0xfb, 0xf7, 0x88, 0xfe, 0x04, 0x00, 0xfb, 0xf7, 0x85, 0xfe, 0x40, 0x1e, +0x04, 0x42, 0x0c, 0xd0, 0x6f, 0x48, 0x40, 0x6a, 0x60, 0x30, 0x41, 0x7b, 0x00, 0x29, 0x06, 0xd0, +0x00, 0x7b, 0x00, 0x28, 0x03, 0xd0, 0xfb, 0xf7, 0x0b, 0xff, 0xfb, 0xf7, 0xef, 0xfe, 0xff, 0xf7, +0xdb, 0xfe, 0x10, 0xbd, 0x68, 0x49, 0x48, 0x78, 0x00, 0x28, 0x03, 0xd0, 0x40, 0x1e, 0x48, 0x70, +0x00, 0x20, 0x70, 0x47, 0x01, 0x20, 0x70, 0x47, 0x70, 0xb5, 0x5f, 0x24, 0x62, 0x4d, 0x24, 0x5c, +0x24, 0x35, 0xea, 0x79, 0x0a, 0x23, 0x15, 0x2c, 0x00, 0xd8, 0x63, 0x08, 0x9a, 0x42, 0x04, 0xd3, +0x5d, 0x4b, 0x1c, 0x33, 0xdb, 0x79, 0x9a, 0x42, 0x18, 0xd8, 0x5b, 0x4a, 0x93, 0x78, 0x00, 0x2b, +0x04, 0xd0, 0x52, 0x68, 0x7d, 0x23, 0xdb, 0x00, 0x9a, 0x42, 0x11, 0xd3, 0x00, 0x29, 0x0d, 0xd1, +0x29, 0x68, 0x64, 0x29, 0x02, 0xd3, 0xa9, 0x79, 0x14, 0x29, 0x07, 0xd2, 0x00, 0x21, 0xf2, 0xf7, +0xbf, 0xfa, 0x00, 0x28, 0x04, 0xd0, 0xa8, 0x88, 0x00, 0x28, 0x01, 0xd0, 0x00, 0x20, 0x70, 0xbd, +0x01, 0x20, 0x70, 0xbd, 0xff, 0xb5, 0x81, 0xb0, 0x4a, 0x48, 0x4b, 0x4c, 0x40, 0x6a, 0x60, 0x30, +0x40, 0x7b, 0x00, 0x28, 0x74, 0xd0, 0x01, 0x98, 0xf2, 0xf7, 0x3e, 0xfc, 0x27, 0x00, 0x01, 0x26, +0x24, 0x37, 0x00, 0x25, 0x00, 0x28, 0x10, 0xd0, 0x01, 0x98, 0xf2, 0xf7, 0xbc, 0xfb, 0x00, 0x04, +0x00, 0x14, 0xb8, 0x80, 0xa1, 0x78, 0x00, 0x29, 0x03, 0xd0, 0x0a, 0x28, 0x06, 0xdd, 0xa5, 0x70, +0x04, 0xe0, 0x0a, 0x28, 0x02, 0xdc, 0xa6, 0x70, 0x00, 0xe0, 0xbd, 0x80, 0x02, 0x98, 0xb8, 0x71, +0x03, 0x98, 0x38, 0x60, 0xf2, 0xf7, 0x76, 0xfc, 0xf8, 0x71, 0x23, 0x78, 0x84, 0x02, 0x4e, 0xab, +0x01, 0x00, 0x00, 0x00, 0x70, 0x8e, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xae, 0x2f, 0xf5, 0x98, +0x04, 0xf3, 0x10, 0xe8, 0x07, 0x05, 0x0c, 0x0e, 0x2b, 0x2d, 0x43, 0x45, 0x50, 0x00, 0x38, 0x49, +0x20, 0x69, 0x88, 0x42, 0x46, 0xd3, 0x25, 0x61, 0x26, 0x70, 0x43, 0xe0, 0x02, 0x20, 0x2f, 0xe0, +0x04, 0x99, 0x01, 0x98, 0xff, 0xf7, 0x92, 0xff, 0x00, 0x28, 0x3b, 0xd1, 0x65, 0x60, 0x00, 0xf0, +0xfe, 0xf8, 0x00, 0x28, 0x01, 0xd1, 0x25, 0x70, 0x04, 0xe0, 0xa5, 0x60, 0xff, 0xf7, 0x68, 0xfe, +0x03, 0x20, 0x20, 0x70, 0x25, 0x48, 0xb9, 0x79, 0x1c, 0x30, 0x81, 0x71, 0xb9, 0x88, 0x81, 0x80, +0x39, 0x68, 0x01, 0x60, 0xf9, 0x79, 0xc1, 0x71, 0x24, 0xe0, 0x04, 0x20, 0x10, 0xe0, 0x04, 0x99, +0x01, 0x98, 0xff, 0xf7, 0x73, 0xff, 0x00, 0x28, 0x1c, 0xd1, 0x65, 0x60, 0x01, 0x98, 0xff, 0xf7, +0x92, 0xfe, 0xfb, 0xf7, 0xdd, 0xfd, 0x07, 0x28, 0x04, 0xd1, 0xff, 0xf7, 0x49, 0xfe, 0x05, 0x20, +0x20, 0x70, 0x0f, 0xe0, 0x25, 0x70, 0xa5, 0x70, 0x0c, 0xe0, 0x06, 0x20, 0xf8, 0xe7, 0x04, 0x99, +0x01, 0x98, 0xff, 0xf7, 0x5b, 0xff, 0x00, 0x28, 0x04, 0xd1, 0x65, 0x60, 0x01, 0x98, 0xff, 0xf7, +0x7a, 0xfe, 0xef, 0xe7, 0x20, 0x78, 0x05, 0xb0, 0xf0, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0xf2, 0xf7, +0x36, 0xfb, 0x2c, 0x00, 0xa0, 0x34, 0x20, 0x82, 0x28, 0x00, 0xf2, 0xf7, 0x28, 0xfb, 0x60, 0x82, +0xff, 0xf7, 0x14, 0xfe, 0x20, 0x00, 0xbc, 0x30, 0xff, 0xf2, 0x15, 0xff, 0x05, 0x28, 0x11, 0xd9, +0x28, 0x00, 0xfe, 0xf7, 0x93, 0xff, 0x10, 0xe0, 0x38, 0x52, 0x00, 0x04, 0x6c, 0x1e, 0x01, 0xc0, +0x00, 0xa6, 0x00, 0x80, 0xe0, 0x2e, 0x00, 0x00, 0x20, 0x4e, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, +0x70, 0x17, 0x00, 0x00, 0x28, 0x00, 0xfe, 0xf7, 0xc7, 0xff, 0x28, 0x00, 0xf2, 0xf7, 0x66, 0xfb, +0x00, 0x22, 0x11, 0x00, 0x28, 0x00, 0x13, 0x00, 0xff, 0xf7, 0x4e, 0xff, 0x5a, 0x49, 0x08, 0x70, +0x70, 0xbd, 0xfe, 0xb5, 0x05, 0x00, 0x07, 0x00, 0x57, 0x4e, 0x2c, 0x00, 0xb0, 0x78, 0xff, 0x37, +0xff, 0x34, 0x5d, 0x37, 0xfd, 0x34, 0x00, 0x28, 0x05, 0xd1, 0x20, 0x7d, 0x00, 0x28, 0x1f, 0xd1, +0xe8, 0x68, 0xc0, 0x04, 0x4b, 0xd5, 0x00, 0x22, 0x11, 0x00, 0x28, 0x00, 0x13, 0x00, 0xff, 0xf7, +0x33, 0xff, 0x01, 0x28, 0x30, 0x70, 0x0a, 0xd1, 0x00, 0x20, 0x00, 0x90, 0x38, 0x00, 0x69, 0x46, +0xff, 0xf2, 0x0a, 0xfe, 0x06, 0x20, 0x20, 0x75, 0x28, 0x00, 0xff, 0xf7, 0xa6, 0xff, 0xb0, 0x78, +0x00, 0x28, 0x31, 0xd0, 0x30, 0x78, 0x03, 0x28, 0x24, 0xd0, 0x05, 0x28, 0x2c, 0xd1, 0x21, 0xe0, +0x06, 0x28, 0x29, 0xd1, 0x38, 0x00, 0x3c, 0x30, 0x07, 0x00, 0x00, 0x23, 0x01, 0xaa, 0x69, 0x46, +0x07, 0xf0, 0xd0, 0xff, 0x02, 0x28, 0x04, 0xd1, 0x70, 0x68, 0x7d, 0x21, 0xc9, 0x00, 0x88, 0x42, +0x1a, 0xd3, 0x38, 0x00, 0x07, 0xf0, 0x2f, 0xff, 0x00, 0x99, 0x02, 0x00, 0x09, 0x06, 0x6b, 0x46, +0x1b, 0x79, 0x09, 0x0e, 0x28, 0x00, 0xff, 0xf7, 0xff, 0xfe, 0x03, 0x28, 0x30, 0x70, 0x01, 0xd0, +0x05, 0x28, 0x03, 0xd1, 0x28, 0x00, 0xff, 0xf7, 0x78, 0xff, 0x05, 0xe0, 0x00, 0x28, 0x03, 0xd1, +0x00, 0x21, 0x28, 0x00, 0xfe, 0xf7, 0x84, 0xff, 0x20, 0x7d, 0x00, 0x28, 0x01, 0xd1, 0x00, 0x20, +0xfe, 0xbd, 0x02, 0x20, 0xfe, 0xbd, 0x70, 0xb5, 0x00, 0x28, 0x27, 0x4c, 0x10, 0xd0, 0xfb, 0xf7, +0x27, 0xfd, 0x05, 0x00, 0xfb, 0xf7, 0x24, 0xfd, 0x40, 0x1e, 0x05, 0x42, 0x0b, 0xd0, 0xfb, 0xf7, +0x15, 0xfd, 0x05, 0x00, 0xfb, 0xf7, 0x12, 0xfd, 0x40, 0x1e, 0x05, 0x42, 0x03, 0xd0, 0x01, 0x20, +0xe0, 0x60, 0x01, 0x20, 0x70, 0xbd, 0x00, 0x20, 0x70, 0xbd, 0x10, 0xb5, 0x1a, 0x4c, 0xe0, 0x68, +0x00, 0x28, 0x0b, 0xd0, 0x60, 0x69, 0x00, 0x28, 0x08, 0xd1, 0xff, 0xf7, 0x52, 0xfe, 0x17, 0x48, +0x01, 0x21, 0x40, 0x6a, 0x60, 0x30, 0x01, 0x73, 0x41, 0x73, 0x61, 0x61, 0x10, 0xbd, 0x12, 0x49, +0x13, 0x4a, 0x88, 0x68, 0x90, 0x42, 0x1a, 0xd2, 0x0a, 0x00, 0x1c, 0x32, 0x04, 0x20, 0x10, 0x5e, +0x00, 0x28, 0x14, 0xd0, 0x89, 0x78, 0x00, 0x29, 0x11, 0xd1, 0x11, 0x00, 0x08, 0x31, 0x04, 0x23, +0xcb, 0x5e, 0x18, 0x1a, 0x43, 0x1c, 0x0a, 0xdb, 0x08, 0x68, 0x64, 0x28, 0x09, 0xd3, 0x8b, 0x79, +0x91, 0x79, 0x14, 0x20, 0x14, 0x29, 0x00, 0xd3, 0x08, 0x00, 0x83, 0x42, 0x01, 0xd3, 0x01, 0x20, +0x70, 0x47, 0x00, 0x20, 0x70, 0x47, 0x00, 0x00, 0x6c, 0x1e, 0x01, 0xc0, 0x38, 0x52, 0x00, 0x04, +0x20, 0x4e, 0x00, 0x00, 0xf8, 0xb5, 0xf8, 0xf2, 0x7d, 0xfd, 0xff, 0x4d, 0xe9, 0x60, 0xa8, 0x60, +0xe8, 0x1d, 0xf9, 0x30, 0x01, 0x6b, 0x04, 0x00, 0x49, 0x1c, 0x40, 0x34, 0x01, 0x63, 0x20, 0x7c, +0x00, 0x90, 0x00, 0x28, 0x05, 0xd0, 0x28, 0x68, 0x00, 0x26, 0x2e, 0x60, 0xf2, 0xf2, 0x95, 0xfd, +0x26, 0x74, 0xa0, 0x7c, 0xf5, 0x4e, 0x00, 0x28, 0x23, 0xd0, 0xf2, 0xf2, 0xad, 0xf9, 0x32, 0x6e, +0x73, 0x6e, 0x87, 0x1a, 0x99, 0x41, 0xb2, 0x6d, 0xa8, 0x68, 0xf3, 0x6d, 0xe9, 0x68, 0x85, 0x1a, +0x99, 0x41, 0x00, 0x23, 0x0e, 0x00, 0xe8, 0x1a, 0x99, 0x41, 0x03, 0xda, 0x68, 0x42, 0x92, 0x41, +0x91, 0x1b, 0x00, 0xe0, 0x28, 0x00, 0x01, 0x00, 0x3a, 0x00, 0x0c, 0x20, 0x01, 0xf0, 0x60, 0xf9, +0x38, 0x00, 0xe6, 0x4a, 0x00, 0x27, 0x33, 0x00, 0x28, 0x1a, 0xbb, 0x41, 0xd3, 0x66, 0x90, 0x66, +0xa7, 0x74, 0x00, 0x98, 0xf8, 0xbd, 0xe0, 0x48, 0x10, 0xb5, 0x01, 0x68, 0x00, 0x29, 0x16, 0xd0, +0xde, 0x4c, 0x00, 0x21, 0x01, 0x60, 0xe0, 0x6a, 0x05, 0x21, 0x40, 0x1c, 0xe0, 0x62, 0x60, 0x6b, +0x40, 0x1c, 0x60, 0x63, 0x04, 0xf3, 0xb2, 0xe9, 0x00, 0x29, 0x02, 0xd1, 0xa0, 0x6b, 0x40, 0x1c, +0xa0, 0x63, 0x00, 0x20, 0x0b, 0xf0, 0xb6, 0xfc, 0x61, 0x6b, 0xf1, 0xf7, 0x0b, 0xfd, 0x10, 0xbd, +0xf0, 0xb5, 0x85, 0xb0, 0xf1, 0xf7, 0xbe, 0xfd, 0x05, 0x28, 0x42, 0xd1, 0xf2, 0xf2, 0x64, 0xf9, +0xce, 0x4c, 0xe1, 0x64, 0xa0, 0x64, 0xf8, 0xf2, 0x15, 0xfd, 0xcb, 0x4f, 0x61, 0x64, 0x20, 0x64, +0x38, 0x68, 0x00, 0x26, 0x00, 0x28, 0x02, 0xd0, 0x3e, 0x60, 0xf2, 0xf2, 0x36, 0xfd, 0xc8, 0x48, +0xc8, 0x49, 0x00, 0x88, 0xc5, 0x4c, 0x88, 0x42, 0x2b, 0xd0, 0x60, 0x6b, 0x05, 0x21, 0x04, 0xf3, +0x86, 0xe9, 0x0d, 0x00, 0xf8, 0xf2, 0xfe, 0xfc, 0x03, 0x91, 0x02, 0x90, 0xba, 0x68, 0xfb, 0x68, +0x80, 0x1a, 0x99, 0x41, 0x0c, 0xd3, 0xba, 0x68, 0x02, 0x98, 0xfb, 0x68, 0x03, 0x99, 0x80, 0x1a, +0xbd, 0x4a, 0x99, 0x41, 0x33, 0x00, 0x12, 0x1a, 0x8b, 0x41, 0x01, 0xd3, 0x04, 0x2d, 0x01, 0xd1, +0x20, 0x6a, 0x04, 0xe0, 0xb6, 0x48, 0x7d, 0x23, 0x00, 0x88, 0xdb, 0x00, 0x58, 0x43, 0xe9, 0x02, +0x08, 0x18, 0x00, 0x22, 0x00, 0x92, 0x02, 0x00, 0xb4, 0x48, 0xaf, 0x4b, 0x00, 0x21, 0xf2, 0xf2, +0xa1, 0xfc, 0x05, 0xb0, 0xf0, 0xbd, 0x10, 0xb5, 0x00, 0x24, 0x00, 0x28, 0x08, 0xd0, 0x01, 0x28, +0x0a, 0xd0, 0x02, 0x28, 0x16, 0xd0, 0x03, 0x28, 0x16, 0xd1, 0x00, 0xf0, 0x74, 0xfa, 0x13, 0xe0, +0xff, 0xf7, 0x48, 0xff, 0x04, 0x00, 0x0f, 0xe0, 0xf1, 0xf7, 0x64, 0xfd, 0x46, 0x68, 0x95, 0x90, +0x01, 0x00, 0x00, 0x00, 0x6c, 0x92, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x11, 0xea, 0xd0, 0x2b, +0x05, 0x28, 0x0b, 0xd1, 0xa2, 0x48, 0x01, 0x21, 0x40, 0x30, 0x01, 0x74, 0xf2, 0xf2, 0x06, 0xf9, +0x9f, 0x4a, 0xd1, 0x64, 0x90, 0x64, 0x01, 0xe0, 0xff, 0xf7, 0x94, 0xff, 0x20, 0x00, 0x10, 0xbd, +0x9b, 0x49, 0xc2, 0x78, 0x20, 0x31, 0x8a, 0x71, 0x80, 0x78, 0xc8, 0x71, 0x70, 0x47, 0x98, 0x48, +0x00, 0x21, 0x41, 0x63, 0x70, 0x47, 0x96, 0x49, 0x20, 0x31, 0x88, 0x80, 0x81, 0x02, 0x94, 0x48, +0x01, 0x62, 0x70, 0x47, 0xff, 0xb5, 0x85, 0xb0, 0x1c, 0x00, 0x00, 0x26, 0x17, 0x00, 0x0d, 0x00, +0x08, 0x22, 0x02, 0xa8, 0x01, 0x96, 0x03, 0xf3, 0xcc, 0xeb, 0x68, 0x7a, 0x29, 0x7a, 0x00, 0x02, +0x08, 0x43, 0xff, 0xf7, 0xe8, 0xff, 0x35, 0x00, 0x33, 0x00, 0x89, 0x4e, 0xf1, 0x6e, 0xb0, 0x6e, +0x59, 0x40, 0x08, 0x43, 0x04, 0xd0, 0x05, 0x98, 0xf2, 0xf7, 0x4f, 0xfb, 0xb5, 0x66, 0xf5, 0x66, +0x83, 0x48, 0x20, 0x30, 0x04, 0x90, 0x40, 0x89, 0xb8, 0x42, 0x11, 0xd0, 0x04, 0x98, 0x47, 0x81, +0x20, 0x37, 0x04, 0x99, 0xf8, 0x04, 0x00, 0x0c, 0x08, 0x81, 0x0e, 0x99, 0x00, 0x29, 0x01, 0xd1, +0xc0, 0x30, 0x03, 0xe0, 0x06, 0x21, 0x04, 0xf3, 0xf4, 0xe8, 0x14, 0x30, 0x04, 0x99, 0x08, 0x81, +0x00, 0x2c, 0x05, 0xd0, 0x04, 0x98, 0xe1, 0x78, 0x81, 0x71, 0x04, 0x98, 0xa1, 0x78, 0xc1, 0x71, +0x73, 0x4c, 0x03, 0x99, 0x22, 0x6a, 0x02, 0x98, 0x00, 0x23, 0x03, 0xf3, 0x70, 0xe9, 0x20, 0x7c, +0x41, 0x00, 0x6e, 0x48, 0x08, 0x18, 0x02, 0x82, 0x20, 0x7c, 0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, +0x80, 0x28, 0x20, 0x74, 0x01, 0xd9, 0x00, 0x20, 0x20, 0x74, 0x20, 0x7c, 0x40, 0x06, 0x63, 0xd1, +0x66, 0x4b, 0x10, 0x33, 0x03, 0x21, 0x00, 0x22, 0x10, 0x00, 0x55, 0x00, 0x5e, 0x5b, 0x02, 0xe0, +0x40, 0x00, 0x1d, 0x52, 0x38, 0x00, 0x88, 0x42, 0x04, 0xdb, 0x47, 0x1a, 0x7d, 0x00, 0x5d, 0x5b, +0xb5, 0x42, 0xf5, 0xdc, 0x40, 0x00, 0x52, 0x1c, 0x80, 0x2a, 0x1e, 0x52, 0xec, 0xdb, 0x48, 0x10, +0x03, 0xd0, 0x49, 0x10, 0x00, 0x29, 0xe6, 0xdc, 0x03, 0xe0, 0x01, 0x29, 0x01, 0xd0, 0x01, 0x21, +0xe1, 0xe7, 0x56, 0x4b, 0x18, 0x8a, 0x60, 0x82, 0x00, 0x20, 0xa0, 0x82, 0xe0, 0x82, 0x41, 0x00, +0xcd, 0x18, 0x2a, 0x8a, 0x61, 0x8a, 0x8a, 0x42, 0x00, 0xd3, 0x0a, 0x00, 0x62, 0x82, 0x29, 0x8a, +0xa2, 0x8a, 0x91, 0x42, 0x00, 0xd8, 0x11, 0x00, 0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x80, 0x28, +0xa1, 0x82, 0xec, 0xd3, 0x49, 0x48, 0x80, 0x30, 0x01, 0x8a, 0x21, 0x83, 0xe2, 0x89, 0x62, 0x83, +0x20, 0x88, 0xa0, 0x83, 0x63, 0x8a, 0x9b, 0x0a, 0x9b, 0x02, 0x63, 0x82, 0xe3, 0x8b, 0x00, 0x2b, +0x0d, 0xd1, 0x04, 0x9b, 0x1b, 0x89, 0xc0, 0x18, 0xff, 0x30, 0xf5, 0x30, 0x00, 0x04, 0x00, 0x0c, +0xff, 0x23, 0xf5, 0x33, 0x98, 0x42, 0xe0, 0x83, 0x00, 0xd3, 0x03, 0x00, 0xe3, 0x83, 0x0d, 0x20, +0x01, 0xf0, 0x08, 0xf8, 0xa1, 0x8b, 0x01, 0x9a, 0x0e, 0x20, 0x01, 0xf0, 0x03, 0xf8, 0xe2, 0x8b, +0x61, 0x8a, 0x0f, 0x20, 0x00, 0xf0, 0xfe, 0xff, 0xa2, 0x6b, 0xe1, 0x6b, 0x09, 0x20, 0x00, 0xf0, +0xf9, 0xff, 0xf8, 0xf2, 0xe1, 0xfb, 0x05, 0x00, 0x20, 0x6a, 0x02, 0x9a, 0x03, 0x9b, 0x0e, 0x00, +0x40, 0x08, 0x00, 0x21, 0x80, 0x18, 0x59, 0x41, 0x40, 0x1b, 0xb1, 0x41, 0x07, 0xd2, 0x2c, 0x48, +0x40, 0x30, 0x41, 0x7c, 0x49, 0x1c, 0x41, 0x74, 0x01, 0x20, 0x09, 0xb0, 0xf0, 0xbd, 0xff, 0xf7, +0x1e, 0xff, 0x00, 0x20, 0xf9, 0xe7, 0x26, 0x48, 0x00, 0x6a, 0x70, 0x47, 0xf8, 0xb5, 0x04, 0x00, +0x00, 0x26, 0x23, 0x4d, 0x21, 0x48, 0x2a, 0x6a, 0xc1, 0x68, 0x00, 0x91, 0x80, 0x68, 0x33, 0x00, +0x07, 0x00, 0x03, 0xf3, 0xcc, 0xe8, 0x00, 0x99, 0xb8, 0x1a, 0x99, 0x41, 0x61, 0x60, 0x20, 0x60, +0x28, 0x6a, 0x22, 0x68, 0x63, 0x68, 0x31, 0x00, 0x80, 0x18, 0x59, 0x41, 0x61, 0x60, 0x20, 0x60, +0xf8, 0xf2, 0xaa, 0xfb, 0x22, 0x68, 0x63, 0x68, 0x12, 0x1a, 0x8b, 0x41, 0xf0, 0xd3, 0xf8, 0xbd, +0xfe, 0xb5, 0x05, 0x00, 0x12, 0x4e, 0x12, 0x4f, 0x20, 0x36, 0xf8, 0xf2, 0x9d, 0xfb, 0x00, 0x90, +0x0e, 0x48, 0x0c, 0x00, 0x0b, 0x00, 0xc1, 0x68, 0x00, 0x9a, 0x80, 0x68, 0x12, 0x1a, 0x8b, 0x41, +0x0b, 0xd3, 0x0a, 0x4a, 0x38, 0x6a, 0xd3, 0x68, 0x92, 0x68, 0x80, 0x01, 0x80, 0x18, 0x00, 0x9a, +0x00, 0x21, 0x59, 0x41, 0x80, 0x1a, 0xa1, 0x41, 0x06, 0xd2, 0xf8, 0xf2, 0x85, 0xfb, 0x03, 0x4a, +0xd1, 0x60, 0x90, 0x60, 0x01, 0x20, 0xf0, 0x71, 0x00, 0x24, 0x0b, 0xe0, 0x08, 0x83, 0x02, 0x00, +0x08, 0x84, 0x02, 0x00, 0x30, 0xf0, 0x00, 0xc0, 0xff, 0xff, 0x00, 0x00, 0x90, 0x05, 0x10, 0x00, +0x77, 0x91, 0x01, 0x00, 0xa3, 0x48, 0x3a, 0x6a, 0xc1, 0x68, 0x02, 0x91, 0x80, 0x68, 0x23, 0x00, +0x01, 0x90, 0x03, 0xf3, 0x7c, 0xe8, 0x01, 0x98, 0x02, 0x99, 0x82, 0x1a, 0x99, 0x41, 0x78, 0x8a, +0x0b, 0x00, 0x21, 0x00, 0x80, 0x18, 0x59, 0x41, 0x69, 0x60, 0x28, 0x60, 0xf1, 0x79, 0xb0, 0x79, +0x81, 0x42, 0x01, 0xd9, 0x00, 0x21, 0xf1, 0x71, 0xf4, 0x79, 0x00, 0x2c, 0x04, 0xd1, 0x00, 0x28, +0x01, 0xd0, 0x04, 0x00, 0x00, 0xe0, 0x01, 0x24, 0x38, 0x6a, 0x2a, 0x68, 0x60, 0x43, 0x6b, 0x68, +0x00, 0x21, 0x80, 0x18, 0x59, 0x41, 0x69, 0x60, 0x28, 0x60, 0xb4, 0x79, 0x00, 0x2c, 0x00, 0xd1, +0x01, 0x24, 0xf8, 0xf2, 0x41, 0xfb, 0x2a, 0x68, 0x6b, 0x68, 0x12, 0x1a, 0x8b, 0x41, 0xeb, 0xd3, +0xfe, 0xbd, 0xf3, 0xb5, 0x85, 0xb0, 0x05, 0x00, 0x00, 0x20, 0x01, 0x90, 0xf8, 0xf2, 0x34, 0xfb, +0x02, 0x00, 0x85, 0x48, 0x85, 0x4c, 0x00, 0x8a, 0x0b, 0x00, 0x32, 0x28, 0x02, 0xd2, 0x21, 0x6a, +0x48, 0x43, 0x00, 0xe0, 0x80, 0x02, 0x80, 0x18, 0x00, 0x21, 0x59, 0x41, 0x02, 0x90, 0x80, 0x48, +0x03, 0x91, 0x00, 0x68, 0x7f, 0x49, 0x88, 0x42, 0x03, 0xd1, 0x06, 0x98, 0x00, 0x68, 0x40, 0x08, +0x16, 0xe0, 0x05, 0x28, 0x06, 0xdc, 0x2a, 0x68, 0x02, 0x98, 0x6b, 0x68, 0x03, 0x99, 0x12, 0x1a, +0x8b, 0x41, 0x16, 0xd3, 0x28, 0x00, 0xff, 0xf7, 0x49, 0xff, 0x60, 0x8a, 0x2a, 0x68, 0x6b, 0x68, +0x00, 0x21, 0x80, 0x18, 0x59, 0x41, 0x69, 0x60, 0x28, 0x60, 0x06, 0x99, 0x20, 0x6a, 0x08, 0x60, +0x00, 0x26, 0x34, 0x00, 0x00, 0x90, 0xb4, 0x42, 0x05, 0xdd, 0x6f, 0x48, 0x01, 0x78, 0x49, 0x1c, +0x01, 0x70, 0x07, 0xb0, 0xf0, 0xbd, 0x6b, 0x68, 0x2a, 0x68, 0x02, 0x98, 0x03, 0x99, 0x84, 0x1a, +0x1f, 0x00, 0x99, 0x41, 0x00, 0x2c, 0x04, 0x92, 0x00, 0xda, 0x64, 0x42, 0x00, 0x98, 0x84, 0x42, +0xef, 0xd9, 0x06, 0x98, 0x04, 0x9a, 0x00, 0x68, 0x00, 0x21, 0x80, 0x18, 0x79, 0x41, 0x69, 0x60, +0x28, 0x60, 0x01, 0x98, 0x26, 0x00, 0x00, 0x28, 0xdd, 0xd0, 0xe2, 0xe7, 0xf8, 0xb5, 0x04, 0x00, +0x0f, 0x00, 0x5a, 0x48, 0x59, 0x4e, 0x20, 0x30, 0x80, 0x79, 0x31, 0x6a, 0x48, 0x43, 0x00, 0x90, +0x20, 0x00, 0xff, 0xf7, 0x2d, 0xff, 0x56, 0x48, 0x00, 0x25, 0x00, 0x68, 0x81, 0x1e, 0x03, 0x29, +0x09, 0xd8, 0x00, 0x99, 0x40, 0x1e, 0x48, 0x43, 0x22, 0x68, 0x63, 0x68, 0x98, 0xe6, 0xf4, 0x0f, +0x01, 0x00, 0x00, 0x00, 0x68, 0x96, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x42, 0x30, 0x03, 0x47, +0x29, 0x00, 0x80, 0x18, 0x59, 0x41, 0x61, 0x60, 0x20, 0x60, 0x4c, 0x48, 0x00, 0x8a, 0x00, 0x28, +0x03, 0xd0, 0x20, 0x00, 0x69, 0x46, 0xff, 0xf7, 0x7e, 0xff, 0x70, 0x6b, 0x00, 0x28, 0x0c, 0xd0, +0xf1, 0x6b, 0x49, 0x1c, 0xf1, 0x63, 0x05, 0x21, 0x03, 0xf3, 0x34, 0xef, 0x22, 0x68, 0x63, 0x68, +0x88, 0x02, 0x10, 0x1a, 0xab, 0x41, 0x63, 0x60, 0x20, 0x60, 0x40, 0x48, 0x80, 0x38, 0x00, 0x68, +0xff, 0x30, 0x5a, 0x30, 0x38, 0x80, 0x07, 0xe0, 0x00, 0x98, 0x22, 0x68, 0x63, 0x68, 0x29, 0x00, +0x80, 0x18, 0x59, 0x41, 0x61, 0x60, 0x20, 0x60, 0xf8, 0xf2, 0x98, 0xfa, 0x22, 0x68, 0x63, 0x68, +0x16, 0x1a, 0x8b, 0x41, 0x19, 0x00, 0x30, 0x1e, 0xa9, 0x41, 0xed, 0xdb, 0xf8, 0xbd, 0x70, 0xb5, +0x06, 0x00, 0x33, 0x49, 0x31, 0x4a, 0x20, 0x31, 0x15, 0x8a, 0x8c, 0x79, 0x00, 0x20, 0x00, 0x2d, +0x0a, 0xd0, 0x32, 0x2d, 0x02, 0xd2, 0x28, 0x06, 0x00, 0x0e, 0x05, 0xe0, 0x89, 0x88, 0x28, 0x00, +0x03, 0xf3, 0x00, 0xef, 0x00, 0x06, 0x00, 0x0e, 0x2a, 0x49, 0x09, 0x68, 0x8a, 0x1e, 0x03, 0x2a, +0x03, 0xd8, 0x4c, 0x43, 0x24, 0x06, 0x24, 0x0e, 0x06, 0xe0, 0x27, 0x4a, 0x91, 0x42, 0x02, 0xd0, +0x52, 0x1c, 0x91, 0x42, 0x00, 0xd1, 0x04, 0x00, 0x00, 0x2d, 0x02, 0xd0, 0xa0, 0x42, 0x00, 0xd2, +0x04, 0x00, 0x30, 0x78, 0xa0, 0x42, 0x01, 0xd3, 0x00, 0x1b, 0x00, 0xe0, 0x01, 0x20, 0x30, 0x70, +0x70, 0xbd, 0x1b, 0x48, 0xc0, 0x6a, 0x70, 0x47, 0x19, 0x48, 0x00, 0x6b, 0x70, 0x47, 0x70, 0xb5, +0x08, 0xf0, 0x18, 0xf8, 0x06, 0x00, 0xff, 0x21, 0x13, 0x48, 0x71, 0x31, 0x03, 0xf3, 0x1e, 0xea, +0x13, 0x48, 0x01, 0x25, 0x40, 0x30, 0x85, 0x74, 0xf8, 0xf2, 0x48, 0xfa, 0x10, 0x4c, 0xe1, 0x65, +0xa0, 0x65, 0xf1, 0xf2, 0x8d, 0xfe, 0x61, 0x66, 0x20, 0x66, 0x64, 0x21, 0x20, 0x00, 0x20, 0x30, +0x8a, 0x02, 0x81, 0x80, 0x21, 0x00, 0x0a, 0x62, 0x85, 0x71, 0x07, 0x48, 0xe2, 0x6d, 0xa1, 0x6d, +0xc2, 0x60, 0x81, 0x60, 0x30, 0x00, 0x07, 0xf0, 0xf9, 0xff, 0xa2, 0x6d, 0xe1, 0x6d, 0x0b, 0x20, +0x00, 0xf0, 0x42, 0xfe, 0x70, 0xbd, 0x00, 0x00, 0x08, 0x83, 0x02, 0x00, 0x98, 0x33, 0x01, 0xc0, +0x08, 0x84, 0x02, 0x00, 0x1c, 0xf0, 0x00, 0xc0, 0xfd, 0xff, 0x00, 0x00, 0x20, 0x77, 0x02, 0x00, +0x7c, 0xb5, 0x14, 0x00, 0x05, 0x00, 0x0e, 0x00, 0x00, 0x23, 0x0d, 0xf0, 0xa0, 0xed, 0x6b, 0x46, +0x06, 0x22, 0x31, 0x00, 0x68, 0x46, 0xdc, 0x80, 0x03, 0xf3, 0x44, 0xe9, 0x08, 0x22, 0x28, 0x00, +0x69, 0x46, 0xec, 0xf7, 0x05, 0xfe, 0x7c, 0xbd, 0x7c, 0xb5, 0x1c, 0x00, 0x05, 0x00, 0x00, 0x23, +0x0d, 0xf0, 0x8c, 0xed, 0x00, 0x21, 0x0a, 0x00, 0x68, 0x46, 0x06, 0xc0, 0x6b, 0x46, 0x07, 0x22, +0x28, 0x00, 0x69, 0x46, 0xdc, 0x80, 0xec, 0xf7, 0xf3, 0xfd, 0x7c, 0xbd, 0x10, 0xb5, 0x04, 0x00, +0x03, 0x21, 0x32, 0x30, 0x03, 0xf3, 0xec, 0xe9, 0x20, 0x00, 0x1c, 0x21, 0x35, 0x30, 0x03, 0xf3, +0xe8, 0xe9, 0x20, 0x34, 0xa0, 0x7d, 0x01, 0x21, 0x08, 0x43, 0xa0, 0x75, 0x10, 0xbd, 0x70, 0xb5, +0x04, 0x00, 0xff, 0xf7, 0xeb, 0xff, 0x20, 0x00, 0xff, 0x30, 0xff, 0x22, 0x04, 0x21, 0x95, 0x30, +0x07, 0xf0, 0xf0, 0xec, 0x20, 0x00, 0xff, 0x21, 0x54, 0x30, 0x41, 0x31, 0x05, 0x00, 0x03, 0xf3, +0xa6, 0xe9, 0xff, 0x34, 0x41, 0x34, 0x01, 0x21, 0x00, 0x20, 0x61, 0x61, 0xa0, 0x61, 0x20, 0x74, +0x28, 0x00, 0x00, 0xf3, 0x49, 0xfe, 0x70, 0xbd, 0x0b, 0x21, 0x89, 0x01, 0x70, 0xb5, 0x44, 0x18, +0xe1, 0x68, 0x00, 0x29, 0x26, 0xd1, 0x00, 0x7a, 0x00, 0x28, 0x03, 0xd0, 0x03, 0x28, 0x01, 0xd0, +0x04, 0x28, 0x1f, 0xd1, 0x07, 0xf0, 0x7e, 0xff, 0x05, 0x00, 0x98, 0x48, 0x00, 0x21, 0xff, 0x22, +0x99, 0x32, 0x4a, 0x43, 0x82, 0x58, 0x00, 0x2a, 0x0a, 0xd1, 0xff, 0x23, 0x99, 0x33, 0x59, 0x43, +0x01, 0x22, 0x0e, 0x18, 0x42, 0x50, 0x30, 0x00, 0xff, 0xf7, 0xc1, 0xff, 0xe6, 0x60, 0x02, 0xe0, +0x49, 0x1c, 0x01, 0x29, 0xeb, 0xdb, 0x28, 0x00, 0x07, 0xf0, 0x68, 0xff, 0xe0, 0x68, 0x00, 0x28, +0x00, 0xd1, 0xfe, 0xe7, 0x70, 0xbd, 0x0b, 0x21, 0x89, 0x01, 0x40, 0x18, 0xc1, 0x68, 0x00, 0x29, +0x02, 0xd0, 0x00, 0x22, 0x0a, 0x60, 0xc2, 0x60, 0x70, 0x47, 0x0a, 0x00, 0x0b, 0x21, 0x89, 0x01, +0x41, 0x18, 0x10, 0xb5, 0xc9, 0x68, 0x26, 0x31, 0xff, 0xf7, 0x6a, 0xff, 0x10, 0xbd, 0xf8, 0xb5, +0x0d, 0x00, 0x04, 0x00, 0x17, 0x00, 0x1e, 0x00, 0x40, 0x21, 0x03, 0xf3, 0x7a, 0xe9, 0x00, 0x2f, +0x01, 0xd0, 0x02, 0x20, 0x00, 0xe0, 0x01, 0x20, 0xf1, 0x8c, 0xa1, 0x72, 0x04, 0x21, 0x08, 0x43, +0x01, 0x0a, 0x23, 0x00, 0x18, 0x33, 0x20, 0x73, 0x10, 0x2d, 0x61, 0x73, 0x08, 0xd1, 0x02, 0x20, +0xe0, 0x72, 0x28, 0x0a, 0xa5, 0x75, 0x2a, 0x00, 0x31, 0x00, 0xe0, 0x75, 0x18, 0x00, 0x17, 0xe0, +0x20, 0x2d, 0x18, 0xd1, 0x01, 0x20, 0xe0, 0x72, 0x28, 0x0a, 0xa5, 0x75, 0xe0, 0x75, 0x10, 0x22, +0x31, 0x00, 0x18, 0x00, 0x03, 0xf3, 0x8e, 0xe8, 0x31, 0x00, 0x20, 0x00, 0x08, 0x22, 0x18, 0x31, +0x28, 0x30, 0x03, 0xf3, 0x88, 0xe8, 0x31, 0x00, 0x20, 0x00, 0x08, 0x22, 0x10, 0x31, 0x30, 0x30, +0x03, 0xf3, 0x80, 0xe8, 0xf8, 0xbd, 0x0d, 0x2d, 0x01, 0xd0, 0x05, 0x2d, 0xfa, 0xd1, 0x00, 0x21, +0x2a, 0x0a, 0xe1, 0x72, 0xa5, 0x73, 0x00, 0x2f, 0xe2, 0x73, 0x05, 0xd0, 0xa1, 0x72, 0x08, 0x21, +0x08, 0x43, 0x20, 0x73, 0x00, 0x0a, 0x60, 0x73, 0x2a, 0x00, 0x31, 0x00, 0x20, 0x00, 0x10, 0x30, +0xe6, 0xe7, 0x10, 0xb5, 0x90, 0xb0, 0x04, 0x00, 0x13, 0x9b, 0x12, 0x99, 0x00, 0x22, 0x68, 0x46, +0xff, 0xf7, 0xa5, 0xff, 0x20, 0x00, 0x69, 0x46, 0xf6, 0xf7, 0x4e, 0xff, 0x10, 0xb0, 0x10, 0xbd, +0xfe, 0xb5, 0x0c, 0x3a, 0x0d, 0x00, 0x14, 0x06, 0x06, 0x00, 0x24, 0x0e, 0x10, 0x21, 0x10, 0x2c, +0x00, 0xd8, 0x21, 0x00, 0x30, 0x00, 0x0a, 0x00, 0xff, 0x30, 0x29, 0x00, 0x19, 0x30, 0x08, 0x31, +0x07, 0x00, 0x03, 0xf3, 0x48, 0xe8, 0xff, 0x36, 0x01, 0x97, 0x00, 0x94, 0x76, 0x1c, 0x2b, 0x78, +0x70, 0x69, 0xaa, 0x1c, 0x09, 0x21, 0xff, 0xf7, 0xd4, 0xff, 0xfe, 0xbd, 0x10, 0xb5, 0x04, 0x00, +0x08, 0x00, 0x49, 0x79, 0xc9, 0x06, 0x10, 0xd5, 0x01, 0x00, 0x60, 0x31, 0x8a, 0x78, 0x4b, 0x78, +0x11, 0x02, 0x19, 0x43, 0x09, 0x22, 0x63, 0x30, 0x00, 0xf3, 0x8e, 0xfa, 0x00, 0x28, 0x04, 0xd0, +0x42, 0x78, 0x81, 0x1d, 0x20, 0x00, 0xff, 0xf7, 0xcb, 0xff, 0x01, 0x20, 0x10, 0xbd, 0x0b, 0x22, +0x92, 0x01, 0x80, 0x18, 0x10, 0xb5, 0xc0, 0x68, 0x35, 0x30, 0x00, 0xf3, 0x07, 0xf9, 0x10, 0xbd, +0x30, 0xb5, 0x04, 0x00, 0x91, 0xb0, 0x15, 0x00, 0x01, 0xa8, 0xff, 0xf7, 0x58, 0xff, 0x20, 0x00, +0x01, 0xa9, 0xf6, 0xf7, 0x01, 0xff, 0x09, 0x20, 0x80, 0x01, 0x20, 0x18, 0x00, 0x2d, 0x0a, 0xd0, +0x00, 0x2c, 0x06, 0xd0, 0xc0, 0x6b, 0x00, 0x28, 0x03, 0xd0, 0x80, 0x30, 0xc1, 0x88, 0x49, 0x1c, +0xc1, 0x80, 0x11, 0xb0, 0x30, 0xbd, 0x00, 0x2c, 0xfb, 0xd0, 0xc0, 0x6b, 0x32, 0x58, 0x0e, 0x38, +0x01, 0x00, 0x00, 0x00, 0x64, 0x9a, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xb6, 0x5f, 0x76, 0xf3, +0x00, 0x28, 0xf8, 0xd0, 0x80, 0x30, 0x41, 0x89, 0x49, 0x1c, 0x41, 0x81, 0xf3, 0xe7, 0x70, 0xb5, +0x05, 0x00, 0x0b, 0x20, 0x80, 0x01, 0x2c, 0x18, 0xe0, 0x68, 0x28, 0x22, 0x01, 0x00, 0xff, 0x31, +0x29, 0x31, 0xd8, 0x30, 0x03, 0xf3, 0x52, 0xe8, 0x01, 0x21, 0x28, 0x00, 0xff, 0xf7, 0xc1, 0xff, +0xe3, 0x68, 0x01, 0x00, 0xd8, 0x33, 0x01, 0x22, 0x28, 0x00, 0xff, 0xf7, 0xc3, 0xff, 0x70, 0xbd, +0xf0, 0xb5, 0x85, 0xb0, 0x0e, 0x00, 0x0b, 0x99, 0x15, 0x00, 0x0a, 0x9f, 0x0c, 0x9a, 0x04, 0x00, +0x00, 0x29, 0x02, 0xd1, 0x00, 0x20, 0x04, 0xa9, 0x04, 0x90, 0x0b, 0x20, 0x80, 0x01, 0x20, 0x18, +0x01, 0x97, 0x00, 0x93, 0x03, 0x92, 0x02, 0x91, 0xc0, 0x68, 0x2b, 0x00, 0x01, 0x00, 0xff, 0x31, +0x95, 0x31, 0x35, 0x30, 0x32, 0x00, 0xff, 0xf2, 0x0d, 0xfe, 0x05, 0xb0, 0xf0, 0xbd, 0x00, 0x00, +0xc8, 0x4d, 0x01, 0xc0, 0xf7, 0xb5, 0x88, 0xb0, 0x05, 0x00, 0x17, 0x00, 0x0b, 0xf0, 0xa8, 0xf8, +0x09, 0x99, 0x0b, 0x26, 0xb6, 0x01, 0x8c, 0x19, 0x00, 0x28, 0x01, 0xd0, 0xa8, 0x19, 0x0f, 0xe0, +0x20, 0x69, 0xff, 0x30, 0x41, 0x30, 0x80, 0x7b, 0x01, 0x28, 0x13, 0xd9, 0xe9, 0x7a, 0x06, 0x20, +0xf2, 0xf7, 0xd8, 0xf9, 0x0c, 0xe0, 0x81, 0x19, 0x49, 0x69, 0x00, 0x29, 0x04, 0xd0, 0x80, 0x19, +0x40, 0x69, 0x60, 0x61, 0x0b, 0xb0, 0xf0, 0xbd, 0xea, 0x7a, 0x06, 0x21, 0xf3, 0xf7, 0x63, 0xfb, +0x00, 0x28, 0xf0, 0xd1, 0x09, 0x98, 0x01, 0x21, 0x03, 0xf0, 0xae, 0xfe, 0x1c, 0x21, 0x01, 0xa8, +0x03, 0xf3, 0x26, 0xe8, 0x01, 0xa8, 0x02, 0xf3, 0x53, 0xfb, 0x38, 0x78, 0x6b, 0x46, 0x00, 0x25, +0x01, 0xae, 0x18, 0x73, 0xa8, 0x00, 0x80, 0x19, 0x80, 0x7a, 0x40, 0x06, 0x80, 0x0f, 0x04, 0xf3, +0x9a, 0xf9, 0x01, 0x00, 0x09, 0x98, 0x04, 0xf0, 0xc8, 0xf8, 0x6d, 0x1c, 0x2d, 0x06, 0x2d, 0x0e, +0x04, 0x2d, 0xef, 0xd3, 0x62, 0x69, 0x09, 0x98, 0x52, 0x1c, 0x01, 0xa9, 0x03, 0xf0, 0x64, 0xff, +0x00, 0x28, 0x06, 0xd0, 0xd1, 0x49, 0x60, 0x69, 0x1a, 0x22, 0x40, 0x18, 0x01, 0xa9, 0x02, 0xf3, +0x64, 0xef, 0x01, 0x22, 0x09, 0x98, 0x11, 0x00, 0x04, 0xf0, 0x96, 0xf9, 0xc2, 0xe7, 0xff, 0xb5, +0x89, 0xb0, 0x1c, 0x00, 0x05, 0x00, 0x0e, 0x00, 0x08, 0x29, 0x28, 0xd3, 0x07, 0xf0, 0xe4, 0xfd, +0x29, 0x00, 0x08, 0x31, 0x02, 0x90, 0x04, 0x91, 0x21, 0x00, 0xaa, 0x79, 0x20, 0x31, 0x8a, 0x77, +0xea, 0x79, 0xca, 0x77, 0x41, 0x31, 0x08, 0x3e, 0x08, 0x91, 0x30, 0x04, 0x03, 0x21, 0x17, 0x23, +0x09, 0x02, 0x22, 0x00, 0x5b, 0x01, 0x4a, 0x32, 0x66, 0x18, 0x00, 0x0c, 0xe5, 0x18, 0x21, 0x00, +0x40, 0x31, 0x07, 0x92, 0x06, 0x91, 0x72, 0xe0, 0x04, 0x99, 0x00, 0x1f, 0xca, 0x78, 0x8b, 0x78, +0x00, 0x04, 0x17, 0x02, 0x00, 0x0c, 0x1f, 0x43, 0x87, 0x42, 0x05, 0x90, 0x02, 0xd9, 0x00, 0x20, +0x0d, 0xb0, 0xf0, 0xbd, 0x48, 0x78, 0x0a, 0x78, 0x00, 0x02, 0x10, 0x43, 0x2e, 0x28, 0x45, 0xd0, +0x04, 0xdc, 0x01, 0x28, 0x35, 0xd0, 0x2d, 0x28, 0x51, 0xd1, 0x08, 0xe0, 0x30, 0x28, 0x44, 0xd0, +0xff, 0x38, 0x4b, 0x38, 0x4b, 0xd1, 0x1a, 0x20, 0x88, 0x70, 0x00, 0x20, 0xc8, 0x70, 0x2d, 0x20, +0x28, 0x76, 0xc8, 0x78, 0x8a, 0x78, 0x00, 0x02, 0x10, 0x43, 0x68, 0x76, 0xa3, 0x48, 0x3a, 0x00, +0xa7, 0x38, 0x09, 0x1d, 0x20, 0x18, 0x02, 0xf3, 0x08, 0xef, 0xe0, 0x68, 0x80, 0x21, 0x88, 0x43, +0xa9, 0x7e, 0x1c, 0x22, 0x89, 0x07, 0xc9, 0x0f, 0xc9, 0x01, 0x08, 0x43, 0x60, 0x21, 0x08, 0x43, +0xe0, 0x60, 0x5f, 0x20, 0xc0, 0x00, 0x21, 0x18, 0x08, 0x98, 0x02, 0xf3, 0xf6, 0xee, 0xe8, 0x78, +0xfb, 0x21, 0x08, 0x40, 0xa9, 0x7e, 0x89, 0x07, 0xc9, 0x0f, 0x89, 0x00, 0x08, 0x43, 0xe8, 0x70, +0x1d, 0xe0, 0x0e, 0x20, 0x0e, 0x2f, 0x00, 0xd2, 0x38, 0x00, 0x02, 0x06, 0x06, 0x98, 0x12, 0x0e, +0x02, 0x76, 0x07, 0x98, 0x09, 0x1d, 0x02, 0xf3, 0xe0, 0xee, 0x10, 0xe0, 0x2e, 0x20, 0x30, 0x75, +0x01, 0x20, 0x70, 0x75, 0x08, 0x79, 0xb0, 0x75, 0x09, 0xe0, 0xe0, 0x68, 0x04, 0x22, 0x10, 0x43, +0xe0, 0x60, 0x09, 0x7e, 0xc9, 0x09, 0x02, 0xd0, 0x51, 0x03, 0x08, 0x43, 0xe0, 0x60, 0x05, 0x98, +0x04, 0x99, 0xc0, 0x1b, 0x00, 0x04, 0x00, 0x0c, 0xc9, 0x19, 0x09, 0x1d, 0x04, 0x91, 0x04, 0x28, +0x8a, 0xd2, 0x28, 0x7e, 0x2d, 0x28, 0x0f, 0xd1, 0x30, 0x7d, 0x00, 0x28, 0x0c, 0xd1, 0x2e, 0x20, +0x30, 0x75, 0x01, 0x21, 0x00, 0x20, 0x71, 0x75, 0x6b, 0x46, 0x03, 0x90, 0x18, 0x7b, 0x08, 0x43, +0x0e, 0x21, 0x08, 0x43, 0x03, 0x90, 0xb0, 0x75, 0x06, 0x98, 0x01, 0x7e, 0x00, 0x29, 0x1e, 0xd0, +0xe0, 0x68, 0x00, 0x22, 0x80, 0x06, 0x00, 0xd5, 0x08, 0x9a, 0x00, 0x92, 0x00, 0x22, 0x07, 0x98, +0x13, 0x00, 0xfc, 0xf2, 0xa9, 0xfa, 0x01, 0x00, 0x20, 0x00, 0x0d, 0xf0, 0xf6, 0xea, 0x06, 0x99, +0x03, 0x00, 0x0a, 0x7e, 0x07, 0x99, 0x20, 0x00, 0x0d, 0xf0, 0xf2, 0xea, 0x20, 0x00, 0xfa, 0xf7, +0x9b, 0xfe, 0x20, 0x00, 0xfa, 0xf7, 0x4b, 0xfe, 0x20, 0x00, 0xfa, 0xf7, 0x20, 0xfe, 0x30, 0x7d, +0x00, 0x28, 0x0b, 0xd0, 0x01, 0x21, 0x20, 0x00, 0xf3, 0xf7, 0x7c, 0xfc, 0x5f, 0x48, 0x21, 0x00, +0x8b, 0x38, 0x22, 0x18, 0x0b, 0x98, 0xff, 0xf7, 0xc5, 0xfe, 0x03, 0xe0, 0x00, 0x21, 0x20, 0x00, +0xf3, 0xf7, 0x70, 0xfc, 0xb0, 0x8b, 0xf0, 0x83, 0x02, 0x98, 0x07, 0xf0, 0x09, 0xfd, 0x01, 0x20, +0x46, 0xe7, 0x50, 0x21, 0x10, 0xb5, 0x02, 0xf3, 0x0c, 0xef, 0x10, 0xbd, 0xf7, 0xb5, 0x0c, 0x00, +0x07, 0x00, 0x00, 0x25, 0x01, 0x26, 0x02, 0x2a, 0x06, 0xd3, 0x92, 0x1e, 0x10, 0x04, 0x00, 0x0c, +0x02, 0x90, 0x38, 0x7a, 0x00, 0x28, 0x04, 0xd0, 0x30, 0x0a, 0xa6, 0x70, 0xe0, 0x70, 0x01, 0x20, +0xfe, 0xbd, 0x20, 0x1d, 0x0a, 0xf0, 0xdd, 0xfe, 0x61, 0x78, 0x22, 0x78, 0x09, 0x02, 0x11, 0x43, +0x04, 0x22, 0x00, 0x29, 0x39, 0xd0, 0x01, 0x29, 0x12, 0xd0, 0x02, 0x29, 0x40, 0xd1, 0x00, 0x28, +0x03, 0xd1, 0x11, 0x0a, 0xa2, 0x70, 0x01, 0x25, 0xe1, 0x70, 0x03, 0x00, 0x02, 0x99, 0x3a, 0x00, +0x20, 0x1d, 0xff, 0xf7, 0xe4, 0xfe, 0x00, 0x28, 0x30, 0xd1, 0x30, 0x0a, 0xa6, 0x70, 0x2b, 0xe0, +0x0b, 0x21, 0x89, 0x01, 0x7e, 0x18, 0x31, 0x69, 0xff, 0x31, 0x41, 0x31, 0x89, 0x7b, 0x02, 0x29, +0x03, 0xd1, 0x02, 0x20, 0xa0, 0x70, 0x00, 0x0a, 0x1e, 0xe0, 0x00, 0x28, 0x01, 0xd0, 0x03, 0x20, +0xf8, 0xe7, 0x39, 0x00, 0x20, 0x1d, 0xf2, 0xf7, 0xdc, 0xff, 0x00, 0x28, 0x01, 0xd1, 0x05, 0x20, +0xf0, 0xe7, 0x31, 0x69, 0xff, 0x31, 0x41, 0x31, 0x8a, 0x7b, 0x52, 0x1c, 0x8a, 0x73, 0xc1, 0x68, +0x01, 0x22, 0x12, 0x03, 0x11, 0x43, 0xc1, 0x60, 0x08, 0xe0, 0x00, 0x28, 0x02, 0xd0, 0xf3, 0xf7, +0xed, 0xf8, 0x03, 0xe0, 0x10, 0x0a, 0xa2, 0x70, 0x01, 0x25, 0xe0, 0x70, 0x28, 0x00, 0xfe, 0xbd, +0x06, 0x20, 0xd7, 0xe7, 0xfe, 0xb5, 0x03, 0x22, 0x12, 0x02, 0x00, 0x27, 0x08, 0x99, 0x14, 0x9d, +0x15, 0x98, 0xc9, 0x07, 0xac, 0x18, 0x00, 0x29, 0x03, 0xd1, 0x67, 0x83, 0xfa, 0xc7, 0x12, 0x60, +0x01, 0x00, 0x00, 0x00, 0x60, 0x9e, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xe5, 0x85, 0xa5, 0x9f, +0xa0, 0x8b, 0xe0, 0x83, 0xfe, 0xbd, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, 0xe0, 0x83, 0x60, 0x8b, +0x40, 0x1c, 0x00, 0x04, 0x00, 0x0c, 0x04, 0x28, 0x60, 0x83, 0xf3, 0xd3, 0xe9, 0x7a, 0x00, 0x20, +0xf2, 0xf7, 0x22, 0xf8, 0x06, 0x00, 0xff, 0x35, 0x4a, 0x35, 0x64, 0x22, 0x52, 0x23, 0x69, 0x46, +0x01, 0xa8, 0xe7, 0x83, 0xeb, 0xf7, 0xcd, 0xfa, 0x00, 0x28, 0xe3, 0xd0, 0x00, 0x9b, 0x03, 0x20, +0x10, 0x33, 0x18, 0x70, 0x00, 0x20, 0x58, 0x70, 0x19, 0x20, 0x18, 0x72, 0x00, 0x20, 0x58, 0x72, +0x06, 0x22, 0x29, 0x00, 0x98, 0x1c, 0x02, 0xf3, 0xd2, 0xed, 0x00, 0x99, 0x0a, 0x20, 0x88, 0x72, +0x00, 0x20, 0xc8, 0x72, 0x01, 0x99, 0x30, 0x00, 0xeb, 0xf7, 0x7e, 0xfa, 0xfe, 0xbd, 0x00, 0x00, +0xa1, 0x03, 0x00, 0x00, 0x10, 0xb5, 0xf5, 0xf7, 0x5e, 0xfd, 0x49, 0x4c, 0x02, 0xe0, 0x60, 0x70, +0xf5, 0xf7, 0x59, 0xfd, 0x61, 0x78, 0x22, 0x78, 0x8b, 0x1a, 0x83, 0x42, 0xf7, 0xdc, 0x89, 0x18, +0x81, 0x42, 0xf4, 0xd3, 0x60, 0x70, 0x10, 0xbd, 0xf8, 0xb5, 0xff, 0xf7, 0xeb, 0xff, 0x40, 0x4e, +0x3f, 0x4d, 0x07, 0x00, 0x00, 0x24, 0x18, 0x36, 0xa0, 0x00, 0x32, 0x58, 0x00, 0x2a, 0x02, 0xd0, +0xa9, 0x68, 0x38, 0x00, 0x90, 0x47, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x02, 0x2c, 0xf3, 0xd3, +0xf7, 0xf2, 0x68, 0xfe, 0x69, 0x61, 0x28, 0x61, 0x00, 0x20, 0xa8, 0x60, 0xf8, 0xbd, 0xe3, 0xe7, +0x38, 0xb5, 0xf7, 0xf2, 0x5f, 0xfe, 0x32, 0x4c, 0x61, 0x61, 0x20, 0x61, 0x31, 0x48, 0x00, 0xf3, +0x97, 0xfb, 0x60, 0x68, 0x0a, 0x21, 0x03, 0xf3, 0xda, 0xea, 0x02, 0x04, 0x12, 0x0c, 0x00, 0x92, +0x2d, 0x4a, 0x2c, 0x48, 0x01, 0x21, 0x00, 0x23, 0x00, 0xf3, 0xe2, 0xfb, 0x38, 0xbd, 0x28, 0x48, +0x00, 0x21, 0x41, 0x70, 0x01, 0x21, 0x81, 0x60, 0x70, 0x47, 0x70, 0xb5, 0x00, 0x28, 0x25, 0xd0, +0x23, 0x4b, 0x02, 0x21, 0x00, 0x24, 0x18, 0x33, 0xa2, 0x00, 0x9a, 0x58, 0x82, 0x42, 0x07, 0xd0, +0x00, 0x2a, 0x02, 0xd1, 0x02, 0x29, 0x00, 0xd1, 0x21, 0x00, 0x64, 0x1c, 0x02, 0x2c, 0xf3, 0xdb, +0x02, 0x2c, 0x0d, 0xd1, 0x02, 0x29, 0x11, 0xd0, 0x0c, 0x00, 0x19, 0x4d, 0x89, 0x00, 0x58, 0x50, +0xa8, 0x78, 0x00, 0x28, 0x01, 0xd1, 0xff, 0xf7, 0xc3, 0xff, 0xa8, 0x78, 0x40, 0x1c, 0xa8, 0x70, +0x02, 0x2c, 0x03, 0xda, 0xff, 0xf7, 0xd3, 0xff, 0xff, 0xf7, 0x9e, 0xff, 0x70, 0xbd, 0x70, 0xb5, +0x00, 0x28, 0x15, 0xd0, 0x0e, 0x4c, 0xa3, 0x78, 0x00, 0x2b, 0x11, 0xd0, 0x00, 0x21, 0x22, 0x00, +0x18, 0x32, 0x8d, 0x00, 0x55, 0x59, 0x85, 0x42, 0x0b, 0xd1, 0x00, 0x20, 0x89, 0x00, 0x5b, 0x1e, +0x50, 0x50, 0x18, 0x06, 0x00, 0x0e, 0xa0, 0x70, 0x02, 0xd1, 0x06, 0x48, 0x00, 0xf3, 0xb0, 0xfb, +0x70, 0xbd, 0x49, 0x1c, 0x09, 0x06, 0x09, 0x0e, 0x02, 0x29, 0xea, 0xd3, 0x70, 0xbd, 0x00, 0x00, +0x88, 0xf5, 0x00, 0xc0, 0x60, 0x4f, 0x01, 0xc0, 0x2f, 0x9f, 0x01, 0x00, 0x70, 0xb5, 0x42, 0x88, +0x8a, 0x42, 0x02, 0xdd, 0x00, 0x21, 0x41, 0x5e, 0x26, 0xe0, 0xc2, 0x89, 0x8a, 0x42, 0x09, 0xda, +0x0c, 0x24, 0x08, 0x23, 0x04, 0x5f, 0xc3, 0x5e, 0x45, 0x89, 0xe0, 0x1a, 0x89, 0x1a, 0x48, 0x43, +0x51, 0x1b, 0x16, 0xe0, 0x00, 0x22, 0x93, 0x00, 0x1b, 0x18, 0x5c, 0x88, 0x8c, 0x42, 0x02, 0xdc, +0xdb, 0x88, 0x8b, 0x42, 0x02, 0xda, 0x52, 0x1c, 0x03, 0x2a, 0xf4, 0xdb, 0x94, 0x00, 0x22, 0x18, +0x04, 0x23, 0xd3, 0x5e, 0xd5, 0x88, 0x04, 0x5f, 0x52, 0x88, 0x18, 0x1b, 0x89, 0x1a, 0x48, 0x43, +0xa9, 0x1a, 0x02, 0xf3, 0x5e, 0xee, 0x21, 0x18, 0x08, 0x04, 0x00, 0x14, 0x70, 0xbd, 0xff, 0xb5, +0x81, 0xb0, 0x00, 0x20, 0x00, 0x90, 0x02, 0x99, 0x01, 0x98, 0xf8, 0xf7, 0xc1, 0xff, 0x07, 0x00, +0x02, 0x99, 0x01, 0x98, 0xf8, 0xf7, 0xaf, 0xff, 0x40, 0x06, 0x41, 0x16, 0x02, 0x98, 0x7c, 0x18, +0x14, 0x21, 0x41, 0x43, 0xdf, 0x48, 0x14, 0x23, 0x09, 0x18, 0x01, 0x98, 0x58, 0x43, 0x0d, 0x18, +0xe0, 0x1b, 0xac, 0x71, 0xe8, 0x71, 0x0b, 0x98, 0x01, 0x28, 0x68, 0x7b, 0x02, 0xd1, 0x08, 0x21, +0x08, 0x43, 0x01, 0xe0, 0xf7, 0x21, 0x08, 0x40, 0x68, 0x73, 0x0c, 0x21, 0x20, 0x00, 0x02, 0xf3, +0x30, 0xee, 0x06, 0x00, 0x02, 0x99, 0x01, 0x98, 0xf8, 0xf7, 0x9e, 0xff, 0x00, 0x07, 0x00, 0x17, +0x28, 0x73, 0x03, 0x99, 0x20, 0x18, 0x44, 0x18, 0x04, 0x98, 0x84, 0x42, 0x01, 0xdd, 0x04, 0x9c, +0x03, 0xe0, 0x0a, 0x98, 0x84, 0x42, 0x00, 0xda, 0x0a, 0x9c, 0x0c, 0x21, 0x20, 0x00, 0x02, 0xf3, +0x18, 0xee, 0x01, 0x00, 0x86, 0x42, 0x20, 0xd0, 0xb1, 0x42, 0x04, 0xdd, 0x0c, 0x20, 0x70, 0x43, +0x20, 0x1a, 0x0b, 0x38, 0x02, 0xe0, 0x0c, 0x20, 0x70, 0x43, 0x20, 0x1a, 0xc1, 0x4a, 0x0c, 0x3a, +0x92, 0x5d, 0x12, 0x18, 0x92, 0x1c, 0x04, 0x2a, 0x0f, 0xd8, 0x07, 0x22, 0xd2, 0x43, 0x90, 0x42, +0x0b, 0xdb, 0x07, 0x28, 0x09, 0xdc, 0xb1, 0x42, 0x02, 0xda, 0x0c, 0x21, 0x71, 0x43, 0x02, 0xe0, +0x0c, 0x21, 0x71, 0x43, 0x0b, 0x31, 0x06, 0x00, 0x01, 0xe0, 0x21, 0x00, 0x00, 0x26, 0xc8, 0x1b, +0x3f, 0x28, 0xa9, 0x73, 0x01, 0xdd, 0x3f, 0x20, 0x04, 0xe0, 0x3f, 0x21, 0xc9, 0x43, 0x88, 0x42, +0x00, 0xda, 0x08, 0x00, 0x02, 0x06, 0xe8, 0x73, 0x02, 0x99, 0x01, 0x98, 0x12, 0x0e, 0xf8, 0xf7, +0x7a, 0xfd, 0x36, 0x07, 0x36, 0x0f, 0x02, 0x99, 0x01, 0x98, 0x32, 0x00, 0xf8, 0xf7, 0x48, 0xfd, +0x2e, 0x74, 0x0b, 0x98, 0x00, 0x28, 0x0b, 0xd0, 0x01, 0x99, 0x02, 0x98, 0xf8, 0xf7, 0xf2, 0xfc, +0x00, 0x1b, 0xc1, 0x1c, 0x07, 0x29, 0x02, 0xd3, 0x01, 0x21, 0x00, 0x91, 0xac, 0x74, 0xe8, 0x74, +0x00, 0x98, 0x05, 0xb0, 0xf0, 0xbd, 0xf0, 0xb5, 0x8d, 0xb0, 0x9f, 0x48, 0x42, 0x78, 0x52, 0x1c, +0x42, 0x70, 0x82, 0x88, 0x00, 0x2a, 0x02, 0xd0, 0x02, 0x78, 0x00, 0x2a, 0x01, 0xd0, 0x00, 0x29, +0x7c, 0xd0, 0x99, 0x49, 0x88, 0x78, 0x40, 0x1c, 0x88, 0x70, 0x07, 0xf0, 0xdf, 0xfa, 0x04, 0x90, +0x00, 0x20, 0x05, 0x90, 0xf8, 0xf7, 0x3f, 0xfe, 0x04, 0x00, 0xf8, 0xf7, 0x42, 0xfe, 0x05, 0x00, +0xf8, 0xf7, 0x3c, 0xfe, 0x22, 0x00, 0x29, 0x00, 0xf8, 0xf7, 0x77, 0xf9, 0x01, 0x25, 0x06, 0x90, +0xf8, 0xf7, 0x34, 0xfe, 0x01, 0x28, 0x04, 0xd1, 0x01, 0x2d, 0x00, 0xdb, 0x7e, 0xdd, 0xff, 0x2d, +0x7c, 0xd0, 0xf8, 0xf7, 0x2e, 0xfe, 0x01, 0x28, 0x01, 0xd1, 0x08, 0x2d, 0x77, 0xda, 0x01, 0x20, +0x06, 0x99, 0xa8, 0x40, 0x08, 0x40, 0x14, 0x21, 0x69, 0x43, 0x0c, 0x90, 0x81, 0x48, 0x00, 0x26, +0x08, 0x18, 0x0b, 0x90, 0x28, 0x06, 0x00, 0x0e, 0x0a, 0x90, 0x14, 0x27, 0x77, 0x43, 0x0b, 0x99, +0xcc, 0x19, 0x60, 0x70, 0x0c, 0x98, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x20, 0x07, 0x90, 0x07, 0x9a, +0x0a, 0x99, 0x30, 0x00, 0xf8, 0xf7, 0x35, 0xff, 0x00, 0x28, 0x60, 0x7b, 0x01, 0xd1, 0x02, 0x21, +0x0f, 0xe0, 0xfd, 0x21, 0x08, 0x40, 0x60, 0x73, 0x0a, 0x99, 0x30, 0x00, 0xf8, 0xf7, 0xb4, 0xfe, +0x0a, 0x9a, 0x31, 0x00, 0x09, 0x90, 0xf8, 0xf7, 0x45, 0xff, 0x00, 0x28, 0x21, 0xdb, 0x5e, 0xcf, +0x01, 0x00, 0x00, 0x00, 0x5c, 0xa2, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xcd, 0x14, 0x20, 0x22, +0x60, 0x7b, 0x03, 0xd0, 0x01, 0x21, 0x08, 0x43, 0x60, 0x73, 0x89, 0xe0, 0x40, 0x08, 0x40, 0x00, +0x60, 0x73, 0x09, 0x98, 0x60, 0x80, 0x60, 0x7c, 0x40, 0x1c, 0x60, 0x74, 0x0b, 0x98, 0xc6, 0x55, +0x0a, 0x98, 0x05, 0xf0, 0xab, 0xf8, 0x07, 0x00, 0xf8, 0xf7, 0xe2, 0xfd, 0x3f, 0x06, 0x01, 0x90, +0x0a, 0x98, 0x3f, 0x0e, 0x05, 0xf0, 0x54, 0xf8, 0x02, 0x90, 0x0a, 0x98, 0x05, 0xf0, 0x42, 0xf8, +0x03, 0x90, 0xfa, 0xf7, 0xf2, 0xfb, 0x00, 0x28, 0x03, 0xd0, 0x5c, 0x48, 0x48, 0x30, 0x02, 0xe0, +0x7a, 0xe0, 0x5a, 0x48, 0x08, 0x30, 0x03, 0x99, 0x03, 0x29, 0x01, 0xd1, 0x39, 0x01, 0x0b, 0xe0, +0x01, 0x99, 0x00, 0x29, 0x00, 0xd0, 0x01, 0x21, 0x02, 0x9a, 0x89, 0x18, 0x49, 0x00, 0xc9, 0x19, +0x89, 0x1c, 0x89, 0x06, 0x09, 0x0e, 0x89, 0x00, 0x08, 0x18, 0x09, 0x99, 0xff, 0xf7, 0x98, 0xfe, +0x07, 0x00, 0x30, 0x00, 0xf8, 0xf7, 0x2a, 0xfe, 0x60, 0x81, 0x38, 0x18, 0x00, 0x04, 0x01, 0xe0, +0x4d, 0xe0, 0x50, 0xe0, 0x00, 0x14, 0x08, 0x90, 0xa0, 0x80, 0x0a, 0x98, 0x04, 0xf0, 0xfb, 0xff, +0x07, 0x01, 0xfa, 0xf7, 0x2a, 0xfc, 0x00, 0x28, 0x07, 0xd0, 0xfa, 0xf7, 0xd6, 0xfb, 0x0d, 0x28, +0x03, 0xd1, 0xfa, 0xf7, 0xea, 0xfb, 0xc0, 0x00, 0xc7, 0x19, 0xf8, 0x17, 0x00, 0x0f, 0xc0, 0x19, +0x00, 0x11, 0x20, 0x81, 0x08, 0x98, 0x03, 0x21, 0x38, 0x1a, 0x00, 0x28, 0x00, 0xdc, 0x89, 0x1f, +0x08, 0x18, 0xc1, 0x17, 0x49, 0x0f, 0x08, 0x18, 0x38, 0x49, 0x40, 0x03, 0xc9, 0x88, 0x00, 0x14, +0x00, 0x29, 0x1d, 0xd0, 0x07, 0x9a, 0x00, 0x21, 0x01, 0x92, 0x02, 0x00, 0x00, 0x91, 0x0a, 0x99, +0x30, 0x00, 0x7f, 0x23, 0xff, 0xf7, 0x8d, 0xfe, 0x01, 0x00, 0x05, 0x9a, 0xa9, 0x40, 0x11, 0x43, +0x09, 0x04, 0x09, 0x0c, 0x05, 0x91, 0x61, 0x7b, 0xfb, 0x22, 0x11, 0x40, 0xc2, 0x07, 0x52, 0x0f, +0x11, 0x43, 0x02, 0x06, 0x61, 0x73, 0x0a, 0x99, 0x12, 0x0e, 0x30, 0x00, 0xf8, 0xf7, 0x77, 0xfe, +0x76, 0x1c, 0x36, 0x06, 0x36, 0x0e, 0x01, 0x2e, 0x01, 0xd2, 0x0a, 0x98, 0x47, 0xe7, 0x6d, 0x1c, +0x0b, 0x2d, 0x00, 0xda, 0x26, 0xe7, 0x05, 0x98, 0x00, 0x28, 0x02, 0xd0, 0x05, 0x98, 0xf8, 0xf7, +0x81, 0xfb, 0x04, 0x98, 0x07, 0xf0, 0xf0, 0xf9, 0x0d, 0xb0, 0xf0, 0xbd, 0x70, 0xb5, 0x00, 0x25, +0x1a, 0x4e, 0x00, 0x28, 0xb1, 0x88, 0x0f, 0xd0, 0x00, 0x29, 0x0c, 0xd1, 0x00, 0x24, 0x20, 0x21, +0x20, 0x00, 0xf8, 0xf7, 0x9b, 0xfd, 0x64, 0x1c, 0x01, 0x2c, 0xf8, 0xdb, 0x14, 0x48, 0xff, 0xf7, +0xce, 0xfd, 0x01, 0x20, 0xb0, 0x80, 0x70, 0xbd, 0x00, 0x29, 0xfc, 0xd0, 0x10, 0x48, 0xff, 0xf7, +0xf0, 0xfd, 0x00, 0x20, 0xb0, 0x80, 0x00, 0x24, 0x00, 0x22, 0x21, 0x00, 0x28, 0x00, 0xf8, 0xf7, +0x34, 0xfc, 0x00, 0x22, 0x21, 0x00, 0x28, 0x00, 0xf8, 0xf7, 0x04, 0xfc, 0x64, 0x1c, 0x24, 0x06, +0x24, 0x0e, 0x10, 0x2c, 0xf0, 0xd3, 0x28, 0x00, 0xf8, 0xf7, 0x1c, 0xfe, 0x6d, 0x1c, 0x2d, 0x06, +0x2d, 0x0e, 0x01, 0x2d, 0xe7, 0xd3, 0x70, 0xbd, 0x84, 0x4f, 0x01, 0xc0, 0xa8, 0xf5, 0x00, 0xc0, +0x97, 0xa1, 0x01, 0x00, 0x70, 0x47, 0x00, 0x20, 0x70, 0x47, 0x00, 0x00, 0x38, 0xb5, 0x6b, 0xa1, +0x09, 0x68, 0x00, 0x91, 0x00, 0x24, 0x04, 0x22, 0x69, 0x46, 0x06, 0xf0, 0xc5, 0xfe, 0x00, 0x28, +0x00, 0xd1, 0x07, 0x24, 0x20, 0x00, 0x38, 0xbd, 0x7c, 0xb5, 0x00, 0x24, 0x05, 0x00, 0x64, 0xa0, +0x00, 0x68, 0x01, 0x90, 0x63, 0xa0, 0x00, 0x68, 0x00, 0x90, 0x04, 0x22, 0x28, 0x00, 0x69, 0x46, +0x06, 0xf0, 0xb2, 0xfe, 0x00, 0x28, 0x01, 0xd1, 0x09, 0x24, 0x07, 0xe0, 0x04, 0x22, 0x28, 0x00, +0x01, 0xa9, 0x06, 0xf0, 0xa9, 0xfe, 0x00, 0x28, 0x00, 0xd1, 0x08, 0x24, 0x20, 0x00, 0x7c, 0xbd, +0x38, 0xb5, 0x59, 0xa1, 0x09, 0x68, 0x00, 0x91, 0x00, 0x24, 0x04, 0x22, 0x69, 0x46, 0x06, 0xf0, +0x9b, 0xfe, 0x00, 0x28, 0x00, 0xd1, 0x04, 0x24, 0x20, 0x00, 0x38, 0xbd, 0x70, 0xb5, 0x04, 0x00, +0x0d, 0x00, 0x16, 0x00, 0x54, 0x21, 0x10, 0x00, 0x02, 0xf3, 0x76, 0xeb, 0x25, 0xe0, 0x60, 0x78, +0x80, 0x1c, 0xa8, 0x42, 0x23, 0xdc, 0x20, 0x78, 0x44, 0x28, 0x01, 0xd1, 0xf4, 0x64, 0x17, 0xe0, +0x31, 0x00, 0x20, 0x00, 0x00, 0xf3, 0xec, 0xf9, 0x00, 0x28, 0x11, 0xd1, 0x20, 0x78, 0xdd, 0x28, +0x0e, 0xd1, 0xa0, 0x1c, 0xff, 0xf7, 0xd4, 0xff, 0x00, 0x28, 0x00, 0xd0, 0xb4, 0x64, 0x20, 0x78, +0xdd, 0x28, 0x05, 0xd1, 0xa0, 0x1c, 0xff, 0xf7, 0xa1, 0xff, 0x00, 0x28, 0x00, 0xd0, 0x34, 0x65, +0x60, 0x78, 0xa4, 0x1c, 0x2d, 0x1a, 0xad, 0x1e, 0x04, 0x19, 0x00, 0x2d, 0xd7, 0xd1, 0x28, 0x00, +0x70, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x01, 0x20, 0x0e, 0x00, 0x00, 0x90, 0x15, 0x00, 0x44, 0x21, +0x10, 0x00, 0x02, 0xf3, 0x42, 0xeb, 0x2b, 0xe0, 0x67, 0x78, 0x20, 0x78, 0xb9, 0x1c, 0x8e, 0x42, +0x02, 0xda, 0x00, 0x20, 0x00, 0x90, 0x26, 0xe0, 0x33, 0x28, 0x25, 0xd0, 0x36, 0x28, 0x1b, 0xd0, +0x29, 0x00, 0x20, 0x00, 0x00, 0xf3, 0x26, 0xfa, 0x00, 0x28, 0x15, 0xd1, 0x68, 0x6b, 0x00, 0x28, +0x02, 0xd0, 0x28, 0x6b, 0x00, 0x28, 0x0f, 0xd1, 0xa0, 0x1c, 0xff, 0xf7, 0x7d, 0xff, 0x08, 0x28, +0x14, 0xd0, 0x09, 0x28, 0x08, 0xd1, 0x28, 0x6b, 0x00, 0x28, 0x05, 0xd1, 0x3d, 0x20, 0x20, 0x71, +0x18, 0x20, 0x60, 0x71, 0x20, 0x1d, 0x28, 0x63, 0xf6, 0x1b, 0xb6, 0x1e, 0xe4, 0x19, 0xa4, 0x1c, +0x00, 0x2e, 0xd1, 0xd1, 0x00, 0x98, 0xf8, 0xbd, 0xec, 0x60, 0xf5, 0xe7, 0x68, 0x6b, 0x00, 0x28, +0xf2, 0xd1, 0x2d, 0x20, 0x20, 0x71, 0x1c, 0x20, 0x60, 0x71, 0x20, 0x1d, 0x68, 0x63, 0xeb, 0xe7, +0x7c, 0xb5, 0x06, 0x00, 0x00, 0x20, 0x0d, 0x00, 0x04, 0x00, 0x00, 0x29, 0x01, 0x90, 0x00, 0x90, +0x00, 0xd1, 0x7c, 0xbd, 0x28, 0x00, 0xfe, 0xf7, 0x73, 0xfe, 0xff, 0x36, 0x41, 0x36, 0x31, 0x8a, +0x28, 0x00, 0x01, 0xaa, 0x6b, 0x46, 0x00, 0xf3, 0x48, 0xfa, 0x00, 0x28, 0x0b, 0xd0, 0x01, 0x98, +0x00, 0x28, 0x00, 0xd0, 0x09, 0x48, 0x00, 0x99, 0x00, 0x29, 0x02, 0xd0, 0x07, 0x4c, 0xe4, 0x1f, +0x00, 0xe0, 0x00, 0x24, 0x04, 0x43, 0x20, 0x00, 0x7c, 0xbd, 0x00, 0x00, 0x50, 0x6f, 0x9a, 0x09, +0x00, 0x90, 0x4c, 0x33, 0x00, 0x90, 0x4c, 0x34, 0x00, 0x50, 0xf2, 0x04, 0x09, 0x80, 0x00, 0x00, +0x70, 0x47, 0x10, 0xb5, 0x04, 0x00, 0x4a, 0x49, 0x4a, 0x48, 0x00, 0x22, 0x02, 0xf3, 0xb8, 0xff, +0x00, 0x28, 0x02, 0xd0, 0x1c, 0x21, 0x44, 0x61, 0x01, 0x81, 0x10, 0xbd, 0x01, 0x89, 0x90, 0x30, +0x08, 0x18, 0x70, 0x47, 0xff, 0xb5, 0x83, 0xb0, 0x16, 0x00, 0x0f, 0x00, 0x03, 0x98, 0x40, 0x69, +0x01, 0x90, 0x03, 0x98, 0x01, 0x89, 0x0d, 0x18, 0x2c, 0x00, 0x70, 0x34, 0x70, 0x21, 0x28, 0x00, +0x02, 0xf3, 0xb2, 0xea, 0xec, 0x65, 0x06, 0x98, 0x20, 0x80, 0x28, 0x00, 0x60, 0x30, 0x30, 0x21, +0x02, 0x90, 0x41, 0x72, 0x1e, 0x21, 0xa0, 0x1c, 0x02, 0xf3, 0xd0, 0xea, 0xa0, 0x78, 0xf3, 0x21, +0x08, 0x40, 0x08, 0x30, 0x00, 0x07, 0x00, 0x0f, 0x31, 0x01, 0x08, 0x43, 0xef, 0x3d, 0x96, 0xea, +0x01, 0x00, 0x00, 0x00, 0x58, 0xa6, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x9e, 0xce, 0xf3, 0x4e, +0xa0, 0x70, 0x01, 0x98, 0x0b, 0x22, 0x92, 0x01, 0x86, 0x18, 0x39, 0x78, 0x30, 0x79, 0x81, 0x42, +0x13, 0xd1, 0x78, 0x78, 0x71, 0x79, 0x88, 0x42, 0x0f, 0xd1, 0xb8, 0x78, 0xb1, 0x79, 0x88, 0x42, +0x0b, 0xd1, 0xf8, 0x78, 0xf1, 0x79, 0x88, 0x42, 0x07, 0xd1, 0x38, 0x79, 0x31, 0x7a, 0x88, 0x42, +0x03, 0xd1, 0x78, 0x79, 0x71, 0x7a, 0x88, 0x42, 0x0c, 0xd0, 0xe0, 0x78, 0x01, 0x21, 0x08, 0x43, +0xe0, 0x70, 0x01, 0x99, 0x06, 0x22, 0x7e, 0x31, 0xa0, 0x1d, 0x02, 0xf3, 0xdc, 0xe9, 0x06, 0x22, +0x39, 0x00, 0x07, 0xe0, 0x06, 0x22, 0x39, 0x00, 0xa0, 0x1d, 0x02, 0xf3, 0xd4, 0xe9, 0x01, 0x99, +0x06, 0x22, 0x7e, 0x31, 0x20, 0x00, 0x12, 0x30, 0x02, 0xf3, 0xcc, 0xe9, 0x01, 0x98, 0xb1, 0x21, +0x89, 0x00, 0x41, 0x18, 0x20, 0x00, 0x06, 0x22, 0x0c, 0x30, 0x02, 0xf3, 0xc4, 0xe9, 0x02, 0x98, +0x00, 0x21, 0x01, 0x72, 0x01, 0x98, 0xf9, 0xf7, 0x86, 0xfa, 0xa8, 0x70, 0xa9, 0x68, 0x01, 0x22, +0x12, 0x03, 0x11, 0x43, 0xa9, 0x60, 0xe8, 0x68, 0x1f, 0x23, 0x1b, 0x02, 0x98, 0x43, 0xe8, 0x60, +0x33, 0x69, 0x40, 0x33, 0x1b, 0x7d, 0x1b, 0x02, 0x13, 0x43, 0x18, 0x43, 0xe8, 0x60, 0x03, 0x98, +0xf9, 0xf7, 0xd4, 0xf9, 0x07, 0xb0, 0xf0, 0xbd, 0x00, 0x28, 0x10, 0xb5, 0x01, 0xd0, 0x02, 0xf3, +0xff, 0xfe, 0x10, 0xbd, 0xfc, 0x06, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x04, 0xf7, 0xb5, 0x0c, 0x00, +0x17, 0x00, 0x00, 0x25, 0x2e, 0x00, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0xff, 0x38, +0x9d, 0x38, 0x0f, 0xd0, 0x5f, 0x49, 0x40, 0x18, 0x00, 0xd1, 0x01, 0x25, 0xe1, 0x78, 0xa2, 0x78, +0x08, 0x02, 0x10, 0x43, 0x24, 0x1d, 0x04, 0x19, 0xbc, 0x42, 0x01, 0xd2, 0x00, 0x2d, 0xea, 0xd0, +0x30, 0x00, 0xfe, 0xbd, 0x00, 0x98, 0x21, 0x00, 0xf6, 0xf7, 0x6e, 0xf8, 0x76, 0x1c, 0x36, 0x04, +0x36, 0x0c, 0xeb, 0xe7, 0xff, 0xb5, 0x00, 0x20, 0x81, 0xb0, 0x04, 0x00, 0x0d, 0x00, 0x00, 0x90, +0x01, 0x98, 0x16, 0x00, 0xec, 0xf7, 0xc2, 0xff, 0x07, 0x00, 0x52, 0xe0, 0x68, 0x78, 0x29, 0x78, +0x00, 0x02, 0x08, 0x43, 0xff, 0x38, 0x6b, 0x38, 0x25, 0xd0, 0x01, 0x28, 0x36, 0xd0, 0x07, 0x28, +0x0e, 0xd0, 0x08, 0x28, 0x38, 0xd1, 0xff, 0x20, 0x47, 0x4a, 0x29, 0x00, 0x73, 0x30, 0x0e, 0x23, +0x00, 0xf3, 0x8e, 0xf9, 0x04, 0x00, 0x04, 0x99, 0x01, 0x98, 0xef, 0xf7, 0x2a, 0xff, 0x32, 0xe0, +0x41, 0x4a, 0xff, 0x20, 0x0e, 0x32, 0x29, 0x00, 0x72, 0x30, 0x02, 0x23, 0x00, 0xf3, 0x80, 0xf9, +0x3d, 0x49, 0x04, 0x00, 0x89, 0x1e, 0x09, 0x8a, 0x0a, 0x20, 0x0a, 0x29, 0x00, 0xd3, 0x08, 0x00, +0x3a, 0x49, 0x08, 0x80, 0x1f, 0xe0, 0x3a, 0x49, 0x3a, 0x4a, 0x09, 0x68, 0xa8, 0x68, 0x89, 0x18, +0x88, 0x42, 0x08, 0xd3, 0x3a, 0x1d, 0x29, 0x00, 0xff, 0x20, 0x6b, 0x30, 0x0c, 0x23, 0x00, 0xf3, +0x67, 0xf9, 0x04, 0x00, 0x0f, 0xe0, 0x01, 0x20, 0x00, 0x90, 0x0c, 0xe0, 0x3a, 0x00, 0x10, 0x32, +0x29, 0x00, 0xff, 0x20, 0x6c, 0x30, 0xf1, 0xe7, 0xe9, 0x78, 0xaa, 0x78, 0x08, 0x02, 0x10, 0x43, +0x00, 0x1d, 0x04, 0x04, 0x24, 0x0c, 0x00, 0x2c, 0x05, 0xd0, 0x30, 0x1b, 0x06, 0x04, 0x36, 0x0c, +0x2d, 0x19, 0x00, 0x2e, 0xaa, 0xd1, 0x00, 0x98, 0x05, 0xb0, 0xf0, 0xbd, 0x70, 0xb5, 0x0c, 0x00, +0xec, 0xf7, 0x64, 0xff, 0x05, 0x00, 0xff, 0x20, 0x72, 0x30, 0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, +0x02, 0x20, 0x1d, 0x49, 0xa0, 0x70, 0x00, 0x20, 0x89, 0x1e, 0xe0, 0x70, 0x08, 0x7c, 0x20, 0x71, +0x48, 0x7c, 0x60, 0x71, 0xff, 0x20, 0xa4, 0x1d, 0x73, 0x30, 0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, +0x0e, 0x20, 0xa0, 0x70, 0x00, 0x20, 0xe0, 0x70, 0x0e, 0x22, 0x89, 0x1c, 0x20, 0x1d, 0x02, 0xf3, +0xf2, 0xe8, 0xff, 0x20, 0x12, 0x34, 0x6b, 0x30, 0x20, 0x70, 0x00, 0x0a, 0x0c, 0x26, 0x60, 0x70, +0x00, 0x20, 0xa6, 0x70, 0xe0, 0x70, 0x32, 0x00, 0x29, 0x1d, 0x20, 0x1d, 0x02, 0xf3, 0xe2, 0xe8, +0xff, 0x20, 0x10, 0x34, 0x6c, 0x30, 0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, 0x30, 0x0a, 0xa6, 0x70, +0x29, 0x00, 0xe0, 0x70, 0x0c, 0x22, 0x10, 0x31, 0x20, 0x1d, 0x02, 0xf3, 0xd4, 0xe8, 0x38, 0x20, +0x70, 0xbd, 0x00, 0x00, 0x9d, 0x01, 0xff, 0xff, 0x06, 0x36, 0x01, 0xc0, 0x36, 0xf0, 0x00, 0xc0, +0x18, 0x33, 0x01, 0xc0, 0x2f, 0x08, 0x00, 0x00, 0x1c, 0xb5, 0x00, 0x22, 0x13, 0x00, 0x69, 0x46, +0x0c, 0xc1, 0x06, 0x22, 0x69, 0x46, 0x06, 0xf0, 0x71, 0xfc, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, +0x1c, 0xbd, 0x00, 0x20, 0x1c, 0xbd, 0x1c, 0xb5, 0x06, 0xa1, 0x06, 0xc9, 0x01, 0x92, 0x00, 0x91, +0x06, 0x22, 0x69, 0x46, 0x06, 0xf0, 0x62, 0xfc, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x1c, 0xbd, +0x00, 0x20, 0x1c, 0xbd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x72, 0x49, 0x73, 0x48, +0x08, 0xb5, 0x02, 0xf3, 0x3c, 0xe9, 0x72, 0x48, 0xf0, 0xf2, 0x7f, 0xff, 0x73, 0x22, 0x70, 0x49, +0xd2, 0x00, 0x00, 0x92, 0x0c, 0x22, 0x0c, 0x39, 0x6c, 0x4b, 0x88, 0x1a, 0x00, 0xf0, 0x93, 0xf8, +0x00, 0x20, 0x08, 0xbd, 0x6a, 0x49, 0x10, 0xb5, 0x0c, 0x39, 0x08, 0x00, 0x0c, 0x38, 0x00, 0xf0, +0xa2, 0xf8, 0x04, 0x00, 0x66, 0x48, 0x0c, 0x38, 0x00, 0x68, 0x42, 0x68, 0x01, 0x68, 0xf1, 0xf7, +0x55, 0xfa, 0x39, 0x21, 0x20, 0x00, 0x09, 0x01, 0x08, 0x30, 0x02, 0xf3, 0x42, 0xe9, 0x20, 0x00, +0x10, 0xbd, 0x5f, 0x49, 0x02, 0x00, 0x5e, 0x48, 0x0c, 0x39, 0x10, 0xb5, 0x00, 0xf0, 0x9f, 0xf8, +0x10, 0xbd, 0x5b, 0x49, 0x02, 0x00, 0x08, 0x00, 0x18, 0x38, 0x10, 0xb5, 0x00, 0xf0, 0x97, 0xf8, +0x10, 0xbd, 0x10, 0xb5, 0xf3, 0xf7, 0x38, 0xf9, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x10, 0xbd, +0x00, 0x20, 0x10, 0xbd, 0x70, 0xb5, 0x06, 0xf0, 0xed, 0xfe, 0x51, 0x4c, 0x06, 0x00, 0x08, 0xe0, +0x25, 0x68, 0x28, 0x00, 0xff, 0xf7, 0xed, 0xff, 0x00, 0x28, 0x05, 0xd0, 0x28, 0x00, 0xff, 0xf7, +0xe0, 0xff, 0xa0, 0x68, 0x00, 0x28, 0xf3, 0xd1, 0x30, 0x00, 0x06, 0xf0, 0xdf, 0xfe, 0x70, 0xbd, +0x0f, 0x21, 0x48, 0x48, 0xc9, 0x01, 0x08, 0xb5, 0x02, 0xf3, 0xe0, 0xe8, 0x45, 0x49, 0xff, 0x22, +0x81, 0x32, 0x0c, 0x39, 0x08, 0x00, 0x00, 0x92, 0x42, 0x4b, 0x05, 0x22, 0x0c, 0x38, 0x00, 0xf0, +0x3a, 0xf8, 0x00, 0x20, 0x08, 0xbd, 0x3f, 0x49, 0x10, 0xb5, 0x04, 0x00, 0x0c, 0x39, 0x08, 0x00, +0x0c, 0x38, 0x00, 0xf0, 0x48, 0xf8, 0x00, 0x28, 0x00, 0xd0, 0x84, 0x60, 0x10, 0xbd, 0x39, 0x49, +0x02, 0x00, 0x0c, 0x39, 0x08, 0x00, 0x0c, 0x38, 0x10, 0xb5, 0x00, 0xf0, 0x50, 0xf8, 0x10, 0xbd, +0x35, 0x49, 0x36, 0x48, 0x08, 0xb5, 0x02, 0xf3, 0xba, 0xe8, 0x34, 0x49, 0xed, 0x22, 0x92, 0x00, +0x0c, 0x39, 0x08, 0x00, 0x00, 0x92, 0x31, 0x4b, 0x03, 0x22, 0x0c, 0x38, 0x00, 0xf0, 0x13, 0xf8, +0x00, 0x20, 0x08, 0xbd, 0x2d, 0x49, 0x10, 0xb5, 0x0c, 0x39, 0x08, 0x00, 0x0c, 0x38, 0x00, 0xf0, +0x22, 0xf8, 0x10, 0xbd, 0x29, 0x49, 0x02, 0x00, 0x0c, 0x39, 0x08, 0x00, 0x34, 0xf1, 0xc7, 0x9a, +0x01, 0x00, 0x00, 0x00, 0x54, 0xaa, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x6a, 0xa1, 0x86, 0xfa, +0x0c, 0x38, 0x10, 0xb5, 0x00, 0xf0, 0x2d, 0xf8, 0x10, 0xbd, 0xff, 0xb5, 0x81, 0xb0, 0x0c, 0x00, +0x16, 0x00, 0x1d, 0x00, 0x0a, 0x9f, 0x01, 0x98, 0xf0, 0xf2, 0xd9, 0xfe, 0x20, 0x00, 0xf0, 0xf2, +0xd6, 0xfe, 0x00, 0x24, 0x05, 0xe0, 0x01, 0x98, 0x29, 0x00, 0xf0, 0xf2, 0x01, 0xff, 0xed, 0x19, +0x64, 0x1c, 0xb4, 0x42, 0xf7, 0xdb, 0x05, 0xb0, 0xf0, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, +0x06, 0xf0, 0x72, 0xfe, 0x06, 0x00, 0x20, 0x00, 0xf0, 0xf2, 0xc8, 0xfe, 0x04, 0x00, 0x03, 0xd0, +0x21, 0x00, 0x28, 0x00, 0xf0, 0xf2, 0xec, 0xfe, 0x30, 0x00, 0x06, 0xf0, 0x69, 0xfe, 0x20, 0x00, +0x70, 0xbd, 0xf8, 0xb5, 0x15, 0x00, 0x06, 0x00, 0x0f, 0x00, 0x06, 0xf0, 0x5d, 0xfe, 0x04, 0x00, +0x00, 0x2d, 0x07, 0xd0, 0x29, 0x00, 0x38, 0x00, 0xf0, 0xf2, 0x18, 0xff, 0x01, 0x00, 0x30, 0x00, +0xf0, 0xf2, 0xd6, 0xfe, 0x20, 0x00, 0x06, 0xf0, 0x53, 0xfe, 0xf8, 0xbd, 0x20, 0x2b, 0x00, 0x00, +0x98, 0x0a, 0x00, 0x04, 0xfc, 0x55, 0x00, 0x04, 0xd0, 0x35, 0x00, 0x04, 0x1c, 0x0b, 0x00, 0x00, +0xb0, 0x1e, 0x01, 0xc0, 0x70, 0xb5, 0x05, 0x00, 0xf1, 0xf7, 0x83, 0xfc, 0x04, 0x00, 0x01, 0x21, +0x10, 0x20, 0xf2, 0xf7, 0xc1, 0xfc, 0x17, 0x20, 0x00, 0x21, 0x40, 0x01, 0x28, 0x18, 0x69, 0x72, +0x01, 0x70, 0xf9, 0x48, 0x21, 0x77, 0x61, 0x77, 0x01, 0x60, 0xf8, 0x48, 0x01, 0x60, 0x08, 0x00, +0x70, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x0b, 0x20, 0x80, 0x01, 0x20, 0x18, 0x06, 0x69, 0x20, 0x00, +0xf1, 0xf7, 0x67, 0xfc, 0x07, 0x00, 0x01, 0x21, 0x10, 0x20, 0xf2, 0xf7, 0xa5, 0xfc, 0xaf, 0x21, +0xc9, 0x00, 0x38, 0x00, 0x02, 0xf3, 0x24, 0xe8, 0x13, 0x22, 0x92, 0x01, 0x50, 0x21, 0xb8, 0x18, +0x02, 0xf3, 0x1e, 0xe8, 0x30, 0x00, 0x20, 0x21, 0x2c, 0x30, 0x02, 0xf3, 0x1a, 0xe8, 0x00, 0x25, +0x2b, 0x20, 0x85, 0x55, 0x20, 0x00, 0x06, 0x21, 0x7e, 0x30, 0x02, 0xf3, 0x3c, 0xe8, 0x17, 0x20, +0x40, 0x01, 0x20, 0x18, 0x65, 0x72, 0x05, 0x70, 0x3d, 0x77, 0x20, 0x00, 0x7d, 0x77, 0xf1, 0xf7, +0x69, 0xfd, 0x00, 0x20, 0xf8, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x06, 0x22, 0x7e, 0x30, +0x01, 0xf3, 0x62, 0xef, 0xb1, 0x20, 0x80, 0x00, 0x29, 0x00, 0x20, 0x18, 0x06, 0x22, 0x05, 0x00, +0x01, 0xf3, 0x5a, 0xef, 0x0b, 0x20, 0x80, 0x01, 0x20, 0x18, 0x82, 0x7a, 0x29, 0x00, 0x02, 0x20, +0x01, 0x23, 0xf9, 0xf7, 0x2f, 0xf9, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x02, 0xd1, 0x03, 0x20, +0x09, 0xf0, 0x66, 0xff, 0x00, 0x20, 0x09, 0xf0, 0x63, 0xff, 0x00, 0x28, 0x02, 0xd0, 0xc0, 0x68, +0xc0, 0x04, 0x21, 0xd4, 0x02, 0x20, 0x09, 0xf0, 0x5b, 0xff, 0xeb, 0xf7, 0xe6, 0xfc, 0x01, 0x28, +0x1a, 0xd0, 0x04, 0x20, 0x09, 0xf0, 0x54, 0xff, 0x00, 0x28, 0x15, 0xd1, 0x03, 0x20, 0x09, 0xf0, +0x4f, 0xff, 0x17, 0xe0, 0xac, 0x42, 0x11, 0xd0, 0x60, 0x7a, 0x03, 0x28, 0x05, 0xd1, 0x00, 0x2c, +0x0c, 0xd0, 0xe0, 0x68, 0xc0, 0x04, 0x09, 0xd5, 0x06, 0xe0, 0x02, 0x28, 0x06, 0xd1, 0x20, 0x00, +0xeb, 0xf7, 0xcb, 0xfc, 0x01, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x70, 0xbd, 0x03, 0x21, 0x20, 0x00, +0xf1, 0xf7, 0xfa, 0xf8, 0x04, 0x00, 0xe5, 0xd1, 0x70, 0xbd, 0x10, 0xb5, 0x88, 0xb0, 0xf1, 0xf7, +0xe8, 0xfb, 0x04, 0x00, 0x20, 0x21, 0x68, 0x46, 0x01, 0xf3, 0xaa, 0xef, 0xa0, 0x68, 0xc0, 0x05, +0x16, 0xd4, 0x07, 0x22, 0xae, 0xa1, 0x68, 0x46, 0x01, 0xf3, 0x70, 0xef, 0x01, 0xa8, 0xc0, 0x1c, +0x01, 0xf3, 0xed, 0xf8, 0x13, 0x20, 0x80, 0x01, 0x20, 0x18, 0x01, 0x6b, 0xca, 0x78, 0x17, 0x2a, +0x04, 0xdc, 0x02, 0xa8, 0x09, 0x1d, 0x40, 0x1c, 0x01, 0xf3, 0xf6, 0xee, 0x08, 0xb0, 0x10, 0xbd, +0x11, 0x20, 0x80, 0x01, 0x20, 0x18, 0x01, 0x7c, 0xc0, 0x7b, 0x0a, 0x02, 0x02, 0x43, 0xa2, 0x48, +0x92, 0x1f, 0x21, 0x18, 0x68, 0x46, 0xef, 0xe7, 0x70, 0xb5, 0x0c, 0x00, 0x0e, 0x21, 0x60, 0x18, +0x05, 0x00, 0x01, 0xf3, 0xa8, 0xef, 0x8c, 0x20, 0xa0, 0x73, 0x12, 0x20, 0xe0, 0x73, 0x18, 0x20, +0x20, 0x74, 0x24, 0x20, 0x60, 0x74, 0x30, 0x20, 0xa0, 0x74, 0x48, 0x20, 0xe0, 0x74, 0x60, 0x20, +0x20, 0x75, 0x6c, 0x20, 0x60, 0x75, 0x95, 0x48, 0x0e, 0x22, 0x00, 0x68, 0x29, 0x00, 0x40, 0x1d, +0x01, 0xf3, 0xca, 0xee, 0x0d, 0x20, 0x60, 0x77, 0x20, 0x00, 0xff, 0x30, 0x90, 0x49, 0xe1, 0x30, +0x01, 0x83, 0x49, 0x1e, 0x41, 0x83, 0xe1, 0x20, 0xc0, 0x00, 0x20, 0x60, 0xfe, 0x20, 0xa0, 0x77, +0x0c, 0x20, 0xe0, 0x77, 0x70, 0xbd, 0xf1, 0xb5, 0x82, 0xb0, 0x02, 0x98, 0x09, 0xf0, 0xe7, 0xfe, +0x06, 0x00, 0x02, 0x98, 0x09, 0xf0, 0xbc, 0xfe, 0x07, 0x00, 0x02, 0x98, 0xf1, 0xf7, 0x81, 0xfb, +0x3d, 0x00, 0xff, 0x35, 0x04, 0x00, 0xcf, 0x35, 0x01, 0xf0, 0xc3, 0xf9, 0x00, 0x28, 0x06, 0xd0, +0x21, 0x00, 0x28, 0x00, 0x06, 0x22, 0xbd, 0x31, 0x24, 0x30, 0x01, 0xf3, 0x9e, 0xee, 0x02, 0x98, +0x39, 0x00, 0xff, 0xf7, 0xb1, 0xff, 0x13, 0x22, 0x52, 0x01, 0x01, 0x21, 0xb8, 0x18, 0x01, 0x70, +0xa0, 0x68, 0xc0, 0x05, 0x10, 0xd4, 0x20, 0x21, 0x28, 0x00, 0x01, 0xf3, 0x54, 0xef, 0x75, 0x48, +0x00, 0x68, 0x01, 0xf3, 0xa7, 0xff, 0x02, 0x00, 0x72, 0x48, 0x01, 0x68, 0x28, 0x00, 0x01, 0xf3, +0x84, 0xee, 0x07, 0x21, 0x20, 0x20, 0x41, 0x55, 0x20, 0x00, 0x01, 0xf0, 0x9a, 0xf9, 0x00, 0x28, +0x02, 0xd0, 0xca, 0x20, 0x00, 0x5d, 0x70, 0x72, 0x28, 0x00, 0x20, 0x30, 0x01, 0x90, 0x02, 0x78, +0x02, 0x98, 0x0b, 0x21, 0x89, 0x01, 0x40, 0x18, 0x00, 0x90, 0x00, 0x69, 0x29, 0x00, 0x2c, 0x30, +0x01, 0xf3, 0x6a, 0xee, 0x01, 0x98, 0x01, 0x78, 0x00, 0x98, 0x00, 0x69, 0x20, 0x30, 0xc1, 0x72, +0xff, 0x20, 0xf0, 0x30, 0xc1, 0x5d, 0x00, 0x98, 0x00, 0x69, 0x40, 0x30, 0x81, 0x73, 0x25, 0x21, +0x49, 0x01, 0x61, 0x18, 0x70, 0x7a, 0x08, 0x77, 0x70, 0x7a, 0x60, 0x37, 0xb8, 0x71, 0xfe, 0xbd, +0xfe, 0xb5, 0x05, 0x00, 0x00, 0x26, 0x00, 0x96, 0x09, 0xf0, 0x81, 0xfe, 0x28, 0x00, 0x09, 0xf0, +0x57, 0xfe, 0x28, 0x00, 0xf1, 0xf7, 0x1d, 0xfb, 0x13, 0x21, 0x89, 0x01, 0x04, 0x00, 0x41, 0x18, +0x51, 0x4a, 0x00, 0x68, 0x01, 0x27, 0x82, 0x43, 0x00, 0x2a, 0x34, 0xd1, 0x08, 0x68, 0x00, 0x28, +0x36, 0xd0, 0x48, 0x68, 0x00, 0x28, 0x33, 0xd0, 0x88, 0x68, 0x00, 0x28, 0x30, 0xd0, 0xc8, 0x68, +0x00, 0x28, 0x2d, 0xd0, 0x08, 0x69, 0x00, 0x28, 0x2a, 0xd0, 0x48, 0x69, 0x00, 0x28, 0x27, 0xd0, +0xc8, 0x69, 0x00, 0x28, 0x24, 0xd0, 0x08, 0x6a, 0x00, 0x28, 0x21, 0xd0, 0x48, 0x6a, 0x00, 0x28, +0x1e, 0xd0, 0x88, 0x6a, 0x00, 0x28, 0x1b, 0xd0, 0xc8, 0x6a, 0x00, 0x28, 0x18, 0xd0, 0x08, 0x6b, +0x00, 0x28, 0x15, 0xd0, 0x48, 0x6b, 0x00, 0x28, 0x12, 0xd0, 0x88, 0x6b, 0x00, 0x28, 0x0f, 0xd0, +0xc8, 0x6b, 0x00, 0x28, 0x0c, 0xd0, 0x08, 0x6c, 0x00, 0x28, 0x09, 0xd0, 0x15, 0x20, 0x80, 0x01, +0x20, 0x18, 0x07, 0x63, 0x06, 0xe0, 0x20, 0x00, 0x01, 0xf0, 0x23, 0xf9, 0x66, 0x8a, 0x91, 0xa7, +0x01, 0x00, 0x00, 0x00, 0x50, 0xae, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x39, 0x7b, 0x55, 0x96, +0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, 0xfe, 0xbd, 0x26, 0x77, 0x66, 0x77, 0xa0, 0x68, 0xc0, 0x21, +0x25, 0x22, 0x08, 0x43, 0x52, 0x01, 0xff, 0x21, 0xa2, 0x18, 0x11, 0x75, 0x04, 0x21, 0x08, 0x43, +0x30, 0x21, 0x88, 0x43, 0xa0, 0x60, 0x09, 0x20, 0xc0, 0x01, 0x20, 0x18, 0x86, 0x63, 0x29, 0x20, +0x01, 0x21, 0x40, 0x01, 0x20, 0x18, 0x0a, 0x02, 0x81, 0x72, 0x05, 0x21, 0x09, 0x02, 0x61, 0x18, +0xca, 0x62, 0x05, 0x22, 0x0a, 0x63, 0x86, 0x82, 0x28, 0x00, 0xff, 0xf7, 0x8f, 0xfe, 0x08, 0x27, +0x00, 0x28, 0x02, 0xd0, 0xa0, 0x68, 0x38, 0x43, 0xa0, 0x60, 0x20, 0x00, 0xa0, 0x30, 0xc1, 0x7b, +0x04, 0x22, 0x11, 0x43, 0xc1, 0x73, 0x68, 0x7a, 0x02, 0x28, 0x01, 0xd0, 0x03, 0x28, 0x01, 0xd1, +0x6e, 0x72, 0xc4, 0xe0, 0x01, 0x20, 0x68, 0x72, 0x17, 0x20, 0x40, 0x01, 0x00, 0x21, 0x28, 0x18, +0x01, 0x70, 0x20, 0x00, 0x01, 0xf0, 0xdf, 0xf8, 0x00, 0x28, 0x24, 0xd0, 0x28, 0x00, 0xff, 0xf7, +0x6d, 0xfe, 0x00, 0x28, 0x1c, 0xd1, 0x68, 0x46, 0xeb, 0xf7, 0x98, 0xf8, 0xca, 0x20, 0x01, 0x5d, +0x00, 0x98, 0x00, 0x22, 0x0c, 0xf0, 0x32, 0xe9, 0x15, 0xe0, 0x00, 0x00, 0x00, 0x1d, 0x01, 0xc0, +0x04, 0x1d, 0x01, 0xc0, 0x44, 0x49, 0x52, 0x45, 0x43, 0x54, 0x2d, 0x00, 0x57, 0x04, 0x00, 0x00, +0x54, 0xf4, 0x00, 0xc0, 0x2b, 0x09, 0x00, 0x00, 0x6c, 0xf6, 0x00, 0xc0, 0xfc, 0xab, 0x03, 0x00, +0xa0, 0x68, 0x38, 0x43, 0xa0, 0x60, 0x20, 0x00, 0x01, 0xf0, 0xb5, 0xf8, 0x0b, 0x21, 0x89, 0x01, +0x6e, 0x18, 0x00, 0x28, 0x0c, 0xd0, 0x31, 0x69, 0xca, 0x20, 0x00, 0x5d, 0x08, 0x73, 0x20, 0x00, +0xbd, 0x30, 0x01, 0x90, 0xf2, 0xf7, 0xca, 0xfc, 0x01, 0x99, 0x28, 0x00, 0xff, 0xf7, 0x1d, 0xfe, +0x30, 0x69, 0x20, 0x21, 0x2c, 0x30, 0x01, 0xf3, 0x1e, 0xee, 0x30, 0x69, 0x00, 0x21, 0x20, 0x30, +0xc1, 0x72, 0x30, 0x69, 0x2c, 0x30, 0x07, 0x22, 0xff, 0x49, 0x01, 0xf3, 0xe2, 0xed, 0x30, 0x69, +0x07, 0x21, 0x20, 0x30, 0xc1, 0x72, 0x11, 0x20, 0x80, 0x01, 0x20, 0x18, 0x01, 0x7c, 0xc2, 0x7b, +0x08, 0x02, 0x10, 0x43, 0x80, 0x1f, 0x09, 0x28, 0x0d, 0xdb, 0xf8, 0x48, 0xf6, 0x49, 0x07, 0x22, +0x20, 0x18, 0x06, 0xf0, 0x17, 0xf9, 0x00, 0x28, 0x05, 0xd1, 0xa1, 0x68, 0xff, 0x20, 0x40, 0x1c, +0x01, 0x43, 0xa1, 0x60, 0x03, 0xe0, 0xa0, 0x68, 0x04, 0x21, 0x08, 0x43, 0xa0, 0x60, 0x28, 0x00, +0xff, 0xf7, 0x04, 0xfe, 0x00, 0x28, 0x03, 0xd1, 0x28, 0x00, 0xf1, 0xf7, 0x63, 0xfa, 0x02, 0xe0, +0xa0, 0x68, 0x38, 0x43, 0xa0, 0x60, 0x28, 0x00, 0xff, 0xf7, 0x8f, 0xfe, 0x28, 0x00, 0xff, 0xf7, +0xf5, 0xfd, 0xe7, 0x4e, 0x00, 0x28, 0x12, 0xd1, 0x30, 0x68, 0xe6, 0x49, 0x08, 0x43, 0x30, 0x60, +0x30, 0x68, 0xe5, 0x49, 0x08, 0x40, 0x30, 0x60, 0xe4, 0x48, 0x01, 0x68, 0x20, 0x22, 0x11, 0x43, +0x01, 0x60, 0xe3, 0x4a, 0x50, 0x6a, 0x04, 0x21, 0x88, 0x43, 0x50, 0x62, 0x02, 0xe0, 0xa0, 0x68, +0x38, 0x43, 0xa0, 0x60, 0x03, 0x21, 0x00, 0x20, 0xf6, 0xf2, 0xca, 0xfe, 0x04, 0x21, 0x01, 0x20, +0xf6, 0xf2, 0xc6, 0xfe, 0x28, 0x00, 0xff, 0xf7, 0xd1, 0xfd, 0x00, 0x28, 0x07, 0xd1, 0xf8, 0xf7, +0xdb, 0xfa, 0x30, 0x68, 0x01, 0x21, 0x49, 0x03, 0x08, 0x43, 0x30, 0x60, 0x02, 0xe0, 0xa0, 0x68, +0x38, 0x43, 0xa0, 0x60, 0xf6, 0xf2, 0x2a, 0xfd, 0xf6, 0xf2, 0x6a, 0xff, 0xf8, 0xf7, 0x7e, 0xfa, +0xf6, 0xf2, 0x00, 0xfd, 0xe9, 0xf7, 0x5f, 0xfd, 0x28, 0x00, 0xff, 0xf7, 0xf0, 0xfd, 0x00, 0x20, +0xfe, 0xbd, 0xf8, 0xb5, 0x0c, 0x00, 0x00, 0x25, 0xf1, 0xf7, 0xd5, 0xf9, 0xd8, 0x21, 0x09, 0x5a, +0x02, 0x00, 0xc9, 0x1e, 0x0b, 0x04, 0x1b, 0x0c, 0xdd, 0x32, 0x13, 0xe0, 0x46, 0x78, 0x00, 0x21, +0x08, 0xe0, 0x47, 0x18, 0xbf, 0x78, 0xa7, 0x42, 0x01, 0xd1, 0x01, 0x25, 0x04, 0xe0, 0x49, 0x1c, +0x09, 0x04, 0x09, 0x0c, 0xb1, 0x42, 0xf4, 0xd3, 0x98, 0x1b, 0x80, 0x1e, 0x03, 0x04, 0x1b, 0x0c, +0x92, 0x1c, 0xb2, 0x18, 0x10, 0x00, 0x00, 0x2b, 0xe8, 0xd1, 0x00, 0x2d, 0x01, 0xd0, 0x01, 0x20, +0xf8, 0xbd, 0x00, 0x20, 0xf8, 0xbd, 0xf0, 0xb5, 0x06, 0x00, 0x89, 0xb0, 0x09, 0xf0, 0x09, 0xfd, +0x05, 0x00, 0x30, 0x00, 0x09, 0xf0, 0xde, 0xfc, 0x02, 0x90, 0x30, 0x00, 0xf1, 0xf7, 0xa3, 0xf9, +0x04, 0x00, 0x28, 0x7a, 0x81, 0x08, 0x89, 0x00, 0x29, 0x72, 0x70, 0x7a, 0x00, 0x28, 0x7e, 0xd0, +0xa0, 0x68, 0x08, 0x21, 0x08, 0x43, 0xa0, 0x60, 0x03, 0x21, 0x00, 0x20, 0xf1, 0xf7, 0xe7, 0xfe, +0x00, 0x28, 0x0a, 0xd1, 0x02, 0x21, 0x08, 0x00, 0xf1, 0xf7, 0xe1, 0xfe, 0x00, 0x28, 0x04, 0xd1, +0x04, 0x20, 0x09, 0xf0, 0xcf, 0xfc, 0x00, 0x28, 0x1d, 0xd0, 0x0b, 0x21, 0x89, 0x01, 0x47, 0x18, +0x38, 0x69, 0x01, 0x7b, 0x30, 0x00, 0xff, 0xf7, 0xa4, 0xff, 0x00, 0x28, 0xdf, 0xd0, 0x20, 0x00, +0x00, 0xf0, 0xc1, 0xff, 0x00, 0x28, 0x0e, 0xd0, 0x38, 0x69, 0x01, 0x7b, 0x25, 0x20, 0x40, 0x01, +0x20, 0x18, 0x01, 0x77, 0x20, 0x00, 0xc0, 0x30, 0x82, 0x7c, 0x01, 0x00, 0x38, 0x69, 0x00, 0x7b, +0x82, 0x42, 0x00, 0xd0, 0x88, 0x74, 0x21, 0x00, 0xc0, 0x31, 0x88, 0x7c, 0x00, 0x28, 0x04, 0xd0, +0x25, 0x22, 0x52, 0x01, 0xa2, 0x18, 0x10, 0x77, 0x04, 0xe0, 0x25, 0x20, 0x40, 0x01, 0x8a, 0x7a, +0x20, 0x18, 0x02, 0x77, 0x25, 0x20, 0x40, 0x01, 0x22, 0x18, 0x10, 0x7f, 0x88, 0x74, 0x0b, 0x21, +0x89, 0x01, 0x77, 0x18, 0x68, 0x72, 0x39, 0x69, 0x08, 0x73, 0x10, 0x7f, 0x0e, 0x28, 0x04, 0xd9, +0x28, 0x7a, 0x80, 0x08, 0x80, 0x00, 0x40, 0x1c, 0x28, 0x72, 0x20, 0x00, 0x00, 0xf0, 0x8b, 0xff, +0x00, 0x28, 0x04, 0xd0, 0x69, 0x7a, 0xa8, 0x68, 0x00, 0x22, 0x0b, 0xf0, 0xe8, 0xef, 0x17, 0x21, +0x02, 0x20, 0x49, 0x01, 0x71, 0x18, 0x70, 0x72, 0x08, 0x70, 0x71, 0x20, 0x00, 0x21, 0xc0, 0x00, +0x30, 0x18, 0x0a, 0x00, 0x0b, 0x00, 0x0e, 0xc0, 0x01, 0x60, 0x08, 0x00, 0xfb, 0xf7, 0xee, 0xf8, +0x11, 0x20, 0x80, 0x01, 0x20, 0x18, 0x08, 0x90, 0x01, 0x7c, 0xc2, 0x7b, 0x08, 0x02, 0x10, 0x43, +0x80, 0x1f, 0x00, 0x06, 0x00, 0x0e, 0x09, 0x28, 0x10, 0xd3, 0x07, 0x22, 0x00, 0xe0, 0x4c, 0xe0, +0x66, 0x48, 0x65, 0x49, 0x20, 0x18, 0x05, 0xf0, 0xf5, 0xff, 0x00, 0x28, 0x06, 0xd1, 0xa0, 0x68, +0xff, 0x21, 0x49, 0x1c, 0x08, 0x43, 0x04, 0x21, 0x88, 0x43, 0x02, 0xe0, 0xa0, 0x68, 0x04, 0x21, +0x08, 0x43, 0xa0, 0x60, 0x20, 0x00, 0xa0, 0x30, 0x01, 0x7c, 0x01, 0x22, 0x11, 0x43, 0xfb, 0x22, +0x11, 0x40, 0x01, 0x74, 0xa0, 0x68, 0x40, 0x07, 0x25, 0xd5, 0xe1, 0x6b, 0x00, 0x29, 0x0c, 0xd1, +0x56, 0x48, 0x55, 0x49, 0x07, 0x22, 0x20, 0x18, 0x01, 0xf3, 0x20, 0xec, 0x53, 0x48, 0xc0, 0x1d, +0x20, 0x18, 0x00, 0xf3, 0x06, 0xfe, 0x09, 0x20, 0x10, 0xe0, 0x40, 0x20, 0x42, 0x5c, 0x4f, 0x48, +0x20, 0x18, 0x01, 0xf3, 0x14, 0xec, 0x02, 0x98, 0xe1, 0x6b, 0xff, 0x30, 0x20, 0x31, 0x20, 0x22, +0x3a, 0x30, 0x01, 0xf3, 0x0c, 0xec, 0xe0, 0x6b, 0x40, 0x30, 0x00, 0x78, 0xc7, 0x3c, 0xfb, 0xe6, +0x01, 0x00, 0x00, 0x00, 0x4c, 0xb2, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x86, 0xbe, 0x70, 0x25, +0x08, 0x99, 0x80, 0x1d, 0xc8, 0x73, 0x00, 0x0a, 0x08, 0x74, 0xa0, 0x68, 0x04, 0x21, 0x88, 0x43, +0xa0, 0x60, 0x02, 0x98, 0x03, 0x90, 0xff, 0x30, 0xcf, 0x30, 0x01, 0x90, 0x02, 0xd1, 0x01, 0x20, +0x09, 0xb0, 0xf0, 0xbd, 0x08, 0x98, 0x02, 0x7c, 0xc1, 0x7b, 0x10, 0x02, 0x08, 0x43, 0x80, 0x1f, +0x00, 0x06, 0x00, 0x0e, 0x00, 0x90, 0x20, 0x00, 0x00, 0xf0, 0x07, 0xff, 0x00, 0x28, 0x42, 0xd0, +0x37, 0x48, 0x06, 0x22, 0x52, 0x30, 0x21, 0x18, 0x03, 0x98, 0x07, 0x91, 0xff, 0x30, 0xf3, 0x30, +0x06, 0x91, 0x01, 0xf3, 0xde, 0xeb, 0x20, 0x00, 0xbd, 0x30, 0x06, 0x99, 0x06, 0x22, 0x05, 0x90, +0x05, 0xf0, 0x8a, 0xff, 0x00, 0x28, 0x06, 0xd0, 0x05, 0x98, 0xf2, 0xf7, 0x02, 0xfb, 0x07, 0x99, +0x30, 0x00, 0xff, 0xf7, 0x64, 0xfc, 0x01, 0x98, 0x20, 0x21, 0x01, 0xf3, 0x90, 0xec, 0x28, 0x48, +0x00, 0x9a, 0x21, 0x18, 0x01, 0x98, 0x01, 0xf3, 0xc4, 0xeb, 0x01, 0x9c, 0x00, 0x9a, 0x20, 0x34, +0x22, 0x70, 0x38, 0x69, 0x01, 0x99, 0x2c, 0x30, 0x01, 0xf3, 0xba, 0xeb, 0x38, 0x69, 0x21, 0x78, +0x20, 0x30, 0xc1, 0x72, 0xf8, 0xf7, 0x24, 0xf9, 0x39, 0x69, 0x68, 0x7a, 0x08, 0x73, 0x38, 0x69, +0x29, 0x7a, 0x41, 0x73, 0x02, 0x98, 0x7d, 0x21, 0x09, 0x01, 0xff, 0x30, 0x41, 0x30, 0xc1, 0x61, +0x01, 0x62, 0x00, 0x20, 0xac, 0xe7, 0xb1, 0x20, 0x80, 0x00, 0x31, 0x18, 0x03, 0x98, 0x06, 0x22, +0xff, 0x30, 0xf3, 0x30, 0x04, 0x90, 0x01, 0xf3, 0x9c, 0xeb, 0x04, 0x99, 0xc8, 0xe7, 0xf8, 0xb5, +0x04, 0x00, 0x09, 0xf0, 0xa1, 0xfb, 0x07, 0x00, 0x20, 0x00, 0xf1, 0xf7, 0x66, 0xf8, 0x05, 0x00, +0x60, 0x7a, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0xf8, 0xbd, 0x0e, 0x48, 0x41, 0x6a, 0x04, 0x22, +0x11, 0x43, 0x41, 0x62, 0x28, 0x00, 0x00, 0xf0, 0xa0, 0xfe, 0x00, 0x28, 0x23, 0xd0, 0x68, 0x46, +0xea, 0xf7, 0x5e, 0xfe, 0x25, 0x20, 0x40, 0x01, 0x2e, 0x18, 0x0d, 0xe0, 0x04, 0xaf, 0x01, 0x00, +0x57, 0x04, 0x00, 0x00, 0x00, 0xa3, 0x00, 0x80, 0x46, 0x5e, 0x00, 0x00, 0x4e, 0x7e, 0xff, 0xff, +0x00, 0xa7, 0x00, 0x80, 0x00, 0xa8, 0x00, 0x80, 0x31, 0x7f, 0x00, 0x98, 0x00, 0x22, 0x0b, 0xf0, +0xe8, 0xee, 0x0b, 0x20, 0x80, 0x01, 0x20, 0x18, 0x02, 0x69, 0x31, 0x7f, 0x11, 0x73, 0x00, 0x69, +0x6b, 0x46, 0x19, 0x78, 0x41, 0x73, 0x17, 0x21, 0x49, 0x01, 0x02, 0x20, 0x61, 0x18, 0x08, 0x70, +0x03, 0x20, 0x00, 0x21, 0x60, 0x72, 0x71, 0x20, 0xc0, 0x00, 0x20, 0x18, 0x0a, 0x00, 0x0b, 0x00, +0x0e, 0x00, 0x4e, 0xc0, 0x08, 0x00, 0xfa, 0xf7, 0xe3, 0xff, 0x28, 0x00, 0x00, 0xf0, 0x65, 0xfe, +0xff, 0x4e, 0x00, 0x28, 0x06, 0xd0, 0x38, 0x00, 0xff, 0x30, 0x06, 0x22, 0xa9, 0x19, 0xf3, 0x30, +0x01, 0xf3, 0x3e, 0xeb, 0xa9, 0x19, 0x28, 0x00, 0xbd, 0x30, 0x06, 0x22, 0x0e, 0x00, 0x05, 0x00, +0x05, 0xf0, 0xea, 0xfe, 0x00, 0x28, 0x06, 0xd0, 0x28, 0x00, 0xf2, 0xf7, 0x62, 0xfa, 0x31, 0x00, +0x20, 0x00, 0xff, 0xf7, 0xc4, 0xfb, 0x04, 0x21, 0x20, 0x00, 0x01, 0xf0, 0xa8, 0xff, 0xf1, 0x48, +0x04, 0x60, 0x20, 0x00, 0xf1, 0xf7, 0x38, 0xf8, 0xf8, 0xf7, 0x92, 0xf8, 0x00, 0x20, 0xf8, 0xbd, +0xfe, 0xb5, 0x0e, 0x00, 0x17, 0x00, 0xf0, 0xf7, 0xf0, 0xff, 0x13, 0x21, 0x89, 0x01, 0x40, 0x18, +0x00, 0x90, 0x71, 0x78, 0x32, 0x78, 0x09, 0x02, 0x30, 0x00, 0x11, 0x43, 0x20, 0x30, 0x0d, 0x18, +0xdd, 0x20, 0x28, 0x70, 0x68, 0x1c, 0x01, 0x90, 0xe3, 0x49, 0x04, 0x22, 0xa8, 0x1c, 0x01, 0xf3, +0x08, 0xeb, 0xad, 0x1d, 0x00, 0x24, 0x01, 0x20, 0xa0, 0x40, 0xb8, 0x42, 0x10, 0xd8, 0x38, 0x42, +0x09, 0xd0, 0x00, 0x99, 0xa0, 0x00, 0x09, 0x58, 0x00, 0x29, 0x04, 0xd0, 0x28, 0x00, 0x00, 0xf3, +0xaa, 0xf9, 0x45, 0x19, 0x2d, 0x1d, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x14, 0x2c, 0xea, 0xd3, +0x01, 0x98, 0x01, 0x99, 0x28, 0x1a, 0x40, 0x1e, 0x00, 0x06, 0x00, 0x0e, 0x08, 0x70, 0x71, 0x78, +0x32, 0x78, 0x09, 0x02, 0x11, 0x43, 0x08, 0x18, 0x80, 0x1c, 0x30, 0x70, 0x00, 0x0a, 0x70, 0x70, +0xfe, 0xbd, 0xce, 0x4a, 0xbc, 0xe7, 0xce, 0x4a, 0xba, 0xe7, 0xce, 0x4a, 0xb8, 0xe7, 0xff, 0xb5, +0x81, 0xb0, 0x84, 0x46, 0x00, 0x24, 0x9e, 0x46, 0x02, 0x98, 0x00, 0x28, 0x3f, 0xd0, 0x70, 0x46, +0x00, 0x28, 0x3c, 0xd0, 0x60, 0x46, 0x00, 0x78, 0x11, 0x78, 0x88, 0x42, 0x37, 0xd1, 0x0a, 0x98, +0x81, 0x78, 0x43, 0x78, 0x08, 0x02, 0x0a, 0x99, 0x18, 0x43, 0xc9, 0x1c, 0x43, 0x18, 0x98, 0x1c, +0x00, 0x25, 0x00, 0x90, 0x18, 0xe0, 0x00, 0x21, 0x60, 0x46, 0x40, 0x19, 0x0f, 0xe0, 0x57, 0x18, +0xbe, 0x78, 0x87, 0x78, 0xbe, 0x42, 0x07, 0xd1, 0x50, 0x18, 0x00, 0x99, 0x80, 0x78, 0x08, 0x55, +0x64, 0x1c, 0x24, 0x04, 0x24, 0x0c, 0x04, 0xe0, 0x49, 0x1c, 0x09, 0x04, 0x09, 0x0c, 0x71, 0x45, +0xed, 0xdb, 0x6d, 0x1c, 0x2d, 0x04, 0x2d, 0x0c, 0x02, 0x98, 0x85, 0x42, 0xe3, 0xdb, 0x00, 0x2c, +0x0d, 0xd0, 0x10, 0x78, 0x18, 0x70, 0x5c, 0x70, 0x0a, 0x98, 0xa4, 0x1c, 0x81, 0x78, 0x42, 0x78, +0x08, 0x02, 0x0a, 0x99, 0x10, 0x43, 0x00, 0x19, 0x48, 0x70, 0x00, 0x0a, 0x88, 0x70, 0x05, 0xb0, +0xf0, 0xbd, 0xff, 0xb5, 0x83, 0xb0, 0x15, 0x00, 0x00, 0x27, 0x3c, 0x00, 0x00, 0x28, 0x02, 0x97, +0x1d, 0xd0, 0xf0, 0xf7, 0x5a, 0xff, 0x06, 0x00, 0x00, 0xf0, 0x9f, 0xfd, 0x00, 0x28, 0x18, 0xd0, +0x04, 0x98, 0x00, 0xf3, 0x19, 0xf9, 0x01, 0x90, 0x01, 0x21, 0x06, 0x98, 0xb9, 0x40, 0x81, 0x42, +0x02, 0xd9, 0x0c, 0x98, 0x81, 0x42, 0x6d, 0xd8, 0x0c, 0x9a, 0x06, 0x98, 0x10, 0x43, 0x08, 0x42, +0x63, 0xd0, 0x06, 0x98, 0x08, 0x40, 0x06, 0xd0, 0x0c, 0x9a, 0x0a, 0x42, 0x03, 0xd0, 0x00, 0x20, +0xc0, 0x43, 0x07, 0xb0, 0xf0, 0xbd, 0x01, 0x23, 0x5b, 0x02, 0xca, 0x1a, 0x99, 0x42, 0x6f, 0xd0, +0x1d, 0xdc, 0x10, 0x29, 0x6e, 0xd0, 0x0c, 0xdc, 0x01, 0x29, 0x55, 0xd0, 0x02, 0x29, 0x5a, 0xd0, +0x04, 0x29, 0x5c, 0xd0, 0x08, 0x29, 0x3b, 0xd1, 0x00, 0x28, 0x5f, 0xd0, 0x34, 0x00, 0xba, 0x34, +0x36, 0xe0, 0x20, 0x29, 0x65, 0xd0, 0x40, 0x29, 0x6a, 0xd0, 0x80, 0x29, 0x71, 0xd0, 0xff, 0x39, +0x49, 0x1e, 0x2d, 0xd1, 0x00, 0x28, 0x73, 0xd0, 0x7d, 0x48, 0x25, 0x38, 0x99, 0xe0, 0x1f, 0x21, +0x49, 0x02, 0x53, 0x1a, 0x8a, 0x42, 0x7f, 0xd0, 0x13, 0xdc, 0xff, 0x3a, 0xff, 0x3a, 0x92, 0x1e, +0x39, 0xd0, 0x01, 0x21, 0x89, 0x02, 0x51, 0x1a, 0x6d, 0xd0, 0x01, 0x22, 0xd2, 0x02, 0x89, 0x1a, +0x16, 0xd0, 0x52, 0x00, 0x89, 0x1a, 0x13, 0xd1, 0x00, 0x28, 0x6b, 0xd0, 0x70, 0x48, 0xaf, 0x38, +0x7f, 0xe0, 0x01, 0x21, 0x89, 0x03, 0x59, 0x1a, 0x6e, 0xd0, 0x01, 0x22, 0xd2, 0x03, 0x89, 0x1a, +0x73, 0xd0, 0x52, 0x00, 0x89, 0x1a, 0x78, 0xd0, 0x50, 0x00, 0x08, 0x1a, 0x00, 0xd1, 0xac, 0x6c, +0xa0, 0x78, 0x61, 0x78, 0x00, 0x02, 0x08, 0x43, 0x07, 0xd0, 0x01, 0x98, 0xfb, 0x22, 0x21, 0x00, +0x00, 0xf3, 0x05, 0xf9, 0x02, 0x99, 0x40, 0x18, 0x02, 0x90, 0x7f, 0x1c, 0x4a, 0xdf, 0x23, 0x6a, +0x01, 0x00, 0x00, 0x00, 0x48, 0xb6, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xd5, 0x64, 0xa3, 0x49, +0x3f, 0x06, 0x3f, 0x0e, 0x13, 0x2f, 0x89, 0xd3, 0x02, 0x98, 0x9c, 0xe7, 0x00, 0x28, 0x02, 0xd0, +0x5c, 0x48, 0x80, 0x1d, 0x57, 0xe0, 0xac, 0x68, 0xe4, 0xe7, 0x00, 0x20, 0x60, 0x70, 0xa0, 0x70, +0xed, 0xe7, 0x00, 0x28, 0x02, 0xd0, 0x34, 0x00, 0xac, 0x34, 0xdb, 0xe7, 0x2c, 0x68, 0xd9, 0xe7, +0xac, 0x6b, 0xd7, 0xe7, 0x20, 0xe0, 0xff, 0xe7, 0x00, 0x28, 0x02, 0xd0, 0x34, 0x00, 0xd3, 0x34, +0xd0, 0xe7, 0x6c, 0x68, 0xce, 0xe7, 0x00, 0x28, 0x02, 0xd0, 0x4e, 0x48, 0x08, 0x38, 0x3a, 0xe0, +0x2c, 0x6c, 0xc7, 0xe7, 0x00, 0x28, 0x02, 0xd0, 0x34, 0x00, 0xc3, 0x34, 0xc2, 0xe7, 0xec, 0x68, +0xc0, 0xe7, 0x00, 0xe0, 0x06, 0xe0, 0x00, 0x28, 0x02, 0xd0, 0x46, 0x48, 0x32, 0x38, 0x2a, 0xe0, +0xac, 0x6a, 0xb7, 0xe7, 0x6c, 0x6b, 0xb5, 0xe7, 0x00, 0x28, 0x04, 0xd0, 0x41, 0x48, 0xc0, 0x1e, +0x21, 0xe0, 0x0b, 0xe0, 0x01, 0xe0, 0x6c, 0x6c, 0xac, 0xe7, 0x00, 0x28, 0x02, 0xd0, 0x34, 0x00, +0xd7, 0x34, 0xa7, 0xe7, 0x6c, 0x69, 0xa5, 0xe7, 0x2c, 0x6a, 0xa3, 0xe7, 0x00, 0x28, 0x03, 0xd0, +0x34, 0x00, 0xff, 0x34, 0x30, 0x34, 0x9d, 0xe7, 0xec, 0x69, 0x9b, 0xe7, 0x00, 0x28, 0x04, 0xd0, +0x34, 0x48, 0x5b, 0x38, 0x07, 0xe0, 0x02, 0xe0, 0x09, 0xe0, 0x6c, 0x6a, 0x92, 0xe7, 0x00, 0x28, +0x03, 0xd0, 0x30, 0x48, 0x1e, 0x38, 0x34, 0x18, 0x8c, 0xe7, 0xec, 0x6b, 0x8a, 0xe7, 0x00, 0x28, +0x02, 0xd0, 0x34, 0x00, 0xcb, 0x34, 0x85, 0xe7, 0x2c, 0x69, 0x83, 0xe7, 0xf8, 0xb5, 0x0c, 0x00, +0x06, 0x00, 0xf0, 0xf7, 0x6c, 0xfe, 0x00, 0x22, 0x0c, 0x23, 0x21, 0x00, 0x30, 0x00, 0x00, 0x92, +0xff, 0xf7, 0x01, 0xff, 0x05, 0x04, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x2d, 0x0c, 0x08, 0x43, +0x40, 0x19, 0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, 0x05, 0xf0, 0x39, 0xfc, 0x00, 0x28, 0x12, 0xd0, +0x60, 0x78, 0x22, 0x78, 0x01, 0x02, 0x11, 0x43, 0x20, 0x00, 0x20, 0x30, 0x09, 0x18, 0x00, 0x22, +0x30, 0x00, 0x05, 0xf0, 0xda, 0xfc, 0x61, 0x78, 0x22, 0x78, 0x09, 0x02, 0x11, 0x43, 0x40, 0x18, +0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, 0x28, 0x00, 0xf8, 0xbd, 0xf7, 0xb5, 0x82, 0xb0, 0x00, 0x24, +0x06, 0x00, 0x0d, 0x00, 0x27, 0x00, 0xf0, 0xf7, 0x3a, 0xfe, 0x71, 0x7a, 0x02, 0x29, 0x07, 0xd1, +0xb0, 0x22, 0x12, 0x5c, 0x92, 0x07, 0x00, 0xd5, 0xcc, 0x01, 0x01, 0x22, 0x92, 0x03, 0x14, 0x43, +0x0e, 0x4a, 0x23, 0x00, 0x13, 0x43, 0x01, 0x29, 0x22, 0xd1, 0x01, 0x00, 0x80, 0x31, 0x09, 0x6b, +0xa0, 0x30, 0x01, 0x91, 0x00, 0x22, 0x02, 0x74, 0x04, 0x00, 0x29, 0x00, 0x00, 0x92, 0x04, 0x9a, +0x30, 0x00, 0x0d, 0xe0, 0xa9, 0x04, 0x00, 0x00, 0x8c, 0xf6, 0x00, 0xc0, 0x20, 0x15, 0x32, 0x00, +0x83, 0x10, 0x00, 0x00, 0xf5, 0x1f, 0x08, 0x00, 0xbb, 0xf9, 0x0d, 0x00, 0x04, 0x20, 0x00, 0x00, +0xff, 0xf7, 0xa9, 0xfe, 0x6b, 0x46, 0x1a, 0x79, 0x01, 0x04, 0x09, 0x0c, 0x22, 0x74, 0x07, 0xe0, +0x04, 0x9a, 0x29, 0x00, 0x30, 0x00, 0x00, 0x97, 0xff, 0xf7, 0x9d, 0xfe, 0x01, 0x04, 0x09, 0x0c, +0x68, 0x78, 0x2a, 0x78, 0x00, 0x02, 0x10, 0x43, 0x40, 0x18, 0x28, 0x70, 0x00, 0x0a, 0x68, 0x70, +0x08, 0x00, 0x8e, 0xe6, 0x70, 0xb5, 0x04, 0x00, 0x0e, 0x00, 0x15, 0x00, 0xff, 0xf2, 0xa8, 0xff, +0xa0, 0x1d, 0x2a, 0x00, 0x31, 0x00, 0x01, 0xf3, 0x16, 0xe9, 0x1a, 0x3c, 0xe0, 0x7e, 0x40, 0x19, +0xe0, 0x76, 0xa8, 0x1d, 0x70, 0xbd, 0x01, 0x00, 0x51, 0x20, 0x01, 0x29, 0x00, 0xd1, 0x73, 0x20, +0x70, 0x47, 0xff, 0xb5, 0x83, 0xb0, 0x0c, 0x00, 0x00, 0x21, 0x1f, 0x00, 0x0c, 0x9e, 0x05, 0x9a, +0x02, 0x91, 0x11, 0x60, 0x00, 0x28, 0x21, 0x60, 0x70, 0xd0, 0x05, 0x00, 0xff, 0x49, 0x04, 0x22, +0xa8, 0x1c, 0x05, 0xf0, 0xab, 0xfc, 0x00, 0x28, 0x68, 0x78, 0x05, 0xd1, 0x81, 0x1c, 0x00, 0x1f, +0xad, 0x1d, 0x00, 0x91, 0x02, 0x90, 0xa2, 0xe0, 0x80, 0x1c, 0x39, 0x1a, 0x0f, 0x04, 0x3f, 0x14, +0x2d, 0x18, 0x00, 0x2f, 0x7e, 0xdd, 0xa4, 0xe0, 0x01, 0x95, 0x2b, 0x78, 0x21, 0x68, 0x01, 0xf3, +0xfe, 0xea, 0x13, 0x15, 0x3f, 0x0b, 0x48, 0x0f, 0x51, 0x19, 0x36, 0x43, 0x56, 0x3a, 0x1d, 0x22, +0x2c, 0x27, 0x31, 0x4c, 0x5b, 0x60, 0x65, 0x00, 0x35, 0x60, 0x20, 0x68, 0x04, 0x22, 0x02, 0xe0, +0x75, 0x60, 0x20, 0x68, 0x10, 0x22, 0x10, 0x43, 0x20, 0x60, 0x4f, 0xe0, 0xb5, 0x60, 0x20, 0x68, +0x01, 0x22, 0xf8, 0xe7, 0xf5, 0x60, 0x20, 0x68, 0x40, 0x22, 0xf4, 0xe7, 0x01, 0x22, 0x75, 0x61, +0x20, 0x68, 0xd2, 0x02, 0xef, 0xe7, 0x01, 0x22, 0xb5, 0x61, 0x20, 0x68, 0x12, 0x03, 0xea, 0xe7, +0x01, 0x22, 0xf5, 0x61, 0x20, 0x68, 0x92, 0x03, 0xe5, 0xe7, 0x01, 0x22, 0x35, 0x62, 0x20, 0x68, +0x52, 0x03, 0xe0, 0xe7, 0x01, 0x22, 0x75, 0x62, 0x20, 0x68, 0xd2, 0x03, 0xdb, 0xe7, 0xb5, 0x62, +0x20, 0x68, 0x80, 0x22, 0xd7, 0xe7, 0x01, 0x22, 0xf5, 0x62, 0x20, 0x68, 0x92, 0x02, 0xd2, 0xe7, +0x35, 0x63, 0x20, 0x68, 0x02, 0x22, 0xce, 0xe7, 0xff, 0x22, 0x75, 0x63, 0x20, 0x68, 0x52, 0x1c, +0xc9, 0xe7, 0xb5, 0x63, 0x20, 0x68, 0x08, 0x22, 0xc5, 0xe7, 0x01, 0x22, 0xf5, 0x63, 0x20, 0x68, +0x12, 0x04, 0xc0, 0xe7, 0x35, 0x64, 0x20, 0x68, 0x20, 0x22, 0xbc, 0xe7, 0x29, 0xe0, 0x01, 0x22, +0x75, 0x64, 0x20, 0x68, 0x52, 0x02, 0xb6, 0xe7, 0x01, 0x22, 0x35, 0x61, 0x20, 0x68, 0x52, 0x04, +0xb1, 0xe7, 0x01, 0x22, 0xb5, 0x64, 0x20, 0x68, 0x92, 0x04, 0xac, 0xe7, 0x01, 0x98, 0x82, 0x78, +0x43, 0x78, 0x10, 0x02, 0x18, 0x43, 0xc0, 0x1c, 0x6b, 0x46, 0x1a, 0x89, 0x00, 0x04, 0x00, 0x0c, +0x90, 0x42, 0x1f, 0xd9, 0x05, 0x98, 0x02, 0x68, 0x20, 0x68, 0x48, 0x40, 0x02, 0x43, 0x05, 0x98, +0x02, 0xa9, 0x00, 0xe0, 0x28, 0xe0, 0x02, 0x60, 0x01, 0x98, 0x00, 0xf3, 0x38, 0xf8, 0x05, 0x00, +0x01, 0xd1, 0x00, 0x20, 0xf7, 0xe5, 0x01, 0x98, 0x6b, 0x46, 0x28, 0x1a, 0x38, 0x1a, 0x07, 0x04, +0x18, 0x89, 0x3f, 0x14, 0x00, 0x28, 0x02, 0xd0, 0x00, 0x2f, 0x00, 0xd0, 0x6c, 0xe7, 0x00, 0x20, +0x00, 0x90, 0x09, 0xe0, 0x6b, 0x46, 0x19, 0x89, 0x2d, 0x18, 0x08, 0x1a, 0x02, 0x90, 0x6b, 0x46, +0x18, 0x89, 0x00, 0x28, 0xf2, 0xd1, 0x00, 0x98, 0x38, 0x1a, 0x07, 0x04, 0x3f, 0x14, 0x00, 0x2f, +0x02, 0xdd, 0x00, 0x2d, 0x00, 0xd0, 0x41, 0xe7, 0x30, 0x00, 0xd4, 0xe5, 0xfe, 0xb5, 0x05, 0x00, +0x00, 0x20, 0x16, 0x00, 0x1f, 0x00, 0x00, 0x29, 0x02, 0x90, 0x01, 0x90, 0x02, 0xd0, 0x2c, 0x00, +0x28, 0x34, 0x06, 0xe0, 0x99, 0x4a, 0x01, 0x21, 0x28, 0x00, 0x04, 0x23, 0xff, 0xf2, 0xc6, 0xff, +0x04, 0x00, 0x00, 0x2c, 0x01, 0xd1, 0x00, 0x20, 0xfe, 0xbd, 0x68, 0x78, 0x29, 0x78, 0x00, 0x06, +0x00, 0x14, 0x08, 0x43, 0x61, 0x1b, 0x40, 0x1a, 0x20, 0x30, 0x03, 0x04, 0x08, 0x98, 0x1d, 0x14, +0x4c, 0x21, 0x01, 0xf3, 0xb4, 0xe8, 0x08, 0x9a, 0x00, 0x92, 0x2b, 0x00, 0x20, 0x00, 0x01, 0xaa, +0x02, 0xa9, 0xff, 0xf7, 0x06, 0xff, 0x00, 0x2e, 0x01, 0xd0, 0x02, 0x99, 0xfe, 0xfb, 0xa8, 0xbe, +0x01, 0x00, 0x00, 0x00, 0x44, 0xba, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x21, 0x0b, 0xd6, 0xfd, +0x31, 0x60, 0x00, 0x2f, 0xe2, 0xd0, 0x01, 0x99, 0x39, 0x60, 0xfe, 0xbd, 0xf0, 0xb5, 0xab, 0xb0, +0x0d, 0x00, 0x30, 0x9f, 0x14, 0x00, 0x1e, 0x00, 0xf0, 0xf7, 0xd3, 0xfc, 0x02, 0x20, 0x20, 0x70, +0x00, 0x20, 0x29, 0x00, 0x60, 0x70, 0x06, 0x22, 0x0c, 0x31, 0xa0, 0x1d, 0x00, 0xf3, 0xf4, 0xef, +0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x80, 0x1d, 0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, +0x30, 0x0a, 0xa6, 0x70, 0xe0, 0x70, 0x38, 0x0a, 0x27, 0x71, 0x60, 0x71, 0x60, 0x78, 0x21, 0x78, +0x00, 0x02, 0x08, 0x43, 0x00, 0x1d, 0x00, 0x04, 0x00, 0x0c, 0x01, 0x0a, 0x20, 0x70, 0x61, 0x70, +0x21, 0x00, 0x0c, 0x31, 0x28, 0x91, 0x69, 0x78, 0x2a, 0x78, 0x09, 0x02, 0x11, 0x43, 0x03, 0xd0, +0xa9, 0x78, 0x09, 0x09, 0x08, 0x29, 0x02, 0xd1, 0x00, 0x20, 0x2b, 0xb0, 0xf0, 0xbd, 0x69, 0x78, +0x2a, 0x78, 0x09, 0x06, 0x09, 0x14, 0x11, 0x43, 0xe1, 0x27, 0xbf, 0x00, 0x08, 0x2e, 0x27, 0x91, +0x46, 0xd8, 0x27, 0x99, 0x3a, 0x00, 0x08, 0x39, 0x0e, 0x04, 0x28, 0x35, 0x36, 0x14, 0x02, 0x92, +0x00, 0x90, 0x5f, 0x49, 0x28, 0x98, 0x04, 0x22, 0x2b, 0x00, 0x01, 0x96, 0x00, 0xf3, 0x7a, 0xf8, +0x07, 0x00, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0xc0, 0x19, 0x00, 0x04, 0x00, 0x0c, +0x01, 0x0a, 0x20, 0x70, 0x61, 0x70, 0xe1, 0x22, 0x00, 0x90, 0x28, 0x98, 0x92, 0x00, 0x02, 0x92, +0x54, 0x49, 0xc0, 0x19, 0x2b, 0x00, 0x04, 0x22, 0x01, 0x96, 0x00, 0xf3, 0x63, 0xf8, 0x39, 0x18, +0x0b, 0x04, 0x61, 0x78, 0x22, 0x78, 0x09, 0x02, 0x11, 0x43, 0x08, 0x18, 0x01, 0x04, 0x09, 0x0c, +0x08, 0x0a, 0x21, 0x70, 0x60, 0x70, 0x00, 0x91, 0x28, 0x98, 0x1b, 0x0c, 0xc0, 0x18, 0x4a, 0x49, +0x04, 0x22, 0x2b, 0x00, 0x01, 0x96, 0x05, 0xf0, 0xa4, 0xfa, 0x61, 0x78, 0x22, 0x78, 0x09, 0x02, +0x11, 0x43, 0x08, 0x18, 0x00, 0x04, 0x00, 0x0c, 0x01, 0x0a, 0x20, 0x70, 0x61, 0x70, 0xac, 0xe7, +0x3f, 0x4a, 0x01, 0x21, 0x28, 0x00, 0x04, 0x23, 0xff, 0xf2, 0x12, 0xff, 0x06, 0x00, 0x3d, 0x4a, +0x01, 0x21, 0x28, 0x00, 0x04, 0x23, 0xff, 0xf2, 0x0b, 0xff, 0x2a, 0x90, 0x3a, 0x4a, 0x01, 0x21, +0x28, 0x00, 0x04, 0x23, 0xff, 0xf2, 0x04, 0xff, 0x29, 0x90, 0x27, 0x98, 0x71, 0x1b, 0x40, 0x1a, +0x20, 0x30, 0x01, 0x04, 0x60, 0x78, 0x23, 0x78, 0x00, 0x02, 0xe1, 0x22, 0x18, 0x43, 0x92, 0x00, +0x09, 0x14, 0x02, 0x92, 0x01, 0x91, 0x00, 0x90, 0x2d, 0x49, 0x28, 0x98, 0x33, 0x00, 0x04, 0x22, +0x00, 0xf3, 0x18, 0xf8, 0x61, 0x78, 0x22, 0x78, 0x09, 0x02, 0x07, 0x00, 0x11, 0x43, 0x08, 0x18, +0x20, 0x70, 0x00, 0x0a, 0x00, 0x2e, 0x60, 0x70, 0x7e, 0xd0, 0xa8, 0x78, 0x00, 0x09, 0x05, 0x28, +0x7a, 0xd1, 0x00, 0x20, 0x14, 0xaa, 0x00, 0x92, 0x02, 0x00, 0x01, 0x00, 0x08, 0x90, 0x28, 0x00, +0x08, 0xab, 0xff, 0xf7, 0xfd, 0xfe, 0x06, 0x00, 0x08, 0x98, 0x80, 0x04, 0x06, 0xd5, 0x33, 0x00, +0x30, 0x6a, 0x20, 0x33, 0x09, 0x22, 0x05, 0xa9, 0xff, 0xf2, 0x89, 0xff, 0x08, 0x98, 0x40, 0x07, +0x05, 0xd5, 0x30, 0x68, 0x33, 0x00, 0x05, 0x22, 0x03, 0xa9, 0xff, 0xf2, 0x80, 0xff, 0x30, 0x68, +0x00, 0x79, 0xc0, 0x07, 0x01, 0xd0, 0x11, 0x20, 0x00, 0xe0, 0x06, 0x20, 0x6b, 0x46, 0x18, 0x71, +0x31, 0x98, 0xd8, 0x72, 0x05, 0x20, 0x58, 0x71, 0x00, 0x20, 0x98, 0x71, 0x32, 0x98, 0xff, 0xf7, +0x04, 0xfe, 0x6b, 0x46, 0x98, 0x72, 0x58, 0x20, 0xd8, 0x71, 0x18, 0x72, 0x04, 0x20, 0x58, 0x72, +0x28, 0x98, 0x08, 0x22, 0xc0, 0x19, 0x01, 0xa9, 0xff, 0xf7, 0xe6, 0xfd, 0x61, 0x78, 0x22, 0x78, +0x09, 0x02, 0x11, 0x43, 0x09, 0x18, 0x21, 0x70, 0x09, 0x0a, 0x38, 0x18, 0x61, 0x70, 0x05, 0xe0, +0x60, 0x16, 0x32, 0x00, 0x20, 0x15, 0x32, 0x00, 0xfc, 0x75, 0x02, 0x00, 0x07, 0x04, 0x3f, 0x0c, +0x00, 0x2e, 0x3d, 0xd0, 0x30, 0x68, 0x00, 0x28, 0x3a, 0xd0, 0x00, 0x79, 0xc0, 0x07, 0x37, 0xd0, +0x0f, 0x20, 0x08, 0xab, 0x18, 0x71, 0x30, 0x6a, 0x00, 0x28, 0x04, 0xd0, 0xc1, 0x1c, 0x06, 0x22, +0xd8, 0x1d, 0x00, 0xf3, 0xe2, 0xee, 0x28, 0x00, 0x20, 0x30, 0x42, 0x7b, 0x06, 0x00, 0x29, 0x00, +0x0b, 0xa8, 0x2e, 0x31, 0x40, 0x1c, 0x00, 0xf3, 0xd8, 0xee, 0x70, 0x7b, 0x08, 0xab, 0x80, 0x1d, +0x01, 0x0a, 0x58, 0x71, 0x99, 0x71, 0x61, 0x78, 0x22, 0x78, 0x09, 0x02, 0x11, 0x43, 0xe1, 0x22, +0x92, 0x00, 0x91, 0x42, 0x14, 0xd8, 0x00, 0xe0, 0x12, 0xe0, 0xc0, 0x1c, 0x02, 0x06, 0x28, 0x98, +0x12, 0x0e, 0xc0, 0x19, 0x09, 0xa9, 0xff, 0xf7, 0x9f, 0xfd, 0x61, 0x78, 0x22, 0x78, 0x09, 0x02, +0x11, 0x43, 0x09, 0x18, 0x21, 0x70, 0x09, 0x0a, 0x38, 0x18, 0x07, 0x04, 0x3f, 0x0c, 0x61, 0x70, +0x2a, 0x98, 0x23, 0x78, 0x41, 0x1b, 0x27, 0x98, 0xe1, 0x22, 0x40, 0x1a, 0x20, 0x30, 0x01, 0x04, +0x60, 0x78, 0x92, 0x00, 0x00, 0x02, 0x18, 0x43, 0x09, 0x14, 0x6b, 0x46, 0x07, 0xc3, 0x04, 0x22, +0x28, 0x98, 0xce, 0x49, 0x2a, 0x9b, 0xc0, 0x19, 0xff, 0xf2, 0x64, 0xff, 0x39, 0x18, 0x0b, 0x04, +0x61, 0x78, 0x22, 0x78, 0x09, 0x02, 0x11, 0x43, 0x08, 0x18, 0x00, 0x04, 0x00, 0x0c, 0x01, 0x0a, +0x20, 0x70, 0x61, 0x70, 0x29, 0x99, 0x1b, 0x0c, 0x00, 0x29, 0x17, 0xd0, 0x29, 0x99, 0x00, 0x90, +0x4a, 0x1b, 0x27, 0x99, 0x28, 0x98, 0x89, 0x1a, 0x20, 0x31, 0x0a, 0x04, 0x12, 0x14, 0x01, 0x92, +0xc0, 0x18, 0xbf, 0x49, 0x29, 0x9b, 0x04, 0x22, 0x05, 0xf0, 0x9b, 0xf9, 0x61, 0x78, 0x22, 0x78, +0x09, 0x02, 0x11, 0x43, 0x08, 0x18, 0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, 0x60, 0x78, 0x21, 0x78, +0x00, 0x02, 0x08, 0x43, 0xa1, 0xe6, 0x10, 0xb5, 0xf0, 0xf7, 0x43, 0xfb, 0xc1, 0x7c, 0xc9, 0x07, +0xc9, 0x0f, 0x49, 0x1c, 0xc1, 0x74, 0x10, 0xbd, 0xaf, 0x21, 0xb2, 0x48, 0x09, 0x01, 0x10, 0xb5, +0x00, 0xf3, 0xfe, 0xee, 0xb0, 0x49, 0x09, 0x20, 0x08, 0x60, 0x00, 0x20, 0x10, 0xbd, 0xf3, 0xb5, +0x00, 0x20, 0xaf, 0xb0, 0x07, 0x00, 0x2e, 0x90, 0x1a, 0x90, 0x19, 0x90, 0x2f, 0x98, 0xf0, 0xf7, +0x28, 0xfb, 0x1b, 0xaa, 0x06, 0x00, 0x00, 0x92, 0x30, 0x98, 0x00, 0x21, 0x1a, 0xaa, 0x19, 0xab, +0xff, 0xf7, 0x0e, 0xfe, 0x04, 0x00, 0x05, 0xd0, 0x20, 0x68, 0x00, 0x28, 0x02, 0xd0, 0x20, 0x6a, +0x00, 0x28, 0x02, 0xd1, 0x00, 0x20, 0x31, 0xb0, 0xf0, 0xbd, 0x19, 0x99, 0x9f, 0x4d, 0x89, 0x04, +0x05, 0xd5, 0x23, 0x00, 0x20, 0x33, 0x2a, 0x00, 0x03, 0xa9, 0xff, 0xf2, 0x90, 0xfe, 0x19, 0x98, +0x40, 0x07, 0x05, 0xd5, 0x20, 0x68, 0x23, 0x00, 0x2a, 0x00, 0x01, 0xa9, 0xff, 0xf2, 0x87, 0xfe, +0x35, 0x00, 0xff, 0x35, 0x33, 0x35, 0x0f, 0xe0, 0x21, 0x6a, 0x06, 0x22, 0xc9, 0x1c, 0x68, 0x1c, +0x05, 0xf0, 0xd6, 0xf9, 0x00, 0x28, 0x01, 0xd1, 0x28, 0x00, 0xdc, 0xe7, 0x28, 0x78, 0x6d, 0x1c, +0x45, 0x19, 0x7f, 0x1c, 0x3f, 0x06, 0x3f, 0x0e, 0x70, 0x7f, 0xb8, 0x42, 0xec, 0xd8, 0x05, 0xf0, +0xa3, 0xfc, 0x18, 0x90, 0x59, 0x21, 0x28, 0x00, 0x00, 0xf3, 0xd4, 0xee, 0x20, 0x85, 0xee, 0x70, +0x01, 0x00, 0x00, 0x00, 0x40, 0xbe, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x72, 0xd1, 0x05, 0x91, +0x20, 0x68, 0x06, 0x22, 0xc0, 0x78, 0x68, 0x73, 0x2e, 0x9f, 0x21, 0x6a, 0x7f, 0x1c, 0xc9, 0x1c, +0x68, 0x1c, 0x00, 0xf3, 0x04, 0xee, 0x30, 0x99, 0xbf, 0x1d, 0x06, 0x22, 0x0c, 0x31, 0xe8, 0x1d, +0x00, 0xf3, 0xfc, 0xed, 0x21, 0x6a, 0xbf, 0x1d, 0x88, 0x78, 0x4b, 0x78, 0x02, 0x02, 0x1a, 0x43, +0x28, 0x00, 0x92, 0x1f, 0x09, 0x31, 0x0e, 0x30, 0x00, 0xf3, 0xf0, 0xed, 0x20, 0x6a, 0xbf, 0x1f, +0x81, 0x78, 0x42, 0x78, 0x08, 0x02, 0x10, 0x43, 0xc1, 0x19, 0x30, 0x00, 0xff, 0x30, 0x0e, 0x22, +0x21, 0x30, 0x29, 0x70, 0xc2, 0x73, 0x02, 0x8a, 0x49, 0x1c, 0x51, 0x18, 0x01, 0x82, 0x70, 0x7f, +0x40, 0x1c, 0x70, 0x77, 0x30, 0x7f, 0x40, 0x1c, 0x30, 0x77, 0x18, 0x98, 0x05, 0xf0, 0x6a, 0xfc, +0x2f, 0x98, 0x05, 0x21, 0xfa, 0xf7, 0xca, 0xfe, 0xb0, 0xe7, 0xf3, 0xb5, 0x85, 0xb0, 0x00, 0x25, +0x0f, 0x00, 0x00, 0x29, 0x43, 0xd0, 0x05, 0x98, 0xf0, 0xf7, 0x9d, 0xfa, 0x06, 0x00, 0xff, 0x30, +0x21, 0x30, 0x04, 0x90, 0x01, 0x8a, 0x38, 0x78, 0x40, 0x1c, 0x81, 0x42, 0x37, 0xd3, 0x00, 0x06, +0x00, 0x0e, 0x34, 0x00, 0xff, 0x34, 0x33, 0x34, 0x03, 0x90, 0x0c, 0xe0, 0x06, 0x22, 0x79, 0x1c, +0x60, 0x1c, 0x05, 0xf0, 0x67, 0xf9, 0x00, 0x28, 0x08, 0xd0, 0x20, 0x78, 0x64, 0x1c, 0x04, 0x19, +0x6d, 0x1c, 0x2d, 0x06, 0x2d, 0x0e, 0x70, 0x7f, 0xa8, 0x42, 0xef, 0xd8, 0x05, 0xf0, 0x36, 0xfc, +0x02, 0x90, 0x70, 0x7f, 0x40, 0x1e, 0xa8, 0x42, 0x26, 0xdd, 0x21, 0x78, 0x60, 0x1c, 0x0f, 0x18, +0x1e, 0xe0, 0x38, 0x78, 0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0xbc, 0x42, 0x01, 0x90, 0x04, 0xd0, +0x01, 0x9a, 0x39, 0x00, 0x20, 0x00, 0x00, 0xf3, 0x92, 0xed, 0x60, 0x1c, 0x08, 0xf0, 0x13, 0xfe, +0x00, 0x28, 0x07, 0xd0, 0x08, 0xf0, 0xbd, 0xfd, 0x41, 0x6e, 0x00, 0x29, 0x01, 0xd1, 0x00, 0x20, +0x24, 0xe5, 0x44, 0x66, 0x01, 0x98, 0x24, 0x18, 0x3f, 0x18, 0x6d, 0x1c, 0x2d, 0x06, 0x2d, 0x0e, +0x70, 0x7f, 0x40, 0x1e, 0xa8, 0x42, 0xdc, 0xdc, 0x04, 0x98, 0x01, 0x8a, 0x03, 0x98, 0x08, 0x1a, +0x04, 0x99, 0x08, 0x82, 0x70, 0x7f, 0x40, 0x1e, 0x70, 0x77, 0x30, 0x7f, 0x40, 0x1e, 0x30, 0x77, +0x02, 0x98, 0x05, 0xf0, 0xff, 0xfb, 0x05, 0x98, 0x05, 0x21, 0xfa, 0xf7, 0x5f, 0xfe, 0x01, 0x20, +0x04, 0xe5, 0x00, 0x28, 0x09, 0xd0, 0x01, 0x7a, 0x03, 0x29, 0x06, 0xd1, 0x40, 0x7a, 0x01, 0x21, +0x02, 0x28, 0x00, 0xd0, 0x00, 0x21, 0x08, 0x00, 0x70, 0x47, 0x00, 0x20, 0x70, 0x47, 0x10, 0xb5, +0x04, 0x00, 0x03, 0x20, 0x08, 0xf0, 0x6e, 0xfd, 0x05, 0xe0, 0x41, 0x7a, 0xa1, 0x42, 0x04, 0xd0, +0x03, 0x21, 0xef, 0xf7, 0x2b, 0xff, 0x00, 0x28, 0xf7, 0xd1, 0x10, 0xbd, 0x10, 0xb5, 0x0c, 0x00, +0x03, 0x21, 0xef, 0xf7, 0x23, 0xff, 0x00, 0x28, 0x02, 0xd0, 0x41, 0x7a, 0xa1, 0x42, 0xf7, 0xd1, +0x10, 0xbd, 0xf8, 0xb5, 0x05, 0x00, 0x00, 0x7a, 0x03, 0x28, 0x25, 0xd1, 0x28, 0x00, 0x80, 0x30, +0xc0, 0x68, 0x1c, 0x4a, 0x44, 0x68, 0x04, 0x23, 0x60, 0x78, 0x21, 0x78, 0x06, 0x02, 0x27, 0x00, +0x0e, 0x43, 0x20, 0x37, 0x01, 0x21, 0x20, 0x00, 0xff, 0xf2, 0xc4, 0xfc, 0x41, 0x78, 0xc2, 0x1b, +0x89, 0x1c, 0x52, 0x18, 0x63, 0x78, 0xb2, 0x1a, 0x26, 0x78, 0x1b, 0x02, 0x33, 0x43, 0x5b, 0x1a, +0x23, 0x70, 0x1b, 0x0a, 0x00, 0x2a, 0x63, 0x70, 0x02, 0xd0, 0x41, 0x18, 0x00, 0xf3, 0x16, 0xed, +0x21, 0x00, 0x28, 0x00, 0xff, 0xf7, 0x76, 0xfb, 0xf8, 0xbd, 0x17, 0x21, 0x49, 0x01, 0x40, 0x18, +0x40, 0x78, 0x02, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x70, 0x47, 0x00, 0x20, 0x70, 0x47, 0x00, 0x00, +0x20, 0x15, 0x32, 0x00, 0xfc, 0x75, 0x02, 0x00, 0x10, 0x51, 0x01, 0xc0, 0x44, 0xbc, 0x02, 0x00, +0xff, 0xff, 0xff, 0xff, 0x60, 0x16, 0x32, 0x00, 0x70, 0xb5, 0x05, 0x00, 0xf0, 0xf7, 0xcb, 0xf9, +0x04, 0x00, 0x01, 0x20, 0xfa, 0xf7, 0xd6, 0xfd, 0xa1, 0x68, 0x10, 0x20, 0x81, 0x43, 0x17, 0x20, +0x40, 0x01, 0xa1, 0x60, 0x03, 0x21, 0x28, 0x18, 0x01, 0x70, 0x02, 0x21, 0x41, 0x70, 0x00, 0x20, +0xfa, 0xf7, 0x7c, 0xf9, 0x70, 0xbd, 0x00, 0x28, 0x03, 0xd0, 0x15, 0x21, 0x89, 0x01, 0x40, 0x18, +0x00, 0x6b, 0x70, 0x47, 0xff, 0xb5, 0x10, 0x00, 0x85, 0xb0, 0xff, 0x22, 0x0d, 0x00, 0x0f, 0x9f, +0x0e, 0x9e, 0x1c, 0x00, 0x91, 0x32, 0x0e, 0x2b, 0x01, 0xd1, 0xe1, 0x22, 0x92, 0x00, 0x03, 0x00, +0x03, 0xa9, 0x04, 0xa8, 0xe9, 0xf7, 0xb5, 0xf9, 0x00, 0x28, 0x1b, 0xd0, 0x10, 0x9a, 0x02, 0x92, +0x03, 0x9a, 0x00, 0x96, 0x05, 0x98, 0x23, 0x00, 0x10, 0x32, 0x29, 0x00, 0x01, 0x97, 0xff, 0xf7, +0xb7, 0xfc, 0x03, 0x99, 0x02, 0x0a, 0x88, 0x72, 0x00, 0x28, 0xca, 0x72, 0x04, 0xd0, 0x04, 0x99, +0x05, 0x98, 0xe9, 0xf7, 0x69, 0xf9, 0x02, 0xe0, 0x04, 0x98, 0x01, 0xf3, 0x0d, 0xfa, 0x00, 0x20, +0x09, 0xb0, 0xf0, 0xbd, 0x01, 0x20, 0xfb, 0xe7, 0xfe, 0xb5, 0x16, 0x00, 0x00, 0x22, 0x01, 0x92, +0x00, 0x93, 0x02, 0x92, 0x33, 0x00, 0x49, 0x22, 0xff, 0xf7, 0xc4, 0xff, 0xfe, 0xbd, 0x70, 0xb5, +0x8a, 0xb0, 0x0d, 0x00, 0x09, 0xa8, 0xe9, 0xf7, 0x79, 0xff, 0x28, 0x00, 0xf0, 0xf7, 0x6b, 0xf9, +0x04, 0x00, 0x68, 0x7a, 0x01, 0x28, 0x3c, 0xd1, 0x17, 0x21, 0x49, 0x01, 0x02, 0x20, 0x69, 0x18, +0x08, 0x70, 0xe0, 0x7f, 0x01, 0x21, 0x00, 0x28, 0x04, 0xd0, 0x40, 0x1e, 0x00, 0x06, 0x00, 0x0e, +0xe0, 0x77, 0x19, 0xd1, 0xa0, 0x7c, 0x6b, 0x46, 0x40, 0x08, 0x40, 0x00, 0xa0, 0x74, 0x20, 0x20, +0x98, 0x80, 0x51, 0x20, 0x00, 0x01, 0x21, 0x18, 0x06, 0x22, 0x0e, 0x00, 0x04, 0xa8, 0x00, 0xf3, +0xe0, 0xec, 0x02, 0x22, 0x28, 0x00, 0x00, 0x23, 0x01, 0xa9, 0xff, 0xf7, 0xc5, 0xff, 0x06, 0x21, +0x30, 0x00, 0x00, 0xf3, 0x08, 0xed, 0x02, 0xe0, 0xa0, 0x7c, 0x08, 0x43, 0xa0, 0x74, 0x20, 0x00, +0xff, 0xf7, 0x81, 0xff, 0x00, 0x28, 0x05, 0xd0, 0xca, 0x20, 0x01, 0x5d, 0x09, 0x98, 0x00, 0x22, +0x0a, 0xf0, 0xdc, 0xef, 0x28, 0x00, 0xff, 0xf7, 0x5f, 0xff, 0xa0, 0x68, 0x10, 0x21, 0x88, 0x43, +0xa0, 0x60, 0x0a, 0xb0, 0x70, 0xbd, 0x17, 0x23, 0x5b, 0x01, 0xc0, 0x18, 0x04, 0x22, 0x0b, 0x00, +0x00, 0xb5, 0x00, 0xf3, 0x68, 0xee, 0x0f, 0x0e, 0x09, 0x0c, 0x0f, 0x12, 0x15, 0x18, 0x1a, 0x1c, +0x21, 0x26, 0x28, 0x2a, 0x2c, 0x2e, 0x0e, 0x00, 0x03, 0x21, 0x02, 0x70, 0x22, 0xe0, 0x02, 0x70, +0x42, 0x70, 0x00, 0xbd, 0x05, 0x21, 0x02, 0x70, 0x1c, 0xe0, 0x06, 0x21, 0x02, 0x70, 0x19, 0xe0, +0x07, 0x21, 0x02, 0x70, 0x16, 0xe0, 0x08, 0x21, 0x14, 0xe0, 0x09, 0x21, 0x12, 0xe0, 0x41, 0x78, +0x01, 0x29, 0xee, 0xd0, 0x0a, 0x21, 0x0d, 0xe0, 0x41, 0x78, 0x01, 0x29, 0xe9, 0xd0, 0x0b, 0x21, +0x08, 0xe0, 0x0c, 0x21, 0x06, 0xe0, 0x0d, 0x21, 0x04, 0xe0, 0x0e, 0x21, 0x02, 0xe0, 0x0f, 0x21, +0x00, 0xe0, 0x10, 0x21, 0x41, 0x70, 0x00, 0xbd, 0x70, 0xb5, 0x0d, 0x00, 0x08, 0x00, 0x88, 0xb0, +0xf0, 0xf7, 0xe9, 0xf8, 0x04, 0x00, 0xc0, 0x7f, 0x00, 0x28, 0x04, 0xd0, 0x07, 0xd3, 0x48, 0x56, +0x01, 0x00, 0x00, 0x00, 0x3c, 0xc2, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x70, 0x28, 0xdd, 0x87, +0x40, 0x1e, 0x00, 0x06, 0x00, 0x0e, 0xe0, 0x77, 0x18, 0xd1, 0x20, 0x20, 0x6b, 0x46, 0x18, 0x80, +0x51, 0x20, 0x00, 0x01, 0x21, 0x18, 0x06, 0x22, 0x0e, 0x00, 0x03, 0xa8, 0x00, 0xf3, 0x6a, 0xec, +0x08, 0x22, 0x28, 0x00, 0x00, 0x23, 0x69, 0x46, 0xff, 0xf7, 0x50, 0xff, 0x06, 0x21, 0x30, 0x00, +0x00, 0xf3, 0x92, 0xec, 0xa0, 0x7c, 0xf7, 0x21, 0x08, 0x40, 0x02, 0xe0, 0xa0, 0x7c, 0x08, 0x21, +0x08, 0x43, 0xa0, 0x74, 0xa0, 0x68, 0x10, 0x21, 0x88, 0x43, 0xa0, 0x60, 0x28, 0x00, 0xff, 0xf7, +0xed, 0xfe, 0x08, 0xb0, 0x70, 0xbd, 0xf0, 0xb5, 0x0e, 0x00, 0x08, 0x00, 0x89, 0xb0, 0xf0, 0xf7, +0xb4, 0xf8, 0x81, 0x7c, 0x04, 0x00, 0xef, 0x20, 0x01, 0x40, 0xa1, 0x74, 0x51, 0x21, 0x20, 0x20, +0x09, 0x01, 0x6b, 0x46, 0x61, 0x18, 0x98, 0x80, 0x06, 0x22, 0x0d, 0x00, 0x04, 0xa8, 0x00, 0xf3, +0x3a, 0xec, 0x17, 0x22, 0x30, 0x00, 0x32, 0x23, 0x01, 0xa9, 0xff, 0xf7, 0x1f, 0xff, 0x06, 0x21, +0x28, 0x00, 0x00, 0xf3, 0x62, 0xec, 0xff, 0x4f, 0x09, 0x21, 0xb8, 0x68, 0xc9, 0x01, 0x40, 0x1c, +0x65, 0x18, 0xb8, 0x60, 0xa8, 0x6b, 0x00, 0x28, 0x06, 0xd0, 0xea, 0xf7, 0x2b, 0xf8, 0x00, 0x20, +0xa8, 0x63, 0xf8, 0x68, 0x40, 0x1c, 0xf8, 0x60, 0xa0, 0x68, 0x10, 0x21, 0x88, 0x43, 0xa0, 0x60, +0x30, 0x00, 0xff, 0xf7, 0xb3, 0xfe, 0xfd, 0xe6, 0x08, 0x00, 0x10, 0xb5, 0xf0, 0xf7, 0x7d, 0xf8, +0x81, 0x68, 0x20, 0x22, 0x91, 0x43, 0x81, 0x60, 0x10, 0xbd, 0x10, 0xb5, 0xf0, 0xf7, 0x75, 0xf8, +0xc1, 0x6b, 0x04, 0x00, 0xec, 0x48, 0x00, 0x29, 0x0b, 0xd1, 0x07, 0x22, 0x20, 0x18, 0xeb, 0xa1, +0x00, 0xf3, 0x96, 0xeb, 0xe8, 0x48, 0xc0, 0x1d, 0x20, 0x18, 0xff, 0xf2, 0x7c, 0xfd, 0x09, 0x20, +0x07, 0xe0, 0x40, 0x22, 0x52, 0x5c, 0x20, 0x18, 0x00, 0xf3, 0x8a, 0xeb, 0xe0, 0x6b, 0x40, 0x30, +0x00, 0x78, 0x11, 0x21, 0x80, 0x1d, 0x89, 0x01, 0x61, 0x18, 0xc8, 0x73, 0x00, 0x0a, 0x08, 0x74, +0xa0, 0x68, 0x04, 0x21, 0x88, 0x43, 0xa0, 0x60, 0x10, 0xbd, 0x10, 0xb5, 0xf0, 0xf7, 0x4d, 0xf8, +0x80, 0x68, 0xc0, 0x06, 0xc0, 0x0f, 0x10, 0xbd, 0x00, 0x28, 0x06, 0xd0, 0x42, 0x7a, 0x01, 0x2a, +0x03, 0xd1, 0x17, 0x22, 0x52, 0x01, 0x80, 0x18, 0x01, 0x70, 0x70, 0x47, 0x01, 0x7a, 0x03, 0x29, +0x01, 0xd1, 0x01, 0x21, 0xf0, 0xe7, 0x70, 0x47, 0x90, 0x42, 0x0b, 0xd3, 0x90, 0x42, 0x07, 0xd8, +0x0f, 0x28, 0x03, 0xd1, 0x0f, 0x2a, 0x01, 0xd1, 0x01, 0x20, 0x70, 0x47, 0x00, 0x29, 0x01, 0xd0, +0x03, 0x20, 0x70, 0x47, 0x02, 0x20, 0x70, 0x47, 0xf3, 0xb5, 0x00, 0x20, 0x83, 0xb0, 0x02, 0x90, +0x03, 0x98, 0xf0, 0xf7, 0x22, 0xf8, 0x13, 0x21, 0x89, 0x01, 0x46, 0x18, 0xf5, 0x6a, 0x29, 0x27, +0xc4, 0x4a, 0x04, 0x00, 0x7f, 0x01, 0x00, 0x2d, 0x15, 0xd0, 0xe0, 0x19, 0x80, 0x7a, 0x00, 0x28, +0x11, 0xd0, 0x28, 0x79, 0x6b, 0x46, 0x18, 0x71, 0x68, 0x79, 0x58, 0x71, 0x05, 0x20, 0x00, 0x02, +0x20, 0x18, 0x00, 0x6b, 0x01, 0x02, 0x00, 0x04, 0x00, 0x0e, 0x01, 0x43, 0x02, 0x91, 0x18, 0x7a, +0x28, 0x71, 0x58, 0x7a, 0x68, 0x71, 0x04, 0x99, 0x03, 0x98, 0xff, 0xf7, 0x09, 0xf8, 0xf0, 0x6a, +0x00, 0x28, 0x08, 0xd0, 0xe0, 0x19, 0x80, 0x7a, 0x00, 0x28, 0x04, 0xd0, 0x6b, 0x46, 0x18, 0x79, +0x28, 0x71, 0x58, 0x79, 0x68, 0x71, 0x05, 0xb0, 0xf0, 0xbd, 0x70, 0xb5, 0x0c, 0x00, 0xef, 0xf7, +0xec, 0xff, 0xd8, 0x21, 0x09, 0x5a, 0x03, 0x00, 0xc9, 0x1e, 0x0d, 0x04, 0x2d, 0x0c, 0xdd, 0x33, +0x13, 0xe0, 0x42, 0x78, 0x00, 0x21, 0x08, 0xe0, 0x46, 0x18, 0xb6, 0x78, 0xa6, 0x42, 0x01, 0xd1, +0x00, 0x78, 0x70, 0xbd, 0x49, 0x1c, 0x09, 0x04, 0x09, 0x0c, 0x8a, 0x42, 0xf4, 0xd8, 0xa8, 0x1a, +0x80, 0x1e, 0x05, 0x04, 0x2d, 0x0c, 0x9b, 0x1c, 0xd3, 0x18, 0x18, 0x00, 0x00, 0x2d, 0xe8, 0xd1, +0x51, 0x20, 0x70, 0xbd, 0xff, 0xb5, 0x83, 0xb0, 0x16, 0x00, 0x17, 0x00, 0x02, 0x90, 0x08, 0x04, +0x00, 0x0c, 0x01, 0x90, 0x06, 0x98, 0x00, 0x28, 0x25, 0xd0, 0x00, 0x29, 0x23, 0xd0, 0x1f, 0xe0, +0x01, 0x98, 0x02, 0x9c, 0x05, 0x04, 0x2d, 0x14, 0x0f, 0xe0, 0x0c, 0x9a, 0x00, 0x92, 0x7b, 0x78, +0x61, 0x78, 0x3e, 0x00, 0x3a, 0x00, 0x20, 0x00, 0xff, 0xf7, 0x01, 0xf8, 0x60, 0x78, 0xa4, 0x1c, +0x29, 0x1a, 0x89, 0x1e, 0x0d, 0x04, 0x2d, 0x14, 0x04, 0x19, 0x00, 0x2d, 0xed, 0xdc, 0x70, 0x78, +0x06, 0x99, 0xbf, 0x1c, 0x09, 0x1a, 0x89, 0x1e, 0x09, 0x04, 0x09, 0x14, 0xc7, 0x19, 0x06, 0x91, +0x06, 0x98, 0x00, 0x28, 0xdc, 0xdc, 0x07, 0xb0, 0xf0, 0xbd, 0xf7, 0xb5, 0x82, 0xb0, 0xef, 0xf7, +0x94, 0xff, 0x05, 0x00, 0x03, 0x98, 0x00, 0x28, 0x9d, 0xd0, 0x03, 0x98, 0x41, 0x69, 0x25, 0x20, +0x40, 0x01, 0x00, 0x29, 0x02, 0xd1, 0x04, 0x21, 0x28, 0x18, 0x29, 0xe0, 0x28, 0x18, 0x01, 0x90, +0x80, 0x7c, 0x00, 0x28, 0x8f, 0xd1, 0x28, 0x00, 0x04, 0x99, 0xd7, 0x30, 0xff, 0xf2, 0x7e, 0xf9, +0x04, 0x9a, 0x2c, 0x00, 0xc0, 0x34, 0x00, 0x92, 0x20, 0x8b, 0xc0, 0x1e, 0x03, 0x04, 0x03, 0x98, +0x1b, 0x14, 0x40, 0x69, 0x81, 0x78, 0x42, 0x78, 0x09, 0x06, 0x09, 0x14, 0x11, 0x43, 0xc9, 0x1e, +0x09, 0x04, 0x2a, 0x00, 0x09, 0x14, 0x80, 0x1d, 0xdd, 0x32, 0xff, 0xf7, 0x9b, 0xff, 0x04, 0x98, +0x81, 0x78, 0x42, 0x78, 0x08, 0x02, 0x10, 0x43, 0x05, 0x28, 0x03, 0xd8, 0x01, 0x98, 0x07, 0x21, +0x81, 0x74, 0x68, 0xe7, 0x00, 0x21, 0xc0, 0x1e, 0x8c, 0x46, 0x8e, 0x46, 0x04, 0x99, 0x05, 0x04, +0x2d, 0x0c, 0x8b, 0x1d, 0x1f, 0xe0, 0x4a, 0x78, 0x00, 0x20, 0x14, 0xe0, 0x03, 0x9e, 0x36, 0x69, +0x00, 0x2e, 0x06, 0xd0, 0x0f, 0x18, 0xbf, 0x78, 0xf6, 0x79, 0xb7, 0x42, 0x01, 0xd1, 0x01, 0x26, +0xb6, 0x46, 0x0e, 0x18, 0xb6, 0x78, 0xa7, 0x7c, 0xbe, 0x42, 0x01, 0xd1, 0x01, 0x26, 0xb4, 0x46, +0x40, 0x1c, 0x00, 0x04, 0x00, 0x0c, 0x82, 0x42, 0xe8, 0xd8, 0xa8, 0x1a, 0x80, 0x1e, 0x05, 0x04, +0x2d, 0x0c, 0x9b, 0x1c, 0xd3, 0x18, 0x19, 0x00, 0x00, 0x2d, 0xdc, 0xd1, 0x70, 0x46, 0x01, 0x28, +0x03, 0xd1, 0x03, 0x98, 0x00, 0x69, 0xc0, 0x79, 0x08, 0xe0, 0x60, 0x46, 0x01, 0x28, 0x03, 0xd1, +0x01, 0x98, 0xa1, 0x7c, 0x01, 0x77, 0x2e, 0xe7, 0x04, 0x98, 0x00, 0x7a, 0x01, 0x99, 0x08, 0x77, +0xa0, 0x74, 0x28, 0xe7, 0xf8, 0xb5, 0x0d, 0x00, 0xff, 0x21, 0x00, 0x91, 0xef, 0xf7, 0x15, 0xff, +0x69, 0x78, 0x2a, 0x78, 0x09, 0x06, 0x09, 0x14, 0x11, 0x43, 0x08, 0x39, 0x04, 0x00, 0x0b, 0x04, +0x28, 0x00, 0x3d, 0x49, 0x28, 0x30, 0x1b, 0x14, 0x04, 0x22, 0xff, 0xf2, 0x45, 0xfc, 0x05, 0x21, +0x09, 0x02, 0x61, 0x18, 0x0a, 0x6b, 0x25, 0x25, 0x6d, 0x01, 0x01, 0x2a, 0x05, 0xd0, 0x05, 0x2a, +0x03, 0xd0, 0x04, 0x2a, 0x01, 0xd0, 0x02, 0x20, 0x06, 0xe0, 0x29, 0x21, 0x49, 0x01, 0x61, 0x18, +0x89, 0x8a, 0x00, 0x29, 0x03, 0xd1, 0x01, 0x20, 0x61, 0x19, 0x88, 0x74, 0xf8, 0xbd, 0x00, 0x28, +0xf1, 0xd0, 0x41, 0x78, 0x2d, 0x4f, 0x80, 0x1d, 0x1e, 0xe0, 0x43, 0x78, 0x88, 0x14, 0xbe, 0x4d, +0x01, 0x00, 0x00, 0x00, 0x38, 0xc6, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x23, 0xf2, 0x0e, 0xeb, +0x06, 0x78, 0x1b, 0x02, 0x33, 0x43, 0x1e, 0x02, 0x1b, 0x0a, 0x1e, 0x43, 0x33, 0x04, 0xbb, 0x42, +0x05, 0xd1, 0x01, 0x79, 0x6b, 0x46, 0x19, 0x70, 0x40, 0x79, 0x58, 0x70, 0x10, 0xe0, 0xc6, 0x78, +0x83, 0x78, 0x36, 0x02, 0x1e, 0x43, 0x33, 0x02, 0x36, 0x0a, 0x33, 0x43, 0xc9, 0x1a, 0x09, 0x1f, +0x1b, 0x04, 0x09, 0x04, 0x1b, 0x0c, 0x09, 0x14, 0x18, 0x18, 0x00, 0x1d, 0x00, 0x29, 0xde, 0xd1, +0x00, 0x98, 0x00, 0x99, 0x00, 0x02, 0x09, 0x0a, 0x08, 0x43, 0x00, 0x04, 0x00, 0x0c, 0x05, 0x28, +0x00, 0x90, 0x02, 0xd1, 0x01, 0x2a, 0xc0, 0xd1, 0xf8, 0xbd, 0x00, 0x98, 0x01, 0x28, 0x02, 0xd1, +0x05, 0x2a, 0xba, 0xd1, 0xf8, 0xbd, 0x00, 0x98, 0x04, 0x28, 0xfb, 0xd1, 0x04, 0x2a, 0xb4, 0xd1, +0xf8, 0xbd, 0xff, 0xb5, 0xe7, 0xb0, 0x00, 0x24, 0x27, 0x00, 0x4f, 0x94, 0x4e, 0x94, 0x67, 0x98, +0x1f, 0x94, 0x1e, 0x94, 0x1d, 0x94, 0xef, 0xf7, 0xa2, 0xfe, 0x29, 0x22, 0x05, 0x00, 0x04, 0x21, +0x52, 0x01, 0x86, 0x18, 0xb1, 0x75, 0x0d, 0xe0, 0x78, 0xf6, 0x00, 0xc0, 0x57, 0x04, 0x00, 0x00, +0x44, 0x49, 0x52, 0x45, 0x43, 0x54, 0x2d, 0x00, 0x01, 0x08, 0x00, 0x00, 0x20, 0x15, 0x32, 0x00, +0x00, 0x00, 0x12, 0x10, 0x70, 0x7f, 0xfd, 0x21, 0x08, 0x40, 0x70, 0x77, 0x68, 0x98, 0x00, 0x28, +0x08, 0xd0, 0x52, 0xaa, 0x00, 0x92, 0x68, 0x98, 0x01, 0x21, 0x1f, 0xaa, 0x1e, 0xab, 0xff, 0xf7, +0x6d, 0xf9, 0x04, 0x00, 0x6a, 0x98, 0x02, 0x28, 0x07, 0xd1, 0x1f, 0x98, 0xc1, 0x07, 0xff, 0x48, +0x7e, 0xd0, 0xa1, 0x68, 0xc9, 0x78, 0x00, 0x29, 0x7a, 0xd1, 0x1e, 0x98, 0xc0, 0x06, 0x05, 0xd5, +0x60, 0x68, 0x23, 0x1d, 0x04, 0x22, 0x1c, 0xa9, 0xff, 0xf2, 0xef, 0xf9, 0x1e, 0x98, 0x80, 0x03, +0x06, 0xd5, 0x23, 0x00, 0x20, 0x69, 0x10, 0x33, 0x08, 0x22, 0x1a, 0xa9, 0xff, 0xf2, 0xe5, 0xf9, +0x1e, 0x98, 0x00, 0x05, 0x06, 0xd5, 0x23, 0x00, 0x60, 0x69, 0x14, 0x33, 0x58, 0x22, 0x04, 0xa9, +0xff, 0xf2, 0xdb, 0xf9, 0x1e, 0x98, 0xc0, 0x07, 0x06, 0xd0, 0x23, 0x00, 0xa0, 0x68, 0x08, 0x33, +0x04, 0x22, 0x03, 0xa9, 0xff, 0xf2, 0xd1, 0xf9, 0x25, 0x21, 0x49, 0x01, 0x00, 0x20, 0x6f, 0x18, +0xb8, 0x74, 0x01, 0x20, 0x38, 0x82, 0x00, 0x20, 0x08, 0xf0, 0x88, 0xf9, 0x21, 0x90, 0x02, 0x20, +0x08, 0xf0, 0x84, 0xf9, 0x20, 0x90, 0x21, 0x98, 0x00, 0x28, 0x22, 0xd0, 0x21, 0x98, 0xc0, 0x68, +0xc0, 0x04, 0x1e, 0xd5, 0x02, 0xa9, 0x01, 0xa8, 0x0a, 0xf0, 0xf0, 0xec, 0x28, 0x00, 0xd7, 0x30, +0x38, 0xa9, 0xff, 0xf2, 0x2d, 0xf8, 0x02, 0x98, 0x01, 0x06, 0x67, 0x98, 0x09, 0x0e, 0xff, 0xf7, +0x36, 0xfe, 0x38, 0xab, 0x98, 0x71, 0x02, 0x98, 0x18, 0x72, 0x01, 0x20, 0xd8, 0x71, 0x98, 0x78, +0x59, 0x78, 0x00, 0x02, 0x08, 0x43, 0xc0, 0x1c, 0x58, 0x70, 0x00, 0x0a, 0x98, 0x70, 0x01, 0x20, +0x1d, 0x90, 0x6a, 0x98, 0x00, 0x28, 0x00, 0xd1, 0x52, 0xac, 0x20, 0x98, 0xe9, 0xf7, 0xe3, 0xfe, +0x01, 0x28, 0x02, 0xd0, 0x1d, 0x98, 0x00, 0x28, 0x22, 0xd0, 0x67, 0x98, 0x08, 0xf0, 0x65, 0xf9, +0x29, 0x00, 0x02, 0x90, 0xcb, 0x31, 0x11, 0x20, 0x50, 0xaa, 0xff, 0xf2, 0x12, 0xf8, 0x02, 0x98, +0x41, 0x7a, 0x67, 0x98, 0xff, 0xf7, 0x0b, 0xfe, 0x50, 0xab, 0x98, 0x71, 0x02, 0x98, 0x00, 0xe0, +0xe8, 0xe1, 0x40, 0x7a, 0xd8, 0x71, 0x98, 0x78, 0x59, 0x78, 0x00, 0x02, 0x08, 0x43, 0x80, 0x1c, +0x58, 0x70, 0x00, 0x0a, 0x98, 0x70, 0x50, 0xa8, 0x20, 0x61, 0x01, 0x20, 0x40, 0x04, 0x4e, 0x90, +0x58, 0x21, 0x22, 0xa8, 0x00, 0xf3, 0xaa, 0xe9, 0x69, 0x98, 0x6a, 0x99, 0x20, 0x30, 0x00, 0x29, +0x66, 0x90, 0x17, 0xd1, 0x67, 0x98, 0xff, 0xf7, 0x94, 0xfa, 0x28, 0x00, 0xc0, 0x30, 0x81, 0x7d, +0xea, 0x7c, 0x49, 0x08, 0xd2, 0x07, 0x49, 0x00, 0xd2, 0x0f, 0x11, 0x43, 0x81, 0x75, 0x1d, 0x98, +0x00, 0x28, 0x06, 0xd0, 0x38, 0xa8, 0x60, 0x61, 0x4e, 0x98, 0x01, 0x21, 0xc9, 0x02, 0x08, 0x43, +0x4e, 0x90, 0x73, 0xe1, 0x68, 0x99, 0x67, 0x98, 0xff, 0xf7, 0xa6, 0xfe, 0x6a, 0x98, 0x01, 0x28, +0x17, 0xd1, 0x00, 0x2c, 0x2f, 0xd0, 0x20, 0x6c, 0x00, 0x28, 0x10, 0xd0, 0x60, 0x69, 0x00, 0x28, +0x0d, 0xd0, 0x20, 0x68, 0x00, 0x28, 0x0a, 0xd0, 0xe0, 0x68, 0x00, 0x28, 0x07, 0xd0, 0x60, 0x6c, +0x00, 0x28, 0x04, 0xd0, 0x20, 0x6a, 0x00, 0x28, 0x01, 0xd0, 0x20, 0x69, 0x16, 0xe0, 0x04, 0x20, +0x6f, 0xe0, 0x6a, 0x98, 0x02, 0x28, 0x16, 0xd1, 0x00, 0x2c, 0x14, 0xd0, 0x20, 0x6c, 0x00, 0x28, +0xf5, 0xd0, 0x60, 0x69, 0x00, 0x28, 0xf2, 0xd0, 0xa0, 0x68, 0x00, 0x28, 0xef, 0xd0, 0x20, 0x68, +0x00, 0x28, 0xec, 0xd0, 0x60, 0x6c, 0x00, 0x28, 0xe9, 0xd0, 0x20, 0x6a, 0x00, 0x28, 0xe6, 0xd0, +0x60, 0x68, 0x00, 0x28, 0xe3, 0xd0, 0xb8, 0x7c, 0x00, 0x28, 0x67, 0xd1, 0x28, 0x00, 0xd7, 0x30, +0x22, 0xa9, 0xfe, 0xf2, 0x85, 0xff, 0x1d, 0x98, 0x22, 0xaa, 0x00, 0x28, 0x00, 0x92, 0x15, 0xd0, +0x38, 0xab, 0x98, 0x78, 0x59, 0x78, 0x00, 0x06, 0x00, 0x14, 0x08, 0x43, 0xc0, 0x1e, 0x03, 0x04, +0x60, 0x69, 0x1b, 0x14, 0x81, 0x78, 0x42, 0x78, 0x09, 0x06, 0x09, 0x14, 0x11, 0x43, 0xc9, 0x1e, +0x09, 0x04, 0x09, 0x14, 0x80, 0x1d, 0x39, 0xaa, 0x92, 0x1c, 0x10, 0xe0, 0xd8, 0x20, 0x40, 0x5b, +0xc0, 0x1e, 0x03, 0x04, 0x60, 0x69, 0x1b, 0x14, 0x81, 0x78, 0x42, 0x78, 0x09, 0x06, 0x09, 0x14, +0x11, 0x43, 0xc9, 0x1e, 0x09, 0x04, 0x2a, 0x00, 0x09, 0x14, 0x80, 0x1d, 0xdd, 0x32, 0xff, 0xf7, +0x8b, 0xfd, 0x20, 0xab, 0x98, 0x7a, 0x59, 0x7a, 0x00, 0x02, 0x08, 0x43, 0x05, 0x28, 0x01, 0xd8, +0x07, 0x20, 0x16, 0xe0, 0xb8, 0x7c, 0x00, 0x28, 0x28, 0xd1, 0x00, 0x2c, 0x13, 0xd0, 0x60, 0x68, +0x00, 0x28, 0x10, 0xd0, 0xd6, 0x21, 0x49, 0x5d, 0xc0, 0x78, 0x4a, 0x08, 0xc1, 0x07, 0xc9, 0x0f, +0x40, 0x08, 0xff, 0xf7, 0x03, 0xfd, 0x00, 0x06, 0x00, 0x0e, 0x01, 0x28, 0xb0, 0x75, 0x05, 0xd1, +0x09, 0x20, 0xb8, 0x74, 0x12, 0xe0, 0x04, 0x20, 0xb0, 0x75, 0x88, 0xe7, 0x04, 0x28, 0x86, 0xd0, +0x03, 0x28, 0x0b, 0xd1, 0x61, 0x6a, 0x00, 0x29, 0x08, 0xd0, 0x88, 0x78, 0x4b, 0x78, 0x02, 0x02, +0x57, 0x48, 0x1a, 0x43, 0xd2, 0x1c, 0x28, 0x18, 0x00, 0xf3, 0x4c, 0xe8, 0x70, 0x7f, 0xfd, 0x21, +0x08, 0x40, 0x21, 0x68, 0x06, 0x22, 0x09, 0x79, 0x89, 0x07, 0xc9, 0x0f, 0x49, 0x00, 0x08, 0x43, +0x70, 0x77, 0x4f, 0x48, 0x21, 0x6a, 0xf9, 0x30, 0x28, 0x18, 0xc9, 0x1c, 0x65, 0x90, 0x00, 0xf3, +0x3a, 0xe8, 0xb0, 0x7d, 0x03, 0x28, 0x28, 0xd1, 0x07, 0x20, 0x53, 0x21, 0x09, 0x01, 0xb0, 0x77, +0x06, 0x20, 0x69, 0x18, 0xc8, 0x73, 0x00, 0x20, 0x08, 0x74, 0x45, 0x48, 0x61, 0x6c, 0xf3, 0x30, +0xc9, 0x1c, 0x06, 0x22, 0x28, 0x18, 0x00, 0xf3, 0x26, 0xe8, 0x6a, 0x98, 0x02, 0x28, 0x14, 0xd1, +0x60, 0x6a, 0x81, 0x78, 0x43, 0x78, 0x0a, 0x02, 0x01, 0x00, 0x3d, 0x48, 0x1a, 0x43, 0xff, 0x30, +0x92, 0x1f, 0x09, 0x31, 0x28, 0x18, 0x00, 0xf3, 0x16, 0xe8, 0x60, 0x6a, 0xd8, 0xa8, 0x04, 0xc7, +0x01, 0x00, 0x00, 0x00, 0x34, 0xca, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xd7, 0x9d, 0x7b, 0x5f, +0x00, 0x21, 0x82, 0x78, 0x43, 0x78, 0x10, 0x02, 0x65, 0x9a, 0x18, 0x43, 0x81, 0x54, 0x00, 0x2c, +0x0f, 0xd0, 0x61, 0x68, 0x00, 0x29, 0x0c, 0xd0, 0x6a, 0x98, 0x01, 0x28, 0x09, 0xd1, 0x28, 0x00, +0xc0, 0x30, 0x82, 0x7d, 0xc9, 0x78, 0x52, 0x08, 0x01, 0x23, 0x52, 0x00, 0x8b, 0x43, 0x1a, 0x43, +0x82, 0x75, 0x68, 0x98, 0x66, 0x99, 0x20, 0x30, 0xc0, 0x79, 0xc8, 0x71, 0xb8, 0x7c, 0x00, 0x28, +0x12, 0xd1, 0x1d, 0x98, 0x00, 0x28, 0x0f, 0xd0, 0x20, 0xab, 0xd8, 0x7b, 0x00, 0x28, 0x03, 0xd0, +0x18, 0x7c, 0xd2, 0x21, 0x38, 0x77, 0x48, 0x55, 0x22, 0xa8, 0x60, 0x61, 0x4e, 0x98, 0x01, 0x21, +0xc9, 0x02, 0x08, 0x43, 0x4e, 0x90, 0x07, 0xe0, 0xb0, 0x7d, 0x02, 0x28, 0x04, 0xd1, 0x67, 0x98, +0x21, 0x00, 0x22, 0xaa, 0xff, 0xf7, 0x15, 0xfd, 0xb8, 0x7c, 0x00, 0x28, 0x02, 0xd0, 0x01, 0x20, +0xb0, 0x75, 0x24, 0xe0, 0xb0, 0x7d, 0x02, 0x28, 0x21, 0xd1, 0x29, 0x00, 0xcb, 0x31, 0x11, 0x20, +0x50, 0xaa, 0xfe, 0xf2, 0xb0, 0xfe, 0x39, 0x7f, 0x67, 0x98, 0xff, 0xf7, 0xaa, 0xfc, 0x50, 0xab, +0x98, 0x71, 0x38, 0x7f, 0xd8, 0x71, 0x98, 0x78, 0x59, 0x78, 0x00, 0x02, 0x08, 0x43, 0x80, 0x1c, +0x58, 0x70, 0x00, 0x0a, 0x98, 0x70, 0x50, 0xa8, 0x20, 0x61, 0x22, 0xa8, 0x60, 0x61, 0x4e, 0x98, +0x41, 0x21, 0xc9, 0x02, 0x08, 0x43, 0x4e, 0x90, 0x67, 0x98, 0xff, 0xf7, 0x0a, 0xfc, 0x6a, 0x99, +0x01, 0x20, 0xc0, 0x03, 0x02, 0x29, 0x12, 0xd1, 0xb1, 0x7d, 0x03, 0x29, 0x06, 0xd1, 0x03, 0xe0, +0xff, 0xff, 0xff, 0xff, 0x4e, 0x04, 0x00, 0x00, 0x22, 0xa9, 0x61, 0x61, 0x41, 0x21, 0xc9, 0x02, +0x4e, 0x91, 0xb1, 0x7d, 0x02, 0x29, 0x00, 0xd0, 0x00, 0x20, 0x05, 0x21, 0x25, 0xe0, 0x6a, 0x98, +0x01, 0x28, 0x12, 0xd1, 0xff, 0x48, 0x4f, 0x90, 0xb0, 0x7d, 0x02, 0x28, 0x0b, 0xd0, 0x4e, 0x98, +0x80, 0x03, 0x01, 0xd4, 0xfc, 0x48, 0x4f, 0x90, 0x4e, 0x98, 0x00, 0x05, 0x17, 0xd4, 0x01, 0x21, +0x4f, 0x98, 0xc9, 0x02, 0x11, 0xe0, 0xf9, 0x48, 0x10, 0xe0, 0x6a, 0x98, 0x00, 0x28, 0x0e, 0xd1, +0xf7, 0x48, 0x4f, 0x90, 0x4e, 0x98, 0x00, 0x05, 0x01, 0xd4, 0xf6, 0x48, 0x4f, 0x90, 0x4e, 0x98, +0x80, 0x03, 0x04, 0xd4, 0x4f, 0x98, 0x01, 0x21, 0x49, 0x04, 0x08, 0x43, 0x4f, 0x90, 0x4e, 0x9a, +0x00, 0x92, 0x4f, 0x9b, 0x69, 0x99, 0x67, 0x98, 0x22, 0x00, 0xfe, 0xf7, 0xd6, 0xfc, 0x01, 0x04, +0x69, 0x98, 0x09, 0x0c, 0x42, 0x78, 0x03, 0x78, 0x10, 0x02, 0x18, 0x43, 0x40, 0x18, 0x69, 0x99, +0x08, 0x70, 0x00, 0x0a, 0x48, 0x70, 0x6a, 0x98, 0x02, 0x28, 0x03, 0xd0, 0x69, 0x99, 0x67, 0x98, +0xff, 0xf7, 0xfe, 0xfb, 0x04, 0xf0, 0x05, 0xfa, 0x00, 0x28, 0x14, 0xd0, 0x69, 0x98, 0x41, 0x78, +0x02, 0x78, 0x08, 0x02, 0x66, 0x99, 0x10, 0x43, 0x41, 0x18, 0x67, 0x98, 0x01, 0x22, 0x04, 0xf0, +0xa6, 0xfa, 0x69, 0x99, 0x4a, 0x78, 0x0b, 0x78, 0x11, 0x02, 0x19, 0x43, 0x40, 0x18, 0x69, 0x99, +0x08, 0x70, 0x00, 0x0a, 0x48, 0x70, 0x00, 0x20, 0x6b, 0xb0, 0xf0, 0xbd, 0xff, 0xb5, 0x89, 0xb0, +0x06, 0x00, 0xd5, 0xa0, 0x03, 0xc8, 0x06, 0x90, 0x12, 0x9f, 0x00, 0x20, 0x03, 0x90, 0x30, 0x00, +0x07, 0x91, 0xef, 0xf7, 0xfe, 0xfb, 0xff, 0x21, 0x02, 0x90, 0x91, 0x31, 0x30, 0x00, 0xe9, 0xf7, +0xea, 0xfa, 0x05, 0x00, 0x03, 0xd1, 0x00, 0x20, 0xc0, 0x43, 0x0d, 0xb0, 0xf0, 0xbd, 0x70, 0x7a, +0x02, 0x28, 0x0d, 0xd1, 0x0b, 0x98, 0x07, 0xf0, 0x9c, 0xff, 0x04, 0x00, 0x08, 0xd0, 0x20, 0x00, +0x07, 0xf0, 0x1e, 0xff, 0x20, 0x00, 0x07, 0xf0, 0x42, 0xff, 0x60, 0x30, 0x00, 0x78, 0x03, 0x90, +0x6e, 0x61, 0x28, 0x89, 0x44, 0x19, 0x04, 0xd1, 0xc1, 0x49, 0x08, 0x68, 0x40, 0x1c, 0x08, 0x60, +0xe1, 0xe7, 0x05, 0x20, 0xc0, 0x01, 0x30, 0x18, 0x03, 0x2f, 0x08, 0x90, 0x06, 0xd1, 0x02, 0x99, +0x06, 0x22, 0xbd, 0x31, 0x04, 0xa8, 0xff, 0xf2, 0xf8, 0xee, 0x04, 0xe0, 0x08, 0x98, 0x81, 0x6c, +0x40, 0x6c, 0x05, 0x91, 0x04, 0x90, 0x70, 0x7a, 0x01, 0x28, 0x11, 0xd1, 0x3b, 0x00, 0x00, 0xf3, +0x08, 0xe9, 0x09, 0x06, 0x09, 0x06, 0x06, 0x09, 0x06, 0x09, 0x06, 0x09, 0x23, 0x00, 0x0b, 0x99, +0x06, 0x22, 0x16, 0xe0, 0x08, 0x98, 0x81, 0x6c, 0x40, 0x6c, 0x07, 0x91, 0x06, 0x90, 0x13, 0xe0, +0x7e, 0x36, 0x02, 0x28, 0x09, 0xd1, 0x03, 0x98, 0x03, 0x28, 0x08, 0xd0, 0x02, 0x99, 0x06, 0x22, +0xbd, 0x31, 0x04, 0xa8, 0xff, 0xf2, 0xd0, 0xee, 0x01, 0xe0, 0x03, 0x28, 0x04, 0xd1, 0x06, 0x22, +0x31, 0x00, 0x06, 0xa8, 0xff, 0xf2, 0xc8, 0xee, 0x06, 0xaa, 0x00, 0x92, 0x0b, 0x9a, 0x28, 0x00, +0x0d, 0x23, 0x04, 0xa9, 0xe9, 0xf7, 0xdc, 0xfa, 0xac, 0x20, 0x28, 0x81, 0x0c, 0x98, 0x09, 0x28, +0x11, 0xd1, 0x26, 0x00, 0x04, 0x20, 0x20, 0x36, 0x30, 0x70, 0x09, 0x20, 0x70, 0x70, 0x99, 0x49, +0x04, 0x22, 0xb0, 0x1c, 0xff, 0xf2, 0xb0, 0xee, 0xb7, 0x71, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, +0x08, 0x43, 0x08, 0x30, 0x12, 0xe0, 0x0c, 0x98, 0x7f, 0x28, 0x12, 0xd1, 0x26, 0x00, 0x20, 0x36, +0x30, 0x70, 0x90, 0x49, 0x03, 0x22, 0x70, 0x1c, 0xff, 0xf2, 0x9e, 0xee, 0x09, 0x20, 0x30, 0x71, +0x77, 0x71, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0xc0, 0x1d, 0x20, 0x70, 0x00, 0x0a, +0x60, 0x70, 0x0a, 0x98, 0x05, 0x60, 0x00, 0x20, 0x6f, 0xe7, 0xfe, 0xb5, 0x07, 0x00, 0x01, 0xa8, +0xe9, 0xf7, 0x6a, 0xf9, 0x38, 0x00, 0xef, 0xf7, 0x5c, 0xfb, 0x04, 0x00, 0x17, 0x20, 0x40, 0x01, +0x3d, 0x18, 0x04, 0x26, 0x38, 0x00, 0x2e, 0x70, 0x0a, 0xf0, 0xde, 0xea, 0x25, 0x21, 0x49, 0x01, +0x60, 0x18, 0x01, 0x7d, 0xff, 0x29, 0x03, 0xd0, 0x01, 0x98, 0x00, 0x22, 0x0a, 0xf0, 0xf4, 0xe9, +0xa0, 0x68, 0x10, 0x21, 0x08, 0x43, 0xa0, 0x60, 0x02, 0x20, 0x28, 0x70, 0x00, 0x20, 0xf9, 0xf7, +0x03, 0xfb, 0x00, 0x22, 0x51, 0x20, 0x2e, 0x70, 0x00, 0x01, 0x00, 0x92, 0x22, 0x18, 0x38, 0x00, +0x09, 0x23, 0x02, 0xa9, 0xff, 0xf7, 0x2a, 0xff, 0x00, 0x25, 0xed, 0x43, 0x00, 0x28, 0x13, 0xd1, +0x02, 0x98, 0x01, 0x89, 0x0e, 0x18, 0x00, 0x21, 0x32, 0x00, 0x38, 0x00, 0x0b, 0x00, 0xff, 0xf7, +0x7a, 0xfc, 0x29, 0x20, 0x40, 0x01, 0x20, 0x18, 0x40, 0x7a, 0x20, 0x36, 0xf0, 0x71, 0x02, 0x98, +0xe9, 0xf7, 0xbc, 0xfa, 0x00, 0x28, 0x01, 0xd0, 0x28, 0x00, 0xfe, 0xbd, 0xa0, 0x6a, 0x00, 0x28, +0x03, 0xd0, 0xee, 0xf2, 0x38, 0xff, 0x00, 0x20, 0xa0, 0x62, 0x00, 0x22, 0x23, 0x00, 0x00, 0x92, +0x5d, 0x4a, 0x5e, 0x48, 0x28, 0x33, 0x39, 0x00, 0xee, 0xf2, 0xca, 0xfe, 0x01, 0x21, 0x38, 0x00, +0xff, 0xf7, 0xdf, 0xf9, 0x00, 0x20, 0xfe, 0xbd, 0xf0, 0xb5, 0x05, 0x00, 0x00, 0x20, 0xa5, 0xb0, +0x06, 0x90, 0x05, 0x90, 0xaf, 0x20, 0x80, 0x00, 0x0e, 0x00, 0x00, 0x2d, 0x04, 0x90, 0x7e, 0xd0, +0x28, 0x00, 0xef, 0xf7, 0xf6, 0xfa, 0x04, 0x00, 0x17, 0x20, 0x40, 0x01, 0x28, 0x18, 0x24, 0x90, +0x00, 0x78, 0x02, 0x28, 0x73, 0xd1, 0x70, 0x78, 0x31, 0x78, 0x02, 0x02, 0x74, 0x5a, 0x68, 0x4b, +0x01, 0x00, 0x00, 0x00, 0x30, 0xce, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x84, 0x47, 0xa8, 0x33, +0x37, 0x00, 0x20, 0x37, 0x0a, 0x43, 0x01, 0x21, 0x38, 0x00, 0xf3, 0xf7, 0x77, 0xf8, 0x0c, 0x90, +0x70, 0x78, 0x31, 0x78, 0x02, 0x02, 0x0a, 0x43, 0x32, 0x21, 0x38, 0x00, 0xf3, 0xf7, 0x6e, 0xf8, +0x0b, 0x90, 0x0c, 0x98, 0x00, 0x28, 0x06, 0xd0, 0x0c, 0x98, 0x41, 0x78, 0x80, 0x1c, 0xf8, 0xf2, +0x08, 0xfe, 0x00, 0x28, 0x09, 0xd1, 0x0b, 0x98, 0x00, 0x28, 0x52, 0xd0, 0x0b, 0x98, 0x41, 0x78, +0x80, 0x1c, 0xf8, 0xf2, 0xfe, 0xfd, 0x00, 0x28, 0x4b, 0xd0, 0x0e, 0xaa, 0x00, 0x92, 0x00, 0x21, +0x30, 0x00, 0x06, 0xaa, 0x05, 0xab, 0xfe, 0xf7, 0xad, 0xfd, 0x31, 0x00, 0x21, 0x90, 0x68, 0x7a, +0x0c, 0x31, 0x01, 0x28, 0x23, 0x91, 0x4e, 0xd1, 0x21, 0x98, 0x00, 0x28, 0x39, 0xd0, 0xe9, 0xf7, +0xb3, 0xf8, 0xca, 0x21, 0x09, 0x5d, 0x88, 0x42, 0x33, 0xd1, 0x05, 0x98, 0x00, 0x07, 0x07, 0xd5, +0x21, 0x98, 0x21, 0x9b, 0x80, 0x6b, 0x38, 0x33, 0x09, 0x22, 0x07, 0xa9, 0xfe, 0xf2, 0x29, 0xfe, +0x21, 0x98, 0x80, 0x6b, 0x00, 0x28, 0x07, 0xd0, 0x21, 0x00, 0xc0, 0x1c, 0x06, 0x22, 0xbd, 0x31, +0x04, 0xf0, 0x78, 0xf9, 0x00, 0x28, 0x1c, 0xd1, 0x30, 0x00, 0x22, 0x49, 0x06, 0x22, 0x12, 0x30, +0x04, 0xf0, 0x70, 0xf9, 0x00, 0x28, 0x14, 0xd1, 0x1e, 0x49, 0x06, 0x22, 0xb0, 0x1d, 0x04, 0xf0, +0x69, 0xf9, 0x00, 0x28, 0x07, 0xd0, 0x21, 0x00, 0x06, 0x22, 0xbd, 0x31, 0xb0, 0x1d, 0x04, 0xf0, +0x61, 0xf9, 0x00, 0x28, 0x05, 0xd1, 0x00, 0x20, 0x07, 0xf0, 0xc4, 0xfd, 0x03, 0x90, 0x02, 0x20, +0x00, 0xe0, 0x89, 0xe0, 0x07, 0xf0, 0xbe, 0xfd, 0x03, 0x99, 0x00, 0x29, 0x03, 0xd0, 0x03, 0x99, +0xc9, 0x68, 0xc9, 0x04, 0x03, 0xd4, 0xe9, 0xf7, 0x42, 0xfb, 0x00, 0x28, 0x24, 0xd0, 0x07, 0x22, +0x0d, 0x49, 0xb8, 0x1c, 0x1a, 0xe0, 0x41, 0xe0, 0x35, 0x22, 0x00, 0x00, 0x35, 0x22, 0x02, 0x00, +0x35, 0xa2, 0x00, 0x00, 0x74, 0x23, 0x00, 0x00, 0x74, 0x2b, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, +0xff, 0xff, 0x00, 0x00, 0x78, 0xf6, 0x00, 0xc0, 0x60, 0x16, 0x32, 0x00, 0x00, 0x0e, 0x27, 0x07, +0x1f, 0xc1, 0x01, 0x00, 0x70, 0xf6, 0x00, 0xc0, 0xd8, 0xc6, 0x01, 0x00, 0x04, 0xf0, 0x2a, 0xf9, +0x00, 0x28, 0x0b, 0xd0, 0x78, 0x78, 0x07, 0xe0, 0x78, 0x78, 0x00, 0x28, 0x54, 0xd0, 0xce, 0x49, +0x07, 0x22, 0xb8, 0x1c, 0x04, 0xf0, 0x1e, 0xf9, 0x00, 0x28, 0x4d, 0xd1, 0xa0, 0x7c, 0xc0, 0x07, +0x0f, 0xd0, 0x51, 0x20, 0x00, 0x01, 0x21, 0x18, 0x23, 0x98, 0x06, 0x22, 0x04, 0xf0, 0x12, 0xf9, +0x00, 0x28, 0x06, 0xd1, 0xa0, 0x7c, 0x40, 0x08, 0x40, 0x00, 0xa0, 0x74, 0x28, 0x00, 0xff, 0xf7, +0xc6, 0xfe, 0x24, 0x98, 0x00, 0x78, 0x04, 0x28, 0x36, 0xd0, 0x26, 0xe0, 0x02, 0x28, 0x24, 0xd1, +0x28, 0x00, 0x07, 0xf0, 0x57, 0xfd, 0x02, 0x90, 0xe9, 0xf7, 0x1e, 0xf8, 0x25, 0x21, 0x49, 0x01, +0x61, 0x18, 0x09, 0x7f, 0x88, 0x42, 0x27, 0xd1, 0x78, 0x78, 0x00, 0x28, 0x12, 0xd0, 0xb6, 0x49, +0x07, 0x22, 0xb8, 0x1c, 0x04, 0xf0, 0xee, 0xf8, 0x00, 0x28, 0x0b, 0xd0, 0x02, 0x98, 0x02, 0x99, +0xff, 0x30, 0xe1, 0x30, 0x82, 0x7b, 0xff, 0x31, 0xcf, 0x31, 0xb8, 0x1c, 0x04, 0xf0, 0xe2, 0xf8, +0x00, 0x28, 0x11, 0xd1, 0x4b, 0x20, 0x00, 0x01, 0x04, 0x90, 0x04, 0x99, 0x28, 0x00, 0xe9, 0xf7, +0xec, 0xf8, 0xaa, 0x49, 0x00, 0x28, 0x0d, 0x90, 0x03, 0xd0, 0x0d, 0x98, 0x02, 0x89, 0x17, 0x18, +0x04, 0xd1, 0x08, 0x68, 0x40, 0x1c, 0x08, 0x60, 0x25, 0xb0, 0xf0, 0xbd, 0x0d, 0x98, 0x2a, 0x00, +0x45, 0x61, 0xb1, 0x20, 0x7e, 0x32, 0x80, 0x00, 0x29, 0x18, 0x00, 0x92, 0x23, 0x9a, 0x0d, 0x98, +0x05, 0x23, 0xe9, 0xf7, 0x27, 0xf9, 0x0d, 0x98, 0xac, 0x21, 0x01, 0x81, 0x0d, 0x99, 0x9c, 0x48, +0xc8, 0x80, 0x28, 0x00, 0x80, 0x30, 0x80, 0x69, 0xac, 0x30, 0x0a, 0x90, 0x41, 0x78, 0x00, 0x78, +0x0a, 0x02, 0x02, 0x43, 0x0a, 0x98, 0x01, 0x00, 0x38, 0x00, 0x20, 0x30, 0x20, 0x31, 0x22, 0x90, +0xff, 0xf2, 0xf4, 0xec, 0x0a, 0x98, 0x41, 0x78, 0x02, 0x78, 0x08, 0x02, 0x10, 0x43, 0x38, 0x70, +0x00, 0x0a, 0x78, 0x70, 0x21, 0x98, 0x00, 0x28, 0x11, 0xd1, 0x8e, 0xa0, 0x00, 0x68, 0x02, 0x90, +0x05, 0xe0, 0x43, 0x78, 0x02, 0x00, 0x0c, 0x21, 0x38, 0x00, 0xf9, 0xf2, 0x51, 0xf8, 0x01, 0x21, +0x38, 0x00, 0x04, 0x23, 0x02, 0xaa, 0xfe, 0xf2, 0x75, 0xfc, 0x00, 0x28, 0xf1, 0xd1, 0x24, 0x98, +0x00, 0x78, 0x02, 0x28, 0x01, 0xd0, 0x03, 0x28, 0x0a, 0xd1, 0x68, 0x7a, 0x01, 0x28, 0x07, 0xd1, +0x22, 0x98, 0xfd, 0x21, 0x80, 0x7a, 0x40, 0x08, 0x40, 0x00, 0x08, 0x40, 0x22, 0x99, 0x88, 0x72, +0x21, 0x98, 0x00, 0x28, 0x1f, 0xd0, 0x20, 0x00, 0xfe, 0xf7, 0xdd, 0xff, 0x00, 0x28, 0x04, 0xd0, +0x21, 0x9a, 0x39, 0x00, 0x28, 0x00, 0xfe, 0xf7, 0x4c, 0xfb, 0x03, 0xf0, 0x6c, 0xff, 0x00, 0x28, +0x11, 0xd0, 0x78, 0x78, 0x39, 0x78, 0x00, 0x02, 0x08, 0x43, 0x22, 0x99, 0x00, 0x22, 0x41, 0x18, +0x28, 0x00, 0x04, 0xf0, 0x0e, 0xf8, 0x79, 0x78, 0x3a, 0x78, 0x09, 0x02, 0x11, 0x43, 0x40, 0x18, +0x38, 0x70, 0x00, 0x0a, 0x78, 0x70, 0x0d, 0x99, 0x28, 0x00, 0x0a, 0xf0, 0x3c, 0xe8, 0x0d, 0x98, +0xe9, 0xf7, 0x0e, 0xf9, 0x00, 0x28, 0x00, 0xd0, 0x7e, 0xe7, 0xa0, 0x68, 0x40, 0x06, 0xfb, 0xd5, +0x68, 0x7a, 0x01, 0x28, 0xf8, 0xd1, 0x00, 0x22, 0x00, 0x92, 0x01, 0x92, 0x02, 0x92, 0x49, 0x22, +0x31, 0x00, 0x28, 0x00, 0x0e, 0x23, 0xfe, 0xf7, 0xad, 0xff, 0x6d, 0xe7, 0x10, 0xb5, 0x04, 0x00, +0xef, 0xf7, 0x59, 0xf9, 0x00, 0x20, 0xf9, 0xf7, 0x65, 0xfd, 0x17, 0x21, 0x49, 0x01, 0x02, 0x20, +0x61, 0x18, 0x08, 0x70, 0x00, 0x20, 0xf9, 0xf7, 0x11, 0xf9, 0x10, 0xbd, 0x10, 0xb5, 0xef, 0xf7, +0x4a, 0xf9, 0x80, 0x68, 0x00, 0x07, 0xc0, 0x0f, 0x10, 0xbd, 0x10, 0xb5, 0x00, 0x24, 0xe4, 0x43, +0x00, 0x28, 0x05, 0xd1, 0x03, 0x20, 0x07, 0xf0, 0x85, 0xfc, 0x00, 0x28, 0x05, 0xd1, 0x02, 0xe0, +0x01, 0x7a, 0x03, 0x29, 0x01, 0xd0, 0x20, 0x00, 0x10, 0xbd, 0xef, 0xf7, 0x34, 0xf9, 0xfe, 0xf7, +0x7a, 0xff, 0x00, 0x20, 0x10, 0xbd, 0x10, 0xb5, 0x8a, 0x78, 0x00, 0x24, 0x12, 0x09, 0xe4, 0x43, +0x0d, 0x2a, 0x17, 0xd1, 0x17, 0x22, 0x52, 0x01, 0x82, 0x18, 0x12, 0x78, 0x04, 0x2a, 0x11, 0xd0, +0x03, 0x2a, 0x0f, 0xd0, 0x0a, 0x00, 0x20, 0x32, 0x13, 0x78, 0x04, 0x2b, 0x03, 0xd0, 0x7f, 0x2b, +0x0a, 0xd1, 0x7f, 0x22, 0x02, 0xe0, 0x52, 0x78, 0x09, 0x2a, 0x05, 0xd1, 0xff, 0xf7, 0xcd, 0xff, +0x40, 0x1c, 0x01, 0xd1, 0x20, 0x00, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0x70, 0xb5, 0x0e, 0x00, +0x05, 0x00, 0x20, 0x36, 0x30, 0x78, 0x0c, 0x00, 0x04, 0x28, 0x0a, 0xd0, 0x09, 0x28, 0x08, 0xd0, +0x7f, 0x28, 0x04, 0xd1, 0x7f, 0x22, 0x21, 0x00, 0x28, 0x00, 0xff, 0xf7, 0xb6, 0xff, 0x01, 0x20, +0x70, 0xbd, 0x09, 0x22, 0x21, 0x00, 0x28, 0x00, 0xff, 0xf7, 0xaf, 0xff, 0x70, 0x78, 0x0a, 0x28, +0x05, 0xd0, 0x0b, 0x28, 0x03, 0xd0, 0x0c, 0x28, 0x01, 0xd0, 0x0d, 0x28, 0xe7, 0x5c, 0x4d, 0x57, +0x01, 0x00, 0x00, 0x00, 0x2c, 0xd2, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x3b, 0x82, 0x8d, 0x80, +0xef, 0xd1, 0x21, 0x00, 0x28, 0x00, 0xff, 0xf7, 0xb8, 0xff, 0xea, 0xe7, 0x70, 0x47, 0xfe, 0xb5, +0x04, 0x00, 0x0d, 0x00, 0x08, 0x9f, 0x1e, 0x00, 0x00, 0x28, 0x1a, 0xd0, 0x20, 0x7a, 0x03, 0x28, +0x17, 0xd1, 0x60, 0x7a, 0x00, 0x28, 0x14, 0xd0, 0x20, 0x00, 0xef, 0xf7, 0xd6, 0xf8, 0xfe, 0xf7, +0x1c, 0xff, 0x00, 0x28, 0x0d, 0xd0, 0x28, 0x00, 0xfe, 0xf2, 0xd4, 0xfd, 0x00, 0x28, 0x08, 0xd0, +0x00, 0x20, 0x6b, 0x46, 0xc1, 0xc3, 0x49, 0x22, 0x29, 0x00, 0x20, 0x00, 0x0e, 0x23, 0xfe, 0xf7, +0x13, 0xff, 0xfe, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x16, 0xd0, 0x20, 0x7a, 0x03, 0x28, 0x13, 0xd1, +0x20, 0x00, 0xef, 0xf7, 0xba, 0xf8, 0x17, 0x21, 0x49, 0x01, 0x61, 0x18, 0x09, 0x78, 0x01, 0x29, +0x08, 0xd0, 0x03, 0x29, 0x06, 0xd0, 0x61, 0x7a, 0x03, 0x29, 0x03, 0xd0, 0xfe, 0xf7, 0xf5, 0xfe, +0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0xd8, 0xc6, 0x01, 0x00, +0x78, 0xf6, 0x00, 0xc0, 0xee, 0xee, 0x00, 0x00, 0x50, 0x6f, 0x9a, 0x09, 0xf8, 0xb5, 0x03, 0x20, +0x00, 0x26, 0x37, 0x00, 0x07, 0xf0, 0xe0, 0xfb, 0x09, 0xe0, 0x28, 0x00, 0xef, 0xf7, 0x95, 0xf8, +0x81, 0x7f, 0x89, 0x07, 0x06, 0xd1, 0x03, 0x21, 0x28, 0x00, 0xee, 0xf7, 0x99, 0xfd, 0x05, 0x00, +0xf3, 0xd1, 0xf8, 0xbd, 0x00, 0x2d, 0xfc, 0xd0, 0x81, 0x7f, 0x8a, 0x07, 0x02, 0xd5, 0x80, 0x30, +0x87, 0x68, 0x03, 0xe0, 0xc9, 0x07, 0x01, 0xd0, 0x80, 0x30, 0xc7, 0x69, 0x00, 0x24, 0x18, 0x20, +0x60, 0x43, 0xff, 0x49, 0x0a, 0x5c, 0x00, 0x2a, 0x12, 0xd0, 0x40, 0x18, 0x00, 0x90, 0x00, 0x1d, +0x07, 0xf0, 0x23, 0xfc, 0x0b, 0x21, 0x89, 0x01, 0x40, 0x18, 0x00, 0x69, 0x80, 0x68, 0xa8, 0x42, +0x06, 0xd1, 0x00, 0x98, 0xc1, 0x78, 0x01, 0x20, 0x88, 0x40, 0x30, 0x43, 0x06, 0x04, 0x36, 0x0c, +0x64, 0x1c, 0x04, 0x2c, 0xe3, 0xd3, 0x00, 0x2e, 0xd3, 0xd0, 0x00, 0x2f, 0x03, 0xd0, 0x30, 0x00, +0xe4, 0xf7, 0x8f, 0xf8, 0xf8, 0xbd, 0x30, 0x00, 0xe4, 0xf7, 0x73, 0xf8, 0xf8, 0xbd, 0xf3, 0xb5, +0x81, 0xb0, 0x0f, 0x00, 0x01, 0x98, 0xef, 0xf7, 0x50, 0xf8, 0x06, 0x00, 0x80, 0x30, 0x04, 0x00, +0x40, 0x68, 0xee, 0xf2, 0x6c, 0xfc, 0x00, 0x25, 0x65, 0x60, 0xa5, 0x60, 0x25, 0x61, 0x65, 0x61, +0xa0, 0x69, 0xee, 0xf2, 0x64, 0xfc, 0xa5, 0x61, 0xe5, 0x61, 0x25, 0x62, 0x65, 0x62, 0xa5, 0x62, +0xff, 0xf7, 0x9c, 0xff, 0xb7, 0x77, 0x01, 0x98, 0x40, 0x7a, 0x03, 0x28, 0x04, 0xd1, 0x30, 0x00, +0x1f, 0x21, 0x62, 0x30, 0xff, 0xf2, 0x22, 0xec, 0xfe, 0xbd, 0x10, 0xb5, 0x0c, 0x00, 0x08, 0x00, +0x00, 0xf0, 0x05, 0xf8, 0x01, 0x21, 0x20, 0x00, 0xe9, 0xf7, 0x80, 0xfe, 0x10, 0xbd, 0xf1, 0xb5, +0x84, 0xb0, 0x0b, 0x21, 0x04, 0x98, 0x89, 0x01, 0x40, 0x18, 0x06, 0x69, 0x04, 0x98, 0xef, 0xf7, +0x1c, 0xf8, 0x04, 0x00, 0x05, 0x00, 0x80, 0x34, 0xa0, 0x69, 0xee, 0xf2, 0x38, 0xfc, 0x00, 0x20, +0xa0, 0x61, 0xa8, 0x7f, 0xc0, 0x07, 0x44, 0xd0, 0xe0, 0x69, 0x01, 0x90, 0xf4, 0xf2, 0x04, 0xfc, +0x03, 0x91, 0x02, 0x90, 0x32, 0x6a, 0x73, 0x6a, 0x80, 0x1a, 0xb2, 0x69, 0x99, 0x41, 0xf3, 0x69, +0x80, 0x18, 0x66, 0x27, 0x7a, 0x5d, 0x59, 0x41, 0x52, 0x06, 0xd7, 0x0b, 0x40, 0x36, 0xb2, 0x89, +0x00, 0x23, 0x96, 0x02, 0x32, 0x00, 0xff, 0xf2, 0x02, 0xe9, 0x38, 0x00, 0xc8, 0x38, 0x82, 0x42, +0x04, 0xd2, 0x00, 0x20, 0xbe, 0x1a, 0xc8, 0x3e, 0xe0, 0x61, 0x02, 0xe0, 0x01, 0x20, 0xb6, 0x1a, +0xe0, 0x61, 0x02, 0x9a, 0x03, 0x9b, 0x00, 0x21, 0xb0, 0x18, 0x59, 0x41, 0x61, 0x62, 0x20, 0x62, +0xe1, 0x69, 0x01, 0x98, 0x81, 0x42, 0x0b, 0xd0, 0xb2, 0x49, 0x02, 0x22, 0x08, 0x68, 0x10, 0x43, +0x08, 0x60, 0xb1, 0x48, 0x01, 0x21, 0x00, 0x68, 0x07, 0x22, 0x49, 0x04, 0x04, 0xf0, 0xd6, 0xff, +0x00, 0x22, 0x2b, 0x00, 0x00, 0x92, 0xad, 0x48, 0x04, 0x99, 0x98, 0x33, 0x32, 0x00, 0xee, 0xf2, +0x8b, 0xfb, 0x05, 0xb0, 0xf0, 0xbd, 0x10, 0xb5, 0x0c, 0x00, 0x08, 0x00, 0x00, 0xf0, 0x05, 0xf8, +0x01, 0x21, 0x20, 0x00, 0xe9, 0xf7, 0x1a, 0xfe, 0x10, 0xbd, 0xf1, 0xb5, 0x8e, 0xb0, 0x0b, 0x20, +0x0e, 0x99, 0x80, 0x01, 0x08, 0x18, 0x00, 0x69, 0x0c, 0x90, 0x00, 0x20, 0x0a, 0x90, 0x06, 0x90, +0x0e, 0x98, 0xee, 0xf7, 0xb2, 0xff, 0x04, 0x00, 0x07, 0x00, 0x80, 0x34, 0x60, 0x68, 0xee, 0xf2, +0xce, 0xfb, 0x00, 0x20, 0x60, 0x60, 0xb8, 0x7f, 0x80, 0x07, 0x71, 0xd5, 0xa0, 0x68, 0x05, 0x90, +0xf4, 0xf2, 0x9a, 0xfb, 0x02, 0x90, 0x0c, 0x98, 0x03, 0x91, 0x43, 0x6a, 0x02, 0x6a, 0x02, 0x98, +0x3d, 0x00, 0x62, 0x35, 0x86, 0x1a, 0x0c, 0x98, 0x99, 0x41, 0x82, 0x69, 0xc3, 0x69, 0xb6, 0x18, +0x59, 0x41, 0x38, 0x00, 0x70, 0x30, 0xff, 0xf2, 0xfe, 0xeb, 0x00, 0x22, 0x31, 0x00, 0x16, 0x00, +0x0b, 0x92, 0x01, 0x22, 0xd2, 0x07, 0x81, 0x42, 0x09, 0xd3, 0x08, 0x1a, 0x90, 0x42, 0x02, 0xd2, +0x01, 0x21, 0x04, 0x91, 0x0d, 0xe0, 0x00, 0x21, 0x46, 0x42, 0x04, 0x91, 0x0a, 0xe0, 0x40, 0x1a, +0x90, 0x42, 0x03, 0xd2, 0x00, 0x21, 0x06, 0x00, 0x04, 0x91, 0x03, 0xe0, 0x01, 0x21, 0x40, 0x42, +0x04, 0x91, 0x0b, 0x90, 0x28, 0x00, 0x0a, 0x30, 0xff, 0xf2, 0xdc, 0xeb, 0x09, 0x90, 0xa8, 0x1d, +0xff, 0xf2, 0xd8, 0xeb, 0x08, 0x90, 0x68, 0x79, 0x07, 0x90, 0x04, 0x98, 0x00, 0x28, 0x07, 0xd0, +0x09, 0x99, 0x0b, 0x98, 0xff, 0xf2, 0xdc, 0xef, 0x06, 0x90, 0x09, 0x98, 0x0a, 0x91, 0x46, 0x1a, +0x04, 0x99, 0x01, 0x20, 0x00, 0x29, 0x1d, 0xd0, 0x07, 0x99, 0xff, 0x29, 0x11, 0xd0, 0x06, 0x9a, +0x07, 0x99, 0x8a, 0x42, 0x0d, 0xd3, 0x00, 0x26, 0xa6, 0x60, 0xb8, 0x7f, 0xfd, 0x21, 0x08, 0x40, +0xb8, 0x77, 0x02, 0x20, 0x68, 0x70, 0x0d, 0x21, 0x68, 0x1d, 0xae, 0x70, 0xff, 0xf2, 0x36, 0xeb, +0x1b, 0xe0, 0x08, 0x9a, 0x0a, 0x99, 0x91, 0x42, 0x04, 0xd2, 0xa0, 0x60, 0x08, 0x99, 0x0a, 0x98, +0x0e, 0x1a, 0x12, 0xe0, 0xc8, 0x2e, 0x04, 0xd8, 0xa0, 0x60, 0x08, 0x98, 0x86, 0x19, 0x0c, 0xe0, +0x2d, 0xe0, 0xa1, 0x68, 0x00, 0x29, 0x05, 0xd0, 0x0c, 0x99, 0x20, 0x31, 0x09, 0x7a, 0x00, 0x29, +0x00, 0xd0, 0xa0, 0x62, 0x00, 0x20, 0xc8, 0x3e, 0xa0, 0x60, 0x02, 0x9a, 0x03, 0x9b, 0x00, 0x21, +0xb0, 0x18, 0x59, 0x41, 0x61, 0x61, 0x00, 0x2e, 0x20, 0x61, 0x08, 0xd0, 0x00, 0x22, 0x3b, 0x00, +0x00, 0x92, 0x53, 0x48, 0x0e, 0x99, 0x84, 0x33, 0x32, 0x00, 0xee, 0xf2, 0xd5, 0xfa, 0xa1, 0x68, +0x05, 0x98, 0x81, 0x42, 0x0b, 0xd0, 0x4b, 0x49, 0x02, 0x22, 0x08, 0x68, 0x10, 0x43, 0x08, 0x60, +0x49, 0x48, 0x01, 0x21, 0x00, 0x68, 0x07, 0x22, 0x49, 0x04, 0x04, 0xf0, 0x07, 0xff, 0x0f, 0xb0, +0xf0, 0xbd, 0xf0, 0xb5, 0x9f, 0xb0, 0x07, 0x00, 0x00, 0x20, 0x16, 0x90, 0x15, 0x90, 0x38, 0x7a, +0x0c, 0x00, 0x03, 0x28, 0x6a, 0xd1, 0x78, 0x7a, 0x03, 0x28, 0x67, 0xd1, 0x38, 0x00, 0xee, 0xf7, +0xf4, 0xfe, 0x06, 0x00, 0x02, 0xaa, 0x05, 0x00, 0x00, 0x92, 0x62, 0x36, 0x50, 0x48, 0x81, 0x15, +0x01, 0x00, 0x00, 0x00, 0x28, 0xd6, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x68, 0x58, 0x5e, 0xec, +0x00, 0x21, 0x20, 0x00, 0x16, 0xaa, 0x15, 0xab, 0xfe, 0xf7, 0xd8, 0xf9, 0x04, 0x00, 0x15, 0x98, +0xc0, 0x04, 0x07, 0xd5, 0x23, 0x00, 0x00, 0x22, 0xa0, 0x69, 0x18, 0x33, 0xd2, 0x43, 0x17, 0xa9, +0xfe, 0xf2, 0x63, 0xfa, 0x04, 0xf0, 0x96, 0xf8, 0x00, 0x2c, 0x01, 0x90, 0x3a, 0xd0, 0xa1, 0x69, +0x00, 0x29, 0x37, 0xd0, 0xb0, 0x78, 0x72, 0x78, 0x00, 0x02, 0x10, 0x43, 0x03, 0xd0, 0xf0, 0x78, +0xca, 0x78, 0x90, 0x42, 0x39, 0xd0, 0x88, 0x78, 0x4b, 0x78, 0x02, 0x02, 0x1a, 0x43, 0xd2, 0x1c, +0x30, 0x00, 0xff, 0xf2, 0xf0, 0xe9, 0x00, 0x20, 0xa8, 0x77, 0xa0, 0x69, 0x00, 0x79, 0xc1, 0x09, +0x03, 0xd0, 0x40, 0x06, 0x01, 0xd0, 0x01, 0x20, 0xa8, 0x77, 0xa0, 0x69, 0x81, 0x78, 0x42, 0x78, +0x08, 0x02, 0x10, 0x43, 0x02, 0x28, 0x0e, 0xd9, 0x30, 0x00, 0x0a, 0x30, 0xff, 0xf2, 0x1c, 0xeb, +0x00, 0x28, 0x08, 0xd0, 0xb0, 0x1d, 0xff, 0xf2, 0x18, 0xeb, 0x00, 0x28, 0x03, 0xd0, 0xa8, 0x7f, +0x02, 0x21, 0x08, 0x43, 0xa8, 0x77, 0x38, 0x00, 0xff, 0xf7, 0xe1, 0xfe, 0x38, 0x00, 0xff, 0xf7, +0x78, 0xfe, 0x06, 0xe0, 0xa8, 0x7f, 0x00, 0x28, 0x07, 0xd0, 0x00, 0x21, 0x38, 0x00, 0xff, 0xf7, +0x40, 0xfe, 0x01, 0x21, 0x38, 0x00, 0xe9, 0xf7, 0xeb, 0xfc, 0x01, 0x98, 0x04, 0xf0, 0x4e, 0xf8, +0x1f, 0xb0, 0xf0, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0xee, 0xf7, 0x89, 0xfe, 0x01, 0x00, 0x80, 0x31, +0x8a, 0x6a, 0x00, 0x2a, 0x16, 0xd1, 0x8a, 0x68, 0x00, 0x2a, 0x13, 0xd1, 0x62, 0x7a, 0x03, 0x2a, +0x12, 0xd1, 0x09, 0xe0, 0x4c, 0x7b, 0x02, 0x00, 0x64, 0xf4, 0x00, 0xc0, 0x6c, 0xf4, 0x00, 0xc0, +0xa7, 0xd3, 0x01, 0x00, 0x73, 0xd4, 0x01, 0x00, 0x80, 0x68, 0x80, 0x07, 0x04, 0xd5, 0xc8, 0x69, +0x00, 0x28, 0x01, 0xd0, 0x00, 0x20, 0x10, 0xbd, 0x01, 0x20, 0x10, 0xbd, 0xf7, 0xb5, 0x15, 0x00, +0x07, 0x00, 0xee, 0xf7, 0x64, 0xfe, 0x00, 0x24, 0x82, 0x7f, 0xe4, 0x43, 0x26, 0x00, 0x91, 0x07, +0x03, 0xd5, 0x01, 0x00, 0x80, 0x31, 0x0e, 0x69, 0x4c, 0x69, 0xd1, 0x07, 0x0f, 0xd0, 0x79, 0x7a, +0x03, 0x29, 0x0c, 0xd1, 0x81, 0x68, 0x89, 0x07, 0x09, 0xd5, 0x80, 0x30, 0x02, 0x6a, 0x43, 0x6a, +0x07, 0x00, 0x21, 0x00, 0xb0, 0x1a, 0x99, 0x41, 0x01, 0xd3, 0x3e, 0x6a, 0x7c, 0x6a, 0x00, 0x22, +0xd2, 0x43, 0x21, 0x00, 0x30, 0x00, 0x51, 0x40, 0x50, 0x40, 0x08, 0x43, 0x16, 0xd0, 0x01, 0x98, +0x0b, 0x49, 0x60, 0x30, 0x00, 0x7a, 0x07, 0x28, 0x03, 0xd8, 0x80, 0x00, 0x40, 0x18, 0x00, 0x6b, +0x00, 0xe0, 0x08, 0x6b, 0x00, 0x21, 0x80, 0x02, 0x23, 0x00, 0x30, 0x1a, 0x8b, 0x41, 0x6b, 0x61, +0x28, 0x61, 0x68, 0x88, 0x01, 0x21, 0xc9, 0x03, 0x08, 0x43, 0x68, 0x80, 0xfe, 0xbd, 0x00, 0x00, +0x80, 0xa2, 0x00, 0x80, 0x70, 0xb5, 0x05, 0x00, 0x34, 0x4c, 0x0e, 0x00, 0xee, 0xf7, 0x1f, 0xfe, +0x01, 0x2e, 0x05, 0xd0, 0xa0, 0x7a, 0x00, 0x28, 0x03, 0xd0, 0x28, 0x00, 0xf9, 0xf7, 0x54, 0xf8, +0x70, 0xbd, 0x60, 0x7a, 0x00, 0x28, 0xfb, 0xd0, 0x28, 0x00, 0x00, 0xf0, 0x01, 0xf8, 0x70, 0xbd, +0xf0, 0xb5, 0x04, 0x00, 0x00, 0x20, 0x85, 0xb0, 0x04, 0x90, 0x20, 0x00, 0xee, 0xf7, 0x07, 0xfe, +0x06, 0x00, 0x17, 0x20, 0x40, 0x01, 0x25, 0x18, 0x24, 0x4b, 0x0b, 0x20, 0x02, 0x21, 0x80, 0x01, +0x5c, 0x60, 0x20, 0x18, 0x29, 0x70, 0x02, 0x69, 0xf3, 0x27, 0x51, 0x7b, 0x89, 0x08, 0x89, 0x00, +0x51, 0x73, 0x02, 0x69, 0x39, 0x40, 0x51, 0x73, 0x00, 0x69, 0xcf, 0x22, 0x11, 0x40, 0x41, 0x73, +0x58, 0x7a, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, 0x68, 0x70, 0x19, 0x48, 0x1a, 0x00, 0x14, 0x32, +0x00, 0x21, 0x01, 0xaf, 0x07, 0xc7, 0xc0, 0x36, 0x1a, 0x69, 0x00, 0x92, 0xdb, 0x68, 0xb2, 0x7a, +0x04, 0x99, 0x20, 0x00, 0xf9, 0xf7, 0xc7, 0xfc, 0x00, 0x28, 0x02, 0xd1, 0x28, 0x70, 0x05, 0xb0, +0xf0, 0xbd, 0x01, 0x20, 0xfb, 0xe7, 0x70, 0xb5, 0x00, 0x21, 0x0c, 0x48, 0x01, 0x25, 0x41, 0x72, +0x40, 0x68, 0xf8, 0xf7, 0x33, 0xf8, 0x04, 0x00, 0x0d, 0xd0, 0x20, 0x89, 0x2f, 0x21, 0x00, 0x19, +0x01, 0x70, 0x20, 0x00, 0xf8, 0xf7, 0x66, 0xf8, 0x01, 0x28, 0x03, 0xd1, 0x20, 0x00, 0xff, 0xf2, +0x47, 0xfe, 0x00, 0xe0, 0x00, 0x25, 0x28, 0x00, 0x70, 0xbd, 0x00, 0x00, 0x00, 0x5c, 0x01, 0xc0, +0xbd, 0xd7, 0x01, 0x00, 0xf8, 0xb5, 0x00, 0x24, 0x05, 0x00, 0x0f, 0x00, 0x26, 0x00, 0x03, 0xf0, +0x69, 0xff, 0x00, 0x90, 0x0b, 0x20, 0x80, 0x01, 0x2d, 0x18, 0x68, 0x69, 0x01, 0x2f, 0x22, 0xd1, +0x00, 0x28, 0x2e, 0xd1, 0xff, 0x4f, 0x3d, 0x20, 0x00, 0x01, 0x60, 0x43, 0x38, 0x5c, 0x00, 0x28, +0x0d, 0xd1, 0x3d, 0x20, 0x00, 0x01, 0x60, 0x43, 0x3d, 0x21, 0xc0, 0x19, 0x09, 0x01, 0x68, 0x61, +0xff, 0xf2, 0x5c, 0xe9, 0x69, 0x69, 0x01, 0x20, 0x06, 0x00, 0x08, 0x70, 0x02, 0xe0, 0x64, 0x1c, +0x02, 0x2c, 0xe8, 0xdb, 0x02, 0x2c, 0x14, 0xd1, 0x01, 0x20, 0xf3, 0x49, 0x6f, 0x61, 0x38, 0x70, +0x06, 0x00, 0x08, 0x73, 0x0d, 0xe0, 0x00, 0x28, 0x0a, 0xd0, 0x0f, 0x21, 0x89, 0x01, 0x41, 0x18, +0x0b, 0x7b, 0x00, 0x22, 0x00, 0x2b, 0x02, 0xd1, 0x02, 0x70, 0x6a, 0x61, 0x00, 0xe0, 0x0a, 0x73, +0x01, 0x26, 0x00, 0x98, 0x03, 0xf0, 0x32, 0xff, 0x30, 0x00, 0xf8, 0xbd, 0x0b, 0x21, 0x89, 0x01, +0x41, 0x18, 0x49, 0x69, 0x00, 0x29, 0x01, 0xd1, 0x01, 0x21, 0xb3, 0xe7, 0x01, 0x20, 0x08, 0x70, +0x70, 0x47, 0x70, 0xb5, 0x05, 0x00, 0x48, 0x78, 0x0c, 0x00, 0x01, 0x09, 0x01, 0x26, 0x30, 0x00, +0x88, 0x40, 0x41, 0x1e, 0x28, 0x00, 0xf4, 0xf2, 0x06, 0xf9, 0x60, 0x78, 0x31, 0x00, 0x00, 0x07, +0x00, 0x0f, 0x81, 0x40, 0x49, 0x1e, 0x28, 0x00, 0xf4, 0xf2, 0x07, 0xf9, 0x20, 0x78, 0x01, 0x09, +0x28, 0x00, 0xf6, 0xf7, 0xa5, 0xfb, 0x61, 0x88, 0x28, 0x00, 0xf4, 0xf2, 0x03, 0xf9, 0x70, 0xbd, +0xfe, 0xb5, 0x0c, 0x00, 0x00, 0x21, 0x00, 0x91, 0x0b, 0x21, 0x89, 0x01, 0x40, 0x18, 0x01, 0x90, +0x41, 0x69, 0x14, 0x20, 0x60, 0x43, 0x00, 0x1d, 0x0e, 0x18, 0x30, 0x78, 0x40, 0x07, 0x80, 0x0f, +0x00, 0xf3, 0x7f, 0xfa, 0x31, 0x78, 0x09, 0x07, 0x12, 0xd5, 0xb1, 0x89, 0x00, 0x29, 0x03, 0xd0, +0x31, 0x7c, 0x00, 0x29, 0x0c, 0xd0, 0x01, 0xe0, 0x01, 0x21, 0x00, 0x91, 0x00, 0x99, 0x77, 0x7c, +0x00, 0x29, 0x06, 0xd0, 0x3d, 0x00, 0x31, 0x00, 0x20, 0x00, 0xff, 0xf7, 0xba, 0xff, 0x01, 0xe0, +0x07, 0x00, 0x05, 0x00, 0x00, 0x24, 0xa0, 0x00, 0x80, 0x19, 0x40, 0x68, 0xff, 0x2d, 0x1d, 0xd0, +0xff, 0x2f, 0x1b, 0xd0, 0x40, 0x30, 0xc1, 0x7d, 0xa9, 0x42, 0x0d, 0xd0, 0x00, 0x9a, 0x00, 0x2a, +0x01, 0xd0, 0x42, 0x7d, 0x00, 0xe0, 0x82, 0x7d, 0x91, 0x42, 0x05, 0xd1, 0xb3, 0x4a, 0x69, 0x00, +0x89, 0x18, 0xc5, 0x75, 0x09, 0x5d, 0x01, 0x76, 0x14, 0x22, 0x01, 0x99, 0x7a, 0x43, 0x49, 0x69, +0x12, 0x1d, 0xc0, 0x7d, 0x89, 0x18, 0xff, 0xf7, 0x94, 0xff, 0x03, 0xe0, 0xff, 0x21, 0x40, 0x30, +0xc1, 0x75, 0x01, 0x76, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x02, 0x2c, 0xc6, 0xce, 0x01, 0x4e, +0x01, 0x00, 0x00, 0x00, 0x24, 0xda, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x9c, 0x37, 0x2b, 0x58, +0xd3, 0xd3, 0x01, 0x98, 0x42, 0x69, 0x07, 0x20, 0x60, 0x21, 0x41, 0x43, 0x89, 0x18, 0xa0, 0x31, +0xcb, 0x7a, 0x49, 0x7a, 0x8b, 0x42, 0x04, 0xd1, 0x1d, 0x21, 0x49, 0x01, 0x51, 0x18, 0xc8, 0x76, +0xfe, 0xbd, 0x40, 0x1e, 0xf0, 0xd5, 0xfe, 0xbd, 0xf7, 0xb5, 0x0f, 0x00, 0x11, 0x00, 0x38, 0x00, +0xfe, 0xf2, 0x28, 0xfc, 0x00, 0x28, 0x49, 0xd0, 0x00, 0x98, 0x0b, 0x21, 0x00, 0x24, 0x89, 0x01, +0x45, 0x18, 0xa0, 0x00, 0xc6, 0x19, 0xb0, 0x7a, 0x40, 0x06, 0x80, 0x0f, 0x00, 0xf3, 0x13, 0xfa, +0x14, 0x23, 0x58, 0x43, 0x69, 0x69, 0x00, 0x1d, 0x08, 0x18, 0x31, 0x00, 0x0a, 0x31, 0xfe, 0xf2, +0x3c, 0xfc, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x04, 0x2c, 0xea, 0xd3, 0x00, 0x24, 0x14, 0x22, +0x62, 0x43, 0x6e, 0x69, 0x10, 0x1d, 0x30, 0x5c, 0x00, 0x07, 0x01, 0xd4, 0x21, 0x00, 0x0e, 0xe0, +0xff, 0x21, 0x00, 0x20, 0x09, 0xe0, 0x14, 0x23, 0x43, 0x43, 0x1b, 0x1d, 0xf3, 0x5c, 0x1b, 0x07, +0x00, 0xd4, 0x01, 0x00, 0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0xa0, 0x42, 0xf3, 0xd9, 0x10, 0x00, +0x15, 0x30, 0x31, 0x54, 0x6b, 0x69, 0x0d, 0x38, 0x18, 0x58, 0x0c, 0x32, 0x40, 0x30, 0x81, 0x75, +0x68, 0x69, 0x80, 0x58, 0x40, 0x30, 0x81, 0x75, 0x00, 0x98, 0x21, 0x00, 0xff, 0xf7, 0x4a, 0xff, +0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x04, 0x2c, 0xd1, 0xd3, 0x01, 0x20, 0xfe, 0xbd, 0xf3, 0xb5, +0x0c, 0x00, 0x83, 0xb0, 0x0b, 0x21, 0x03, 0x98, 0x89, 0x01, 0x40, 0x18, 0x47, 0x69, 0x00, 0x20, +0x01, 0x90, 0x38, 0x21, 0x20, 0x00, 0xff, 0xf2, 0x6e, 0xe8, 0x01, 0x20, 0x00, 0xf3, 0xc3, 0xf9, +0x05, 0x00, 0x50, 0xe0, 0x14, 0x20, 0x68, 0x43, 0xc6, 0x19, 0xff, 0x20, 0x11, 0x30, 0x20, 0x70, +0x00, 0x0a, 0x60, 0x70, 0x0a, 0x20, 0xa0, 0x70, 0x00, 0x20, 0xe0, 0x70, 0x36, 0x1d, 0x28, 0x00, +0x25, 0x71, 0xfe, 0xf2, 0x1c, 0xfb, 0x02, 0x90, 0x03, 0x98, 0xc0, 0x68, 0xc0, 0x04, 0x31, 0xd5, +0x03, 0x98, 0x07, 0xf0, 0x7d, 0xf8, 0x00, 0x28, 0x27, 0xd0, 0x30, 0x78, 0x00, 0x07, 0xc0, 0x0f, +0x20, 0x72, 0xb0, 0x89, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x20, 0x60, 0x72, 0xb0, 0x89, 0xa0, 0x71, +0x00, 0x0a, 0xe0, 0x71, 0x30, 0x78, 0x00, 0x07, 0x04, 0xd5, 0xb0, 0x89, 0x00, 0x28, 0x01, 0xd1, +0x01, 0x20, 0x60, 0x71, 0x07, 0x20, 0xc0, 0x01, 0x38, 0x18, 0x82, 0x7b, 0x02, 0x9b, 0x01, 0x21, +0x08, 0x00, 0x98, 0x40, 0x02, 0x42, 0x00, 0xd0, 0xa1, 0x72, 0x1d, 0x22, 0x52, 0x01, 0xba, 0x18, +0x12, 0x78, 0x02, 0x42, 0x08, 0xd0, 0xe1, 0x72, 0x06, 0xe0, 0x00, 0x20, 0x00, 0xf3, 0x7b, 0xf9, +0xa8, 0x42, 0x01, 0xd0, 0x01, 0x20, 0x60, 0x71, 0x01, 0x98, 0x0e, 0x34, 0x0e, 0x30, 0x6d, 0x1c, +0x2d, 0x06, 0x2d, 0x0e, 0x01, 0x90, 0x03, 0x2d, 0xac, 0xd9, 0x01, 0x98, 0x05, 0xb0, 0xf0, 0xbd, +0x70, 0xb5, 0x06, 0x00, 0x0d, 0x00, 0xff, 0xf7, 0x92, 0xff, 0x04, 0x00, 0x0b, 0x20, 0x80, 0x01, +0x30, 0x18, 0x40, 0x69, 0x3b, 0x49, 0x41, 0x18, 0x28, 0x00, 0xfe, 0xf2, 0x89, 0xfc, 0x00, 0x19, +0x70, 0xbd, 0x1c, 0xb5, 0x04, 0x00, 0xff, 0x22, 0x91, 0x32, 0x17, 0x23, 0x69, 0x46, 0x01, 0xa8, +0xe7, 0xf7, 0x1d, 0xfc, 0x00, 0x28, 0x0c, 0xd0, 0x00, 0x99, 0x20, 0x00, 0x10, 0x31, 0xff, 0xf7, +0xdf, 0xff, 0x00, 0x99, 0x88, 0x72, 0x00, 0x0a, 0xc8, 0x72, 0x01, 0x99, 0x20, 0x00, 0xe7, 0xf7, +0xd9, 0xfb, 0x1c, 0xbd, 0xf8, 0xb5, 0x15, 0x00, 0x06, 0x00, 0x0f, 0x00, 0x07, 0xf0, 0x10, 0xf8, +0x00, 0x28, 0x1c, 0xd0, 0x0b, 0x20, 0x80, 0x01, 0x34, 0x18, 0x00, 0x2d, 0x18, 0xd0, 0x28, 0x7a, +0x62, 0x69, 0x00, 0x07, 0x51, 0x78, 0x00, 0x0f, 0x88, 0x42, 0x10, 0xd0, 0x52, 0x1c, 0x29, 0x00, +0x30, 0x00, 0xff, 0xf7, 0x01, 0xff, 0x00, 0x28, 0x09, 0xd0, 0x1e, 0x49, 0x60, 0x69, 0x1a, 0x22, +0x40, 0x18, 0x29, 0x00, 0xfe, 0xf2, 0x00, 0xef, 0x30, 0x00, 0xff, 0xf7, 0xc2, 0xff, 0xf8, 0xbd, +0x00, 0x2f, 0xfc, 0xd0, 0x38, 0x7a, 0x61, 0x69, 0x00, 0x07, 0x49, 0x78, 0x00, 0x0f, 0x88, 0x42, +0xf5, 0xd0, 0x30, 0x00, 0x02, 0xf0, 0x79, 0xfd, 0xf8, 0xbd, 0x38, 0xb5, 0x00, 0x21, 0x00, 0x91, +0x11, 0x49, 0x05, 0x00, 0x4c, 0x6a, 0x6a, 0x46, 0x21, 0x00, 0x30, 0x31, 0xfe, 0xf2, 0x5f, 0xfb, +0x00, 0x28, 0x23, 0xd0, 0x28, 0x78, 0x01, 0x28, 0x01, 0xd0, 0x02, 0x28, 0x1e, 0xd1, 0x6d, 0x78, +0x0a, 0x49, 0x68, 0x00, 0x00, 0x19, 0x00, 0x8e, 0x88, 0x42, 0x00, 0xd1, 0xa0, 0x6a, 0x04, 0x04, +0x24, 0x0c, 0x21, 0x00, 0x28, 0x00, 0x0b, 0xe0, 0xf8, 0x49, 0x00, 0x04, 0xb8, 0x4d, 0x00, 0x04, +0xf4, 0x75, 0x02, 0x00, 0xa1, 0x03, 0x00, 0x00, 0x38, 0x52, 0x00, 0x04, 0xff, 0xff, 0x00, 0x00, +0xf5, 0xf7, 0x27, 0xfc, 0x21, 0x00, 0x28, 0x00, 0xe4, 0xf7, 0xd5, 0xfa, 0x00, 0x98, 0x38, 0xbd, +0x02, 0x00, 0x08, 0x00, 0x0b, 0x21, 0x89, 0x01, 0x51, 0x18, 0x10, 0xb5, 0x49, 0x69, 0xfe, 0x4a, +0x8a, 0x18, 0xfe, 0x49, 0xfe, 0xf2, 0x4d, 0xfb, 0x10, 0xbd, 0xf0, 0xb5, 0x0b, 0x22, 0x92, 0x01, +0x87, 0x18, 0x14, 0x20, 0x48, 0x43, 0x7a, 0x69, 0x00, 0x1d, 0x14, 0x18, 0x00, 0x26, 0x26, 0x74, +0xf7, 0x4b, 0x66, 0x74, 0x32, 0x00, 0x48, 0x00, 0xa6, 0x81, 0xc0, 0x18, 0xe6, 0x81, 0x84, 0x46, +0x26, 0x60, 0x60, 0x46, 0x85, 0x5c, 0x60, 0x23, 0x6b, 0x43, 0x78, 0x69, 0x54, 0x33, 0xc3, 0x18, +0x90, 0x00, 0x00, 0x19, 0x43, 0x60, 0x40, 0x33, 0x59, 0x75, 0x43, 0x68, 0x52, 0x1c, 0x40, 0x33, +0xd9, 0x75, 0x43, 0x68, 0x12, 0x06, 0x40, 0x33, 0x5e, 0x83, 0x43, 0x68, 0x12, 0x0e, 0x40, 0x33, +0x9e, 0x83, 0x43, 0x68, 0x40, 0x33, 0x1d, 0x76, 0x43, 0x68, 0x40, 0x33, 0x99, 0x75, 0x40, 0x68, +0x40, 0x30, 0x02, 0x2a, 0x86, 0x77, 0xdc, 0xd3, 0xf0, 0xbd, 0x70, 0xb5, 0x15, 0x00, 0x0c, 0x00, +0x4a, 0x1c, 0x29, 0x00, 0xff, 0xf7, 0x68, 0xfe, 0x00, 0x28, 0x06, 0xd0, 0xda, 0x48, 0x1a, 0x22, +0x1d, 0x38, 0x29, 0x00, 0x20, 0x18, 0xfe, 0xf2, 0x68, 0xee, 0x70, 0xbd, 0x01, 0x20, 0x10, 0xb5, +0x00, 0xf3, 0x81, 0xf8, 0xd7, 0x4b, 0x00, 0x22, 0x04, 0xe0, 0xc1, 0x00, 0x5a, 0x50, 0xc9, 0x18, +0x40, 0x1c, 0x0a, 0x71, 0x03, 0x28, 0xf8, 0xdd, 0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, +0xfe, 0xf2, 0x1e, 0xfa, 0x20, 0x7a, 0x00, 0x09, 0x00, 0x01, 0x20, 0x72, 0x5e, 0x20, 0x20, 0x75, +0x00, 0x20, 0x60, 0x75, 0x2f, 0x20, 0x20, 0x76, 0x00, 0x20, 0x02, 0x2d, 0x60, 0x76, 0x0e, 0xd1, +0xe0, 0x7a, 0x00, 0x07, 0x00, 0x0f, 0x60, 0x30, 0xe0, 0x72, 0xa0, 0x7c, 0x00, 0x09, 0x00, 0x01, +0x40, 0x1c, 0xa0, 0x74, 0xa0, 0x7d, 0x00, 0x09, 0x00, 0x01, 0x40, 0x1c, 0xa0, 0x75, 0x70, 0xbd, +0x10, 0xb5, 0x04, 0x00, 0x88, 0xb0, 0x01, 0xa8, 0xff, 0xf7, 0xd7, 0xff, 0x03, 0xa9, 0x10, 0x22, +0x89, 0x1c, 0x20, 0x00, 0xfe, 0xf2, 0x28, 0xee, 0x08, 0xb0, 0x10, 0xbd, 0xf0, 0xb5, 0x85, 0xb0, +0x02, 0x21, 0x68, 0x46, 0xff, 0xf7, 0xec, 0xff, 0xb7, 0x4e, 0x00, 0x24, 0x17, 0x3f, 0x33, 0x0d, +0x01, 0x00, 0x00, 0x00, 0x20, 0xde, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xcf, 0xed, 0xf8, 0x34, +0x01, 0x27, 0x20, 0x00, 0x00, 0xf3, 0x39, 0xf8, 0x05, 0x00, 0xf4, 0xf2, 0xa3, 0xf9, 0x39, 0x00, +0xa9, 0x40, 0xb0, 0x69, 0x01, 0x42, 0xfc, 0xd0, 0xa1, 0x00, 0x68, 0x46, 0x09, 0x18, 0x04, 0xa8, +0xfe, 0xf2, 0x5d, 0xfa, 0x28, 0x00, 0x04, 0xa9, 0xff, 0xf7, 0x77, 0xfd, 0x28, 0x00, 0xf4, 0xf2, +0x99, 0xf9, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x04, 0x2c, 0xe2, 0xd3, 0xb0, 0xe6, 0xff, 0xb5, +0x81, 0xb0, 0x0f, 0x00, 0x0b, 0x9e, 0x0a, 0x9d, 0x0c, 0x9c, 0x09, 0x21, 0xfe, 0xf2, 0xbc, 0xee, +0x09, 0x21, 0x38, 0x00, 0xfe, 0xf2, 0xb8, 0xee, 0x03, 0x98, 0x09, 0x21, 0xfe, 0xf2, 0xb4, 0xee, +0x04, 0x98, 0x1a, 0x21, 0xfe, 0xf2, 0xb0, 0xee, 0x28, 0x78, 0x21, 0x01, 0x00, 0x07, 0x00, 0x0f, +0x20, 0x30, 0x28, 0x70, 0x68, 0x78, 0x9a, 0x4f, 0x00, 0x07, 0x00, 0x0f, 0x08, 0x43, 0x0d, 0x99, +0x00, 0x09, 0x00, 0x01, 0x09, 0x07, 0x09, 0x0f, 0x08, 0x43, 0x68, 0x70, 0x00, 0x20, 0x04, 0x00, +0x68, 0x80, 0x29, 0x00, 0x20, 0x00, 0xff, 0xf7, 0x40, 0xfd, 0x61, 0x00, 0x64, 0x1c, 0x24, 0x06, +0x38, 0x68, 0x24, 0x0e, 0x07, 0x2c, 0x70, 0x52, 0xf3, 0xd9, 0x79, 0xe6, 0xf0, 0xb5, 0x04, 0x00, +0x17, 0x00, 0x8c, 0x48, 0x0b, 0x22, 0x01, 0x26, 0x92, 0x01, 0x40, 0x6a, 0xf6, 0x02, 0xa5, 0x18, +0x00, 0x29, 0x85, 0xb0, 0x28, 0xd1, 0xe1, 0x68, 0xb1, 0x43, 0xe1, 0x60, 0x6e, 0x69, 0x00, 0x2e, +0x1a, 0xd0, 0x00, 0x25, 0x0a, 0x22, 0x04, 0x21, 0x30, 0x30, 0x01, 0xab, 0x35, 0x70, 0x07, 0xc3, +0x04, 0xaa, 0x7a, 0x48, 0x00, 0x92, 0x1d, 0x38, 0x33, 0x18, 0x73, 0x20, 0xc0, 0x00, 0x32, 0x18, +0x76, 0x48, 0x2f, 0x38, 0x31, 0x18, 0x75, 0x48, 0x38, 0x38, 0x30, 0x18, 0xff, 0xf7, 0x9f, 0xff, +0x29, 0x00, 0x20, 0x00, 0xff, 0xf7, 0xba, 0xfc, 0x20, 0x00, 0xef, 0xf7, 0xfe, 0xf9, 0x00, 0x28, +0x0d, 0xd0, 0xff, 0xf7, 0x6d, 0xff, 0x0a, 0xe0, 0x20, 0x00, 0xff, 0xf7, 0xaf, 0xfc, 0x00, 0x28, +0x05, 0xd0, 0xe1, 0x68, 0x68, 0x69, 0x31, 0x43, 0xe1, 0x60, 0x01, 0x21, 0x01, 0x70, 0x00, 0x2f, +0x02, 0xd0, 0x20, 0x00, 0xff, 0xf7, 0x47, 0xfe, 0x20, 0x00, 0x00, 0xf0, 0xde, 0xfc, 0xff, 0xf7, +0x17, 0xff, 0x2d, 0xe6, 0xff, 0xb5, 0x81, 0xb0, 0x00, 0x24, 0x0e, 0x00, 0x08, 0x69, 0x00, 0x28, +0x0e, 0xd1, 0x01, 0x98, 0xe4, 0xf7, 0xd8, 0xfe, 0x00, 0x28, 0x09, 0xd1, 0x04, 0x9a, 0x01, 0x98, +0x00, 0x21, 0xff, 0xf7, 0xa3, 0xff, 0x21, 0x00, 0x20, 0x00, 0xeb, 0xf7, 0xf0, 0xfd, 0x17, 0xe6, +0x01, 0x98, 0x01, 0x21, 0xff, 0xf7, 0x82, 0xfc, 0x01, 0x99, 0x0b, 0x20, 0x80, 0x01, 0x08, 0x18, +0x45, 0x69, 0x52, 0x4f, 0x30, 0x69, 0x41, 0x3f, 0x00, 0x28, 0x07, 0xd1, 0xe8, 0x19, 0xfe, 0xf2, +0x0d, 0xf9, 0x55, 0x48, 0xfe, 0xf2, 0x1e, 0xf9, 0x53, 0x48, 0x30, 0x61, 0x01, 0x20, 0xff, 0xf2, +0x6c, 0xff, 0x04, 0x00, 0x06, 0xe0, 0x01, 0x98, 0x21, 0x00, 0xff, 0xf7, 0x98, 0xfe, 0x64, 0x1c, +0x24, 0x06, 0x24, 0x0e, 0x03, 0x2c, 0xf6, 0xd9, 0x03, 0x98, 0x00, 0x28, 0x01, 0xd0, 0x00, 0xf0, +0xbc, 0xfc, 0x42, 0x48, 0xe9, 0x19, 0x2f, 0x38, 0x09, 0x22, 0x0c, 0x00, 0x28, 0x18, 0xfe, 0xf2, +0x36, 0xed, 0x3e, 0x48, 0x09, 0x22, 0x38, 0x38, 0x21, 0x00, 0x28, 0x18, 0xfe, 0xf2, 0x2e, 0xed, +0x73, 0x20, 0xc0, 0x00, 0x09, 0x22, 0x21, 0x00, 0x28, 0x18, 0xfe, 0xf2, 0x28, 0xed, 0x07, 0x20, +0xc0, 0x01, 0x28, 0x18, 0x81, 0x7b, 0x00, 0x91, 0x01, 0x6a, 0x00, 0x98, 0xeb, 0xf7, 0xa7, 0xfd, +0x32, 0x69, 0x01, 0x98, 0x29, 0x00, 0xff, 0xf7, 0xa2, 0xfe, 0x04, 0x9a, 0x01, 0x98, 0x01, 0x21, +0xff, 0xf7, 0x4c, 0xff, 0xc4, 0xe5, 0x0b, 0x21, 0x89, 0x01, 0x40, 0x18, 0x40, 0x69, 0x00, 0x28, +0x06, 0xd0, 0x1b, 0x21, 0x49, 0x01, 0x40, 0x18, 0x40, 0x7f, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x20, +0x70, 0x47, 0x38, 0xb5, 0x6b, 0x46, 0x18, 0x78, 0x00, 0x07, 0x00, 0x0f, 0x20, 0x30, 0x18, 0x70, +0x58, 0x78, 0x00, 0x07, 0x00, 0x0f, 0x40, 0x30, 0x00, 0x09, 0x00, 0x01, 0x0a, 0x30, 0x58, 0x70, +0x00, 0x20, 0x04, 0x00, 0x58, 0x80, 0x20, 0x06, 0x00, 0x0e, 0x69, 0x46, 0xff, 0xf7, 0x5d, 0xfc, +0x64, 0x1c, 0x07, 0x2c, 0xf7, 0xd9, 0x38, 0xbd, 0x00, 0x28, 0x0a, 0xd0, 0x0b, 0x21, 0x89, 0x01, +0x40, 0x18, 0x40, 0x69, 0x00, 0x28, 0x04, 0xd0, 0x1d, 0x21, 0x49, 0x01, 0x40, 0x18, 0xc0, 0x7e, +0x70, 0x47, 0x00, 0x20, 0x70, 0x47, 0xf8, 0xb5, 0x1d, 0x00, 0x06, 0x00, 0x08, 0x00, 0x60, 0x23, +0x0b, 0x21, 0x43, 0x43, 0x89, 0x01, 0x74, 0x18, 0x61, 0x69, 0x1f, 0x00, 0xab, 0x37, 0xca, 0x55, +0x61, 0x69, 0xb2, 0x33, 0xcd, 0x54, 0xff, 0xf2, 0xd7, 0xfe, 0xff, 0xf2, 0xe6, 0xfe, 0x01, 0x00, +0x30, 0x00, 0xff, 0xf7, 0x51, 0xfc, 0x0f, 0x22, 0x60, 0x69, 0xa9, 0x00, 0x92, 0x01, 0x89, 0x18, +0x41, 0x18, 0x28, 0x00, 0xe4, 0xf7, 0x42, 0xf9, 0xf8, 0xbd, 0x00, 0x00, 0xbe, 0x03, 0x00, 0x00, +0xb8, 0x51, 0x00, 0x04, 0xf4, 0x75, 0x02, 0x00, 0x98, 0x51, 0x00, 0x04, 0x40, 0xa2, 0x00, 0x80, +0x48, 0xbc, 0x02, 0x00, 0x38, 0x52, 0x00, 0x04, 0xb3, 0x65, 0x02, 0xc0, 0x3d, 0x21, 0x3b, 0x48, +0x49, 0x01, 0x10, 0xb5, 0xfe, 0xf2, 0x3e, 0xed, 0x39, 0x48, 0x80, 0x21, 0xfe, 0xf2, 0x3a, 0xed, +0x10, 0xbd, 0x00, 0x28, 0x08, 0xd0, 0x01, 0x29, 0x01, 0x7a, 0x02, 0xd1, 0x80, 0x22, 0x11, 0x43, +0x01, 0xe0, 0x49, 0x06, 0x49, 0x0e, 0x01, 0x72, 0x70, 0x47, 0xfe, 0xb5, 0x00, 0x25, 0x1f, 0x00, +0x06, 0x00, 0x6b, 0x46, 0x02, 0x95, 0x58, 0x7a, 0x02, 0x23, 0x18, 0x43, 0x6b, 0x46, 0x58, 0x72, +0x20, 0x23, 0x04, 0x00, 0x1c, 0x43, 0x00, 0x29, 0x02, 0xd1, 0xdf, 0x21, 0x08, 0x40, 0x04, 0x00, +0x6b, 0x46, 0x5c, 0x72, 0x01, 0x95, 0x18, 0x79, 0x51, 0x07, 0xc0, 0x08, 0xc0, 0x00, 0x49, 0x0f, +0x08, 0x43, 0x10, 0x21, 0x08, 0x43, 0x18, 0x71, 0x3a, 0x06, 0x12, 0x0e, 0x00, 0x92, 0x01, 0x9a, +0x02, 0x99, 0x30, 0x00, 0x31, 0x23, 0xe3, 0xf7, 0xc5, 0xfc, 0x00, 0x28, 0x02, 0xd0, 0x30, 0x00, +0x05, 0xf0, 0x32, 0xff, 0xfe, 0xbd, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x70, 0x47, 0x01, 0x28, +0x01, 0xd1, 0x00, 0x20, 0x70, 0x47, 0x04, 0x28, 0xfb, 0xd2, 0x70, 0x47, 0x10, 0xb5, 0x04, 0x00, +0x08, 0x00, 0xf3, 0xf2, 0xe9, 0xfc, 0x01, 0x00, 0x20, 0x00, 0xf3, 0xf2, 0xdf, 0xfc, 0x10, 0xbd, +0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x08, 0x00, 0xf3, 0xf2, 0xce, 0xfc, 0x01, 0x00, 0x20, 0x00, +0xf3, 0xf2, 0xc5, 0xfc, 0x28, 0x00, 0xf3, 0xf2, 0xe9, 0xfc, 0x01, 0x00, 0x20, 0x00, 0xf3, 0xf2, +0xc8, 0xfc, 0x08, 0x48, 0xa1, 0x00, 0x09, 0x18, 0xaa, 0x00, 0x10, 0x18, 0x00, 0x68, 0x08, 0x60, +0x29, 0x00, 0x20, 0x00, 0xff, 0xf7, 0xda, 0xff, 0x70, 0xbd, 0x00, 0x00, 0xf8, 0x49, 0x00, 0x04, +0xb8, 0x51, 0x00, 0x04, 0x80, 0xa6, 0x00, 0x80, 0xfd, 0x49, 0x30, 0xb5, 0x00, 0x20, 0x09, 0x6c, +0x00, 0x29, 0x17, 0xd0, 0x0b, 0x22, 0x92, 0x01, 0x89, 0x18, 0x4c, 0x69, 0x80, 0xd9, 0x7a, 0x92, +0x01, 0x00, 0x00, 0x00, 0x1c, 0xe2, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xe7, 0x7c, 0x7d, 0x89, +0x00, 0x2c, 0x11, 0xd0, 0x00, 0x21, 0x60, 0x22, 0x4a, 0x43, 0x12, 0x19, 0x80, 0x32, 0xd3, 0x7a, +0x04, 0x2b, 0x04, 0xd1, 0x93, 0x7a, 0x55, 0x7a, 0x1a, 0x02, 0x2a, 0x43, 0x10, 0x18, 0x49, 0x1c, +0x09, 0x06, 0x09, 0x0e, 0x08, 0x29, 0xee, 0xd3, 0x30, 0xbd, 0xee, 0x48, 0x70, 0xb5, 0x00, 0x6c, +0x00, 0x28, 0x1c, 0xd0, 0x0b, 0x21, 0x89, 0x01, 0x40, 0x18, 0x44, 0x69, 0x00, 0x2c, 0x16, 0xd0, +0x00, 0x20, 0x14, 0x21, 0x41, 0x43, 0x40, 0x1c, 0x09, 0x19, 0x8a, 0x68, 0x00, 0x06, 0x30, 0x32, +0x93, 0x79, 0x52, 0x79, 0x1b, 0x02, 0x13, 0x43, 0xca, 0x68, 0x00, 0x0e, 0x30, 0x32, 0x95, 0x79, +0x56, 0x79, 0x2a, 0x02, 0x32, 0x43, 0x9a, 0x18, 0x04, 0x28, 0x0a, 0x82, 0xe9, 0xd3, 0x70, 0xbd, +0xdc, 0x4a, 0x70, 0xb5, 0x00, 0x20, 0x12, 0x6c, 0x03, 0x00, 0x00, 0x2a, 0x22, 0xd0, 0x0b, 0x24, +0xa4, 0x01, 0x12, 0x19, 0x55, 0x69, 0x00, 0x2d, 0x1c, 0xd0, 0x00, 0x22, 0x0d, 0x26, 0xb6, 0x01, +0x94, 0x00, 0x64, 0x19, 0xa4, 0x19, 0x64, 0x69, 0x00, 0x2c, 0x0b, 0xd0, 0x20, 0x34, 0xe4, 0x7d, +0x00, 0x2c, 0x07, 0xd0, 0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x01, 0x2c, 0x02, 0xd1, 0x5b, 0x1c, +0x1b, 0x06, 0x1b, 0x0e, 0x52, 0x1c, 0x12, 0x06, 0x12, 0x0e, 0x08, 0x2a, 0xe8, 0xd3, 0x00, 0x29, +0x00, 0xd0, 0x0b, 0x70, 0x70, 0xbd, 0x1c, 0xb5, 0x03, 0x00, 0x08, 0x00, 0xc5, 0x49, 0x09, 0x6c, +0x00, 0x29, 0x1c, 0xd0, 0x0b, 0x22, 0x92, 0x01, 0x89, 0x18, 0x4c, 0x69, 0x00, 0x2c, 0x16, 0xd0, +0xc1, 0x49, 0x1a, 0x00, 0x00, 0x93, 0x63, 0x18, 0xbf, 0x49, 0x54, 0x32, 0x09, 0x39, 0x01, 0x92, +0x62, 0x18, 0x1d, 0x21, 0x49, 0x01, 0x61, 0x18, 0xfd, 0xf2, 0x3e, 0xfe, 0x07, 0x20, 0xc0, 0x01, +0x20, 0x18, 0x81, 0x7b, 0x01, 0x91, 0x01, 0x6a, 0x01, 0x98, 0xeb, 0xf7, 0x22, 0xfc, 0x1c, 0xbd, +0xb4, 0x49, 0x10, 0xb5, 0x09, 0x6c, 0x00, 0x29, 0x1e, 0xd0, 0x0b, 0x22, 0x92, 0x01, 0x89, 0x18, +0x49, 0x69, 0x00, 0x29, 0x18, 0xd0, 0x80, 0x00, 0x41, 0x18, 0x0d, 0x20, 0x80, 0x01, 0x0c, 0x18, +0x60, 0x69, 0x37, 0x21, 0xfe, 0xf2, 0x4a, 0xec, 0x60, 0x69, 0x1b, 0x21, 0x39, 0x30, 0xfe, 0xf2, +0x46, 0xec, 0x61, 0x69, 0x00, 0x20, 0x20, 0x31, 0x08, 0x76, 0x61, 0x69, 0x40, 0x31, 0x08, 0x75, +0x61, 0x69, 0x20, 0x31, 0xc8, 0x75, 0x60, 0x61, 0x10, 0xbd, 0xf8, 0xb5, 0x0b, 0x22, 0x92, 0x01, +0xa0, 0x48, 0x00, 0x27, 0x01, 0x6c, 0x89, 0x18, 0x4e, 0x69, 0x3c, 0x00, 0x14, 0x20, 0x60, 0x43, +0x85, 0x19, 0x28, 0x8a, 0x00, 0x28, 0x0a, 0xd0, 0x28, 0x7d, 0x01, 0x27, 0x00, 0x28, 0x06, 0xd0, +0x00, 0x20, 0x28, 0x75, 0x97, 0x48, 0x21, 0x00, 0x00, 0x6c, 0xff, 0xf7, 0xe7, 0xfa, 0x64, 0x1c, +0x00, 0x20, 0x24, 0x06, 0x24, 0x0e, 0x04, 0x2c, 0x68, 0x82, 0xe7, 0xd3, 0x00, 0x2f, 0x0a, 0xd0, +0x79, 0x20, 0x00, 0x22, 0xc0, 0x00, 0x33, 0x18, 0x00, 0x92, 0x90, 0x4a, 0x90, 0x48, 0x00, 0x21, +0xed, 0xf2, 0xda, 0xfb, 0xf8, 0xbd, 0x0f, 0x21, 0x00, 0x20, 0x89, 0x01, 0x71, 0x18, 0x88, 0x60, +0xf8, 0xbd, 0xf3, 0xb5, 0x89, 0xb0, 0x87, 0x49, 0x08, 0x6c, 0x00, 0x28, 0x7c, 0xd0, 0x0b, 0x22, +0x92, 0x01, 0x80, 0x18, 0x44, 0x69, 0x00, 0x2c, 0xf8, 0xd0, 0x0d, 0x00, 0xff, 0xf7, 0x06, 0xff, +0x05, 0x90, 0x09, 0x98, 0x00, 0x21, 0x00, 0x78, 0xc0, 0x06, 0x07, 0x0f, 0x09, 0x98, 0x40, 0x78, +0x80, 0x06, 0x40, 0x0f, 0x07, 0x90, 0x28, 0x6c, 0xff, 0xf7, 0x3a, 0xff, 0x00, 0x26, 0x08, 0x2f, +0x00, 0x90, 0x61, 0xd2, 0x07, 0x20, 0xc0, 0x01, 0x20, 0x18, 0x81, 0x7b, 0x04, 0x91, 0x00, 0x6a, +0x03, 0x90, 0x0a, 0x98, 0x01, 0x28, 0x02, 0xd0, 0x0a, 0x98, 0x02, 0x28, 0x5a, 0xd1, 0x09, 0x98, +0x06, 0xa9, 0xfd, 0xf2, 0x87, 0xfd, 0x07, 0x98, 0xff, 0xf2, 0x18, 0xfd, 0xff, 0xf2, 0x27, 0xfd, +0x14, 0x23, 0x58, 0x43, 0x00, 0x25, 0x00, 0x19, 0x08, 0x90, 0xa9, 0x00, 0x40, 0x18, 0x80, 0x68, +0x54, 0x21, 0x6b, 0x46, 0x09, 0x5c, 0x1a, 0x7e, 0x11, 0x42, 0x0f, 0xd0, 0x00, 0x78, 0x0d, 0x21, +0xc0, 0x06, 0x06, 0x0f, 0xb0, 0x00, 0x00, 0x19, 0x89, 0x01, 0x40, 0x18, 0x40, 0x69, 0x00, 0x21, +0xff, 0xf7, 0x31, 0xff, 0x30, 0x00, 0xff, 0xf7, 0x53, 0xff, 0x01, 0x26, 0x6d, 0x1c, 0x2d, 0x06, +0x2d, 0x0e, 0x02, 0x2d, 0x01, 0xd2, 0x08, 0x98, 0xdf, 0xe7, 0xb8, 0x00, 0x01, 0x19, 0x0d, 0x20, +0x80, 0x01, 0x0d, 0x18, 0x68, 0x69, 0x00, 0x28, 0x06, 0xd0, 0x00, 0x21, 0xff, 0xf7, 0x1b, 0xff, +0x38, 0x00, 0xff, 0xf7, 0x3d, 0xff, 0x01, 0x26, 0x07, 0x98, 0x60, 0x23, 0x58, 0x43, 0x37, 0x22, +0x00, 0x19, 0x54, 0x30, 0x68, 0x61, 0x09, 0x99, 0xfe, 0xf2, 0xca, 0xea, 0x68, 0x69, 0x6b, 0x46, +0x19, 0x7e, 0x40, 0x30, 0x01, 0x75, 0x68, 0x69, 0x0a, 0x99, 0xff, 0xf7, 0x04, 0xff, 0x0a, 0x98, +0x02, 0x28, 0x02, 0xd1, 0x05, 0x21, 0x01, 0xe0, 0x5d, 0xe0, 0x04, 0x21, 0x68, 0x69, 0x20, 0x30, +0xc1, 0x75, 0x0d, 0xe0, 0xb8, 0x00, 0x01, 0x19, 0x0d, 0x20, 0x80, 0x01, 0x08, 0x18, 0x40, 0x69, +0x00, 0x28, 0x05, 0xd0, 0x0a, 0x99, 0xff, 0xf7, 0xee, 0xfe, 0x38, 0x00, 0xff, 0xf7, 0x10, 0xff, +0xff, 0xf7, 0x7c, 0xfe, 0x05, 0x99, 0x88, 0x42, 0x01, 0xd0, 0x01, 0x25, 0x00, 0xe0, 0x00, 0x25, +0x39, 0x48, 0x01, 0x22, 0x09, 0x38, 0x21, 0x18, 0x04, 0xa8, 0x02, 0xf0, 0x4d, 0xfe, 0x00, 0x06, +0x00, 0x0e, 0x02, 0x90, 0x1d, 0x20, 0x40, 0x01, 0x21, 0x18, 0x01, 0x22, 0x03, 0xa8, 0x02, 0xf0, +0x43, 0xfe, 0x00, 0x06, 0x00, 0x0e, 0x00, 0x2d, 0x01, 0x90, 0x1b, 0xd0, 0xff, 0xf7, 0x7d, 0xfe, +0x2c, 0x4f, 0x00, 0x24, 0x38, 0x6c, 0x21, 0x00, 0xff, 0xf7, 0x10, 0xfa, 0x64, 0x1c, 0x24, 0x06, +0x24, 0x0e, 0x04, 0x2c, 0xf6, 0xd3, 0x39, 0x6c, 0x0b, 0x20, 0x80, 0x01, 0x08, 0x18, 0x40, 0x69, +0x0f, 0x21, 0x89, 0x01, 0x40, 0x18, 0x80, 0x68, 0x00, 0x28, 0x03, 0xd1, 0x00, 0x21, 0x08, 0x00, +0xff, 0xf7, 0xfb, 0xfe, 0x1f, 0x48, 0x00, 0x21, 0x00, 0x6c, 0xff, 0xf7, 0x81, 0xfe, 0x00, 0x99, +0x88, 0x42, 0x05, 0xd1, 0x02, 0x98, 0x2e, 0x43, 0x06, 0x43, 0x01, 0x98, 0x06, 0x43, 0x02, 0xd0, +0x01, 0x20, 0x0b, 0xb0, 0xf0, 0xbd, 0x00, 0x20, 0xfb, 0xe7, 0xf8, 0xb5, 0x04, 0x00, 0xff, 0x21, +0x14, 0x4d, 0x2d, 0x31, 0x28, 0x6c, 0xe7, 0xf7, 0x1a, 0xfe, 0x00, 0x28, 0x20, 0x60, 0x12, 0xd0, +0x01, 0x89, 0xb1, 0x23, 0x46, 0x18, 0x29, 0x6c, 0x9b, 0x00, 0x0a, 0x00, 0x7e, 0x32, 0xc9, 0x18, +0x00, 0x92, 0xcb, 0x32, 0x0d, 0x23, 0xe7, 0xf7, 0x5f, 0xfe, 0x11, 0x20, 0x20, 0x36, 0x30, 0x70, +0x21, 0x68, 0xac, 0x20, 0x08, 0x81, 0xf8, 0xbd, 0xff, 0xb5, 0x81, 0xb0, 0x04, 0x00, 0x1e, 0x00, +0x68, 0x46, 0xff, 0xf7, 0xda, 0xff, 0x00, 0x98, 0x00, 0x28, 0x0b, 0xd1, 0x40, 0x1e, 0x05, 0xb0, +0xf0, 0xbd, 0x00, 0x00, 0x18, 0x5c, 0x01, 0xc0, 0x97, 0x03, 0x00, 0x00, 0x40, 0x42, 0x0f, 0x00, +0x77, 0xe3, 0x01, 0x00, 0x01, 0x89, 0xfe, 0x4a, 0x0d, 0x18, 0x11, 0x79, 0x22, 0xab, 0xff, 0xd3, +0x01, 0x00, 0x00, 0x00, 0x18, 0xe6, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xb4, 0xa6, 0xae, 0xe5, +0x01, 0x27, 0x49, 0x1c, 0x09, 0x06, 0x09, 0x0e, 0x00, 0x29, 0x11, 0x71, 0x00, 0xd1, 0x17, 0x71, +0xf8, 0x49, 0x02, 0x9a, 0x0b, 0x79, 0x21, 0x00, 0xfd, 0xf2, 0xf9, 0xfc, 0x04, 0x00, 0x00, 0x2e, +0x0e, 0xd0, 0x02, 0x98, 0x03, 0x99, 0x20, 0x18, 0x0c, 0x30, 0x32, 0x00, 0xfe, 0xf2, 0x0a, 0xea, +0x68, 0x78, 0x29, 0x78, 0x00, 0x02, 0x08, 0x43, 0x80, 0x19, 0x28, 0x70, 0x00, 0x0a, 0x68, 0x70, +0xed, 0x48, 0x00, 0x78, 0x80, 0x07, 0x18, 0xd4, 0x60, 0x7b, 0x80, 0x06, 0x40, 0x0f, 0xfd, 0xf2, +0x84, 0xfc, 0xe8, 0x49, 0x0b, 0x22, 0x09, 0x6c, 0x92, 0x01, 0x89, 0x18, 0x49, 0x69, 0x07, 0x22, +0xd2, 0x01, 0x89, 0x18, 0x87, 0x40, 0x89, 0x7b, 0x60, 0x7b, 0x39, 0x42, 0x02, 0xd0, 0x04, 0x21, +0x08, 0x43, 0x01, 0xe0, 0xfb, 0x21, 0x08, 0x40, 0x60, 0x73, 0x00, 0x98, 0xe7, 0xf7, 0x54, 0xfe, +0xaf, 0xe7, 0x70, 0xb5, 0x05, 0x00, 0x00, 0x24, 0x21, 0x00, 0x28, 0x00, 0x00, 0xf0, 0x2f, 0xfb, +0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, 0x70, 0xbd, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x03, 0x2c, +0xf2, 0xd9, 0x00, 0x20, 0x70, 0xbd, 0xf1, 0xb5, 0x00, 0x25, 0x82, 0xb0, 0xd1, 0x49, 0x08, 0x6c, +0x00, 0x28, 0x05, 0xd0, 0x0b, 0x22, 0x92, 0x01, 0x80, 0x18, 0x40, 0x69, 0x00, 0x28, 0x01, 0xd1, +0x00, 0x20, 0xfe, 0xbd, 0x07, 0x24, 0x01, 0x90, 0x60, 0x20, 0x60, 0x43, 0x01, 0x99, 0x46, 0x18, +0x54, 0x36, 0x37, 0x00, 0x20, 0x37, 0xf8, 0x7d, 0x01, 0x28, 0x18, 0xd1, 0xc6, 0x48, 0x00, 0x78, +0x80, 0x07, 0x07, 0xd4, 0xc3, 0x48, 0x21, 0x06, 0x00, 0x6c, 0x09, 0x0e, 0x00, 0xf0, 0x14, 0xfb, +0x00, 0x28, 0x0c, 0xd0, 0x32, 0x00, 0x3b, 0x7e, 0x39, 0x32, 0x37, 0x21, 0x30, 0x00, 0xff, 0xf7, +0x65, 0xff, 0x02, 0x20, 0xf8, 0x75, 0x02, 0x98, 0x6d, 0x1c, 0x85, 0x42, 0x01, 0xda, 0x64, 0x1e, +0xda, 0xd5, 0x28, 0x06, 0x00, 0x0e, 0xfe, 0xbd, 0x01, 0x20, 0x10, 0xb5, 0xff, 0xf7, 0xc3, 0xff, +0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0xf3, 0xb5, 0x81, 0xb0, +0x06, 0x00, 0x7d, 0x25, 0x2d, 0x01, 0xb1, 0x48, 0x00, 0x22, 0x29, 0x00, 0xfe, 0xf2, 0x0a, 0xff, +0x04, 0x00, 0x01, 0x20, 0xe2, 0xf7, 0xb2, 0xfc, 0x00, 0x2c, 0xf4, 0xd0, 0xa9, 0x4f, 0x69, 0x21, +0x38, 0x6c, 0x60, 0x61, 0xac, 0x20, 0x25, 0x18, 0x20, 0x81, 0x28, 0x00, 0xfe, 0xf2, 0x38, 0xea, +0x02, 0x9a, 0x31, 0x00, 0x28, 0x00, 0xfd, 0xf2, 0x6e, 0xfc, 0xa5, 0x48, 0x22, 0x00, 0x80, 0x68, +0x04, 0x21, 0x00, 0x68, 0x00, 0x23, 0xe2, 0xf7, 0xe2, 0xfc, 0x00, 0x28, 0x04, 0xd1, 0x38, 0x6c, +0x80, 0x21, 0x08, 0xf0, 0x00, 0xed, 0x02, 0xe0, 0x20, 0x00, 0xfe, 0xf2, 0xb9, 0xfe, 0x01, 0x20, +0xfe, 0xbd, 0xff, 0xb5, 0x83, 0xb0, 0x02, 0xa8, 0x16, 0x00, 0x0d, 0x00, 0x1f, 0x00, 0xff, 0x22, +0x91, 0x32, 0x17, 0x23, 0x01, 0xa9, 0xe6, 0xf7, 0x38, 0xfe, 0x00, 0x28, 0x39, 0xd0, 0x01, 0x99, +0x03, 0x98, 0x10, 0x31, 0xff, 0xf7, 0x91, 0xf9, 0x01, 0x9c, 0xa0, 0x72, 0x00, 0x0a, 0xe0, 0x72, +0x48, 0x34, 0x00, 0x2d, 0x04, 0xd0, 0x06, 0x22, 0x29, 0x00, 0x20, 0x1d, 0xfe, 0xf2, 0x3a, 0xe9, +0x00, 0x2e, 0x05, 0xd0, 0x20, 0x00, 0x06, 0x22, 0x31, 0x00, 0x0a, 0x30, 0xfe, 0xf2, 0x32, 0xe9, +0x00, 0x2f, 0x1a, 0xd0, 0xff, 0x20, 0x8d, 0x30, 0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, 0xff, 0x20, +0x50, 0x30, 0xa0, 0x70, 0x00, 0x0a, 0xe0, 0x70, 0xff, 0x22, 0x20, 0x00, 0x44, 0x32, 0x39, 0x00, +0x10, 0x30, 0xfe, 0xf2, 0x20, 0xe9, 0x01, 0x98, 0xc1, 0x7a, 0x82, 0x7a, 0x09, 0x02, 0x11, 0x43, +0xff, 0x31, 0x54, 0x31, 0x81, 0x72, 0x09, 0x0a, 0xc1, 0x72, 0x02, 0x99, 0x03, 0x98, 0xe6, 0xf7, +0xc7, 0xfd, 0x07, 0xb0, 0xde, 0xe6, 0xf8, 0xb5, 0x04, 0x00, 0x00, 0x25, 0x29, 0x00, 0x0b, 0x30, +0xff, 0xf7, 0xc9, 0xfd, 0x6f, 0x4e, 0x04, 0x20, 0x20, 0x70, 0x30, 0x6c, 0xc1, 0x68, 0xc9, 0x04, +0x1d, 0xd5, 0x06, 0xf0, 0xf3, 0xf9, 0x00, 0x28, 0x19, 0xd0, 0xa7, 0x78, 0xe5, 0x1c, 0x68, 0x46, +0xff, 0xf7, 0x9d, 0xfe, 0x00, 0x98, 0x00, 0x28, 0x01, 0xd1, 0x40, 0x1e, 0x06, 0xe0, 0x3a, 0x00, +0x29, 0x00, 0xfd, 0xf2, 0x11, 0xfc, 0x00, 0x98, 0xe7, 0xf7, 0x5e, 0xfd, 0x05, 0x00, 0x00, 0xd1, +0x20, 0x70, 0x00, 0x22, 0x30, 0x6c, 0x11, 0x00, 0x13, 0x00, 0xff, 0xf7, 0x8a, 0xff, 0x28, 0x00, +0xf8, 0xbd, 0xf8, 0xb5, 0x0c, 0x00, 0x20, 0x00, 0x49, 0x78, 0x17, 0x00, 0x59, 0x4e, 0x15, 0x00, +0x0c, 0x30, 0x0c, 0x37, 0x01, 0x29, 0x03, 0xd0, 0x02, 0x29, 0x10, 0xd1, 0x00, 0x21, 0x04, 0xe0, +0xe1, 0x78, 0x00, 0x29, 0x0b, 0xd1, 0x31, 0x71, 0x01, 0x21, 0xff, 0xf7, 0x8c, 0xfd, 0x00, 0x28, +0x05, 0xd0, 0x30, 0x6c, 0x23, 0x00, 0xaa, 0x1d, 0x39, 0x00, 0xff, 0xf7, 0x6a, 0xff, 0x01, 0x20, +0xf8, 0xbd, 0x4c, 0x49, 0x10, 0xb5, 0x09, 0x6c, 0x0b, 0x22, 0x92, 0x01, 0x89, 0x18, 0x02, 0x78, +0x49, 0x69, 0x52, 0x07, 0xd2, 0x0e, 0x51, 0x18, 0x0d, 0x22, 0x92, 0x01, 0x89, 0x18, 0x49, 0x69, +0x00, 0x29, 0x0a, 0xd0, 0x37, 0x22, 0x52, 0x5c, 0x01, 0x23, 0x04, 0x2a, 0x00, 0xd0, 0x00, 0x23, +0x0a, 0x00, 0x54, 0x32, 0xfd, 0xf2, 0x00, 0xfc, 0x10, 0xbd, 0x00, 0x22, 0x11, 0x00, 0x13, 0x00, +0xf8, 0xe7, 0x0b, 0x21, 0xf0, 0xb5, 0x89, 0x01, 0x40, 0x18, 0x44, 0x69, 0x00, 0x2c, 0x17, 0xd0, +0x00, 0x20, 0x0d, 0x25, 0xad, 0x01, 0x03, 0x00, 0x01, 0x26, 0x81, 0x00, 0x09, 0x19, 0x49, 0x19, +0x49, 0x69, 0x00, 0x29, 0x09, 0xd0, 0x0a, 0x00, 0x20, 0x32, 0xd7, 0x7d, 0x04, 0x2f, 0x04, 0xd1, +0x30, 0x31, 0xd6, 0x75, 0x1a, 0x0a, 0x4b, 0x71, 0x8a, 0x71, 0x40, 0x1c, 0x08, 0x28, 0xec, 0xd3, +0x50, 0xe6, 0x2c, 0x48, 0x30, 0xb5, 0x0b, 0x21, 0x00, 0x6c, 0x89, 0x01, 0x40, 0x18, 0x42, 0x69, +0x0d, 0x23, 0x00, 0x20, 0x9b, 0x01, 0x05, 0x24, 0x81, 0x00, 0x89, 0x18, 0xc9, 0x18, 0x49, 0x69, +0x00, 0x29, 0x04, 0xd0, 0x20, 0x31, 0xcd, 0x7d, 0x04, 0x2d, 0x00, 0xd1, 0xcc, 0x75, 0x40, 0x1c, +0x08, 0x28, 0xf1, 0xd3, 0x30, 0xbd, 0xf8, 0xb5, 0x00, 0x26, 0x1e, 0x48, 0x00, 0x6c, 0x00, 0x28, +0x01, 0xd1, 0x30, 0x00, 0xf8, 0xbd, 0x0b, 0x21, 0x89, 0x01, 0x40, 0x18, 0x47, 0x69, 0x00, 0x24, +0xa0, 0x00, 0x0d, 0x21, 0xc0, 0x19, 0x89, 0x01, 0x40, 0x18, 0x40, 0x69, 0x00, 0x28, 0x0a, 0xd0, +0x05, 0x00, 0x20, 0x35, 0xe9, 0x7d, 0x05, 0x29, 0x05, 0xd1, 0x01, 0x26, 0x31, 0x00, 0xff, 0xf7, +0x8c, 0xfc, 0x04, 0x20, 0xe8, 0x75, 0x64, 0x1c, 0x08, 0x2c, 0xe9, 0xd3, 0xff, 0xf7, 0x37, 0xfc, +0xdf, 0xe7, 0x38, 0xb5, 0x00, 0x20, 0x0b, 0x4c, 0x00, 0x90, 0x20, 0x6c, 0x00, 0x28, 0x19, 0xd0, +0xc1, 0x68, 0xc9, 0x04, 0x16, 0xd5, 0x06, 0xf0, 0x29, 0xf9, 0x00, 0x28, 0x03, 0xd0, 0x20, 0x6c, +0x69, 0x46, 0xff, 0xf7, 0x47, 0xfc, 0x6b, 0x46, 0x18, 0x78, 0x00, 0x28, 0x0a, 0xd0, 0x01, 0x20, +0x38, 0xbd, 0x00, 0x00, 0x18, 0x5c, 0x01, 0xc0, 0x30, 0xfa, 0x00, 0xc0, 0x31, 0xc9, 0x08, 0xdb, +0x01, 0x00, 0x00, 0x00, 0x14, 0xea, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x40, 0xc9, 0xdb, 0x51, +0xfc, 0x00, 0x00, 0x04, 0x98, 0x42, 0x01, 0xc0, 0x00, 0x20, 0xf3, 0xe7, 0x70, 0xb5, 0x89, 0x1e, +0xc7, 0x4d, 0x06, 0x00, 0x00, 0x24, 0x0b, 0x00, 0xfe, 0xf2, 0x32, 0xea, 0x05, 0x3a, 0x04, 0x27, +0x3a, 0x32, 0x3a, 0x00, 0x28, 0x79, 0x40, 0x1c, 0x28, 0x71, 0x00, 0x20, 0xe3, 0xf7, 0x45, 0xf9, +0x28, 0x79, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x28, 0x71, 0x68, 0x79, 0x00, 0x28, 0x09, 0xd0, +0xbb, 0x48, 0x37, 0x21, 0x40, 0x30, 0x03, 0x79, 0x42, 0x1d, 0xa8, 0x1d, 0xff, 0xf7, 0xc0, 0xfd, +0x6c, 0x71, 0x1d, 0xe0, 0x01, 0x20, 0xff, 0xf7, 0x28, 0xfe, 0x00, 0x28, 0x18, 0xd1, 0x06, 0x21, +0x30, 0x00, 0xe5, 0xf7, 0xed, 0xf8, 0x2c, 0x60, 0x12, 0xe0, 0x28, 0x68, 0xb0, 0x42, 0x01, 0xd0, +0x04, 0x20, 0x70, 0xbd, 0x00, 0x2a, 0xf2, 0xd0, 0x00, 0x21, 0x08, 0x00, 0x90, 0x47, 0xee, 0xe7, +0xff, 0xf7, 0x7b, 0xff, 0x00, 0x22, 0x28, 0x6c, 0x11, 0x00, 0x13, 0x00, 0xff, 0xf7, 0x83, 0xfe, +0x03, 0x20, 0x70, 0xbd, 0xf8, 0xb5, 0x00, 0x20, 0x0f, 0x00, 0x07, 0x9e, 0x00, 0x2a, 0x2f, 0xd0, +0x11, 0x89, 0x8c, 0x18, 0xa1, 0x78, 0x09, 0x09, 0x0d, 0x29, 0x29, 0xd1, 0x25, 0x00, 0x20, 0x35, +0x29, 0x78, 0x11, 0x29, 0x24, 0xd1, 0x69, 0x78, 0x01, 0x29, 0x21, 0xd1, 0xe8, 0x78, 0x00, 0x28, +0x0c, 0xd1, 0x28, 0x00, 0x0c, 0x30, 0xff, 0xf7, 0x80, 0xfc, 0x00, 0x28, 0x17, 0xd0, 0x98, 0x48, +0xa2, 0x1d, 0x00, 0x6c, 0x2b, 0x00, 0x91, 0x1d, 0xff, 0xf7, 0x5d, 0xfe, 0x00, 0x2e, 0x0e, 0xd0, +0x60, 0x78, 0x22, 0x78, 0x01, 0x02, 0x11, 0x43, 0x28, 0x00, 0xb0, 0x47, 0x00, 0x28, 0x06, 0xd0, +0x8f, 0x4c, 0x06, 0x21, 0x20, 0x68, 0xe5, 0xf7, 0xa3, 0xf8, 0x00, 0x20, 0x20, 0x60, 0x01, 0x20, +0x00, 0x2f, 0x09, 0xd0, 0x39, 0x68, 0xc9, 0x6d, 0x89, 0x78, 0x0a, 0x07, 0x92, 0x0f, 0x03, 0xd1, +0x09, 0x09, 0x0d, 0x29, 0x00, 0xd1, 0x01, 0x20, 0xf8, 0xbd, 0xf7, 0xb5, 0x92, 0xb0, 0x05, 0x00, +0x0c, 0x00, 0x83, 0x48, 0x0b, 0x21, 0x89, 0x01, 0x6e, 0x18, 0x05, 0x64, 0x71, 0x69, 0x01, 0x91, +0xe1, 0x7b, 0x00, 0x68, 0xc9, 0x06, 0x0f, 0x0f, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, 0x02, 0xe0, +0x08, 0x2f, 0x05, 0xd3, 0x03, 0x20, 0x20, 0x70, 0x00, 0x20, 0xc0, 0x43, 0x15, 0xb0, 0x4b, 0xe5, +0xe8, 0x68, 0xc1, 0x04, 0x20, 0x00, 0x0f, 0x30, 0x00, 0x29, 0x10, 0x90, 0x57, 0xda, 0x28, 0x00, +0x06, 0xf0, 0x66, 0xf8, 0x00, 0x28, 0x52, 0xd0, 0x72, 0x48, 0x00, 0x78, 0x80, 0x07, 0x07, 0xd4, +0x20, 0x7c, 0x80, 0x06, 0x41, 0x0f, 0x28, 0x00, 0x00, 0xf0, 0xd0, 0xf8, 0x00, 0x28, 0x46, 0xd0, +0x38, 0x21, 0x02, 0xa8, 0xfd, 0xf2, 0xfc, 0xef, 0x6b, 0x48, 0x02, 0x90, 0x6b, 0x48, 0x03, 0x90, +0x6b, 0x48, 0x04, 0x90, 0x60, 0x1c, 0xfe, 0xf2, 0x9a, 0xe8, 0x7d, 0x23, 0xdb, 0x00, 0x58, 0x43, +0x08, 0xab, 0x0a, 0x90, 0x18, 0x7d, 0x06, 0x21, 0x08, 0x43, 0x18, 0x75, 0x0e, 0x95, 0x30, 0x69, +0x37, 0x22, 0x00, 0x7b, 0x18, 0x74, 0x30, 0x69, 0x40, 0x7b, 0x80, 0x07, 0x80, 0x0f, 0x58, 0x74, +0x30, 0x69, 0x40, 0x7b, 0x00, 0x07, 0x80, 0x0f, 0x98, 0x74, 0x30, 0x69, 0x58, 0x4e, 0x40, 0x7b, +0x80, 0x06, 0x80, 0x0f, 0xd8, 0x74, 0x35, 0x64, 0x10, 0x99, 0xb0, 0x1d, 0xfd, 0xf2, 0x34, 0xef, +0x14, 0x98, 0x46, 0x38, 0x02, 0x06, 0x57, 0x48, 0x12, 0x0e, 0x02, 0x71, 0x04, 0xd0, 0x21, 0x00, +0x46, 0x31, 0x40, 0x1d, 0xfd, 0xf2, 0x28, 0xef, 0x01, 0x25, 0x02, 0xa8, 0x75, 0x71, 0xe4, 0xf7, +0x88, 0xfe, 0x00, 0x28, 0x30, 0x60, 0x00, 0xd1, 0x45, 0x1e, 0x28, 0x00, 0x16, 0xe0, 0x10, 0x98, +0x01, 0x21, 0xff, 0xf7, 0xda, 0xfb, 0x00, 0x28, 0x0d, 0xd0, 0x01, 0x98, 0xba, 0x00, 0x10, 0x18, +0x0d, 0x22, 0x92, 0x01, 0x80, 0x18, 0x40, 0x69, 0x01, 0x21, 0x20, 0x30, 0xc1, 0x75, 0x04, 0x20, +0x20, 0x70, 0x00, 0x20, 0x02, 0xe0, 0x03, 0x20, 0x20, 0x70, 0x00, 0x1f, 0x41, 0x1c, 0x85, 0xd1, +0x01, 0x21, 0x21, 0x70, 0x82, 0xe7, 0x70, 0xb5, 0x05, 0x00, 0x0b, 0x20, 0x80, 0x01, 0x28, 0x18, +0x04, 0x69, 0x00, 0x20, 0x90, 0xb0, 0x01, 0x90, 0xe8, 0x68, 0xc0, 0x04, 0x3c, 0xd5, 0x28, 0x00, +0x05, 0xf0, 0xe6, 0xff, 0x00, 0x28, 0x37, 0xd0, 0x28, 0x00, 0xff, 0xf7, 0x0c, 0xfd, 0x00, 0x28, +0x03, 0xd1, 0x30, 0x48, 0x00, 0x78, 0x80, 0x07, 0x2e, 0xd5, 0x28, 0x00, 0x01, 0xa9, 0xff, 0xf7, +0xfb, 0xfa, 0x6b, 0x46, 0x1e, 0x79, 0x00, 0x2e, 0x28, 0xd0, 0x38, 0x21, 0x02, 0xa8, 0xfd, 0xf2, +0x78, 0xef, 0x27, 0x48, 0x60, 0x21, 0xfd, 0xf2, 0x74, 0xef, 0x27, 0x48, 0x02, 0x90, 0x27, 0x48, +0x03, 0x90, 0x29, 0x48, 0x04, 0x90, 0x29, 0x48, 0x0e, 0x95, 0x70, 0x43, 0x0a, 0x90, 0x20, 0x7b, +0x08, 0xab, 0x18, 0x74, 0x60, 0x7b, 0x80, 0x07, 0x80, 0x0f, 0x58, 0x74, 0x60, 0x7b, 0x00, 0x07, +0x80, 0x0f, 0x98, 0x74, 0x60, 0x7b, 0x80, 0x06, 0x80, 0x0f, 0xd8, 0x74, 0x02, 0xa8, 0xe4, 0xf7, +0x20, 0xfe, 0x17, 0x49, 0x0d, 0x64, 0x08, 0x60, 0x10, 0xb0, 0x70, 0xbd, 0xff, 0xf7, 0x4d, 0xfe, +0x00, 0x28, 0xf9, 0xd0, 0x00, 0x22, 0x11, 0x00, 0x28, 0x00, 0x13, 0x00, 0xff, 0xf7, 0x53, 0xfd, +0xf2, 0xe7, 0x0b, 0x22, 0x03, 0x00, 0x92, 0x01, 0x10, 0xb5, 0x9c, 0x18, 0x62, 0x69, 0x08, 0x00, +0x00, 0x2a, 0x09, 0xd0, 0xff, 0xf2, 0xbf, 0xf8, 0x14, 0x23, 0x58, 0x43, 0x61, 0x69, 0x00, 0x1d, +0x08, 0x5c, 0x00, 0x07, 0xc0, 0x0f, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0x10, 0xb5, 0x04, 0x00, +0x08, 0x00, 0xff, 0xf2, 0x9f, 0xf8, 0x01, 0x00, 0x20, 0x00, 0xff, 0xf7, 0xe2, 0xff, 0x10, 0xbd, +0x18, 0x5c, 0x01, 0xc0, 0x30, 0xfa, 0x00, 0xc0, 0x21, 0xea, 0x01, 0x00, 0xa9, 0xea, 0x01, 0x00, +0x45, 0xe7, 0x01, 0x00, 0x58, 0x5c, 0x01, 0xc0, 0x31, 0xe7, 0x01, 0x00, 0x90, 0xd0, 0x03, 0x00, +0xf0, 0xb5, 0x01, 0x20, 0x1c, 0x49, 0x09, 0x78, 0x01, 0x29, 0x01, 0xd0, 0x00, 0x20, 0xf0, 0xbd, +0x1a, 0x49, 0x1b, 0x4e, 0x09, 0x78, 0x02, 0x23, 0x33, 0x74, 0x19, 0x4a, 0xa0, 0x24, 0x20, 0x32, +0x14, 0x71, 0x01, 0x24, 0x01, 0x29, 0x01, 0xd1, 0x14, 0x71, 0x04, 0xe0, 0x02, 0x29, 0x02, 0xd1, +0x00, 0x21, 0x11, 0x71, 0xf8, 0xe7, 0x33, 0x74, 0xa1, 0x21, 0x11, 0x71, 0x00, 0x23, 0x01, 0x21, +0x18, 0x27, 0x03, 0xe0, 0x03, 0x29, 0x01, 0xd1, 0x01, 0x23, 0x33, 0x74, 0x72, 0x6a, 0xcc, 0x00, +0x3d, 0x1b, 0x0c, 0x4c, 0xec, 0x40, 0x12, 0x06, 0x24, 0x06, 0x12, 0x0e, 0x24, 0x0e, 0xa2, 0x42, +0x01, 0xd0, 0x00, 0x20, 0x02, 0xe0, 0x49, 0x1c, 0x03, 0x29, 0xeb, 0xdd, 0x00, 0x2b, 0xce, 0xd1, +0x01, 0x21, 0x31, 0x74, 0x71, 0x6a, 0xf0, 0xbd, 0xb1, 0xb9, 0x02, 0x00, 0xb0, 0xb9, 0x02, 0x00, +0x00, 0x08, 0x00, 0x90, 0x58, 0x30, 0x33, 0x38, 0x70, 0xb5, 0x00, 0x24, 0x1c, 0x4d, 0x28, 0x78, +0x01, 0x28, 0x03, 0xd0, 0x02, 0x28, 0x01, 0xd0, 0x00, 0x20, 0x70, 0xbd, 0x00, 0x20, 0xeb, 0xf2, +0xfa, 0xff, 0x18, 0x49, 0x88, 0x42, 0x00, 0xd1, 0x01, 0x24, 0x28, 0x78, 0xe0, 0x60, 0xbd, 0x0c, +0x01, 0x00, 0x00, 0x00, 0x10, 0xee, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x13, 0x13, 0x08, 0x3d, +0x02, 0x28, 0x24, 0xd1, 0x01, 0x2c, 0x22, 0xd1, 0x15, 0x48, 0x14, 0x49, 0x81, 0x60, 0x9f, 0x21, +0x41, 0x62, 0x41, 0x6a, 0x0d, 0x06, 0x41, 0x6a, 0x2d, 0x0e, 0x40, 0x6a, 0xeb, 0xf2, 0x9c, 0xff, +0xff, 0x2d, 0x01, 0xd1, 0x00, 0x24, 0x12, 0xe0, 0x0e, 0x4e, 0x35, 0x70, 0xeb, 0xf2, 0xa7, 0xff, +0x31, 0x78, 0x1f, 0x29, 0x01, 0xd1, 0x0c, 0x21, 0x00, 0xe0, 0x1c, 0x21, 0x08, 0x42, 0x06, 0xd0, +0xeb, 0xf2, 0x94, 0xff, 0x00, 0x20, 0xeb, 0xf2, 0xa8, 0xff, 0xeb, 0xf2, 0xc5, 0xff, 0x20, 0x00, +0x70, 0xbd, 0x00, 0x00, 0xc4, 0xb9, 0x02, 0x00, 0x58, 0x30, 0x33, 0x38, 0x82, 0x04, 0x00, 0x00, +0x00, 0x08, 0x00, 0x90, 0xc5, 0xb9, 0x02, 0x00, 0x6b, 0x49, 0x6a, 0x48, 0x08, 0x80, 0x6b, 0x48, +0x09, 0x1d, 0x08, 0x80, 0x09, 0x1d, 0x08, 0x88, 0x07, 0x22, 0x52, 0x03, 0x10, 0x40, 0x68, 0x4a, +0x10, 0x43, 0x08, 0x80, 0x70, 0x47, 0xf8, 0xb5, 0x63, 0x4d, 0x08, 0x3d, 0x28, 0x88, 0x70, 0x21, +0x08, 0x43, 0x28, 0x80, 0x63, 0x4f, 0x00, 0x24, 0x26, 0x00, 0x3b, 0x20, 0x02, 0x1b, 0x62, 0x49, +0x38, 0x00, 0x02, 0xf0, 0x74, 0xe9, 0xc0, 0x07, 0xc0, 0x0f, 0x31, 0x00, 0x00, 0x18, 0x71, 0x41, +0x81, 0x00, 0x01, 0x43, 0x28, 0x88, 0x0f, 0x22, 0xd2, 0x43, 0x10, 0x40, 0x08, 0x43, 0x28, 0x80, +0x28, 0x88, 0x05, 0x21, 0x08, 0x43, 0x28, 0x80, 0x64, 0x1c, 0x3c, 0x2c, 0xe5, 0xdb, 0x28, 0x88, +0x2f, 0x21, 0xc9, 0x43, 0x08, 0x40, 0x28, 0x80, 0xf8, 0xbd, 0x4f, 0x49, 0x10, 0xb5, 0x08, 0x39, +0x08, 0x88, 0x70, 0x22, 0x10, 0x43, 0x08, 0x80, 0x50, 0x4b, 0x00, 0x20, 0x05, 0x24, 0x0a, 0x88, +0x1a, 0x40, 0x0a, 0x80, 0x0a, 0x88, 0x22, 0x43, 0x0a, 0x80, 0x40, 0x1c, 0x3c, 0x28, 0xf6, 0xdb, +0x08, 0x88, 0x2f, 0x22, 0xd2, 0x43, 0x10, 0x40, 0x08, 0x80, 0x10, 0xbd, 0x48, 0x4a, 0x53, 0x68, +0x98, 0x42, 0x0a, 0xd0, 0x50, 0x60, 0x40, 0x4b, 0x02, 0x04, 0x92, 0x0d, 0x10, 0x3b, 0x1a, 0x80, +0x3d, 0x4a, 0x80, 0x06, 0x80, 0x0e, 0x10, 0x32, 0x10, 0x80, 0x08, 0x01, 0x3a, 0x49, 0x40, 0x1c, +0x09, 0x1f, 0x08, 0x80, 0x38, 0x49, 0x0c, 0x39, 0x08, 0x88, 0x00, 0x04, 0xfc, 0xd5, 0x70, 0x47, +0x70, 0xb5, 0x00, 0x24, 0x03, 0x00, 0x0e, 0x00, 0x25, 0x00, 0x08, 0xf0, 0xe4, 0xe9, 0x31, 0x00, +0x18, 0x00, 0xff, 0xf7, 0xdb, 0xff, 0x36, 0x48, 0x00, 0x68, 0x00, 0x28, 0x13, 0xd1, 0x2e, 0x48, +0x24, 0x38, 0x04, 0x88, 0xe2, 0x17, 0x00, 0x1d, 0x03, 0x88, 0xdd, 0x17, 0x00, 0x1d, 0x01, 0x88, +0x00, 0x1d, 0x00, 0x88, 0x1e, 0x0c, 0x2d, 0x04, 0x35, 0x43, 0x1b, 0x04, 0x15, 0x43, 0x1c, 0x43, +0x0d, 0x43, 0x00, 0x04, 0x05, 0x43, 0x20, 0x00, 0x29, 0x00, 0x70, 0xbd, 0x00, 0x21, 0xd7, 0xe7, +0xf0, 0xb5, 0x15, 0x00, 0x16, 0x0c, 0x1f, 0xb4, 0x1c, 0x00, 0x1f, 0x0c, 0x08, 0xf0, 0xba, 0xe9, +0x00, 0x98, 0xff, 0xf7, 0xf3, 0xff, 0x22, 0x48, 0x85, 0x60, 0xc4, 0x60, 0x1a, 0x48, 0x24, 0x38, +0x05, 0x80, 0x00, 0x1d, 0x06, 0x80, 0x00, 0x1d, 0x04, 0x80, 0x00, 0x1d, 0x07, 0x80, 0xff, 0xf7, +0x62, 0xff, 0x00, 0x98, 0x01, 0x21, 0xff, 0xf7, 0xa1, 0xff, 0xff, 0xf7, 0x86, 0xff, 0x05, 0xb0, +0xf0, 0xbd, 0x03, 0x00, 0x00, 0xb5, 0x08, 0xf0, 0x9e, 0xe9, 0x00, 0x21, 0x18, 0x00, 0xff, 0xf7, +0x95, 0xff, 0x0d, 0x48, 0x14, 0x38, 0x00, 0x88, 0x80, 0x07, 0x01, 0xd5, 0x01, 0x20, 0x00, 0xbd, +0x00, 0x20, 0x00, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x08, 0xf0, 0x8c, 0xe9, 0x20, 0x00, 0xff, 0xf7, +0xe8, 0xff, 0xff, 0xf7, 0x40, 0xff, 0x02, 0x21, 0x20, 0x00, 0xff, 0xf7, 0x7f, 0xff, 0xff, 0xf7, +0x64, 0xff, 0x10, 0xbd, 0x80, 0x98, 0x00, 0x00, 0x2c, 0x06, 0x00, 0x90, 0x3f, 0x49, 0x00, 0x00, +0x3f, 0x09, 0x00, 0x00, 0xc6, 0x1a, 0x6b, 0xac, 0xb1, 0xc6, 0x1a, 0x0b, 0xf0, 0xff, 0x00, 0x00, +0x90, 0xf6, 0x00, 0xc0, 0xf8, 0xb5, 0x0c, 0x00, 0x11, 0x00, 0x89, 0xa2, 0x12, 0x68, 0x03, 0x00, +0x20, 0x00, 0x00, 0x92, 0x31, 0xd0, 0x11, 0x22, 0x52, 0x01, 0x9d, 0x18, 0x2a, 0x7a, 0x00, 0x2a, +0x2b, 0xd0, 0x18, 0x29, 0x29, 0xd3, 0xfd, 0xf2, 0xc0, 0xed, 0x44, 0x21, 0x21, 0x70, 0x00, 0x21, +0x61, 0x70, 0x68, 0x7a, 0xa0, 0x70, 0x01, 0x27, 0xa6, 0x1d, 0x03, 0x22, 0x30, 0x00, 0x69, 0x46, +0x27, 0x71, 0xfd, 0xf2, 0xec, 0xec, 0xa8, 0x7a, 0xf6, 0x1c, 0x30, 0x70, 0x76, 0x1c, 0x37, 0x70, +0xb6, 0x1c, 0x03, 0x22, 0x30, 0x00, 0x69, 0x46, 0xfd, 0xf2, 0xe0, 0xec, 0xe8, 0x7a, 0xf6, 0x1c, +0x30, 0x70, 0x76, 0x1c, 0x03, 0x22, 0x30, 0x00, 0x69, 0x46, 0xfd, 0xf2, 0xd8, 0xec, 0x29, 0x7b, +0xb0, 0x1d, 0xf1, 0x70, 0x01, 0x1b, 0x89, 0x1e, 0x61, 0x70, 0x00, 0x1b, 0x00, 0x06, 0x00, 0x0e, +0xf8, 0xbd, 0x45, 0x22, 0xd2, 0x00, 0x06, 0x21, 0x80, 0x18, 0x10, 0xb5, 0xfd, 0xf2, 0x62, 0xed, +0x10, 0xbd, 0xf0, 0xb5, 0x0a, 0x78, 0x44, 0x2a, 0x44, 0xd1, 0x00, 0x24, 0x4e, 0x78, 0x8a, 0x1c, +0x27, 0x00, 0x25, 0x00, 0x21, 0x00, 0x2b, 0x00, 0xfd, 0xf2, 0xd4, 0xee, 0x07, 0x05, 0x07, 0x1b, +0x10, 0x1b, 0x20, 0x2c, 0x33, 0x00, 0x02, 0x21, 0x2b, 0xe0, 0x11, 0x78, 0x41, 0x70, 0x01, 0x29, +0x00, 0xd9, 0x01, 0x24, 0x92, 0x1c, 0xf6, 0xe7, 0x92, 0x1c, 0x19, 0xe0, 0xd2, 0x1c, 0x11, 0x78, +0x01, 0x29, 0x03, 0xd0, 0x02, 0x29, 0x01, 0xd0, 0x01, 0x24, 0x00, 0xe0, 0x81, 0x70, 0x52, 0x1c, +0xe9, 0xe7, 0x11, 0x78, 0x01, 0x29, 0xef, 0xd9, 0x01, 0x24, 0xed, 0xe7, 0xd2, 0x1c, 0x11, 0x78, +0x01, 0x29, 0x03, 0xd0, 0x02, 0x29, 0x01, 0xd0, 0x01, 0x24, 0x00, 0xe0, 0xc1, 0x70, 0x52, 0x1c, +0x04, 0x21, 0x06, 0xe0, 0xd1, 0x78, 0x01, 0x29, 0x01, 0xd0, 0x02, 0x29, 0x10, 0xd1, 0x01, 0x71, +0x0e, 0xe0, 0x00, 0x2f, 0x0c, 0xd1, 0x73, 0x1a, 0x1e, 0x04, 0x36, 0x14, 0x00, 0x2c, 0x01, 0xd1, +0x00, 0x2e, 0x01, 0xdc, 0x01, 0x20, 0xf0, 0xbd, 0x6d, 0x1c, 0x2d, 0x06, 0x2d, 0x0e, 0xba, 0xe7, +0x00, 0x20, 0xf0, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x45, 0x20, 0xc0, 0x00, 0x28, 0x18, 0xff, 0xf7, +0xa8, 0xff, 0x04, 0x00, 0x01, 0x28, 0x03, 0xd1, 0x28, 0x00, 0xff, 0xf7, 0x9a, 0xff, 0x04, 0xe0, +0x11, 0x21, 0x01, 0x20, 0x49, 0x01, 0x69, 0x18, 0x08, 0x72, 0x20, 0x00, 0x70, 0xbd, 0x03, 0x00, +0x21, 0x22, 0xd2, 0x5c, 0x00, 0x20, 0xd2, 0x09, 0x02, 0xd0, 0xff, 0x22, 0x18, 0x00, 0x49, 0xe7, +0x70, 0x47, 0x7f, 0xb5, 0x0c, 0x00, 0x0d, 0x1d, 0x21, 0x21, 0x09, 0x5c, 0xc9, 0x09, 0x23, 0xd0, +0xff, 0x21, 0x68, 0x31, 0x21, 0x70, 0x09, 0x0a, 0x61, 0x70, 0x10, 0x21, 0xa1, 0x70, 0x00, 0x21, +0x80, 0x30, 0xe1, 0x70, 0x00, 0x68, 0x00, 0x28, 0x04, 0xd1, 0x10, 0x21, 0x28, 0x00, 0xfd, 0xf2, +0x04, 0xed, 0x0a, 0xe0, 0x01, 0x00, 0x36, 0x31, 0x10, 0x22, 0x68, 0x46, 0xf0, 0xf2, 0x16, 0xf8, +0x10, 0x22, 0x28, 0x00, 0x69, 0x46, 0xfd, 0xf2, 0x32, 0xec, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, +0x08, 0x43, 0x00, 0x1d, 0x04, 0xb0, 0x70, 0xbd, 0x00, 0x20, 0xfb, 0xe7, 0x6a, 0xfa, 0x12, 0x8c, +0x01, 0x00, 0x00, 0x00, 0x0c, 0xf2, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xac, 0xd6, 0x2d, 0x8e, +0x7c, 0xb5, 0x14, 0x00, 0x06, 0x00, 0x28, 0x25, 0x00, 0x29, 0x04, 0xd0, 0x68, 0x46, 0xff, 0xf7, +0x5a, 0xff, 0x01, 0x28, 0x01, 0xd1, 0x25, 0x80, 0x1e, 0xe0, 0x11, 0x20, 0x40, 0x01, 0x30, 0x18, +0x6b, 0x46, 0x59, 0x78, 0x42, 0x7a, 0x91, 0x42, 0x01, 0xd9, 0x31, 0x20, 0x13, 0xe0, 0x6b, 0x46, +0x81, 0x7a, 0x9a, 0x78, 0x91, 0x42, 0x01, 0xd0, 0x2b, 0x20, 0x0c, 0xe0, 0x6b, 0x46, 0xd9, 0x78, +0xc2, 0x7a, 0x91, 0x42, 0x01, 0xd0, 0x30, 0x20, 0x05, 0xe0, 0x6b, 0x46, 0x19, 0x79, 0x00, 0x7b, +0x81, 0x42, 0x03, 0xd0, 0x2f, 0x20, 0x20, 0x80, 0x00, 0x20, 0x7c, 0xbd, 0x00, 0x20, 0x20, 0x80, +0x01, 0x20, 0x7c, 0xbd, 0x00, 0x14, 0x72, 0x00, 0x22, 0x28, 0x01, 0xd3, 0x04, 0x20, 0x70, 0x47, +0x08, 0x28, 0x01, 0xd3, 0x00, 0x29, 0xf9, 0xd1, 0x01, 0x20, 0x70, 0x47, 0x70, 0xb5, 0x05, 0x00, +0x0e, 0x00, 0x14, 0x00, 0x03, 0x20, 0xf3, 0xf7, 0x7d, 0xfc, 0xb0, 0x00, 0xff, 0x30, 0x80, 0x1c, +0x29, 0x02, 0x08, 0x18, 0x00, 0x04, 0x00, 0x0c, 0x21, 0x00, 0xf2, 0xf2, 0xc3, 0xf9, 0x01, 0x20, +0xf3, 0xf7, 0x70, 0xfc, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0x14, 0x00, 0x03, 0x20, +0xf3, 0xf7, 0x68, 0xfc, 0xb0, 0x00, 0xff, 0x30, 0xc0, 0x1c, 0x29, 0x02, 0x08, 0x18, 0x00, 0x04, +0x00, 0x0c, 0x21, 0x00, 0xf2, 0xf2, 0xae, 0xf9, 0x01, 0x20, 0xf3, 0xf7, 0x5b, 0xfc, 0x70, 0xbd, +0xa5, 0x49, 0x08, 0x5c, 0x70, 0x47, 0x0a, 0x28, 0x01, 0xd9, 0xff, 0x20, 0x70, 0x47, 0xa2, 0x49, +0x1f, 0x31, 0x08, 0x5c, 0x70, 0x47, 0x0a, 0x23, 0x9f, 0x49, 0x58, 0x43, 0x2c, 0x31, 0x40, 0x18, +0x40, 0x1c, 0x10, 0xb5, 0xfd, 0xf2, 0xee, 0xec, 0x10, 0xbd, 0x10, 0xb5, 0x0c, 0x00, 0x0a, 0x23, +0x99, 0x49, 0x58, 0x43, 0x2c, 0x31, 0x41, 0x18, 0x49, 0x1c, 0x20, 0x00, 0xfd, 0xf2, 0xf2, 0xec, +0x20, 0x00, 0x10, 0xbd, 0x0a, 0x23, 0x94, 0x49, 0x58, 0x43, 0x2c, 0x31, 0x08, 0x5c, 0x70, 0x47, +0x0a, 0x23, 0x91, 0x4a, 0x59, 0x43, 0x2c, 0x32, 0x89, 0x18, 0x08, 0x18, 0xc0, 0x79, 0x70, 0x47, +0x08, 0x38, 0x02, 0x28, 0x01, 0xd8, 0x01, 0x20, 0x70, 0x47, 0x00, 0x20, 0x70, 0x47, 0xfe, 0xb5, +0x00, 0x20, 0x00, 0x90, 0xf3, 0xf7, 0x7c, 0xfd, 0x87, 0x48, 0x00, 0x25, 0x2c, 0x30, 0x01, 0xe0, +0x01, 0x2d, 0x01, 0xd8, 0x80, 0x27, 0x00, 0xe0, 0xa0, 0x27, 0x0a, 0x21, 0x82, 0x48, 0x69, 0x43, +0x2c, 0x30, 0x08, 0x18, 0x01, 0x90, 0x84, 0x79, 0x40, 0x1c, 0xfd, 0xf2, 0xb4, 0xec, 0x06, 0x01, +0x00, 0x20, 0xf3, 0xf7, 0xdb, 0xfd, 0xc7, 0x19, 0xf5, 0xf7, 0xe7, 0xfb, 0x00, 0x28, 0x07, 0xd0, +0xf5, 0xf7, 0x93, 0xfb, 0x0d, 0x28, 0x03, 0xd1, 0xf5, 0xf7, 0xa7, 0xfb, 0xc0, 0x00, 0x86, 0x19, +0xbe, 0x42, 0x03, 0xdb, 0x00, 0x2c, 0x01, 0xd0, 0x00, 0x24, 0x04, 0xe0, 0xbe, 0x42, 0x02, 0xda, +0x00, 0x2c, 0x00, 0xd1, 0x01, 0x24, 0x01, 0x98, 0x84, 0x71, 0xac, 0x40, 0x00, 0x98, 0x6d, 0x1c, +0x04, 0x43, 0x0b, 0x2d, 0x00, 0x94, 0xcb, 0xd3, 0x00, 0x24, 0x20, 0x06, 0x00, 0x99, 0x00, 0x0e, +0xf3, 0xf7, 0xcf, 0xfd, 0x64, 0x1c, 0x01, 0x2c, 0xf7, 0xd3, 0xfe, 0xbd, 0x0a, 0x23, 0x66, 0x49, +0x58, 0x43, 0x2c, 0x31, 0x40, 0x18, 0x80, 0x79, 0x70, 0x47, 0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, +0xef, 0xf7, 0xde, 0xff, 0x03, 0x20, 0xf3, 0xf7, 0xcd, 0xfb, 0xa8, 0x00, 0xff, 0x30, 0x40, 0x1c, +0x21, 0x02, 0x08, 0x18, 0x00, 0x04, 0x00, 0x0c, 0xf2, 0xf2, 0xf8, 0xf8, 0x04, 0x00, 0x01, 0x20, +0xf3, 0xf7, 0xc0, 0xfb, 0xf0, 0xf7, 0x07, 0xf8, 0x20, 0x00, 0x70, 0xbd, 0xf1, 0xb5, 0x84, 0xb0, +0x04, 0x98, 0x0b, 0x28, 0x62, 0xd2, 0x04, 0x98, 0x0a, 0x23, 0x53, 0x49, 0x58, 0x43, 0x2c, 0x31, +0x45, 0x18, 0xf3, 0xf7, 0x0d, 0xfd, 0x6b, 0x46, 0x18, 0x73, 0xf3, 0xf7, 0x06, 0xfd, 0x6b, 0x46, +0x58, 0x73, 0x68, 0x1c, 0xfd, 0xf2, 0x4e, 0xec, 0x6b, 0x46, 0x18, 0x72, 0x04, 0x98, 0x01, 0x24, +0x08, 0x38, 0x02, 0x28, 0x0a, 0xd8, 0xf3, 0xf7, 0xfe, 0xfc, 0x41, 0x08, 0x6b, 0x46, 0x01, 0x29, +0x98, 0x72, 0x43, 0xd1, 0x08, 0x40, 0x80, 0x1c, 0x98, 0x72, 0x01, 0xe0, 0x6b, 0x46, 0x9c, 0x72, +0x28, 0x78, 0x00, 0x21, 0x08, 0x28, 0x01, 0xd0, 0x09, 0x28, 0x03, 0xd1, 0x02, 0x20, 0x6b, 0x46, +0x58, 0x72, 0x05, 0xe0, 0x07, 0x28, 0x6b, 0x46, 0x01, 0xd1, 0x5c, 0x72, 0x00, 0xe0, 0x59, 0x72, +0x00, 0x24, 0x3d, 0x27, 0x02, 0x99, 0x03, 0x98, 0x01, 0xaa, 0xf5, 0xf7, 0xce, 0xfc, 0x00, 0x28, +0x04, 0xd0, 0xf3, 0xf7, 0xd5, 0xfc, 0x28, 0x19, 0xc7, 0x71, 0x07, 0xe0, 0xf3, 0xf7, 0xd0, 0xfc, +0x00, 0x28, 0xf8, 0xd0, 0xf3, 0xf7, 0xcc, 0xfc, 0x01, 0x28, 0xf4, 0xd0, 0xff, 0x21, 0x28, 0x19, +0x01, 0x72, 0x00, 0x21, 0x41, 0x72, 0x2e, 0x19, 0xf2, 0x79, 0x04, 0x99, 0x20, 0x00, 0x00, 0xf0, +0x3d, 0xf8, 0x32, 0x7a, 0x04, 0x99, 0x20, 0x00, 0xff, 0xf7, 0xd8, 0xfe, 0x72, 0x7a, 0x04, 0x99, +0x20, 0x00, 0xff, 0xf7, 0xe8, 0xfe, 0x64, 0x1c, 0x01, 0x2c, 0xd3, 0xdb, 0x05, 0xb0, 0xf0, 0xbd, +0x10, 0xb5, 0xef, 0xf7, 0x5d, 0xff, 0x00, 0x24, 0x20, 0x00, 0xff, 0xf7, 0x8f, 0xff, 0x64, 0x1c, +0x24, 0x06, 0x24, 0x0e, 0x0b, 0x2c, 0xf7, 0xd3, 0x1c, 0x48, 0x00, 0x88, 0x00, 0x28, 0x01, 0xd0, +0xff, 0xf7, 0x1d, 0xff, 0xef, 0xf7, 0x87, 0xff, 0x10, 0xbd, 0x17, 0x49, 0x10, 0xb5, 0xff, 0x24, +0x49, 0x1e, 0xb0, 0x34, 0x01, 0x28, 0x07, 0xd1, 0x08, 0x70, 0xef, 0xf7, 0x00, 0xff, 0x0f, 0x21, +0x20, 0x00, 0xf2, 0xf2, 0xa7, 0xf8, 0x10, 0xbd, 0x00, 0x28, 0xfc, 0xd1, 0x08, 0x70, 0xef, 0xf7, +0xef, 0xfe, 0x0f, 0x21, 0x20, 0x00, 0xf2, 0xf2, 0x92, 0xf8, 0x10, 0xbd, 0x70, 0xb5, 0x05, 0x00, +0x0e, 0x00, 0x14, 0x00, 0x03, 0x20, 0xf3, 0xf7, 0x1d, 0xfb, 0xb0, 0x00, 0xff, 0x30, 0x40, 0x1c, +0x29, 0x02, 0x08, 0x18, 0x00, 0x04, 0x00, 0x0c, 0x21, 0x00, 0xf2, 0xf2, 0x63, 0xf8, 0x01, 0x20, +0xf3, 0xf7, 0x10, 0xfb, 0x70, 0xbd, 0x00, 0x00, 0x75, 0xf9, 0x00, 0xc0, 0x30, 0xf6, 0x00, 0xc0, +0x10, 0xb5, 0x00, 0x20, 0x02, 0xf0, 0x52, 0xff, 0x00, 0x28, 0xfa, 0xd1, 0x02, 0xf0, 0x4e, 0xff, +0x00, 0x28, 0xf6, 0xd1, 0x41, 0x1e, 0x11, 0x48, 0x00, 0x68, 0x02, 0xf0, 0x3b, 0xff, 0xf0, 0xf7, +0x8c, 0xf9, 0x00, 0x20, 0x10, 0xbd, 0x10, 0xb5, 0xf0, 0xf7, 0x8d, 0xf9, 0x0b, 0x48, 0x00, 0x68, +0x02, 0xf0, 0x37, 0xff, 0x10, 0xbd, 0x0a, 0x48, 0x10, 0xb5, 0x02, 0x68, 0x03, 0x21, 0x09, 0x02, +0x8a, 0x43, 0x02, 0x60, 0x02, 0x68, 0x0a, 0x43, 0x02, 0x60, 0x14, 0x20, 0xef, 0xf7, 0x9c, 0xfe, +0x10, 0xbd, 0x14, 0x20, 0x10, 0xb5, 0xef, 0xf7, 0x97, 0xfe, 0x10, 0xbd, 0xf8, 0x1c, 0x01, 0xc0, +0x80, 0x21, 0x00, 0x80, 0x2f, 0x49, 0x02, 0x22, 0x00, 0x28, 0x48, 0x69, 0x01, 0xd1, 0x90, 0x43, +0x00, 0xe0, 0x10, 0x43, 0x48, 0x61, 0x70, 0x47, 0x2b, 0x49, 0x88, 0x6b, 0x01, 0x22, 0x10, 0x43, +0x0e, 0x22, 0x90, 0x43, 0x88, 0x63, 0x70, 0x47, 0x70, 0xb5, 0x27, 0x4d, 0x71, 0xde, 0xd9, 0x1d, +0x01, 0x00, 0x00, 0x00, 0x08, 0xf6, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0xff, 0x0c, 0xfe, 0xe2, +0xe8, 0x6b, 0x44, 0x08, 0x26, 0x48, 0x64, 0x00, 0x84, 0x43, 0xf4, 0xf7, 0x0a, 0xf8, 0xc0, 0x02, +0x20, 0x43, 0xe8, 0x63, 0x03, 0x20, 0xf4, 0xf7, 0xd6, 0xfa, 0x70, 0xbd, 0x10, 0xb5, 0xff, 0xf7, +0xe5, 0xff, 0xff, 0xf7, 0xeb, 0xff, 0x10, 0xbd, 0x70, 0xb5, 0x00, 0x25, 0x2c, 0x00, 0x20, 0x00, +0xf4, 0xf2, 0xdc, 0xfc, 0x01, 0x00, 0x20, 0x00, 0xf2, 0xf2, 0xde, 0xfc, 0x20, 0x00, 0xf2, 0xf2, +0x7e, 0xfc, 0x01, 0x00, 0x20, 0x00, 0xf2, 0xf2, 0xe0, 0xfc, 0xf3, 0xf7, 0xea, 0xff, 0x01, 0x06, +0x09, 0x0e, 0x00, 0x22, 0x20, 0x00, 0xf2, 0xf2, 0xbf, 0xfc, 0x29, 0x00, 0x20, 0x00, 0xf2, 0xf2, +0xdf, 0xfc, 0x20, 0x00, 0xff, 0xf7, 0x36, 0xfe, 0x01, 0x00, 0x20, 0x00, 0xf2, 0xf2, 0xa2, 0xfd, +0x20, 0x00, 0xff, 0xf7, 0x32, 0xfe, 0xff, 0x28, 0x03, 0xd0, 0x01, 0x00, 0x20, 0x00, 0xf4, 0xf7, +0x8e, 0xfa, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x0c, 0x2c, 0xd0, 0xd9, 0x05, 0x49, 0x48, 0x6a, +0x0a, 0x0c, 0x90, 0x43, 0x48, 0x62, 0x70, 0xbd, 0xc0, 0xa2, 0x00, 0x80, 0x00, 0xa1, 0x00, 0x80, +0x06, 0x9c, 0xc0, 0x00, 0x00, 0xa8, 0x00, 0x80, 0x70, 0xb5, 0x05, 0x00, 0x04, 0x49, 0xf4, 0xf2, +0xe3, 0xfa, 0x04, 0x00, 0x03, 0x49, 0x28, 0x00, 0xf4, 0xf2, 0xde, 0xfa, 0x00, 0x19, 0x70, 0xbd, +0xd0, 0x0e, 0x32, 0x00, 0x10, 0xfa, 0x00, 0xc0, 0x70, 0x47, 0x70, 0x47, 0x06, 0x4a, 0x00, 0x21, +0x12, 0x23, 0x10, 0xb5, 0x54, 0x5c, 0x84, 0x42, 0x00, 0xd1, 0x53, 0x54, 0x49, 0x1c, 0x09, 0x06, +0x09, 0x0e, 0x03, 0x29, 0xf6, 0xd3, 0x10, 0xbd, 0xde, 0xee, 0x00, 0xc0, 0xf3, 0xb5, 0x83, 0xb0, +0x06, 0x00, 0xb1, 0x00, 0x04, 0x98, 0x00, 0x78, 0x01, 0x90, 0x04, 0x98, 0x84, 0x78, 0xc5, 0x78, +0x2a, 0x48, 0x08, 0x18, 0xff, 0x30, 0x40, 0x1c, 0x02, 0x90, 0xfd, 0xf2, 0xe6, 0xea, 0x10, 0x28, +0x28, 0xd2, 0x26, 0x4b, 0x00, 0x21, 0x32, 0x02, 0xd2, 0x18, 0x11, 0xe0, 0x0b, 0x01, 0xd6, 0x5c, +0x01, 0x9f, 0xbe, 0x42, 0x0b, 0xd1, 0xd3, 0x18, 0x9e, 0x78, 0xa6, 0x42, 0x02, 0xd8, 0xdf, 0x78, +0xa7, 0x42, 0x17, 0xd2, 0xae, 0x42, 0x02, 0xd8, 0xdb, 0x78, 0xab, 0x42, 0x12, 0xd2, 0x49, 0x1c, +0x88, 0x42, 0xeb, 0xd8, 0x08, 0x01, 0x10, 0x18, 0x04, 0x99, 0x10, 0x22, 0xfd, 0xf2, 0x82, 0xe9, +0x02, 0x98, 0xfd, 0xf2, 0xc2, 0xea, 0x02, 0x99, 0x40, 0x1c, 0xfd, 0xf2, 0xce, 0xea, 0x01, 0x20, +0x05, 0xb0, 0xf0, 0xbd, 0x00, 0x20, 0xfb, 0xe7, 0xff, 0x21, 0x10, 0x48, 0x49, 0x1d, 0x10, 0xb5, +0xfd, 0xf2, 0x36, 0xea, 0x10, 0xbd, 0x10, 0xb5, 0xf5, 0xf2, 0x49, 0xf9, 0xf5, 0xf2, 0x56, 0xf9, +0xf5, 0xf2, 0x64, 0xf9, 0xf5, 0xf2, 0x73, 0xf9, 0xf5, 0xf2, 0x82, 0xf9, 0xf5, 0xf2, 0x8f, 0xf9, +0xf5, 0xf2, 0x9d, 0xf9, 0xf5, 0xf2, 0xcf, 0xf9, 0xf5, 0xf2, 0x07, 0xfa, 0xf5, 0xf2, 0x79, 0xfa, +0xf5, 0xf2, 0xe5, 0xfa, 0xff, 0xf7, 0xe0, 0xff, 0x10, 0xbd, 0x00, 0x00, 0x78, 0x5c, 0x01, 0xc0, +0x38, 0xb5, 0x00, 0x21, 0xff, 0x4a, 0x00, 0x91, 0x11, 0x78, 0xfd, 0x25, 0xfb, 0x24, 0x0c, 0x29, +0x6b, 0x46, 0x16, 0xd1, 0x52, 0x7c, 0x19, 0x78, 0x52, 0x06, 0xd2, 0x0f, 0x29, 0x40, 0x52, 0x00, +0x11, 0x43, 0xf8, 0x4a, 0x00, 0x91, 0x12, 0x7b, 0x00, 0x28, 0x03, 0xd1, 0x21, 0x40, 0xd0, 0x07, +0xc0, 0x0f, 0x02, 0xe0, 0x21, 0x40, 0xd0, 0x06, 0xc0, 0x0f, 0x80, 0x00, 0x08, 0x43, 0x00, 0x90, +0x03, 0xe0, 0x18, 0x78, 0x28, 0x40, 0x20, 0x40, 0x00, 0x90, 0x38, 0xbd, 0xef, 0x49, 0xee, 0x48, +0x08, 0x60, 0xf0, 0x49, 0xee, 0x48, 0x08, 0x60, 0xf0, 0x49, 0xef, 0x48, 0x08, 0x60, 0x70, 0x47, +0x70, 0xb5, 0xff, 0x24, 0x05, 0x00, 0x0e, 0x00, 0x0d, 0x34, 0xc4, 0xb0, 0x21, 0x00, 0x01, 0xa8, +0xfd, 0xf2, 0xb4, 0xe9, 0x32, 0x00, 0x28, 0x00, 0x23, 0x00, 0x01, 0xa9, 0xf5, 0xf2, 0xc2, 0xfa, +0x6b, 0x46, 0xd8, 0x88, 0xa0, 0x42, 0x00, 0xd2, 0x04, 0x00, 0x21, 0x00, 0x01, 0xa8, 0xf5, 0xf2, +0xa9, 0xfa, 0x00, 0x28, 0x0f, 0xd0, 0x00, 0x26, 0x34, 0x00, 0x01, 0xad, 0x06, 0xe0, 0x20, 0x01, +0x41, 0x19, 0x0c, 0x31, 0x30, 0x00, 0xff, 0xf7, 0x49, 0xff, 0x64, 0x1c, 0x6b, 0x46, 0x98, 0x7b, +0xa0, 0x42, 0xf4, 0xdc, 0x01, 0x20, 0x44, 0xb0, 0x70, 0xbd, 0xd2, 0x48, 0x10, 0xb5, 0x20, 0x30, +0xc0, 0x7d, 0xd3, 0x49, 0x02, 0x09, 0x89, 0x1e, 0x00, 0x07, 0x00, 0x0f, 0x4a, 0x70, 0x08, 0x70, +0xf5, 0xf7, 0xae, 0xf9, 0xd2, 0x4c, 0x60, 0x6a, 0x60, 0x30, 0x81, 0x7a, 0x00, 0x20, 0xef, 0xf7, +0xa6, 0xf8, 0x60, 0x6a, 0x60, 0x30, 0xc1, 0x7a, 0x01, 0x20, 0xef, 0xf7, 0xa0, 0xf8, 0x00, 0x20, +0x10, 0xbd, 0x7c, 0xb5, 0x0c, 0x00, 0x06, 0x00, 0x01, 0x25, 0x65, 0xe0, 0x22, 0x00, 0x30, 0x00, +0x08, 0x23, 0x69, 0x46, 0xf5, 0xf2, 0x7e, 0xfa, 0x00, 0x98, 0x40, 0x1c, 0x5e, 0xd0, 0x6b, 0x46, +0x58, 0x88, 0x01, 0x99, 0x00, 0x19, 0x81, 0x42, 0x58, 0xd3, 0x00, 0x2e, 0x03, 0xd0, 0xff, 0x21, +0x2d, 0x31, 0x88, 0x42, 0x52, 0xd8, 0x6b, 0x46, 0x1b, 0x78, 0x2f, 0x2b, 0x2b, 0xd0, 0x16, 0xdc, +0x1f, 0x2b, 0x28, 0xd0, 0x0a, 0xdc, 0x0e, 0x2b, 0x1a, 0xd0, 0x10, 0x2b, 0x1d, 0xd0, 0x12, 0x2b, +0x3f, 0xd1, 0x21, 0x00, 0x30, 0x00, 0xf5, 0xf2, 0x5f, 0xfc, 0x1a, 0xe0, 0x25, 0x2b, 0x0f, 0xd0, +0x2a, 0x2b, 0x36, 0xd1, 0x21, 0x00, 0x30, 0x00, 0xf5, 0xf2, 0xa1, 0xfc, 0x11, 0xe0, 0x31, 0x3b, +0xfd, 0xf2, 0xbc, 0xea, 0x09, 0x16, 0x2f, 0x2f, 0x1b, 0x20, 0x25, 0x2f, 0x2f, 0x2a, 0x2f, 0x00, +0x21, 0x00, 0x30, 0x00, 0xf5, 0xf2, 0xcd, 0xfa, 0x03, 0xe0, 0x21, 0x00, 0x30, 0x00, 0xf5, 0xf2, +0xb4, 0xfb, 0x05, 0x00, 0x1d, 0xe0, 0x21, 0x00, 0x30, 0x00, 0xf5, 0xf2, 0x60, 0xfc, 0xf8, 0xe7, +0x21, 0x00, 0x30, 0x00, 0xf5, 0xf2, 0xda, 0xfc, 0xf3, 0xe7, 0x21, 0x00, 0x30, 0x00, 0xf5, 0xf2, +0x13, 0xfe, 0xee, 0xe7, 0x21, 0x00, 0x30, 0x00, 0xf5, 0xf2, 0x32, 0xfe, 0xe9, 0xe7, 0x21, 0x00, +0x30, 0x00, 0xf5, 0xf2, 0x51, 0xfe, 0xe4, 0xe7, 0x21, 0x00, 0x30, 0x00, 0xff, 0xf7, 0x50, 0xff, +0xdf, 0xe7, 0x01, 0x9c, 0x00, 0x2d, 0x01, 0xd0, 0x60, 0x1c, 0x97, 0xd1, 0x01, 0x20, 0x00, 0x2d, +0x00, 0xd0, 0x00, 0x20, 0x7c, 0xbd, 0x8b, 0x48, 0x40, 0x21, 0x10, 0xb5, 0xfd, 0xf2, 0xfe, 0xe8, +0x10, 0xbd, 0x70, 0xb5, 0x15, 0x00, 0x0a, 0x00, 0x86, 0x49, 0x40, 0x23, 0xf5, 0xf2, 0x0a, 0xfa, +0x84, 0x48, 0x40, 0x21, 0xf5, 0xf2, 0xf6, 0xf9, 0x00, 0x28, 0x0b, 0xd0, 0x81, 0x4c, 0xe0, 0x7a, +0x00, 0x28, 0x02, 0xd0, 0xa0, 0x7c, 0x33, 0x20, 0xa0, 0x74, 0x20, 0x78, 0x0c, 0x28, 0x03, 0xd0, +0x0d, 0x28, 0x01, 0xd0, 0x01, 0x20, 0x70, 0xbd, 0xff, 0xf7, 0x4f, 0xff, 0x61, 0x68, 0x29, 0x60, +0x70, 0xbd, 0x70, 0xb5, 0x06, 0x00, 0x7a, 0x48, 0x0d, 0x00, 0x80, 0x1c, 0x41, 0x79, 0x00, 0x79, +0x0c, 0x02, 0x04, 0x43, 0x76, 0x48, 0x00, 0x1f, 0x40, 0x78, 0x00, 0x28, 0x0c, 0xd0, 0x74, 0x49, +0x06, 0x22, 0x89, 0x1c, 0x30, 0x00, 0xfd, 0xf2, 0x2e, 0xe8, 0x6f, 0x49, 0x6e, 0x93, 0xd7, 0xe8, +0x01, 0x00, 0x00, 0x00, 0x04, 0xfa, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x0b, 0x63, 0x8b, 0x56, +0x22, 0x00, 0xb0, 0x1d, 0xfd, 0xf2, 0x28, 0xe8, 0xa4, 0x1d, 0x04, 0xe0, 0x6b, 0x49, 0x22, 0x00, +0x30, 0x00, 0xfd, 0xf2, 0x22, 0xe8, 0x00, 0x20, 0x2c, 0x60, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, +0x0c, 0x00, 0x40, 0x1c, 0x03, 0xd1, 0x6c, 0x49, 0x20, 0x04, 0x88, 0x42, 0x03, 0xd0, 0x20, 0x04, +0x00, 0x0c, 0x28, 0x43, 0x05, 0xd1, 0xff, 0x24, 0x68, 0x4d, 0xff, 0x34, 0x00, 0x20, 0x07, 0xf0, +0x74, 0xec, 0x67, 0x48, 0x85, 0x62, 0xc4, 0x62, 0x66, 0x48, 0x00, 0x68, 0x05, 0x60, 0x84, 0x80, +0x70, 0xbd, 0x70, 0xb5, 0x86, 0xb0, 0x48, 0x20, 0x01, 0xa9, 0xee, 0xf7, 0x7b, 0xff, 0x01, 0x98, +0x05, 0xa9, 0x00, 0x04, 0x00, 0x0c, 0x01, 0x90, 0x4c, 0x20, 0xee, 0xf7, 0x73, 0xff, 0x01, 0x98, +0xff, 0x26, 0x2d, 0x36, 0xb0, 0x42, 0x02, 0xd9, 0x01, 0x20, 0x06, 0xb0, 0x70, 0xbd, 0x4f, 0x4d, +0x00, 0x24, 0x09, 0xe0, 0x05, 0x98, 0x04, 0xa9, 0x00, 0x19, 0xee, 0xf7, 0x63, 0xff, 0x04, 0x98, +0xeb, 0xf2, 0x92, 0xff, 0x28, 0x51, 0x24, 0x1d, 0x01, 0x98, 0x84, 0x42, 0xf2, 0xd3, 0x05, 0x98, +0x02, 0xa9, 0x20, 0xe0, 0x04, 0xa9, 0xee, 0xf7, 0x55, 0xff, 0x04, 0x98, 0x01, 0x99, 0x00, 0x0c, +0x04, 0x90, 0x08, 0x18, 0xb0, 0x42, 0x1c, 0xd8, 0x00, 0x24, 0x0b, 0xe0, 0x02, 0x98, 0x03, 0xa9, +0x00, 0x19, 0xee, 0xf7, 0x47, 0xff, 0x03, 0x98, 0xeb, 0xf2, 0x76, 0xff, 0x01, 0x99, 0x09, 0x19, +0x24, 0x1d, 0x68, 0x50, 0x04, 0x98, 0x84, 0x42, 0xf0, 0xd3, 0x04, 0x99, 0x01, 0x98, 0x40, 0x18, +0x01, 0x90, 0x02, 0x98, 0x02, 0xa9, 0x00, 0x1d, 0xee, 0xf7, 0x34, 0xff, 0x02, 0x98, 0x41, 0x1c, +0xd8, 0xd1, 0x34, 0x49, 0x01, 0x98, 0x89, 0x1c, 0x08, 0x71, 0x00, 0x0a, 0x48, 0x71, 0x01, 0x20, +0x89, 0x1f, 0x08, 0x70, 0x05, 0x98, 0x88, 0x80, 0x00, 0x20, 0xb6, 0xe7, 0x10, 0xb5, 0x01, 0x24, +0x86, 0xb0, 0xee, 0xf7, 0x04, 0xff, 0x0c, 0x20, 0x02, 0xa9, 0xee, 0xf7, 0x1b, 0xff, 0x10, 0x20, +0x01, 0xa9, 0xee, 0xf7, 0x17, 0xff, 0x01, 0x99, 0x02, 0x98, 0xff, 0xf7, 0x77, 0xff, 0x4c, 0x20, +0x05, 0xa9, 0xee, 0xf7, 0x0f, 0xff, 0x05, 0x98, 0x41, 0x1c, 0x18, 0xd0, 0x04, 0xa9, 0xee, 0xf7, +0x09, 0xff, 0x04, 0x98, 0x00, 0x06, 0x00, 0x0e, 0x0c, 0x28, 0x01, 0xd0, 0x0d, 0x28, 0x0e, 0xd1, +0xff, 0xf7, 0x7f, 0xff, 0x00, 0x28, 0x0a, 0xd1, 0x05, 0x99, 0x03, 0xaa, 0xff, 0xf7, 0x1b, 0xff, +0x00, 0x28, 0x04, 0xd1, 0x00, 0x24, 0x03, 0x99, 0x20, 0x00, 0xff, 0xf7, 0x9c, 0xfe, 0xee, 0xf7, +0xed, 0xfe, 0x20, 0x00, 0x06, 0xb0, 0x10, 0xbd, 0x0e, 0xb5, 0x01, 0xa9, 0x68, 0x46, 0xef, 0xf7, +0x8b, 0xf8, 0x00, 0x99, 0x01, 0x98, 0xff, 0xf7, 0x49, 0xff, 0x0e, 0x4b, 0xff, 0x21, 0x0b, 0x48, +0x9b, 0x1d, 0x80, 0x22, 0x2d, 0x31, 0xef, 0xf7, 0x1c, 0xf9, 0x00, 0x28, 0x0b, 0xd1, 0x09, 0x48, +0x01, 0x21, 0x00, 0x1f, 0x01, 0x70, 0x80, 0x21, 0x81, 0x80, 0x00, 0x20, 0x02, 0xaa, 0xff, 0xf7, +0xf2, 0xfe, 0x00, 0x28, 0x1a, 0xd0, 0x17, 0xe0, 0xa8, 0x5e, 0x01, 0xc0, 0x7c, 0x5d, 0x01, 0xc0, +0x90, 0xbb, 0x02, 0x00, 0x20, 0xfa, 0x00, 0xc0, 0x94, 0xbb, 0x02, 0x00, 0xb9, 0xf7, 0x01, 0x00, +0x98, 0xbb, 0x02, 0x00, 0x38, 0x52, 0x00, 0x04, 0x00, 0x00, 0xff, 0xff, 0x00, 0x50, 0x43, 0x02, +0x00, 0xa5, 0x00, 0x80, 0x50, 0xf4, 0x00, 0xc0, 0x01, 0x20, 0x0e, 0xbd, 0x02, 0x99, 0x00, 0x20, +0xff, 0xf7, 0x59, 0xfe, 0x00, 0x20, 0x0e, 0xbd, 0xf8, 0xb5, 0x05, 0x00, 0x14, 0x00, 0x00, 0x78, +0x3d, 0x4e, 0x01, 0x27, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x28, 0x0c, 0xd1, 0x68, 0x78, 0x00, 0x28, +0x09, 0xd1, 0x39, 0x48, 0x06, 0x22, 0x29, 0x00, 0x80, 0x1d, 0x77, 0x70, 0xfc, 0xf2, 0x1c, 0xef, +0xa4, 0x1f, 0xad, 0x1d, 0x06, 0xe0, 0x00, 0x20, 0x70, 0x70, 0x33, 0x48, 0x06, 0x21, 0x80, 0x1d, +0xfc, 0xf2, 0xd8, 0xef, 0xff, 0x22, 0x2d, 0x32, 0x94, 0x42, 0x00, 0xd2, 0x22, 0x00, 0x2e, 0x48, +0x11, 0x0a, 0x80, 0x1d, 0x02, 0x71, 0x41, 0x71, 0x2c, 0x48, 0x29, 0x00, 0xfc, 0xf2, 0x04, 0xef, +0x00, 0x20, 0x37, 0x70, 0x01, 0x00, 0xb0, 0x80, 0x28, 0x00, 0x6a, 0x46, 0xff, 0xf7, 0x9b, 0xfe, +0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, 0xf8, 0xbd, 0x00, 0x99, 0x28, 0x00, 0xff, 0xf7, 0x1b, 0xfe, +0x00, 0x20, 0xf8, 0xbd, 0x7f, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x00, 0x28, 0x0f, 0xd0, 0x00, 0x2b, +0x05, 0xd1, 0x20, 0x00, 0x02, 0xa9, 0xff, 0xf7, 0xa6, 0xfe, 0x04, 0x00, 0x21, 0xe0, 0x00, 0xf0, +0x23, 0xf8, 0x02, 0x9a, 0x29, 0x00, 0x20, 0x00, 0xff, 0xf7, 0xae, 0xff, 0x0c, 0xe0, 0x07, 0xf0, +0x48, 0xeb, 0x01, 0x28, 0x04, 0xd1, 0x00, 0xf0, 0x17, 0xf8, 0xff, 0xf7, 0x2f, 0xff, 0x03, 0xe0, +0x00, 0xf0, 0x12, 0xf8, 0xff, 0xf7, 0x60, 0xff, 0x04, 0x00, 0x0a, 0xd0, 0x0e, 0x49, 0x00, 0x20, +0x89, 0x1d, 0x08, 0x70, 0x48, 0x70, 0x88, 0x70, 0xc8, 0x70, 0x08, 0x71, 0x48, 0x71, 0x00, 0xf0, +0x03, 0xf8, 0x20, 0x00, 0x04, 0xb0, 0x70, 0xbd, 0xff, 0x21, 0x08, 0x48, 0x2d, 0x31, 0x10, 0xb5, +0xfc, 0xf2, 0x56, 0xef, 0xff, 0xf7, 0x49, 0xfd, 0xff, 0xf7, 0x4f, 0xfe, 0xef, 0xf7, 0xa6, 0xf9, +0x01, 0x49, 0x00, 0x20, 0x08, 0x70, 0x10, 0xbd, 0x1c, 0xfa, 0x00, 0xc0, 0x7c, 0x5d, 0x01, 0xc0, +0x14, 0x4a, 0x01, 0x00, 0x1c, 0x31, 0x10, 0xb5, 0x11, 0x60, 0x13, 0x4a, 0x13, 0x4b, 0x10, 0x60, +0x02, 0x00, 0x4c, 0x32, 0x1a, 0x60, 0xff, 0x22, 0x02, 0x70, 0x00, 0x22, 0x42, 0x80, 0x02, 0x71, +0x01, 0x23, 0x46, 0x22, 0x13, 0x52, 0x60, 0x22, 0x0a, 0x61, 0x5a, 0x02, 0xca, 0x60, 0x0c, 0x4a, +0x02, 0x86, 0x42, 0x86, 0x82, 0x86, 0xc2, 0x86, 0x0a, 0x4a, 0xca, 0x80, 0x09, 0x22, 0x0a, 0x72, +0x04, 0x22, 0x4a, 0x72, 0x07, 0x4a, 0x52, 0x1e, 0x4a, 0x81, 0x01, 0xf0, 0x18, 0xfa, 0x01, 0x20, +0x10, 0xbd, 0x00, 0x00, 0x50, 0xf4, 0x00, 0xc0, 0x54, 0xf4, 0x00, 0xc0, 0x58, 0xf4, 0x00, 0xc0, +0xff, 0xff, 0x00, 0x00, 0x2b, 0x09, 0x00, 0x00, 0x1f, 0xb5, 0x19, 0x00, 0x14, 0x00, 0x6b, 0x46, +0x9a, 0x88, 0xc2, 0x87, 0xff, 0x22, 0x51, 0x32, 0x14, 0x52, 0xff, 0x30, 0x06, 0x22, 0x4a, 0x30, +0xfc, 0xf2, 0x6a, 0xee, 0x20, 0x00, 0xf5, 0xf2, 0x65, 0xfc, 0x1f, 0xbd, 0xff, 0xb5, 0x81, 0xb0, +0x00, 0x23, 0x06, 0x00, 0x44, 0x69, 0xac, 0x20, 0x35, 0x18, 0x30, 0x81, 0x68, 0x78, 0x2a, 0x78, +0x07, 0x02, 0x17, 0x43, 0x03, 0x9a, 0x28, 0x00, 0xf7, 0xf2, 0xad, 0xfa, 0xf8, 0x4a, 0x00, 0x92, +0x00, 0x22, 0x03, 0x98, 0x0e, 0x21, 0x13, 0x00, 0xf6, 0xf2, 0x56, 0xfa, 0xf5, 0x49, 0x48, 0x60, +0x20, 0x00, 0xfe, 0xf7, 0x36, 0xf9, 0x00, 0x28, 0x0d, 0xd0, 0x0b, 0x20, 0x80, 0x01, 0x20, 0x18, +0x41, 0x69, 0x1b, 0x20, 0xf0, 0x4a, 0x40, 0x01, 0x08, 0x18, 0x8a, 0x18, 0x83, 0x7f, 0x41, 0x7f, +0x28, 0x00, 0xf6, 0xf2, 0x0d, 0xf9, 0xea, 0x48, 0x1c, 0x38, 0x01, 0x7f, 0x00, 0x29, 0x05, 0xd0, +0x02, 0x00, 0x43, 0x7f, 0x1e, 0x32, 0x28, 0x00, 0xf6, 0xf2, 0x02, 0xf9, 0x8e, 0xf0, 0xb2, 0x86, +0x01, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x58, 0xb9, 0x58, 0x3a, +0x0a, 0x98, 0x00, 0x28, 0x09, 0xd0, 0x04, 0x98, 0x00, 0x28, 0x06, 0xd0, 0x39, 0x06, 0x0a, 0x9b, +0x04, 0x9a, 0x09, 0x0e, 0x28, 0x00, 0xf6, 0xf2, 0x2c, 0xf9, 0x3b, 0x00, 0x2a, 0x00, 0x01, 0x21, +0x20, 0x00, 0xf6, 0xf7, 0xa8, 0xf9, 0x00, 0x2c, 0x18, 0xd0, 0x20, 0x7a, 0x03, 0x28, 0x15, 0xd1, +0x60, 0x7a, 0x01, 0x23, 0x5b, 0x03, 0x03, 0x28, 0x00, 0xd0, 0x00, 0x23, 0xd8, 0x48, 0x00, 0x22, +0x03, 0x43, 0x29, 0x00, 0x20, 0x00, 0x00, 0x92, 0xfb, 0xf7, 0x79, 0xfb, 0x69, 0x78, 0x2a, 0x78, +0x09, 0x02, 0x11, 0x43, 0x40, 0x18, 0x28, 0x70, 0x00, 0x0a, 0x68, 0x70, 0x30, 0x00, 0xe6, 0xf7, +0x6f, 0xfa, 0x40, 0x1c, 0x07, 0xd1, 0x00, 0x21, 0x01, 0x20, 0x00, 0xf0, 0x8a, 0xf9, 0x00, 0x20, +0xc0, 0x43, 0x05, 0xb0, 0xf0, 0xbd, 0x00, 0x20, 0xfb, 0xe7, 0xfe, 0xb5, 0x0c, 0x00, 0xff, 0x21, +0x07, 0x00, 0xf5, 0x31, 0xe6, 0xf7, 0xb1, 0xf9, 0x05, 0x00, 0x05, 0xd1, 0x00, 0x21, 0x01, 0x20, +0x00, 0xf0, 0x77, 0xf9, 0x68, 0x1e, 0xfe, 0xbd, 0x28, 0x89, 0x22, 0x00, 0x46, 0x19, 0xb1, 0x20, +0x80, 0x00, 0x39, 0x18, 0x28, 0x00, 0x00, 0x23, 0x00, 0x94, 0xe6, 0xf7, 0xf3, 0xf9, 0xba, 0x49, +0xe0, 0x88, 0x08, 0x80, 0x01, 0x90, 0x22, 0x89, 0x01, 0x99, 0x30, 0x00, 0x00, 0x23, 0xf7, 0xf2, +0xaa, 0xf9, 0xa1, 0x8f, 0x00, 0x22, 0x01, 0x92, 0x00, 0x91, 0x22, 0x00, 0x21, 0x00, 0xa3, 0x6b, +0x2a, 0x32, 0x0a, 0x31, 0x28, 0x00, 0xff, 0xf7, 0x5b, 0xff, 0xfe, 0xbd, 0xff, 0xb5, 0x83, 0xb0, +0x0c, 0x00, 0xff, 0x21, 0x17, 0x00, 0x03, 0x98, 0xf5, 0x31, 0xe6, 0xf7, 0x7e, 0xf9, 0x05, 0x00, +0x06, 0xd1, 0x00, 0x21, 0x01, 0x20, 0x00, 0xf0, 0x44, 0xf9, 0x68, 0x1e, 0x07, 0xb0, 0xf0, 0xbd, +0x28, 0x89, 0xb1, 0x21, 0x46, 0x19, 0x03, 0x98, 0x89, 0x00, 0x41, 0x18, 0x22, 0x00, 0x28, 0x00, +0x02, 0x23, 0x00, 0x94, 0xe6, 0xf7, 0xbe, 0xf9, 0x9f, 0x49, 0xe0, 0x88, 0x08, 0x80, 0x02, 0x90, +0x22, 0x89, 0x02, 0x99, 0x3b, 0x00, 0x30, 0x00, 0xf7, 0xf2, 0x75, 0xf9, 0xa1, 0x8f, 0x06, 0x9a, +0x01, 0x92, 0x00, 0x91, 0x22, 0x00, 0x21, 0x00, 0xa3, 0x6b, 0x2a, 0x32, 0x0a, 0x31, 0x28, 0x00, +0xff, 0xf7, 0x26, 0xff, 0xda, 0xe7, 0x40, 0x06, 0x40, 0x0e, 0x02, 0x28, 0x05, 0xd0, 0x04, 0x28, +0x03, 0xd0, 0x0b, 0x28, 0x01, 0xd0, 0x16, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x70, 0x47, 0x00, 0x20, +0x70, 0x47, 0xf0, 0xb5, 0x00, 0x21, 0x9d, 0xb0, 0x05, 0x91, 0x01, 0x89, 0x45, 0x69, 0x0e, 0x18, +0x37, 0x00, 0x20, 0x37, 0x00, 0x2d, 0x02, 0xd1, 0x06, 0x21, 0x01, 0x20, 0xc6, 0xe0, 0x28, 0x00, +0xe2, 0xf7, 0xdc, 0xfd, 0x04, 0x90, 0x28, 0x00, 0xe2, 0xf7, 0x05, 0xfe, 0x03, 0x90, 0x28, 0x00, +0xe2, 0xf7, 0x24, 0xfe, 0x02, 0x90, 0xf8, 0x78, 0x2c, 0x00, 0xba, 0x78, 0x61, 0x34, 0x01, 0x02, +0x11, 0x43, 0x01, 0xd0, 0x03, 0x20, 0xb1, 0xe0, 0x71, 0x78, 0x32, 0x78, 0x09, 0x02, 0x11, 0x43, +0x89, 0x1f, 0x09, 0x04, 0xb8, 0x1d, 0x09, 0x14, 0x0b, 0xaa, 0xfa, 0xf7, 0xa0, 0xfa, 0xe6, 0xf7, +0x0a, 0xf9, 0x74, 0x48, 0x1c, 0x38, 0x00, 0x7f, 0x00, 0x28, 0x22, 0xd0, 0x71, 0x49, 0x1c, 0x22, +0x88, 0x18, 0xfc, 0xf2, 0x44, 0xed, 0x02, 0x9a, 0x00, 0x92, 0x03, 0x9b, 0x04, 0x9a, 0x21, 0x00, +0x0b, 0xa8, 0xf7, 0xf2, 0x39, 0xf9, 0x00, 0x28, 0x13, 0xd0, 0xe8, 0x68, 0x40, 0x21, 0x08, 0x43, +0x63, 0x21, 0xe8, 0x60, 0x49, 0x5d, 0x89, 0x07, 0x0b, 0xd5, 0x66, 0x49, 0x09, 0x1d, 0x89, 0x7e, +0x89, 0x07, 0x06, 0xd5, 0x04, 0x99, 0xc9, 0x78, 0x49, 0x07, 0x02, 0xd5, 0x80, 0x21, 0x08, 0x43, +0xe8, 0x60, 0x23, 0x00, 0x05, 0xaa, 0x06, 0xa9, 0x0b, 0xa8, 0xf7, 0xf2, 0x42, 0xf9, 0x0a, 0x90, +0xf2, 0xf7, 0x14, 0xff, 0x01, 0x28, 0x19, 0xd1, 0x6b, 0x46, 0x1c, 0x7d, 0x10, 0xe0, 0x06, 0xa9, +0x08, 0x5d, 0xff, 0xf7, 0x88, 0xff, 0x00, 0x28, 0x0a, 0xd0, 0x6b, 0x46, 0x18, 0x7d, 0x02, 0x1b, +0x08, 0x19, 0x41, 0x1c, 0xfc, 0xf2, 0x0a, 0xed, 0x6b, 0x46, 0x18, 0x7d, 0x40, 0x1e, 0x05, 0x90, +0x64, 0x1e, 0xec, 0xd5, 0x0a, 0x98, 0x00, 0x09, 0x00, 0x01, 0x0a, 0x90, 0x0a, 0x99, 0x28, 0x00, +0x07, 0xf0, 0x54, 0xe9, 0x03, 0x00, 0x4c, 0x48, 0x40, 0x68, 0x03, 0x40, 0x28, 0x00, 0x0a, 0x93, +0xe2, 0xf7, 0xe2, 0xfd, 0x02, 0x00, 0x00, 0x21, 0x28, 0x00, 0xf8, 0xf7, 0xc8, 0xfc, 0xf8, 0xf7, +0x87, 0xfa, 0x0b, 0x20, 0x80, 0x01, 0x28, 0x18, 0x00, 0x69, 0x01, 0x00, 0x0c, 0x31, 0x0d, 0x30, +0x07, 0xf0, 0x78, 0xe8, 0x07, 0xf0, 0x6a, 0xe8, 0xf1, 0xf2, 0x35, 0xfe, 0x03, 0x00, 0x0a, 0x99, +0x00, 0x22, 0x38, 0x00, 0x07, 0xf0, 0x4a, 0xe9, 0x28, 0x00, 0xeb, 0xf7, 0xd8, 0xfa, 0x28, 0x00, +0xeb, 0xf7, 0x05, 0xfb, 0x28, 0x00, 0x40, 0x30, 0x6b, 0x46, 0x19, 0x7d, 0x01, 0x76, 0x04, 0x00, +0x1a, 0x7d, 0x0a, 0x30, 0x06, 0xa9, 0x1c, 0x90, 0xfc, 0xf2, 0xc8, 0xec, 0x22, 0x7e, 0x0a, 0x9b, +0x1c, 0x99, 0x28, 0x00, 0x07, 0xf0, 0x1e, 0xe9, 0x28, 0x00, 0xf4, 0xf7, 0xc7, 0xfc, 0x2e, 0x48, +0x01, 0x68, 0x01, 0x91, 0x78, 0x79, 0x3b, 0x79, 0x02, 0x02, 0x1a, 0x43, 0x33, 0x00, 0x0c, 0x33, +0x28, 0x00, 0xff, 0xf7, 0x3b, 0xfe, 0x07, 0xf0, 0x26, 0xe9, 0x28, 0x00, 0x07, 0xf0, 0x26, 0xe9, +0x31, 0x00, 0x28, 0x00, 0xfd, 0xf7, 0x98, 0xf8, 0x00, 0x21, 0x08, 0x00, 0x00, 0xf0, 0x39, 0xf8, +0x1d, 0xb0, 0xf0, 0xbd, 0x7c, 0xb5, 0x01, 0x89, 0x45, 0x69, 0x0c, 0x18, 0xff, 0x21, 0x20, 0x00, +0x49, 0x31, 0x49, 0x5d, 0x20, 0x30, 0x06, 0x00, 0x03, 0x29, 0x06, 0xd1, 0x41, 0x78, 0x00, 0x78, +0x09, 0x02, 0x01, 0x43, 0x03, 0x20, 0x00, 0xf0, 0x24, 0xf8, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, +0x08, 0x43, 0x02, 0x28, 0x02, 0xd2, 0x00, 0x20, 0xc0, 0x43, 0x7c, 0xbd, 0x70, 0x78, 0x31, 0x78, +0x00, 0x02, 0x08, 0x43, 0x6b, 0x46, 0x21, 0x00, 0xd8, 0x80, 0x0c, 0x31, 0x06, 0x22, 0x68, 0x46, +0xfc, 0xf2, 0x7c, 0xec, 0x09, 0x22, 0x28, 0x00, 0x69, 0x46, 0xe6, 0xf7, 0x3d, 0xf9, 0x00, 0x20, +0x7c, 0xbd, 0x09, 0x48, 0x00, 0x21, 0x10, 0xb5, 0x01, 0x80, 0xff, 0x20, 0xe5, 0xf7, 0x87, 0xff, +0x10, 0xbd, 0x00, 0x28, 0x10, 0xb5, 0x02, 0xd0, 0x03, 0x28, 0x0b, 0xd1, 0x02, 0x20, 0x07, 0xf0, +0xe2, 0xe8, 0x10, 0xbd, 0xd8, 0x56, 0x02, 0xc0, 0x28, 0xfa, 0x00, 0xc0, 0x7f, 0x03, 0x00, 0x00, +0x04, 0x00, 0x01, 0x00, 0x01, 0x20, 0xf2, 0xe7, 0x08, 0x00, 0x19, 0x00, 0x00, 0x28, 0x10, 0xb5, +0x09, 0xd0, 0x04, 0x28, 0x05, 0xd0, 0x05, 0x28, 0x07, 0xd1, 0x07, 0x20, 0x07, 0xf0, 0xce, 0xe8, +0x10, 0xbd, 0x09, 0x20, 0xfa, 0xe7, 0x05, 0x20, 0xf8, 0xe7, 0x06, 0x20, 0xf6, 0xe7, 0xfe, 0xb5, +0x0c, 0x00, 0x07, 0x00, 0x08, 0x7a, 0xc9, 0x79, 0x01, 0x26, 0x00, 0x02, 0x08, 0x43, 0x00, 0xd0, +0x06, 0x00, 0xff, 0x21, 0x5d, 0x31, 0x38, 0x00, 0xe5, 0xf7, 0xff, 0xff, 0x05, 0x00, 0x07, 0xd1, +0xa0, 0x79, 0x22, 0x00, 0x01, 0x21, 0x00, 0x23, 0xff, 0xf7, 0xd6, 0xff, 0x4c, 0xe7, 0x02, 0x73, +0x01, 0x00, 0x00, 0x00, 0xfc, 0x01, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0xf2, 0x11, 0x94, 0xc1, +0x68, 0x1e, 0xfe, 0xbd, 0x28, 0x89, 0x22, 0x00, 0x40, 0x19, 0x01, 0x90, 0xb1, 0x20, 0x80, 0x00, +0x39, 0x18, 0x28, 0x00, 0x0b, 0x23, 0x00, 0x94, 0xe6, 0xf7, 0x3e, 0xf8, 0xa0, 0x79, 0x80, 0x37, +0xb8, 0x80, 0x70, 0x1c, 0xf8, 0x80, 0x00, 0x22, 0x00, 0x92, 0xa1, 0x79, 0x01, 0x98, 0x32, 0x00, +0x00, 0x23, 0xf6, 0xf2, 0x9e, 0xff, 0x28, 0x00, 0xe6, 0xf7, 0x84, 0xf8, 0x40, 0x1c, 0x05, 0xd1, +0xa0, 0x79, 0x22, 0x00, 0x01, 0x21, 0x00, 0x23, 0xff, 0xf7, 0xb0, 0xff, 0x00, 0x20, 0xfe, 0xbd, +0x38, 0xb5, 0x15, 0x00, 0x00, 0x92, 0x8a, 0x7b, 0x4c, 0x7b, 0x13, 0x02, 0x23, 0x43, 0x0a, 0x00, +0xe6, 0xf7, 0xac, 0xf8, 0x04, 0x00, 0x40, 0x1c, 0x04, 0xd1, 0x00, 0x2d, 0x02, 0xd0, 0x03, 0x20, +0x07, 0xf0, 0x7a, 0xe8, 0x20, 0x00, 0x38, 0xbd, 0xf8, 0xb5, 0x01, 0x89, 0x45, 0x69, 0x0c, 0x18, +0x20, 0x00, 0x20, 0x30, 0x41, 0x79, 0x00, 0x79, 0x0b, 0x02, 0x03, 0x43, 0x04, 0xd0, 0x22, 0x00, +0x0c, 0x32, 0x05, 0x21, 0x01, 0x20, 0x0b, 0xe0, 0xff, 0x21, 0x5d, 0x31, 0x28, 0x00, 0xe5, 0xf7, +0xa6, 0xff, 0x06, 0x00, 0x07, 0xd1, 0x22, 0x00, 0x01, 0x21, 0x0c, 0x32, 0x08, 0x00, 0x00, 0x23, +0xff, 0xf7, 0x7c, 0xff, 0x34, 0xe0, 0x30, 0x89, 0x22, 0x00, 0x87, 0x19, 0xb1, 0x20, 0x80, 0x00, +0x0c, 0x32, 0x29, 0x18, 0x30, 0x00, 0x0b, 0x23, 0x00, 0x92, 0xe5, 0xf7, 0xe5, 0xff, 0x04, 0x21, +0x86, 0x20, 0x41, 0x53, 0x22, 0x00, 0x28, 0x32, 0x00, 0x92, 0x03, 0x22, 0x01, 0x21, 0x38, 0x00, +0x00, 0x23, 0xf6, 0xf2, 0x46, 0xff, 0xb8, 0x79, 0xc1, 0x07, 0x64, 0x48, 0x02, 0xd0, 0x28, 0x18, +0x42, 0x6a, 0x01, 0xe0, 0x28, 0x18, 0x82, 0x6a, 0x00, 0x2a, 0x01, 0xd0, 0x08, 0x32, 0x03, 0xd1, +0x30, 0x00, 0xfd, 0xf2, 0x0b, 0xf9, 0x0b, 0xe0, 0x78, 0x78, 0x3b, 0x78, 0x01, 0x02, 0x19, 0x43, +0x38, 0x00, 0xef, 0xf2, 0x83, 0xff, 0x30, 0x00, 0xe6, 0xf7, 0x14, 0xf8, 0x40, 0x1c, 0x02, 0xd1, +0x00, 0x20, 0xc0, 0x43, 0xf8, 0xbd, 0x01, 0x20, 0xf8, 0xbd, 0xf8, 0xb5, 0x03, 0x00, 0x00, 0x24, +0x42, 0x69, 0x00, 0x89, 0xe4, 0x43, 0xc0, 0x18, 0x05, 0x00, 0x20, 0x35, 0x69, 0x78, 0x2e, 0x78, +0x09, 0x02, 0x31, 0x43, 0x00, 0x2a, 0x07, 0xd1, 0x0b, 0x06, 0x1b, 0x0e, 0x02, 0x00, 0x0c, 0x32, +0x01, 0x21, 0x18, 0x00, 0x06, 0x23, 0x3e, 0xe0, 0x00, 0x29, 0x03, 0xd0, 0x01, 0x29, 0x01, 0xd0, +0x80, 0x29, 0x2d, 0xd1, 0xee, 0x78, 0xaf, 0x78, 0x36, 0x02, 0x3e, 0x43, 0x80, 0x32, 0xd7, 0x88, +0xbe, 0x42, 0x01, 0xd0, 0x01, 0x24, 0x30, 0xe0, 0x92, 0x88, 0x91, 0x42, 0x20, 0xd1, 0x01, 0x29, +0x1b, 0xd1, 0x02, 0x2e, 0x0b, 0xd0, 0x04, 0x2e, 0x27, 0xd1, 0x69, 0x79, 0x2a, 0x79, 0x0b, 0x02, +0x13, 0x43, 0x09, 0xd0, 0x02, 0x00, 0x0c, 0x32, 0x05, 0x21, 0x01, 0x20, 0x1b, 0xe0, 0x18, 0x00, +0xff, 0xf7, 0x6a, 0xff, 0x04, 0x00, 0x18, 0xe0, 0x02, 0x00, 0x00, 0x21, 0x0c, 0x32, 0x01, 0x20, +0x0b, 0x00, 0xff, 0xf7, 0xfb, 0xfe, 0x00, 0x24, 0x0f, 0xe0, 0x00, 0xf0, 0x39, 0xf8, 0xf1, 0xe7, +0x6a, 0x79, 0x2d, 0x79, 0x13, 0x02, 0x2b, 0x43, 0x09, 0xd0, 0x0d, 0x06, 0x02, 0x00, 0x2d, 0x0e, +0x0c, 0x32, 0x05, 0x21, 0x28, 0x00, 0xff, 0xf7, 0xe9, 0xfe, 0x20, 0x00, 0xf8, 0xbd, 0x0b, 0x06, +0x1b, 0x0e, 0x02, 0x00, 0x0c, 0x32, 0x04, 0x21, 0x18, 0x00, 0x0d, 0x23, 0xf3, 0xe7, 0x1c, 0xb5, +0x01, 0x89, 0x44, 0x69, 0x09, 0x18, 0x48, 0x78, 0x0a, 0x78, 0x00, 0x02, 0x10, 0x43, 0x02, 0x28, +0x02, 0xd2, 0x00, 0x20, 0xc0, 0x43, 0x1c, 0xbd, 0x08, 0x00, 0x20, 0x30, 0x42, 0x78, 0x03, 0x78, +0x10, 0x02, 0x18, 0x43, 0x6b, 0x46, 0xd8, 0x80, 0x06, 0x22, 0x0c, 0x31, 0x68, 0x46, 0xfc, 0xf2, +0x20, 0xeb, 0x08, 0x22, 0x20, 0x00, 0x69, 0x46, 0xe5, 0xf7, 0xe0, 0xff, 0x00, 0x20, 0x1c, 0xbd, +0x01, 0x00, 0x20, 0x31, 0x10, 0xb5, 0xca, 0x78, 0x8c, 0x78, 0x13, 0x02, 0x02, 0x00, 0x48, 0x78, +0x23, 0x43, 0x0c, 0x78, 0x00, 0x02, 0x20, 0x43, 0x00, 0x06, 0x0c, 0x32, 0x00, 0x0e, 0x02, 0x2b, +0x06, 0xd0, 0x04, 0x21, 0x0e, 0x23, 0xff, 0xf7, 0xa9, 0xfe, 0x00, 0x20, 0xc0, 0x43, 0x10, 0xbd, +0x4b, 0x79, 0x09, 0x79, 0x1b, 0x02, 0x0b, 0x43, 0x02, 0xd1, 0x00, 0x21, 0x0b, 0x00, 0x00, 0xe0, +0x05, 0x21, 0xff, 0xf7, 0x9b, 0xfe, 0x00, 0x20, 0x10, 0xbd, 0x00, 0x00, 0x40, 0x02, 0x00, 0x00, +0xf8, 0xb5, 0x0d, 0x00, 0x00, 0x26, 0x01, 0x89, 0x47, 0x69, 0x0c, 0x18, 0x00, 0x2a, 0x13, 0xd1, +0xa0, 0x78, 0x00, 0x09, 0x0d, 0x28, 0x0d, 0xd1, 0xb1, 0x20, 0x80, 0x00, 0x06, 0x22, 0xa1, 0x1d, +0x38, 0x18, 0x00, 0xf0, 0x91, 0xfe, 0x00, 0x28, 0x06, 0xd0, 0xa0, 0x1d, 0xfa, 0xf7, 0x21, 0xfa, +0x00, 0x28, 0x01, 0xd1, 0x00, 0x20, 0xf8, 0xbd, 0x21, 0x00, 0x20, 0x31, 0x08, 0x78, 0x09, 0x28, +0x25, 0xd0, 0x0b, 0xdc, 0x03, 0x28, 0x1b, 0xd0, 0x04, 0x28, 0x20, 0xd0, 0x08, 0x28, 0x0f, 0xd1, +0x2b, 0x00, 0x22, 0x00, 0x38, 0x00, 0xf1, 0xf7, 0xe0, 0xfb, 0x16, 0xe0, 0x11, 0x28, 0x09, 0xd0, +0x7f, 0x28, 0x05, 0xd1, 0x7f, 0x22, 0x21, 0x00, 0x38, 0x00, 0xfc, 0xf7, 0x48, 0xfe, 0x01, 0x26, +0x30, 0x00, 0xf8, 0xbd, 0x2b, 0x00, 0x22, 0x00, 0x38, 0x00, 0xfe, 0xf7, 0xd0, 0xf9, 0x04, 0xe0, +0x2b, 0x00, 0x22, 0x00, 0x38, 0x00, 0xe3, 0xf7, 0x94, 0xf8, 0x06, 0x00, 0xf0, 0xe7, 0x4b, 0x78, +0x01, 0x26, 0x09, 0x3b, 0xfc, 0xf2, 0xc0, 0xec, 0x05, 0x05, 0x0b, 0x0b, 0x0b, 0x0b, 0x04, 0x00, +0xe6, 0xe7, 0x09, 0x22, 0x21, 0x00, 0x38, 0x00, 0xfc, 0xf7, 0x29, 0xfe, 0xe0, 0xe7, 0x21, 0x00, +0x38, 0x00, 0xfc, 0xf7, 0x3a, 0xfe, 0xdb, 0xe7, 0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x96, 0x48, +0x0e, 0x21, 0xfc, 0xf2, 0x54, 0xeb, 0x0e, 0x22, 0x0e, 0x2d, 0x00, 0xd2, 0x2a, 0x00, 0x92, 0x49, +0x00, 0x20, 0x06, 0xe0, 0x23, 0x5c, 0x5b, 0x06, 0x5b, 0x0e, 0x0b, 0x54, 0x40, 0x1c, 0x00, 0x06, +0x00, 0x0e, 0x90, 0x42, 0xf6, 0xd3, 0x70, 0xbd, 0xff, 0xb5, 0x9b, 0xb0, 0x06, 0x00, 0x00, 0x20, +0x19, 0x90, 0x18, 0x90, 0x30, 0x00, 0xeb, 0xf7, 0x48, 0xff, 0x07, 0x00, 0xe5, 0xf7, 0x4c, 0xfd, +0x00, 0x28, 0x04, 0xd1, 0xe5, 0xf7, 0x2d, 0xfe, 0x19, 0x90, 0x19, 0xa8, 0x18, 0x90, 0x77, 0x21, +0xc9, 0x00, 0x30, 0x00, 0xe5, 0xf7, 0x2b, 0xfe, 0x05, 0x00, 0x74, 0xd0, 0x28, 0x89, 0x44, 0x19, +0x30, 0x7a, 0x03, 0x28, 0x0c, 0xd1, 0x38, 0x00, 0xfb, 0xf7, 0x77, 0xfd, 0x00, 0x28, 0x07, 0xd0, +0x70, 0x7a, 0x03, 0x28, 0x01, 0xd0, 0x02, 0x28, 0x02, 0xd1, 0x38, 0x00, 0xbd, 0x30, 0x02, 0xe0, +0xb1, 0x20, 0x80, 0x00, 0x30, 0x18, 0x1c, 0x9a, 0x00, 0x2a, 0x00, 0xd1, 0x73, 0x4a, 0x01, 0x00, +0x28, 0x00, 0x04, 0x23, 0x00, 0x92, 0xe5, 0xf7, 0x5f, 0xfe, 0x00, 0x20, 0x20, 0x70, 0x60, 0x70, +0xe0, 0x78, 0xef, 0x21, 0x08, 0x40, 0xe0, 0x70, 0x6b, 0x4a, 0x18, 0x9b, 0x1d, 0x99, 0x20, 0x00, +0xf6, 0xf2, 0x8d, 0xfe, 0x30, 0x7a, 0x03, 0x28, 0x6e, 0xd1, 0x17, 0x20, 0xba, 0x79, 0x75, 0xda, +0x01, 0x00, 0x00, 0x00, 0xf8, 0x05, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0xa1, 0xcb, 0x47, 0xad, +0x40, 0x01, 0x30, 0x18, 0x00, 0x78, 0x01, 0x28, 0x06, 0xd0, 0x03, 0x28, 0x04, 0xd0, 0x70, 0x7a, +0x03, 0x28, 0x01, 0xd0, 0x02, 0x28, 0x61, 0xd1, 0x00, 0x20, 0x17, 0x90, 0x4c, 0x21, 0x04, 0xa8, +0xfc, 0xf2, 0xbc, 0xea, 0x04, 0xa8, 0x03, 0x90, 0x70, 0x7a, 0x01, 0x28, 0x03, 0xd1, 0x21, 0x00, +0x30, 0x00, 0xfa, 0xf7, 0x3a, 0xff, 0x38, 0x00, 0xa0, 0x30, 0x1a, 0x90, 0x40, 0x8a, 0x00, 0x28, +0x04, 0xd0, 0x38, 0x00, 0xb1, 0x30, 0x12, 0x90, 0x08, 0x20, 0x17, 0x90, 0x70, 0x7a, 0x01, 0x23, +0x5b, 0x04, 0x02, 0x28, 0x00, 0xd0, 0x00, 0x23, 0xff, 0x21, 0x45, 0x31, 0x0b, 0x43, 0x01, 0x28, +0x14, 0xd1, 0x80, 0x37, 0x38, 0x6b, 0x1a, 0x99, 0x02, 0x90, 0x00, 0x20, 0x08, 0x74, 0x17, 0x9a, +0x00, 0x92, 0x03, 0x9a, 0x21, 0x00, 0x30, 0x00, 0xfa, 0xf7, 0x65, 0xff, 0x1a, 0x99, 0x6b, 0x46, +0x1a, 0x7a, 0x00, 0x04, 0x00, 0x0c, 0x0a, 0x74, 0x09, 0xe0, 0x6e, 0xe0, 0x17, 0x9a, 0x00, 0x92, +0x03, 0x9a, 0x21, 0x00, 0x30, 0x00, 0xfa, 0xf7, 0x56, 0xff, 0x00, 0x04, 0x00, 0x0c, 0x61, 0x78, +0x22, 0x78, 0x09, 0x02, 0x11, 0x43, 0x08, 0x18, 0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, 0x00, 0xf0, +0x8e, 0xfc, 0x00, 0x28, 0x12, 0xd0, 0x60, 0x78, 0x22, 0x78, 0x01, 0x02, 0x11, 0x43, 0x20, 0x00, +0x20, 0x30, 0x09, 0x18, 0x00, 0x22, 0x30, 0x00, 0x00, 0xf0, 0x2f, 0xfd, 0x61, 0x78, 0x22, 0x78, +0x09, 0x02, 0x11, 0x43, 0x40, 0x18, 0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, 0x24, 0x98, 0x00, 0x28, +0x08, 0xd0, 0x1e, 0x98, 0x00, 0x28, 0x05, 0xd0, 0x24, 0x9b, 0x1e, 0x9a, 0x00, 0x21, 0x20, 0x00, +0xf5, 0xf2, 0xc3, 0xfc, 0x26, 0x98, 0x01, 0x22, 0x00, 0x28, 0x04, 0xd0, 0x68, 0x7b, 0x10, 0x43, +0x68, 0x73, 0x26, 0x98, 0xa8, 0x61, 0x28, 0x89, 0x28, 0x81, 0x25, 0x99, 0x85, 0x20, 0x41, 0x55, +0x25, 0x98, 0x2f, 0x00, 0x1c, 0x37, 0x20, 0x28, 0x08, 0xd1, 0x1c, 0x98, 0x00, 0x28, 0x00, 0xd0, +0x00, 0x22, 0x04, 0x21, 0x30, 0x00, 0xf8, 0xf7, 0x7b, 0xf8, 0x12, 0xe0, 0x30, 0x7a, 0x03, 0x28, +0x05, 0xd0, 0xe5, 0xf7, 0x73, 0xfc, 0x01, 0x28, 0x0a, 0xd1, 0x05, 0x20, 0x09, 0xe0, 0x20, 0x00, +0xfb, 0xf2, 0x74, 0xfb, 0x00, 0x28, 0x05, 0xd0, 0xe5, 0xf7, 0x68, 0xfc, 0x01, 0x28, 0x01, 0xd0, +0x00, 0x20, 0xb8, 0x70, 0x22, 0x00, 0x01, 0x21, 0x30, 0x00, 0x00, 0x23, 0xf5, 0xf7, 0x0f, 0xfd, +0x28, 0x00, 0xe5, 0xf7, 0xf1, 0xfd, 0x40, 0x1c, 0x03, 0xd1, 0x00, 0x20, 0xc0, 0x43, 0x1f, 0xb0, +0xf0, 0xbd, 0x00, 0x20, 0xfb, 0xe7, 0x0e, 0xb5, 0x03, 0x00, 0x20, 0x21, 0x00, 0x22, 0x0b, 0x20, +0x01, 0x91, 0x80, 0x01, 0x18, 0x18, 0x00, 0x92, 0x02, 0x92, 0x02, 0x69, 0x19, 0x00, 0x18, 0x00, +0x2c, 0x32, 0x7e, 0x31, 0x00, 0x23, 0xff, 0xf7, 0xe9, 0xfe, 0x0e, 0xbd, 0xe8, 0x5e, 0x01, 0xc0, +0x60, 0xeb, 0x31, 0x00, 0xf7, 0xb5, 0x82, 0xb0, 0x04, 0x00, 0x52, 0xd0, 0x03, 0x98, 0x13, 0x23, +0x58, 0x43, 0x00, 0x19, 0x01, 0x90, 0x12, 0x30, 0xfc, 0xf2, 0x96, 0xea, 0x41, 0x78, 0x06, 0x00, +0x00, 0x78, 0x0f, 0x02, 0x07, 0x43, 0x20, 0x00, 0x08, 0x30, 0xbf, 0x1c, 0x00, 0x90, 0xfc, 0xf2, +0x8c, 0xea, 0x05, 0x00, 0x20, 0x00, 0x12, 0x30, 0xfc, 0xf2, 0x86, 0xea, 0x30, 0x1a, 0x28, 0x1a, +0xc5, 0x1b, 0x03, 0x98, 0x21, 0x7c, 0x40, 0x1c, 0x81, 0x42, 0x20, 0xd0, 0x01, 0x98, 0x25, 0x30, +0xfc, 0xf2, 0x7a, 0xea, 0x01, 0x00, 0x2a, 0x00, 0x30, 0x00, 0x00, 0xf0, 0x1c, 0xed, 0x03, 0x9d, +0x11, 0xe0, 0x13, 0x20, 0x68, 0x43, 0x13, 0x22, 0x06, 0x19, 0x31, 0x00, 0x12, 0x36, 0x25, 0x31, +0x30, 0x00, 0xfc, 0xf2, 0x28, 0xe9, 0x30, 0x00, 0xfc, 0xf2, 0x66, 0xea, 0xc0, 0x1b, 0x31, 0x00, +0xfc, 0xf2, 0x72, 0xea, 0x6d, 0x1c, 0x20, 0x7c, 0x40, 0x1e, 0xa8, 0x42, 0xe9, 0xdc, 0x20, 0x7c, +0x13, 0x23, 0x58, 0x43, 0x13, 0x21, 0x00, 0x19, 0x40, 0x1e, 0xfc, 0xf2, 0xda, 0xe9, 0x20, 0x7c, +0x40, 0x1e, 0x20, 0x74, 0x00, 0x98, 0xfc, 0xf2, 0x50, 0xea, 0x00, 0x99, 0xc0, 0x1b, 0xfc, 0xf2, +0x5c, 0xea, 0x05, 0xb0, 0xf0, 0xbd, 0x00, 0x29, 0x10, 0xb5, 0x01, 0xd0, 0x00, 0x7b, 0x10, 0xbd, +0xfc, 0xf2, 0x42, 0xea, 0x00, 0x7a, 0x10, 0xbd, 0xf7, 0xb5, 0x82, 0xb0, 0x07, 0x00, 0x00, 0x20, +0x01, 0x90, 0x38, 0x00, 0x04, 0x99, 0x12, 0x30, 0xff, 0xf7, 0xed, 0xff, 0x06, 0x00, 0x01, 0x24, +0x1b, 0xe0, 0x13, 0x20, 0x60, 0x43, 0x04, 0x99, 0xc0, 0x19, 0x12, 0x30, 0xff, 0xf7, 0xe3, 0xff, +0x05, 0x00, 0x03, 0x98, 0x00, 0x28, 0x04, 0xd0, 0x31, 0x06, 0x09, 0x0e, 0x28, 0x06, 0x00, 0x0e, +0x03, 0xe0, 0x29, 0x06, 0x09, 0x0e, 0x30, 0x06, 0x00, 0x0e, 0x04, 0x9a, 0xf6, 0xf2, 0x8a, 0xfa, +0x00, 0x28, 0x01, 0xd0, 0x2e, 0x00, 0x01, 0x94, 0x64, 0x1c, 0x38, 0x7c, 0xa0, 0x42, 0xe0, 0xdc, +0x01, 0x98, 0xc6, 0xe7, 0x0a, 0x00, 0x00, 0x21, 0xce, 0xe7, 0xff, 0xb5, 0x05, 0x21, 0x18, 0x00, +0xc9, 0x01, 0x00, 0x27, 0x56, 0x18, 0xc3, 0x00, 0x8f, 0xb0, 0x18, 0x1a, 0x06, 0x97, 0x74, 0x6a, +0x80, 0x18, 0x0e, 0x90, 0xc0, 0x79, 0x02, 0x90, 0x0e, 0x98, 0x00, 0x7a, 0x01, 0x90, 0x0f, 0x98, +0x41, 0x78, 0x02, 0x78, 0x08, 0x02, 0x10, 0x43, 0x61, 0xd0, 0x00, 0x22, 0x00, 0x92, 0x00, 0x21, +0x0f, 0x98, 0x05, 0x22, 0x0b, 0x00, 0xf5, 0xf2, 0x8d, 0xf9, 0x00, 0x28, 0x04, 0x90, 0x56, 0xd0, +0x0f, 0x99, 0x04, 0x98, 0x40, 0x1a, 0x20, 0x38, 0x03, 0x90, 0xf0, 0x68, 0x00, 0x28, 0x01, 0xd0, +0x18, 0x98, 0x00, 0xe0, 0x19, 0x98, 0x00, 0x22, 0x00, 0x92, 0x07, 0x90, 0x0f, 0x98, 0x08, 0x22, +0x03, 0x21, 0x00, 0x23, 0xf5, 0xf2, 0x76, 0xf9, 0x05, 0x90, 0x0f, 0x98, 0x00, 0x25, 0x12, 0x30, +0x0d, 0x90, 0x3f, 0xe0, 0x13, 0x20, 0x68, 0x43, 0x00, 0x19, 0x0c, 0x90, 0x12, 0x30, 0xfc, 0xf2, +0xcc, 0xe9, 0x00, 0x28, 0x0b, 0x90, 0x06, 0xd0, 0x0c, 0x98, 0x0b, 0x9f, 0x21, 0x30, 0xfc, 0xf2, +0xc4, 0xe9, 0x3f, 0x18, 0x09, 0x37, 0x0b, 0x98, 0x0d, 0x99, 0x80, 0x1c, 0x06, 0x22, 0x00, 0xf0, +0x2d, 0xfc, 0x00, 0x28, 0x25, 0xd1, 0x04, 0x98, 0x39, 0x00, 0xea, 0xf2, 0xfa, 0xff, 0x00, 0x28, +0x1f, 0xd1, 0x13, 0x20, 0x68, 0x43, 0x04, 0x19, 0x05, 0x98, 0x12, 0x34, 0x00, 0x28, 0x04, 0xd0, +0x05, 0x98, 0x81, 0x78, 0x01, 0x98, 0x81, 0x42, 0x0a, 0xd0, 0xf1, 0x68, 0x20, 0x00, 0xff, 0xf7, +0x5a, 0xff, 0x01, 0x00, 0xf2, 0x68, 0x07, 0x98, 0xf6, 0xf2, 0x0c, 0xfa, 0x00, 0x28, 0x06, 0xd0, +0x20, 0x00, 0xfc, 0xf2, 0x9a, 0xe9, 0x19, 0x99, 0x01, 0x72, 0x18, 0x98, 0x20, 0x73, 0x13, 0xb0, +0xf0, 0xbd, 0x6d, 0x1c, 0x20, 0x7c, 0xa8, 0x42, 0xbc, 0xd8, 0x0f, 0x98, 0x41, 0x78, 0x02, 0x78, +0x08, 0x02, 0x10, 0x43, 0x08, 0x90, 0x09, 0x30, 0x07, 0x04, 0x05, 0x98, 0x3f, 0x0c, 0x00, 0x28, +0x05, 0xd1, 0xff, 0x1c, 0x01, 0x98, 0x3f, 0x04, 0x3f, 0x0c, 0x06, 0x90, 0x24, 0xe0, 0x05, 0x98, +0x81, 0x78, 0x01, 0x98, 0x81, 0x42, 0x1f, 0xd0, 0x0e, 0x98, 0x40, 0x7a, 0x0b, 0x1e, 0xd4, 0xc3, +0x01, 0x00, 0x00, 0x00, 0xf4, 0x09, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x55, 0xa4, 0x32, 0x19, +0x80, 0x07, 0xde, 0xd5, 0x1a, 0xe0, 0x0a, 0x98, 0x00, 0x28, 0xda, 0xd0, 0xf1, 0x68, 0x20, 0x00, +0xff, 0xf7, 0x5a, 0xff, 0x05, 0x06, 0x2d, 0x0e, 0x13, 0x20, 0x68, 0x43, 0xf1, 0x68, 0x00, 0x19, +0x12, 0x30, 0xff, 0xf7, 0x1a, 0xff, 0xf2, 0x68, 0x07, 0x99, 0xf6, 0xf2, 0xcd, 0xf9, 0x00, 0x28, +0xc7, 0xd1, 0x00, 0x22, 0x29, 0x00, 0x20, 0x00, 0xff, 0xf7, 0xb6, 0xfe, 0x20, 0x7c, 0x0a, 0x90, +0x61, 0x7c, 0x88, 0x42, 0xdf, 0xd2, 0x20, 0x00, 0x08, 0x30, 0xfc, 0xf2, 0x50, 0xe9, 0xc5, 0x19, +0x20, 0x00, 0x0c, 0x30, 0xfc, 0xf2, 0x4a, 0xe9, 0x85, 0x42, 0xd4, 0xd8, 0x20, 0x1d, 0xfc, 0xf2, +0x46, 0xe9, 0x05, 0x00, 0x20, 0x00, 0x08, 0x30, 0x09, 0x90, 0xfc, 0xf2, 0x40, 0xe9, 0x2e, 0x18, +0xb8, 0x1e, 0x30, 0x70, 0x00, 0x0a, 0x70, 0x70, 0x35, 0x00, 0x0d, 0x99, 0x09, 0x35, 0x06, 0x22, +0xb0, 0x1c, 0xfb, 0xf2, 0xf2, 0xef, 0x19, 0x98, 0x30, 0x72, 0x0f, 0x99, 0x08, 0x9a, 0x20, 0x31, +0x28, 0x00, 0xfb, 0xf2, 0xea, 0xef, 0x08, 0x98, 0x06, 0x99, 0x28, 0x18, 0x00, 0x29, 0x05, 0xd0, +0x03, 0x21, 0x01, 0x70, 0x01, 0x21, 0x41, 0x70, 0x06, 0x99, 0x81, 0x70, 0x20, 0x7c, 0x13, 0x23, +0x58, 0x43, 0x01, 0x19, 0x0d, 0x00, 0x12, 0x35, 0x29, 0x00, 0x30, 0x00, 0xfc, 0xf2, 0x26, 0xe9, +0x08, 0x22, 0x28, 0x1d, 0x1a, 0xa9, 0xfb, 0xf2, 0xd0, 0xef, 0x18, 0x98, 0x29, 0x00, 0x28, 0x73, +0x03, 0x98, 0x0f, 0x31, 0xfc, 0xf2, 0x1a, 0xe9, 0x6b, 0x46, 0x1a, 0x7a, 0x6a, 0x73, 0x01, 0x98, +0xa8, 0x73, 0x0f, 0x98, 0x80, 0x78, 0x00, 0x09, 0x08, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x04, 0xe0, +0x05, 0x28, 0x01, 0xd1, 0x02, 0x20, 0x00, 0xe0, 0x00, 0x20, 0x91, 0x06, 0x80, 0x01, 0x89, 0x0e, +0x01, 0x43, 0x69, 0x73, 0x20, 0x7c, 0x40, 0x1c, 0x20, 0x74, 0x09, 0x98, 0xfc, 0xf2, 0xee, 0xe8, +0x09, 0x99, 0xc0, 0x19, 0xfc, 0xf2, 0xfa, 0xe8, 0x53, 0xe7, 0xff, 0xb5, 0x8b, 0xb0, 0x0c, 0x00, +0x05, 0x00, 0x40, 0x78, 0x29, 0x78, 0x00, 0x02, 0x08, 0x43, 0x6e, 0xd0, 0x0d, 0x98, 0x00, 0x28, +0x6b, 0xd0, 0xf1, 0xf2, 0x65, 0xf8, 0x06, 0x00, 0x05, 0x91, 0xa8, 0x78, 0x00, 0x09, 0x08, 0x28, +0x01, 0xd0, 0x05, 0x28, 0x2e, 0xd1, 0xe0, 0x7e, 0xfd, 0xf2, 0x72, 0xf8, 0x69, 0x78, 0x2a, 0x78, +0x09, 0x02, 0x11, 0x43, 0x09, 0x1d, 0x0a, 0x01, 0x01, 0x00, 0x10, 0x00, 0xfc, 0xf2, 0xd4, 0xec, +0x29, 0x00, 0x07, 0x00, 0x20, 0x31, 0x08, 0x22, 0x06, 0xa8, 0x09, 0x91, 0xfb, 0xf2, 0x7c, 0xef, +0x38, 0x00, 0x06, 0x9a, 0x07, 0x9b, 0x80, 0x18, 0x00, 0x27, 0x39, 0x00, 0x59, 0x41, 0x06, 0x90, +0x20, 0x00, 0x30, 0x30, 0x07, 0x91, 0xfc, 0xf2, 0xb2, 0xe8, 0x06, 0x9a, 0x30, 0x1a, 0x80, 0x18, +0x07, 0x9b, 0x39, 0x00, 0x59, 0x41, 0x07, 0x91, 0x06, 0x90, 0x09, 0x98, 0x08, 0x22, 0x06, 0xa9, +0xfb, 0xf2, 0x62, 0xef, 0x0d, 0x99, 0x05, 0x20, 0xc0, 0x01, 0x0f, 0x18, 0x78, 0x6a, 0x08, 0x90, +0xfc, 0xf2, 0x9c, 0xe8, 0x00, 0x28, 0x08, 0xd1, 0x08, 0x98, 0x06, 0xf0, 0xde, 0xeb, 0x78, 0x6a, +0x00, 0x1d, 0xfc, 0xf2, 0x94, 0xe8, 0x00, 0x28, 0x1f, 0xd0, 0x78, 0x6a, 0x00, 0x1d, 0xfc, 0xf2, +0x8e, 0xe8, 0x00, 0x28, 0x19, 0xd0, 0x0b, 0x20, 0x07, 0x21, 0x20, 0x56, 0x61, 0x56, 0x40, 0x1a, +0x02, 0xf0, 0xa9, 0xff, 0x07, 0x06, 0x0b, 0x20, 0x20, 0x56, 0x3f, 0x0e, 0xe3, 0xf7, 0x29, 0xfb, +0x02, 0x06, 0x05, 0x98, 0x12, 0x0e, 0x03, 0x90, 0x01, 0x92, 0x0e, 0x9b, 0x0d, 0x9a, 0x21, 0x00, +0x28, 0x00, 0x00, 0x97, 0x02, 0x96, 0xff, 0xf7, 0x62, 0xfe, 0x0f, 0xb0, 0xf0, 0xbd, 0x01, 0x29, +0x09, 0xd0, 0x02, 0x29, 0x0a, 0xd0, 0x03, 0x29, 0x03, 0xd1, 0x80, 0x07, 0x08, 0xd1, 0x01, 0x2a, +0x06, 0xd0, 0x00, 0x20, 0x70, 0x47, 0xc0, 0x07, 0xfb, 0xd0, 0x01, 0xe0, 0x80, 0x07, 0xf8, 0xd5, +0x01, 0x20, 0x70, 0x47, 0xff, 0xb5, 0x00, 0x20, 0x89, 0xb0, 0x0d, 0x00, 0x07, 0x00, 0x01, 0x00, +0x04, 0x90, 0x00, 0x90, 0x05, 0x22, 0x28, 0x00, 0x00, 0x23, 0xf4, 0xf2, 0xed, 0xff, 0x00, 0x28, +0x03, 0x90, 0x7c, 0xd0, 0x12, 0x98, 0xc1, 0x00, 0x09, 0x1a, 0x0c, 0x98, 0x08, 0x18, 0x08, 0x90, +0x40, 0x7a, 0xc1, 0x07, 0x28, 0x00, 0x12, 0x30, 0x07, 0x90, 0x0e, 0x30, 0x00, 0x29, 0x06, 0x90, +0x49, 0xd1, 0x00, 0x20, 0x02, 0x90, 0xa8, 0x78, 0x01, 0x07, 0x89, 0x0f, 0x43, 0xd1, 0x00, 0x09, +0x05, 0x28, 0x40, 0xd1, 0x0c, 0x98, 0x05, 0x21, 0xc9, 0x01, 0x40, 0x18, 0x40, 0x6a, 0x01, 0x90, +0x06, 0x98, 0x80, 0x7a, 0xc0, 0x07, 0x05, 0xd0, 0x29, 0x00, 0x07, 0x98, 0x06, 0x22, 0x0c, 0x31, +0xfb, 0xf2, 0xe2, 0xee, 0x00, 0x24, 0x2a, 0xe0, 0x13, 0x20, 0x60, 0x43, 0x01, 0x99, 0x46, 0x18, +0x30, 0x00, 0x12, 0x30, 0xfc, 0xf2, 0x1a, 0xe8, 0x00, 0x28, 0x05, 0x90, 0x06, 0xd0, 0x30, 0x00, +0x05, 0x9f, 0x21, 0x30, 0xfc, 0xf2, 0x12, 0xe8, 0x3f, 0x18, 0x09, 0x37, 0xf0, 0x7f, 0x80, 0x09, +0x01, 0x28, 0x13, 0xd1, 0x05, 0x98, 0x07, 0x99, 0x80, 0x1c, 0x06, 0x22, 0x00, 0xf0, 0x78, 0xfa, +0x00, 0x28, 0x0b, 0xd1, 0x03, 0x98, 0x39, 0x00, 0xea, 0xf2, 0x45, 0xfe, 0x00, 0x28, 0x05, 0xd1, +0x02, 0x9a, 0x01, 0x98, 0x21, 0x00, 0xff, 0xf7, 0x57, 0xfd, 0x04, 0xe0, 0x64, 0x1c, 0x01, 0x98, +0x00, 0x7c, 0xa0, 0x42, 0xd0, 0xdc, 0x09, 0x98, 0xfc, 0xf7, 0xc0, 0xfa, 0xaa, 0x1c, 0x0c, 0x99, +0x93, 0x6a, 0x02, 0x00, 0x09, 0x78, 0x18, 0x00, 0xff, 0xf7, 0x79, 0xff, 0x00, 0x28, 0x3b, 0xd0, +0x0c, 0x99, 0x07, 0x98, 0x49, 0x1c, 0xf5, 0xf2, 0xe0, 0xff, 0x00, 0x28, 0x34, 0xd0, 0x0c, 0x99, +0x28, 0x00, 0x04, 0xaa, 0xf5, 0xf2, 0x34, 0xff, 0x08, 0x98, 0x40, 0x7a, 0xc1, 0x07, 0x17, 0xd0, +0xc0, 0x06, 0x15, 0xd5, 0x06, 0x9a, 0x01, 0x21, 0x52, 0x7b, 0x00, 0x20, 0x08, 0xe0, 0x23, 0xe0, +0x2b, 0x18, 0x20, 0x33, 0x9b, 0x7b, 0x00, 0x2b, 0x01, 0xd0, 0x00, 0x21, 0x02, 0xe0, 0x40, 0x1c, +0x82, 0x42, 0xf5, 0xdc, 0x00, 0x29, 0x01, 0xd0, 0x01, 0x20, 0x00, 0xe0, 0x04, 0x98, 0x04, 0x90, +0x08, 0x98, 0x29, 0x00, 0x03, 0x7a, 0xc0, 0x79, 0x82, 0x07, 0x92, 0x0f, 0x00, 0x92, 0x0b, 0x9a, +0x09, 0x98, 0xfc, 0xf7, 0x60, 0xfa, 0x04, 0x98, 0x00, 0x28, 0x05, 0xd0, 0x12, 0x9b, 0x0c, 0x9a, +0x0b, 0x99, 0x28, 0x00, 0xff, 0xf7, 0xc1, 0xfe, 0x0d, 0xb0, 0xf0, 0xbd, 0x0a, 0x00, 0x01, 0x21, +0x10, 0xb5, 0xff, 0xf7, 0x63, 0xfd, 0x10, 0xbd, 0x00, 0x21, 0x80, 0x30, 0x41, 0x71, 0x81, 0x71, +0x70, 0x47, 0x70, 0xb5, 0x15, 0x00, 0x06, 0x22, 0x18, 0x70, 0x4a, 0x43, 0x1c, 0x00, 0x59, 0x70, +0x29, 0x00, 0xa0, 0x1c, 0xfb, 0xf2, 0x50, 0xee, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x10, 0x00, +0x1a, 0x78, 0x2a, 0x70, 0x5a, 0x78, 0x0a, 0x70, 0x59, 0x78, 0x06, 0x22, 0x4a, 0x43, 0x1c, 0x00, +0xa1, 0x1c, 0xfb, 0xf2, 0x42, 0xee, 0x70, 0xbd, 0xf3, 0xb5, 0x81, 0xb0, 0x00, 0x26, 0x03, 0xf0, +0x47, 0xfe, 0x05, 0x00, 0x80, 0x30, 0x07, 0x00, 0x40, 0x79, 0x00, 0x28, 0xb4, 0x7c, 0xd9, 0xd7, +0x01, 0x00, 0x00, 0x00, 0xf0, 0x0d, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x06, 0x7e, 0xe1, 0x75, +0x1b, 0xd0, 0x00, 0x24, 0x0c, 0xe0, 0x06, 0x20, 0x60, 0x43, 0x02, 0x99, 0x40, 0x19, 0x87, 0x30, +0x06, 0x22, 0x00, 0xf0, 0xdf, 0xf9, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x26, 0x03, 0xe0, 0x64, 0x1c, +0xb8, 0x79, 0xa0, 0x42, 0xef, 0xd8, 0x78, 0x79, 0x01, 0x28, 0x02, 0xd1, 0x01, 0x2e, 0x06, 0xd1, +0x03, 0xe0, 0x02, 0x28, 0x03, 0xd1, 0x00, 0x2e, 0x01, 0xd1, 0x00, 0x20, 0xfe, 0xbd, 0x01, 0x20, +0xfe, 0xbd, 0x80, 0x78, 0x05, 0x28, 0x01, 0xd3, 0x02, 0x20, 0x70, 0x47, 0x03, 0x28, 0x01, 0xd3, +0x01, 0x20, 0x70, 0x47, 0x00, 0x20, 0x70, 0x47, 0x01, 0x00, 0x49, 0x78, 0x00, 0x78, 0x03, 0x29, +0x00, 0xd2, 0xff, 0x20, 0x70, 0x47, 0x01, 0x69, 0x7d, 0x22, 0xd2, 0x00, 0x91, 0x42, 0x01, 0xd2, +0x0a, 0x31, 0x01, 0x61, 0x70, 0x47, 0x01, 0x00, 0x4a, 0x69, 0xc9, 0x69, 0x80, 0x68, 0x8a, 0x42, +0x01, 0xd9, 0x51, 0x1a, 0x08, 0x18, 0x70, 0x47, 0x10, 0xb5, 0x03, 0x78, 0x5b, 0x06, 0x5b, 0x0e, +0x0e, 0x2b, 0x0a, 0xd3, 0xc4, 0x69, 0x43, 0x69, 0xa3, 0x42, 0x06, 0xd9, 0x1b, 0x1b, 0x0b, 0x60, +0x80, 0x69, 0x83, 0x42, 0x01, 0xd9, 0x18, 0x1a, 0x10, 0x60, 0x10, 0xbd, 0xfe, 0xb5, 0x0d, 0x00, +0x06, 0x00, 0x00, 0x78, 0x14, 0x00, 0x40, 0x06, 0x40, 0x0e, 0x02, 0x90, 0x00, 0x20, 0x01, 0x90, +0x00, 0x90, 0x00, 0xf0, 0x63, 0xfc, 0x07, 0x00, 0x30, 0x00, 0x6a, 0x46, 0x01, 0xa9, 0xff, 0xf7, +0xdb, 0xff, 0xb0, 0x68, 0x01, 0x99, 0x40, 0x18, 0x01, 0x90, 0xf0, 0x68, 0x00, 0x99, 0x40, 0x18, +0x00, 0x90, 0x38, 0x00, 0x00, 0xf0, 0x56, 0xfc, 0x01, 0x99, 0x00, 0x29, 0x58, 0xd0, 0x00, 0x98, +0x64, 0x23, 0x58, 0x43, 0xfc, 0xf2, 0x0a, 0xeb, 0x28, 0x60, 0x32, 0x20, 0x00, 0x2c, 0x04, 0xd1, +0x02, 0x98, 0x00, 0x22, 0xff, 0x21, 0xf3, 0xf2, 0xcb, 0xfc, 0x01, 0x99, 0x88, 0x42, 0x0b, 0xd8, +0x1e, 0x20, 0x00, 0x2c, 0x04, 0xd1, 0x02, 0x98, 0x00, 0x22, 0xff, 0x21, 0xf3, 0xf2, 0xac, 0xfc, +0x29, 0x68, 0x88, 0x42, 0x3a, 0xd8, 0x15, 0xe0, 0x20, 0x20, 0x00, 0x2c, 0x04, 0xd1, 0x02, 0x98, +0x00, 0x22, 0xff, 0x21, 0xf3, 0xf2, 0xbb, 0xfc, 0x01, 0x99, 0x88, 0x42, 0x0c, 0xd8, 0x4b, 0x20, +0x00, 0x2c, 0x04, 0xd1, 0x02, 0x98, 0x00, 0x22, 0xff, 0x21, 0xf3, 0xf2, 0x9b, 0xfc, 0x29, 0x68, +0x88, 0x42, 0x25, 0xd8, 0x00, 0x20, 0xfe, 0xbd, 0x10, 0x21, 0x00, 0x2c, 0x05, 0xd1, 0x02, 0x98, +0x00, 0x22, 0xff, 0x21, 0xf3, 0xf2, 0xaa, 0xfc, 0x01, 0x00, 0x01, 0x9a, 0x64, 0x20, 0x91, 0x42, +0x07, 0xd8, 0x00, 0x2c, 0xeb, 0xd1, 0x02, 0x98, 0x00, 0x22, 0xff, 0x21, 0xf3, 0xf2, 0x89, 0xfc, +0xe5, 0xe7, 0x31, 0x69, 0x7d, 0x22, 0xd2, 0x00, 0x91, 0x42, 0x09, 0xd3, 0x00, 0x2c, 0xc7, 0xd1, +0x02, 0x98, 0x00, 0x22, 0xff, 0x21, 0xf3, 0xf2, 0x7c, 0xfc, 0xc1, 0xe7, 0x01, 0x20, 0xfe, 0xbd, +0x02, 0x20, 0xfe, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x15, 0x00, 0x1a, 0x00, 0x20, 0x30, 0xff, 0xf7, +0x48, 0xff, 0x00, 0x28, 0x28, 0x70, 0x03, 0xd0, 0x64, 0x20, 0x08, 0x60, 0x00, 0x20, 0x70, 0xbd, +0x20, 0x00, 0xff, 0xf7, 0x73, 0xff, 0x70, 0xbd, 0x10, 0xb5, 0xf4, 0xf7, 0x07, 0xfd, 0x10, 0xbd, +0x69, 0x49, 0x48, 0x80, 0x70, 0x47, 0x68, 0x49, 0x02, 0x20, 0x08, 0x5e, 0x40, 0x1c, 0x00, 0xd0, +0x01, 0x20, 0x70, 0x47, 0x64, 0x49, 0x02, 0x20, 0x08, 0x5e, 0x70, 0x47, 0x20, 0x21, 0x10, 0xb5, +0x09, 0x5c, 0x7f, 0x29, 0x08, 0xd1, 0x61, 0x49, 0x04, 0x22, 0x21, 0x30, 0x00, 0xf0, 0xea, 0xf8, +0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0x3c, 0xb5, 0x00, 0x22, +0x00, 0x29, 0x26, 0xd0, 0x41, 0x78, 0x09, 0x1f, 0x0c, 0x06, 0x24, 0x0e, 0x80, 0x1d, 0x30, 0xe0, +0x81, 0x5c, 0x00, 0x29, 0x1e, 0xd1, 0x81, 0x18, 0xcd, 0x78, 0x6b, 0x46, 0x1d, 0x71, 0x09, 0x79, +0x59, 0x71, 0x9b, 0x88, 0x19, 0x02, 0x1b, 0x0a, 0x19, 0x43, 0x01, 0x91, 0xc9, 0x43, 0x89, 0x07, +0x10, 0xd1, 0x4d, 0x49, 0x03, 0x24, 0x09, 0x88, 0x6b, 0x46, 0x8c, 0x43, 0x99, 0x88, 0xa1, 0x43, +0x0c, 0x02, 0x09, 0x0a, 0x0c, 0x43, 0x01, 0x94, 0x19, 0x79, 0x80, 0x18, 0xc1, 0x70, 0x59, 0x79, +0x01, 0x71, 0x3c, 0xbd, 0x81, 0x18, 0x4d, 0x78, 0x6b, 0x46, 0x1d, 0x70, 0x89, 0x78, 0x59, 0x70, +0x1b, 0x88, 0x19, 0x02, 0x1b, 0x0a, 0x19, 0x43, 0x00, 0x91, 0x51, 0x18, 0xc9, 0x1c, 0x0a, 0x06, +0x12, 0x0e, 0xa2, 0x42, 0xcc, 0xd3, 0x3c, 0xbd, 0x02, 0x00, 0x10, 0xb5, 0xff, 0xf7, 0xa3, 0xff, +0x00, 0x28, 0x06, 0xd0, 0x10, 0x00, 0xff, 0xf7, 0xa9, 0xff, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, +0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0xff, 0xb5, 0xdd, 0x21, 0x81, 0xb0, 0x1c, 0x00, 0x17, 0x00, +0x01, 0x70, 0x40, 0x1c, 0x45, 0x1c, 0x00, 0x90, 0x02, 0x99, 0x28, 0x00, 0xfb, 0xf2, 0xd6, 0xec, +0xe8, 0x19, 0x01, 0x90, 0x0b, 0x98, 0x3e, 0x00, 0x26, 0xe0, 0x02, 0x99, 0x25, 0x00, 0x3a, 0x00, +0xa0, 0x1c, 0x00, 0xf0, 0x7f, 0xf8, 0x00, 0x28, 0x29, 0xd1, 0x69, 0x78, 0x0a, 0x98, 0xca, 0x1b, +0x80, 0x19, 0xe1, 0x21, 0x80, 0x18, 0x89, 0x00, 0x88, 0x42, 0x19, 0xda, 0xe1, 0x19, 0x01, 0x98, +0x89, 0x1c, 0xfb, 0xf2, 0xbc, 0xec, 0x68, 0x78, 0xc1, 0x1b, 0x8a, 0x19, 0x16, 0x04, 0x01, 0x9a, +0x36, 0x0c, 0x89, 0x18, 0x01, 0x91, 0xa4, 0x1c, 0x04, 0x19, 0x68, 0x78, 0x0b, 0x99, 0x08, 0x1a, +0x80, 0x1e, 0x00, 0x04, 0x00, 0x14, 0x0b, 0x90, 0x00, 0x28, 0x01, 0xdd, 0x00, 0x2c, 0xd4, 0xd1, +0x00, 0x98, 0x06, 0x70, 0xb6, 0x1c, 0x30, 0x04, 0x00, 0x0c, 0x05, 0xb0, 0xf0, 0xbd, 0x68, 0x78, +0xe9, 0xe7, 0x70, 0xb5, 0x03, 0x00, 0x0e, 0x00, 0x15, 0x00, 0x00, 0x24, 0x8e, 0xb0, 0xff, 0xf7, +0x4a, 0xff, 0x00, 0x28, 0x14, 0xd0, 0x0e, 0x4a, 0x18, 0x00, 0x00, 0x92, 0x0b, 0x4a, 0x04, 0x23, +0x01, 0xa9, 0xf4, 0xf7, 0xcf, 0xff, 0x04, 0x00, 0x0a, 0xd0, 0x00, 0x2d, 0x03, 0xd0, 0x21, 0x00, +0x01, 0xa8, 0xff, 0xf7, 0x53, 0xff, 0x22, 0x00, 0x30, 0x00, 0x01, 0xa9, 0xfb, 0xf2, 0x7e, 0xec, +0x20, 0x00, 0x0e, 0xb0, 0x70, 0xbd, 0x00, 0x00, 0x36, 0xfa, 0x00, 0xc0, 0xfc, 0x75, 0x02, 0x00, +0xff, 0xff, 0x00, 0x00, 0x00, 0x28, 0x10, 0xb5, 0x02, 0xd0, 0x4c, 0x30, 0xf2, 0xf2, 0x50, 0xff, +0x10, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x07, 0xd0, 0x21, 0x00, 0x1c, 0x31, 0x60, 0x1d, 0xf2, 0xf2, +0x58, 0xff, 0x20, 0x00, 0xff, 0xf7, 0xee, 0xff, 0x01, 0x20, 0x10, 0xbd, 0x20, 0x30, 0x52, 0xe2, +0x04, 0x00, 0x00, 0x5a, 0x20, 0x30, 0x62, 0xe2, 0x30, 0x02, 0xa0, 0xe1, 0x11, 0x03, 0x80, 0xe1, +0x31, 0x12, 0xa0, 0xe1, 0x1e, 0xff, 0x2f, 0xe1, 0x31, 0x03, 0xa0, 0xe1, 0x00, 0x10, 0xa0, 0xe3, +0x1e, 0xff, 0x2f, 0xe1, 0x10, 0xb4, 0x04, 0x2a, 0x0e, 0xd3, 0x03, 0x00, 0x0b, 0x43, 0x9b, 0x07, +0x0a, 0xd1, 0x08, 0xc8, 0x10, 0xc9, 0xa3, 0x42, 0x02, 0xd1, 0x12, 0x1f, 0x04, 0x2a, 0xf8, 0xd2, +0xa3, 0x42, 0x01, 0xd0, 0x00, 0x1f, 0x09, 0x1f, 0x00, 0x2a, 0x02, 0xd1, 0xde, 0xe2, 0x92, 0x2d, +0x01, 0x00, 0x00, 0x00, 0xec, 0x11, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0xb9, 0xbb, 0xc4, 0xc6, +0x00, 0x20, 0x10, 0xbc, 0x70, 0x47, 0xd3, 0x07, 0x01, 0xd0, 0x52, 0x1c, 0x05, 0xe0, 0x03, 0x78, +0x0c, 0x78, 0x40, 0x1c, 0x49, 0x1c, 0xa3, 0x42, 0x07, 0xd1, 0x03, 0x78, 0x0c, 0x78, 0x40, 0x1c, +0x49, 0x1c, 0xa3, 0x42, 0x01, 0xd1, 0x92, 0x1e, 0xf1, 0xd1, 0x18, 0x1b, 0xe9, 0xe7, 0x00, 0x00, +0xff, 0x30, 0x02, 0xe2, 0x03, 0x24, 0x83, 0xe1, 0x02, 0x28, 0x82, 0xe1, 0x6f, 0xee, 0x0b, 0xea, +0x01, 0x30, 0x50, 0xe0, 0x03, 0x00, 0x52, 0x21, 0x08, 0xee, 0x0b, 0x9a, 0x03, 0x00, 0x52, 0xe3, +0x02, 0x00, 0x80, 0xe0, 0x02, 0x10, 0x81, 0xe0, 0x25, 0x00, 0x00, 0x9a, 0x03, 0x00, 0x10, 0xe3, +0x01, 0x30, 0x71, 0x15, 0x01, 0x20, 0x42, 0x12, 0x01, 0x30, 0x60, 0x15, 0x03, 0x00, 0x10, 0xe3, +0xfa, 0xff, 0xff, 0x1a, 0x03, 0x30, 0x11, 0xe2, 0x62, 0x00, 0x00, 0x0a, 0x04, 0x20, 0x52, 0xe2, +0x1b, 0x00, 0x00, 0x3a, 0x03, 0xc0, 0x31, 0xe7, 0x02, 0x00, 0x53, 0xe3, 0x08, 0x00, 0x00, 0x3a, +0x0f, 0x00, 0x00, 0x8a, 0x0c, 0x38, 0xa0, 0xe1, 0x04, 0xc0, 0x31, 0xe5, 0x04, 0x20, 0x52, 0xe2, +0x2c, 0x38, 0x83, 0xe1, 0x04, 0x30, 0x20, 0xe5, 0xf9, 0xff, 0xff, 0x2a, 0x02, 0x10, 0x81, 0xe2, +0x0f, 0x00, 0x00, 0xea, 0x0c, 0x3c, 0xa0, 0xe1, 0x04, 0xc0, 0x31, 0xe5, 0x04, 0x20, 0x52, 0xe2, +0x2c, 0x34, 0x83, 0xe1, 0x04, 0x30, 0x20, 0xe5, 0xf9, 0xff, 0xff, 0x2a, 0x01, 0x10, 0x81, 0xe2, +0x07, 0x00, 0x00, 0xea, 0x0c, 0x34, 0xa0, 0xe1, 0x04, 0xc0, 0x31, 0xe5, 0x04, 0x20, 0x52, 0xe2, +0x2c, 0x3c, 0x83, 0xe1, 0x04, 0x30, 0x20, 0xe5, 0xf9, 0xff, 0xff, 0x2a, 0x03, 0x10, 0x81, 0xe2, +0x00, 0x00, 0xa0, 0xe1, 0x82, 0x2f, 0xb0, 0xe1, 0x01, 0x30, 0x71, 0x25, 0x01, 0xc0, 0x71, 0x25, +0x01, 0x20, 0x51, 0x45, 0x01, 0x30, 0x60, 0x25, 0x01, 0xc0, 0x60, 0x25, 0x01, 0x20, 0x40, 0x45, +0x1e, 0xff, 0x2f, 0xe1, 0x03, 0x00, 0x0b, 0x43, 0x02, 0x00, 0x70, 0xb4, 0x9b, 0x07, 0x10, 0xd1, +0x0f, 0x4c, 0xe5, 0x01, 0x00, 0xe0, 0x08, 0xc2, 0x08, 0xc9, 0x1e, 0x1b, 0x9e, 0x43, 0x2e, 0x42, +0xf9, 0xd0, 0x19, 0x06, 0x09, 0x0e, 0x11, 0x70, 0x52, 0x1c, 0x00, 0x29, 0x0d, 0xd0, 0x1b, 0x0a, +0xf7, 0xe7, 0x0c, 0x78, 0x49, 0x1c, 0x53, 0x1c, 0x00, 0x2c, 0x14, 0x70, 0x05, 0xd0, 0x0c, 0x78, +0x49, 0x1c, 0x5a, 0x1c, 0x00, 0x2c, 0x1c, 0x70, 0xf3, 0xd1, 0x70, 0xbc, 0x70, 0x47, 0x00, 0x00, +0x01, 0x01, 0x01, 0x01, 0x01, 0x20, 0xa0, 0xe1, 0x92, 0x00, 0x81, 0xe0, 0x1e, 0xff, 0x2f, 0xe1, +0x00, 0x00, 0xa0, 0xe1, 0x44, 0x00, 0x00, 0xeb, 0x03, 0x00, 0x2d, 0xe9, 0xa4, 0x00, 0x00, 0xeb, +0x03, 0x00, 0xbd, 0xe8, 0x6c, 0x00, 0x00, 0xfa, 0x0f, 0x00, 0x2d, 0xe9, 0xa3, 0x00, 0x00, 0xeb, +0x0f, 0x00, 0xbd, 0xe8, 0x1c, 0xc0, 0x9f, 0xe5, 0x0f, 0xc0, 0x8c, 0xe0, 0x01, 0x00, 0x1c, 0xe3, +0x0d, 0xe0, 0x8f, 0x12, 0x0f, 0xe0, 0xa0, 0x01, 0x1c, 0xff, 0x2f, 0xe1, 0x01, 0xc0, 0x8f, 0xe2, +0x1c, 0xff, 0x2f, 0xe1, 0x00, 0xf0, 0x5e, 0xf8, 0x99, 0xed, 0xfd, 0xff, 0x01, 0x40, 0x2d, 0xe9, +0x00, 0x00, 0xa0, 0xe1, 0x8b, 0x00, 0x00, 0xfa, 0x01, 0x40, 0xbd, 0xe8, 0x00, 0x00, 0x00, 0xea, +0x00, 0x00, 0xe0, 0xe3, 0x20, 0x00, 0x00, 0xea, 0x1e, 0xff, 0x2f, 0xe1, 0x01, 0x30, 0x50, 0xe0, +0x03, 0x00, 0x52, 0x21, 0xd6, 0xed, 0x0b, 0x9a, 0x02, 0x00, 0x80, 0xe0, 0x03, 0x00, 0x10, 0xe3, +0x02, 0x10, 0x81, 0xe0, 0x01, 0x20, 0x42, 0x12, 0x01, 0x30, 0x71, 0x15, 0x01, 0x30, 0x60, 0x15, +0x03, 0x00, 0x10, 0xe3, 0xfa, 0xff, 0xff, 0x1a, 0x10, 0x20, 0x52, 0xe2, 0x05, 0x00, 0x00, 0x3a, +0x10, 0x40, 0x2d, 0xe9, 0x18, 0x50, 0x31, 0xe9, 0x10, 0x20, 0x52, 0xe2, 0x18, 0x50, 0x20, 0xe9, +0xfb, 0xff, 0xff, 0x2a, 0x10, 0x40, 0xbd, 0xe8, 0x82, 0x3e, 0xb0, 0xe1, 0x08, 0x10, 0x31, 0x29, +0x08, 0x10, 0x20, 0x29, 0x04, 0x30, 0x31, 0x45, 0x04, 0x30, 0x20, 0x45, 0x03, 0x00, 0x12, 0xe3, +0x1e, 0xff, 0x2f, 0x01, 0x82, 0x2f, 0xb0, 0xe1, 0xb2, 0x30, 0x71, 0x21, 0x01, 0x20, 0x51, 0x45, +0xb2, 0x30, 0x60, 0x21, 0x01, 0x20, 0x40, 0x45, 0x1e, 0xff, 0x2f, 0xe1, 0x0c, 0x10, 0x9f, 0xe5, +0x18, 0x00, 0xa0, 0xe3, 0x56, 0x34, 0x12, 0xef, 0x1e, 0xff, 0x2f, 0xe1, 0x6c, 0xff, 0xff, 0xff, +0x26, 0x00, 0x02, 0x00, 0x10, 0xb5, 0xc0, 0x46, 0xc0, 0x46, 0x04, 0x00, 0xc0, 0x46, 0xc0, 0x46, +0x20, 0x00, 0xff, 0xf7, 0x9c, 0xef, 0x10, 0xbc, 0x08, 0xbc, 0x18, 0x47, 0x0e, 0x40, 0xa0, 0xe1, +0x66, 0x00, 0x00, 0xeb, 0x04, 0xe0, 0xa0, 0xe1, 0x01, 0x40, 0x2d, 0xe9, 0x7b, 0x00, 0x00, 0xeb, +0x00, 0x40, 0xa0, 0xe1, 0x01, 0x40, 0xbd, 0xe8, 0x13, 0x40, 0x2d, 0xe9, 0x01, 0x00, 0xa0, 0xe3, +0x12, 0x1d, 0xa0, 0xe3, 0x08, 0x10, 0x84, 0xe5, 0x00, 0x00, 0x84, 0xe5, 0x13, 0x40, 0xbd, 0xe8, +0x00, 0x10, 0xa0, 0xe1, 0x04, 0x00, 0x84, 0xe5, 0x0e, 0xf0, 0xa0, 0xe1, 0x10, 0x40, 0x2d, 0xe9, +0x03, 0x00, 0x2d, 0xe9, 0x6d, 0x00, 0x00, 0xeb, 0x00, 0x40, 0xa0, 0xe1, 0x03, 0x00, 0xbd, 0xe8, +0x04, 0x20, 0x94, 0xe5, 0x0d, 0x30, 0xa0, 0xe1, 0x00, 0xe0, 0x82, 0xe0, 0x03, 0x00, 0x5e, 0xe1, +0x00, 0x20, 0x81, 0xe5, 0x0b, 0x00, 0x00, 0x8a, 0x0e, 0x30, 0x93, 0xe0, 0x01, 0x1a, 0x8e, 0xe2, +0x63, 0x30, 0xa0, 0xe1, 0x07, 0x10, 0x81, 0xe2, 0x07, 0x30, 0xc3, 0xe3, 0x07, 0x10, 0xc1, 0xe3, +0x03, 0x00, 0x51, 0xe1, 0x03, 0x10, 0xa0, 0x81, 0x04, 0x10, 0x84, 0xe5, 0x10, 0x40, 0xbd, 0xe8, +0x02, 0x00, 0x41, 0xe0, 0x1e, 0xff, 0x2f, 0xe1, 0x00, 0x20, 0xa0, 0xe1, 0x00, 0x00, 0xa0, 0xe3, +0x00, 0x00, 0xa0, 0xe1, 0x10, 0x40, 0xbd, 0xe8, 0x1e, 0xff, 0x2f, 0xe1, 0xf0, 0xb5, 0x85, 0xb0, +0xc0, 0x46, 0xc0, 0x46, 0x05, 0x00, 0x0c, 0x00, 0x05, 0xf0, 0x90, 0xef, 0x00, 0x20, 0x01, 0x95, +0x02, 0x94, 0xc0, 0x46, 0xc0, 0x46, 0x03, 0x90, 0x01, 0xa8, 0xde, 0xf7, 0xb4, 0xed, 0x04, 0x00, +0x01, 0xa8, 0x0d, 0x00, 0x00, 0x93, 0x03, 0xc8, 0x16, 0x00, 0xc0, 0x46, 0xc0, 0x46, 0xc0, 0x46, +0xc0, 0x46, 0xfb, 0xf2, 0x2a, 0xfa, 0x00, 0x21, 0x08, 0x00, 0xc0, 0x46, 0xc0, 0x46, 0x07, 0x00, +0x00, 0xf0, 0x8e, 0xe8, 0x04, 0x90, 0x00, 0x21, 0x07, 0x60, 0x08, 0x00, 0xc0, 0x46, 0xc0, 0x46, +0x41, 0x1c, 0x04, 0x98, 0x41, 0x60, 0x00, 0x21, 0x08, 0x00, 0xc0, 0x46, 0xc0, 0x46, 0x01, 0x00, +0x04, 0x98, 0x81, 0x60, 0x00, 0x21, 0x08, 0x00, 0xc0, 0x46, 0xc0, 0x46, 0x01, 0x00, 0x04, 0x98, +0xc1, 0x60, 0x00, 0x21, 0x08, 0x00, 0xc0, 0x46, 0xc0, 0x46, 0x01, 0x00, 0x04, 0x98, 0x01, 0x61, +0xc0, 0x46, 0xc0, 0x46, 0xc0, 0x46, 0xc0, 0x46, 0xc0, 0x46, 0xc0, 0x46, 0xc0, 0x46, 0xc0, 0x46, +0xc0, 0x46, 0xc0, 0x46, 0xc0, 0x46, 0xc0, 0x46, 0xc0, 0x46, 0xc0, 0x46, 0xc0, 0x46, 0xc0, 0x46, +0xc0, 0x46, 0xc0, 0x46, 0x00, 0x9b, 0x05, 0xb0, 0x20, 0x00, 0x04, 0x9c, 0x29, 0x00, 0x32, 0x00, +0xa6, 0x46, 0xf0, 0xbc, 0x01, 0xb0, 0x70, 0x47, 0x10, 0xb5, 0xc0, 0x46, 0x9b, 0x75, 0x5b, 0x31, +0x01, 0x00, 0x00, 0x00, 0xe8, 0x15, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0xea, 0x61, 0x17, 0xaa, +0xc0, 0x46, 0x00, 0x20, 0xc0, 0x46, 0xc0, 0x46, 0xc0, 0x46, 0xc0, 0x46, 0xc0, 0x46, 0xc0, 0x46, +0x10, 0xbc, 0x08, 0xbc, 0x18, 0x47, 0x00, 0x00, 0x00, 0x00, 0xe0, 0xe3, 0x02, 0x10, 0xe0, 0xe3, +0x1e, 0xff, 0x2f, 0xe1, 0x10, 0x40, 0x2d, 0xe9, 0x00, 0x00, 0xa0, 0xe1, 0x10, 0x40, 0xbd, 0xe8, +0x1e, 0xff, 0x2f, 0xe1, 0x0e, 0x50, 0xa0, 0xe1, 0x27, 0x00, 0x00, 0xeb, 0x05, 0xe0, 0xa0, 0xe1, +0x00, 0x50, 0xa0, 0xe1, 0x07, 0x00, 0xc0, 0xe3, 0x0d, 0x10, 0xa0, 0xe1, 0x0a, 0x30, 0xa0, 0xe1, +0x00, 0xd0, 0xa0, 0xe1, 0x60, 0xd0, 0x8d, 0xe2, 0x20, 0x40, 0x2d, 0xe9, 0x15, 0x00, 0x00, 0xfb, +0x20, 0x40, 0xbd, 0xe8, 0x00, 0x60, 0xa0, 0xe3, 0x00, 0x70, 0xa0, 0xe3, 0x00, 0x80, 0xa0, 0xe3, +0x00, 0xb0, 0xa0, 0xe3, 0x07, 0x10, 0xc1, 0xe3, 0x05, 0xc0, 0xa0, 0xe1, 0xc0, 0x09, 0xac, 0xe8, +0xc0, 0x09, 0xac, 0xe8, 0xc0, 0x09, 0xac, 0xe8, 0xc0, 0x09, 0xac, 0xe8, 0x01, 0xd0, 0xa0, 0xe1, +0x1e, 0xff, 0x2f, 0xe1, 0x04, 0x00, 0x9f, 0xe5, 0x1e, 0xff, 0x2f, 0xe1, 0x1e, 0xff, 0x2f, 0xe1, +0x5c, 0x5f, 0x01, 0xc0, 0x04, 0x00, 0x9f, 0xe5, 0x1e, 0xff, 0x2f, 0xe1, 0x1e, 0xff, 0x2f, 0xe1, +0x6c, 0x5f, 0x01, 0xc0, 0x10, 0xb4, 0x10, 0xbc, 0x70, 0x47, 0x1f, 0xb5, 0x00, 0x21, 0x0a, 0x00, +0x0b, 0x00, 0x0c, 0x00, 0x68, 0x46, 0x1e, 0xc0, 0xab, 0x20, 0x80, 0x02, 0x00, 0x90, 0x05, 0xf0, +0x5e, 0xee, 0x01, 0x90, 0x68, 0x46, 0x0f, 0xc8, 0x04, 0xb0, 0x10, 0xbd, 0x00, 0x00, 0x9f, 0xe5, +0x1e, 0xff, 0x2f, 0xe1, 0x4c, 0x5f, 0x01, 0xc0, 0x04, 0x00, 0x9f, 0xe5, 0x1e, 0xff, 0x2f, 0xe1, +0x1e, 0xff, 0x2f, 0xe1, 0x50, 0x5f, 0x01, 0xc0, 0x25, 0x48, 0x10, 0xb5, 0x04, 0x68, 0x40, 0x68, +0x04, 0x2b, 0x01, 0xd1, 0x4c, 0x61, 0x02, 0xe0, 0x01, 0x2b, 0x02, 0xd1, 0x4c, 0x61, 0xfb, 0xf2, +0x87, 0xff, 0x00, 0x20, 0x10, 0xbd, 0x70, 0xb5, 0x0c, 0x00, 0x1d, 0x4e, 0x15, 0x00, 0x05, 0x2b, +0x01, 0xd0, 0x16, 0x2b, 0x0d, 0xd1, 0x20, 0x89, 0x00, 0x19, 0xc1, 0x78, 0x82, 0x78, 0x08, 0x02, +0x10, 0x43, 0x04, 0xd1, 0x20, 0x00, 0x00, 0xf0, 0x69, 0xf8, 0x02, 0x20, 0x70, 0xbd, 0x05, 0x2b, +0x01, 0xd0, 0x17, 0x2b, 0x04, 0xd1, 0x2a, 0x00, 0x21, 0x00, 0x30, 0x68, 0x05, 0x23, 0x0d, 0xe0, +0x03, 0x2b, 0x06, 0xd1, 0x20, 0x00, 0x00, 0xf0, 0x48, 0xfe, 0x2a, 0x00, 0x21, 0x00, 0x03, 0x23, +0x04, 0xe0, 0x02, 0x2b, 0x04, 0xd1, 0xb0, 0x68, 0x2a, 0x00, 0x21, 0x00, 0xfb, 0xf2, 0x58, 0xff, +0x00, 0x20, 0x70, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x00, 0xf0, 0x0c, 0xf8, 0x05, 0x00, 0x01, 0x20, +0x20, 0x73, 0x20, 0x00, 0xfb, 0xf2, 0xd4, 0xfe, 0x28, 0x00, 0x00, 0xf0, 0x07, 0xf8, 0x70, 0xbd, +0x18, 0xee, 0x00, 0xc0, 0x10, 0xb5, 0xe2, 0xf2, 0x06, 0xed, 0x10, 0xbd, 0x80, 0x28, 0x10, 0xb5, +0x02, 0xd1, 0xe2, 0xf2, 0x00, 0xed, 0x10, 0xbd, 0xe2, 0xf2, 0x06, 0xed, 0x10, 0xbd, 0x10, 0xb5, +0x04, 0x00, 0xe5, 0xf2, 0xb9, 0xff, 0x20, 0x60, 0x10, 0xbd, 0x12, 0x48, 0x70, 0xb5, 0x04, 0x68, +0x11, 0x4e, 0xa1, 0x07, 0x06, 0xd5, 0x00, 0x21, 0x01, 0x61, 0xb2, 0x6d, 0x01, 0x20, 0x90, 0x47, +0x02, 0x20, 0x84, 0x43, 0x20, 0x06, 0x00, 0x0f, 0x03, 0xd0, 0xe0, 0x20, 0x84, 0x43, 0x10, 0x20, +0x04, 0x43, 0x00, 0x25, 0x0a, 0xe0, 0xe0, 0x07, 0x06, 0xd0, 0xa8, 0x00, 0x32, 0x58, 0x00, 0x2a, +0x02, 0xd0, 0x21, 0x00, 0x28, 0x00, 0x90, 0x47, 0x64, 0x08, 0x6d, 0x1c, 0x00, 0x2c, 0xf2, 0xd1, +0x00, 0x20, 0x70, 0xbd, 0x00, 0x30, 0x00, 0x80, 0x50, 0x3d, 0x00, 0x04, 0x00, 0x28, 0x10, 0xb5, +0x07, 0xd0, 0x01, 0x69, 0x00, 0x29, 0x05, 0xd1, 0x41, 0x89, 0xc0, 0x88, 0x03, 0x22, 0xfc, 0xf2, +0x81, 0xfa, 0x10, 0xbd, 0xfb, 0xf2, 0x84, 0xfe, 0x10, 0xbd, 0xf3, 0xb5, 0x04, 0x00, 0x00, 0x20, +0x85, 0xb0, 0x06, 0x00, 0x04, 0x90, 0x03, 0x90, 0x02, 0x90, 0x01, 0x90, 0x20, 0x89, 0x01, 0x27, +0x05, 0x19, 0xa8, 0x78, 0x00, 0x07, 0x80, 0x0f, 0x02, 0x28, 0x00, 0xd0, 0x00, 0x27, 0xa0, 0x88, +0x00, 0x28, 0x7e, 0xd0, 0x02, 0xf0, 0x59, 0xfc, 0x00, 0x28, 0x27, 0xd0, 0xe7, 0xf7, 0x21, 0xfb, +0x00, 0x28, 0x23, 0xd1, 0xe7, 0xf7, 0x07, 0xfb, 0x00, 0x28, 0x1f, 0xd1, 0x00, 0x2f, 0x3d, 0xd0, +0x20, 0x89, 0x05, 0x19, 0xea, 0x78, 0xd0, 0x07, 0x01, 0xd1, 0xa8, 0x1d, 0x01, 0xe0, 0x28, 0x00, +0x12, 0x30, 0xff, 0x49, 0x8b, 0x7d, 0x00, 0x2b, 0x0d, 0xd0, 0x09, 0x8a, 0x09, 0x29, 0x0a, 0xd1, +0x00, 0x78, 0xc0, 0x07, 0x07, 0xd0, 0x90, 0x06, 0x02, 0xd5, 0xe9, 0xf7, 0xc0, 0xf8, 0x07, 0xe0, +0x01, 0x20, 0x04, 0x90, 0x04, 0xe0, 0xe9, 0xf7, 0xa3, 0xf8, 0x01, 0xe0, 0x00, 0x2f, 0x1d, 0xd0, +0xa8, 0x78, 0x01, 0x09, 0x02, 0xd0, 0x00, 0x09, 0x08, 0x28, 0x17, 0xd1, 0x22, 0x89, 0x20, 0x00, +0x2a, 0x30, 0x10, 0x18, 0x02, 0x88, 0xef, 0x4b, 0x61, 0x69, 0x9a, 0x42, 0x0e, 0xd1, 0xc0, 0x78, +0x03, 0x28, 0x0b, 0xd1, 0x00, 0x29, 0x09, 0xd0, 0x09, 0x20, 0x80, 0x01, 0x08, 0x18, 0xc0, 0x6b, +0x00, 0x28, 0x03, 0xd0, 0x80, 0x30, 0x01, 0x88, 0x49, 0x1c, 0x01, 0x80, 0x02, 0xf0, 0xd5, 0xf9, +0x00, 0x28, 0x68, 0xd0, 0x28, 0x00, 0xfc, 0xf2, 0x58, 0xf9, 0x00, 0x28, 0x5b, 0xd1, 0x00, 0x2f, +0x13, 0xd0, 0x01, 0x22, 0x20, 0x00, 0x69, 0x46, 0xe4, 0xf7, 0x7f, 0xf9, 0x00, 0x28, 0x0c, 0xd0, +0x68, 0x46, 0xe4, 0xf7, 0xef, 0xf9, 0x00, 0x28, 0x4d, 0xd0, 0x07, 0x20, 0x01, 0x90, 0x00, 0x21, +0x4f, 0x20, 0xe3, 0xf7, 0xb6, 0xfd, 0x03, 0x90, 0x07, 0xe0, 0x06, 0x99, 0x20, 0x00, 0x02, 0xaa, +0x01, 0xab, 0xe4, 0xf7, 0x2a, 0xf8, 0x00, 0x28, 0x3d, 0xd0, 0x02, 0xf0, 0xa3, 0xf9, 0x00, 0x28, +0x48, 0xd0, 0xd1, 0x4d, 0x01, 0x24, 0x2c, 0x61, 0xe9, 0xf7, 0x16, 0xf8, 0x02, 0xf0, 0xda, 0xfb, +0x00, 0xe0, 0x2e, 0xe0, 0x00, 0x28, 0x0b, 0xd1, 0xe9, 0xf7, 0x07, 0xfa, 0x00, 0x28, 0x07, 0xd1, +0xca, 0x48, 0x06, 0x60, 0xca, 0x48, 0x06, 0x80, 0x03, 0x20, 0xac, 0x70, 0xe8, 0xf7, 0xd3, 0xff, +0x6b, 0x46, 0x9a, 0x88, 0x03, 0x99, 0xff, 0x20, 0xe3, 0xf7, 0x05, 0xff, 0xc5, 0x4c, 0x20, 0x88, +0x00, 0x28, 0x04, 0xd0, 0xc4, 0x49, 0x04, 0x20, 0x08, 0x56, 0x40, 0x1c, 0x09, 0xd0, 0x02, 0x24, +0x01, 0x20, 0xdf, 0xf7, 0xa3, 0xfb, 0x64, 0x1e, 0x07, 0xd0, 0x28, 0x7a, 0x00, 0x28, 0xf7, 0xd1, +0x03, 0xe0, 0xe3, 0xf7, 0xcb, 0xfe, 0x26, 0x80, 0x2e, 0x72, 0x1d, 0x20, 0xe8, 0xf7, 0xb3, 0xff, +0xee, 0x60, 0x07, 0xb0, 0xf0, 0xbd, 0x20, 0x20, 0x6b, 0x46, 0x20, 0x73, 0x18, 0x7a, 0x00, 0x28, +0x08, 0xd1, 0xa6, 0x80, 0x06, 0xe0, 0x00, 0x2f, 0x04, 0xd0, 0x02, 0x22, 0x20, 0x00, 0x69, 0x46, +0xe4, 0xf7, 0x1b, 0xf9, 0x04, 0x98, 0x00, 0x28, 0xeb, 0xd0, 0x1b, 0x20, 0xe8, 0xf7, 0x9b, 0xff, +0xe7, 0xe7, 0x7c, 0xb5, 0x0c, 0x00, 0x15, 0x00, 0x49, 0x79, 0x23, 0x79, 0x09, 0x06, 0x09, 0x14, +0x19, 0x43, 0x0b, 0x19, 0x81, 0x88, 0x42, 0x69, 0x24, 0x33, 0x60, 0x29, 0x27, 0xbe, 0x11, 0x9e, +0x01, 0x00, 0x00, 0x00, 0xe4, 0x19, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x1e, 0x0e, 0x62, 0x1e, +0x14, 0xd9, 0x60, 0x39, 0x20, 0x32, 0x81, 0x80, 0x51, 0x7e, 0xc9, 0x06, 0xca, 0x0f, 0x00, 0x92, +0x2a, 0x00, 0x01, 0xa9, 0xee, 0xf2, 0x8f, 0xfe, 0xa0, 0x71, 0x00, 0x0a, 0xe0, 0x71, 0x01, 0x98, +0x00, 0x1b, 0x20, 0x71, 0x00, 0x0a, 0x60, 0x71, 0x01, 0x20, 0x7c, 0xbd, 0x00, 0x20, 0x7c, 0xbd, +0xff, 0xb5, 0x83, 0xb0, 0x0c, 0x00, 0x1e, 0x00, 0x07, 0x00, 0x01, 0x20, 0x88, 0x71, 0x00, 0x21, +0xe1, 0x71, 0x99, 0x78, 0x0a, 0x07, 0x92, 0x0f, 0x02, 0x2a, 0x03, 0xd1, 0x09, 0x09, 0x09, 0x07, +0x00, 0xd5, 0x02, 0x20, 0xe0, 0x73, 0xb0, 0x78, 0x01, 0x07, 0x89, 0x0f, 0x01, 0x29, 0x47, 0xd1, +0x00, 0x09, 0x0c, 0x28, 0x01, 0xd0, 0x0d, 0x28, 0x40, 0xd1, 0x16, 0x20, 0x01, 0x90, 0x61, 0x79, +0x20, 0x79, 0x09, 0x06, 0x09, 0x14, 0x01, 0x43, 0x20, 0x00, 0x24, 0x30, 0x09, 0x18, 0x01, 0x98, +0x20, 0x22, 0x15, 0x1a, 0xf0, 0x78, 0x82, 0x07, 0x02, 0xd5, 0xc0, 0x07, 0x00, 0xd0, 0xad, 0x1d, +0xe0, 0x7b, 0x02, 0x28, 0x00, 0xd1, 0xad, 0x1c, 0x48, 0x1b, 0x2a, 0x00, 0xb1, 0x1c, 0x02, 0x90, +0xfa, 0xf2, 0xea, 0xef, 0xe0, 0x7b, 0x02, 0x28, 0x0b, 0xd1, 0x02, 0x98, 0x05, 0x99, 0x40, 0x19, +0x20, 0x31, 0x0a, 0x7e, 0x20, 0x38, 0x82, 0x77, 0x49, 0x7e, 0xc1, 0x77, 0xb8, 0x88, 0x80, 0x1c, +0xb8, 0x80, 0xb9, 0x88, 0x01, 0x98, 0x08, 0x1a, 0x40, 0x38, 0x00, 0x04, 0x00, 0x0c, 0xb8, 0x80, +0xf1, 0x78, 0x8a, 0x07, 0x03, 0xd5, 0xc9, 0x07, 0x01, 0xd0, 0x80, 0x1d, 0xb8, 0x80, 0x02, 0x98, +0x00, 0x1b, 0x20, 0x71, 0x00, 0x0a, 0x60, 0x71, 0x01, 0x20, 0x64, 0xe7, 0x10, 0x20, 0xbd, 0xe7, +0x08, 0x20, 0xbb, 0xe7, 0x1a, 0x00, 0x76, 0xe7, 0x82, 0x88, 0x60, 0x2a, 0x10, 0xd9, 0x60, 0x3a, +0x82, 0x80, 0x48, 0x79, 0x0a, 0x79, 0x00, 0x06, 0x00, 0x14, 0x10, 0x43, 0x24, 0x30, 0x08, 0x71, +0x00, 0x0a, 0x48, 0x71, 0xe6, 0x20, 0x88, 0x71, 0x00, 0x20, 0xc8, 0x71, 0x01, 0x20, 0x70, 0x47, +0x00, 0x20, 0x70, 0x47, 0x1f, 0xb5, 0x01, 0xaa, 0x04, 0x00, 0x00, 0x92, 0x02, 0xaa, 0x03, 0xab, +0xe9, 0xf7, 0xa3, 0xfc, 0x01, 0x98, 0x02, 0x04, 0x02, 0x98, 0x12, 0x14, 0x01, 0x04, 0x09, 0x14, +0x20, 0x00, 0xe9, 0xf7, 0xff, 0xfd, 0x20, 0x00, 0x03, 0x99, 0xa0, 0x30, 0x41, 0x81, 0x01, 0x99, +0x81, 0x81, 0x02, 0x99, 0xc1, 0x81, 0x20, 0x00, 0x05, 0xf0, 0x1e, 0xec, 0x1f, 0xbd, 0xff, 0xb5, +0x81, 0xb0, 0x00, 0x20, 0x1c, 0x00, 0x01, 0x26, 0x0a, 0x9d, 0x0b, 0x9f, 0x28, 0x60, 0x38, 0x60, +0x8a, 0x7c, 0xd2, 0x07, 0x00, 0x2a, 0x07, 0xd0, 0xe1, 0x07, 0x2e, 0x60, 0x02, 0xd0, 0xa1, 0x07, +0x1e, 0xe0, 0x3e, 0x60, 0x05, 0xb0, 0xf0, 0xbd, 0x08, 0x00, 0x12, 0x30, 0x02, 0xf0, 0xf9, 0xff, +0x00, 0x28, 0x1d, 0xd0, 0x41, 0x7a, 0x02, 0x29, 0x1a, 0xd1, 0xc1, 0x68, 0xc9, 0x04, 0x17, 0xd5, +0x01, 0x99, 0xc2, 0x7a, 0xc9, 0x7a, 0x91, 0x42, 0x0d, 0xd1, 0x03, 0x99, 0x0a, 0x29, 0x0f, 0xd3, +0x61, 0x07, 0x02, 0xd4, 0xe1, 0x07, 0xe4, 0xd1, 0x0a, 0xe0, 0xe1, 0x07, 0xe2, 0xd0, 0x61, 0x07, +0x00, 0x29, 0xde, 0xda, 0xde, 0xe7, 0x21, 0x07, 0x02, 0xd5, 0x03, 0x99, 0x0a, 0x29, 0xd9, 0xd2, +0x2e, 0x60, 0xd7, 0xe7, 0xf3, 0xb5, 0x95, 0xb0, 0x05, 0x00, 0x0a, 0x20, 0x0a, 0x90, 0x00, 0x20, +0x09, 0x90, 0x01, 0x20, 0x08, 0x90, 0x00, 0x20, 0x07, 0x90, 0x06, 0x90, 0x05, 0x90, 0x16, 0x98, +0x00, 0x28, 0x02, 0xd1, 0x00, 0x20, 0x17, 0xb0, 0xf0, 0xbd, 0x28, 0x89, 0x6e, 0x69, 0x41, 0x19, +0x20, 0x22, 0x0c, 0xa8, 0xfa, 0xf2, 0x38, 0xef, 0x16, 0x9f, 0x0c, 0xa8, 0x20, 0x37, 0x0b, 0x90, +0x38, 0x7d, 0xc0, 0x06, 0x80, 0x0f, 0x01, 0x28, 0x07, 0xd9, 0x16, 0x98, 0x18, 0x30, 0xfb, 0xf2, +0x6e, 0xe8, 0x00, 0x07, 0x01, 0xd5, 0x01, 0x24, 0x00, 0xe0, 0x00, 0x24, 0x08, 0xab, 0x99, 0x7c, +0x00, 0x20, 0x0a, 0x07, 0x92, 0x0f, 0x02, 0x2a, 0x03, 0xd1, 0x09, 0x09, 0x09, 0x07, 0x00, 0xd5, +0x01, 0x20, 0x20, 0x43, 0x19, 0xd0, 0xff, 0xf7, 0xa7, 0xfd, 0x02, 0x90, 0x38, 0x7e, 0x14, 0x4a, +0x41, 0x07, 0x0b, 0x98, 0x49, 0x0f, 0x0c, 0x30, 0xfb, 0xf2, 0x76, 0xfe, 0x0a, 0x28, 0x0a, 0x90, +0x08, 0xd2, 0x00, 0x2c, 0x06, 0xd0, 0x0a, 0x98, 0x01, 0x01, 0x0d, 0x48, 0x08, 0x18, 0xc1, 0x68, +0x49, 0x1c, 0xc1, 0x60, 0x02, 0x98, 0xff, 0xf7, 0x93, 0xfd, 0x20, 0x21, 0x28, 0x89, 0x6c, 0x18, +0x29, 0x81, 0x0f, 0xe0, 0x78, 0x33, 0x01, 0xc0, 0x88, 0x8e, 0x00, 0x00, 0xc4, 0x33, 0x01, 0xc0, +0xac, 0xf0, 0x00, 0xc0, 0x48, 0xf0, 0x00, 0xc0, 0x38, 0xf0, 0x00, 0xc0, 0xcc, 0xee, 0x00, 0xc0, +0xac, 0x7b, 0x02, 0x00, 0x20, 0x38, 0x20, 0x71, 0x00, 0x0a, 0x10, 0xab, 0x60, 0x71, 0x18, 0x89, +0x00, 0x09, 0x20, 0x72, 0x00, 0x0a, 0x60, 0x72, 0xb0, 0x7a, 0x20, 0x70, 0xf0, 0x7a, 0x60, 0x70, +0x30, 0x7a, 0x06, 0x28, 0xa0, 0x7c, 0x09, 0xd1, 0x01, 0x21, 0x08, 0x43, 0xa0, 0x74, 0x03, 0x20, +0x00, 0x02, 0x30, 0x18, 0x01, 0x6a, 0x49, 0x1c, 0x01, 0x62, 0x02, 0xe0, 0x40, 0x08, 0x40, 0x00, +0xa0, 0x74, 0xa8, 0x88, 0x00, 0x28, 0x02, 0xd1, 0x28, 0x7b, 0x20, 0x28, 0x3d, 0xd1, 0x08, 0xab, +0xd8, 0x7c, 0x80, 0x06, 0x01, 0xd5, 0x01, 0x20, 0x05, 0x90, 0x08, 0xab, 0x98, 0x7c, 0x01, 0x07, +0x89, 0x0f, 0x02, 0x29, 0x31, 0xd1, 0x39, 0x7e, 0xc9, 0x06, 0x20, 0xd5, 0x00, 0x09, 0x00, 0x07, +0x1d, 0xd5, 0xff, 0x48, 0x00, 0x78, 0x00, 0x28, 0x19, 0xd0, 0xe7, 0xf7, 0xe4, 0xfe, 0x00, 0x28, +0x15, 0xd0, 0xfc, 0x48, 0x00, 0x68, 0x00, 0x28, 0x11, 0xd0, 0xfb, 0x48, 0x00, 0x68, 0x00, 0x28, +0x0d, 0xd0, 0xe7, 0xf7, 0x6a, 0xff, 0x00, 0x28, 0x09, 0xd0, 0xe3, 0xf7, 0x20, 0xfa, 0x01, 0x28, +0x05, 0xd0, 0xf6, 0x48, 0x00, 0x68, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x06, 0x90, 0x02, 0xf0, +0xe6, 0xf9, 0x00, 0x28, 0x09, 0xd0, 0x0b, 0x98, 0xfb, 0xf2, 0x29, 0xff, 0x00, 0x28, 0x04, 0xd1, +0x02, 0x20, 0x02, 0xf0, 0xe5, 0xfe, 0xe5, 0xf7, 0x61, 0xfe, 0x16, 0x99, 0x30, 0x00, 0xff, 0xf7, +0xd9, 0xfe, 0x31, 0x00, 0xa0, 0x31, 0x0e, 0x20, 0x14, 0x91, 0x08, 0x5e, 0x01, 0xf0, 0xe3, 0xfe, +0x20, 0x73, 0x14, 0x99, 0x0a, 0x20, 0x08, 0x5e, 0x01, 0xf0, 0xd0, 0xfe, 0x08, 0xab, 0x60, 0x73, +0x98, 0x7c, 0x00, 0x09, 0x00, 0x07, 0x03, 0xd5, 0x38, 0x7e, 0x40, 0x07, 0x40, 0x0f, 0x00, 0xe0, +0xff, 0x20, 0xa0, 0x72, 0xa0, 0x7a, 0x04, 0x90, 0xa8, 0x88, 0x00, 0x28, 0x04, 0xd0, 0x0b, 0x98, +0xfb, 0xf2, 0xfd, 0xfe, 0x00, 0x28, 0x39, 0xd0, 0x00, 0x27, 0xa7, 0x70, 0xe7, 0x70, 0xa8, 0x88, +0x00, 0x28, 0x02, 0xd1, 0x28, 0x7b, 0x20, 0x28, 0x2c, 0xd1, 0x04, 0x98, 0xe7, 0xf7, 0xc9, 0xfe, +0x00, 0x28, 0x0a, 0xd0, 0x05, 0x98, 0x00, 0x28, 0x05, 0xd0, 0x00, 0x22, 0x11, 0x00, 0x30, 0x00, +0xdf, 0xf7, 0x54, 0xfd, 0x01, 0xe0, 0xce, 0x48, 0x07, 0x70, 0x08, 0xab, 0x98, 0x7c, 0x05, 0x99, +0x02, 0x09, 0x30, 0x00, 0xe7, 0xf7, 0xd0, 0xff, 0x06, 0x98, 0x01, 0x28, 0xed, 0x0f, 0xbf, 0x8b, +0x01, 0x00, 0x00, 0x00, 0xe0, 0x1d, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x4d, 0xd4, 0xb1, 0x72, +0x12, 0xd1, 0xc9, 0x48, 0x00, 0x88, 0x00, 0x28, 0x0b, 0xd0, 0xc8, 0x48, 0x00, 0x22, 0x00, 0x68, +0x46, 0x21, 0xe9, 0xf2, 0x18, 0xfb, 0x00, 0x28, 0x03, 0xd0, 0xc5, 0x49, 0x01, 0x20, 0x08, 0x70, +0x02, 0xe0, 0x16, 0x20, 0xe8, 0xf7, 0x7b, 0xfd, 0x28, 0x00, 0xff, 0xf7, 0xf3, 0xfc, 0xe3, 0xe6, +0x38, 0x7e, 0xc0, 0x09, 0x05, 0xd0, 0x16, 0x9a, 0x21, 0x00, 0x28, 0x00, 0xff, 0xf7, 0x5e, 0xfe, +0x05, 0xe0, 0x0b, 0x9b, 0x16, 0x9a, 0x21, 0x00, 0x28, 0x00, 0xff, 0xf7, 0x55, 0xfe, 0x00, 0x28, +0x7e, 0xd0, 0xa8, 0x88, 0xa0, 0x70, 0x00, 0x0a, 0x22, 0x00, 0x0b, 0x32, 0xe0, 0x70, 0x16, 0x98, +0xd1, 0x1c, 0xfb, 0xf2, 0xb4, 0xfe, 0x70, 0x7a, 0x02, 0x28, 0x10, 0xd1, 0x30, 0x00, 0x02, 0xf0, +0x11, 0xfe, 0x08, 0xa9, 0x00, 0x91, 0x11, 0x21, 0x49, 0x01, 0x09, 0xaa, 0x07, 0x90, 0x40, 0x18, +0x01, 0x92, 0x03, 0x78, 0x0a, 0x9a, 0x30, 0x00, 0x0c, 0xa9, 0xff, 0xf7, 0x6a, 0xfe, 0x09, 0x98, +0x00, 0x28, 0x46, 0xd0, 0xa7, 0x48, 0x00, 0x22, 0x01, 0x88, 0xa7, 0x48, 0x03, 0x23, 0x02, 0xf0, +0xd8, 0xf9, 0x00, 0x28, 0x02, 0x90, 0x3c, 0xd0, 0x02, 0x99, 0xa8, 0x88, 0x88, 0x80, 0x02, 0x99, +0xac, 0x20, 0x08, 0x81, 0x02, 0x98, 0x08, 0x21, 0x01, 0x73, 0x02, 0x9f, 0x12, 0x21, 0xac, 0x37, +0x38, 0x00, 0xfa, 0xf2, 0xa2, 0xee, 0x14, 0x20, 0x38, 0x71, 0x00, 0x20, 0x78, 0x71, 0xe0, 0x79, +0xa1, 0x79, 0x00, 0x02, 0x08, 0x43, 0xb8, 0x71, 0x00, 0x0a, 0xf8, 0x71, 0x07, 0x98, 0x40, 0x6a, +0x01, 0x28, 0x04, 0xd1, 0xf0, 0x68, 0x00, 0x05, 0x01, 0xd5, 0xa0, 0x7a, 0x38, 0x73, 0x60, 0x79, +0x21, 0x79, 0x00, 0x06, 0x00, 0x14, 0x08, 0x43, 0x01, 0x19, 0x38, 0x00, 0xaa, 0x88, 0x14, 0x30, +0xfa, 0xf2, 0xbc, 0xed, 0x02, 0x99, 0x30, 0x69, 0x48, 0x61, 0xf0, 0x7a, 0x78, 0x70, 0xb0, 0x7a, +0x38, 0x70, 0xa8, 0x88, 0xb8, 0x70, 0x00, 0x0a, 0xf8, 0x70, 0x02, 0x98, 0x04, 0x21, 0x00, 0xf0, +0x5d, 0xfa, 0x28, 0x7b, 0x20, 0x28, 0x36, 0xd0, 0xff, 0xf7, 0x38, 0xfc, 0x84, 0x4f, 0x03, 0x90, +0x82, 0x48, 0x3c, 0x68, 0x00, 0x22, 0x29, 0x00, 0x00, 0x68, 0x16, 0x23, 0xa0, 0x47, 0x04, 0x00, +0x03, 0x98, 0xff, 0xf7, 0x2f, 0xfc, 0x02, 0x2c, 0x17, 0xd0, 0x01, 0x2c, 0x15, 0xd0, 0x00, 0xe0, +0x21, 0xe0, 0x02, 0xf0, 0xe6, 0xf8, 0x00, 0x28, 0x02, 0xd0, 0x05, 0x20, 0xe8, 0xf7, 0xdf, 0xfc, +0xff, 0xf7, 0x1c, 0xfc, 0x03, 0x90, 0x75, 0x48, 0x3c, 0x68, 0x00, 0x22, 0x29, 0x00, 0x00, 0x68, +0x17, 0x23, 0xa0, 0x47, 0x03, 0x98, 0xff, 0xf7, 0x15, 0xfc, 0x04, 0x98, 0xe7, 0xf7, 0xf3, 0xfd, +0x00, 0x28, 0x11, 0xd0, 0x05, 0x98, 0x01, 0x28, 0x09, 0xd1, 0x00, 0x22, 0x11, 0x00, 0x30, 0x00, +0xdf, 0xf7, 0x7e, 0xfc, 0x08, 0xe0, 0x00, 0x20, 0xa0, 0x70, 0xe0, 0x70, 0x44, 0xe7, 0x05, 0x98, +0x00, 0x28, 0x01, 0xd1, 0x5f, 0x49, 0x08, 0x70, 0x08, 0xab, 0x98, 0x7c, 0x05, 0x99, 0x02, 0x09, +0x30, 0x00, 0xe7, 0xf7, 0xf3, 0xfe, 0x06, 0x98, 0x01, 0x28, 0x12, 0xd1, 0x5a, 0x48, 0x00, 0x88, +0x00, 0x28, 0x0b, 0xd0, 0x59, 0x48, 0x00, 0x22, 0x00, 0x68, 0x46, 0x21, 0xe9, 0xf2, 0x3b, 0xfa, +0x00, 0x28, 0x03, 0xd0, 0x56, 0x49, 0x01, 0x20, 0x08, 0x70, 0x02, 0xe0, 0x16, 0x20, 0xe8, 0xf7, +0x9e, 0xfc, 0x01, 0x20, 0x09, 0xe6, 0xf0, 0xb5, 0x00, 0x20, 0x97, 0xb0, 0x04, 0x00, 0x04, 0x90, +0x01, 0x90, 0xc4, 0xe1, 0x00, 0x20, 0x10, 0xab, 0x03, 0x90, 0x19, 0x7b, 0xc9, 0x06, 0x89, 0x0f, +0x01, 0x29, 0x02, 0xd9, 0x0c, 0x98, 0x00, 0x07, 0xc0, 0x0f, 0x02, 0x90, 0xeb, 0xf7, 0x3b, 0xf9, +0x00, 0x28, 0x08, 0xd0, 0xeb, 0xf7, 0x13, 0xfb, 0x01, 0x00, 0x05, 0x98, 0x41, 0x61, 0x06, 0xa9, +0xde, 0xf7, 0x20, 0xfd, 0xab, 0xe1, 0x05, 0x98, 0x01, 0x89, 0x08, 0x18, 0x06, 0xa9, 0x01, 0xf0, +0xea, 0xfc, 0x16, 0x98, 0x00, 0x28, 0x05, 0xd1, 0x05, 0x98, 0x00, 0x21, 0x81, 0x80, 0xff, 0xf7, +0xe9, 0xfb, 0x9c, 0xe1, 0x16, 0x98, 0x0c, 0x30, 0x02, 0xf0, 0x9d, 0xfd, 0x04, 0x00, 0x05, 0xd1, +0x16, 0x99, 0x01, 0x20, 0x12, 0x31, 0x02, 0xf0, 0xb9, 0xfd, 0x04, 0x00, 0x16, 0x99, 0x20, 0x00, +0x01, 0xf0, 0x2e, 0xfe, 0x00, 0x28, 0x01, 0xd0, 0x00, 0x24, 0xe5, 0xe7, 0x00, 0x2c, 0xe3, 0xd0, +0x05, 0x99, 0x4c, 0x61, 0x60, 0x7a, 0x02, 0x28, 0x0c, 0xd1, 0x20, 0x00, 0x02, 0xf0, 0x31, 0xfd, +0x0c, 0x30, 0x01, 0x90, 0xe0, 0x68, 0x16, 0x9a, 0xc0, 0x04, 0x05, 0x99, 0xc0, 0x0f, 0xfb, 0xf2, +0x13, 0xfd, 0x17, 0xe0, 0x20, 0x7a, 0x01, 0x28, 0x01, 0xd0, 0x06, 0x28, 0x0c, 0xd1, 0x23, 0x00, +0x16, 0x9a, 0x7e, 0x33, 0x01, 0x20, 0xfb, 0xf2, 0x11, 0xfd, 0x20, 0x7a, 0x01, 0x28, 0x09, 0xd1, +0x20, 0x00, 0x02, 0xf0, 0x46, 0xfd, 0x05, 0xe0, 0x23, 0x00, 0x16, 0x9a, 0x7e, 0x33, 0x01, 0x20, +0xfb, 0xf2, 0x27, 0xfd, 0x05, 0x98, 0x01, 0x89, 0x0d, 0x18, 0xe9, 0x78, 0xc9, 0x07, 0x01, 0xd1, +0xae, 0x1d, 0x01, 0xe0, 0x2e, 0x00, 0x12, 0x36, 0x09, 0x21, 0x89, 0x01, 0x67, 0x18, 0xf9, 0x6b, +0x00, 0x29, 0x02, 0xd0, 0x0a, 0x6b, 0x52, 0x1c, 0x0a, 0x63, 0x31, 0x78, 0xc9, 0x07, 0x05, 0xd0, +0xf9, 0x6b, 0x00, 0x29, 0x02, 0xd0, 0x4a, 0x6b, 0x52, 0x1c, 0x4a, 0x63, 0x02, 0x99, 0x00, 0x29, +0x7f, 0xd1, 0x81, 0x88, 0x00, 0x29, 0x71, 0xd0, 0xa9, 0x78, 0x0a, 0x07, 0x92, 0x0f, 0x02, 0x2a, +0x4a, 0xd1, 0x17, 0xe0, 0x75, 0xef, 0x00, 0xc0, 0x84, 0xef, 0x00, 0xc0, 0x80, 0xef, 0x00, 0xc0, +0xd0, 0xef, 0x00, 0xc0, 0x74, 0xef, 0x00, 0xc0, 0x04, 0x36, 0x01, 0xc0, 0x18, 0xee, 0x00, 0xc0, +0x70, 0xef, 0x00, 0xc0, 0x56, 0xf0, 0x00, 0xc0, 0x30, 0x00, 0x00, 0x04, 0x1c, 0xee, 0x00, 0xc0, +0x58, 0xee, 0x00, 0xc0, 0x09, 0x09, 0x0c, 0x29, 0x2e, 0xd0, 0x04, 0x29, 0x2c, 0xd0, 0x08, 0x29, +0x04, 0xd1, 0x10, 0xab, 0x19, 0x7c, 0x49, 0x07, 0x49, 0x0f, 0x00, 0xe0, 0x00, 0x21, 0x22, 0x00, +0xff, 0x32, 0x41, 0x32, 0x93, 0x79, 0x8b, 0x42, 0x03, 0xd0, 0x00, 0x23, 0xdb, 0x43, 0x53, 0x80, +0x91, 0x71, 0x23, 0x00, 0x10, 0x22, 0xff, 0x33, 0x45, 0x33, 0x00, 0x92, 0x16, 0x99, 0x9a, 0x1e, +0xfb, 0xf2, 0xdc, 0xfc, 0x05, 0x98, 0x80, 0x88, 0x00, 0x28, 0x0d, 0xd1, 0x20, 0x00, 0x06, 0xa9, +0xff, 0xf7, 0xca, 0xfc, 0x05, 0x98, 0xff, 0xf7, 0x3d, 0xfb, 0xf8, 0x6b, 0x00, 0x28, 0x02, 0xd0, +0x01, 0x6a, 0x49, 0x1c, 0x01, 0x62, 0xea, 0xe0, 0xe0, 0x68, 0xc0, 0x03, 0x1f, 0xd5, 0xe8, 0x78, +0xc1, 0x07, 0x12, 0xd1, 0x80, 0x07, 0x10, 0xd5, 0xb1, 0x20, 0x80, 0x00, 0x21, 0x18, 0x28, 0x00, +0x06, 0x22, 0x12, 0x30, 0xff, 0xf7, 0x0e, 0xf8, 0x00, 0x28, 0x06, 0xd1, 0x05, 0x99, 0x88, 0x80, +0x30, 0x78, 0xc2, 0x07, 0xd2, 0x0f, 0x01, 0x21, 0x04, 0xe0, 0x30, 0x78, 0xc0, 0x07, 0x10, 0xd1, +0x00, 0x22, 0x11, 0x00, 0x20, 0x00, 0xe0, 0xf7, 0x47, 0xfc, 0x0a, 0xe0, 0x33, 0xe0, 0x30, 0x78, +0xc0, 0x07, 0x0a, 0xd0, 0xb1, 0x20, 0x80, 0x00, 0x22, 0x18, 0x05, 0x98, 0x4e, 0xe0, 0x20, 0x45, +0x01, 0x00, 0x00, 0x00, 0xdc, 0x21, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x65, 0x45, 0x34, 0xcf, +0x29, 0x00, 0xee, 0xf2, 0x8b, 0xfa, 0x05, 0x98, 0x80, 0x88, 0x00, 0x28, 0x25, 0xd0, 0x60, 0x7a, +0x02, 0x28, 0x27, 0xd1, 0x20, 0x00, 0x06, 0xa9, 0x01, 0xf0, 0x3b, 0xff, 0x16, 0x99, 0x01, 0x98, +0xc9, 0x78, 0x00, 0x7d, 0xc9, 0x06, 0xc9, 0x0f, 0x88, 0x42, 0x02, 0xd0, 0x20, 0x00, 0xe4, 0xf7, +0xb7, 0xff, 0x20, 0x00, 0x01, 0xf0, 0xf7, 0xfd, 0x20, 0x00, 0x05, 0xf0, 0xb6, 0xe8, 0x01, 0x28, +0x03, 0xd1, 0x16, 0x99, 0x20, 0x00, 0x05, 0xf0, 0xb4, 0xe8, 0x01, 0x98, 0x40, 0x30, 0x00, 0x7d, +0x03, 0x28, 0x03, 0xd0, 0x05, 0x99, 0x00, 0x20, 0x88, 0x80, 0x71, 0xe0, 0x05, 0x98, 0x80, 0x88, +0x00, 0x28, 0x6d, 0xd0, 0x20, 0x00, 0xe1, 0xf7, 0xbb, 0xfa, 0x16, 0x98, 0xfb, 0xf2, 0x81, 0xfc, +0x00, 0x28, 0x1e, 0xd0, 0x05, 0x98, 0x81, 0x88, 0x40, 0x39, 0x81, 0x80, 0x16, 0x99, 0x09, 0x7e, +0x09, 0x07, 0x07, 0xd1, 0x16, 0x99, 0xc9, 0x78, 0x49, 0x07, 0x03, 0xd4, 0x16, 0x99, 0x09, 0x88, +0x81, 0x80, 0x55, 0xe0, 0x4c, 0x4a, 0x00, 0x92, 0x01, 0x89, 0x4c, 0x4a, 0x4c, 0x4b, 0x09, 0x18, +0xfb, 0xf2, 0x78, 0xfa, 0x00, 0x28, 0x6c, 0xd0, 0x05, 0x90, 0x01, 0x89, 0x08, 0x18, 0x16, 0x90, +0x46, 0xe0, 0x16, 0x98, 0x80, 0x79, 0xc0, 0x07, 0x01, 0xd0, 0x78, 0x6a, 0x00, 0xe0, 0xb8, 0x6a, +0x00, 0x28, 0x01, 0xd1, 0x04, 0x98, 0x01, 0xe0, 0x08, 0x30, 0x04, 0x90, 0x00, 0x28, 0x4d, 0xd0, +0x04, 0x98, 0xc1, 0x79, 0x08, 0x07, 0x00, 0x0f, 0x02, 0x28, 0x01, 0xd0, 0x03, 0x28, 0x0f, 0xd1, +0xff, 0x22, 0x45, 0x32, 0x12, 0x5b, 0x16, 0x99, 0x01, 0x20, 0x00, 0x2a, 0x00, 0xd0, 0x00, 0x20, +0xfb, 0xf2, 0x4e, 0xfc, 0x04, 0x9a, 0x05, 0x98, 0x06, 0xa9, 0x00, 0xf0, 0x36, 0xf9, 0x17, 0xe0, +0x01, 0x28, 0x01, 0xd0, 0x08, 0x07, 0x2b, 0xd1, 0x00, 0x20, 0x00, 0xf0, 0x9f, 0xf8, 0x00, 0x28, +0xfa, 0xd1, 0x04, 0x9a, 0x06, 0xa9, 0x05, 0xa8, 0xde, 0xf7, 0x5c, 0xfb, 0x00, 0x28, 0x04, 0xd1, +0x05, 0x98, 0x00, 0x28, 0x2d, 0xd0, 0x00, 0x21, 0x81, 0x80, 0x03, 0x98, 0x00, 0x28, 0x07, 0xd0, +0x04, 0x98, 0xc0, 0x79, 0x00, 0x07, 0x00, 0x0f, 0x02, 0x28, 0x09, 0xd0, 0x03, 0x28, 0x07, 0xd0, +0x05, 0x98, 0x06, 0xa9, 0xff, 0xf7, 0x77, 0xfa, 0x05, 0x98, 0x06, 0xa9, 0xff, 0xf7, 0x46, 0xfc, +0xdf, 0xf7, 0x78, 0xf8, 0x00, 0x28, 0x14, 0xd0, 0x01, 0x20, 0xdf, 0xf7, 0x79, 0xf8, 0x19, 0xe0, +0x1c, 0x48, 0xdd, 0xf7, 0xe3, 0xfe, 0x04, 0xf0, 0xd0, 0xee, 0xe9, 0xe7, 0xf8, 0x6b, 0x81, 0x68, +0x49, 0x1c, 0x81, 0x60, 0x16, 0x98, 0xbf, 0x21, 0xc0, 0x78, 0x08, 0x40, 0x16, 0x99, 0xc8, 0x70, +0x68, 0xe7, 0x01, 0x21, 0x00, 0x20, 0x06, 0xaa, 0x01, 0xf0, 0x61, 0xfb, 0x00, 0x28, 0x05, 0x90, +0x00, 0xd0, 0x31, 0xe6, 0x10, 0x49, 0x80, 0x20, 0xc0, 0x43, 0x08, 0x61, 0xfb, 0xf2, 0x17, 0xfd, +0x00, 0x28, 0x02, 0xd0, 0x04, 0x20, 0xdf, 0xf7, 0x53, 0xf8, 0x0c, 0x49, 0x00, 0x20, 0xc8, 0x60, +0x00, 0x2c, 0x08, 0x61, 0x06, 0xd0, 0x0b, 0x20, 0x80, 0x01, 0x20, 0x18, 0x00, 0x69, 0x03, 0x21, +0xe3, 0xf7, 0x84, 0xfd, 0x1b, 0xe4, 0x00, 0x00, 0x3c, 0x1b, 0x01, 0xc0, 0x44, 0x1b, 0x01, 0xc0, +0x30, 0x54, 0x02, 0xc0, 0x02, 0x00, 0x01, 0x00, 0x00, 0xa5, 0x00, 0x80, 0xc4, 0x33, 0x01, 0xc0, +0x02, 0x22, 0x0b, 0x00, 0x10, 0xb5, 0x01, 0x00, 0x02, 0x73, 0x04, 0x48, 0x1c, 0x22, 0x00, 0x68, +0xfb, 0xf2, 0x1c, 0xf9, 0x10, 0xbd, 0x40, 0x69, 0x00, 0x69, 0x70, 0x47, 0x1c, 0xee, 0x00, 0xc0, +0x03, 0x48, 0x00, 0x68, 0x80, 0x30, 0x00, 0x68, 0xc0, 0x07, 0xc0, 0x0f, 0x70, 0x47, 0x00, 0x00, +0x2c, 0xee, 0x00, 0xc0, 0x38, 0xb5, 0x14, 0x00, 0x04, 0x9a, 0x00, 0x92, 0x22, 0x00, 0xed, 0xf7, +0x09, 0xfc, 0x38, 0xbd, 0x10, 0xb5, 0xed, 0xf7, 0xcd, 0xfb, 0x10, 0xbd, 0x10, 0xb5, 0xed, 0xf7, +0xdc, 0xfb, 0x10, 0xbd, 0x10, 0xb5, 0xed, 0xf7, 0x3b, 0xfc, 0x11, 0x28, 0x00, 0xd1, 0x12, 0x20, +0x10, 0xbd, 0x10, 0xb5, 0xed, 0xf7, 0x3c, 0xfc, 0x10, 0xbd, 0x00, 0x00, 0xfa, 0x49, 0x80, 0x00, +0x08, 0x58, 0x70, 0x47, 0x70, 0xb5, 0x84, 0x00, 0xf7, 0x4d, 0x28, 0x59, 0x00, 0x28, 0x03, 0xd1, +0xed, 0xf7, 0x3b, 0xfa, 0x01, 0x20, 0x28, 0x51, 0x70, 0xbd, 0x10, 0xb5, 0x01, 0x68, 0x00, 0x24, +0x22, 0x00, 0x37, 0x29, 0x00, 0xd0, 0x4a, 0x1c, 0x41, 0x68, 0x8a, 0x42, 0x01, 0xd1, 0x00, 0x22, +0x08, 0xe0, 0x24, 0x22, 0x4a, 0x43, 0x23, 0x00, 0x12, 0x18, 0x0c, 0x32, 0x37, 0x29, 0x00, 0xd0, +0x4b, 0x1c, 0x43, 0x60, 0x10, 0x00, 0x10, 0xbd, 0x30, 0xb5, 0x00, 0x24, 0x0a, 0x68, 0x23, 0x00, +0x10, 0x2a, 0x01, 0xd0, 0x0f, 0x2a, 0x04, 0xd0, 0x23, 0x00, 0x10, 0x2a, 0x00, 0xd0, 0x53, 0x1c, +0x5b, 0x1c, 0x4d, 0x68, 0xab, 0x42, 0x01, 0xd1, 0x00, 0x20, 0x30, 0xbd, 0x23, 0x00, 0x10, 0x2a, +0x00, 0xd0, 0x53, 0x1c, 0x9a, 0x00, 0x0b, 0x60, 0x51, 0x18, 0x88, 0x60, 0x01, 0x20, 0x30, 0xbd, +0x01, 0x68, 0x00, 0x23, 0x1a, 0x00, 0x10, 0x29, 0x00, 0xd0, 0x4a, 0x1c, 0x41, 0x68, 0x8a, 0x42, +0x01, 0xd1, 0x00, 0x22, 0x06, 0xe0, 0x8a, 0x00, 0x12, 0x18, 0x92, 0x68, 0x10, 0x29, 0x00, 0xd0, +0x4b, 0x1c, 0x43, 0x60, 0x10, 0x00, 0x70, 0x47, 0x70, 0xb5, 0x05, 0x00, 0xff, 0xf7, 0x50, 0xf9, +0x04, 0x00, 0xcd, 0x48, 0x00, 0x21, 0x00, 0x68, 0x00, 0x28, 0x1e, 0xd1, 0xca, 0x48, 0xcb, 0x4b, +0x14, 0x38, 0x05, 0x61, 0x1a, 0x68, 0x10, 0x2a, 0x00, 0xd0, 0x51, 0x1c, 0x58, 0x68, 0x81, 0x42, +0x04, 0xd0, 0x80, 0x00, 0xc0, 0x18, 0x80, 0x68, 0x00, 0x28, 0x05, 0xd1, 0xc3, 0x48, 0x4c, 0x30, +0x00, 0xf0, 0xd1, 0xf9, 0x00, 0x28, 0x04, 0xd0, 0xc1, 0x48, 0xdd, 0xf7, 0xf7, 0xfd, 0x04, 0xf0, +0xe4, 0xed, 0x28, 0x00, 0xee, 0xf7, 0xd1, 0xff, 0x0b, 0xe0, 0xbc, 0x49, 0x28, 0x00, 0xff, 0xf7, +0xa3, 0xff, 0x00, 0x28, 0x05, 0xd1, 0xba, 0x48, 0x40, 0x1c, 0xdd, 0xf7, 0xe7, 0xfd, 0x04, 0xf0, +0xd4, 0xed, 0x20, 0x00, 0xff, 0xf7, 0x20, 0xf9, 0x70, 0xbd, 0xf7, 0xb5, 0x0e, 0x00, 0x17, 0x00, +0xff, 0xf7, 0x16, 0xf9, 0x05, 0x00, 0xb0, 0x48, 0x00, 0x24, 0x00, 0x68, 0x00, 0x28, 0x23, 0xd1, +0xae, 0x48, 0x4c, 0x30, 0x00, 0xf0, 0xa7, 0xf9, 0x00, 0x28, 0x0c, 0xd1, 0xab, 0x49, 0x08, 0x68, +0x10, 0x28, 0x00, 0xd0, 0x44, 0x1c, 0x48, 0x68, 0x84, 0x42, 0x0a, 0xd0, 0x80, 0x00, 0x40, 0x18, +0x80, 0x68, 0x00, 0x28, 0x05, 0xd0, 0xa6, 0x48, 0x80, 0x1c, 0xdd, 0xf7, 0xbf, 0xfd, 0x04, 0xf0, +0xac, 0xed, 0x3a, 0x00, 0x31, 0x00, 0x68, 0x46, 0xef, 0xf7, 0x5a, 0xf8, 0x00, 0x28, 0x12, 0xd1, +0x00, 0x98, 0x00, 0xf0, 0x97, 0xf9, 0x0e, 0xe0, 0x9c, 0x4b, 0x00, 0x98, 0x3a, 0x00, 0x31, 0x00, +0x4c, 0x33, 0x00, 0xf0, 0x1d, 0xf9, 0x00, 0x28, 0x05, 0xd1, 0x99, 0x48, 0xc0, 0x1c, 0xdd, 0xf7, +0xa5, 0xfd, 0x04, 0xf0, 0x92, 0xed, 0x28, 0x00, 0xff, 0xf7, 0xde, 0xf8, 0xfe, 0xbd, 0x10, 0xb5, +0xcc, 0x79, 0x03, 0x00, 0x00, 0x20, 0x24, 0x09, 0x02, 0x2c, 0x02, 0xd1, 0x58, 0xbc, 0x09, 0x69, +0x01, 0x00, 0x00, 0x00, 0xd8, 0x25, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x36, 0x9f, 0xe7, 0xa3, +0x40, 0x31, 0x08, 0x7c, 0x10, 0xbd, 0x00, 0x2a, 0xfc, 0xd0, 0x59, 0x7a, 0x02, 0x29, 0xf9, 0xd1, +0x18, 0x00, 0x02, 0xf0, 0x43, 0xfa, 0x1b, 0x21, 0x49, 0x01, 0x40, 0x18, 0x40, 0x8b, 0x00, 0x06, +0x00, 0x0e, 0x10, 0xbd, 0xf0, 0xb5, 0x03, 0x24, 0x00, 0x23, 0x84, 0x49, 0x86, 0x4a, 0x14, 0x39, +0x0e, 0x68, 0x82, 0x4d, 0x24, 0x02, 0x01, 0x2e, 0x85, 0xb0, 0x57, 0xd1, 0x00, 0x28, 0x55, 0xd1, +0x10, 0x68, 0xa0, 0x43, 0x10, 0x60, 0x0b, 0x60, 0x2b, 0x60, 0x08, 0x69, 0x0f, 0x00, 0x01, 0x89, +0x46, 0x69, 0x0c, 0x18, 0xb9, 0x68, 0x00, 0x2e, 0x4a, 0x88, 0x01, 0x92, 0x03, 0xd1, 0x00, 0x21, +0xff, 0xf7, 0x90, 0xf8, 0xca, 0xe0, 0x6b, 0x46, 0x5a, 0x79, 0x52, 0x07, 0x18, 0xd4, 0x31, 0x00, +0x6a, 0x46, 0x01, 0xf0, 0x17, 0xfc, 0x00, 0x28, 0xf4, 0xd1, 0x6b, 0x46, 0x18, 0x79, 0x00, 0x07, +0x80, 0x0f, 0x02, 0x28, 0x08, 0xd1, 0x39, 0x69, 0x22, 0x00, 0x30, 0x00, 0x00, 0xf0, 0xa5, 0xf9, +0x00, 0x28, 0xe7, 0xd1, 0x38, 0x69, 0xe2, 0xe7, 0x38, 0x69, 0xde, 0xf7, 0xa6, 0xff, 0xad, 0xe0, +0x08, 0x88, 0x20, 0x31, 0x40, 0x18, 0xe1, 0x6e, 0xc0, 0x1c, 0x87, 0x08, 0xc8, 0x79, 0xbf, 0x00, +0x00, 0x07, 0x00, 0x0f, 0x02, 0x28, 0x10, 0xd1, 0xb8, 0x79, 0xc2, 0x07, 0xd2, 0x0f, 0x30, 0x00, +0xff, 0xf7, 0x97, 0xff, 0x39, 0x88, 0x10, 0x39, 0x39, 0x80, 0x00, 0x90, 0xe3, 0x6e, 0x22, 0x68, +0x00, 0x21, 0x38, 0x00, 0xee, 0xf7, 0xbc, 0xfe, 0x95, 0xe0, 0x03, 0x28, 0x7e, 0xd1, 0x0b, 0x00, +0x22, 0x68, 0x00, 0x21, 0x38, 0x00, 0xee, 0xf7, 0xf8, 0xfd, 0x8c, 0xe0, 0x4e, 0x68, 0x01, 0x2e, +0xb8, 0xd1, 0x00, 0x28, 0xb6, 0xd1, 0x10, 0x68, 0x16, 0x68, 0xa6, 0x43, 0x16, 0x60, 0x53, 0x4a, +0x4b, 0x60, 0x2b, 0x60, 0x14, 0x68, 0x08, 0x32, 0x02, 0x92, 0xca, 0x69, 0x66, 0x69, 0x52, 0x1c, +0xca, 0x61, 0x02, 0x07, 0x02, 0xd5, 0x0a, 0x6a, 0x52, 0x1c, 0x0a, 0x62, 0x00, 0x2e, 0x18, 0xd0, +0x02, 0x07, 0x4b, 0x48, 0x4b, 0x4f, 0x18, 0xd5, 0x8a, 0x69, 0x52, 0x1c, 0x8a, 0x61, 0xfa, 0xf2, +0xec, 0xea, 0x80, 0x78, 0x00, 0x07, 0x80, 0x0f, 0x02, 0x28, 0x0a, 0xd1, 0xf1, 0x19, 0xc8, 0x6b, +0x00, 0x28, 0x06, 0xd0, 0x42, 0x68, 0x52, 0x1c, 0x42, 0x60, 0xc8, 0x6b, 0x01, 0x69, 0x49, 0x1c, +0x01, 0x61, 0x20, 0x00, 0x00, 0xf0, 0xd0, 0xf8, 0x50, 0xe0, 0x03, 0x90, 0xfa, 0xf2, 0xd4, 0xea, +0x80, 0x79, 0xc1, 0x07, 0x3c, 0x48, 0xc0, 0x68, 0x09, 0xd1, 0x81, 0x79, 0x89, 0x07, 0x06, 0xd5, +0x71, 0x7a, 0x02, 0x29, 0x03, 0xd0, 0x81, 0x7a, 0xfd, 0x22, 0x11, 0x40, 0x81, 0x72, 0xc0, 0x79, +0x00, 0x07, 0x00, 0x0f, 0x02, 0x28, 0x05, 0xd1, 0x03, 0x98, 0xfa, 0xf2, 0xbe, 0xea, 0x01, 0x88, +0x10, 0x39, 0x06, 0xe0, 0x03, 0x28, 0x05, 0xd1, 0x03, 0x98, 0xfa, 0xf2, 0xb6, 0xea, 0x01, 0x88, +0x22, 0x39, 0x01, 0x80, 0xa0, 0x88, 0x40, 0x38, 0xa0, 0x80, 0x03, 0x98, 0xfa, 0xf2, 0xac, 0xea, +0x80, 0x78, 0x00, 0x07, 0x80, 0x0f, 0x02, 0x28, 0x1d, 0xd1, 0x28, 0x4a, 0x00, 0x92, 0x20, 0x89, +0x27, 0x4a, 0x01, 0x19, 0x27, 0x4b, 0x20, 0x00, 0xfa, 0xf2, 0xe6, 0xff, 0x00, 0x28, 0x15, 0xd0, +0x04, 0x00, 0xf0, 0x19, 0xc0, 0x6b, 0x00, 0x28, 0x04, 0xd0, 0x00, 0xe0, 0x16, 0xe0, 0x41, 0x6e, +0x49, 0x1c, 0x41, 0x66, 0x02, 0x99, 0x20, 0x00, 0xff, 0xf7, 0x27, 0xf8, 0x02, 0x99, 0x20, 0x00, +0xff, 0xf7, 0xf6, 0xf9, 0x02, 0xe0, 0x20, 0x00, 0xf3, 0xf7, 0x11, 0xf9, 0x10, 0x49, 0x10, 0x48, +0x4c, 0x31, 0x00, 0xf0, 0x83, 0xf8, 0x28, 0x68, 0x00, 0x28, 0x01, 0xd1, 0xed, 0xf7, 0x6d, 0xf8, +0x05, 0xb0, 0xf0, 0xbd, 0xf8, 0xb5, 0x1c, 0x00, 0x0f, 0x00, 0x1d, 0x68, 0x00, 0x26, 0x31, 0x00, +0x37, 0x2d, 0x01, 0xd0, 0x36, 0x2d, 0x04, 0xd0, 0x31, 0x00, 0x37, 0x2d, 0x00, 0xd0, 0x69, 0x1c, +0x49, 0x1c, 0x63, 0x68, 0x99, 0x42, 0x17, 0xd1, 0x00, 0x20, 0xf8, 0xbd, 0x1c, 0x00, 0x00, 0x04, +0x5c, 0x02, 0x00, 0x04, 0x25, 0x00, 0x01, 0x00, 0x00, 0xa0, 0x00, 0x90, 0xd0, 0x3d, 0x00, 0x04, +0x18, 0x3e, 0x00, 0x04, 0x40, 0x02, 0x00, 0x00, 0x08, 0x00, 0x00, 0x04, 0x3c, 0x1b, 0x01, 0xc0, +0x44, 0x1b, 0x01, 0xc0, 0x30, 0x54, 0x02, 0xc0, 0x37, 0x2d, 0x00, 0xd0, 0x6e, 0x1c, 0x24, 0x21, +0x71, 0x43, 0x26, 0x60, 0x09, 0x19, 0xc8, 0x60, 0x20, 0x68, 0x24, 0x23, 0x58, 0x43, 0x39, 0x1d, +0x00, 0x19, 0x02, 0x61, 0x20, 0x68, 0x18, 0x22, 0x58, 0x43, 0x00, 0x19, 0x14, 0x30, 0xfa, 0xf2, +0xfa, 0xe8, 0x20, 0x68, 0x24, 0x23, 0x58, 0x43, 0x01, 0x19, 0x38, 0x00, 0x20, 0x30, 0x03, 0x7e, +0x02, 0x00, 0x0b, 0x77, 0x40, 0x7e, 0x48, 0x77, 0x20, 0x68, 0x24, 0x23, 0x58, 0x43, 0x12, 0x7d, +0x00, 0x19, 0x20, 0x30, 0xc1, 0x78, 0xd2, 0x06, 0xc7, 0x23, 0x92, 0x0f, 0x19, 0x40, 0xd2, 0x00, +0x11, 0x43, 0xc1, 0x70, 0x38, 0x00, 0x40, 0x30, 0xfa, 0xf2, 0x1e, 0xea, 0x21, 0x68, 0x24, 0x23, +0x59, 0x43, 0x09, 0x19, 0xc8, 0x62, 0x01, 0x20, 0xaf, 0xe7, 0x02, 0x68, 0x00, 0x21, 0x37, 0x2a, +0x00, 0xd0, 0x51, 0x1c, 0x42, 0x68, 0x91, 0x42, 0x01, 0xd1, 0x00, 0x20, 0x70, 0x47, 0x24, 0x21, +0x51, 0x43, 0x08, 0x18, 0x0c, 0x30, 0x70, 0x47, 0x10, 0xb5, 0x01, 0x69, 0x00, 0x29, 0x02, 0xd1, +0xfe, 0xf7, 0x8c, 0xff, 0x10, 0xbd, 0xf3, 0xf7, 0x94, 0xf8, 0x10, 0xbd, 0xf3, 0xb5, 0x81, 0xb0, +0x25, 0x48, 0x35, 0xe0, 0x02, 0x98, 0xff, 0xf7, 0xaa, 0xfd, 0x04, 0x00, 0x35, 0xd0, 0x67, 0x68, +0x00, 0x2f, 0x2a, 0xd0, 0x02, 0x98, 0x25, 0x00, 0x81, 0x68, 0x08, 0x35, 0x0e, 0x00, 0x08, 0x36, +0x00, 0x91, 0x18, 0x22, 0x29, 0x00, 0x30, 0x1d, 0xfa, 0xf2, 0xa4, 0xe8, 0x31, 0x00, 0x28, 0x7a, +0x20, 0x31, 0x08, 0x76, 0x68, 0x7a, 0x48, 0x76, 0x08, 0x7d, 0xe7, 0x22, 0x10, 0x40, 0xea, 0x7b, +0x18, 0x23, 0x92, 0x06, 0x92, 0x0e, 0x1a, 0x40, 0x10, 0x43, 0x08, 0x75, 0xe8, 0x18, 0xfa, 0xf2, +0xd4, 0xe9, 0x31, 0x00, 0x40, 0x31, 0xfa, 0xf2, 0xe0, 0xe9, 0x00, 0x99, 0x3a, 0x00, 0x08, 0x31, +0x20, 0x00, 0xee, 0xf7, 0x7f, 0xfe, 0x00, 0x28, 0x07, 0xd1, 0x20, 0x68, 0xff, 0xf7, 0xbc, 0xff, +0x09, 0x48, 0x00, 0x68, 0x00, 0x28, 0xc5, 0xd0, 0xfe, 0xbd, 0x07, 0x48, 0x00, 0x68, 0x00, 0x28, +0xfa, 0xd1, 0x01, 0x98, 0xff, 0xf7, 0x9e, 0xfd, 0x00, 0x28, 0xf5, 0xd0, 0x02, 0x49, 0x14, 0x39, +0x08, 0x61, 0xee, 0xf7, 0xa4, 0xfd, 0xfe, 0xbd, 0x1c, 0x00, 0x00, 0x04, 0x10, 0xb5, 0x0c, 0x00, +0x89, 0x68, 0xca, 0x00, 0x10, 0xd5, 0x01, 0x22, 0x12, 0x07, 0x91, 0x43, 0xa1, 0x60, 0x21, 0x78, +0x01, 0x22, 0x49, 0x07, 0x49, 0x0f, 0xea, 0xf7, 0x5c, 0xfe, 0x01, 0x01, 0xe0, 0x6d, 0x02, 0x8b, +0x12, 0x07, 0x12, 0x0f, 0x0a, 0x43, 0x02, 0x83, 0x10, 0xbd, 0x10, 0xb5, 0x0c, 0x00, 0x11, 0x00, +0xff, 0xf7, 0xe4, 0xff, 0x20, 0x00, 0x04, 0xf0, 0xa2, 0xf9, 0x10, 0xbd, 0xf8, 0xb5, 0x04, 0x00, +0x00, 0x89, 0x66, 0x69, 0x05, 0x19, 0xe8, 0x6e, 0x00, 0x28, 0x15, 0xd0, 0xb7, 0xfe, 0xc2, 0xda, +0x01, 0x00, 0x00, 0x00, 0xd4, 0x29, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0xc2, 0xf0, 0x92, 0x17, +0xc1, 0x79, 0x09, 0x07, 0x09, 0x0f, 0x02, 0x29, 0x07, 0xd1, 0x82, 0x7a, 0xd2, 0x07, 0x04, 0xd0, +0xe8, 0x6d, 0x01, 0x88, 0x10, 0x39, 0x01, 0x80, 0x04, 0xe0, 0x03, 0x29, 0x06, 0xd1, 0x80, 0x7a, +0xc0, 0x07, 0x03, 0xd0, 0x20, 0x00, 0xff, 0xf7, 0x6b, 0xfd, 0xf8, 0xbd, 0x31, 0x00, 0x20, 0x00, +0x6a, 0x46, 0x01, 0xf0, 0x39, 0xfa, 0x01, 0x28, 0xf7, 0xd0, 0x2a, 0x00, 0x21, 0x00, 0x30, 0x00, +0xff, 0xf7, 0xcd, 0xff, 0x00, 0x28, 0xf0, 0xd1, 0x20, 0x00, 0xeb, 0xf7, 0x57, 0xfa, 0x00, 0x21, +0x20, 0x00, 0xfe, 0xf7, 0x99, 0xfe, 0xf8, 0xbd, 0xff, 0xb5, 0x87, 0xb0, 0x01, 0x24, 0x16, 0x00, +0x17, 0x1f, 0x11, 0x9d, 0x04, 0xe0, 0xfe, 0x48, 0xdd, 0xf7, 0x64, 0xfb, 0x04, 0xf0, 0x50, 0xeb, +0x04, 0x2f, 0xf8, 0xd2, 0x28, 0x00, 0x36, 0x1f, 0x60, 0x30, 0x31, 0x06, 0x06, 0x90, 0x09, 0x0e, +0x60, 0x20, 0x48, 0x43, 0xf7, 0x4b, 0x86, 0x46, 0xc7, 0x18, 0xff, 0x20, 0x40, 0x1c, 0x88, 0x40, +0x84, 0x46, 0x10, 0x9e, 0x10, 0x20, 0x3b, 0x00, 0x08, 0x9a, 0x88, 0x40, 0x5c, 0x33, 0x1c, 0x3e, +0x01, 0x2a, 0x05, 0x93, 0x6d, 0xd1, 0x03, 0x91, 0xef, 0x49, 0x63, 0x46, 0x49, 0x69, 0x62, 0x46, +0x0b, 0x42, 0x34, 0xd1, 0x08, 0x42, 0x04, 0x90, 0x59, 0xd1, 0xea, 0x4b, 0x70, 0x46, 0x18, 0x5c, +0x00, 0x28, 0x20, 0xd1, 0x28, 0x78, 0x00, 0x22, 0x41, 0x07, 0x07, 0x98, 0x49, 0x0f, 0xea, 0xf7, +0xda, 0xfd, 0x6b, 0x46, 0x99, 0x88, 0x00, 0x01, 0x09, 0x07, 0x09, 0x0f, 0x01, 0x43, 0x01, 0x91, +0x18, 0x79, 0x00, 0x09, 0x00, 0x01, 0x18, 0x71, 0x01, 0x99, 0x0a, 0x98, 0xf0, 0xf2, 0xc1, 0xfc, +0x06, 0x98, 0x01, 0x7a, 0x0a, 0x98, 0xf0, 0xf2, 0x20, 0xff, 0xdb, 0x48, 0x04, 0x99, 0x42, 0x69, +0x11, 0x43, 0x41, 0x61, 0x33, 0xe0, 0x0a, 0x43, 0x04, 0x99, 0xd7, 0x48, 0x11, 0x43, 0x41, 0x61, +0x57, 0xe0, 0x0a, 0x98, 0x78, 0x70, 0x05, 0x98, 0xfe, 0xf7, 0x53, 0xfe, 0x0e, 0xe0, 0xd2, 0x4b, +0x07, 0x00, 0x0f, 0x42, 0x0c, 0xd0, 0x10, 0x9a, 0x03, 0x99, 0x07, 0x98, 0xde, 0xf7, 0xae, 0xfd, +0x01, 0x28, 0x03, 0xd1, 0x30, 0x00, 0x00, 0x21, 0xfe, 0xf7, 0x26, 0xfe, 0x00, 0x24, 0x6c, 0xe0, +0x91, 0x43, 0x08, 0x43, 0x58, 0x61, 0x03, 0x98, 0x60, 0x26, 0x46, 0x43, 0xc5, 0x4f, 0x08, 0xe0, +0x02, 0x98, 0xa9, 0x78, 0x81, 0x70, 0xb9, 0x5d, 0x1c, 0x38, 0x49, 0x1c, 0xb9, 0x55, 0xff, 0xf7, +0x47, 0xff, 0x03, 0x98, 0x02, 0xa9, 0xde, 0xf7, 0x78, 0xfd, 0x00, 0x28, 0xf0, 0xd0, 0x00, 0x2c, +0x53, 0xd0, 0x03, 0x98, 0x60, 0x23, 0x58, 0x43, 0xba, 0x49, 0x0a, 0x5c, 0x52, 0x1c, 0x0a, 0x54, +0x4b, 0xe0, 0x08, 0x9a, 0x02, 0x2a, 0x48, 0xd1, 0x03, 0x91, 0xb7, 0x49, 0x63, 0x46, 0x49, 0x69, +0x62, 0x46, 0x0b, 0x42, 0x1d, 0xd1, 0x05, 0x00, 0x08, 0x42, 0x35, 0xd0, 0xb1, 0x4b, 0x70, 0x46, +0x18, 0x5c, 0x00, 0x28, 0x09, 0xd1, 0x06, 0x98, 0x01, 0x7a, 0x0a, 0x98, 0xf0, 0xf2, 0xdb, 0xfe, +0xad, 0x49, 0x48, 0x69, 0xa8, 0x43, 0x48, 0x61, 0x26, 0xe0, 0xab, 0x48, 0x0a, 0x43, 0xaa, 0x43, +0x42, 0x61, 0x10, 0x9a, 0x03, 0x99, 0x07, 0x98, 0xde, 0xf7, 0x60, 0xfd, 0x00, 0x28, 0xb1, 0xd1, +0x9f, 0xe7, 0xa5, 0x4b, 0x07, 0x00, 0x0f, 0x42, 0xa5, 0xd0, 0x91, 0x43, 0x81, 0x43, 0x59, 0x61, +0x03, 0x98, 0x60, 0x26, 0x46, 0x43, 0x9f, 0x4f, 0x08, 0xe0, 0x02, 0x98, 0xa9, 0x78, 0x81, 0x70, +0xb9, 0x5d, 0x1c, 0x38, 0x49, 0x1c, 0xb9, 0x55, 0xff, 0xf7, 0xfa, 0xfe, 0x03, 0x98, 0x02, 0xa9, +0xde, 0xf7, 0x2b, 0xfd, 0x00, 0x28, 0xf0, 0xd0, 0x00, 0x2c, 0x06, 0xd0, 0x03, 0x98, 0x60, 0x23, +0x58, 0x43, 0x94, 0x4a, 0x11, 0x5c, 0x49, 0x1c, 0x11, 0x54, 0x20, 0x00, 0x0b, 0xb0, 0xf0, 0xbd, +0xff, 0xb5, 0x81, 0xb0, 0x0c, 0x00, 0x05, 0x00, 0x20, 0x30, 0x00, 0x7e, 0x7f, 0x27, 0x00, 0x26, +0xff, 0x00, 0xfe, 0x28, 0x06, 0xd0, 0x21, 0x8d, 0x40, 0x06, 0xb9, 0x43, 0x80, 0x0d, 0x01, 0x43, +0x21, 0x85, 0x0c, 0xe0, 0x28, 0x7a, 0x01, 0x28, 0x0b, 0xd1, 0x28, 0x00, 0xe9, 0xf7, 0x42, 0xfb, +0x40, 0x7d, 0x00, 0x28, 0x05, 0xd1, 0x20, 0x8d, 0xb8, 0x43, 0x08, 0x30, 0x20, 0x85, 0x01, 0x26, +0x0e, 0xe0, 0x28, 0x00, 0xff, 0x30, 0x5d, 0x30, 0xf6, 0xf2, 0x93, 0xf8, 0x21, 0x8d, 0x40, 0x06, +0x80, 0x0d, 0xb9, 0x43, 0x01, 0x43, 0x21, 0x85, 0x04, 0x98, 0x00, 0x78, 0xc0, 0x07, 0x27, 0xd0, +0xe0, 0x69, 0x01, 0x21, 0x09, 0x03, 0x08, 0x43, 0xe0, 0x61, 0x04, 0x99, 0x09, 0x78, 0xc9, 0x07, +0x1e, 0xd0, 0xff, 0x21, 0x49, 0x1c, 0x08, 0x43, 0x20, 0x21, 0x88, 0x43, 0xe0, 0x61, 0x68, 0x7a, +0x02, 0x28, 0x0a, 0xd1, 0x03, 0x98, 0x00, 0x28, 0x03, 0xd0, 0x03, 0x98, 0xef, 0xf2, 0xf6, 0xf9, +0x08, 0xe0, 0x28, 0x00, 0x03, 0xf0, 0xda, 0xff, 0x04, 0xe0, 0x00, 0x2e, 0x08, 0xd1, 0x28, 0x00, +0xf0, 0xf7, 0xab, 0xff, 0x21, 0x8d, 0x40, 0x06, 0x80, 0x0d, 0xb9, 0x43, 0x01, 0x43, 0x21, 0x85, +0x20, 0x8d, 0x81, 0x05, 0x49, 0x0e, 0x03, 0x29, 0x06, 0xd8, 0x64, 0x49, 0x09, 0x78, 0x89, 0x06, +0x02, 0xd5, 0xb8, 0x43, 0x28, 0x30, 0x20, 0x85, 0x05, 0xb0, 0xf0, 0xbd, 0x70, 0xb5, 0x0e, 0x00, +0x5f, 0x4d, 0x00, 0x24, 0x28, 0x78, 0x29, 0x00, 0x49, 0x78, 0x00, 0x28, 0x1a, 0xd1, 0x01, 0xf0, +0x06, 0xff, 0x04, 0x00, 0x00, 0x7a, 0x01, 0x28, 0x05, 0xd1, 0x30, 0x00, 0x01, 0xf0, 0x41, 0xff, +0x00, 0x28, 0x36, 0xd0, 0x0c, 0xe0, 0x00, 0x28, 0x33, 0xd1, 0x68, 0x7b, 0xc0, 0x06, 0x30, 0xd5, +0x30, 0x00, 0x01, 0xf0, 0x36, 0xff, 0x00, 0x28, 0x2b, 0xd0, 0xc1, 0x68, 0xc9, 0x04, 0x28, 0xd5, +0x04, 0x00, 0x26, 0xe0, 0x01, 0x28, 0x01, 0xd0, 0x02, 0x28, 0x22, 0xd1, 0x01, 0xf0, 0xe7, 0xfe, +0x04, 0x00, 0x1e, 0xd0, 0x60, 0x7a, 0x02, 0x28, 0x1b, 0xd1, 0x30, 0x78, 0xc0, 0x07, 0x0b, 0xd0, +0x20, 0x00, 0x01, 0xf0, 0xa5, 0xfe, 0x00, 0x28, 0x13, 0xd0, 0x09, 0x21, 0x89, 0x01, 0x40, 0x18, +0xc0, 0x69, 0x00, 0x28, 0x0d, 0xd1, 0x0b, 0xe0, 0x30, 0x00, 0x01, 0xf0, 0x12, 0xff, 0x04, 0x00, +0x01, 0xf0, 0xbd, 0xfe, 0x00, 0x2c, 0x04, 0xd0, 0x60, 0x30, 0x00, 0x78, 0x03, 0x28, 0x00, 0xd0, +0x00, 0x24, 0x20, 0x00, 0x70, 0xbd, 0xf8, 0xb5, 0x05, 0x00, 0x2f, 0x00, 0x00, 0x89, 0x54, 0x19, +0x40, 0x19, 0x00, 0x90, 0x1c, 0x20, 0x2e, 0x18, 0x7c, 0x37, 0x00, 0x29, 0x28, 0x81, 0x1e, 0xd0, +0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x1e, 0x28, 0x01, 0xd9, 0x1e, 0x38, 0x00, 0xe0, +0x00, 0x20, 0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, 0x70, 0x21, 0x30, 0x00, 0xf9, 0xf2, 0x00, 0xef, +0x00, 0x98, 0x40, 0x7c, 0xf8, 0x72, 0x68, 0x69, 0x00, 0x7a, 0x03, 0x28, 0x03, 0xd0, 0xe3, 0xf7, +0x37, 0xf9, 0x01, 0x28, 0x01, 0xd1, 0x05, 0x20, 0x00, 0xe0, 0x00, 0x20, 0xb0, 0x70, 0xe0, 0x78, +0xfb, 0x21, 0x08, 0x40, 0xe0, 0x70, 0x60, 0x7e, 0x21, 0x7e, 0x00, 0x02, 0x08, 0x43, 0x00, 0x07, +0x00, 0x0f, 0x20, 0x76, 0x00, 0x0a, 0x60, 0x76, 0x20, 0x7e, 0x07, 0x21, 0x46, 0x83, 0x7e, 0x38, +0x01, 0x00, 0x00, 0x00, 0xd0, 0x2d, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x91, 0x2a, 0x41, 0x7b, +0x00, 0x09, 0x00, 0x01, 0x20, 0x76, 0x30, 0x78, 0x08, 0x43, 0x30, 0x70, 0x09, 0x20, 0xf4, 0x65, +0x38, 0x72, 0x28, 0x00, 0xef, 0xf7, 0x9b, 0xf8, 0x00, 0x28, 0x02, 0xd1, 0x28, 0x00, 0xde, 0xf7, +0xe8, 0xfb, 0xf8, 0xbd, 0x70, 0xb5, 0x14, 0x48, 0xfa, 0xf2, 0x21, 0xfc, 0x04, 0x00, 0x2c, 0xd0, +0x20, 0x89, 0x05, 0x19, 0x69, 0x78, 0x28, 0x78, 0x01, 0xf0, 0x6b, 0xfe, 0x00, 0x28, 0x1d, 0xd0, +0x60, 0x61, 0x68, 0x79, 0x2a, 0x79, 0x21, 0x89, 0x00, 0x02, 0x10, 0x43, 0x08, 0x18, 0x02, 0x04, +0x12, 0x0c, 0x01, 0x21, 0x20, 0x00, 0xff, 0xf7, 0x98, 0xff, 0x01, 0x20, 0xde, 0xf7, 0xfe, 0xfa, +0x0f, 0xe0, 0x00, 0x00, 0x50, 0x00, 0x01, 0x00, 0x1c, 0x3e, 0x00, 0x04, 0xb0, 0x76, 0x02, 0x00, +0x82, 0x55, 0x00, 0x04, 0x9c, 0x3f, 0x00, 0x04, 0xec, 0x3f, 0x00, 0x04, 0x20, 0x00, 0xfa, 0xf2, +0x63, 0xfb, 0xff, 0x49, 0x08, 0x68, 0x40, 0x1c, 0x08, 0x60, 0x70, 0xbd, 0xfe, 0xb5, 0xfd, 0x48, +0x41, 0x69, 0x09, 0x05, 0x09, 0x0f, 0x6c, 0xd0, 0xfb, 0x4f, 0x00, 0x24, 0xff, 0x20, 0xf9, 0x4a, +0x40, 0x1c, 0xa0, 0x40, 0x51, 0x69, 0x03, 0x00, 0x0b, 0x42, 0x5f, 0xd0, 0x60, 0x25, 0x65, 0x43, +0x7b, 0x5d, 0x00, 0x2b, 0x5a, 0xd1, 0x81, 0x43, 0x10, 0x20, 0xa0, 0x40, 0x08, 0x42, 0x51, 0x61, +0x36, 0xd0, 0xf2, 0x49, 0xf2, 0x48, 0x04, 0xf0, 0x2e, 0xe9, 0xf2, 0x4a, 0x00, 0x20, 0xee, 0x19, +0x18, 0x21, 0x41, 0x43, 0x53, 0x5c, 0x00, 0x2b, 0x20, 0xd0, 0x89, 0x18, 0x89, 0x78, 0x73, 0x78, +0x99, 0x42, 0x1b, 0xd1, 0x18, 0x23, 0x58, 0x43, 0x81, 0x18, 0x08, 0x1d, 0x02, 0x91, 0x01, 0xf0, +0x52, 0xfe, 0x02, 0x99, 0x00, 0x22, 0x49, 0x78, 0xea, 0xf7, 0xc7, 0xfb, 0x6b, 0x46, 0x19, 0x88, +0x00, 0x01, 0x09, 0x07, 0x09, 0x0f, 0x01, 0x43, 0x00, 0x91, 0x18, 0x78, 0x00, 0x09, 0x00, 0x01, +0x18, 0x70, 0x70, 0x78, 0x00, 0x99, 0xf0, 0xf2, 0xae, 0xfa, 0x02, 0xe0, 0x40, 0x1c, 0x04, 0x28, +0xd6, 0xd3, 0x20, 0x1d, 0x01, 0x06, 0x70, 0x78, 0x09, 0x0e, 0xf0, 0xf2, 0x08, 0xfd, 0x0a, 0xe0, +0xd9, 0x49, 0xd7, 0x48, 0x04, 0xf0, 0xf6, 0xe8, 0x20, 0x1d, 0x01, 0x06, 0xe8, 0x19, 0x40, 0x78, +0x09, 0x0e, 0xf0, 0xf2, 0x12, 0xfd, 0xd2, 0x4e, 0x0a, 0xe0, 0xd4, 0x49, 0x30, 0x00, 0x04, 0xf0, +0xea, 0xe8, 0x01, 0x98, 0x1c, 0x38, 0xff, 0xf7, 0x4d, 0xfd, 0x78, 0x5d, 0x40, 0x1c, 0x78, 0x55, +0x20, 0x00, 0x01, 0xa9, 0xde, 0xf7, 0x7b, 0xfb, 0x00, 0x28, 0xee, 0xd0, 0x64, 0x1c, 0x04, 0x2c, +0x94, 0xd3, 0xfe, 0xbd, 0xf0, 0xb5, 0x00, 0x20, 0xd1, 0xb0, 0x20, 0x90, 0x1d, 0x90, 0xde, 0xf7, +0xaf, 0xfb, 0xc7, 0x48, 0x50, 0x90, 0xc1, 0x20, 0x80, 0x02, 0xdd, 0xf7, 0xd5, 0xf8, 0x00, 0x22, +0xd2, 0x43, 0xbc, 0x4c, 0x00, 0x92, 0xc3, 0x49, 0xe0, 0x68, 0x08, 0x22, 0x4b, 0xab, 0xff, 0xf7, +0x3f, 0xfa, 0xc1, 0x48, 0xdd, 0xf7, 0xc8, 0xf8, 0x4b, 0x98, 0x00, 0x28, 0xeb, 0xd0, 0x40, 0x06, +0x07, 0xd5, 0x00, 0x20, 0xe8, 0xf7, 0xea, 0xfd, 0xbc, 0x49, 0x48, 0x68, 0x4a, 0x06, 0x10, 0x43, +0x48, 0x60, 0x4b, 0x98, 0xc0, 0x06, 0x0a, 0xd5, 0xe8, 0xf7, 0x00, 0xfe, 0xb8, 0x48, 0x07, 0x22, +0x00, 0x68, 0x10, 0x21, 0xff, 0xf7, 0x30, 0xfa, 0x29, 0x20, 0xe7, 0xf7, 0xa8, 0xfc, 0x4b, 0x98, +0x81, 0x06, 0x02, 0xd5, 0xb3, 0x4a, 0x00, 0x21, 0x11, 0x70, 0x40, 0x05, 0x01, 0xd5, 0xdf, 0xf7, +0x0b, 0xfa, 0x4b, 0x98, 0x40, 0x07, 0x01, 0xd5, 0xfe, 0xf7, 0xfd, 0xff, 0x4b, 0x98, 0x80, 0x07, +0x0d, 0xd5, 0x04, 0xe0, 0x1f, 0x98, 0xac, 0x22, 0x00, 0x21, 0xff, 0xf7, 0xbe, 0xfe, 0x20, 0x69, +0x04, 0x22, 0x00, 0x23, 0x1f, 0xa9, 0xff, 0xf7, 0x0b, 0xfa, 0x0f, 0x28, 0xf2, 0xd1, 0x4b, 0x98, +0x09, 0x21, 0x08, 0x42, 0x7e, 0xd0, 0xa4, 0x48, 0x01, 0x68, 0x95, 0x48, 0x00, 0x68, 0x81, 0x42, +0x01, 0xd0, 0xff, 0xf7, 0xf7, 0xfe, 0x01, 0xf0, 0xf8, 0xfd, 0x00, 0x28, 0xa3, 0xd0, 0xa0, 0x69, +0x00, 0x28, 0xa0, 0xd1, 0xde, 0xf7, 0x7f, 0xfa, 0x00, 0x28, 0x9c, 0xd1, 0xff, 0xf7, 0x1e, 0xff, +0x20, 0x98, 0x00, 0x25, 0x00, 0x28, 0x50, 0xd0, 0x00, 0x20, 0x17, 0x90, 0x16, 0x90, 0x14, 0x90, +0x95, 0x48, 0x01, 0x68, 0x86, 0x48, 0x00, 0x68, 0x81, 0x42, 0x01, 0xd0, 0xff, 0xf7, 0xda, 0xfe, +0x20, 0x98, 0x12, 0x22, 0x01, 0x89, 0x09, 0x18, 0x89, 0x48, 0x4c, 0x91, 0x08, 0x38, 0xf9, 0xf2, +0x06, 0xed, 0x87, 0x49, 0x4c, 0x98, 0x08, 0x39, 0x8a, 0x88, 0x10, 0x18, 0x1a, 0x90, 0x48, 0x88, +0x7d, 0x22, 0x92, 0x01, 0x90, 0x42, 0x00, 0xd3, 0xfe, 0xe7, 0x81, 0x48, 0x08, 0x38, 0x00, 0x7b, +0x08, 0x28, 0x03, 0xd3, 0x7e, 0x49, 0x00, 0x20, 0x08, 0x39, 0x08, 0x73, 0x7c, 0x48, 0x1a, 0x99, +0x08, 0x38, 0x1c, 0xaa, 0xdf, 0xf7, 0xc6, 0xf9, 0x01, 0x28, 0x15, 0x90, 0x13, 0xd1, 0x18, 0xab, +0x18, 0x7c, 0xdf, 0xf7, 0xb9, 0xf9, 0x16, 0x90, 0x80, 0x30, 0x05, 0x69, 0x28, 0x00, 0x01, 0xf0, +0xe9, 0xfc, 0x16, 0x9c, 0x16, 0x98, 0x26, 0x00, 0x14, 0x36, 0x01, 0x00, 0x70, 0x31, 0x01, 0x20, +0xa1, 0x61, 0x1e, 0x90, 0xf6, 0xe0, 0x1a, 0x99, 0x20, 0x98, 0xff, 0xf7, 0x01, 0xfe, 0x05, 0x00, +0x04, 0xd1, 0x20, 0x98, 0x00, 0x21, 0xfe, 0xf7, 0x49, 0xfb, 0x0d, 0xe3, 0x28, 0x00, 0x01, 0xf0, +0xd1, 0xfc, 0x07, 0x00, 0x68, 0x7a, 0x1a, 0x99, 0x01, 0x24, 0x03, 0x28, 0x02, 0xd1, 0x29, 0x00, +0x7e, 0x31, 0x00, 0x24, 0x06, 0x22, 0x18, 0xa8, 0xf9, 0xf2, 0xb8, 0xec, 0x60, 0x48, 0x08, 0x38, +0x00, 0x7b, 0x00, 0xe0, 0x18, 0xe3, 0x5b, 0x4b, 0x1c, 0xaa, 0x18, 0xa9, 0xfa, 0xf2, 0x46, 0xfc, +0x00, 0x28, 0x13, 0x90, 0x1d, 0xd0, 0x61, 0x48, 0x00, 0x68, 0x00, 0x28, 0x19, 0xd0, 0x60, 0x48, +0x00, 0x68, 0x00, 0x79, 0x00, 0x28, 0x14, 0xd1, 0x55, 0x49, 0x18, 0xab, 0x18, 0x7c, 0x2a, 0x00, +0x08, 0x39, 0x23, 0x00, 0xdf, 0xf7, 0xa7, 0xf9, 0x04, 0x00, 0x70, 0x21, 0x16, 0x90, 0xf9, 0xf2, +0x32, 0xed, 0x16, 0x98, 0x26, 0x00, 0x14, 0x36, 0x01, 0x00, 0x70, 0x31, 0x01, 0x20, 0xa1, 0x61, +0x41, 0xe0, 0x01, 0x20, 0x22, 0xac, 0x17, 0x90, 0x70, 0x21, 0x20, 0x00, 0xf9, 0xf2, 0x22, 0xed, +0x43, 0xa8, 0x28, 0x90, 0x46, 0x48, 0x26, 0x00, 0x14, 0x36, 0x08, 0x38, 0x40, 0x7b, 0xc0, 0x07, +0x21, 0xd0, 0xde, 0xf7, 0x53, 0xfb, 0xe5, 0xf7, 0x90, 0xfe, 0x00, 0x28, 0x14, 0xd0, 0x49, 0x48, +0x00, 0x78, 0x00, 0x28, 0x10, 0xd1, 0x28, 0x00, 0xfa, 0xf7, 0x86, 0xff, 0x01, 0x21, 0x00, 0x91, +0x3b, 0x49, 0x00, 0x22, 0x01, 0x92, 0x08, 0x39, 0x49, 0x7b, 0x02, 0x00, 0x09, 0x07, 0xcb, 0x0f, +0x01, 0x21, 0x28, 0x00, 0xde, 0xf7, 0xc3, 0xfb, 0xe5, 0xf7, 0x61, 0xfe, 0x00, 0x28, 0x90, 0xd0, +0xe6, 0xf7, 0xdb, 0xfd, 0x8d, 0xe7, 0x28, 0x7a, 0x01, 0x28, 0x04, 0xd0, 0x69, 0x7a, 0x02, 0x29, +0x01, 0xd0, 0x06, 0x28, 0x04, 0xd1, 0x1a, 0x99, 0x28, 0x00, 0x01, 0xf0, 0x37, 0xfd, 0x02, 0xe0, +0x28, 0x00, 0x01, 0xf0, 0x3f, 0xfd, 0x1e, 0x90, 0xfa, 0x7f, 0x31, 0x00, 0x41, 0x25, 0x5b, 0x99, +0x01, 0x00, 0x00, 0x00, 0xcc, 0x31, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x2e, 0xef, 0x64, 0xc8, +0x28, 0x00, 0x18, 0xab, 0xff, 0xf7, 0x10, 0xfd, 0x30, 0x49, 0x01, 0x20, 0x09, 0x79, 0xc9, 0x06, +0x09, 0xd4, 0x69, 0x7a, 0x02, 0x29, 0x05, 0xd1, 0x13, 0x21, 0x49, 0x01, 0x79, 0x18, 0x09, 0x79, +0x09, 0x07, 0x00, 0xd4, 0x00, 0x20, 0x1b, 0x90, 0x28, 0x7a, 0x00, 0x28, 0x16, 0xd1, 0x28, 0x00, +0x20, 0x30, 0x4f, 0x90, 0x80, 0x7e, 0x00, 0x07, 0x10, 0xd4, 0x30, 0x8d, 0x80, 0x05, 0x40, 0x0e, +0xfa, 0xf2, 0x0a, 0xfd, 0x07, 0x00, 0x12, 0x20, 0xfa, 0xf2, 0x06, 0xfd, 0x87, 0x42, 0x05, 0xd8, +0x4f, 0x98, 0x80, 0x7e, 0x80, 0x07, 0xc2, 0x0f, 0x01, 0x21, 0x04, 0xe0, 0x3a, 0x20, 0x40, 0x5d, +0x1b, 0x99, 0x80, 0x07, 0xc2, 0x0f, 0x30, 0x00, 0xfa, 0xf2, 0x16, 0xfc, 0x13, 0x98, 0x00, 0x28, +0x3c, 0xd0, 0x30, 0x8d, 0x80, 0x05, 0x40, 0x0e, 0x03, 0xf0, 0x0a, 0xfe, 0x00, 0x28, 0x2d, 0xd0, +0x04, 0x49, 0x25, 0xe0, 0x5c, 0xee, 0x00, 0xc0, 0xb0, 0x76, 0x02, 0x00, 0x1c, 0x3e, 0x00, 0x04, +0x11, 0x11, 0x11, 0x11, 0xbb, 0xbb, 0xbb, 0xbb, 0x4c, 0x7b, 0x02, 0x00, 0x22, 0x22, 0x22, 0x22, +0x33, 0x33, 0x33, 0x33, 0xa4, 0x3f, 0x00, 0x04, 0xff, 0x1f, 0x00, 0x00, 0x04, 0x04, 0x03, 0x00, +0x40, 0xa5, 0x00, 0x80, 0x6c, 0xf4, 0x00, 0xc0, 0x35, 0xf0, 0x00, 0xc0, 0x50, 0xee, 0x00, 0xc0, +0xfc, 0x76, 0x02, 0x00, 0x54, 0xf4, 0x00, 0xc0, 0x73, 0xef, 0x00, 0xc0, 0x82, 0x55, 0x00, 0x04, +0xc9, 0x43, 0xc8, 0x43, 0x03, 0xf0, 0x28, 0xef, 0x01, 0x27, 0x0d, 0xe0, 0xfe, 0x49, 0xff, 0x48, +0x03, 0xf0, 0x22, 0xef, 0x02, 0x27, 0x01, 0x20, 0x17, 0x90, 0x05, 0xe0, 0xfc, 0x49, 0xfb, 0x48, +0x03, 0xf0, 0x1a, 0xef, 0x00, 0x27, 0xf6, 0xe7, 0xfa, 0x49, 0x01, 0x20, 0x08, 0x70, 0x04, 0xf0, +0x64, 0xe8, 0x15, 0x9a, 0x00, 0x92, 0x1e, 0x9a, 0x4c, 0x98, 0x33, 0x00, 0x29, 0x00, 0x00, 0xf0, +0xa6, 0xfa, 0x20, 0x9a, 0x1c, 0x21, 0x11, 0x81, 0x20, 0x99, 0x00, 0x06, 0x1c, 0x31, 0x4d, 0x91, +0x00, 0x21, 0xa1, 0x80, 0x71, 0x80, 0x20, 0x99, 0x00, 0x0e, 0x4d, 0x61, 0xee, 0x49, 0x3e, 0x94, +0x4a, 0x88, 0x40, 0xab, 0x12, 0x1a, 0x1a, 0x80, 0x4c, 0x9a, 0x89, 0x88, 0x10, 0x18, 0x08, 0x18, +0x3f, 0x90, 0x00, 0x20, 0xd8, 0x70, 0x68, 0x7a, 0x03, 0x28, 0x01, 0xd0, 0x01, 0x28, 0x0c, 0xd1, +0x28, 0x00, 0x01, 0xf0, 0x91, 0xfc, 0x00, 0x28, 0x07, 0xd0, 0xe3, 0x48, 0x01, 0x7b, 0x28, 0x00, +0x01, 0xf0, 0x96, 0xfc, 0xe0, 0x49, 0x08, 0x73, 0x15, 0xe0, 0x28, 0x7a, 0x01, 0x28, 0x04, 0xd1, +0x28, 0x00, 0x01, 0xf0, 0x81, 0xfc, 0x00, 0x28, 0x05, 0xd1, 0x68, 0x7a, 0x02, 0x28, 0x02, 0xd0, +0x28, 0x7a, 0x06, 0x28, 0x09, 0xd1, 0x1a, 0x99, 0x28, 0x00, 0x01, 0xf0, 0x69, 0xfc, 0x00, 0x28, +0x03, 0xd0, 0xd5, 0x48, 0x00, 0x7b, 0x40, 0xab, 0xd8, 0x70, 0x00, 0x2f, 0x07, 0xd0, 0x3e, 0x98, +0x01, 0x21, 0x80, 0x68, 0x09, 0x07, 0x08, 0x43, 0x3e, 0x99, 0x88, 0x60, 0x0f, 0xe0, 0x1e, 0x98, +0x00, 0x28, 0x0c, 0xd0, 0x40, 0xab, 0xd9, 0x78, 0x01, 0x22, 0x28, 0x00, 0xea, 0xf7, 0x67, 0xf9, +0x40, 0xab, 0x19, 0x89, 0x00, 0x01, 0x09, 0x07, 0x09, 0x0f, 0x01, 0x43, 0x19, 0x81, 0x15, 0x98, +0x16, 0x9a, 0x00, 0x28, 0x0d, 0xd0, 0xc4, 0x48, 0x14, 0xa9, 0xc0, 0x88, 0x6b, 0x46, 0x00, 0x06, +0x00, 0x0e, 0x07, 0xc3, 0x21, 0xaa, 0x1d, 0x9b, 0x20, 0x99, 0x3e, 0xa8, 0x02, 0xf0, 0x58, 0xff, +0x10, 0xe0, 0x14, 0xa8, 0x04, 0x92, 0x02, 0x90, 0x1e, 0x99, 0xbb, 0x48, 0x03, 0x91, 0xc0, 0x88, +0x1d, 0x9b, 0x01, 0x06, 0x09, 0x0e, 0x00, 0x91, 0x20, 0x99, 0x21, 0xaa, 0x3e, 0xa8, 0x01, 0x97, +0x02, 0xf0, 0x88, 0xfc, 0x71, 0x8c, 0x00, 0x28, 0xe1, 0x80, 0x00, 0xd1, 0x6b, 0xe6, 0x21, 0x99, +0x00, 0x29, 0x10, 0xd0, 0xa1, 0x68, 0x01, 0x22, 0xd2, 0x06, 0x11, 0x43, 0x00, 0x2d, 0xa1, 0x60, +0x09, 0xd0, 0x09, 0x21, 0x89, 0x01, 0x69, 0x18, 0xc9, 0x6b, 0x00, 0x29, 0x03, 0xd0, 0x60, 0x31, +0x0a, 0x8b, 0x52, 0x1c, 0x0a, 0x83, 0xe0, 0x65, 0x50, 0x98, 0xf9, 0xf2, 0x64, 0xec, 0x00, 0x09, +0x50, 0x99, 0x00, 0x01, 0xf9, 0xf2, 0x6e, 0xec, 0x31, 0x8d, 0x10, 0x22, 0x89, 0x05, 0x49, 0x0e, +0x11, 0x43, 0x08, 0x43, 0x50, 0x99, 0xf9, 0xf2, 0x66, 0xec, 0xe0, 0x60, 0x9e, 0x48, 0x40, 0x7b, +0x00, 0x07, 0x06, 0xd5, 0xde, 0xf7, 0xe4, 0xf9, 0xa0, 0x68, 0x01, 0x21, 0xc9, 0x07, 0x08, 0x43, +0x02, 0xe0, 0xa0, 0x68, 0x40, 0x00, 0x40, 0x08, 0xa0, 0x60, 0x68, 0x7a, 0x03, 0x28, 0x01, 0xd0, +0x01, 0x28, 0x08, 0xd1, 0x94, 0x48, 0x81, 0x7b, 0x02, 0x7b, 0x4b, 0x00, 0x21, 0x00, 0x28, 0x00, +0x01, 0xf0, 0x24, 0xfc, 0x32, 0xe0, 0x1e, 0x98, 0x00, 0x28, 0x03, 0xd0, 0x8e, 0x48, 0x00, 0x7b, +0xfa, 0xf2, 0xfc, 0xfc, 0xfa, 0xf2, 0x0b, 0xfd, 0x12, 0x90, 0x15, 0x98, 0x00, 0x28, 0x0c, 0xd1, +0x00, 0x2f, 0x07, 0xd0, 0x21, 0x00, 0x18, 0xab, 0x88, 0x4a, 0x18, 0x7c, 0x68, 0x31, 0xfa, 0xf2, +0xa6, 0xfa, 0x02, 0xe0, 0x12, 0x99, 0x68, 0x20, 0x01, 0x55, 0x85, 0x48, 0x41, 0x6a, 0x12, 0x98, +0x40, 0x00, 0x30, 0x30, 0x08, 0x5a, 0x83, 0x49, 0x88, 0x42, 0x03, 0xd0, 0x7e, 0x48, 0x80, 0x7b, +0x00, 0x28, 0x02, 0xd1, 0xa0, 0x88, 0x00, 0x28, 0x0a, 0xd0, 0x7b, 0x48, 0x12, 0x99, 0x80, 0x7b, +0x43, 0x00, 0x68, 0x20, 0x02, 0x5d, 0x20, 0x00, 0x01, 0xf0, 0xd2, 0xfb, 0x00, 0x28, 0x85, 0xd0, +0x28, 0x7a, 0x00, 0x28, 0x02, 0xd0, 0x68, 0x7a, 0x03, 0x28, 0x1c, 0xd1, 0x03, 0xf0, 0xc4, 0xfc, +0x00, 0x28, 0x18, 0xd0, 0x70, 0x48, 0xc0, 0x88, 0xdf, 0x28, 0x02, 0xd1, 0x37, 0x21, 0x69, 0x20, +0x01, 0x55, 0x71, 0x48, 0xa0, 0x80, 0x16, 0x98, 0x00, 0x28, 0x05, 0xd0, 0x18, 0xab, 0x18, 0x7c, +0xde, 0xf7, 0x4a, 0xff, 0xde, 0xf7, 0x62, 0xff, 0x01, 0x2f, 0x04, 0xd0, 0xe0, 0x68, 0x0e, 0x21, +0xfa, 0xf2, 0x99, 0xfa, 0xe0, 0x60, 0xa0, 0x88, 0x00, 0x28, 0x03, 0xd0, 0x31, 0x00, 0x20, 0x00, +0x03, 0xf0, 0x74, 0xfc, 0x4c, 0x98, 0xf0, 0x63, 0x4d, 0x98, 0x30, 0x64, 0xf0, 0x89, 0x60, 0x82, +0x15, 0x98, 0x01, 0x28, 0x20, 0xd1, 0x5c, 0x48, 0xc0, 0x88, 0xe6, 0x28, 0x20, 0x78, 0x02, 0xd1, +0x80, 0x21, 0x08, 0x43, 0x01, 0xe0, 0x40, 0x06, 0x40, 0x0e, 0x18, 0xab, 0x20, 0x70, 0x57, 0x49, +0x18, 0x7c, 0xfa, 0xf2, 0x0e, 0xfa, 0x68, 0x20, 0x00, 0x5d, 0x60, 0x23, 0x00, 0x1f, 0x58, 0x43, +0x56, 0x4a, 0x11, 0x5c, 0x49, 0x1c, 0x11, 0x54, 0x20, 0x88, 0x30, 0x84, 0x4d, 0x98, 0x70, 0x22, +0x21, 0x00, 0xf9, 0xf2, 0xd8, 0xea, 0xa6, 0xe0, 0x21, 0x98, 0x00, 0x28, 0x1b, 0xd0, 0x01, 0x2f, +0x19, 0xd0, 0x28, 0x00, 0xf0, 0xf7, 0x2d, 0xfb, 0x40, 0x06, 0x81, 0x0d, 0x30, 0x8d, 0x7f, 0x22, +0xd2, 0x00, 0x90, 0x43, 0x08, 0x43, 0x30, 0x85, 0x29, 0x7a, 0x03, 0x29, 0x02, 0xd1, 0x90, 0x43, +0x28, 0x30, 0x30, 0x85, 0xf0, 0x69, 0xa0, 0x21, 0x88, 0x43, 0x01, 0x21, 0x09, 0x03, 0x08, 0x43, +0xf0, 0x61, 0x01, 0x20, 0x17, 0x90, 0xb0, 0x89, 0x20, 0x82, 0x14, 0x98, 0x75, 0x13, 0x2f, 0x5d, +0x01, 0x00, 0x00, 0x00, 0xc8, 0x35, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x7d, 0x35, 0xb7, 0xa4, +0x00, 0x28, 0x00, 0xd0, 0xe0, 0x66, 0x30, 0x8d, 0x80, 0x05, 0x40, 0x0e, 0xa0, 0x70, 0xe0, 0x6d, +0x80, 0x78, 0x00, 0x09, 0x08, 0x28, 0x10, 0xd1, 0x50, 0x98, 0xf9, 0xf2, 0x7e, 0xeb, 0x33, 0x49, +0x01, 0x22, 0xc9, 0x88, 0xe6, 0x29, 0x00, 0xd0, 0x00, 0x22, 0x00, 0x92, 0x02, 0x00, 0x40, 0xab, +0xdb, 0x78, 0x21, 0x00, 0x30, 0x00, 0xfa, 0xf2, 0x09, 0xfa, 0x01, 0x2f, 0x0f, 0xd1, 0x31, 0x49, +0x27, 0x48, 0x03, 0xf0, 0x74, 0xed, 0x18, 0xab, 0x29, 0x49, 0x18, 0x7c, 0xfa, 0xf2, 0xb3, 0xf9, +0xa0, 0x68, 0x79, 0x07, 0x08, 0x43, 0xa0, 0x60, 0x0a, 0x20, 0x30, 0x70, 0x09, 0xe0, 0x29, 0x49, +0x1f, 0x48, 0xc9, 0x43, 0x03, 0xf0, 0x62, 0xed, 0x32, 0x00, 0x21, 0x00, 0x28, 0x00, 0xf0, 0xf7, +0xd0, 0xf8, 0x32, 0x00, 0x21, 0x00, 0x28, 0x00, 0x03, 0xf0, 0x3a, 0xfb, 0x19, 0x49, 0x18, 0x48, +0xc9, 0x43, 0x03, 0xf0, 0x54, 0xed, 0x16, 0x48, 0xa1, 0x68, 0x03, 0xf0, 0x50, 0xed, 0x20, 0x00, +0x60, 0x30, 0x4e, 0x90, 0x01, 0x7a, 0x12, 0x48, 0x03, 0xf0, 0x48, 0xed, 0x20, 0x88, 0x30, 0x84, +0x4d, 0x98, 0x70, 0x22, 0x21, 0x00, 0xf9, 0xf2, 0x60, 0xea, 0x00, 0x2f, 0x0c, 0xd0, 0x4d, 0x99, +0x00, 0x91, 0x4e, 0x98, 0x01, 0x94, 0x02, 0x7a, 0x18, 0xab, 0x1b, 0x7c, 0x39, 0x00, 0x28, 0x00, +0xff, 0xf7, 0xd0, 0xf9, 0x00, 0x28, 0x2b, 0xd0, 0x17, 0x98, 0x00, 0x28, 0x1d, 0xd1, 0x16, 0x98, +0x84, 0x42, 0x1a, 0xd1, 0x16, 0x98, 0x01, 0x21, 0x80, 0x30, 0x15, 0xe0, 0x55, 0x55, 0x55, 0x55, +0xbb, 0xbb, 0xbb, 0xbb, 0x66, 0x66, 0x66, 0x66, 0x2c, 0x00, 0x00, 0x04, 0x9c, 0x3f, 0x00, 0x04, +0x4c, 0x7b, 0x02, 0x00, 0x38, 0x52, 0x00, 0x04, 0xff, 0xff, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, +0x1c, 0x3e, 0x00, 0x04, 0x77, 0x77, 0x77, 0x77, 0x01, 0x76, 0x28, 0x7a, 0x06, 0x28, 0x04, 0xd1, +0xc0, 0x01, 0x28, 0x18, 0x01, 0x6a, 0x49, 0x1c, 0x01, 0x62, 0x20, 0x98, 0xff, 0xf7, 0x6e, 0xf9, +0x4b, 0x98, 0x08, 0x21, 0x08, 0x42, 0x02, 0xd0, 0xdf, 0xf7, 0x6d, 0xf9, 0x0b, 0xe0, 0x64, 0x48, +0xf9, 0xf2, 0xa1, 0xff, 0x00, 0x28, 0x04, 0xd1, 0x62, 0x48, 0xf9, 0xf2, 0x9c, 0xff, 0x00, 0x28, +0x01, 0xd0, 0x04, 0x21, 0x01, 0x73, 0x00, 0x28, 0x20, 0x90, 0x00, 0xd0, 0x88, 0xe4, 0x00, 0x2d, +0x06, 0xd0, 0x0b, 0x20, 0x80, 0x01, 0x28, 0x18, 0x00, 0x69, 0x03, 0x21, 0xe2, 0xf7, 0xc0, 0xfb, +0x4b, 0x98, 0xc0, 0x04, 0x2b, 0xd5, 0x68, 0x46, 0x1a, 0x90, 0x23, 0xe0, 0x06, 0x20, 0xf0, 0xf2, +0xdb, 0xfa, 0x00, 0x04, 0x00, 0x0c, 0x06, 0x21, 0xee, 0xf2, 0xe4, 0xfc, 0x1a, 0x9c, 0x20, 0x00, +0x0c, 0x30, 0x01, 0xf0, 0x0c, 0xfa, 0x05, 0x00, 0x21, 0x00, 0x00, 0xf0, 0xa5, 0xfa, 0x01, 0x28, +0x10, 0xd0, 0x00, 0x2d, 0x0e, 0xd0, 0xa0, 0x78, 0x00, 0x07, 0x80, 0x0f, 0x01, 0x28, 0x09, 0xd1, +0x6a, 0x6b, 0x0a, 0xa9, 0x00, 0x2a, 0x02, 0xd0, 0x28, 0x00, 0x90, 0x47, 0x02, 0xe0, 0x28, 0x00, +0x03, 0xf0, 0x10, 0xee, 0x0a, 0xa8, 0xe1, 0xf7, 0xd4, 0xfc, 0x00, 0x28, 0xd6, 0xd1, 0x42, 0x49, +0x00, 0x20, 0x08, 0x70, 0xff, 0xf7, 0xe3, 0xfb, 0xf8, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x16, 0x00, +0x00, 0x1f, 0x03, 0x28, 0x40, 0xd8, 0x3d, 0x4a, 0x20, 0x1f, 0x01, 0x21, 0x52, 0x69, 0x81, 0x40, +0x11, 0x42, 0x39, 0xd0, 0x60, 0x23, 0x43, 0x43, 0x39, 0x4f, 0xf9, 0x5c, 0x00, 0x29, 0x04, 0xd0, +0x49, 0x1e, 0x09, 0x06, 0x09, 0x0e, 0xf9, 0x54, 0x07, 0xd1, 0xff, 0x21, 0x49, 0x1c, 0x81, 0x40, +0x11, 0x42, 0x02, 0xd0, 0x01, 0x20, 0xdd, 0xf7, 0x2d, 0xfe, 0x00, 0x2d, 0x24, 0xd0, 0x28, 0x69, +0x00, 0x28, 0x21, 0xd0, 0x2f, 0x4a, 0x00, 0x20, 0x18, 0x21, 0x41, 0x43, 0x53, 0x5c, 0x00, 0x2b, +0x1b, 0xd0, 0x89, 0x18, 0xc9, 0x78, 0xa1, 0x42, 0x17, 0xd1, 0x18, 0x21, 0x41, 0x43, 0x89, 0x18, +0x0c, 0x00, 0x29, 0x68, 0x0a, 0x34, 0xc9, 0x6d, 0xe3, 0x1c, 0x09, 0x8b, 0x5a, 0x1e, 0x09, 0x09, +0x49, 0x1c, 0x21, 0x80, 0x00, 0x21, 0x19, 0x70, 0x11, 0x78, 0x00, 0x29, 0x04, 0xd1, 0x01, 0x06, +0x09, 0x0e, 0x30, 0x00, 0xdf, 0xf7, 0x7b, 0xff, 0xf8, 0xbd, 0x40, 0x1c, 0x04, 0x28, 0xdb, 0xdb, +0xf8, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x08, 0x00, 0x1b, 0x4d, 0x06, 0x99, 0xaf, 0x88, 0x00, 0x26, +0x3c, 0x19, 0x5f, 0x68, 0x01, 0x29, 0x16, 0xd1, 0xeb, 0x88, 0x02, 0x00, 0x21, 0x00, 0x7e, 0x32, +0xe6, 0x2b, 0x09, 0xd0, 0x03, 0x7a, 0x01, 0x2b, 0x06, 0xd0, 0x40, 0x7a, 0x02, 0x28, 0x01, 0xd1, +0x89, 0x1d, 0x02, 0xe0, 0x06, 0x2b, 0x00, 0xd1, 0x11, 0x00, 0x38, 0x00, 0x12, 0x30, 0x06, 0x22, +0xf9, 0xf2, 0xf8, 0xe8, 0x05, 0xe0, 0x00, 0x92, 0x0b, 0x49, 0x23, 0x00, 0x3a, 0x00, 0x00, 0xf0, +0x15, 0xf8, 0xe8, 0x88, 0xe6, 0x28, 0x00, 0xd0, 0x0c, 0x26, 0x30, 0x00, 0xf8, 0xbd, 0x00, 0x00, +0xc4, 0x3f, 0x00, 0x04, 0xb0, 0x3f, 0x00, 0x04, 0x2c, 0x00, 0x00, 0x04, 0xb0, 0x76, 0x02, 0x00, +0x1c, 0x3e, 0x00, 0x04, 0x4c, 0x7b, 0x02, 0x00, 0x9c, 0x3f, 0x00, 0x04, 0xff, 0xb5, 0x83, 0xb0, +0x04, 0x00, 0x16, 0x00, 0x0f, 0x00, 0x91, 0x1c, 0x0c, 0x98, 0x00, 0x22, 0x02, 0x91, 0x13, 0x00, +0x69, 0x46, 0x0c, 0xc1, 0x01, 0x22, 0xf9, 0x79, 0xbb, 0x79, 0x09, 0x02, 0x19, 0x43, 0xe9, 0x29, +0x00, 0xd0, 0x00, 0x22, 0x79, 0x7b, 0xc9, 0x07, 0xc9, 0x0f, 0xec, 0xf2, 0x81, 0xfe, 0x05, 0x00, +0xf8, 0x79, 0xb9, 0x79, 0x00, 0x02, 0x08, 0x43, 0xea, 0x28, 0x03, 0xd1, 0x79, 0x7b, 0x08, 0x22, +0x11, 0x43, 0x79, 0x73, 0xb1, 0x21, 0x89, 0x00, 0x62, 0x18, 0x23, 0x7a, 0x01, 0x27, 0x21, 0x00, +0x3f, 0x03, 0x7e, 0x31, 0x01, 0x2b, 0x18, 0xd0, 0x06, 0x2b, 0x1c, 0xd1, 0x0b, 0x00, 0x06, 0x99, +0x30, 0x00, 0xec, 0xf2, 0x36, 0xfe, 0x03, 0x20, 0x00, 0x02, 0x20, 0x18, 0x00, 0x8b, 0x00, 0x28, +0x00, 0xd1, 0x00, 0x27, 0x3d, 0x43, 0x02, 0x98, 0x06, 0x22, 0x05, 0x80, 0x30, 0x00, 0x1a, 0x30, +0x69, 0x46, 0xf9, 0xf2, 0x98, 0xe8, 0x07, 0xb0, 0xf0, 0xbd, 0x0b, 0x00, 0x06, 0x99, 0x30, 0x00, +0xec, 0xf2, 0x1f, 0xfe, 0x23, 0xe0, 0x63, 0x7a, 0x02, 0x2b, 0x15, 0xd1, 0x06, 0x9b, 0x0a, 0x00, +0x06, 0x99, 0x9b, 0x1d, 0x30, 0x00, 0xec, 0xf2, 0x14, 0xfe, 0x01, 0x20, 0x40, 0x02, 0x05, 0x43, +0xb0, 0x79, 0xc0, 0x07, 0xdf, 0xd1, 0x02, 0x21, 0x20, 0x00, 0x03, 0xf0, 0xcc, 0xeb, 0x01, 0x28, +0xd9, 0xd1, 0x40, 0x03, 0x05, 0x43, 0xd6, 0xe7, 0xe6, 0x28, 0x01, 0xd1, 0x0b, 0x00, 0x00, 0xe0, +0x06, 0x9b, 0x30, 0x00, 0xec, 0xf2, 0xfd, 0xfd, 0xff, 0x20, 0x40, 0x1c, 0x05, 0x43, 0x04, 0x48, +0x00, 0x68, 0x00, 0x79, 0xc3, 0xe7, 0x02, 0x48, 0x00, 0x68, 0x00, 0x79, 0x70, 0x47, 0x00, 0x00, +0x54, 0xf4, 0x00, 0xc0, 0xff, 0xb5, 0x81, 0xb0, 0x05, 0x00, 0x00, 0x20, 0x1e, 0x4c, 0x28, 0x60, +0x20, 0x6a, 0x0e, 0x00, 0x17, 0x00, 0x00, 0x28, 0x17, 0xd0, 0xfd, 0xf7, 0xe3, 0xfe, 0x21, 0x6a, +0x00, 0x29, 0x10, 0xd0, 0x0a, 0x79, 0x03, 0x2a, 0x0d, 0xd1, 0x09, 0x6a, 0xf8, 0x76, 0xc1, 0x54, +0x01, 0x00, 0x00, 0x00, 0xc4, 0x39, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x89, 0x5a, 0xc2, 0x10, +0x00, 0x29, 0x0a, 0xd0, 0x29, 0x60, 0x21, 0x6a, 0x09, 0x68, 0x31, 0x60, 0x21, 0x6a, 0x49, 0x6a, +0x39, 0x60, 0x21, 0x6a, 0x0a, 0x6b, 0x04, 0x99, 0x0a, 0x60, 0xfd, 0xf7, 0xd1, 0xfe, 0x05, 0xb0, +0xf0, 0xbd, 0xf0, 0xb5, 0x87, 0xb0, 0x06, 0x00, 0x0f, 0x00, 0x00, 0x25, 0x04, 0xaa, 0x05, 0xa9, +0x06, 0xa8, 0x03, 0xab, 0xff, 0xf7, 0xd0, 0xff, 0x06, 0x9c, 0x00, 0x2c, 0x0a, 0xd0, 0x04, 0x9a, +0x01, 0x92, 0x33, 0x00, 0x00, 0x22, 0x00, 0x97, 0x05, 0x98, 0x11, 0x00, 0xa0, 0x47, 0x00, 0x28, +0x00, 0xd0, 0x01, 0x25, 0x28, 0x00, 0x07, 0xb0, 0xf0, 0xbd, 0x00, 0x00, 0xd8, 0x32, 0x01, 0xc0, +0x40, 0x21, 0x01, 0x81, 0x70, 0x47, 0xf8, 0xb5, 0x00, 0x24, 0x16, 0x00, 0x25, 0x00, 0x00, 0x28, +0x00, 0x94, 0x24, 0xd1, 0x30, 0x00, 0x69, 0x46, 0x00, 0xf0, 0xdc, 0xf8, 0x04, 0x00, 0x0c, 0xd0, +0x6b, 0x46, 0x1a, 0x88, 0x64, 0x2a, 0x04, 0xd3, 0xe1, 0x88, 0x03, 0x20, 0xfa, 0xf2, 0xcb, 0xf9, +0x02, 0xe0, 0x03, 0x20, 0xf0, 0xf2, 0x89, 0xf9, 0x60, 0x81, 0x6b, 0x46, 0x18, 0x88, 0x00, 0x28, +0x05, 0xd0, 0x40, 0x20, 0x20, 0x81, 0x18, 0x88, 0x00, 0x1f, 0xa0, 0x80, 0x07, 0xe0, 0x00, 0x2c, +0x05, 0xd0, 0x31, 0x00, 0x20, 0x00, 0xa5, 0x80, 0xfe, 0xf7, 0x9c, 0xf8, 0x00, 0x24, 0x20, 0x00, +0xf8, 0xbd, 0x70, 0xb5, 0x0c, 0x00, 0x00, 0x26, 0x01, 0x2b, 0x2d, 0xd0, 0x1c, 0x4d, 0x04, 0x2b, +0x04, 0xd0, 0x0f, 0x2b, 0x31, 0xd1, 0x1b, 0x48, 0x21, 0x00, 0x13, 0xe0, 0x00, 0xf0, 0x2f, 0xfb, +0x00, 0x28, 0x04, 0xd0, 0x02, 0x20, 0x01, 0xf0, 0x33, 0xf8, 0xe3, 0xf7, 0xaf, 0xff, 0x20, 0x89, +0x00, 0x19, 0xc1, 0x79, 0x82, 0x79, 0x08, 0x02, 0x10, 0x43, 0xe5, 0x28, 0x05, 0xd0, 0x11, 0x48, +0x21, 0x00, 0x14, 0x38, 0xf9, 0xf2, 0x11, 0xfe, 0x08, 0xe0, 0x0e, 0x48, 0x21, 0x00, 0x28, 0x30, +0xf9, 0xf2, 0x0b, 0xfe, 0x0c, 0x48, 0x01, 0x68, 0x49, 0x1c, 0x01, 0x60, 0x28, 0x68, 0x07, 0x22, +0x01, 0x21, 0xfe, 0xf7, 0x8f, 0xfc, 0x08, 0xe0, 0x06, 0x48, 0x21, 0x00, 0x14, 0x30, 0xf9, 0xf2, +0xfc, 0xfd, 0x60, 0x69, 0x02, 0x21, 0x03, 0xf0, 0x50, 0xeb, 0x30, 0x00, 0x70, 0xbd, 0x00, 0x00, +0xbc, 0x76, 0x02, 0x00, 0xc4, 0x3f, 0x00, 0x04, 0x50, 0xee, 0x00, 0xc0, 0x00, 0x28, 0x01, 0xdd, +0x00, 0x20, 0x04, 0xe0, 0x65, 0x21, 0xc9, 0x43, 0x88, 0x42, 0x00, 0xda, 0x08, 0x00, 0x40, 0x42, +0x00, 0x06, 0x00, 0x16, 0x70, 0x47, 0x66, 0x28, 0x01, 0xdd, 0x66, 0x20, 0x02, 0xe0, 0x00, 0x28, +0x00, 0xda, 0x00, 0x20, 0x00, 0x06, 0x00, 0x16, 0x70, 0x47, 0x00, 0x00, 0xf8, 0xb5, 0x04, 0x00, +0x32, 0xd0, 0x25, 0x00, 0x20, 0x35, 0x28, 0x7d, 0xe7, 0x7e, 0xc0, 0x06, 0x86, 0x0f, 0x20, 0x00, +0x14, 0x30, 0xf9, 0xf2, 0xc4, 0xe8, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x2e, 0x0d, 0xd0, 0x01, 0x2e, +0x0f, 0xd0, 0x02, 0x2e, 0x01, 0xd0, 0x03, 0x2e, 0x0f, 0xd1, 0x01, 0x06, 0xca, 0x0f, 0x41, 0x06, +0x49, 0x0e, 0x10, 0x00, 0xf0, 0xf2, 0x2c, 0xfa, 0x08, 0xe0, 0x38, 0x00, 0xf0, 0xf2, 0x09, 0xfa, +0x04, 0xe0, 0x38, 0x00, 0xf0, 0xf2, 0xee, 0xf9, 0x00, 0xe0, 0xff, 0x20, 0xe0, 0x76, 0x28, 0x7d, +0xc0, 0x06, 0x81, 0x0f, 0x0b, 0x20, 0x20, 0x56, 0xe0, 0xf7, 0xf4, 0xfa, 0xe0, 0x72, 0x07, 0x20, +0x20, 0x56, 0xe0, 0xf7, 0x0c, 0xfb, 0xe0, 0x71, 0xf8, 0xbd, 0x2b, 0x48, 0x10, 0xb5, 0xc1, 0x69, +0x44, 0x69, 0x0a, 0x05, 0x12, 0x0d, 0xd3, 0x08, 0x00, 0x6a, 0xdb, 0x00, 0xe3, 0x18, 0x04, 0x05, +0x24, 0x0d, 0xa2, 0x42, 0x05, 0xd1, 0x01, 0x22, 0x12, 0x03, 0x11, 0x40, 0x10, 0x40, 0x81, 0x42, +0x0e, 0xd1, 0x58, 0x68, 0x21, 0x49, 0x00, 0x68, 0x00, 0x0c, 0x88, 0x42, 0x08, 0xd0, 0x20, 0x49, +0x08, 0x68, 0x40, 0x1c, 0x08, 0x60, 0x00, 0x20, 0xe7, 0xf7, 0xb6, 0xff, 0x00, 0x20, 0x10, 0xbd, +0x01, 0x20, 0x10, 0xbd, 0xf8, 0xb5, 0x0d, 0x00, 0x07, 0x00, 0x1a, 0x48, 0x00, 0x26, 0x0e, 0x80, +0x00, 0x6b, 0x15, 0x49, 0x00, 0x0c, 0x14, 0x31, 0xc8, 0x60, 0xff, 0xf7, 0xce, 0xff, 0x00, 0x28, +0x20, 0xd0, 0x03, 0x20, 0x69, 0x46, 0xfa, 0xf2, 0x20, 0xf8, 0x04, 0x00, 0x1a, 0xd0, 0x40, 0x22, +0x21, 0x00, 0x38, 0x00, 0xf8, 0xf2, 0x18, 0xef, 0x38, 0x00, 0x26, 0x60, 0xff, 0xf7, 0x86, 0xff, +0x6b, 0x46, 0x19, 0x88, 0xe1, 0x80, 0x26, 0x61, 0x02, 0x21, 0x20, 0x00, 0x21, 0x73, 0x39, 0x00, +0x40, 0x30, 0x40, 0x31, 0x06, 0x00, 0xf9, 0xf2, 0x5a, 0xe8, 0x30, 0x88, 0x00, 0x1d, 0x28, 0x80, +0x20, 0x00, 0xf8, 0xbd, 0x00, 0x20, 0xf8, 0xbd, 0x9c, 0x40, 0x00, 0x04, 0xef, 0xbe, 0x00, 0x00, +0x60, 0x1b, 0x01, 0xc0, 0xc0, 0xa3, 0x00, 0x80, 0x0a, 0x49, 0x00, 0x20, 0x09, 0x68, 0x00, 0x29, +0x04, 0xd0, 0x09, 0x49, 0x09, 0x78, 0x00, 0x29, 0x00, 0xd0, 0x01, 0x20, 0x70, 0x47, 0x05, 0x49, +0x00, 0x20, 0x09, 0x68, 0x00, 0x29, 0x04, 0xd0, 0x03, 0x49, 0x49, 0x78, 0x00, 0x29, 0x00, 0xd0, +0x01, 0x20, 0x70, 0x47, 0xc8, 0xee, 0x00, 0xc0, 0xc4, 0x33, 0x01, 0xc0, 0xfe, 0xb5, 0x05, 0x00, +0x00, 0x20, 0x07, 0x00, 0x01, 0x90, 0x01, 0x20, 0x00, 0x90, 0x0c, 0x00, 0x28, 0x00, 0x00, 0xf0, +0xdf, 0xfe, 0xa0, 0x79, 0xc0, 0x07, 0x7d, 0xd1, 0x00, 0x2d, 0x09, 0xd0, 0xe8, 0x68, 0xc0, 0x04, +0x78, 0xd4, 0x28, 0x00, 0xe2, 0xf7, 0x5a, 0xfc, 0x00, 0x28, 0x5f, 0xd0, 0x02, 0x20, 0x5e, 0xe0, +0xa0, 0x78, 0x01, 0x07, 0x89, 0x0f, 0x2c, 0xd1, 0x00, 0x09, 0x04, 0x28, 0x29, 0xd1, 0x02, 0x20, +0x00, 0xf0, 0xd6, 0xfe, 0x06, 0x00, 0xb1, 0x20, 0x80, 0x00, 0x0d, 0xe0, 0xb1, 0x20, 0x80, 0x00, +0x31, 0x18, 0x06, 0x22, 0xa0, 0x1d, 0xfd, 0xf7, 0x63, 0xfa, 0x00, 0x28, 0x5a, 0xd0, 0x02, 0x21, +0x30, 0x00, 0xe8, 0xf7, 0x89, 0xf8, 0x06, 0x00, 0x00, 0x2e, 0xef, 0xd1, 0x03, 0x20, 0x00, 0xf0, +0xbf, 0xfe, 0x0c, 0xe0, 0xb1, 0x20, 0x80, 0x00, 0x31, 0x18, 0x06, 0x22, 0xa0, 0x1d, 0xfd, 0xf7, +0x4f, 0xfa, 0x00, 0x28, 0x46, 0xd0, 0x03, 0x21, 0x30, 0x00, 0xe8, 0xf7, 0x75, 0xf8, 0x06, 0x00, +0xf0, 0xd1, 0x20, 0x00, 0xe2, 0xf7, 0xfe, 0xfb, 0x00, 0x28, 0x01, 0x90, 0x15, 0xd0, 0x01, 0x98, +0xe9, 0xf7, 0xf8, 0xfd, 0x05, 0x00, 0x03, 0xd1, 0x03, 0x20, 0x00, 0xf0, 0xa1, 0xfe, 0x05, 0x00, +0x28, 0x7a, 0x00, 0x28, 0x01, 0xd0, 0x06, 0x28, 0x07, 0xd1, 0xa0, 0x78, 0x00, 0x07, 0x80, 0x0f, +0x02, 0x28, 0x02, 0xd1, 0xe0, 0x78, 0x80, 0x07, 0x15, 0xd5, 0x00, 0x2d, 0x13, 0xd0, 0x28, 0x7a, +0x02, 0x28, 0x04, 0xd1, 0x28, 0x00, 0xe2, 0xf7, 0x18, 0xfc, 0x00, 0x28, 0x0b, 0xd0, 0x28, 0x7a, +0x03, 0x28, 0x05, 0xd1, 0x68, 0x7a, 0x00, 0x28, 0x05, 0xd0, 0x01, 0xe0, 0x01, 0x20, 0x00, 0x90, +0x20, 0x7b, 0xc0, 0x07, 0x02, 0xd0, 0x01, 0x27, 0x2f, 0xe0, 0x0b, 0xe0, 0xa0, 0x78, 0x01, 0x07, +0x89, 0x0f, 0x09, 0xd1, 0x00, 0x09, 0x0d, 0x28, 0x06, 0xd1, 0xe0, 0x78, 0xc1, 0x07, 0x03, 0xd1, +0x80, 0x07, 0x01, 0xd4, 0x00, 0x20, 0xfe, 0xbd, 0x28, 0x7a, 0x21, 0x00, 0xba, 0x65, 0x50, 0xc5, +0x01, 0x00, 0x00, 0x00, 0xc0, 0x3d, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0xda, 0x80, 0x11, 0x7c, +0xe2, 0xf7, 0x85, 0xfb, 0x00, 0x99, 0x88, 0x42, 0x19, 0xd9, 0x01, 0x27, 0x07, 0x26, 0x03, 0x28, +0x00, 0xd0, 0x06, 0x26, 0x68, 0x7a, 0x0c, 0x34, 0x02, 0x28, 0x05, 0xd1, 0x32, 0x00, 0x21, 0x00, +0x28, 0x00, 0x03, 0xf0, 0x48, 0xea, 0x0a, 0xe0, 0x01, 0x98, 0x03, 0xf0, 0xdc, 0xea, 0x00, 0x28, +0x05, 0xd1, 0x32, 0x00, 0x21, 0x00, 0x28, 0x00, 0x00, 0x23, 0x03, 0xf0, 0x84, 0xea, 0x38, 0x00, +0xfe, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x00, 0xf0, 0x35, 0xfe, 0x04, 0x00, 0x28, 0x00, 0x00, 0xf0, +0x58, 0xfe, 0x01, 0x00, 0xc6, 0x68, 0x4c, 0x30, 0x02, 0x7d, 0x0b, 0x20, 0x80, 0x01, 0x0c, 0x31, +0x28, 0x18, 0x01, 0x2a, 0x0a, 0xd9, 0x0b, 0x7d, 0x07, 0x22, 0xd2, 0x01, 0x01, 0x2b, 0x02, 0xd1, +0xa2, 0x18, 0x12, 0x6a, 0x09, 0xe0, 0xa2, 0x18, 0xd2, 0x69, 0x06, 0xe0, 0x01, 0x2a, 0x05, 0xd1, +0x02, 0x69, 0x40, 0x32, 0x92, 0x7b, 0x52, 0x00, 0x52, 0x1c, 0x0a, 0x60, 0x00, 0x69, 0x40, 0x30, +0x81, 0x89, 0x09, 0x48, 0xf9, 0xf2, 0x52, 0xeb, 0xb0, 0x42, 0x0b, 0xd3, 0x28, 0x00, 0xe2, 0xf7, +0x66, 0xff, 0x00, 0x28, 0x06, 0xd0, 0xff, 0x20, 0x51, 0x30, 0x41, 0x5b, 0x00, 0x22, 0x28, 0x00, +0x03, 0xf0, 0x5c, 0xe9, 0x70, 0xbd, 0x00, 0x00, 0x88, 0x13, 0x00, 0x00, 0xf7, 0xb5, 0x84, 0xb0, +0x0d, 0x00, 0xfd, 0xf7, 0x7b, 0xfc, 0x02, 0x90, 0x04, 0x98, 0x01, 0x89, 0x0e, 0x18, 0x30, 0x00, +0xf4, 0x6d, 0x14, 0x30, 0x06, 0x99, 0x03, 0x90, 0x00, 0x20, 0x08, 0x60, 0x28, 0x7a, 0x03, 0x28, +0x6b, 0xd1, 0x68, 0x7a, 0x02, 0x28, 0x01, 0xd0, 0x03, 0x28, 0x7d, 0xd1, 0x28, 0x00, 0xf9, 0xf7, +0x1d, 0xfc, 0x00, 0x28, 0x61, 0xd1, 0xa0, 0x79, 0x01, 0x27, 0xc0, 0x07, 0x0c, 0xd1, 0x68, 0x7a, +0x02, 0x28, 0x09, 0xd1, 0xa0, 0x78, 0x01, 0x07, 0x89, 0x0f, 0x0d, 0xd1, 0x00, 0x09, 0x0c, 0x28, +0x06, 0xd1, 0x28, 0x00, 0xe2, 0xf7, 0x5f, 0xff, 0xa0, 0x78, 0x00, 0x07, 0x80, 0x0f, 0x03, 0xd1, +0xa0, 0x78, 0x00, 0x09, 0x05, 0x28, 0x20, 0xd0, 0x04, 0x98, 0x7f, 0x49, 0x00, 0x69, 0x88, 0x42, +0x0f, 0xd0, 0x04, 0x99, 0x28, 0x00, 0xe3, 0xf7, 0x84, 0xf9, 0x00, 0x28, 0x01, 0x90, 0x14, 0xd0, +0x04, 0x98, 0x00, 0x21, 0xfd, 0xf7, 0x2a, 0xfc, 0x01, 0x98, 0x04, 0x90, 0x01, 0x89, 0x0e, 0x18, +0xf4, 0x6d, 0x04, 0x98, 0xe3, 0xf7, 0x68, 0xfa, 0x00, 0x28, 0x06, 0xd1, 0x04, 0x99, 0x00, 0x22, +0x28, 0x00, 0xe3, 0xf7, 0x2f, 0xfb, 0x00, 0x28, 0x4c, 0xd0, 0x06, 0x99, 0x01, 0x20, 0x00, 0x90, +0x08, 0x60, 0x68, 0x7a, 0x02, 0x28, 0x09, 0xd1, 0xa0, 0x78, 0x00, 0x07, 0x80, 0x0f, 0x05, 0xd1, +0x32, 0x00, 0x21, 0x00, 0x28, 0x00, 0xed, 0xf7, 0xfe, 0xfb, 0x00, 0x90, 0x60, 0x36, 0x30, 0x7a, +0x2a, 0x00, 0x00, 0x21, 0xff, 0xf7, 0x1c, 0xfc, 0x00, 0x98, 0x00, 0x28, 0x03, 0xd0, 0x04, 0x98, +0x00, 0x21, 0xfd, 0xf7, 0xfb, 0xfb, 0x00, 0xf0, 0xcc, 0xf8, 0x00, 0x28, 0x2a, 0xd0, 0x02, 0x20, +0x00, 0xf0, 0xd0, 0xfd, 0xe3, 0xf7, 0x4c, 0xfd, 0x24, 0xe0, 0x68, 0x7a, 0x02, 0x28, 0x13, 0xd1, +0x28, 0x00, 0xe2, 0xf7, 0x93, 0xfe, 0x01, 0x00, 0xa0, 0x79, 0xc0, 0x07, 0x20, 0xd0, 0x28, 0x00, +0x00, 0xf0, 0x70, 0xfd, 0xcb, 0x21, 0x89, 0x00, 0x40, 0x18, 0x00, 0x68, 0x00, 0x28, 0x03, 0xd0, +0xe0, 0x78, 0xc0, 0x09, 0x25, 0xe0, 0xff, 0xe7, 0x28, 0x7a, 0x00, 0x27, 0x03, 0x28, 0x09, 0xd1, +0x68, 0x20, 0x80, 0x5d, 0x00, 0x1f, 0x04, 0x28, 0x04, 0xd3, 0x03, 0x9a, 0x31, 0x00, 0x28, 0x00, +0xf9, 0xf7, 0xb8, 0xfb, 0x02, 0x98, 0xfd, 0xf7, 0xdd, 0xfb, 0x38, 0x00, 0x07, 0xb0, 0xf0, 0xbd, +0xa0, 0x78, 0x02, 0x07, 0x92, 0x0f, 0x02, 0xd1, 0x00, 0x09, 0x05, 0x28, 0xe4, 0xd0, 0x08, 0x7d, +0x01, 0x28, 0xe1, 0xd1, 0x28, 0x00, 0xff, 0x30, 0x06, 0x22, 0xa1, 0x1d, 0x4a, 0x30, 0xfd, 0xf7, +0xe9, 0xf8, 0x00, 0x28, 0xd8, 0xd1, 0x5e, 0xe7, 0x10, 0xb5, 0xe2, 0xf7, 0x57, 0xfe, 0x00, 0x21, +0x60, 0x30, 0x01, 0x73, 0x41, 0x73, 0x81, 0x73, 0x10, 0xbd, 0xf8, 0xb5, 0x0d, 0x00, 0x06, 0x00, +0x17, 0x00, 0xfd, 0xf7, 0xb3, 0xfb, 0x04, 0x00, 0x00, 0x2e, 0x24, 0xd0, 0x30, 0x00, 0xe2, 0xf7, +0x45, 0xfe, 0x69, 0x21, 0x49, 0x5d, 0x31, 0x29, 0x16, 0xd0, 0x32, 0x29, 0x1b, 0xd1, 0x60, 0x30, +0x01, 0x7b, 0x01, 0x29, 0x17, 0xd1, 0x41, 0x7b, 0x00, 0x29, 0x04, 0xd0, 0x49, 0x1e, 0x09, 0x06, +0x09, 0x0e, 0x41, 0x73, 0x0f, 0xd1, 0x01, 0x2f, 0x0a, 0xd1, 0x28, 0x78, 0x41, 0x07, 0x49, 0x0f, +0x30, 0x00, 0xe3, 0xf7, 0x2b, 0xf9, 0x06, 0xe0, 0x30, 0x00, 0xff, 0xf7, 0xcd, 0xff, 0x02, 0xe0, +0x00, 0x21, 0x01, 0x73, 0x81, 0x73, 0x20, 0x00, 0xfd, 0xf7, 0x8c, 0xfb, 0xf8, 0xbd, 0xf3, 0xb5, +0x81, 0xb0, 0x0d, 0x00, 0x01, 0x98, 0xe2, 0xf7, 0x19, 0xfe, 0x04, 0x00, 0x38, 0x20, 0x40, 0x5d, +0x46, 0x07, 0x76, 0x0f, 0x30, 0x00, 0xf9, 0xf2, 0xf7, 0xfe, 0x01, 0x00, 0x01, 0x98, 0x00, 0x28, +0x29, 0xd0, 0x01, 0x98, 0x0b, 0x22, 0x92, 0x01, 0x80, 0x18, 0x00, 0x68, 0x00, 0x28, 0x22, 0xd0, +0x20, 0x00, 0x60, 0x30, 0x07, 0x00, 0x00, 0x7b, 0x01, 0x28, 0x1c, 0xd0, 0x20, 0x6f, 0xe3, 0xf7, +0x4b, 0xfa, 0x00, 0x28, 0x17, 0xd0, 0x20, 0x7d, 0x01, 0x28, 0x14, 0xd1, 0x28, 0x00, 0x40, 0x30, +0xf8, 0xf2, 0x0e, 0xee, 0xc1, 0x78, 0xc9, 0x06, 0x0d, 0xd5, 0x80, 0x78, 0x01, 0x07, 0x89, 0x0f, +0x02, 0x29, 0x08, 0xd1, 0x00, 0x09, 0x00, 0x07, 0x05, 0xd5, 0x01, 0x20, 0x38, 0x73, 0x01, 0x98, +0x31, 0x00, 0xe3, 0xf7, 0xe3, 0xf8, 0xfe, 0xbd, 0x30, 0x00, 0x00, 0x04, 0x1a, 0x48, 0x00, 0x68, +0x70, 0x47, 0x19, 0x48, 0x00, 0x68, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x70, 0x47, 0x00, 0x20, +0x70, 0x47, 0x10, 0xb5, 0xe6, 0xf7, 0x20, 0xfb, 0x00, 0x28, 0x05, 0xd0, 0xff, 0xf7, 0xf1, 0xff, +0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0x10, 0xb5, 0xe6, 0xf7, +0x1d, 0xfb, 0x00, 0x28, 0x05, 0xd0, 0xff, 0xf7, 0xe4, 0xff, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, +0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0xff, 0xf7, 0x97, 0xfd, 0x00, 0x28, +0x05, 0xd1, 0x05, 0x2c, 0x05, 0xd1, 0x03, 0xf0, 0x16, 0xe8, 0x00, 0x28, 0x01, 0xd0, 0x00, 0x20, +0x10, 0xbd, 0xe6, 0xf7, 0x7f, 0xfd, 0x10, 0xbd, 0x10, 0xf0, 0x00, 0xc0, 0x15, 0x48, 0x10, 0xb5, +0x00, 0x68, 0x00, 0x28, 0x16, 0xd1, 0x14, 0x48, 0x00, 0x22, 0x00, 0x68, 0x46, 0x21, 0xe7, 0xf2, +0x5a, 0xf9, 0x00, 0x28, 0x0e, 0xd1, 0x11, 0x49, 0x0a, 0x78, 0x00, 0x2a, 0x02, 0xd0, 0x08, 0x70, +0x16, 0x20, 0x05, 0xe0, 0x0e, 0x49, 0x0a, 0x78, 0x00, 0x2a, 0x03, 0xd0, 0x08, 0x70, 0x1b, 0x20, +0xe6, 0xf7, 0xb5, 0xfb, 0x10, 0xbd, 0x10, 0xb5, 0x0a, 0x4c, 0xa0, 0x88, 0x00, 0x28, 0x07, 0xd0, +0xff, 0xf7, 0x64, 0xfd, 0x00, 0x28, 0x03, 0xd0, 0xe1, 0xf7, 0xbc, 0xfa, 0x00, 0x20, 0xa0, 0x80, +0x10, 0xbd, 0x00, 0x00, 0xd0, 0xef, 0x00, 0xc0, 0x18, 0xee, 0x00, 0xc0, 0x33, 0xd4, 0x86, 0x6b, +0x01, 0x00, 0x00, 0x00, 0xbc, 0x41, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0xd8, 0x79, 0xc9, 0x6a, +0x70, 0xef, 0x00, 0xc0, 0x71, 0xef, 0x00, 0xc0, 0x34, 0xf0, 0x00, 0xc0, 0x36, 0x49, 0x37, 0x4a, +0x80, 0x00, 0x09, 0x58, 0x12, 0x58, 0x91, 0x42, 0x01, 0xd2, 0x01, 0x20, 0x70, 0x47, 0x33, 0x4a, +0x12, 0x1f, 0x12, 0x68, 0x00, 0x2a, 0x06, 0xd0, 0x30, 0x4a, 0x10, 0x32, 0x10, 0x58, 0x88, 0x42, +0x01, 0xd9, 0x02, 0x20, 0x70, 0x47, 0x00, 0x20, 0x70, 0x47, 0x70, 0xb5, 0x2c, 0x4a, 0x01, 0x69, +0x91, 0x42, 0x01, 0xd0, 0x00, 0x20, 0x70, 0xbd, 0x27, 0x49, 0xc0, 0x7b, 0x10, 0x31, 0x0c, 0x5c, +0xfd, 0xf7, 0xb6, 0xfa, 0xa1, 0x00, 0x24, 0x4b, 0x24, 0x4c, 0x5a, 0x58, 0x64, 0x58, 0xa2, 0x42, +0x04, 0xd9, 0x22, 0x4d, 0x2d, 0x1f, 0x2c, 0x68, 0x64, 0x1c, 0x2c, 0x60, 0x52, 0x1e, 0x5a, 0x50, +0xfd, 0xf7, 0xaa, 0xfa, 0xe6, 0xe7, 0xff, 0xb5, 0x81, 0xb0, 0x00, 0x24, 0x06, 0x00, 0x1f, 0x00, +0x1b, 0x48, 0x86, 0x42, 0x06, 0xd0, 0x03, 0x9a, 0x02, 0x99, 0x30, 0x00, 0xf9, 0xf2, 0x90, 0xf9, +0x05, 0xb0, 0xf0, 0xbd, 0xfd, 0xf7, 0x94, 0xfa, 0x00, 0x90, 0x38, 0x00, 0xff, 0xf7, 0xb6, 0xff, +0x05, 0x00, 0x1c, 0xd0, 0x03, 0x9a, 0x02, 0x99, 0x30, 0x00, 0xf9, 0xf2, 0x81, 0xf9, 0x04, 0x00, +0x15, 0xd0, 0x0d, 0x49, 0xe0, 0x7b, 0x10, 0x31, 0x0f, 0x54, 0xb8, 0x00, 0x10, 0x39, 0x0a, 0x58, +0x52, 0x1c, 0x0a, 0x50, 0x60, 0x7b, 0x01, 0x21, 0x08, 0x43, 0x60, 0x73, 0x09, 0x48, 0x02, 0x2d, +0xa0, 0x61, 0x04, 0xd1, 0x05, 0x49, 0x09, 0x1f, 0x08, 0x68, 0x40, 0x1e, 0x08, 0x60, 0x00, 0x98, +0xfd, 0xf7, 0x72, 0xfa, 0x20, 0x00, 0xd3, 0xe7, 0xb8, 0x49, 0x00, 0x04, 0x74, 0x01, 0x00, 0x04, +0x30, 0x00, 0x00, 0x04, 0xf7, 0x41, 0x02, 0x00, 0xf0, 0xb5, 0x00, 0x25, 0x91, 0xb0, 0xeb, 0xf7, +0xc8, 0xfa, 0xff, 0x4e, 0x34, 0x69, 0xfe, 0x4f, 0x40, 0x37, 0x38, 0x68, 0x00, 0x28, 0x14, 0xda, +0x14, 0x20, 0xeb, 0xf7, 0x19, 0xf8, 0xfb, 0x48, 0xc0, 0x6b, 0x00, 0x28, 0x0b, 0xd0, 0xfa, 0x49, +0x88, 0x68, 0x40, 0x1c, 0x88, 0x60, 0x40, 0x20, 0xdd, 0xf7, 0xa2, 0xf8, 0x78, 0x68, 0x40, 0x00, +0x40, 0x08, 0x78, 0x60, 0x01, 0xe0, 0xf5, 0x48, 0x38, 0x60, 0xf5, 0x49, 0x20, 0x00, 0x08, 0x40, +0xf4, 0x49, 0x09, 0x78, 0xf0, 0x4f, 0x08, 0x43, 0x79, 0x6a, 0x08, 0x43, 0x78, 0x62, 0xff, 0xf7, +0xf2, 0xfe, 0x00, 0x28, 0x17, 0xd0, 0x78, 0x6a, 0x00, 0x28, 0x14, 0xd1, 0xee, 0x48, 0x00, 0x22, +0x00, 0x68, 0x1b, 0x21, 0xe7, 0xf2, 0x81, 0xf8, 0x79, 0x6a, 0x08, 0x43, 0x78, 0x62, 0x78, 0x6a, +0x00, 0x28, 0x08, 0xd1, 0xe8, 0x48, 0x00, 0x22, 0x00, 0x68, 0x08, 0x21, 0xe7, 0xf2, 0x75, 0xf8, +0x79, 0x6a, 0x08, 0x43, 0x78, 0x62, 0xed, 0xf2, 0x03, 0xfe, 0xe0, 0x01, 0x01, 0xd5, 0xe3, 0x48, +0x30, 0x61, 0x20, 0x06, 0x0c, 0xd5, 0xe2, 0x49, 0x08, 0x68, 0x40, 0x1c, 0x08, 0x60, 0xe6, 0xf7, +0x7b, 0xfc, 0x00, 0x28, 0x02, 0xd0, 0x04, 0x20, 0xdd, 0xf7, 0x62, 0xf8, 0xe5, 0xf7, 0xe8, 0xfc, +0xa0, 0x03, 0x01, 0xd5, 0xdb, 0x48, 0x30, 0x61, 0x00, 0x2c, 0x0b, 0xda, 0xef, 0xf7, 0x7a, 0xfe, +0x00, 0x28, 0x01, 0xd0, 0x04, 0x20, 0x01, 0xe0, 0x01, 0x20, 0x00, 0x03, 0xdd, 0xf7, 0x50, 0xf8, +0xce, 0x48, 0x30, 0x61, 0x20, 0x05, 0x0a, 0xd5, 0xef, 0xf7, 0x6c, 0xfe, 0x00, 0x28, 0x03, 0xd0, +0x04, 0x20, 0xdd, 0xf7, 0x45, 0xf8, 0x00, 0xe0, 0x01, 0x25, 0xcf, 0x48, 0x30, 0x61, 0xcf, 0x48, +0x61, 0x01, 0x10, 0x90, 0x7e, 0xd5, 0xef, 0xf7, 0x5d, 0xfe, 0x00, 0x28, 0x08, 0xd0, 0x04, 0x20, +0xdd, 0xf7, 0x36, 0xf8, 0xca, 0x48, 0x30, 0x61, 0xc0, 0x43, 0x84, 0x43, 0x60, 0x01, 0xf1, 0xd5, +0x00, 0x20, 0x03, 0x90, 0x02, 0x90, 0x07, 0xaa, 0x08, 0xa9, 0x0c, 0xa8, 0x06, 0xab, 0xe0, 0xf7, +0x33, 0xfe, 0x00, 0x28, 0x04, 0x90, 0x0d, 0xd0, 0x02, 0x20, 0x05, 0x43, 0x00, 0x06, 0x84, 0x43, +0xc0, 0x43, 0x30, 0x61, 0x08, 0x98, 0x0c, 0x30, 0x00, 0xf0, 0xb7, 0xfb, 0x00, 0x28, 0x02, 0x90, +0x00, 0xd1, 0x04, 0x90, 0xe6, 0xf7, 0xac, 0xf9, 0x00, 0x28, 0x06, 0xd0, 0xb9, 0x49, 0x00, 0x20, +0xc8, 0x61, 0xb8, 0x48, 0x20, 0x21, 0x40, 0x30, 0x01, 0x60, 0x04, 0x98, 0x00, 0x28, 0x7e, 0xd0, +0x02, 0x98, 0x02, 0xf0, 0x96, 0xee, 0x00, 0x28, 0x7a, 0xd0, 0x02, 0x98, 0x00, 0x7a, 0x01, 0x28, +0x26, 0xd1, 0x08, 0x99, 0x00, 0x29, 0x4b, 0xd0, 0x02, 0x98, 0x12, 0x31, 0xe8, 0xf7, 0x32, 0xff, +0x00, 0x28, 0x45, 0xd0, 0x10, 0x99, 0x00, 0x20, 0xf8, 0xf2, 0x5c, 0xec, 0x9d, 0x48, 0xc0, 0x38, +0x80, 0x6b, 0xb8, 0x6a, 0x00, 0x28, 0x3b, 0xd1, 0xa7, 0x48, 0x00, 0x68, 0x40, 0x1c, 0x37, 0xd0, +0x01, 0x21, 0x02, 0x98, 0x89, 0x02, 0x02, 0xf0, 0x9c, 0xee, 0x01, 0x20, 0xb8, 0x62, 0x02, 0x98, +0x0b, 0x21, 0x89, 0x01, 0x40, 0x18, 0x00, 0x69, 0x04, 0x21, 0xe1, 0xf7, 0x17, 0xfd, 0x27, 0xe0, +0x00, 0x20, 0xf4, 0xf7, 0xe2, 0xfe, 0x03, 0x90, 0xe6, 0xf7, 0x60, 0xf9, 0x00, 0x28, 0x1d, 0xd0, +0x02, 0x98, 0xe3, 0xf7, 0x37, 0xf9, 0x01, 0x90, 0xed, 0xf2, 0xae, 0xfb, 0x01, 0x9a, 0xff, 0x32, +0x52, 0x1c, 0x0f, 0x92, 0xd1, 0x61, 0x90, 0x61, 0x07, 0x99, 0x0f, 0x9a, 0x4b, 0x68, 0x08, 0x68, +0x53, 0x62, 0x00, 0xe0, 0xd4, 0xe0, 0x6b, 0x46, 0x10, 0x62, 0x1a, 0x8b, 0x0c, 0x31, 0x0c, 0x3a, +0x05, 0x20, 0xf6, 0xf2, 0xae, 0xfa, 0x0f, 0x9a, 0x80, 0x78, 0x90, 0x62, 0x02, 0xf0, 0x70, 0xef, +0xe5, 0xf7, 0xed, 0xfa, 0x00, 0x06, 0x00, 0x0e, 0x05, 0x90, 0x0c, 0x98, 0xc1, 0x7e, 0x0b, 0x91, +0xc1, 0x7a, 0x0a, 0x91, 0xc1, 0x79, 0x09, 0x91, 0xff, 0xf7, 0x2c, 0xfb, 0x0c, 0x99, 0x02, 0x98, +0xf4, 0xf7, 0x7c, 0xf8, 0x0c, 0x98, 0x0b, 0x99, 0xc1, 0x76, 0x0a, 0x99, 0xc1, 0x72, 0x09, 0x99, +0xc1, 0x71, 0xe6, 0xf7, 0x28, 0xf9, 0x00, 0x28, 0x75, 0xd0, 0xff, 0xf7, 0xf4, 0xfd, 0x00, 0x28, +0x71, 0xd0, 0x03, 0x98, 0x00, 0x28, 0x6e, 0xd0, 0x05, 0x98, 0x00, 0x28, 0x01, 0xe0, 0x9d, 0xe0, +0x8c, 0xe0, 0x68, 0xd1, 0xe6, 0xf7, 0x12, 0xf9, 0x00, 0x28, 0x64, 0xd1, 0xff, 0xf7, 0xa0, 0xfb, +0x00, 0x28, 0x03, 0xd1, 0xe6, 0xf7, 0x19, 0xf9, 0x00, 0x28, 0x5c, 0xd0, 0xf8, 0x69, 0x01, 0x28, +0x07, 0xd0, 0x6e, 0x48, 0x00, 0x88, 0x00, 0x28, 0x52, 0xd0, 0x6d, 0x48, 0x00, 0x88, 0x00, 0x28, +0x4e, 0xd0, 0x6b, 0x46, 0x1a, 0x8b, 0x07, 0x99, 0x0c, 0x3a, 0x0c, 0x31, 0x05, 0x20, 0xf6, 0xf2, +0x60, 0xfa, 0x01, 0x00, 0x02, 0x98, 0xf6, 0xf7, 0x13, 0xf8, 0x01, 0x90, 0x65, 0x48, 0x00, 0x68, +0x00, 0x28, 0x06, 0xd0, 0xf8, 0xf2, 0xb6, 0xeb, 0x02, 0x21, 0x08, 0x43, 0x01, 0x99, 0x08, 0x42, +0x34, 0xd1, 0x55, 0x48, 0x00, 0x22, 0x00, 0x68, 0x1b, 0x21, 0xe6, 0xf2, 0x4e, 0xff, 0x00, 0x28, +0x2c, 0xd1, 0x02, 0x98, 0x02, 0xf0, 0x14, 0xee, 0x00, 0x28, 0x27, 0xd1, 0x5a, 0x48, 0xf8, 0xf2, +0xa2, 0xeb, 0x01, 0x99, 0x08, 0x42, 0x21, 0xd1, 0x55, 0x48, 0x00, 0x88, 0x00, 0x28, 0x1d, 0xd0, +0x56, 0x49, 0x01, 0x98, 0x08, 0x42, 0x19, 0xd1, 0x6b, 0x46, 0x1a, 0x8b, 0x1e, 0x26, 0x14, 0xe0, +0x01, 0x00, 0x00, 0x00, 0xb8, 0x45, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x8b, 0xa3, 0x1a, 0x06, +0x07, 0x99, 0x02, 0x98, 0x02, 0xf0, 0xfa, 0xee, 0x00, 0x28, 0x11, 0xd0, 0x02, 0x20, 0x85, 0x43, +0xf4, 0xf7, 0x67, 0xfe, 0x05, 0x20, 0xef, 0xf2, 0x8f, 0xfb, 0x00, 0x04, 0x00, 0x0c, 0x05, 0x21, +0xed, 0xf2, 0x98, 0xfd, 0x02, 0x98, 0x01, 0x21, 0x02, 0xf0, 0xdc, 0xed, 0x02, 0xe0, 0x04, 0xe0, +0x01, 0x20, 0x38, 0x62, 0x00, 0x20, 0x78, 0x62, 0x0c, 0xe0, 0xf8, 0x69, 0x01, 0x28, 0x07, 0xd0, +0x3f, 0x48, 0x00, 0x88, 0x00, 0x28, 0x05, 0xd0, 0x3e, 0x48, 0x00, 0x88, 0x00, 0x28, 0x01, 0xd0, +0x01, 0x20, 0x38, 0x62, 0x02, 0x98, 0xde, 0xf7, 0x16, 0xfa, 0x00, 0x28, 0x14, 0xd0, 0x05, 0x98, +0x00, 0x28, 0x11, 0xd0, 0xff, 0xf7, 0x69, 0xfd, 0x00, 0x28, 0x0a, 0xd0, 0xe4, 0xf7, 0x31, 0xfc, +0x00, 0x28, 0x06, 0xd1, 0xe4, 0xf7, 0x17, 0xfc, 0x00, 0x28, 0x02, 0xd1, 0x01, 0x20, 0x38, 0x62, +0x02, 0xe0, 0x08, 0x20, 0xdc, 0xf7, 0xf6, 0xfe, 0x38, 0x6a, 0x01, 0x28, 0x08, 0xd1, 0x00, 0x20, +0xf8, 0x61, 0x2c, 0x49, 0x08, 0x80, 0x02, 0x20, 0x85, 0x43, 0x03, 0x20, 0xe6, 0xf7, 0x53, 0xf9, +0x24, 0x48, 0x30, 0x61, 0x20, 0x01, 0x7e, 0xd5, 0x00, 0x20, 0x0b, 0x90, 0x30, 0x68, 0x80, 0x07, +0x05, 0xd5, 0x00, 0x21, 0x01, 0x20, 0xe7, 0xf7, 0x2b, 0xfc, 0x0c, 0x90, 0x0b, 0xe0, 0x30, 0x68, +0xc0, 0x07, 0x71, 0xd0, 0x38, 0x78, 0xe9, 0xf7, 0x80, 0xf9, 0x0c, 0x90, 0xe1, 0xf7, 0x93, 0xff, +0x00, 0x28, 0xf6, 0xd0, 0x0c, 0x98, 0x00, 0x28, 0xf3, 0xd0, 0x0c, 0x98, 0x80, 0x30, 0xc0, 0x68, +0x00, 0x28, 0x72, 0xd0, 0x40, 0x68, 0x20, 0x30, 0x0b, 0x90, 0x0c, 0x98, 0xf1, 0xf7, 0x7c, 0xf9, +0xed, 0xf2, 0xa4, 0xfa, 0x0c, 0x9a, 0x0b, 0x23, 0x9b, 0x01, 0xd2, 0x18, 0x12, 0x69, 0x51, 0x62, +0x10, 0x62, 0x27, 0xe0, 0x00, 0xa5, 0x00, 0x80, 0xc0, 0xa8, 0x00, 0x80, 0x90, 0xf0, 0x00, 0xc0, +0xff, 0xff, 0xff, 0x7f, 0x80, 0x88, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x04, 0x18, 0xee, 0x00, 0xc0, +0xff, 0xff, 0xff, 0xfe, 0x80, 0xef, 0x00, 0xc0, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xf7, 0xff, 0xff, +0xde, 0x55, 0x00, 0x04, 0xff, 0xff, 0xff, 0xfb, 0x00, 0xa6, 0x00, 0x80, 0x8c, 0xf0, 0x00, 0xc0, +0x04, 0x36, 0x01, 0xc0, 0x48, 0xf0, 0x00, 0xc0, 0xc8, 0xee, 0x00, 0xc0, 0xd8, 0xee, 0x00, 0xc0, +0x0b, 0x80, 0x00, 0x00, 0x0b, 0x98, 0x00, 0x28, 0x37, 0xd0, 0x0b, 0x98, 0x80, 0x7a, 0xc0, 0x07, +0x33, 0xd0, 0x0c, 0x98, 0x40, 0x7a, 0x02, 0x28, 0x2f, 0xd1, 0x0c, 0x98, 0xe1, 0xf7, 0x43, 0xff, +0x01, 0x28, 0x2a, 0xd1, 0x0c, 0x98, 0x00, 0xf0, 0xa1, 0xf9, 0x8f, 0x21, 0x89, 0x00, 0x0a, 0x90, +0x40, 0x18, 0x09, 0x90, 0x20, 0x30, 0x00, 0x79, 0x00, 0x28, 0x1e, 0xd0, 0x09, 0x9a, 0x0c, 0x98, +0x25, 0x32, 0x0e, 0x92, 0x09, 0x99, 0x2d, 0x31, 0xf3, 0xf2, 0x26, 0xfe, 0x0a, 0x98, 0x40, 0x6c, +0x00, 0x28, 0x12, 0xd0, 0x01, 0xe0, 0x7f, 0xe0, 0x42, 0xe0, 0x09, 0x99, 0x0e, 0x9a, 0x0c, 0x98, +0x2e, 0x31, 0x02, 0xf0, 0x28, 0xee, 0x0a, 0x98, 0x13, 0x21, 0x49, 0x01, 0x40, 0x18, 0x80, 0x7b, +0x80, 0x07, 0x02, 0xd5, 0x0c, 0x98, 0x02, 0xf0, 0x22, 0xee, 0x0b, 0x98, 0x80, 0x7a, 0x80, 0x07, +0x2e, 0xd5, 0xae, 0x48, 0x80, 0x6b, 0x0d, 0x90, 0x0c, 0x98, 0x02, 0xf0, 0x48, 0xed, 0x00, 0x28, +0x26, 0xd0, 0xab, 0x48, 0x00, 0x68, 0x40, 0x1c, 0x22, 0xd0, 0x10, 0x98, 0xf8, 0xf2, 0x9c, 0xea, +0x0d, 0x99, 0x40, 0x18, 0x10, 0x99, 0xf8, 0xf2, 0xa8, 0xea, 0x0c, 0x99, 0x0b, 0x22, 0x92, 0x01, +0x89, 0x18, 0x09, 0x69, 0x40, 0x31, 0x89, 0x89, 0x48, 0x43, 0xa2, 0x49, 0x88, 0x42, 0x0f, 0xd3, +0xb8, 0x6a, 0x00, 0x28, 0x0c, 0xd0, 0x10, 0x99, 0x00, 0x20, 0xf8, 0xf2, 0x96, 0xea, 0x01, 0x21, +0x0c, 0x98, 0x49, 0x02, 0x02, 0xf0, 0xde, 0xec, 0x00, 0x20, 0xb8, 0x62, 0x02, 0xf0, 0xf2, 0xed, +0xff, 0xf7, 0x8b, 0xfc, 0x00, 0x28, 0x35, 0xd0, 0x02, 0x20, 0x00, 0xf0, 0x8f, 0xf9, 0x0a, 0x90, +0xe2, 0xf7, 0x82, 0xff, 0x09, 0x90, 0x0a, 0x98, 0x00, 0xf0, 0x38, 0xf9, 0x08, 0x90, 0x0a, 0x98, +0xe2, 0xf7, 0x7c, 0xff, 0x07, 0x90, 0x07, 0x20, 0xe6, 0xf7, 0x75, 0xf8, 0x8e, 0x48, 0x01, 0x69, +0x02, 0x6a, 0x07, 0x98, 0x00, 0x88, 0x02, 0x28, 0x1c, 0xd1, 0x00, 0x29, 0x01, 0xd0, 0x01, 0x2a, +0x18, 0xd1, 0x09, 0x98, 0xc0, 0x30, 0x00, 0x7e, 0x00, 0x28, 0x13, 0xd1, 0x07, 0x98, 0x40, 0x68, +0xc0, 0x07, 0x07, 0xd0, 0x08, 0x98, 0x09, 0x21, 0x89, 0x01, 0x40, 0x18, 0xc0, 0x69, 0x00, 0x28, +0x08, 0xd1, 0x04, 0xe0, 0xff, 0x20, 0xdd, 0xf7, 0x55, 0xfa, 0x00, 0x28, 0x02, 0xd0, 0x13, 0x20, +0xe6, 0xf7, 0x51, 0xf8, 0x7d, 0x48, 0x30, 0x61, 0xa0, 0x01, 0x01, 0xd5, 0x7c, 0x48, 0x30, 0x61, +0x00, 0x2d, 0x05, 0xd0, 0x7b, 0x48, 0x07, 0x22, 0x00, 0x68, 0x29, 0x00, 0xfd, 0xf7, 0xc8, 0xfd, +0xe0, 0x00, 0x78, 0xd5, 0x30, 0x68, 0xc0, 0x07, 0x73, 0xd0, 0x77, 0x48, 0x80, 0x6a, 0x00, 0x06, +0x00, 0x0e, 0x38, 0x70, 0xe9, 0xf7, 0x79, 0xf8, 0x05, 0x00, 0x50, 0xd0, 0xff, 0xf7, 0x35, 0xfc, +0x00, 0x28, 0x10, 0xd0, 0x28, 0x00, 0xe2, 0xf7, 0x31, 0xff, 0x6f, 0x49, 0x49, 0x6b, 0x3a, 0x78, +0x01, 0x23, 0x93, 0x40, 0x19, 0x42, 0x01, 0xd0, 0x00, 0x21, 0x00, 0xe0, 0x01, 0x21, 0x81, 0x70, +0x06, 0x20, 0xe6, 0xf7, 0x20, 0xf8, 0x0b, 0x20, 0x80, 0x01, 0x2b, 0x18, 0x18, 0x69, 0x40, 0x30, +0xc1, 0x7d, 0x49, 0x1c, 0x09, 0x06, 0x09, 0x0e, 0xc1, 0x75, 0x18, 0x69, 0x40, 0x30, 0x82, 0x7d, +0x91, 0x42, 0x7e, 0xd1, 0x00, 0x21, 0xc1, 0x75, 0x18, 0x69, 0xc0, 0x7b, 0x00, 0x28, 0xf8, 0xd1, +0x5d, 0x48, 0x41, 0x6b, 0x28, 0x00, 0x80, 0x30, 0x02, 0x7a, 0x01, 0x23, 0x93, 0x40, 0xff, 0x22, +0x52, 0x1c, 0x13, 0x43, 0x58, 0x4a, 0x19, 0x43, 0x51, 0x63, 0x69, 0x7a, 0x02, 0x29, 0x16, 0xd1, +0x51, 0x49, 0x00, 0x7a, 0x40, 0x31, 0x88, 0x60, 0x4f, 0x48, 0x01, 0x69, 0x00, 0x6a, 0x01, 0x29, +0x01, 0xd0, 0x01, 0x28, 0x0b, 0xd1, 0x28, 0x7a, 0x02, 0x28, 0x04, 0xd0, 0x28, 0x00, 0xf8, 0xf7, +0xe1, 0xfe, 0x00, 0x28, 0x03, 0xd0, 0x01, 0x21, 0x28, 0x00, 0xe2, 0xf7, 0x33, 0xfb, 0x28, 0x7a, +0x03, 0x28, 0x16, 0xd1, 0x28, 0x00, 0xe7, 0xf7, 0x62, 0xfd, 0x0c, 0x90, 0x80, 0x68, 0x80, 0x05, +0x0f, 0xd5, 0x0c, 0x98, 0xf7, 0xf7, 0xa3, 0xfb, 0x00, 0x28, 0x03, 0xd0, 0x08, 0x21, 0x28, 0x00, +0xf7, 0xf7, 0x43, 0xfb, 0x0c, 0x98, 0x01, 0x21, 0x80, 0x68, 0x49, 0x02, 0x88, 0x43, 0x0c, 0x99, +0x88, 0x60, 0x3e, 0x48, 0x30, 0x61, 0xe0, 0x02, 0x01, 0xd5, 0x3d, 0x48, 0x30, 0x61, 0xe0, 0x07, +0x02, 0xd0, 0x01, 0x20, 0xc0, 0x43, 0x30, 0x61, 0xa0, 0x07, 0x0d, 0xd5, 0x78, 0x68, 0x40, 0x1c, +0x78, 0x60, 0x10, 0x20, 0xdc, 0xf7, 0x4e, 0xfd, 0x02, 0x20, 0xc0, 0x43, 0x30, 0x61, 0x01, 0x20, +0xc0, 0x03, 0x84, 0x43, 0xc0, 0x43, 0x30, 0x61, 0x20, 0x04, 0x05, 0xd5, 0x31, 0x48, 0x07, 0x22, +0x00, 0x68, 0x01, 0x21, 0xfd, 0xf7, 0x2c, 0xfd, 0x60, 0x07, 0x05, 0xd5, 0xaa, 0x47, 0xa4, 0xd5, +0x01, 0x00, 0x00, 0x00, 0xb4, 0x49, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x7f, 0xcc, 0x6f, 0xb2, +0xf8, 0x68, 0x40, 0x1c, 0xf8, 0x60, 0x04, 0x20, 0xc0, 0x43, 0x30, 0x61, 0x20, 0x07, 0x05, 0xd5, +0x38, 0x69, 0x40, 0x1c, 0x38, 0x61, 0x08, 0x20, 0xc0, 0x43, 0x30, 0x61, 0xe0, 0x06, 0x07, 0xd5, +0x78, 0x69, 0x40, 0x1c, 0x00, 0xe0, 0x17, 0xe0, 0x78, 0x61, 0x10, 0x20, 0xc0, 0x43, 0x30, 0x61, +0xa0, 0x06, 0x05, 0xd5, 0xb8, 0x69, 0x40, 0x1c, 0xb8, 0x61, 0x20, 0x20, 0xc0, 0x43, 0x30, 0x61, +0xf8, 0x69, 0x00, 0x28, 0x01, 0xd1, 0xea, 0xf7, 0x30, 0xff, 0x1c, 0x49, 0x88, 0x68, 0x4a, 0x0d, +0x10, 0x43, 0x88, 0x60, 0x11, 0xb0, 0xf0, 0xbd, 0x14, 0x4b, 0x58, 0x6b, 0x39, 0x78, 0x01, 0x22, +0x8a, 0x40, 0x90, 0x43, 0xd9, 0x0d, 0x08, 0x43, 0x58, 0x63, 0x8a, 0xe7, 0x70, 0xb5, 0x04, 0x00, +0x0d, 0x00, 0x40, 0x20, 0xe9, 0xf7, 0x6d, 0xfb, 0x00, 0x28, 0x07, 0xd1, 0x0f, 0x49, 0x01, 0x20, +0x80, 0x02, 0xc8, 0x60, 0x29, 0x00, 0x20, 0x00, 0xff, 0xf7, 0x3a, 0xfc, 0x01, 0x20, 0x70, 0xbd, +0x00, 0xa8, 0x00, 0x80, 0x8c, 0xf0, 0x00, 0xc0, 0x58, 0x1b, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x80, +0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xfd, 0x6c, 0xf4, 0x00, 0xc0, 0xc0, 0xa2, 0x00, 0x80, +0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xef, 0xff, 0x0c, 0x77, 0x02, 0x00, 0x00, 0x30, 0x00, 0x80, +0x01, 0x00, 0x00, 0x20, 0x00, 0x29, 0x06, 0xd0, 0x0b, 0x23, 0x0a, 0x7a, 0x9b, 0x01, 0xc9, 0x18, +0x02, 0x2a, 0x01, 0xd1, 0x08, 0x6a, 0x70, 0x47, 0x03, 0x2a, 0xfc, 0xd1, 0x88, 0x6a, 0x70, 0x47, +0x70, 0xb5, 0x05, 0x00, 0xfc, 0xf7, 0x70, 0xfe, 0x68, 0x49, 0x4c, 0x68, 0x09, 0xe0, 0x07, 0x2d, +0x02, 0xd0, 0x21, 0x7a, 0xa9, 0x42, 0x03, 0xd1, 0xfc, 0xf7, 0x6a, 0xfe, 0x20, 0x00, 0x70, 0xbd, +0x64, 0x68, 0x00, 0x2c, 0xf3, 0xd1, 0xfc, 0xf7, 0x63, 0xfe, 0x00, 0x20, 0x70, 0xbd, 0x00, 0x21, +0x00, 0x28, 0x0a, 0xd0, 0x02, 0x7a, 0x02, 0x2a, 0x02, 0xd1, 0x17, 0x21, 0x49, 0x01, 0x03, 0xe0, +0x03, 0x2a, 0x02, 0xd1, 0x5d, 0x21, 0xc9, 0x00, 0x41, 0x18, 0x08, 0x00, 0x70, 0x47, 0x70, 0xb5, +0x05, 0x00, 0x0e, 0x00, 0xfc, 0xf7, 0x48, 0xfe, 0x54, 0x49, 0x4c, 0x68, 0x0a, 0xe0, 0xa1, 0x7a, +0xa9, 0x42, 0x06, 0xd1, 0xe1, 0x7a, 0xb1, 0x42, 0x03, 0xd1, 0xfc, 0xf7, 0x41, 0xfe, 0x20, 0x00, +0x70, 0xbd, 0x64, 0x68, 0x00, 0x2c, 0xf2, 0xd1, 0xfc, 0xf7, 0x3a, 0xfe, 0x00, 0x20, 0x70, 0xbd, +0x4a, 0x49, 0x02, 0x28, 0x01, 0xd1, 0xc8, 0x68, 0x70, 0x47, 0x88, 0x68, 0x70, 0x47, 0x10, 0xb5, +0x04, 0x00, 0xed, 0xf2, 0xee, 0xf8, 0x0b, 0x21, 0x89, 0x01, 0x61, 0x18, 0x08, 0x63, 0x10, 0xbd, +0x70, 0xb5, 0xfc, 0xf7, 0x21, 0xfe, 0x05, 0x00, 0x40, 0x48, 0x44, 0x68, 0x0a, 0xe0, 0x20, 0x00, +0xe8, 0xf7, 0xb7, 0xfb, 0x00, 0x28, 0x04, 0xd0, 0x28, 0x00, 0xfc, 0xf7, 0x19, 0xfe, 0x20, 0x00, +0x70, 0xbd, 0x64, 0x68, 0x00, 0x2c, 0xf2, 0xd1, 0x28, 0x00, 0xfc, 0xf7, 0x11, 0xfe, 0x00, 0x20, +0x70, 0xbd, 0x70, 0xb5, 0x06, 0x00, 0xf5, 0xf7, 0xb1, 0xfe, 0x00, 0x28, 0x01, 0xd0, 0x00, 0x20, +0x70, 0xbd, 0xfc, 0xf7, 0x01, 0xfe, 0x05, 0x00, 0x30, 0x48, 0x44, 0x68, 0x0e, 0xe0, 0x20, 0x00, +0xff, 0x30, 0x06, 0x22, 0x31, 0x00, 0x4a, 0x30, 0xfc, 0xf7, 0x1a, 0xfb, 0x00, 0x28, 0x04, 0xd1, +0x28, 0x00, 0xfc, 0xf7, 0xf5, 0xfd, 0x20, 0x00, 0x70, 0xbd, 0x64, 0x68, 0x00, 0x2c, 0xee, 0xd1, +0x28, 0x00, 0xfc, 0xf7, 0xed, 0xfd, 0xe2, 0xe7, 0xf8, 0xb5, 0x05, 0x00, 0x0f, 0x00, 0x08, 0x00, +0xf5, 0xf7, 0x8c, 0xfe, 0x00, 0x28, 0x01, 0xd0, 0x00, 0x20, 0xf8, 0xbd, 0xfc, 0xf7, 0xdc, 0xfd, +0x06, 0x00, 0x1e, 0x48, 0x44, 0x68, 0x10, 0xe0, 0x20, 0x7a, 0xa8, 0x42, 0x0c, 0xd1, 0x20, 0x00, +0x06, 0x22, 0x39, 0x00, 0x7e, 0x30, 0xfc, 0xf7, 0xf3, 0xfa, 0x00, 0x28, 0x04, 0xd1, 0x30, 0x00, +0xfc, 0xf7, 0xce, 0xfd, 0x20, 0x00, 0xf8, 0xbd, 0x64, 0x68, 0x00, 0x2c, 0xec, 0xd1, 0x30, 0x00, +0xfc, 0xf7, 0xc6, 0xfd, 0xe0, 0xe7, 0x70, 0xb5, 0xfc, 0xf7, 0xbe, 0xfd, 0x05, 0x00, 0x0f, 0x48, +0x44, 0x68, 0x00, 0xe0, 0x64, 0x68, 0x00, 0x2c, 0x09, 0xd0, 0x20, 0x00, 0x02, 0xf0, 0xe0, 0xeb, +0x01, 0x28, 0xf7, 0xd1, 0x28, 0x00, 0xfc, 0xf7, 0xb3, 0xfd, 0x01, 0x20, 0x70, 0xbd, 0x28, 0x00, +0xfc, 0xf7, 0xae, 0xfd, 0x00, 0x20, 0x70, 0xbd, 0x09, 0x78, 0xc9, 0x07, 0x01, 0xd0, 0x00, 0x20, +0x70, 0x47, 0xc0, 0x68, 0x00, 0x05, 0xc0, 0x0f, 0x70, 0x47, 0x00, 0x00, 0x94, 0x01, 0x00, 0x04, +0x00, 0x28, 0x05, 0xd0, 0x0b, 0x21, 0x89, 0x01, 0x40, 0x18, 0x40, 0x69, 0x00, 0x28, 0x01, 0xd1, +0x00, 0x20, 0x70, 0x47, 0x00, 0x78, 0x70, 0x47, 0x03, 0x00, 0x0a, 0x00, 0x00, 0xb5, 0xff, 0xf7, +0xef, 0xff, 0x00, 0x28, 0x07, 0xd0, 0x0b, 0x20, 0x80, 0x01, 0x18, 0x18, 0x41, 0x69, 0x60, 0x20, +0x50, 0x43, 0xac, 0x30, 0x08, 0x5c, 0x00, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x0f, 0x00, 0x95, 0x49, +0x10, 0x00, 0x4e, 0x6a, 0x1d, 0x00, 0xee, 0xf7, 0x3f, 0xfc, 0x04, 0x21, 0x61, 0x5e, 0x00, 0x29, +0x07, 0xd1, 0x79, 0x00, 0x89, 0x19, 0x09, 0x8e, 0x8d, 0x42, 0x04, 0xd2, 0x49, 0x1b, 0xa1, 0x80, +0x03, 0xe0, 0x00, 0x29, 0x01, 0xda, 0x00, 0x20, 0xf8, 0xbd, 0xa1, 0x88, 0x08, 0x1a, 0xa0, 0x80, +0x01, 0x20, 0xf8, 0xbd, 0xff, 0xb5, 0x01, 0x20, 0x81, 0xb0, 0x0c, 0x00, 0x1f, 0x00, 0x00, 0x90, +0x01, 0x98, 0x00, 0x26, 0xff, 0xf7, 0xbc, 0xff, 0x25, 0x00, 0x60, 0x35, 0x00, 0x28, 0x03, 0xd0, +0x01, 0x98, 0x00, 0x7a, 0x01, 0x28, 0x02, 0xd1, 0x00, 0x20, 0x28, 0x72, 0x2c, 0xe0, 0xff, 0x2a, +0x27, 0xd0, 0x01, 0x99, 0x0b, 0x20, 0x60, 0x23, 0x80, 0x01, 0x5a, 0x43, 0x08, 0x18, 0x11, 0x00, +0x40, 0x69, 0xa9, 0x31, 0xab, 0x32, 0x41, 0x5c, 0x86, 0x5c, 0x76, 0x48, 0x4a, 0x00, 0x40, 0x6a, +0x30, 0x32, 0x80, 0x5a, 0x74, 0x4a, 0x90, 0x42, 0x01, 0xd0, 0x00, 0x2f, 0x02, 0xd1, 0xa0, 0x88, +0x00, 0x28, 0x11, 0xd0, 0x3b, 0x00, 0x32, 0x00, 0x20, 0x00, 0xff, 0xf7, 0xad, 0xff, 0x00, 0x28, +0x0a, 0xd1, 0xa1, 0x78, 0x01, 0x98, 0x01, 0x22, 0xf0, 0xf7, 0x39, 0xfb, 0x00, 0x20, 0x05, 0xb0, +0xf0, 0xbd, 0x00, 0x20, 0x00, 0x90, 0xfa, 0xe7, 0x2e, 0x72, 0x00, 0x98, 0xf7, 0xe7, 0xf3, 0xb5, +0x89, 0xb0, 0x0c, 0x00, 0x00, 0x26, 0x0d, 0x68, 0x20, 0x21, 0xe8, 0x6d, 0x08, 0x90, 0x14, 0x35, +0x68, 0x46, 0xf7, 0xf2, 0x1e, 0xef, 0x20, 0x00, 0x69, 0x46, 0xf3, 0xf7, 0xfe, 0xfb, 0x00, 0x24, +0x6f, 0x46, 0x17, 0xe0, 0x09, 0x98, 0xff, 0xf7, 0x6b, 0xff, 0x08, 0x99, 0x03, 0x00, 0x0a, 0x88, +0xe9, 0x69, 0x20, 0x00, 0x09, 0x04, 0x09, 0x0c, 0xec, 0xf2, 0x40, 0xfd, 0x86, 0x19, 0xe8, 0x69, +0x21, 0x00, 0x02, 0x04, 0x09, 0x98, 0x12, 0x0c, 0xee, 0xf7, 0x7c, 0xfb, 0x86, 0x19, 0x38, 0x5d, +0x40, 0x1e, 0x38, 0x55, 0x38, 0x5d, 0x00, 0x28, 0xe4, 0xd1, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, +0x1f, 0x2c, 0xf7, 0xd3, 0x30, 0x00, 0x0b, 0xb0, 0xf0, 0xbd, 0xf8, 0xb5, 0xf6, 0x5c, 0xbf, 0xc1, +0x01, 0x00, 0x00, 0x00, 0xb0, 0x4d, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x2c, 0x16, 0xbc, 0xde, +0x04, 0x00, 0x60, 0x23, 0x09, 0x68, 0x08, 0x78, 0xcd, 0x6d, 0x0e, 0x00, 0x40, 0x07, 0x40, 0x0f, +0x0b, 0x21, 0x89, 0x01, 0x58, 0x43, 0x61, 0x18, 0x49, 0x69, 0xb2, 0x30, 0x08, 0x5c, 0x0f, 0x23, +0x82, 0x00, 0x9b, 0x01, 0xd2, 0x18, 0x14, 0x36, 0x89, 0x18, 0xdd, 0xf7, 0xc7, 0xfa, 0xff, 0x34, +0xf1, 0x69, 0x07, 0x00, 0x5d, 0x34, 0xa0, 0x6a, 0xc0, 0x34, 0x09, 0x04, 0x00, 0x5d, 0x2a, 0x88, +0x09, 0x0c, 0x01, 0x23, 0xec, 0xf2, 0x04, 0xfd, 0x78, 0x43, 0xf8, 0xbd, 0xf3, 0xb5, 0x81, 0xb0, +0x0e, 0x00, 0x0d, 0x68, 0xec, 0x6d, 0xec, 0xf2, 0xf5, 0xfe, 0x01, 0x98, 0xff, 0xf7, 0x1a, 0xff, +0x00, 0x28, 0x3e, 0xd0, 0x01, 0x98, 0x0b, 0x21, 0x89, 0x01, 0x40, 0x18, 0x41, 0x69, 0x30, 0x68, +0x60, 0x23, 0x00, 0x78, 0x22, 0x8b, 0x40, 0x07, 0x40, 0x0f, 0x58, 0x43, 0x12, 0x09, 0x40, 0x18, +0xa0, 0x30, 0x47, 0x7a, 0x02, 0x82, 0xa0, 0x78, 0x00, 0x09, 0x2a, 0xd0, 0x08, 0x28, 0x01, 0xd0, +0x0c, 0x28, 0x26, 0xd1, 0x14, 0x20, 0x78, 0x43, 0x44, 0x18, 0x20, 0x79, 0x00, 0x07, 0x20, 0xd5, +0xa8, 0x68, 0x80, 0x00, 0x04, 0xd5, 0x01, 0x98, 0x31, 0x00, 0xff, 0xf7, 0xa8, 0xff, 0x03, 0xe0, +0x01, 0x98, 0x31, 0x00, 0xff, 0xf7, 0x6d, 0xff, 0x21, 0x8a, 0xc0, 0x02, 0x00, 0x0c, 0x00, 0x29, +0x0f, 0xd0, 0x22, 0x7d, 0x00, 0x2a, 0x0c, 0xd1, 0x62, 0x8a, 0x10, 0x18, 0x00, 0x04, 0x00, 0x0c, +0x88, 0x42, 0x60, 0x82, 0x05, 0xd9, 0x01, 0x20, 0x20, 0x75, 0x01, 0x98, 0x39, 0x00, 0xf8, 0xf7, +0x73, 0xfd, 0xfe, 0xbd, 0x03, 0x00, 0x0a, 0x00, 0x00, 0xb5, 0xff, 0xf7, 0xd3, 0xfe, 0x00, 0x28, +0x07, 0xd0, 0x0b, 0x20, 0x80, 0x01, 0x18, 0x18, 0x41, 0x69, 0x60, 0x20, 0x50, 0x43, 0xae, 0x30, +0x08, 0x5a, 0x00, 0xbd, 0x03, 0x00, 0x0a, 0x00, 0x00, 0xb5, 0xff, 0xf7, 0xc3, 0xfe, 0x00, 0x28, +0x09, 0xd0, 0x0b, 0x20, 0x80, 0x01, 0x18, 0x18, 0x60, 0x23, 0x5a, 0x43, 0x41, 0x69, 0xae, 0x32, +0x88, 0x5a, 0x43, 0x1c, 0x8b, 0x52, 0x00, 0xbd, 0x38, 0x52, 0x00, 0x04, 0xff, 0xff, 0x00, 0x00, +0xfa, 0x4a, 0x10, 0xb5, 0x13, 0x5c, 0x82, 0x00, 0x00, 0x2b, 0x08, 0xd1, 0xcb, 0x07, 0x06, 0xd0, +0xf6, 0x4b, 0x3c, 0x33, 0x9b, 0x58, 0x01, 0x2b, 0x01, 0xd1, 0x99, 0x43, 0x0b, 0xd0, 0x00, 0x28, +0x02, 0xd1, 0xf2, 0x4b, 0x01, 0x20, 0xd8, 0x61, 0xf0, 0x48, 0x0c, 0x30, 0x80, 0x58, 0x20, 0x30, +0x01, 0x74, 0xe9, 0xf7, 0xcd, 0xf9, 0x10, 0xbd, 0xec, 0x4a, 0x09, 0x04, 0x09, 0x0c, 0x0c, 0x32, +0x70, 0xb5, 0x00, 0x28, 0x0e, 0xd1, 0xe9, 0x4c, 0x63, 0x78, 0x00, 0x2b, 0x0a, 0xd0, 0x10, 0x68, +0x00, 0x25, 0x01, 0x71, 0x09, 0x0a, 0x41, 0x71, 0x03, 0x21, 0x28, 0x00, 0xff, 0xf7, 0xd0, 0xff, +0x65, 0x70, 0x07, 0xe0, 0x83, 0x00, 0xd2, 0x58, 0x11, 0x71, 0x09, 0x0a, 0x51, 0x71, 0x02, 0x21, +0xff, 0xf7, 0xc6, 0xff, 0x00, 0x20, 0x70, 0xbd, 0xf3, 0xb5, 0x81, 0xb0, 0x0c, 0x00, 0x00, 0x25, +0x01, 0x98, 0x00, 0x28, 0x7e, 0xd1, 0xda, 0x4f, 0x00, 0x26, 0x03, 0x2c, 0x01, 0xd0, 0x83, 0x2c, +0x08, 0xd1, 0xd7, 0x48, 0x68, 0x38, 0xf8, 0xf2, 0x62, 0xfb, 0x38, 0x60, 0xd5, 0x48, 0xdb, 0xf7, +0xc3, 0xf8, 0x15, 0xe0, 0x05, 0x2c, 0x0a, 0xd1, 0xd0, 0x48, 0x40, 0x6c, 0x05, 0x06, 0xd0, 0x48, +0x2d, 0x0e, 0x7c, 0x38, 0xf8, 0xf2, 0x53, 0xfb, 0xa9, 0x00, 0x78, 0x50, 0x08, 0xe0, 0x02, 0x2c, +0x01, 0xd0, 0x82, 0x2c, 0x04, 0xd1, 0xca, 0x48, 0x54, 0x38, 0xf8, 0xf2, 0x48, 0xfb, 0x38, 0x60, +0xe0, 0x43, 0x80, 0x07, 0x01, 0xd0, 0xa0, 0x07, 0x01, 0xd5, 0x38, 0x68, 0x01, 0xe0, 0xa8, 0x00, +0x38, 0x58, 0xc2, 0x4f, 0x01, 0x89, 0x40, 0x18, 0x41, 0x78, 0x02, 0x78, 0x09, 0x02, 0x11, 0x43, +0x0c, 0x37, 0x3b, 0x68, 0x6a, 0x00, 0x08, 0x32, 0x9b, 0x18, 0x19, 0x70, 0x09, 0x0a, 0x59, 0x70, +0xba, 0x49, 0x3e, 0x00, 0x09, 0x78, 0x28, 0x36, 0x00, 0x29, 0x1e, 0xd1, 0x39, 0x68, 0x40, 0x31, +0x0d, 0x72, 0x43, 0x78, 0x01, 0x78, 0x1b, 0x02, 0x0b, 0x43, 0x39, 0x68, 0x89, 0x18, 0x1a, 0x0a, +0x0b, 0x70, 0x4a, 0x70, 0x01, 0x22, 0x31, 0x68, 0xaa, 0x40, 0x11, 0x43, 0x31, 0x60, 0xf9, 0x1f, +0x0a, 0x78, 0x01, 0x2a, 0x09, 0xd9, 0x00, 0x2d, 0x07, 0xd0, 0x4b, 0x1f, 0x59, 0x6c, 0x49, 0x1c, +0x8a, 0x42, 0x59, 0x64, 0x01, 0xd1, 0x01, 0x21, 0x59, 0x64, 0x39, 0x68, 0x00, 0x25, 0x40, 0x31, +0xf7, 0xf2, 0x66, 0xee, 0xa5, 0x48, 0x00, 0x78, 0x00, 0x28, 0x05, 0xd1, 0x38, 0x68, 0x41, 0x79, +0x02, 0x79, 0x08, 0x02, 0x10, 0x43, 0x15, 0xd1, 0xa3, 0x4f, 0x83, 0x2c, 0x09, 0xd0, 0x82, 0x2c, +0x07, 0xd0, 0x05, 0x20, 0xff, 0xf7, 0x6f, 0xf8, 0x00, 0x28, 0x0c, 0xd1, 0x30, 0x68, 0xc0, 0x07, +0x08, 0xd0, 0x00, 0xe0, 0x06, 0xe0, 0x01, 0x98, 0x01, 0x21, 0xff, 0xf7, 0x55, 0xff, 0x30, 0x68, +0x38, 0x40, 0x30, 0x60, 0xfe, 0xbd, 0x31, 0x68, 0x28, 0x00, 0xff, 0xf7, 0x4d, 0xff, 0x35, 0x60, +0xfe, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x74, 0xd0, 0xe0, 0x68, 0x00, 0x28, 0x71, 0xd1, +0x8f, 0x4e, 0x02, 0x2b, 0x74, 0xd0, 0x20, 0x27, 0x1c, 0x22, 0xe8, 0x19, 0xa9, 0x18, 0x03, 0x2b, +0x0c, 0xd0, 0x05, 0x2b, 0xf3, 0xd1, 0x2f, 0x81, 0xc3, 0x78, 0x87, 0x78, 0x1b, 0x02, 0x3b, 0x43, +0x2b, 0xd1, 0x28, 0x00, 0xfc, 0xf7, 0x9e, 0xfb, 0x01, 0x20, 0xf8, 0xbd, 0x2a, 0x81, 0xc2, 0x78, +0x83, 0x78, 0x10, 0x02, 0x18, 0x43, 0x00, 0x1d, 0x08, 0x70, 0x00, 0x0a, 0x48, 0x70, 0x01, 0x20, +0x88, 0x70, 0x00, 0x20, 0xc8, 0x70, 0xfc, 0xf7, 0x51, 0xfb, 0x07, 0x00, 0xe0, 0x68, 0x14, 0x23, +0x7b, 0x49, 0x58, 0x43, 0x68, 0x39, 0x40, 0x18, 0x29, 0x00, 0xf8, 0xf2, 0x00, 0xfb, 0x7b, 0x48, +0xdb, 0xf7, 0x0a, 0xf8, 0xe0, 0x68, 0x81, 0x01, 0x71, 0x58, 0x00, 0x29, 0x03, 0xd0, 0x38, 0x00, +0xfc, 0xf7, 0x40, 0xfb, 0xd8, 0xe7, 0x03, 0x21, 0x37, 0xe0, 0x2a, 0x81, 0xc2, 0x78, 0x83, 0x78, +0x12, 0x02, 0x1a, 0x43, 0x43, 0x79, 0x07, 0x79, 0x18, 0x06, 0x00, 0x14, 0x38, 0x43, 0x10, 0x18, +0x00, 0x1d, 0x08, 0x70, 0x00, 0x0a, 0x48, 0x70, 0x00, 0x20, 0x88, 0x70, 0xc8, 0x70, 0xfc, 0xf7, +0x25, 0xfb, 0x07, 0x00, 0xe0, 0x68, 0x14, 0x23, 0x65, 0x49, 0x58, 0x43, 0x7c, 0x39, 0x40, 0x18, +0x29, 0x00, 0xf8, 0xf2, 0xd4, 0xfa, 0x61, 0x49, 0xe0, 0x68, 0x49, 0x6c, 0x80, 0x01, 0x80, 0x19, +0x89, 0x00, 0x40, 0x58, 0x00, 0x28, 0x0b, 0xd1, 0x05, 0x20, 0xfe, 0xf7, 0xec, 0xff, 0x00, 0x28, +0x06, 0xd0, 0xe0, 0x68, 0x59, 0x4a, 0x81, 0x00, 0x30, 0x32, 0x51, 0x58, 0x00, 0x29, 0x03, 0xd0, +0x38, 0x00, 0x4d, 0xe0, 0x4e, 0xe0, 0x03, 0xe0, 0x05, 0x21, 0xff, 0xf7, 0xed, 0xfe, 0xf7, 0xe7, +0x28, 0x89, 0x47, 0x19, 0x08, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x28, 0x81, 0xf9, 0x7a, 0xba, 0x7a, +0x09, 0x02, 0x11, 0x43, 0x40, 0x19, 0x03, 0x22, 0x82, 0x70, 0x00, 0x22, 0xc2, 0x70, 0x08, 0x31, +0x01, 0x70, 0x04, 0x22, 0x09, 0x0a, 0x00, 0x22, 0x41, 0x70, 0xfc, 0xf7, 0x8a, 0x47, 0xe6, 0x9f, +0x01, 0x00, 0x00, 0x00, 0xac, 0x51, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x93, 0xd3, 0x99, 0x6d, +0xe7, 0xfa, 0x00, 0x90, 0x78, 0x7b, 0x39, 0x7b, 0x00, 0x02, 0x08, 0x43, 0x45, 0x49, 0x54, 0x39, +0x0a, 0x28, 0xe0, 0x68, 0x06, 0xd1, 0x14, 0x23, 0x58, 0x43, 0x40, 0x18, 0x29, 0x00, 0xf8, 0xf2, +0xb2, 0xfa, 0x05, 0xe0, 0x14, 0x23, 0x58, 0x43, 0x40, 0x18, 0x29, 0x00, 0xf8, 0xf2, 0x89, 0xfa, +0xe0, 0x68, 0x80, 0x01, 0x30, 0x58, 0x00, 0x28, 0x13, 0xd1, 0x78, 0x7b, 0x39, 0x7b, 0x00, 0x02, +0x08, 0x43, 0xe5, 0xf7, 0x8c, 0xfd, 0x00, 0x28, 0x0b, 0xd0, 0xe5, 0xf7, 0x76, 0xfe, 0x00, 0x28, +0x07, 0xd1, 0xe0, 0x68, 0x00, 0x21, 0xe9, 0xf7, 0x00, 0xfa, 0xe0, 0x68, 0x02, 0x21, 0xff, 0xf7, +0xa5, 0xfe, 0x00, 0x98, 0xfc, 0xf7, 0xb8, 0xfa, 0x00, 0x20, 0xf8, 0xbd, 0x04, 0x20, 0x08, 0xb5, +0x00, 0x90, 0x30, 0x48, 0x14, 0x21, 0x00, 0x68, 0x6a, 0x46, 0xe6, 0xf2, 0xfe, 0xf8, 0x08, 0xbd, +0x10, 0xb5, 0xfe, 0xf7, 0xe2, 0xff, 0x2c, 0x48, 0x10, 0xbd, 0xf8, 0xb5, 0x00, 0x24, 0x26, 0x00, +0x23, 0x4d, 0x24, 0x4f, 0x34, 0x35, 0x28, 0x68, 0x2a, 0x00, 0x21, 0x00, 0x54, 0x3f, 0x28, 0x3a, +0x00, 0x28, 0x4b, 0xd0, 0x11, 0x68, 0x4b, 0x79, 0x09, 0x79, 0x1b, 0x02, 0x0b, 0x43, 0x45, 0xd1, +0x05, 0x20, 0xfe, 0xf7, 0x6a, 0xff, 0x00, 0x28, 0x23, 0xd1, 0x28, 0x68, 0xc0, 0x07, 0x08, 0xd0, +0x01, 0x21, 0x30, 0x00, 0xff, 0xf7, 0x52, 0xfe, 0x18, 0x49, 0x28, 0x68, 0x08, 0x40, 0x28, 0x60, +0x07, 0xe0, 0x14, 0x48, 0x68, 0x38, 0xf8, 0xf2, 0x05, 0xfa, 0x00, 0x28, 0x03, 0xd0, 0x83, 0x21, +0x0b, 0xe0, 0x01, 0x24, 0x77, 0xe0, 0x38, 0x00, 0xf8, 0xf2, 0xfc, 0xf9, 0x00, 0x28, 0x72, 0xd0, +0xe5, 0xf7, 0x23, 0xfe, 0x00, 0x28, 0x6e, 0xd1, 0x82, 0x21, 0x30, 0x00, 0xff, 0xf7, 0x56, 0xfe, +0xef, 0xe7, 0x29, 0x68, 0x00, 0x20, 0xff, 0xf7, 0x31, 0xfe, 0xb1, 0x00, 0x03, 0xe0, 0x42, 0x1e, +0x10, 0x40, 0x64, 0x1c, 0x68, 0x50, 0x68, 0x58, 0x00, 0x28, 0xf8, 0xd1, 0x5b, 0xe0, 0x00, 0x00, +0x24, 0x77, 0x02, 0x00, 0x80, 0x90, 0x02, 0x00, 0x20, 0x20, 0x04, 0x00, 0xfe, 0xff, 0x00, 0x00, +0x10, 0x10, 0x04, 0x00, 0x18, 0xee, 0x00, 0xc0, 0x19, 0x52, 0x02, 0x00, 0xf8, 0x4d, 0xc0, 0x07, +0x24, 0xd1, 0x10, 0x68, 0x41, 0x79, 0x02, 0x79, 0x08, 0x02, 0x10, 0x43, 0xc0, 0x07, 0x1d, 0xd1, +0xf4, 0x48, 0x00, 0x68, 0x00, 0x28, 0x03, 0xd0, 0xe8, 0x6a, 0x40, 0x1c, 0xe8, 0x62, 0x15, 0xe0, +0xf0, 0x48, 0x68, 0x38, 0xf8, 0xf2, 0xbe, 0xf9, 0x00, 0x28, 0x01, 0xd0, 0x03, 0x21, 0x09, 0xe0, +0x38, 0x00, 0xf8, 0xf2, 0xb7, 0xf9, 0x00, 0x28, 0x08, 0xd0, 0xe5, 0xf7, 0xde, 0xfd, 0x00, 0x28, +0x04, 0xd1, 0x02, 0x21, 0x30, 0x00, 0xff, 0xf7, 0x11, 0xfe, 0x01, 0x24, 0x14, 0x21, 0xe5, 0x4a, +0xe4, 0x4b, 0x71, 0x43, 0xb0, 0x01, 0x7c, 0x3a, 0xc5, 0x18, 0x88, 0x18, 0xb7, 0x00, 0x00, 0x90, +0x04, 0xe0, 0x05, 0x21, 0x30, 0x00, 0xff, 0xf7, 0x01, 0xfe, 0x64, 0x1c, 0x00, 0x98, 0xf8, 0xf2, +0x99, 0xf9, 0x00, 0x28, 0x0f, 0xd0, 0xda, 0x48, 0x40, 0x6c, 0x80, 0x00, 0x28, 0x58, 0x00, 0x28, +0x09, 0xd1, 0x05, 0x20, 0xfe, 0xf7, 0xe1, 0xfe, 0x00, 0x28, 0x04, 0xd0, 0xd4, 0x48, 0x30, 0x30, +0xc0, 0x59, 0x00, 0x28, 0xe5, 0xd0, 0x20, 0x00, 0xf8, 0xbd, 0xf1, 0xb5, 0x82, 0xb0, 0x02, 0x98, +0x00, 0x28, 0x5f, 0xd1, 0xce, 0x48, 0x00, 0x23, 0x0c, 0x30, 0x00, 0x68, 0xc1, 0x79, 0x82, 0x79, +0x08, 0x02, 0xcb, 0x49, 0x10, 0x43, 0x50, 0x31, 0x0a, 0x1d, 0x08, 0x60, 0x13, 0x60, 0xca, 0x4a, +0x90, 0x42, 0x4f, 0xd0, 0x51, 0x1e, 0x88, 0x42, 0x4c, 0xd0, 0xc5, 0x48, 0x02, 0x99, 0x80, 0x6c, +0x89, 0x01, 0x05, 0x04, 0xc3, 0x48, 0x2d, 0x0c, 0x40, 0x38, 0x0e, 0x18, 0x02, 0x98, 0x84, 0x00, +0x3c, 0xe0, 0xbf, 0x4a, 0x01, 0x20, 0x50, 0x32, 0xa8, 0x40, 0x11, 0x59, 0x01, 0x90, 0x01, 0x43, +0x11, 0x51, 0xbe, 0x48, 0x00, 0x22, 0x01, 0x88, 0xbd, 0x48, 0x13, 0x00, 0xfe, 0xf7, 0x23, 0xff, +0x00, 0x28, 0xf0, 0x51, 0x2e, 0xd0, 0xac, 0x21, 0x01, 0x81, 0x28, 0x00, 0xb4, 0x4d, 0x0c, 0x35, +0x29, 0x59, 0x40, 0x31, 0x48, 0x72, 0xf0, 0x59, 0x01, 0x89, 0x40, 0x18, 0x29, 0x59, 0x44, 0x31, +0xf7, 0xf2, 0x78, 0xec, 0x28, 0x00, 0x48, 0x30, 0x01, 0x59, 0x01, 0x9b, 0x01, 0x22, 0x19, 0x43, +0x01, 0x51, 0x29, 0x59, 0x01, 0x98, 0x88, 0x71, 0x00, 0x0a, 0xc8, 0x71, 0xf1, 0x59, 0x08, 0x20, +0x08, 0x73, 0xa7, 0x49, 0x88, 0x6c, 0x0b, 0x1d, 0x40, 0x1c, 0x88, 0x64, 0x02, 0x9d, 0x5b, 0x5d, +0x83, 0x42, 0x00, 0xd1, 0x8a, 0x64, 0x88, 0x6c, 0x05, 0x04, 0x2d, 0x0c, 0xaf, 0x00, 0xf0, 0x59, +0x00, 0x28, 0xbe, 0xd0, 0xfe, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x17, 0x00, 0x9c, 0x4d, 0x00, 0x26, +0x1d, 0x29, 0x73, 0xd0, 0x12, 0xdc, 0x9a, 0x48, 0x08, 0x39, 0x5c, 0x30, 0x02, 0x88, 0x0b, 0x00, +0xf7, 0xf2, 0x12, 0xed, 0x15, 0xf6, 0xf5, 0x5a, 0x5a, 0x5a, 0xf4, 0xf4, 0x5a, 0x5a, 0x5a, 0x5a, +0xf3, 0xa6, 0xf2, 0x5a, 0xf1, 0xf0, 0xef, 0x5a, 0xee, 0xed, 0x5a, 0x00, 0x49, 0x29, 0x7e, 0xd0, +0x13, 0xdc, 0x42, 0x29, 0x7c, 0xd0, 0x09, 0xdc, 0x1e, 0x29, 0x7a, 0xd0, 0x20, 0x29, 0x79, 0xd0, +0x41, 0x29, 0x41, 0xd1, 0x8b, 0x4f, 0x01, 0x25, 0x40, 0x3f, 0xd9, 0xe1, 0x45, 0x29, 0x72, 0xd0, +0x46, 0x29, 0x71, 0xd0, 0x48, 0x29, 0xf4, 0xd1, 0xee, 0xe1, 0x66, 0x29, 0x6d, 0xd0, 0x0e, 0xdc, +0x4a, 0x29, 0x6b, 0xd0, 0x4c, 0x29, 0x6a, 0xd0, 0x62, 0x29, 0xea, 0xd1, 0xe0, 0x68, 0x00, 0x28, +0xe7, 0xd1, 0xfc, 0xf7, 0x55, 0xf9, 0x7f, 0x4f, 0x00, 0x90, 0x7c, 0x3f, 0x27, 0xe0, 0x68, 0x29, +0x0f, 0xd0, 0x69, 0x29, 0xdd, 0xd1, 0xe0, 0x68, 0x00, 0x28, 0xda, 0xd1, 0xfc, 0xf7, 0x48, 0xf9, +0x04, 0x00, 0xff, 0xf7, 0xa2, 0xfe, 0x05, 0x00, 0x20, 0x00, 0xfc, 0xf7, 0x45, 0xf9, 0x28, 0x00, +0xf8, 0xbd, 0xe0, 0x68, 0x00, 0x28, 0xcc, 0xd1, 0x38, 0x03, 0x00, 0x0f, 0x08, 0x28, 0x0b, 0xd2, +0x39, 0x04, 0x0a, 0x0e, 0x6b, 0x69, 0x39, 0x06, 0x09, 0x0e, 0x1b, 0x5c, 0x00, 0x2a, 0x01, 0xd0, +0x93, 0x43, 0x19, 0x43, 0x6a, 0x69, 0x11, 0x54, 0xf6, 0xe1, 0xfc, 0xf7, 0x65, 0xf9, 0xe0, 0x68, +0x14, 0x23, 0x58, 0x43, 0xc0, 0x19, 0xf8, 0xf2, 0x84, 0xf8, 0x00, 0x28, 0xf5, 0xd1, 0x33, 0xe0, +0x69, 0x6c, 0x49, 0x1e, 0x69, 0x64, 0x02, 0xd0, 0x69, 0x6c, 0x05, 0xe0, 0xca, 0xe0, 0x60, 0x49, +0x49, 0x1d, 0x09, 0x5c, 0x49, 0x1e, 0x69, 0x64, 0x01, 0x27, 0x3b, 0x00, 0x8b, 0x40, 0x1a, 0x42, +0x0f, 0xd0, 0x5c, 0x4a, 0x80, 0x01, 0x80, 0x18, 0x89, 0x00, 0x40, 0x58, 0x00, 0x28, 0x08, 0xd0, +0xfc, 0xf7, 0x42, 0xf9, 0xe0, 0x68, 0x57, 0x49, 0x80, 0x01, 0x40, 0x18, 0x69, 0x6c, 0x89, 0x00, +0x46, 0x50, 0xe0, 0x68, 0x52, 0x4a, 0x80, 0x00, 0x34, 0x32, 0x11, 0x58, 0x08, 0xe0, 0xac, 0xe1, +0x4c, 0xe1, 0xb7, 0xe0, 0x44, 0xe1, 0xf6, 0xe0, 0x6f, 0xe1, 0x68, 0xe1, 0xaa, 0xe1, 0xae, 0xe1, +0x6b, 0x6c, 0x9f, 0x40, 0xb9, 0x43, 0x11, 0x50, 0xe0, 0x68, 0x49, 0x4b, 0xbd, 0x94, 0x31, 0xac, +0x01, 0x00, 0x00, 0x00, 0xa8, 0x55, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0xc0, 0x09, 0x4a, 0x01, +0x81, 0x00, 0x34, 0x33, 0x5a, 0x58, 0x11, 0x04, 0x49, 0x0c, 0xc3, 0xd1, 0x00, 0x98, 0xfc, 0xf7, +0xe5, 0xf8, 0xab, 0xe1, 0xfc, 0xf7, 0xde, 0xf8, 0x00, 0x90, 0x42, 0x49, 0xe0, 0x68, 0x09, 0x5c, +0x00, 0x29, 0x48, 0xd1, 0x3f, 0x4a, 0x81, 0x00, 0x0c, 0x32, 0x52, 0x58, 0xd3, 0x79, 0x92, 0x79, +0x1f, 0x02, 0x17, 0x43, 0x3b, 0x4a, 0x58, 0x32, 0x51, 0x58, 0x0f, 0x40, 0x11, 0x00, 0x54, 0x39, +0x09, 0x5c, 0x01, 0x29, 0x0a, 0xd9, 0x00, 0xf0, 0x35, 0xfb, 0x00, 0x28, 0x06, 0xd0, 0x38, 0x04, +0x40, 0x0c, 0x03, 0xd0, 0x00, 0x98, 0xfc, 0xf7, 0xc1, 0xf8, 0x45, 0xe1, 0xe0, 0x68, 0x00, 0xf0, +0x29, 0xfb, 0x00, 0x28, 0x02, 0xd1, 0xe0, 0x68, 0xe8, 0xf7, 0xd7, 0xfe, 0x38, 0x04, 0x40, 0x0c, +0xcc, 0xd1, 0xe0, 0x68, 0xff, 0xf7, 0xb3, 0xfe, 0xe0, 0x68, 0x2a, 0x4a, 0x81, 0x00, 0x54, 0x32, +0x50, 0x58, 0x03, 0x04, 0x5b, 0x0c, 0xe5, 0xd0, 0x6b, 0x78, 0x00, 0x2b, 0xbe, 0xd1, 0x00, 0x28, +0xbc, 0xd0, 0x13, 0x00, 0x18, 0x3b, 0x58, 0x50, 0xe0, 0x68, 0x80, 0x00, 0x16, 0x50, 0xe0, 0x68, +0x18, 0xe0, 0x24, 0xe0, 0xd1, 0xe0, 0x94, 0xe0, 0x87, 0xe0, 0x5a, 0xe0, 0x16, 0xe0, 0xa8, 0xe0, +0xab, 0xe0, 0x9c, 0xe0, 0xd2, 0xe0, 0x1c, 0x4e, 0x81, 0x01, 0x40, 0x3e, 0x71, 0x58, 0x00, 0x29, +0xa4, 0xd1, 0xff, 0xf7, 0x8c, 0xfe, 0xe0, 0x68, 0x81, 0x01, 0x89, 0x19, 0xc2, 0xd0, 0x69, 0x78, +0x01, 0x43, 0x9b, 0xd1, 0x01, 0x21, 0xff, 0xf7, 0x2f, 0xfc, 0x97, 0xe7, 0xe0, 0x68, 0x81, 0x00, +0x10, 0x48, 0x0c, 0x30, 0x40, 0x58, 0x02, 0x21, 0x80, 0x78, 0x08, 0x40, 0xf8, 0xbd, 0xfc, 0xf7, +0x71, 0xf8, 0xf9, 0x79, 0xbb, 0x79, 0x0a, 0x02, 0x0a, 0x49, 0x1a, 0x43, 0x62, 0x31, 0x8a, 0x71, +0x12, 0x0a, 0xca, 0x71, 0x7a, 0x78, 0x3b, 0x78, 0x12, 0x02, 0x1a, 0x43, 0x0a, 0x70, 0x12, 0x0a, +0x4a, 0x70, 0xfa, 0x78, 0xbb, 0x78, 0x12, 0x02, 0x1a, 0x43, 0x8a, 0x70, 0x12, 0x0a, 0xca, 0x70, +0x75, 0xe7, 0x00, 0x00, 0x24, 0x77, 0x02, 0x00, 0x80, 0x90, 0x02, 0x00, 0xff, 0xff, 0x00, 0x00, +0x56, 0xf0, 0x00, 0xc0, 0x30, 0x00, 0x00, 0x04, 0xff, 0x49, 0x48, 0x78, 0x0a, 0x78, 0x00, 0x02, +0x10, 0x43, 0x38, 0x70, 0x00, 0x0a, 0x78, 0x70, 0xc8, 0x78, 0x89, 0x78, 0x00, 0x02, 0x08, 0x43, +0xb8, 0x70, 0x00, 0x0a, 0xf8, 0x70, 0x09, 0xe1, 0xe0, 0x68, 0x01, 0x21, 0xe8, 0xf7, 0x7f, 0xff, +0x04, 0xe1, 0xf6, 0x4b, 0x0f, 0x2a, 0x01, 0xd9, 0x9a, 0x42, 0x76, 0xd1, 0xf9, 0x78, 0xba, 0x78, +0x09, 0x02, 0x11, 0x43, 0x04, 0x00, 0x01, 0x80, 0x78, 0x79, 0x3a, 0x79, 0x00, 0x02, 0x10, 0x43, +0x60, 0x80, 0xf8, 0x79, 0xba, 0x79, 0x00, 0x02, 0x10, 0x43, 0x99, 0x42, 0xa0, 0x80, 0xe2, 0xd0, +0x08, 0x06, 0x00, 0x0e, 0xf9, 0xf7, 0xca, 0xff, 0x61, 0x88, 0x20, 0x88, 0xe5, 0xf2, 0x17, 0xf9, +0xe7, 0x4b, 0xd9, 0x6a, 0x20, 0x88, 0x01, 0x22, 0x82, 0x40, 0x11, 0x43, 0xd9, 0x62, 0x00, 0x06, +0x00, 0x0e, 0x01, 0x21, 0xe5, 0xf2, 0xc4, 0xf8, 0xd8, 0xe0, 0x11, 0x0a, 0xba, 0x70, 0xf9, 0x70, +0x41, 0x88, 0x39, 0x71, 0x09, 0x0a, 0x79, 0x71, 0x80, 0x88, 0xb8, 0x71, 0x00, 0x0a, 0xf8, 0x71, +0xcc, 0xe0, 0xe0, 0x68, 0x00, 0x28, 0xbe, 0xd1, 0x10, 0xe0, 0xe0, 0x68, 0xd6, 0x4a, 0x01, 0x21, +0x80, 0x00, 0x56, 0x3a, 0x10, 0x58, 0x20, 0x30, 0x01, 0x74, 0x6e, 0x70, 0xbe, 0xe0, 0xe0, 0x68, +0x00, 0x28, 0xb0, 0xd1, 0xd3, 0x49, 0x09, 0x78, 0x01, 0x29, 0xac, 0xd1, 0xe8, 0xf7, 0xe9, 0xfe, +0xb4, 0xe0, 0xe0, 0x68, 0xe8, 0xf7, 0x68, 0xff, 0xb0, 0xe0, 0xe0, 0x68, 0x00, 0x28, 0x0a, 0xd1, +0xe8, 0x78, 0x00, 0x28, 0x07, 0xd0, 0xc8, 0x49, 0xcb, 0x48, 0x52, 0x39, 0x09, 0x68, 0x08, 0x70, +0x00, 0x0a, 0x48, 0x70, 0xee, 0x70, 0xe0, 0x68, 0xc3, 0x4a, 0x81, 0x00, 0x56, 0x3a, 0x52, 0x58, +0xd3, 0x79, 0x94, 0x79, 0x1a, 0x02, 0xc0, 0x4b, 0x22, 0x43, 0x0a, 0x3b, 0x59, 0x58, 0x0a, 0x42, +0x89, 0xd0, 0x01, 0x21, 0xff, 0xf7, 0x78, 0xfb, 0x90, 0xe0, 0xe0, 0x68, 0x00, 0x28, 0x87, 0xd1, +0xbe, 0x48, 0x02, 0x21, 0xe3, 0xf2, 0x5e, 0xf8, 0xf8, 0xbd, 0x45, 0xe0, 0xe0, 0x68, 0x00, 0x28, +0xaa, 0xd1, 0xbb, 0x48, 0x04, 0x21, 0xe3, 0xf2, 0x55, 0xf8, 0x00, 0x28, 0x3c, 0xd1, 0xb8, 0x48, +0x02, 0x21, 0x35, 0xe0, 0xe0, 0x68, 0xb0, 0x49, 0x80, 0x00, 0x2a, 0x39, 0x0f, 0x50, 0x75, 0xe0, +0xe1, 0x68, 0x01, 0x20, 0x8a, 0x00, 0xac, 0x49, 0x0a, 0x39, 0x88, 0x50, 0x28, 0x64, 0xa8, 0x64, +0x20, 0x00, 0xe8, 0xf7, 0xb0, 0xfd, 0x69, 0xe0, 0x80, 0x01, 0xc0, 0x19, 0xae, 0x00, 0x80, 0x59, +0x00, 0x28, 0x06, 0xd0, 0xf7, 0xf2, 0x64, 0xfe, 0xe1, 0x68, 0x00, 0x20, 0x89, 0x01, 0xc9, 0x19, +0x88, 0x51, 0x6d, 0x1c, 0xa0, 0x49, 0xe0, 0x68, 0x5e, 0x39, 0x09, 0x5c, 0xa9, 0x42, 0xeb, 0xdc, +0x54, 0xe0, 0xe0, 0x68, 0x00, 0x28, 0x51, 0xd1, 0xe8, 0xf7, 0x9b, 0xfe, 0xc4, 0xe7, 0xe0, 0x68, +0x00, 0x28, 0x0b, 0xd1, 0xe8, 0xf7, 0x95, 0xfe, 0x00, 0x28, 0xbd, 0xd1, 0x9b, 0x48, 0x02, 0x21, +0xe3, 0xf2, 0x18, 0xf8, 0x00, 0x28, 0xb7, 0xd0, 0x01, 0x20, 0xb5, 0xe7, 0x00, 0x2f, 0x01, 0xd0, +0x01, 0x20, 0x00, 0xe0, 0x00, 0x20, 0xe1, 0x68, 0x8f, 0x4e, 0x89, 0x00, 0x32, 0x3e, 0x70, 0x50, +0xfb, 0xf7, 0x68, 0xff, 0x07, 0x00, 0xe0, 0x68, 0x81, 0x00, 0x71, 0x58, 0x00, 0x29, 0x14, 0xd1, +0x90, 0x49, 0x82, 0x01, 0x51, 0x18, 0x6a, 0x6c, 0x92, 0x00, 0x89, 0x58, 0x00, 0x29, 0x0c, 0xd1, +0x14, 0x21, 0x41, 0x43, 0x8b, 0x48, 0x7c, 0x38, 0x08, 0x18, 0xf7, 0xf2, 0xdd, 0xfe, 0x00, 0x28, +0x03, 0xd0, 0xe0, 0x68, 0x05, 0x21, 0xff, 0xf7, 0x3b, 0xfb, 0x38, 0x00, 0x67, 0xe6, 0xe0, 0x68, +0x00, 0x28, 0x13, 0xd1, 0xee, 0x61, 0x11, 0xe0, 0xe0, 0x68, 0x00, 0x28, 0x0e, 0xd1, 0xe8, 0x69, +0x82, 0xe7, 0xe0, 0x68, 0x00, 0x28, 0x09, 0xd1, 0x7f, 0x48, 0x01, 0x7a, 0x40, 0x7a, 0xc0, 0x07, +0xc0, 0x0d, 0x08, 0x43, 0xb2, 0xd1, 0x01, 0x20, 0x40, 0x02, 0x75, 0xe7, 0x00, 0x20, 0x73, 0xe7, +0xf8, 0xb5, 0x85, 0x00, 0x06, 0x00, 0x70, 0x4f, 0x56, 0x3f, 0x78, 0x59, 0xc1, 0x79, 0x82, 0x79, +0x08, 0x02, 0x39, 0x00, 0x4c, 0x31, 0x49, 0x59, 0x10, 0x43, 0x08, 0x40, 0xc0, 0x07, 0x20, 0xd1, +0x70, 0x48, 0xb1, 0x01, 0x40, 0x38, 0x44, 0x58, 0x00, 0x2c, 0x1a, 0xd0, 0x20, 0x89, 0x20, 0x18, +0xc3, 0x78, 0x82, 0x78, 0x1b, 0x02, 0x13, 0x43, 0x00, 0x22, 0x01, 0x2b, 0x12, 0xd0, 0x79, 0x59, +0x40, 0x31, 0x4a, 0x72, 0x79, 0x59, 0x44, 0x31, 0xf7, 0xf2, 0xce, 0xe9, 0x78, 0x59, 0x80, 0x1d, +0x41, 0x78, 0x02, 0x78, 0x09, 0x02, 0x11, 0x43, 0x01, 0x22, 0x11, 0x43, 0x01, 0x70, 0x09, 0x0a, +0x41, 0x70, 0x41, 0xe7, 0x07, 0x1d, 0x10, 0x20, 0x20, 0x73, 0x60, 0x7b, 0x01, 0x23, 0x18, 0x43, +0x60, 0x73, 0x5e, 0x48, 0xa0, 0x61, 0xb0, 0x20, 0x20, 0x81, 0x5a, 0x48, 0x62, 0x61, 0x40, 0x38, +0x42, 0x50, 0x38, 0x00, 0x01, 0xf0, 0x1e, 0xed, 0x00, 0x28, 0x03, 0xd0, 0x62, 0x6a, 0x98, 0x52, +0x01, 0x00, 0x00, 0x00, 0xa4, 0x59, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x34, 0x66, 0x3f, 0xb5, +0x38, 0x00, 0x08, 0x30, 0x01, 0xf0, 0x1c, 0xed, 0x30, 0x20, 0x53, 0x49, 0x70, 0x43, 0x40, 0x31, +0x40, 0x18, 0x4a, 0x49, 0x00, 0x22, 0x2a, 0x39, 0x4d, 0x59, 0x21, 0x00, 0x01, 0x23, 0xa8, 0x47, +0x1c, 0xe7, 0x09, 0x1d, 0xca, 0x79, 0x8b, 0x79, 0x11, 0x02, 0x19, 0x43, 0x81, 0x42, 0x01, 0xd1, +0x01, 0x20, 0x70, 0x47, 0x00, 0x20, 0x70, 0x47, 0xf0, 0xb5, 0x00, 0x24, 0x89, 0xb0, 0x3f, 0x48, +0xa6, 0x00, 0x56, 0x38, 0x81, 0x59, 0x10, 0x22, 0x20, 0x31, 0x09, 0x7e, 0x06, 0x91, 0xc9, 0x43, +0x11, 0x43, 0x82, 0x59, 0x20, 0x32, 0x11, 0x76, 0x80, 0x59, 0x20, 0x30, 0x00, 0x7a, 0x00, 0x2c, +0x05, 0x90, 0x6a, 0xd1, 0x00, 0x20, 0x04, 0x90, 0x06, 0x98, 0x80, 0x07, 0x53, 0xd5, 0x00, 0x20, +0x00, 0xf0, 0x2d, 0xf9, 0x01, 0x25, 0x3f, 0xe0, 0x30, 0x48, 0x30, 0x49, 0x62, 0x38, 0xc0, 0x6c, +0x00, 0x06, 0x00, 0x0e, 0x56, 0x39, 0x89, 0x59, 0x01, 0x23, 0x4a, 0x79, 0x09, 0x79, 0x12, 0x02, +0x0a, 0x43, 0x19, 0x00, 0x81, 0x40, 0x0a, 0x42, 0x2d, 0xd1, 0x28, 0x4a, 0x2e, 0x3a, 0x92, 0x59, +0x0a, 0x42, 0x28, 0xd1, 0x2c, 0x4a, 0xa1, 0x01, 0x80, 0x00, 0x8f, 0x18, 0x08, 0x90, 0x38, 0x58, +0x00, 0x28, 0x20, 0xd0, 0x01, 0x89, 0x40, 0x18, 0xc1, 0x78, 0x82, 0x78, 0x08, 0x02, 0x10, 0x43, +0x01, 0x28, 0x02, 0xd1, 0x80, 0x04, 0xda, 0xf7, 0x4d, 0xfb, 0xfe, 0xf7, 0x92, 0xfb, 0x01, 0x20, +0x04, 0x90, 0x08, 0x98, 0x38, 0x58, 0xfb, 0xf7, 0xbb, 0xfe, 0x08, 0x99, 0x00, 0x20, 0x78, 0x50, +0x16, 0x49, 0x62, 0x39, 0xc8, 0x6c, 0x4a, 0x1d, 0x40, 0x1c, 0xc8, 0x64, 0x12, 0x5d, 0x82, 0x42, +0x01, 0xd1, 0x01, 0x20, 0xc8, 0x64, 0x6d, 0x1c, 0x10, 0x48, 0x5d, 0x38, 0x00, 0x5d, 0xa8, 0x42, +0xba, 0xdc, 0x04, 0x98, 0x00, 0x28, 0x02, 0xd0, 0x04, 0x20, 0xdb, 0xf7, 0xbd, 0xfc, 0xff, 0xf7, +0xc0, 0xfb, 0xfe, 0xf7, 0x51, 0xfb, 0x06, 0x98, 0xc0, 0x07, 0x05, 0x98, 0x7b, 0xd0, 0x40, 0x07, +0x7a, 0xd4, 0x06, 0x48, 0x56, 0x38, 0x80, 0x59, 0x04, 0x4d, 0xc1, 0x79, 0x82, 0x79, 0x08, 0x02, +0x0a, 0x3d, 0xa9, 0x59, 0x10, 0x43, 0x08, 0x40, 0x14, 0xe0, 0xb6, 0xe0, 0x86, 0x77, 0x02, 0x00, +0xff, 0xff, 0x00, 0x00, 0x00, 0x23, 0x00, 0x80, 0x98, 0xee, 0x00, 0xc0, 0xdc, 0xfe, 0x00, 0x00, +0xb0, 0x00, 0x00, 0x04, 0x30, 0x00, 0x00, 0x04, 0x80, 0x90, 0x02, 0x00, 0x20, 0x00, 0x00, 0x80, +0x03, 0xe6, 0x00, 0x00, 0x03, 0x90, 0x01, 0x90, 0xfe, 0xf7, 0x43, 0xfb, 0xa9, 0x59, 0x03, 0x98, +0x81, 0x42, 0x7e, 0xd0, 0x00, 0x20, 0xff, 0xf7, 0xfd, 0xfe, 0x01, 0x20, 0x64, 0xe0, 0x6e, 0x48, +0x01, 0x25, 0x00, 0x6c, 0x29, 0x00, 0x00, 0x06, 0x00, 0x0e, 0x03, 0x9a, 0x81, 0x40, 0x11, 0x42, +0x61, 0xd1, 0x6a, 0x4a, 0xa3, 0x01, 0x80, 0x00, 0x9f, 0x18, 0x07, 0x90, 0x38, 0x58, 0x00, 0x28, +0x59, 0xd0, 0x03, 0x9a, 0x11, 0x43, 0x03, 0x91, 0x01, 0x89, 0x45, 0x18, 0xfe, 0xf7, 0xf0, 0xff, +0x00, 0x28, 0x05, 0xd1, 0x29, 0x00, 0xe5, 0x20, 0xff, 0xf7, 0x33, 0xff, 0x00, 0x28, 0x2c, 0xd0, +0x07, 0x99, 0x02, 0x20, 0x79, 0x58, 0x08, 0x73, 0x07, 0x98, 0x01, 0x21, 0x3d, 0x58, 0x68, 0x7b, +0x08, 0x43, 0x68, 0x73, 0x5a, 0x48, 0xa8, 0x61, 0x28, 0x89, 0x00, 0x21, 0x00, 0x1d, 0x00, 0x04, +0x00, 0x0c, 0x28, 0x81, 0x69, 0x61, 0x07, 0x9a, 0x40, 0x19, 0xb9, 0x50, 0x40, 0x7b, 0x00, 0x07, +0x04, 0xd5, 0x51, 0x48, 0x01, 0x21, 0x41, 0x70, 0xe5, 0xf7, 0xe5, 0xfb, 0x30, 0x20, 0x4f, 0x49, +0x60, 0x43, 0x80, 0x31, 0x40, 0x18, 0x4c, 0x49, 0x00, 0x22, 0x38, 0x31, 0x8f, 0x59, 0x29, 0x00, +0x04, 0x23, 0xb8, 0x47, 0x0a, 0xe0, 0x40, 0xe0, 0x41, 0xe0, 0x07, 0x98, 0x38, 0x58, 0x00, 0x28, +0x04, 0xd0, 0xf7, 0xf2, 0xa7, 0xfc, 0x07, 0x99, 0x00, 0x20, 0x78, 0x50, 0x42, 0x49, 0x08, 0x6c, +0x0a, 0x1d, 0x40, 0x1c, 0x08, 0x64, 0x12, 0x5d, 0x82, 0x42, 0x01, 0xd1, 0x01, 0x20, 0x08, 0x64, +0x02, 0x98, 0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x02, 0x90, 0x3b, 0x48, 0x02, 0x99, 0x00, 0x1d, +0x00, 0x5d, 0x88, 0x42, 0x93, 0xd8, 0x38, 0x48, 0x00, 0x1d, 0x00, 0x5d, 0x01, 0x28, 0x03, 0xd0, +0x01, 0x98, 0x00, 0x04, 0x40, 0x0c, 0x1e, 0xd1, 0x20, 0x00, 0xff, 0xf7, 0xba, 0xfb, 0x32, 0x49, +0x00, 0xe0, 0x11, 0xe0, 0x54, 0x31, 0x88, 0x59, 0x02, 0x04, 0x52, 0x0c, 0x13, 0xd0, 0x2e, 0x4a, +0x52, 0x78, 0x00, 0x2a, 0x0f, 0xd1, 0x0a, 0x00, 0x18, 0x3a, 0x90, 0x51, 0x00, 0x20, 0x88, 0x51, +0x01, 0x21, 0x20, 0x00, 0xff, 0xf7, 0x52, 0xf9, 0x05, 0xe0, 0x40, 0x07, 0x03, 0xd5, 0x26, 0x48, +0x81, 0x69, 0x49, 0x1c, 0x81, 0x61, 0xe5, 0xf7, 0x83, 0xfb, 0x64, 0x1c, 0x01, 0x2c, 0x00, 0xda, +0xc5, 0xe6, 0x01, 0x20, 0x09, 0xb0, 0xf0, 0xbd, 0x1f, 0x49, 0x80, 0x00, 0x0c, 0x31, 0x08, 0x58, +0xc1, 0x79, 0x82, 0x79, 0x08, 0x02, 0x10, 0x43, 0xc0, 0x07, 0xc0, 0x0f, 0x70, 0x47, 0x1a, 0x4a, +0x81, 0x00, 0x70, 0xb5, 0x0c, 0x32, 0x52, 0x58, 0x53, 0x79, 0x14, 0x79, 0x1a, 0x02, 0x22, 0x43, +0xd2, 0x07, 0x28, 0xd1, 0x14, 0x4a, 0x34, 0x32, 0x51, 0x58, 0xc9, 0x07, 0x23, 0xd1, 0x13, 0x4e, +0x84, 0x01, 0x40, 0x36, 0x30, 0x59, 0x00, 0x28, 0x1d, 0xd0, 0x01, 0x89, 0x45, 0x18, 0xe8, 0x78, +0xa9, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x02, 0xd1, 0x80, 0x04, 0xda, 0xf7, 0x2a, 0xfa, +0xe8, 0x78, 0xa9, 0x78, 0x00, 0x02, 0x08, 0x43, 0x03, 0x28, 0x01, 0xd1, 0xfe, 0xf7, 0x69, 0xfa, +0x31, 0x59, 0x20, 0x20, 0x08, 0x81, 0x30, 0x59, 0xe5, 0xf7, 0x0f, 0xfb, 0x30, 0x59, 0xfb, 0xf7, +0x8f, 0xfd, 0x00, 0x20, 0x30, 0x51, 0x70, 0xbd, 0x24, 0x77, 0x02, 0x00, 0x40, 0x90, 0x02, 0x00, +0x2d, 0x52, 0x02, 0x00, 0x10, 0xb5, 0xe9, 0xf2, 0x93, 0xf8, 0x10, 0xbd, 0xff, 0xb5, 0xe1, 0xb0, +0x05, 0x00, 0x00, 0x26, 0x40, 0x68, 0x5c, 0x90, 0x06, 0x20, 0x5b, 0x96, 0x38, 0x96, 0x5a, 0x90, +0xff, 0xa0, 0x05, 0xc8, 0x0d, 0x96, 0x0c, 0x96, 0x36, 0x92, 0x35, 0x90, 0x08, 0x89, 0x40, 0x18, +0x09, 0x90, 0x48, 0x69, 0x0b, 0x21, 0x89, 0x01, 0x0b, 0x90, 0x40, 0x18, 0x00, 0x69, 0x0a, 0x90, +0x0b, 0x98, 0xfe, 0xf7, 0xa5, 0xfe, 0x08, 0x90, 0x2c, 0x68, 0x6a, 0x98, 0x14, 0x34, 0xe6, 0x28, +0x00, 0xd1, 0x5a, 0x96, 0x00, 0x20, 0x10, 0x90, 0x0f, 0x90, 0x0e, 0x90, 0x60, 0x68, 0x80, 0x79, +0xc1, 0x07, 0xf1, 0x48, 0x0b, 0x99, 0x04, 0xd0, 0x08, 0x18, 0x40, 0x6a, 0x00, 0x28, 0x0f, 0xd0, +0x03, 0xe0, 0x08, 0x18, 0x80, 0x6a, 0x00, 0x28, 0x06, 0xd0, 0x6c, 0x99, 0x08, 0x30, 0x08, 0x60, +0x60, 0x68, 0x80, 0x79, 0xc0, 0x07, 0x03, 0xd1, 0x0b, 0x98, 0xc0, 0x68, 0xc0, 0x07, 0x0c, 0xd0, +0x6c, 0x98, 0x00, 0x68, 0x00, 0x28, 0x08, 0xd1, 0x0b, 0x98, 0xc0, 0x68, 0x40, 0x07, 0x70, 0xd4, +0x0b, 0x98, 0x20, 0x30, 0x40, 0x7e, 0x00, 0x07, 0xf9, 0xd4, 0x28, 0x00, 0x08, 0x30, 0x5a, 0xaa, +0x35, 0xa9, 0x6b, 0x46, 0x60, 0x90, 0x07, 0xc3, 0x0d, 0xaa, 0x5c, 0x99, 0x59, 0x13, 0x75, 0x6a, +0x01, 0x00, 0x00, 0x00, 0xa0, 0x5d, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x67, 0xbc, 0xec, 0xd9, +0x6a, 0x98, 0x07, 0xab, 0xea, 0xf2, 0x9e, 0xfa, 0x02, 0x00, 0x63, 0x98, 0x00, 0x21, 0x02, 0x60, +0x6c, 0x98, 0x00, 0x68, 0x00, 0x28, 0x03, 0xd0, 0x83, 0x7a, 0xdb, 0x07, 0x00, 0xd0, 0x01, 0x21, +0x63, 0x68, 0x9e, 0x79, 0xf3, 0x07, 0x03, 0xd1, 0x0b, 0x9b, 0xdb, 0x68, 0x9b, 0x07, 0x30, 0xd5, +0x64, 0x9b, 0x03, 0x2b, 0x2d, 0xd0, 0x0b, 0x9b, 0x20, 0x33, 0x5b, 0x7e, 0x1b, 0x07, 0xdb, 0x0f, +0x10, 0x93, 0x26, 0xd1, 0x0b, 0x9b, 0xdb, 0x68, 0x5f, 0x07, 0x0e, 0xd5, 0xc3, 0x79, 0x1f, 0x07, +0x3f, 0x0f, 0x01, 0x2f, 0x01, 0xd1, 0x01, 0x23, 0x00, 0xe0, 0x00, 0x23, 0x0f, 0x93, 0x01, 0x23, +0x02, 0x2f, 0x00, 0xd0, 0x00, 0x23, 0x0e, 0x93, 0x13, 0xe0, 0xdb, 0x06, 0x04, 0xd5, 0x00, 0x29, +0x02, 0xd0, 0x01, 0x23, 0x0c, 0x93, 0x0c, 0xe0, 0x0b, 0x9b, 0x1b, 0x7a, 0x01, 0x2b, 0x08, 0xd1, +0x00, 0x29, 0x06, 0xd0, 0xc3, 0x79, 0x1b, 0x07, 0x1b, 0x0f, 0x02, 0x2b, 0x01, 0xd1, 0x01, 0x23, +0xe9, 0xe7, 0x0b, 0x9f, 0x01, 0x23, 0x20, 0x37, 0x7f, 0x7e, 0x3f, 0x07, 0x07, 0xd4, 0x00, 0x29, +0x04, 0xd0, 0x00, 0x28, 0x02, 0xd0, 0x80, 0x7a, 0x80, 0x07, 0x00, 0xd4, 0x00, 0x23, 0x64, 0x98, +0x03, 0x28, 0x11, 0xd0, 0x00, 0x2a, 0x07, 0xd1, 0x0b, 0x98, 0xc0, 0x68, 0x80, 0x07, 0x0b, 0xd4, +0xf0, 0x07, 0x3d, 0xd0, 0x08, 0xe0, 0x3b, 0xe0, 0x00, 0x2b, 0x05, 0xd0, 0x00, 0x20, 0x6c, 0x99, +0x10, 0x90, 0x0e, 0x90, 0x0f, 0x90, 0x08, 0x60, 0x0c, 0x98, 0x00, 0x28, 0x08, 0xd0, 0x63, 0x98, +0x00, 0x68, 0x00, 0x28, 0x04, 0xd0, 0x00, 0x20, 0x01, 0x00, 0x0c, 0x90, 0x6c, 0x98, 0x01, 0x60, +0x37, 0xaa, 0x38, 0xa9, 0x01, 0x92, 0x00, 0x91, 0x0c, 0x9b, 0x0e, 0x9a, 0x0f, 0x99, 0x10, 0x98, +0xea, 0xf2, 0xf4, 0xf9, 0x0c, 0x98, 0x00, 0x28, 0x06, 0xd0, 0x30, 0xab, 0x58, 0x7f, 0x80, 0x1c, +0x58, 0x77, 0x18, 0x7f, 0x80, 0x1c, 0x18, 0x77, 0x0e, 0x99, 0x0f, 0x98, 0x08, 0x43, 0x0c, 0x99, +0x08, 0x43, 0x10, 0x99, 0x08, 0x43, 0x0e, 0xd0, 0x60, 0x68, 0x40, 0x22, 0xc1, 0x78, 0x11, 0x43, +0xc1, 0x70, 0x6c, 0x98, 0x00, 0x68, 0x00, 0x28, 0x02, 0xd0, 0x80, 0x7a, 0xc0, 0x07, 0x02, 0xd1, +0x00, 0x20, 0x65, 0xb0, 0xf0, 0xbd, 0x6a, 0x98, 0xe6, 0x28, 0x02, 0xd0, 0x6b, 0x98, 0x00, 0x28, +0x01, 0xd0, 0x01, 0x20, 0x0d, 0xe0, 0x0a, 0x98, 0x5a, 0x9a, 0x40, 0x30, 0x40, 0x8a, 0x5b, 0x90, +0x00, 0x92, 0x2e, 0x89, 0x30, 0xab, 0x1a, 0x7f, 0x6d, 0x99, 0x33, 0x00, 0x5b, 0xa8, 0xea, 0xf2, +0x39, 0xfa, 0xa8, 0x72, 0xe0, 0x69, 0xc0, 0x05, 0x02, 0xd5, 0x01, 0x20, 0xa8, 0x72, 0x2d, 0xe0, +0xa8, 0x7a, 0x01, 0x28, 0x27, 0xd9, 0x60, 0x68, 0x04, 0x22, 0xc1, 0x78, 0x11, 0x43, 0xc1, 0x70, +0x77, 0x48, 0x00, 0x79, 0xc0, 0x06, 0x0a, 0xd4, 0x0b, 0x98, 0x40, 0x7a, 0x02, 0x28, 0x1a, 0xd1, +0x08, 0x98, 0x13, 0x21, 0x49, 0x01, 0x40, 0x18, 0x00, 0x79, 0x00, 0x07, 0x13, 0xd5, 0x20, 0x8d, +0x80, 0x05, 0x40, 0x0e, 0x03, 0x28, 0x0e, 0xd9, 0x6d, 0x49, 0x40, 0x31, 0x89, 0x7d, 0x49, 0x06, +0x09, 0xd4, 0xde, 0xf7, 0x75, 0xf9, 0x40, 0x06, 0x21, 0x8d, 0x80, 0x0d, 0x7f, 0x22, 0xd2, 0x00, +0x91, 0x43, 0x01, 0x43, 0x21, 0x85, 0xa8, 0x7a, 0x01, 0x28, 0x12, 0xd1, 0x08, 0xab, 0x19, 0x7d, +0x5c, 0x98, 0x30, 0xab, 0x40, 0x18, 0x5a, 0x99, 0x40, 0x1a, 0x59, 0x7f, 0x40, 0x1a, 0x20, 0x38, +0x09, 0x99, 0x80, 0x08, 0x80, 0x00, 0x70, 0x31, 0x88, 0x42, 0x5d, 0x90, 0x06, 0xd2, 0x5d, 0x91, +0x04, 0xe0, 0x09, 0x98, 0x70, 0x30, 0x80, 0x08, 0x80, 0x00, 0x5d, 0x90, 0x5d, 0x98, 0x5e, 0x90, +0x11, 0xa8, 0x50, 0xab, 0xe8, 0x60, 0x99, 0x8d, 0x08, 0xab, 0x18, 0x7d, 0x5c, 0xaa, 0x04, 0xae, +0x07, 0xc6, 0x37, 0xa9, 0x60, 0x9a, 0x5a, 0x98, 0x01, 0xae, 0x07, 0xc6, 0x5d, 0xaa, 0x00, 0x92, +0xa8, 0x7a, 0x4a, 0xaa, 0x11, 0xa9, 0x3a, 0xab, 0xea, 0xf2, 0xfb, 0xf9, 0x0c, 0x98, 0x00, 0x28, +0x0a, 0xd0, 0x00, 0x20, 0x3a, 0xaa, 0x04, 0xe0, 0x81, 0x00, 0x53, 0x58, 0x9b, 0x1e, 0x40, 0x1c, +0x53, 0x50, 0xa9, 0x7a, 0x81, 0x42, 0xf7, 0xd8, 0xa9, 0x7a, 0xe8, 0x68, 0x49, 0x1e, 0xea, 0xf2, +0x4c, 0xfa, 0x5a, 0x9a, 0x00, 0x2a, 0x05, 0xd0, 0xe8, 0x68, 0x35, 0xa9, 0x80, 0x68, 0x80, 0x1a, +0xf6, 0xf2, 0x24, 0xed, 0x67, 0x68, 0x4a, 0x98, 0x60, 0x60, 0x6a, 0x98, 0xe6, 0x28, 0x0f, 0xd0, +0x6b, 0x98, 0x01, 0x28, 0x0c, 0xd0, 0x3a, 0x98, 0xba, 0x1d, 0x01, 0x04, 0x0b, 0x98, 0x09, 0x0c, +0x00, 0xf0, 0x1b, 0xfe, 0x00, 0x28, 0x03, 0xd0, 0xe0, 0x69, 0xea, 0xf2, 0x23, 0xfa, 0xe0, 0x61, +0xe0, 0x69, 0x01, 0x21, 0x89, 0x02, 0x88, 0x43, 0x00, 0x26, 0xe0, 0x61, 0xfa, 0xe0, 0x0f, 0x99, +0x00, 0x29, 0x07, 0xd0, 0x40, 0x1e, 0xb0, 0x42, 0x04, 0xd1, 0xb0, 0x00, 0x3a, 0xa9, 0x0a, 0x58, +0x08, 0x32, 0x0a, 0x50, 0xb0, 0x00, 0x3a, 0xa9, 0x5f, 0x90, 0x08, 0x58, 0x02, 0x04, 0x12, 0x0c, +0x3a, 0x80, 0xa8, 0x7a, 0x40, 0x1e, 0xb0, 0x42, 0x4f, 0xd1, 0xf8, 0x78, 0xfb, 0x21, 0x08, 0x40, +0xf8, 0x70, 0xe0, 0x69, 0x81, 0x07, 0x01, 0xd0, 0x1e, 0x21, 0x00, 0xe0, 0x18, 0x21, 0x09, 0x1d, +0x51, 0x18, 0x09, 0x04, 0x09, 0x0c, 0x61, 0x84, 0x6d, 0x9a, 0x00, 0x2a, 0x01, 0xd0, 0x89, 0x1c, +0x61, 0x84, 0x41, 0x05, 0x08, 0xd5, 0x02, 0x04, 0x20, 0x8d, 0x12, 0x0c, 0x80, 0x05, 0x41, 0x0e, +0x0b, 0x98, 0xed, 0xf7, 0xe9, 0xf9, 0xb8, 0x80, 0xe0, 0x69, 0x81, 0x06, 0x0f, 0xd5, 0x6d, 0x9a, +0x00, 0x92, 0x5f, 0x99, 0x3a, 0xaa, 0x51, 0x58, 0xbb, 0x88, 0x0a, 0x04, 0x01, 0x04, 0x20, 0x8d, +0x12, 0x0c, 0x80, 0x05, 0x09, 0x0c, 0x40, 0x0e, 0xed, 0xf7, 0xe6, 0xf9, 0x1b, 0xe0, 0x01, 0x06, +0x18, 0xd5, 0x6d, 0x9a, 0x00, 0x92, 0x5f, 0x99, 0x3a, 0xaa, 0x51, 0x58, 0xbb, 0x88, 0x0a, 0x04, +0x01, 0x04, 0x20, 0x8d, 0x12, 0x0c, 0x80, 0x05, 0x09, 0x0c, 0x40, 0x0e, 0xeb, 0xf2, 0xbb, 0xfb, +0x09, 0xe0, 0x00, 0x00, 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x02, 0x00, 0x00, +0x82, 0x55, 0x00, 0x04, 0x00, 0x20, 0xe0, 0x81, 0x4a, 0xe0, 0xe0, 0x69, 0x41, 0x05, 0x10, 0xd5, +0x6d, 0x9a, 0x00, 0x92, 0x5f, 0x99, 0x3a, 0xaa, 0x89, 0x18, 0x49, 0x68, 0x02, 0x04, 0x20, 0x8d, +0x0b, 0x04, 0x80, 0x05, 0x41, 0x0e, 0x0b, 0x98, 0x1b, 0x0c, 0x12, 0x0c, 0xed, 0xf7, 0xaa, 0xf9, +0xb8, 0x80, 0x00, 0x2e, 0x34, 0xd1, 0xe0, 0x69, 0x81, 0x06, 0x16, 0xd5, 0x02, 0x04, 0x20, 0x8d, +0x12, 0x0c, 0x80, 0x05, 0x41, 0x0e, 0x0b, 0x98, 0xed, 0xf7, 0x96, 0xf9, 0x03, 0x00, 0x6d, 0x9a, +0x3a, 0x98, 0x00, 0x92, 0x02, 0x04, 0xe0, 0x69, 0x12, 0x0c, 0x01, 0x04, 0x20, 0x8d, 0x09, 0x0c, +0x80, 0x05, 0x40, 0x0e, 0xed, 0xf7, 0x98, 0xf9, 0x19, 0xe0, 0x01, 0x06, 0x16, 0xd5, 0x02, 0x04, +0x20, 0x8d, 0x12, 0x0c, 0x80, 0x05, 0x41, 0x0e, 0x0b, 0x98, 0xed, 0xf7, 0x7d, 0xf9, 0x03, 0x00, +0x6d, 0x9a, 0x3a, 0x98, 0x00, 0x92, 0x02, 0x04, 0xe0, 0x69, 0x12, 0x0c, 0x6b, 0xe7, 0x57, 0xc5, +0x01, 0x00, 0x00, 0x00, 0x9c, 0x61, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x4f, 0x2d, 0x69, 0x64, +0x01, 0x04, 0x20, 0x8d, 0x09, 0x0c, 0x80, 0x05, 0x40, 0x0e, 0xeb, 0xf2, 0x66, 0xfb, 0x00, 0xe0, +0x00, 0x20, 0xa0, 0x81, 0x28, 0x8a, 0x4a, 0xa9, 0x00, 0x09, 0x00, 0x01, 0x30, 0x43, 0x38, 0x83, +0x5f, 0x98, 0x20, 0x22, 0x08, 0x58, 0x39, 0x00, 0xf6, 0xf2, 0x4a, 0xec, 0x38, 0xab, 0x18, 0x78, +0x01, 0x28, 0x09, 0xd1, 0x6c, 0x98, 0x3a, 0xa9, 0x02, 0x68, 0x5f, 0x98, 0x4a, 0xab, 0x09, 0x58, +0x18, 0x58, 0xea, 0xf2, 0x1b, 0xf8, 0x2e, 0xe0, 0x02, 0x28, 0x2c, 0xd1, 0x5f, 0x98, 0x4a, 0xa9, +0x09, 0x58, 0x39, 0x91, 0x3a, 0xa9, 0x08, 0x58, 0x30, 0xab, 0x19, 0x7f, 0x40, 0x1a, 0x39, 0x99, +0x00, 0x04, 0x00, 0x0c, 0x08, 0x80, 0xa9, 0x7a, 0x49, 0x1e, 0xb1, 0x42, 0x02, 0xd1, 0x39, 0x99, +0x08, 0x38, 0x08, 0x80, 0x39, 0x98, 0x80, 0x79, 0xc2, 0x07, 0x6c, 0x98, 0xd2, 0x0f, 0x01, 0x68, +0x0b, 0x98, 0xfc, 0xf7, 0xd4, 0xf9, 0x03, 0x00, 0x6c, 0x98, 0xe9, 0x7a, 0x02, 0x68, 0x39, 0x98, +0xff, 0xf7, 0x5c, 0xfd, 0xa8, 0x7a, 0x40, 0x1e, 0xb0, 0x42, 0x04, 0xd1, 0x39, 0x98, 0x39, 0x99, +0x00, 0x88, 0x08, 0x30, 0x08, 0x80, 0x76, 0x1c, 0xa8, 0x7a, 0xb0, 0x42, 0x00, 0xd9, 0x00, 0xe7, +0x6e, 0x98, 0x00, 0x28, 0x0a, 0xd0, 0x6e, 0x98, 0x30, 0xab, 0x59, 0x7f, 0x80, 0x30, 0x41, 0x76, +0x99, 0x7f, 0x81, 0x76, 0x0e, 0x99, 0xc1, 0x61, 0x0c, 0x99, 0x01, 0x62, 0x5e, 0x98, 0x3a, 0xe6, +0xff, 0xb5, 0x8d, 0xb0, 0x04, 0x00, 0x40, 0x68, 0x0c, 0x90, 0x06, 0x20, 0x0b, 0x90, 0x5a, 0x48, +0x18, 0x9d, 0x05, 0xc8, 0x80, 0x35, 0x09, 0x90, 0x00, 0x20, 0x0a, 0x92, 0x08, 0x90, 0xe8, 0x69, +0x07, 0x90, 0x28, 0x6a, 0x06, 0x90, 0x08, 0x89, 0x40, 0x18, 0x05, 0x90, 0x4f, 0x69, 0x01, 0x20, +0xa0, 0x72, 0x26, 0x68, 0x16, 0x98, 0x14, 0x36, 0xe6, 0x28, 0x01, 0xd1, 0x00, 0x20, 0x0b, 0x90, +0x09, 0x20, 0x80, 0x01, 0x38, 0x18, 0x80, 0x6a, 0x00, 0x28, 0x02, 0xd0, 0x17, 0x99, 0x08, 0x30, +0x08, 0x60, 0x20, 0x00, 0x08, 0x30, 0x0b, 0xaa, 0x09, 0xa9, 0x6b, 0x46, 0x07, 0xc3, 0x08, 0xaa, +0x0c, 0x99, 0x16, 0x98, 0x04, 0xab, 0xea, 0xf2, 0x07, 0xf8, 0x0f, 0x99, 0x02, 0x00, 0x08, 0x60, +0x17, 0x98, 0x00, 0x21, 0x00, 0x68, 0x00, 0x28, 0x03, 0xd0, 0x83, 0x7a, 0xdb, 0x07, 0x00, 0xd0, +0x01, 0x21, 0x39, 0x23, 0xdb, 0x5d, 0x8c, 0x46, 0x01, 0x21, 0x1b, 0x07, 0x08, 0xd4, 0x63, 0x46, +0x00, 0x2b, 0x04, 0xd0, 0x00, 0x28, 0x02, 0xd0, 0x80, 0x7a, 0x80, 0x07, 0x00, 0xd4, 0x00, 0x21, +0x10, 0x98, 0x03, 0x28, 0x0c, 0xd0, 0x00, 0x2a, 0x05, 0xd1, 0xf8, 0x68, 0x80, 0x07, 0x07, 0xd4, +0x00, 0x20, 0x11, 0xb0, 0xf0, 0xbd, 0x00, 0x29, 0x02, 0xd0, 0x17, 0x99, 0x00, 0x20, 0x08, 0x60, +0x06, 0x98, 0x00, 0x28, 0x07, 0xd0, 0x0f, 0x98, 0x00, 0x68, 0x00, 0x28, 0x03, 0xd0, 0x17, 0x99, +0x00, 0x20, 0x06, 0x90, 0x08, 0x60, 0x06, 0x99, 0x07, 0x98, 0x08, 0x43, 0x04, 0xd0, 0x70, 0x68, +0x40, 0x22, 0xc1, 0x78, 0x11, 0x43, 0xc1, 0x70, 0x08, 0xab, 0x19, 0x78, 0x0c, 0x98, 0x0b, 0x9a, +0x6b, 0x7e, 0x41, 0x18, 0x88, 0x1a, 0xc0, 0x1a, 0x20, 0x38, 0x87, 0x08, 0x05, 0x98, 0xbf, 0x00, +0x70, 0x30, 0x87, 0x42, 0x00, 0xd2, 0x07, 0x00, 0xe0, 0x68, 0x20, 0x32, 0x41, 0x60, 0x68, 0x7e, +0xe1, 0x68, 0xc0, 0x19, 0x80, 0x18, 0x88, 0x60, 0xe1, 0x68, 0x20, 0x89, 0x08, 0x60, 0xa1, 0x7a, +0xe0, 0x68, 0x49, 0x1e, 0xea, 0xf2, 0x83, 0xf8, 0x0b, 0x9a, 0x00, 0x2a, 0x06, 0xd0, 0x69, 0x7e, +0x38, 0x00, 0x20, 0x30, 0x08, 0x18, 0x09, 0xa9, 0xf6, 0xf2, 0x5a, 0xeb, 0x71, 0x68, 0x77, 0x60, +0x68, 0x7e, 0x22, 0x89, 0x0b, 0x9b, 0x80, 0x18, 0xaa, 0x7e, 0xd2, 0x18, 0x80, 0x18, 0x06, 0x9a, +0x00, 0x2a, 0x00, 0xd0, 0x80, 0x1e, 0x08, 0x80, 0x1e, 0x30, 0xf2, 0x69, 0x00, 0x04, 0x00, 0x0c, +0x92, 0x07, 0x02, 0xd0, 0x80, 0x1d, 0x00, 0x04, 0x00, 0x0c, 0x70, 0x84, 0x20, 0x22, 0x38, 0x00, +0xf6, 0xf2, 0x3e, 0xeb, 0x38, 0x00, 0x9c, 0xe7, 0x04, 0x61, 0x02, 0x00, 0xf0, 0xb5, 0xa7, 0xb0, +0x00, 0x27, 0x11, 0x97, 0x10, 0x97, 0x61, 0x20, 0xc0, 0x02, 0xd9, 0xf7, 0x87, 0xfe, 0x00, 0x22, +0xd2, 0x43, 0x00, 0x92, 0x08, 0x22, 0x01, 0x21, 0xff, 0x48, 0x25, 0xab, 0xc0, 0x68, 0xfb, 0xf7, +0xf1, 0xff, 0xfe, 0x48, 0xd9, 0xf7, 0x7a, 0xfe, 0x25, 0x98, 0x00, 0x28, 0xeb, 0xd0, 0xc0, 0x07, +0xe9, 0xd0, 0xf2, 0xe2, 0x12, 0x98, 0x44, 0x69, 0x0b, 0x20, 0x80, 0x01, 0x20, 0x18, 0x00, 0x69, +0x0f, 0x90, 0x14, 0x9e, 0xfb, 0xf7, 0xa4, 0xf9, 0x05, 0x00, 0x00, 0x2e, 0x06, 0xd0, 0x12, 0x98, +0x00, 0xf0, 0x4c, 0xfb, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, 0x00, 0xe0, 0x00, 0x20, 0x13, 0x90, +0x28, 0x00, 0xfb, 0xf7, 0x99, 0xf9, 0x01, 0x20, 0x18, 0xab, 0x24, 0x90, 0x58, 0x7a, 0x18, 0x99, +0x00, 0x02, 0x08, 0x43, 0x12, 0x99, 0xf5, 0x6d, 0x48, 0x81, 0x13, 0x98, 0x00, 0x28, 0x7e, 0xd0, +0x00, 0x2c, 0x21, 0xd1, 0x14, 0x98, 0x60, 0x30, 0x40, 0x7a, 0x21, 0x28, 0x16, 0xd1, 0xa8, 0x78, +0x01, 0x07, 0x89, 0x0f, 0x0e, 0xd1, 0x00, 0x09, 0x04, 0x28, 0x0b, 0xd1, 0x14, 0xa8, 0xec, 0xf7, +0xd3, 0xfa, 0x04, 0x00, 0x12, 0x98, 0xf7, 0xf2, 0x41, 0xf8, 0x18, 0x99, 0x20, 0x00, 0xec, 0xf7, +0xcd, 0xfa, 0xb2, 0xe2, 0x12, 0x98, 0xf7, 0xf2, 0x39, 0xf8, 0xae, 0xe2, 0xd8, 0x48, 0xd9, 0xf7, +0x2d, 0xfe, 0x00, 0xf0, 0x1a, 0xee, 0xa3, 0xe0, 0x01, 0x20, 0x0d, 0x90, 0x20, 0x00, 0xe5, 0xf7, +0xa4, 0xff, 0x31, 0x00, 0x14, 0x31, 0x0e, 0x91, 0x18, 0x99, 0x00, 0x29, 0x20, 0xd1, 0x21, 0x7a, +0x03, 0x29, 0x7e, 0xd1, 0x81, 0x68, 0x02, 0x23, 0x8a, 0x07, 0x99, 0x43, 0xeb, 0x78, 0xd2, 0x0f, +0xdb, 0x06, 0xdb, 0x0f, 0x5b, 0x00, 0x19, 0x43, 0x01, 0x2a, 0x81, 0x60, 0x79, 0xd1, 0x89, 0x07, +0x77, 0xd4, 0x61, 0x7a, 0x03, 0x29, 0x74, 0xd1, 0x81, 0x7f, 0xc9, 0x07, 0x71, 0xd0, 0x0f, 0x99, +0x20, 0x31, 0x09, 0x7a, 0x00, 0x29, 0x6c, 0xd0, 0x01, 0x21, 0x80, 0x30, 0x81, 0x62, 0x68, 0xe0, +0x31, 0x00, 0x60, 0x31, 0x26, 0x91, 0x49, 0x7a, 0x38, 0x29, 0x09, 0xd1, 0xaa, 0x78, 0x13, 0x07, +0x9b, 0x0f, 0x02, 0x2b, 0x04, 0xd1, 0x12, 0x09, 0x0c, 0x2a, 0x5a, 0xd0, 0x04, 0x2a, 0x58, 0xd0, +0x22, 0x7a, 0x03, 0x2a, 0x26, 0xd1, 0x80, 0x7f, 0x80, 0x07, 0x23, 0xd0, 0x10, 0xab, 0x98, 0x7f, +0x00, 0x28, 0x01, 0xd0, 0x06, 0x28, 0x1d, 0xd1, 0x31, 0x29, 0x01, 0xd0, 0x32, 0x29, 0x35, 0xd1, +0x20, 0x00, 0xfe, 0xf7, 0xb8, 0xfa, 0x00, 0x21, 0x6c, 0x30, 0x01, 0x73, 0x41, 0x73, 0x81, 0x73, +0x26, 0x98, 0xef, 0x22, 0x41, 0x72, 0x30, 0x78, 0x10, 0x40, 0x30, 0x70, 0x00, 0xe0, 0x99, 0xe0, +0x0e, 0x98, 0x20, 0x30, 0x01, 0x78, 0x11, 0x40, 0x01, 0x70, 0xa8, 0x78, 0x00, 0x09, 0x0c, 0x28, +0x2f, 0xd0, 0x1b, 0xe0, 0x60, 0x7a, 0x02, 0x28, 0x2b, 0xd1, 0xb0, 0x68, 0x80, 0x00, 0x28, 0xd4, +0x10, 0xab, 0x98, 0x7f, 0x04, 0x28, 0x24, 0xd1, 0xa8, 0x78, 0x00, 0x07, 0xc0, 0x39, 0xad, 0x61, +0x01, 0x00, 0x00, 0x00, 0x98, 0x65, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x1c, 0xf7, 0xba, 0x08, +0x80, 0x0f, 0x02, 0x28, 0x1f, 0xd1, 0x20, 0x00, 0xfe, 0xf7, 0x8f, 0xfa, 0x0c, 0x30, 0x00, 0x7d, +0x01, 0x28, 0x18, 0xd1, 0x0e, 0x98, 0x41, 0x78, 0x01, 0x70, 0x0e, 0x99, 0x00, 0x20, 0x48, 0x70, +0x0e, 0x99, 0x00, 0x20, 0x48, 0x80, 0x0e, 0x99, 0x08, 0x61, 0x0e, 0x99, 0x48, 0x61, 0xe8, 0x78, +0x08, 0x21, 0x08, 0x43, 0x00, 0xe0, 0x18, 0xe0, 0xe8, 0x70, 0x12, 0x99, 0x01, 0x22, 0x20, 0x00, +0xe0, 0xf7, 0xd4, 0xff, 0x0d, 0x90, 0x20, 0x7a, 0x03, 0x28, 0x08, 0xd1, 0x0f, 0x98, 0x20, 0x30, +0x00, 0x7a, 0x00, 0x28, 0x03, 0xd1, 0x01, 0x21, 0x20, 0x00, 0xe0, 0xf7, 0x61, 0xfd, 0x0d, 0x98, +0x00, 0x28, 0x7e, 0xd0, 0x18, 0x98, 0x00, 0x28, 0x07, 0xd1, 0xa8, 0x78, 0x00, 0x07, 0x80, 0x0f, +0x02, 0x28, 0x02, 0xd1, 0x20, 0x00, 0xdd, 0xf7, 0xd5, 0xf8, 0x00, 0x2c, 0x28, 0xd0, 0x20, 0x7a, +0x01, 0x28, 0x06, 0xd1, 0xf0, 0x6d, 0x80, 0x79, 0xc0, 0x07, 0x02, 0xd1, 0x20, 0x00, 0xfe, 0xf7, +0x7c, 0xfa, 0xa8, 0x79, 0xc0, 0x07, 0x1b, 0xd1, 0x60, 0x7a, 0x02, 0x28, 0x18, 0xd1, 0x14, 0x99, +0x01, 0x22, 0x20, 0x00, 0xfd, 0xf7, 0xe5, 0xfc, 0xa8, 0x78, 0x00, 0x07, 0x80, 0x0f, 0x02, 0x28, +0x05, 0xd1, 0x18, 0x98, 0x00, 0x28, 0x02, 0xd1, 0x20, 0x00, 0xfd, 0xf7, 0xd6, 0xfb, 0x20, 0x00, +0x00, 0xf0, 0x94, 0xee, 0x00, 0x28, 0x03, 0xd0, 0x29, 0x00, 0x20, 0x00, 0x00, 0xf0, 0xc2, 0xee, +0xfd, 0xf7, 0x4b, 0xfd, 0x00, 0x28, 0x17, 0xd0, 0x14, 0x98, 0x60, 0x30, 0x40, 0x7a, 0x14, 0x28, +0x12, 0xd0, 0x15, 0x28, 0x10, 0xd0, 0x35, 0x28, 0x0e, 0xd0, 0x18, 0x98, 0x00, 0x28, 0x0b, 0xd1, +0xa8, 0x78, 0x01, 0x07, 0x89, 0x0f, 0x02, 0xd1, 0x00, 0x09, 0x05, 0x28, 0x04, 0xd0, 0x02, 0x20, +0xfe, 0xf7, 0x3c, 0xfa, 0xe1, 0xf7, 0xb8, 0xf9, 0xb0, 0x68, 0x00, 0x01, 0x1b, 0xd5, 0x18, 0x98, +0x00, 0x28, 0x0c, 0xd1, 0x00, 0x2c, 0x16, 0xd0, 0x09, 0x20, 0x80, 0x01, 0x20, 0x18, 0xc0, 0x6b, +0x00, 0x28, 0x10, 0xd0, 0x60, 0x30, 0x81, 0x8b, 0x49, 0x1c, 0x81, 0x83, 0x0b, 0xe0, 0x00, 0x2c, +0x09, 0xd0, 0x09, 0x20, 0x80, 0x01, 0x20, 0x18, 0xc0, 0x6b, 0x00, 0x28, 0x03, 0xd0, 0x60, 0x30, +0xc1, 0x8b, 0x49, 0x1c, 0xc1, 0x83, 0xb0, 0x68, 0x80, 0x00, 0x13, 0x98, 0x40, 0xd5, 0x00, 0x28, +0x3d, 0xd0, 0x14, 0x98, 0x22, 0x00, 0x60, 0x30, 0x00, 0x7a, 0x14, 0xa9, 0xfd, 0xf7, 0x4c, 0xf8, +0x00, 0xe0, 0xa8, 0xe0, 0x20, 0x7a, 0x00, 0x28, 0x02, 0xd0, 0x60, 0x7a, 0x03, 0x28, 0x03, 0xd1, +0x20, 0x00, 0x14, 0xa9, 0xfe, 0xf7, 0x76, 0xfb, 0xfd, 0xf7, 0xef, 0xfc, 0x00, 0x28, 0x1e, 0xd0, +0xe8, 0x78, 0xc0, 0x06, 0xc0, 0x0f, 0x40, 0x1e, 0x20, 0x43, 0x0a, 0xd1, 0x20, 0x7a, 0x01, 0x28, +0x07, 0xd0, 0xe3, 0xf7, 0xce, 0xf9, 0x00, 0x28, 0x03, 0xd1, 0xe3, 0xf7, 0xe3, 0xf9, 0x00, 0x28, +0x0d, 0xd0, 0x35, 0x49, 0x08, 0x68, 0x40, 0x1c, 0x08, 0x60, 0x20, 0x7a, 0x06, 0x28, 0x01, 0xd0, +0xe4, 0xf7, 0x46, 0xf9, 0xb0, 0x68, 0x00, 0x28, 0x01, 0xda, 0xe3, 0xf7, 0x02, 0xfb, 0x12, 0x98, +0x00, 0x21, 0xfa, 0xf7, 0xff, 0xff, 0x20, 0x00, 0x14, 0xa9, 0xee, 0xf7, 0xd7, 0xfd, 0x48, 0xe1, +0x00, 0x28, 0x6f, 0xd0, 0x14, 0xa8, 0xdd, 0xf7, 0xe9, 0xfb, 0x02, 0x28, 0x6b, 0xd0, 0x00, 0x2c, +0x00, 0xd0, 0x20, 0x7a, 0xb0, 0x68, 0x00, 0x28, 0x01, 0xda, 0xe3, 0xf7, 0xea, 0xfa, 0xa8, 0x78, +0x01, 0x07, 0x8a, 0x0f, 0x02, 0x2a, 0x7e, 0xd1, 0x20, 0x00, 0x14, 0xa9, 0x00, 0xf0, 0x2e, 0xee, +0x14, 0x98, 0x22, 0x00, 0x60, 0x30, 0x00, 0x7a, 0x14, 0xa9, 0xfc, 0xf7, 0xf5, 0xff, 0x20, 0x00, +0x14, 0xa9, 0xf1, 0xf7, 0x25, 0xff, 0x19, 0x49, 0x88, 0x72, 0x00, 0x0a, 0xc8, 0x72, 0x20, 0x00, +0x14, 0xa9, 0xee, 0xf7, 0xab, 0xfd, 0x20, 0x00, 0x14, 0xa9, 0x00, 0xf0, 0x1c, 0xee, 0x60, 0x7a, +0x03, 0x28, 0x01, 0xd0, 0x01, 0x28, 0x03, 0xd1, 0x20, 0x00, 0x14, 0xa9, 0xfe, 0xf7, 0x12, 0xfb, +0xfd, 0xf7, 0x8b, 0xfc, 0x00, 0x28, 0x21, 0xd0, 0xe8, 0x78, 0xc0, 0x06, 0x0a, 0xd5, 0x20, 0x7a, +0x01, 0x28, 0x07, 0xd0, 0xe3, 0xf7, 0x6d, 0xf9, 0x00, 0x28, 0x03, 0xd1, 0xe3, 0xf7, 0x82, 0xf9, +0x00, 0x28, 0x13, 0xd0, 0x04, 0x49, 0x08, 0x68, 0x40, 0x1c, 0x09, 0xe0, 0x00, 0x77, 0x02, 0x00, +0x08, 0x08, 0x03, 0x00, 0x01, 0x00, 0x01, 0x00, 0x84, 0xef, 0x00, 0xc0, 0xd2, 0x55, 0x00, 0x04, +0x08, 0x60, 0x20, 0x7a, 0x06, 0x28, 0x01, 0xd0, 0xe4, 0xf7, 0xda, 0xf8, 0xfd, 0xf7, 0x6d, 0xfc, +0x00, 0x28, 0x1f, 0xd0, 0x14, 0x98, 0x60, 0x30, 0x40, 0x7a, 0x14, 0x28, 0x1a, 0xd1, 0x20, 0x00, +0xe0, 0xf7, 0x64, 0xff, 0x18, 0x99, 0x00, 0x88, 0x00, 0x29, 0x10, 0xd1, 0x02, 0x28, 0x03, 0xd1, +0x13, 0x27, 0x0f, 0xe0, 0xd1, 0xe0, 0xda, 0xe0, 0x20, 0x00, 0xe0, 0xf7, 0x55, 0xff, 0x07, 0x00, +0xeb, 0xf2, 0xcc, 0xf9, 0x80, 0x37, 0xf9, 0x64, 0xb8, 0x64, 0x1e, 0x27, 0x02, 0xe0, 0x02, 0x28, +0x00, 0xd0, 0x1f, 0x27, 0xa8, 0x78, 0x00, 0x09, 0x04, 0x28, 0x01, 0xd0, 0x0c, 0x28, 0x21, 0xd1, +0x60, 0x36, 0x70, 0x7a, 0x15, 0x28, 0x26, 0xd0, 0x0c, 0xdc, 0x10, 0x28, 0x23, 0xd0, 0x11, 0x28, +0x18, 0xd0, 0x13, 0x28, 0x00, 0xe0, 0x4c, 0xe0, 0x14, 0xd1, 0x18, 0x98, 0x00, 0x28, 0x2a, 0xd1, +0x21, 0x27, 0x0f, 0xe0, 0x35, 0x28, 0x28, 0xd0, 0x41, 0x28, 0x0b, 0xd1, 0x01, 0x22, 0x0d, 0x92, +0x30, 0x22, 0x18, 0xa9, 0x68, 0x46, 0x0c, 0x94, 0xf6, 0xf2, 0x3e, 0xe9, 0x14, 0xa8, 0x0f, 0xc8, +0xf3, 0xf7, 0xc6, 0xfa, 0x14, 0x98, 0x60, 0x30, 0x40, 0x7a, 0x30, 0x28, 0x20, 0xd1, 0x12, 0x98, +0xf3, 0xf7, 0x22, 0xff, 0x95, 0xe0, 0x18, 0x98, 0x00, 0x28, 0xe8, 0x78, 0x05, 0xd1, 0xc0, 0x06, +0x01, 0xd5, 0x0e, 0x27, 0xee, 0xe7, 0x0d, 0x27, 0xec, 0xe7, 0xc0, 0x06, 0x01, 0xd5, 0x11, 0x27, +0xe8, 0xe7, 0x10, 0x27, 0xe6, 0xe7, 0x22, 0x27, 0xe4, 0xe7, 0x18, 0x98, 0x00, 0x28, 0xe1, 0xd0, +0xff, 0x20, 0x51, 0x30, 0x01, 0x5b, 0x01, 0x22, 0x20, 0x00, 0x00, 0xf0, 0x14, 0xec, 0xd9, 0xe7, +0xa9, 0x78, 0x09, 0x09, 0x04, 0x29, 0x03, 0xd0, 0x0c, 0x29, 0x01, 0xd0, 0x5a, 0x28, 0x03, 0xd1, +0x12, 0x98, 0xf6, 0xf2, 0xfd, 0xfd, 0x6c, 0xe0, 0x10, 0x99, 0x12, 0x98, 0xfa, 0xf7, 0x1a, 0xff, +0x67, 0xe0, 0x89, 0x0f, 0x34, 0xd1, 0x14, 0x98, 0x60, 0x30, 0xc2, 0x7a, 0x00, 0x2a, 0x06, 0xd0, +0x18, 0x98, 0x74, 0x21, 0x03, 0x06, 0x1b, 0x0e, 0x20, 0x00, 0xde, 0xf7, 0x51, 0xfe, 0x60, 0x7a, +0x02, 0x28, 0x17, 0xd1, 0x14, 0x9a, 0x29, 0x00, 0x20, 0x00, 0xea, 0xf7, 0xf8, 0xfe, 0x24, 0x90, +0xa8, 0x78, 0x00, 0x09, 0x0d, 0x28, 0x07, 0xd1, 0x18, 0x98, 0x01, 0x21, 0x00, 0x28, 0x00, 0xd0, +0x00, 0x21, 0x12, 0x98, 0xdc, 0xf7, 0x94, 0xfd, 0x00, 0x20, 0x25, 0x90, 0x24, 0x98, 0x00, 0x28, +0xce, 0xd1, 0x3e, 0xe0, 0xa8, 0x78, 0x03, 0x09, 0xf6, 0xf2, 0x88, 0xea, 0x0e, 0x09, 0x09, 0x09, +0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x09, 0x08, 0x09, 0x1c, 0xd6, 0x30, 0xa3, +0x01, 0x00, 0x00, 0x00, 0x94, 0x69, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0xe8, 0x98, 0xcf, 0xbc, +0xe4, 0xe7, 0xeb, 0xe7, 0x01, 0x2a, 0x2e, 0xd1, 0x00, 0x09, 0x08, 0x28, 0x21, 0xd0, 0x0a, 0x28, +0x29, 0xd1, 0xfa, 0xf7, 0xe9, 0xfe, 0x05, 0x00, 0x12, 0x98, 0xf6, 0xf2, 0xb3, 0xfd, 0x18, 0x98, +0x00, 0x28, 0x10, 0xd0, 0x11, 0x98, 0x0a, 0x28, 0x0d, 0xd2, 0xdb, 0xf7, 0x94, 0xf9, 0x00, 0x28, +0x0b, 0xd1, 0x11, 0x98, 0x01, 0x21, 0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x11, 0x90, 0x20, 0x00, +0xe3, 0xf7, 0xc6, 0xf9, 0x01, 0xe0, 0x00, 0x20, 0x11, 0x90, 0x28, 0x00, 0xfa, 0xf7, 0xd0, 0xfe, +0x09, 0xe0, 0x29, 0x00, 0x20, 0x00, 0x14, 0xaa, 0xea, 0xf7, 0x4e, 0xfe, 0x92, 0xe7, 0x12, 0x48, +0x01, 0x68, 0x49, 0x1c, 0x01, 0x60, 0x00, 0x2f, 0x03, 0xd0, 0x38, 0x00, 0xe3, 0xf7, 0x7d, 0xff, +0x00, 0x27, 0x14, 0xa8, 0x00, 0xf0, 0x93, 0xf9, 0x00, 0x28, 0x12, 0x90, 0x00, 0xd0, 0x05, 0xe5, +0x0b, 0x49, 0x0a, 0x48, 0x08, 0x61, 0x0b, 0x48, 0x01, 0x69, 0x40, 0x69, 0x81, 0x42, 0x00, 0xd1, +0xe5, 0xe4, 0x05, 0x48, 0x07, 0x22, 0x41, 0x68, 0x49, 0x1c, 0x41, 0x60, 0xc0, 0x68, 0x01, 0x21, +0xfb, 0xf7, 0xe8, 0xfc, 0xdb, 0xe4, 0x00, 0x00, 0x00, 0x77, 0x02, 0x00, 0xff, 0x7f, 0xff, 0xff, +0x00, 0xa5, 0x00, 0x80, 0x00, 0xa0, 0x00, 0x80, 0xc1, 0x7b, 0x00, 0x69, 0x39, 0x4a, 0x90, 0x42, +0x01, 0xd1, 0x00, 0x20, 0x12, 0xe0, 0x38, 0x4a, 0x90, 0x42, 0x01, 0xd1, 0x10, 0x20, 0x0d, 0xe0, +0x36, 0x4a, 0x90, 0x42, 0x01, 0xd1, 0x17, 0x20, 0x08, 0xe0, 0x35, 0x4a, 0x90, 0x42, 0x01, 0xd1, +0x1f, 0x20, 0x03, 0xe0, 0x33, 0x4a, 0x90, 0x42, 0x02, 0xd1, 0x22, 0x20, 0xff, 0x29, 0x01, 0xd1, +0x25, 0x20, 0x00, 0x21, 0x40, 0x18, 0x00, 0x06, 0x00, 0x0e, 0x70, 0x47, 0xf8, 0xb5, 0x05, 0x00, +0xff, 0xf7, 0xda, 0xff, 0x2c, 0x49, 0xc0, 0x00, 0x44, 0x18, 0x20, 0x68, 0x2b, 0x4e, 0x00, 0x28, +0x03, 0xd0, 0xb0, 0x88, 0x40, 0x1c, 0xb0, 0x80, 0xf8, 0xbd, 0x68, 0x46, 0x25, 0x60, 0xfa, 0xf7, +0x70, 0xfe, 0x00, 0x98, 0x60, 0x60, 0x30, 0x78, 0x0b, 0x21, 0x40, 0x1c, 0x30, 0x70, 0x68, 0x69, +0x89, 0x01, 0x40, 0x18, 0x00, 0x69, 0x00, 0x28, 0xee, 0xd0, 0x20, 0x30, 0x01, 0x7a, 0x49, 0x1c, +0x01, 0x72, 0xf8, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0xff, 0xf7, 0xb6, 0xff, 0x1a, 0x49, 0xc0, 0x00, +0x40, 0x18, 0x02, 0x68, 0x19, 0x49, 0xa2, 0x42, 0x04, 0xd0, 0xc8, 0x88, 0x40, 0x1c, 0xc8, 0x80, +0x00, 0x20, 0x10, 0xbd, 0x00, 0x22, 0x13, 0x00, 0x0c, 0xc0, 0x08, 0x78, 0x40, 0x1e, 0x08, 0x70, +0x60, 0x69, 0x0b, 0x21, 0x89, 0x01, 0x41, 0x18, 0x09, 0x69, 0x00, 0x28, 0x10, 0xd0, 0x20, 0x31, +0x0a, 0x7a, 0x00, 0x2a, 0x0c, 0xd0, 0x52, 0x1e, 0x12, 0x06, 0x12, 0x0e, 0x0a, 0x72, 0x07, 0xd1, +0x01, 0x7a, 0x03, 0x29, 0x04, 0xd1, 0xe5, 0xf7, 0x6c, 0xfc, 0x00, 0x21, 0x80, 0x30, 0x81, 0x62, +0x01, 0x20, 0x10, 0xbd, 0x30, 0x00, 0x00, 0x04, 0x6c, 0x00, 0x00, 0x04, 0x4c, 0x01, 0x00, 0x04, +0xfc, 0x00, 0x00, 0x04, 0x38, 0x01, 0x00, 0x04, 0x10, 0x53, 0x00, 0x04, 0x10, 0x77, 0x02, 0x00, +0xf0, 0xb5, 0x94, 0x46, 0x5a, 0x68, 0x1d, 0x68, 0x14, 0x06, 0x2e, 0x06, 0x24, 0x0e, 0x36, 0x0e, +0xb4, 0x42, 0x03, 0xd2, 0x27, 0x00, 0xf8, 0x37, 0xb7, 0x42, 0x05, 0xd9, 0xb4, 0x42, 0x05, 0xd9, +0x32, 0x00, 0x08, 0x32, 0x94, 0x42, 0x01, 0xd8, 0x00, 0x20, 0xf0, 0xbd, 0x05, 0x9a, 0x09, 0x02, +0x12, 0x68, 0x31, 0x43, 0x11, 0x43, 0x08, 0x60, 0x2d, 0x1d, 0xe8, 0x05, 0xc0, 0x0d, 0x61, 0x46, +0x09, 0x04, 0x08, 0x43, 0x18, 0x60, 0x01, 0x20, 0xf0, 0xbd, 0x18, 0xb5, 0x14, 0x00, 0x03, 0x9a, +0x00, 0x92, 0x22, 0x00, 0xff, 0xf7, 0xd4, 0xff, 0x18, 0xbd, 0xf8, 0xb5, 0x0c, 0x00, 0x07, 0x00, +0xfa, 0xf7, 0xe2, 0xfd, 0x06, 0x00, 0x68, 0x20, 0x05, 0x5d, 0x14, 0x34, 0x00, 0x2f, 0x14, 0xd0, +0x78, 0x7a, 0x02, 0x28, 0x11, 0xd0, 0x60, 0x68, 0x80, 0x78, 0x01, 0x07, 0x89, 0x0f, 0x02, 0xd1, +0x00, 0x09, 0x04, 0x28, 0x09, 0xd0, 0xfc, 0xf7, 0xd8, 0xfe, 0x01, 0x00, 0x20, 0x00, 0xeb, 0xf2, +0x8d, 0xfd, 0x98, 0x49, 0x0a, 0x68, 0x80, 0x18, 0x08, 0x60, 0x97, 0x49, 0xa8, 0x00, 0x0b, 0x58, +0x97, 0x49, 0x96, 0x4a, 0x08, 0x58, 0x01, 0x28, 0x0d, 0xd1, 0x60, 0x8c, 0x04, 0x21, 0x09, 0x1a, +0x89, 0x07, 0x89, 0x0f, 0x08, 0x18, 0x00, 0x1d, 0x00, 0x92, 0x02, 0x00, 0x29, 0x00, 0x20, 0x00, +0xff, 0xf7, 0xc3, 0xff, 0x0d, 0xe0, 0x00, 0x20, 0x00, 0x92, 0x02, 0x00, 0x29, 0x00, 0x20, 0x00, +0xff, 0xf7, 0xbb, 0xff, 0x00, 0x28, 0x04, 0xd1, 0x30, 0x00, 0xfa, 0xf7, 0xa9, 0xfd, 0x00, 0x20, +0xf8, 0xbd, 0x30, 0x00, 0xfa, 0xf7, 0xa4, 0xfd, 0x01, 0x20, 0xf8, 0xbd, 0xa0, 0x30, 0x10, 0xb5, +0x02, 0x78, 0x01, 0x00, 0x40, 0x78, 0x82, 0x42, 0x01, 0xd3, 0x10, 0x00, 0x10, 0xbd, 0x88, 0x78, +0xc9, 0x78, 0x88, 0x42, 0xfa, 0xd2, 0x00, 0xf0, 0x14, 0xeb, 0x00, 0x28, 0x01, 0xd1, 0x03, 0x20, +0x10, 0xbd, 0x09, 0x20, 0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x10, 0x78, 0x0d, 0x00, 0x11, 0x00, +0xc0, 0x07, 0x1d, 0xd1, 0x20, 0x7a, 0x01, 0x28, 0x02, 0xd0, 0x60, 0x7a, 0x02, 0x28, 0x03, 0xd1, +0x20, 0x00, 0xfd, 0xf7, 0xd1, 0xff, 0x02, 0xe0, 0x20, 0x00, 0xfd, 0xf7, 0xd9, 0xff, 0x00, 0x06, +0x00, 0x0e, 0x01, 0xd0, 0x1e, 0x20, 0x00, 0xe0, 0x1c, 0x20, 0x29, 0x18, 0x0b, 0x20, 0x80, 0x01, +0x20, 0x18, 0x00, 0x69, 0x40, 0x30, 0x00, 0x8a, 0x81, 0x42, 0x01, 0xd9, 0x01, 0x20, 0x70, 0xbd, +0x00, 0x20, 0x70, 0xbd, 0xf8, 0xb5, 0x14, 0x00, 0x06, 0x00, 0xd0, 0x69, 0x8f, 0x78, 0xc0, 0x04, +0x07, 0xd4, 0x88, 0x68, 0x80, 0x00, 0xc1, 0x0f, 0x30, 0x00, 0xf1, 0xf7, 0xd8, 0xfe, 0xe0, 0x62, +0xf8, 0xbd, 0x39, 0x00, 0x30, 0x00, 0xf1, 0xf7, 0xbf, 0xfd, 0x05, 0x06, 0x2d, 0x0e, 0x00, 0x20, +0x00, 0x2d, 0x02, 0xd1, 0x30, 0x00, 0xdb, 0xf7, 0xa5, 0xff, 0x03, 0x00, 0x59, 0x48, 0x39, 0x00, +0x00, 0x79, 0x80, 0x06, 0xc2, 0x0f, 0x00, 0x92, 0x2a, 0x00, 0x20, 0x00, 0xeb, 0xf2, 0xcb, 0xfe, +0xf8, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x00, 0x89, 0x05, 0x19, 0x20, 0x00, 0xff, 0xf7, 0xbe, 0xfe, +0x60, 0x69, 0x29, 0x00, 0xff, 0xf7, 0x49, 0xff, 0x00, 0x28, 0x06, 0xd1, 0x20, 0x00, 0xff, 0xf7, +0xd9, 0xfe, 0x01, 0x20, 0xda, 0xf7, 0xcc, 0xf9, 0xef, 0xe7, 0x01, 0x20, 0x70, 0xbd, 0xfe, 0xb5, +0x01, 0x21, 0x04, 0x00, 0x00, 0x20, 0x21, 0x61, 0x06, 0x00, 0x20, 0x60, 0xfa, 0xf7, 0x1c, 0xfd, +0x01, 0x90, 0x42, 0x48, 0x01, 0x68, 0x02, 0x69, 0x47, 0x69, 0xd0, 0x05, 0xfa, 0x05, 0xc0, 0x0d, +0xd2, 0x0d, 0x90, 0x42, 0x59, 0xd0, 0x38, 0x06, 0x00, 0x0e, 0x08, 0x43, 0x0d, 0x21, 0x09, 0x02, +0x08, 0x43, 0x05, 0x68, 0x00, 0x2d, 0x4b, 0xd0, 0x40, 0x21, 0x20, 0x00, 0xf5, 0xf2, 0x10, 0xef, +0x28, 0x6c, 0x20, 0x60, 0xc1, 0x6d, 0x06, 0x00, 0x89, 0x78, 0x1c, 0x3e, 0x09, 0x07, 0x89, 0x0f, +0x71, 0x69, 0x00, 0x91, 0xe9, 0x69, 0x61, 0x60, 0x6a, 0x88, 0xd2, 0x07, 0xb6, 0x47, 0x93, 0x05, +0x01, 0x00, 0x00, 0x00, 0x90, 0x6d, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0xbb, 0x42, 0x1c, 0xd0, +0xd2, 0x0f, 0x22, 0x61, 0x6a, 0x88, 0x12, 0x07, 0x52, 0x0f, 0xa2, 0x73, 0x80, 0x68, 0x80, 0x00, +0x30, 0xd4, 0x28, 0x78, 0x20, 0x73, 0x68, 0x78, 0x60, 0x73, 0xc8, 0x04, 0x15, 0xd5, 0x28, 0x8d, +0x80, 0x05, 0x42, 0x0e, 0x28, 0x00, 0x20, 0x30, 0x02, 0x90, 0x00, 0x7a, 0x41, 0x07, 0xc0, 0x07, +0xc9, 0x0f, 0xc0, 0x0f, 0xea, 0xf2, 0xbb, 0xfe, 0x20, 0x75, 0x60, 0x75, 0x02, 0x98, 0x80, 0x7a, +0x00, 0x07, 0x00, 0x0f, 0xa0, 0x75, 0x00, 0x20, 0x00, 0xe0, 0xe8, 0x6a, 0xa0, 0x60, 0x68, 0x88, +0xc0, 0x07, 0x0f, 0xd1, 0x20, 0x61, 0x00, 0x98, 0x00, 0x28, 0x0b, 0xd0, 0x20, 0x68, 0xc0, 0x6d, +0x80, 0x78, 0x00, 0x07, 0x80, 0x0f, 0x02, 0x28, 0x04, 0xd1, 0x6b, 0x69, 0x2a, 0x69, 0x00, 0x98, +0x00, 0xf0, 0x00, 0xeb, 0x3f, 0x1d, 0x12, 0x49, 0xf8, 0x05, 0xc0, 0x0d, 0x48, 0x61, 0x01, 0x98, +0xfa, 0xf7, 0xb8, 0xfc, 0x30, 0x00, 0xfe, 0xbd, 0x38, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0xea, 0xf2, +0xe9, 0xfe, 0x04, 0x22, 0x20, 0x66, 0xa2, 0x5e, 0x00, 0x92, 0x02, 0x00, 0x28, 0x00, 0x0b, 0x00, +0xeb, 0xf2, 0xee, 0xf9, 0xa0, 0x88, 0x00, 0x28, 0x04, 0xd0, 0x68, 0x88, 0x01, 0x21, 0xc9, 0x03, +0x08, 0x43, 0x68, 0x80, 0x38, 0xbd, 0x00, 0x00, 0x88, 0xef, 0x00, 0xc0, 0xe0, 0x01, 0x00, 0x04, +0x00, 0xa0, 0x00, 0x80, 0x4c, 0x7c, 0x02, 0x00, 0x82, 0x55, 0x00, 0x04, 0x01, 0x21, 0x81, 0x40, +0x03, 0x48, 0x00, 0x68, 0x01, 0x42, 0x01, 0xd0, 0x01, 0x20, 0x70, 0x47, 0x00, 0x20, 0x70, 0x47, +0x84, 0xf5, 0x00, 0xc0, 0x07, 0x48, 0x80, 0x7c, 0x00, 0x28, 0x08, 0xd1, 0x05, 0x48, 0x00, 0x23, +0x40, 0x38, 0xc1, 0x6e, 0x80, 0x6e, 0x59, 0x40, 0x58, 0x40, 0x08, 0x43, 0x00, 0xd0, 0x01, 0x20, +0x70, 0x47, 0x00, 0x00, 0x48, 0x84, 0x02, 0x00, 0x0b, 0x21, 0x89, 0x01, 0x40, 0x18, 0xc0, 0x68, +0x00, 0x28, 0x03, 0xd0, 0x20, 0x30, 0x40, 0x7d, 0xc0, 0x07, 0xc0, 0x0f, 0x70, 0x47, 0x00, 0x00, +0x91, 0x30, 0x82, 0xe0, 0x03, 0x00, 0xa0, 0xe1, 0x02, 0x10, 0xa0, 0xe1, 0x1e, 0xff, 0x2f, 0xe1, +0x00, 0xa0, 0x00, 0x47, 0xd4, 0x11, 0x9f, 0xe5, 0xa8, 0x21, 0x9f, 0xe5, 0xdb, 0x00, 0xa0, 0xe3, +0x00, 0xf0, 0x21, 0xe1, 0x02, 0x10, 0x81, 0xe0, 0x03, 0x10, 0xc1, 0xe3, 0x04, 0x10, 0x41, 0xe2, +0x01, 0xd0, 0xa0, 0xe1, 0x00, 0xa0, 0xa0, 0xe3, 0x00, 0xb0, 0xa0, 0xe3, 0x88, 0x21, 0x9f, 0xe5, +0xd2, 0x00, 0xa0, 0xe3, 0x00, 0xf0, 0x21, 0xe1, 0x02, 0x10, 0x81, 0xe0, 0x03, 0x10, 0xc1, 0xe3, +0x04, 0x10, 0x41, 0xe2, 0x01, 0xd0, 0xa0, 0xe1, 0xd3, 0x00, 0xa0, 0xe3, 0x00, 0xf0, 0x21, 0xe1, +0x5c, 0x31, 0x9f, 0xe5, 0x00, 0x10, 0x83, 0xe5, 0x54, 0x11, 0x9f, 0xe5, 0x00, 0x00, 0x91, 0xe5, +0x04, 0x00, 0x80, 0xe2, 0x58, 0x21, 0x9f, 0xe5, 0x00, 0x00, 0x82, 0xe5, 0x70, 0x21, 0x9f, 0xe5, +0x70, 0x01, 0x9f, 0xe5, 0x2c, 0x00, 0x82, 0xe5, 0x07, 0x00, 0xa0, 0xe3, 0x30, 0x00, 0x82, 0xe5, +0x09, 0x00, 0xa0, 0xe3, 0x00, 0x00, 0x82, 0xe5, 0x0b, 0x10, 0xa0, 0xe3, 0x10, 0x10, 0x82, 0xe5, +0x01, 0x30, 0xa0, 0xe3, 0x24, 0x30, 0x82, 0xe5, 0x28, 0x30, 0x82, 0xe5, 0x48, 0x21, 0x9f, 0xe5, +0x10, 0x30, 0xa0, 0xe3, 0x08, 0x30, 0x82, 0xe5, 0x1e, 0xff, 0x2f, 0xe1, 0x5c, 0x00, 0x00, 0xea, +0x0e, 0xf0, 0xb0, 0xe1, 0x5a, 0x00, 0x00, 0xea, 0x59, 0x00, 0x00, 0xea, 0xfe, 0xff, 0xff, 0xea, +0x64, 0x74, 0x0b, 0xea, 0xfa, 0xf7, 0x0d, 0xfc, 0x49, 0x48, 0x00, 0x47, 0xf3, 0x46, 0xd9, 0xf7, +0xd0, 0xf8, 0x00, 0x00, 0x18, 0x01, 0x9f, 0xe5, 0x00, 0x10, 0xe0, 0xe3, 0x00, 0x10, 0x80, 0xe5, +0x00, 0x10, 0x90, 0xe5, 0x00, 0x61, 0x9f, 0xe5, 0x02, 0x35, 0xa0, 0xe3, 0x08, 0x31, 0x86, 0xe5, +0x00, 0x01, 0x9f, 0xe5, 0x10, 0x0f, 0x01, 0xee, 0xfc, 0xf0, 0x9f, 0xe5, 0x90, 0x0f, 0x07, 0xee, +0x1e, 0xff, 0x2f, 0xe1, 0xe0, 0x00, 0x9f, 0xe5, 0x00, 0x10, 0xe0, 0xe3, 0x0c, 0x10, 0x80, 0xe5, +0xd4, 0x00, 0x9f, 0xe5, 0xe4, 0x10, 0x9f, 0xe5, 0x08, 0x10, 0x80, 0xe5, 0xe0, 0x00, 0x9f, 0xe5, +0x00, 0x10, 0x90, 0xe5, 0x08, 0x10, 0x81, 0xe3, 0x00, 0x10, 0x80, 0xe5, 0x00, 0x10, 0x90, 0xe5, +0x08, 0x10, 0x11, 0xe2, 0xfc, 0xff, 0xff, 0x0a, 0x90, 0x0f, 0x07, 0xee, 0x1e, 0xff, 0x2f, 0xe1, +0x10, 0x0f, 0x11, 0xee, 0x1e, 0xff, 0x2f, 0xe1, 0x10, 0x0f, 0x01, 0xee, 0x1e, 0xff, 0x2f, 0xe1, +0x01, 0x00, 0x50, 0xe2, 0xfd, 0xff, 0xff, 0x1a, 0x1e, 0xff, 0x2f, 0xe1, 0xa4, 0x10, 0x9f, 0xe5, +0xa5, 0x20, 0xa0, 0xe3, 0x00, 0x00, 0xa0, 0xe3, 0x04, 0x00, 0x81, 0xe4, 0x01, 0x20, 0x52, 0xe2, +0xfc, 0xff, 0xff, 0x1a, 0x90, 0x00, 0x9f, 0xe5, 0x90, 0x10, 0x9f, 0xe5, 0x00, 0x10, 0x80, 0xe5, +0x8c, 0x00, 0x9f, 0xe5, 0x8c, 0x10, 0x9f, 0xe5, 0x00, 0x10, 0x80, 0xe5, 0x88, 0x00, 0x9f, 0xe5, +0x88, 0x10, 0x9f, 0xe5, 0x00, 0x10, 0x80, 0xe5, 0x1e, 0xff, 0x2f, 0xe1, 0x00, 0x00, 0x0f, 0xe1, +0x1f, 0x00, 0x00, 0xe2, 0x12, 0x00, 0x50, 0xe3, 0x01, 0x00, 0xa0, 0x03, 0x00, 0x00, 0xa0, 0x13, +0x1e, 0xff, 0x2f, 0xe1, 0xac, 0x5d, 0x00, 0x04, 0x10, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, +0xe0, 0x03, 0x00, 0x00, 0x9c, 0x5d, 0x00, 0x04, 0x01, 0xc0, 0x5e, 0xe5, 0x0c, 0x00, 0x53, 0xe1, +0x03, 0x30, 0xde, 0x37, 0x0c, 0x30, 0xde, 0x27, 0x83, 0xc0, 0x8e, 0xe0, 0x1c, 0xff, 0x2f, 0xe1, +0xb0, 0xa3, 0x02, 0x00, 0x00, 0x34, 0x00, 0x80, 0x3f, 0x1f, 0x00, 0x00, 0x00, 0x30, 0x00, 0x80, +0x00, 0x40, 0x30, 0x00, 0x00, 0x21, 0x00, 0x80, 0x7c, 0x17, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, +0x02, 0x00, 0x40, 0x00, 0xc4, 0x20, 0x00, 0x80, 0x6c, 0x5d, 0x00, 0x04, 0xf4, 0x5d, 0x00, 0x04, +0xc1, 0x6e, 0x02, 0x00, 0xf8, 0x5d, 0x00, 0x04, 0xad, 0x01, 0x00, 0x00, 0xfc, 0x5d, 0x00, 0x04, +0x85, 0x6f, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x01, 0x11, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, +0x09, 0x5c, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xfd, 0x30, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, +0xd7, 0x2d, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x4d, 0x67, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, +0x25, 0x68, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x6f, 0x6a, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, +0x99, 0x6a, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xb1, 0x23, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, +0x75, 0x18, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xe3, 0x35, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, +0x4b, 0x31, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xc5, 0x78, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, +0x8f, 0x78, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xdd, 0x71, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, +0x0f, 0x70, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xcd, 0x70, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, +0xb3, 0x70, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xd5, 0xd9, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, +0x6f, 0x17, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xd9, 0x70, 0x00, 0xc0, 0xb9, 0x92, 0x00, 0xcb, +0x01, 0x00, 0x00, 0x00, 0x8c, 0x71, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x04, 0x87, 0x39, 0x63, +0x04, 0xf0, 0x1f, 0xe5, 0x4d, 0x66, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xb9, 0x26, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0xff, 0x30, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xaf, 0x5c, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0xed, 0x5c, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x9d, 0xbe, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0xc9, 0x12, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xaf, 0x95, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x93, 0x5c, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x7f, 0x15, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0xc7, 0x16, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x05, 0x18, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x81, 0xbc, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x6b, 0x7e, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x11, 0x76, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x4f, 0x18, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x9f, 0x11, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x05, 0x6f, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x9b, 0x32, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xeb, 0x85, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x95, 0xb9, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xd7, 0x88, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0xf5, 0x5b, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x8f, 0x32, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x93, 0xc7, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xd7, 0xac, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0xf9, 0xb0, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xa1, 0x26, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x71, 0xb1, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xeb, 0xaf, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x0f, 0x5d, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x1b, 0x71, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0xfd, 0x78, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xf9, 0x64, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x99, 0x66, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xbd, 0x64, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0xb9, 0x2e, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xab, 0x18, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x0f, 0xbf, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xb5, 0xc1, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x41, 0xc0, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x27, 0x5c, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x89, 0x9d, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x05, 0x9b, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x31, 0x9b, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xed, 0x70, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x39, 0x18, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x31, 0x6a, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x39, 0x71, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x5d, 0x71, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x97, 0x9f, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xf1, 0xb1, 0x02, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x57, 0xb5, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x5d, 0xb5, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x43, 0x73, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x59, 0x78, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x8f, 0x17, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x4d, 0x95, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x13, 0x95, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x39, 0x5e, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x3d, 0x9e, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x63, 0xb8, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x65, 0xd6, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x81, 0xd9, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x97, 0x2e, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x77, 0xd8, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x7f, 0x63, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xab, 0x96, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0xad, 0x16, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xcd, 0x73, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x91, 0x23, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x71, 0x26, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0xd3, 0x72, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x61, 0x78, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x73, 0x5c, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x57, 0x32, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0xad, 0xd9, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0xc1, 0xd7, 0x00, 0xc0, +0x04, 0xf0, 0x1f, 0xe5, 0x29, 0xd9, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x81, 0xd8, 0x00, 0xc0, +0xff, 0xb5, 0x81, 0xb0, 0x07, 0x24, 0x0e, 0x00, 0x1f, 0x00, 0x0c, 0x57, 0x00, 0x25, 0xf1, 0xf7, +0xc5, 0xfc, 0x00, 0x28, 0x0d, 0xd0, 0x01, 0x9d, 0x21, 0x00, 0xd0, 0x35, 0x28, 0x00, 0xe3, 0xf7, +0xb5, 0xff, 0x28, 0x7c, 0x00, 0x28, 0x01, 0xd0, 0xec, 0x68, 0x01, 0xe0, 0x61, 0x24, 0xe4, 0x43, +0x01, 0x25, 0x3c, 0x60, 0x0a, 0x99, 0x0b, 0x20, 0x30, 0x56, 0x08, 0x60, 0x39, 0x68, 0x41, 0x1a, +0x03, 0x98, 0x01, 0x60, 0x28, 0x00, 0x05, 0xb0, 0xf0, 0xbd, 0x00, 0x00, 0x10, 0x40, 0x2d, 0xe9, +0x9b, 0xe8, 0xff, 0xeb, 0x00, 0x10, 0xa0, 0xe3, 0x00, 0x10, 0x80, 0xe5, 0x10, 0x40, 0xbd, 0xe8, +0x1e, 0xff, 0x2f, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x34, 0x03, 0x00, 0x00, +0x67, 0x06, 0x00, 0x00, 0xcd, 0x0c, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x9a, 0x19, 0x00, 0x00, +0x9a, 0x19, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x34, 0x33, 0x00, 0x00, +0x00, 0x40, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x56, 0x55, 0x00, 0x00, 0x67, 0x66, 0x00, 0x00, +0xc7, 0x71, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x78, 0x00, 0x82, 0x00, +0xc0, 0x00, 0xc8, 0x00, 0xf0, 0x00, 0x04, 0x01, 0x80, 0x01, 0x90, 0x01, 0xb8, 0x01, 0x08, 0x02, +0x76, 0x01, 0xa0, 0x0f, 0xa0, 0x0f, 0xac, 0x0d, 0x10, 0x0e, 0xac, 0x0d, 0xac, 0x0d, 0xb8, 0x0b, +0xb8, 0x0b, 0xb8, 0x0b, 0xb8, 0x0b, 0xb8, 0x0b, 0x0d, 0x28, 0x08, 0x05, 0x0d, 0x19, 0x08, 0x05, +0x0d, 0x0d, 0x08, 0x0f, 0x28, 0x14, 0x0f, 0x0f, 0x1e, 0x14, 0x0f, 0x0f, 0x0f, 0x14, 0x14, 0x28, +0x19, 0x14, 0x14, 0x28, 0x19, 0x14, 0x14, 0x14, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x24, 0x49, 0x64, 0x3a, 0x20, 0x77, 0x38, 0x38, 0x30, 0x31, 0x2d, 0x42, +0x30, 0x2c, 0x20, 0x52, 0x46, 0x38, 0x37, 0x38, 0x58, 0x2c, 0x20, 0x46, 0x50, 0x36, 0x38, 0x2c, +0x20, 0x30, 0x2e, 0x30, 0x2e, 0x30, 0x2e, 0x70, 0x33, 0x34, 0x20, 0x24, 0x00, 0x52, 0x43, 0x3a, +0x20, 0x2c, 0x20, 0x2c, 0x20, 0x2c, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x03, 0x06, 0x07, 0x0a, 0x0d, 0x0b, 0x0c, 0x0e, 0x10, 0x13, 0x17, 0x1b, +0x1c, 0x1e, 0x0b, 0x0c, 0x0d, 0x13, 0x17, 0x1b, 0x1c, 0x1d, 0x0b, 0x0b, 0x0e, 0x10, 0x13, 0x17, +0x1b, 0x1c, 0x1d, 0x00, 0x01, 0x02, 0x05, 0x06, 0x09, 0x16, 0x07, 0x0f, 0xfb, 0xa9, 0xd9, 0x0a, +0x01, 0x00, 0x00, 0x00, 0x88, 0x75, 0x02, 0x00, 0x1c, 0x02, 0x00, 0x00, 0x21, 0x85, 0xf8, 0xb1, +0x09, 0x10, 0x11, 0x0c, 0x12, 0x12, 0x03, 0x17, 0x0a, 0x18, 0x19, 0x1a, 0x15, 0x1b, 0x0e, 0x08, +0x0b, 0x13, 0x14, 0x1c, 0x1d, 0x1e, 0x1e, 0x00, 0xef, 0xdf, 0xff, 0x7f, 0xee, 0xdf, 0xff, 0x7f, +0xec, 0xdf, 0xff, 0x7f, 0xc8, 0x9f, 0xbf, 0x7f, 0x00, 0x1c, 0x3f, 0x7f, 0xe8, 0xdf, 0xff, 0x7f, +0xc0, 0x9f, 0xbf, 0x7f, 0x80, 0x9f, 0xbf, 0x7f, 0x00, 0x1f, 0x3f, 0x7f, 0x00, 0x1e, 0x3f, 0x7f, +0x00, 0x1c, 0x3e, 0x7f, 0x00, 0x18, 0x3c, 0x7e, 0x00, 0x10, 0x3c, 0x7e, 0x00, 0x00, 0x00, 0x78, +0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x00, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x0e, 0x0e, +0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x01, 0x02, 0x00, 0x03, +0x04, 0x05, 0x06, 0x07, 0x50, 0x6f, 0x9a, 0x0a, 0x77, 0x6c, 0x61, 0x6e, 0x00, 0x73, 0x64, 0x69, +0x6f, 0x00, 0x4f, 0x53, 0x41, 0x00, 0x44, 0x49, 0x52, 0x45, 0x43, 0x54, 0x2d, 0x00, 0x00, 0x00, +0xa0, 0x77, 0x02, 0x00, 0xa0, 0x77, 0x02, 0x00, 0x10, 0x2c, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, +0x5c, 0x02, 0x00, 0x04, 0x5c, 0x02, 0x00, 0x04, 0xac, 0x53, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x11, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, +0x98, 0x1e, 0x01, 0xc0, 0x98, 0x1e, 0x01, 0xc0, 0x40, 0x47, 0x01, 0x00, 0x84, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x75, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, +0x75, 0x02, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x75, 0x02, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, +0x55, 0xaa, 0x30, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x09, 0x03, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, +0x09, 0x03, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xef, 0x02, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, +0xfb, 0x03, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, +0x00, 0x00, 0x00, 0x00, 0x05, 0x76, 0x02, 0x00, 0x00, 0x01, 0x00, 0x80, 0x60, 0x01, 0x00, 0x80, +0x62, 0x01, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x11, 0x4e, 0x71, 0x01, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x04, 0x60, 0x02, 0x00, 0x00, 0x1f, 0x49, 0xef, 0x2f, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x04, 0xf0, 0x07, 0x10, 0x00, +0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x45, 0x00, 0x04, +0xec, 0x07, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x70, 0x45, 0x00, 0x04, 0x3c, 0x03, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xa8, 0x45, 0x00, 0x04, 0xe0, 0x01, 0x03, 0x00, 0xe0, 0x45, 0x00, 0x04, +0xd4, 0x03, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x18, 0x46, 0x00, 0x04, 0xec, 0x07, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x50, 0x46, 0x00, 0x04, 0xec, 0x07, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x46, 0x00, 0x04, 0xdc, 0x01, 0x05, 0x00, +0xc0, 0x46, 0x00, 0x04, 0x24, 0x07, 0x01, 0x00, 0xf8, 0x46, 0x00, 0x04, 0x1c, 0x00, 0x00, 0x00, +0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x47, 0x00, 0x04, +0xec, 0x07, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x68, 0x47, 0x00, 0x04, 0x10, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xa0, 0x47, 0x00, 0x04, 0xec, 0x07, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x47, 0x00, 0x04, 0x3c, 0x00, 0x0a, 0x00, +0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x48, 0x00, 0x04, +0x1c, 0x04, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x48, 0x48, 0x00, 0x04, 0x1c, 0x04, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x80, 0x48, 0x00, 0x04, 0xfc, 0x00, 0x08, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, +0x0c, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x44, 0xa0, 0x00, 0x80, 0x4c, 0xa0, 0x00, 0x80, 0x54, 0xa0, 0x00, 0x80, +0x5c, 0xa0, 0x00, 0x80, 0x64, 0xa0, 0x00, 0x80, 0x6c, 0xa0, 0x00, 0x80, 0x74, 0xa0, 0x00, 0x80, +0x7c, 0xa0, 0x00, 0x80, 0x34, 0xa0, 0x00, 0x80, 0x3c, 0xa0, 0x00, 0x80, 0x1c, 0xa0, 0x00, 0x80, +0x24, 0xa0, 0x00, 0x80, 0x2c, 0xa0, 0x00, 0x80, 0x14, 0xa0, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, +0x48, 0xa0, 0x00, 0x80, 0x50, 0xa0, 0x00, 0x80, 0x58, 0xa0, 0x00, 0x80, 0x60, 0xa0, 0x00, 0x80, +0x68, 0xa0, 0x00, 0x80, 0x70, 0xa0, 0x00, 0x80, 0x78, 0xa0, 0x00, 0x80, 0x30, 0xa0, 0x00, 0x80, +0x38, 0xa0, 0x00, 0x80, 0x18, 0xa0, 0x00, 0x80, 0x20, 0xa0, 0x00, 0x80, 0x28, 0xa0, 0x00, 0x80, +0x10, 0xa0, 0x00, 0x80, 0x00, 0x1f, 0x1f, 0x00, 0x28, 0x00, 0x19, 0x00, 0x0a, 0x00, 0xff, 0xff, +0x44, 0x07, 0x44, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x28, 0x23, 0x00, 0x00, 0x28, 0x23, 0x00, 0x00, 0x94, 0x11, 0x00, 0x00, +0x28, 0x23, 0x00, 0x00, 0x70, 0x17, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, +0xb8, 0x0b, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x1c, 0x97, 0x0f, 0x89, 0x01, 0x00, 0x00, 0x00, +0x00, 0x11, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xa2, 0xef, 0xcb, 0x25, 0x10, 0xb5, 0x00, 0x24, +0x0c, 0xf0, 0x6c, 0xec, 0x2e, 0x49, 0xc8, 0x78, 0xee, 0x28, 0xfc, 0xd1, 0x20, 0x78, 0x88, 0x70, +0x2b, 0x48, 0x64, 0x1c, 0x00, 0x1d, 0xc2, 0x1d, 0x23, 0x78, 0x03, 0x70, 0x64, 0x1c, 0x40, 0x1c, +0x90, 0x42, 0xf9, 0xd3, 0x03, 0x20, 0x40, 0x04, 0x84, 0x42, 0x03, 0xd1, 0x01, 0x24, 0xa4, 0x06, +0xaa, 0x20, 0x0c, 0xe0, 0x23, 0x48, 0x84, 0x42, 0x03, 0xd1, 0x03, 0x24, 0xa4, 0x07, 0xbb, 0x20, +0x05, 0xe0, 0x21, 0x48, 0x84, 0x42, 0x01, 0xd1, 0xcc, 0x20, 0x00, 0xe0, 0xff, 0x20, 0xc8, 0x70, +0xd9, 0xe7, 0x1b, 0x48, 0xc0, 0x78, 0xee, 0x28, 0x00, 0xd1, 0xcf, 0xe7, 0x70, 0x47, 0x70, 0xb5, +0x0c, 0xf0, 0x40, 0xec, 0x19, 0x4d, 0x6c, 0x68, 0x04, 0xe0, 0x60, 0x68, 0x00, 0x28, 0x00, 0xd0, +0x80, 0x47, 0x24, 0x68, 0x00, 0x2c, 0xf8, 0xd1, 0xff, 0xf7, 0xeb, 0xff, 0x28, 0x78, 0x40, 0x1c, +0x00, 0x06, 0x00, 0x0e, 0x28, 0x70, 0x0c, 0xf0, 0x32, 0xec, 0x0c, 0xf0, 0x34, 0xec, 0xea, 0xe7, +0x0f, 0x48, 0x10, 0xb5, 0x0c, 0xf0, 0x32, 0xec, 0x10, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x0c, 0xf0, +0x1e, 0xec, 0x0a, 0x4b, 0x59, 0x68, 0x0a, 0x00, 0x00, 0xe0, 0x09, 0x68, 0x00, 0x29, 0x02, 0xd0, +0xa1, 0x42, 0xfa, 0xd1, 0x01, 0xe0, 0x22, 0x60, 0x5c, 0x60, 0x0c, 0xf0, 0x24, 0xec, 0x10, 0xbd, +0x60, 0x01, 0x00, 0x80, 0x00, 0x40, 0x01, 0x04, 0x00, 0x30, 0x03, 0xc0, 0x34, 0xee, 0x00, 0xc0, +0x04, 0x2b, 0x01, 0xc0, 0x10, 0xb5, 0x04, 0x00, 0x73, 0xd0, 0x63, 0x21, 0x20, 0x00, 0x0c, 0xf0, +0x16, 0xec, 0x08, 0x20, 0x20, 0x70, 0x00, 0x20, 0x60, 0x70, 0xff, 0x20, 0x40, 0x1d, 0xa0, 0x70, +0x00, 0x0a, 0xe0, 0x70, 0x02, 0x21, 0x00, 0x20, 0x21, 0x71, 0x60, 0x71, 0xff, 0x20, 0x80, 0x1d, +0x20, 0x72, 0x00, 0x0a, 0x60, 0x72, 0x00, 0x20, 0xa1, 0x72, 0xe0, 0x72, 0xff, 0x20, 0xc0, 0x1d, +0xa0, 0x73, 0x00, 0x0a, 0xe0, 0x73, 0x00, 0x20, 0x21, 0x74, 0x60, 0x74, 0xff, 0x20, 0x08, 0x30, +0x20, 0x75, 0x00, 0x0a, 0x60, 0x75, 0x08, 0x0a, 0xa1, 0x75, 0xe0, 0x75, 0x3c, 0x20, 0x20, 0x76, +0xff, 0x20, 0x17, 0x30, 0xa0, 0x76, 0x00, 0x0a, 0xe0, 0x76, 0x08, 0x0a, 0x21, 0x77, 0x60, 0x77, +0xff, 0x22, 0x20, 0x00, 0x18, 0x32, 0x20, 0x30, 0x02, 0x70, 0x12, 0x0a, 0x42, 0x70, 0x0a, 0x0a, +0x81, 0x70, 0xc2, 0x70, 0xff, 0x22, 0x27, 0x32, 0x82, 0x71, 0x12, 0x0a, 0xc2, 0x71, 0x0a, 0x0a, +0x01, 0x72, 0x42, 0x72, 0xff, 0x22, 0x28, 0x32, 0x02, 0x73, 0x12, 0x0a, 0x42, 0x73, 0x0a, 0x0a, +0x81, 0x73, 0xc2, 0x73, 0xff, 0x22, 0x29, 0x32, 0x10, 0x30, 0x82, 0x70, 0x12, 0x0a, 0xc2, 0x70, +0x0a, 0x0a, 0x01, 0x71, 0x42, 0x71, 0xff, 0x22, 0x2a, 0x32, 0x02, 0x72, 0x12, 0x0a, 0x42, 0x72, +0x0a, 0x0a, 0x81, 0x72, 0xc2, 0x72, 0xff, 0x22, 0x25, 0x32, 0x82, 0x73, 0x12, 0x0a, 0xc2, 0x73, +0x10, 0x30, 0x10, 0x22, 0x02, 0x70, 0x00, 0x22, 0x03, 0x00, 0x42, 0x70, 0xff, 0x20, 0x4a, 0x30, +0x50, 0x34, 0xa0, 0x70, 0x00, 0x0a, 0xe0, 0x70, 0x08, 0x0a, 0x21, 0x71, 0x32, 0x21, 0x60, 0x71, +0x99, 0x75, 0x10, 0xbd, 0x05, 0x21, 0xc9, 0x01, 0x40, 0x18, 0x80, 0x88, 0x00, 0x28, 0x00, 0xd0, +0x01, 0x20, 0x70, 0x47, 0xff, 0xb5, 0x81, 0xb0, 0x1d, 0x00, 0x0f, 0x00, 0xc8, 0x78, 0x89, 0x78, +0x06, 0x02, 0x0e, 0x43, 0x01, 0x99, 0x05, 0x20, 0xc0, 0x01, 0x09, 0x18, 0x0c, 0x68, 0x00, 0x2c, +0x04, 0xd1, 0xff, 0x48, 0x08, 0x60, 0x04, 0x00, 0xff, 0xf7, 0x6c, 0xff, 0x60, 0x78, 0x21, 0x78, +0x00, 0x02, 0x08, 0x43, 0x01, 0x2d, 0x03, 0xd1, 0xf8, 0x78, 0xb9, 0x78, 0x00, 0x02, 0x05, 0xe0, +0x02, 0x2d, 0x05, 0xd1, 0xf9, 0x78, 0xba, 0x78, 0x09, 0x02, 0x11, 0x43, 0x08, 0x43, 0x06, 0xe0, +0x03, 0x2d, 0x07, 0xd1, 0xf9, 0x78, 0xba, 0x78, 0x09, 0x02, 0x11, 0x43, 0x88, 0x43, 0x20, 0x70, +0x00, 0x0a, 0x60, 0x70, 0x03, 0x98, 0x3f, 0x1d, 0x00, 0x1f, 0x02, 0x97, 0x07, 0x04, 0x3f, 0x0c, +0xd0, 0xe0, 0x04, 0x2f, 0x74, 0xd3, 0x02, 0x99, 0xc8, 0x78, 0x8a, 0x78, 0x00, 0x02, 0x10, 0x43, +0x4a, 0x78, 0x0b, 0x78, 0x11, 0x02, 0x19, 0x43, 0x00, 0x1d, 0xff, 0x23, 0x00, 0x04, 0x25, 0x33, +0x00, 0x0c, 0xca, 0x1a, 0x99, 0x42, 0x75, 0xd0, 0x25, 0xdc, 0xe2, 0x4b, 0xca, 0x1a, 0x99, 0x42, +0x5f, 0xd0, 0x11, 0xdc, 0xff, 0x39, 0x49, 0x1f, 0x45, 0xd0, 0x01, 0x29, 0x4d, 0xd0, 0x02, 0x29, +0x69, 0xd1, 0x01, 0x2d, 0x03, 0xd0, 0x02, 0x2d, 0x3c, 0xd1, 0x71, 0x07, 0x3a, 0xd5, 0x22, 0x00, +0x60, 0x32, 0x21, 0x00, 0x12, 0x31, 0x8a, 0xe0, 0x0f, 0x2a, 0x5d, 0xd0, 0x10, 0x2a, 0xef, 0xd1, +0x01, 0x2d, 0x03, 0xd0, 0x02, 0x2d, 0xef, 0xd1, 0xb1, 0x06, 0xef, 0xd5, 0x22, 0x00, 0x5b, 0x32, +0x21, 0x00, 0x24, 0x31, 0x7b, 0xe0, 0x04, 0x2a, 0x64, 0xd0, 0x0e, 0xdc, 0x02, 0x2a, 0x56, 0xd0, +0x03, 0x2a, 0xdd, 0xd1, 0x01, 0x2d, 0x03, 0xd0, 0x02, 0x2d, 0xdd, 0xd1, 0x31, 0x06, 0x7f, 0xd5, +0x22, 0x00, 0x5e, 0x32, 0x21, 0x00, 0x30, 0x31, 0x69, 0xe0, 0x05, 0x2a, 0x5d, 0xd0, 0x25, 0x2a, +0x75, 0xd1, 0x01, 0x2d, 0x03, 0xd0, 0x02, 0x2d, 0x72, 0xd1, 0x31, 0x05, 0x70, 0xd5, 0x21, 0x00, +0x02, 0x98, 0x00, 0x22, 0x56, 0x31, 0x0c, 0xf0, 0x0e, 0xeb, 0x56, 0x21, 0x0a, 0x5d, 0x01, 0x99, +0x60, 0x31, 0x0a, 0x70, 0x64, 0xe0, 0x01, 0x2d, 0x03, 0xd0, 0x02, 0x2d, 0x60, 0xd1, 0xf1, 0x07, +0x5e, 0xd0, 0x22, 0x00, 0x58, 0x32, 0xa1, 0x1d, 0x49, 0xe0, 0x01, 0x2d, 0x03, 0xd0, 0x02, 0x2d, +0x56, 0xd1, 0xb1, 0x07, 0x54, 0xd5, 0x22, 0x00, 0x5a, 0x32, 0x21, 0x00, 0x0c, 0x31, 0x3e, 0xe0, +0x5b, 0xe0, 0x01, 0x2d, 0x03, 0xd0, 0x02, 0x2d, 0x4a, 0xd1, 0x31, 0x07, 0x48, 0xd5, 0x21, 0x00, +0x02, 0x98, 0x00, 0x22, 0x18, 0x31, 0x0c, 0xf0, 0xe6, 0xea, 0x01, 0x99, 0x22, 0x7e, 0x40, 0x31, +0xca, 0x77, 0x3d, 0xe0, 0x2f, 0xe0, 0x3a, 0xe0, 0x01, 0x2d, 0x03, 0xd0, 0x02, 0x2d, 0x37, 0xd1, +0xf1, 0x06, 0x35, 0xd5, 0x22, 0x00, 0x59, 0x32, 0x21, 0x00, 0x1e, 0x31, 0x1f, 0xe0, 0x01, 0x2d, +0x03, 0xd0, 0x02, 0x2d, 0x2c, 0xd1, 0x71, 0x06, 0x2a, 0xd5, 0x22, 0x00, 0x5c, 0x32, 0x21, 0x00, +0x2a, 0x31, 0x14, 0xe0, 0x01, 0x2d, 0x03, 0xd0, 0x02, 0x2d, 0x21, 0xd1, 0xf1, 0x05, 0x1f, 0xd5, +0x22, 0x00, 0x5d, 0x32, 0x21, 0x00, 0x36, 0x31, 0x09, 0xe0, 0x01, 0x2d, 0x03, 0xd0, 0x02, 0x2d, +0x16, 0xd1, 0xb1, 0x05, 0x14, 0xd5, 0x22, 0x00, 0x5f, 0x32, 0x21, 0x00, 0x3c, 0x31, 0x02, 0x98, +0x0c, 0xf0, 0xb0, 0xea, 0x0c, 0xe0, 0x01, 0x2d, 0x03, 0xd0, 0x02, 0x2d, 0x08, 0xd1, 0x71, 0x05, +0x06, 0xd5, 0x21, 0x00, 0x02, 0x98, 0x42, 0x31, 0x0c, 0xf0, 0xa8, 0xea, 0x00, 0xe0, 0x38, 0x00, +0x87, 0x42, 0x03, 0xd3, 0x39, 0x1a, 0x0f, 0x04, 0x3f, 0x0c, 0x00, 0xe0, 0x00, 0x27, 0x02, 0x99, +0x08, 0x18, 0x02, 0x90, 0x00, 0x2f, 0x00, 0xd0, 0x2b, 0xe7, 0x05, 0xb0, 0xf0, 0xbd, 0x0a, 0x00, +0x05, 0x21, 0xc9, 0x01, 0x40, 0x18, 0x10, 0xb5, 0x35, 0xbd, 0x68, 0x3a, 0x01, 0x00, 0x00, 0x00, +0xfc, 0x14, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x5f, 0xa6, 0xa9, 0xfd, 0x01, 0x68, 0x90, 0x1c, +0x00, 0x29, 0x04, 0xd0, 0x58, 0x22, 0x0c, 0xf0, 0x90, 0xea, 0x56, 0x20, 0x10, 0xbd, 0x00, 0x20, +0x10, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x05, 0x9e, 0x04, 0x9c, 0x00, 0x20, 0x00, 0x29, 0x05, 0xd0, +0x51, 0x78, 0x00, 0x29, 0x00, 0xd1, 0x01, 0x21, 0x19, 0x70, 0x70, 0xbd, 0x19, 0x78, 0x00, 0x29, +0xfb, 0xd0, 0x49, 0x1e, 0x09, 0x06, 0x09, 0x0e, 0x19, 0x70, 0xf6, 0xd1, 0x50, 0x78, 0x00, 0x28, +0x01, 0xd0, 0x18, 0x70, 0x0f, 0xe0, 0xb0, 0x00, 0x41, 0x19, 0x05, 0x20, 0xc0, 0x01, 0x08, 0x18, +0x00, 0x68, 0x00, 0x28, 0x07, 0xd0, 0x41, 0x78, 0x02, 0x78, 0x09, 0x02, 0x11, 0x43, 0xa1, 0x43, +0x01, 0x70, 0x09, 0x0a, 0x41, 0x70, 0x01, 0x20, 0x70, 0xbd, 0x10, 0xb5, 0x0c, 0x00, 0x11, 0x00, +0x00, 0x2c, 0x03, 0xd1, 0x1a, 0x04, 0x12, 0x0c, 0x0c, 0xf0, 0x5a, 0xea, 0x10, 0xbd, 0xf1, 0xb5, +0x82, 0xb0, 0x02, 0x98, 0x0c, 0xf0, 0x58, 0xea, 0x07, 0x04, 0x02, 0x98, 0x3f, 0x14, 0x0c, 0xf0, +0x58, 0xea, 0x05, 0x04, 0x2d, 0x14, 0x00, 0x26, 0x02, 0x99, 0xb0, 0x00, 0x41, 0x18, 0x05, 0x20, +0xc0, 0x01, 0x08, 0x18, 0x04, 0x68, 0x00, 0x2c, 0x79, 0xd0, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, +0x08, 0x43, 0x80, 0x07, 0x17, 0xd5, 0x21, 0x7b, 0x01, 0x20, 0xb9, 0x42, 0x00, 0xdd, 0x00, 0x20, +0x02, 0x21, 0x00, 0x91, 0x23, 0x00, 0x22, 0x00, 0x01, 0x00, 0x02, 0x98, 0x5a, 0x33, 0x0c, 0x32, +0x01, 0x96, 0xff, 0xf7, 0x9e, 0xff, 0x00, 0x28, 0x05, 0xd0, 0x02, 0x98, 0x3b, 0x00, 0x1a, 0x22, +0x31, 0x00, 0xff, 0xf7, 0xc2, 0xff, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x80, 0x06, +0x18, 0xd5, 0x24, 0x21, 0x09, 0x5d, 0x01, 0x20, 0xb9, 0x42, 0x00, 0xda, 0x00, 0x20, 0x20, 0x21, +0x00, 0x91, 0x23, 0x00, 0x22, 0x00, 0x01, 0x00, 0x02, 0x98, 0x5b, 0x33, 0x24, 0x32, 0x01, 0x96, +0xff, 0xf7, 0x7f, 0xff, 0x00, 0x28, 0x05, 0xd0, 0x02, 0x98, 0x3b, 0x00, 0x1d, 0x22, 0x31, 0x00, +0xff, 0xf7, 0xa3, 0xff, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0xc0, 0x07, 0x17, 0xd0, +0xa1, 0x79, 0x01, 0x20, 0x49, 0x42, 0xa9, 0x42, 0x00, 0xdd, 0x00, 0x20, 0x01, 0x21, 0x00, 0x91, +0x23, 0x00, 0x01, 0x00, 0x02, 0x98, 0x58, 0x33, 0xa2, 0x1d, 0x01, 0x96, 0xff, 0xf7, 0x61, 0xff, +0x00, 0x28, 0x05, 0xd0, 0x02, 0x98, 0x2b, 0x00, 0x19, 0x22, 0x31, 0x00, 0xff, 0xf7, 0x85, 0xff, +0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0xc0, 0x06, 0x18, 0xd5, 0xa1, 0x7f, 0x01, 0x20, +0x49, 0x42, 0xa9, 0x42, 0x00, 0xda, 0x00, 0x20, 0x10, 0x21, 0x00, 0x91, 0x23, 0x00, 0x22, 0x00, +0x01, 0x00, 0x02, 0x98, 0x59, 0x33, 0x1e, 0x32, 0x01, 0x96, 0xff, 0xf7, 0x42, 0xff, 0x00, 0x28, +0x05, 0xd0, 0x02, 0x98, 0x2b, 0x00, 0x1c, 0x22, 0x31, 0x00, 0xff, 0xf7, 0x66, 0xff, 0x76, 0x1c, +0x36, 0x06, 0x36, 0x0e, 0x01, 0x2e, 0x00, 0xd2, 0x76, 0xe7, 0xfe, 0xbd, 0x11, 0x48, 0x00, 0x22, +0x10, 0x38, 0xc1, 0x68, 0x00, 0x29, 0x03, 0xd1, 0x41, 0x78, 0x49, 0x1c, 0x41, 0x70, 0x00, 0xe0, +0x42, 0x70, 0xc2, 0x60, 0x70, 0x47, 0xf8, 0xb5, 0x07, 0x00, 0x05, 0x20, 0xc0, 0x01, 0x3d, 0x18, +0x2c, 0x68, 0x00, 0x2c, 0x39, 0xd0, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x40, 0x05, +0x33, 0xd5, 0x38, 0x00, 0x0c, 0xf0, 0xa8, 0xe9, 0x01, 0x00, 0x40, 0x34, 0xe0, 0x78, 0xa3, 0x78, +0x02, 0x02, 0x03, 0xe0, 0xf4, 0xee, 0x00, 0xc0, 0x07, 0x01, 0x00, 0x00, 0x5c, 0x4e, 0x1a, 0x43, +0x00, 0x20, 0x91, 0x42, 0x22, 0xdc, 0x71, 0x88, 0x49, 0x1c, 0x09, 0x04, 0x09, 0x0c, 0x71, 0x80, +0x62, 0x79, 0x23, 0x79, 0x12, 0x02, 0x1a, 0x43, 0x8a, 0x42, 0x16, 0xd8, 0x71, 0x78, 0x8a, 0x42, +0x02, 0xd9, 0x31, 0x89, 0x01, 0x29, 0x10, 0xd1, 0x04, 0x00, 0x70, 0x80, 0x0c, 0xf0, 0x58, 0xe9, +0x74, 0x70, 0x0c, 0xf0, 0x6a, 0xe9, 0x34, 0x81, 0xa8, 0x88, 0x01, 0x21, 0x89, 0x02, 0x08, 0x43, +0xa8, 0x80, 0x49, 0x04, 0x38, 0x00, 0x01, 0xf0, 0xda, 0xfc, 0xf8, 0xbd, 0x70, 0x80, 0x30, 0x81, +0xf8, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x0c, 0xf0, 0x44, 0xe9, 0x05, 0x21, 0xc9, 0x01, 0x61, 0x18, +0x8c, 0x88, 0x00, 0x22, 0x8a, 0x80, 0x0c, 0xf0, 0x50, 0xe9, 0x20, 0x00, 0x10, 0xbd, 0x05, 0x21, +0x02, 0x00, 0xc9, 0x01, 0x51, 0x18, 0x09, 0x68, 0x00, 0x20, 0x00, 0x29, 0x06, 0xd0, 0x4a, 0x78, +0x0b, 0x78, 0x11, 0x02, 0x19, 0x43, 0x09, 0x07, 0x00, 0xd5, 0x01, 0x20, 0x70, 0x47, 0x05, 0x21, +0xc9, 0x01, 0x40, 0x18, 0x00, 0x68, 0x00, 0x28, 0x03, 0xd0, 0x00, 0x21, 0x60, 0x30, 0x41, 0x70, +0x81, 0x70, 0x70, 0x47, 0x70, 0xb5, 0x00, 0x20, 0x31, 0x49, 0x04, 0x00, 0x08, 0x70, 0x48, 0x80, +0x88, 0x80, 0xc8, 0x80, 0x08, 0x81, 0x0d, 0x00, 0xc8, 0x60, 0x10, 0x35, 0x48, 0x70, 0x63, 0x20, +0x60, 0x43, 0x40, 0x19, 0xff, 0xf7, 0x08, 0xfd, 0x64, 0x1c, 0x01, 0x2c, 0xf7, 0xd3, 0x70, 0xbd, +0x00, 0x20, 0x10, 0xb5, 0x0c, 0xf0, 0x38, 0xe9, 0x05, 0x21, 0xc9, 0x01, 0x40, 0x18, 0x00, 0x68, +0x00, 0x28, 0x0e, 0xd0, 0x41, 0x78, 0x02, 0x78, 0x09, 0x02, 0x11, 0x43, 0x01, 0x22, 0xd2, 0x02, +0x91, 0x43, 0x01, 0x70, 0x09, 0x0a, 0x41, 0x70, 0x1d, 0x48, 0x01, 0x78, 0x49, 0x08, 0x49, 0x00, +0x01, 0x70, 0x10, 0xbd, 0x05, 0x21, 0xc9, 0x01, 0x42, 0x18, 0x10, 0xb5, 0x11, 0x68, 0x00, 0x29, +0x11, 0xd0, 0x4b, 0x78, 0x0c, 0x78, 0x19, 0x02, 0x21, 0x43, 0x09, 0x05, 0x0b, 0xd5, 0x14, 0x49, +0x09, 0x78, 0xc9, 0x07, 0x07, 0xd0, 0x91, 0x88, 0x01, 0x23, 0xdb, 0x02, 0x19, 0x43, 0x91, 0x80, +0x19, 0x04, 0x01, 0xf0, 0x64, 0xfc, 0x10, 0xbd, 0x05, 0x21, 0xc9, 0x01, 0x41, 0x18, 0x10, 0xb5, +0x8a, 0x88, 0x8a, 0x80, 0x01, 0x21, 0xc9, 0x06, 0x01, 0xf0, 0x59, 0xfc, 0x10, 0xbd, 0x05, 0x21, +0xc9, 0x01, 0x42, 0x18, 0x11, 0x68, 0x00, 0x29, 0x02, 0xd1, 0x05, 0x49, 0x10, 0x31, 0x11, 0x60, +0x0b, 0x7e, 0x5f, 0x22, 0x40, 0x31, 0x13, 0x54, 0x89, 0x7d, 0x60, 0x30, 0x01, 0x70, 0x70, 0x47, +0xe4, 0xee, 0x00, 0xc0, 0xf7, 0xb5, 0x82, 0xb0, 0x06, 0x00, 0x0c, 0xf0, 0xea, 0xe8, 0x8f, 0x21, +0x89, 0x00, 0x07, 0x00, 0x44, 0x18, 0x0c, 0xf0, 0xac, 0xe8, 0x22, 0x00, 0xdc, 0x32, 0x05, 0x00, +0x00, 0x92, 0x20, 0x20, 0xc3, 0x5d, 0x04, 0x9a, 0x03, 0x99, 0x30, 0x00, 0x0c, 0xf0, 0xdc, 0xe8, +0x28, 0x00, 0x0c, 0xf0, 0xb2, 0xe8, 0x05, 0xb0, 0xf0, 0xbd, 0xfe, 0xb5, 0x04, 0x00, 0x0c, 0xf0, +0x98, 0xe8, 0x07, 0x00, 0x0b, 0x20, 0x80, 0x01, 0x20, 0x18, 0x00, 0x69, 0x40, 0x30, 0x81, 0x89, +0xfb, 0x48, 0x0c, 0xf0, 0xce, 0xe8, 0x05, 0x00, 0x02, 0x26, 0x20, 0x00, 0x0c, 0xf0, 0xcc, 0xe8, +0x0c, 0x30, 0x01, 0x00, 0x40, 0x31, 0x0a, 0x7d, 0x00, 0x2a, 0x3d, 0xd0, 0x02, 0x68, 0x00, 0x2a, +0x3a, 0xd0, 0x52, 0x1e, 0x02, 0x60, 0x19, 0xd1, 0x08, 0x7d, 0x01, 0x28, 0x08, 0xd9, 0xce, 0x82, +0x21, 0x00, 0xff, 0x31, 0x02, 0x22, 0x4a, 0x31, 0xd6, 0x95, 0x84, 0x28, 0x01, 0x00, 0x00, 0x00, +0xf8, 0x18, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x7f, 0x45, 0x01, 0x77, 0x20, 0x00, 0x09, 0xf0, +0x76, 0xfb, 0x2b, 0xe0, 0x01, 0x28, 0x06, 0xd1, 0xca, 0x8a, 0x21, 0x00, 0xff, 0x31, 0x4a, 0x31, +0x20, 0x00, 0x09, 0xf0, 0x9a, 0xf9, 0x01, 0x21, 0x20, 0x00, 0x09, 0xf0, 0x38, 0xfc, 0x1d, 0xe0, +0x09, 0x7d, 0x03, 0x29, 0x1a, 0xd1, 0xaa, 0x42, 0x18, 0xd2, 0x00, 0x7d, 0x00, 0x28, 0x0e, 0xd1, +0x6b, 0x46, 0x02, 0x90, 0x59, 0x7a, 0x02, 0x00, 0x31, 0x43, 0x59, 0x72, 0x01, 0x90, 0x00, 0x90, +0x02, 0x99, 0x20, 0x00, 0x35, 0x23, 0x0c, 0xf0, 0x96, 0xe8, 0x00, 0x28, 0x06, 0xd0, 0xff, 0x20, +0x51, 0x30, 0x01, 0x5b, 0x01, 0x22, 0x20, 0x00, 0xff, 0xf7, 0x8e, 0xff, 0xe2, 0x7a, 0xa1, 0x7a, +0x20, 0x00, 0x0c, 0xf0, 0x8c, 0xe8, 0x04, 0x00, 0xb1, 0xd1, 0x38, 0x00, 0x0c, 0xf0, 0x4e, 0xe8, +0xfe, 0xbd, 0x70, 0xb5, 0x98, 0xb0, 0x01, 0x89, 0x46, 0x69, 0x0d, 0x18, 0x30, 0x00, 0x0c, 0xf0, +0x6a, 0xe8, 0x8f, 0x21, 0x89, 0x00, 0x44, 0x18, 0x24, 0x20, 0x00, 0x5d, 0x01, 0x28, 0x1b, 0xd1, +0x69, 0x78, 0x2a, 0x78, 0x09, 0x02, 0x11, 0x43, 0x28, 0x00, 0x2c, 0x30, 0x0c, 0x39, 0x03, 0xaa, +0x0c, 0xf0, 0x70, 0xe8, 0x0b, 0x20, 0x80, 0x01, 0x30, 0x18, 0x03, 0x69, 0x4c, 0x20, 0xc1, 0x5a, +0x20, 0x00, 0x01, 0x22, 0x2d, 0x30, 0x6d, 0x46, 0x07, 0xc5, 0x30, 0x00, 0x1a, 0x7b, 0x23, 0x00, +0x25, 0x33, 0x03, 0xa9, 0x0c, 0xf0, 0x62, 0xe8, 0x18, 0xb0, 0x70, 0xbd, 0x08, 0xb5, 0x00, 0x91, +0x69, 0x46, 0x0c, 0xf0, 0x60, 0xe8, 0x08, 0xbd, 0x10, 0xb5, 0x0c, 0xf0, 0x60, 0xe8, 0x10, 0xbd, +0xf3, 0xb5, 0x83, 0xb0, 0x05, 0x00, 0x03, 0x26, 0x0b, 0xf0, 0xfc, 0xef, 0x02, 0x90, 0x28, 0x00, +0x0c, 0xf0, 0x30, 0xe8, 0xff, 0x22, 0x00, 0x21, 0x49, 0x32, 0x51, 0x55, 0x19, 0x22, 0x52, 0x01, +0x80, 0x18, 0x01, 0x72, 0xac, 0x48, 0x00, 0x88, 0x00, 0x28, 0x03, 0xd0, 0x0c, 0xf0, 0x4a, 0xe8, +0x01, 0xf0, 0x45, 0xfc, 0x28, 0x00, 0x0c, 0xf0, 0x4a, 0xe8, 0x2c, 0x00, 0x01, 0x27, 0x20, 0x00, +0x0c, 0xf0, 0x24, 0xe8, 0x4c, 0x30, 0x07, 0x75, 0xe2, 0x7a, 0xa1, 0x7a, 0x20, 0x00, 0x0c, 0xf0, +0x26, 0xe8, 0x04, 0x00, 0xf3, 0xd1, 0x04, 0x9a, 0x00, 0x92, 0x2a, 0x00, 0x9f, 0x49, 0x7e, 0x32, +0x28, 0x00, 0x03, 0x23, 0x0c, 0xf0, 0x36, 0xe8, 0x40, 0x1c, 0x00, 0xd1, 0x01, 0x26, 0x02, 0x98, +0x0b, 0xf0, 0xdc, 0xef, 0x30, 0x00, 0x28, 0xe7, 0x70, 0xb5, 0x0c, 0x00, 0x16, 0x00, 0x1d, 0x00, +0x00, 0x28, 0x01, 0xd0, 0x0c, 0xf0, 0x2a, 0xe8, 0x18, 0x21, 0x20, 0x00, 0x0b, 0xf0, 0xd2, 0xef, +0x3d, 0x20, 0x20, 0x70, 0x16, 0x20, 0x60, 0x70, 0x68, 0x78, 0xa0, 0x70, 0xe0, 0x78, 0x08, 0x21, +0x08, 0x43, 0xfb, 0x21, 0xe0, 0x70, 0x08, 0x40, 0xb1, 0x78, 0x89, 0x07, 0xc9, 0x0f, 0x89, 0x00, +0x08, 0x43, 0xe0, 0x70, 0x29, 0x78, 0x80, 0x08, 0x80, 0x00, 0x89, 0x06, 0x89, 0x0f, 0x08, 0x43, +0xe0, 0x70, 0x70, 0xbd, 0xfe, 0xb5, 0x04, 0x00, 0x0b, 0xf0, 0xe0, 0xef, 0x00, 0x90, 0x20, 0x00, +0x0b, 0xf0, 0xd0, 0xef, 0x05, 0x00, 0x20, 0x7a, 0x02, 0x28, 0x04, 0xd1, 0x20, 0x00, 0x06, 0x21, +0x7e, 0x30, 0x0b, 0xf0, 0xa8, 0xef, 0x0b, 0xf0, 0x8e, 0xef, 0x06, 0x00, 0x01, 0x21, 0x20, 0x00, +0x00, 0xe0, 0x01, 0x21, 0x09, 0xf0, 0x5b, 0xfb, 0xe2, 0x7a, 0xa1, 0x7a, 0x20, 0x00, 0x0b, 0xf0, +0xce, 0xef, 0x00, 0x28, 0xf5, 0xd1, 0x30, 0x00, 0x0b, 0xf0, 0x90, 0xef, 0x26, 0x00, 0x80, 0x36, +0x02, 0xe0, 0x01, 0x20, 0x0b, 0xf0, 0xe6, 0xef, 0x30, 0x7a, 0x0b, 0xf0, 0xe8, 0xef, 0x00, 0x28, +0xf7, 0xd0, 0x13, 0x20, 0x40, 0x01, 0x2e, 0x18, 0x02, 0xe0, 0x01, 0x20, 0x0b, 0xf0, 0xda, 0xef, +0xf0, 0x7a, 0x00, 0x28, 0xf9, 0xd1, 0x0d, 0x20, 0x80, 0x01, 0x28, 0x18, 0x00, 0x69, 0x0b, 0xf0, +0xda, 0xef, 0x2f, 0x00, 0x20, 0x37, 0x78, 0x78, 0x09, 0x22, 0x92, 0x01, 0x01, 0x07, 0xa6, 0x18, +0x00, 0x29, 0x01, 0xdb, 0x80, 0x06, 0x1b, 0xd5, 0xe8, 0x1d, 0xff, 0x30, 0xfa, 0x30, 0x02, 0x90, +0x40, 0x69, 0x00, 0x28, 0x04, 0xd0, 0x0b, 0xf0, 0xca, 0xef, 0x02, 0x99, 0x00, 0x20, 0x48, 0x61, +0x78, 0x78, 0x01, 0x07, 0x01, 0xd4, 0x80, 0x06, 0x0a, 0xd5, 0x28, 0x00, 0x80, 0x30, 0x01, 0x90, +0x00, 0x68, 0x00, 0x28, 0x04, 0xd0, 0x0b, 0xf0, 0xba, 0xef, 0x01, 0x99, 0x00, 0x20, 0x02, 0xe0, +0x00, 0x20, 0x29, 0x00, 0x80, 0x31, 0x08, 0x60, 0x70, 0x62, 0x78, 0x78, 0xc0, 0x09, 0x08, 0xd0, +0xb0, 0x6a, 0x00, 0x28, 0x05, 0xd0, 0x4d, 0x20, 0xc0, 0x00, 0x20, 0x18, 0x0b, 0xf0, 0xaa, 0xef, +0x01, 0xe0, 0x00, 0x20, 0xb0, 0x62, 0xe0, 0x68, 0x04, 0x21, 0x88, 0x43, 0xe0, 0x60, 0x20, 0x00, +0x20, 0x30, 0x41, 0x7e, 0xf7, 0x22, 0x11, 0x40, 0x41, 0x76, 0x0b, 0xf0, 0xa0, 0xef, 0x0b, 0xf0, +0xa2, 0xef, 0x00, 0x21, 0x02, 0x20, 0x0b, 0xf0, 0xa2, 0xef, 0x0b, 0xf0, 0xa4, 0xef, 0x0b, 0xf0, +0xa6, 0xef, 0x00, 0x9b, 0x2a, 0x00, 0x29, 0x00, 0x08, 0x33, 0x48, 0x32, 0x64, 0x31, 0x28, 0x00, +0xff, 0xf7, 0x42, 0xff, 0x20, 0x00, 0x0b, 0xf0, 0x9e, 0xef, 0x00, 0x28, 0x02, 0xd0, 0x0b, 0xf0, +0x02, 0xef, 0xfe, 0xe7, 0x20, 0x7a, 0x02, 0x28, 0x07, 0xd1, 0x20, 0x00, 0x0b, 0xf0, 0x96, 0xef, +0x00, 0x28, 0x02, 0xd0, 0x0b, 0xf0, 0xf6, 0xee, 0xfe, 0xe7, 0xaf, 0x20, 0x80, 0x00, 0x01, 0x22, +0xff, 0x21, 0x20, 0x18, 0x0b, 0xf0, 0x8e, 0xef, 0x0b, 0xf0, 0x90, 0xef, 0x00, 0x28, 0x06, 0xd0, +0x0b, 0xf0, 0x90, 0xef, 0x01, 0x21, 0x02, 0x20, 0x0b, 0xf0, 0x70, 0xef, 0x0d, 0xe0, 0x00, 0x21, +0x03, 0x20, 0x0b, 0xf0, 0x8c, 0xef, 0x00, 0x20, 0x0b, 0xf0, 0x8c, 0xef, 0x01, 0x21, 0x03, 0x20, +0x0b, 0xf0, 0x8c, 0xef, 0x22, 0x49, 0x1f, 0x20, 0x08, 0x62, 0x0b, 0xf0, 0x8c, 0xef, 0xfe, 0xbd, +0x10, 0xb5, 0x09, 0xf0, 0xa9, 0xfe, 0x10, 0xbd, 0xfe, 0xb5, 0x05, 0x00, 0x0b, 0xf0, 0x02, 0xef, +0x04, 0x00, 0x28, 0x00, 0x0b, 0xf0, 0x0a, 0xef, 0x07, 0x00, 0x0e, 0x21, 0x60, 0x18, 0x01, 0x90, +0x0b, 0xf0, 0x7c, 0xef, 0x06, 0x00, 0x01, 0x98, 0x0e, 0x21, 0x0b, 0xf0, 0x7c, 0xef, 0x01, 0x00, +0x38, 0x7a, 0x0b, 0x27, 0x83, 0x07, 0x13, 0x48, 0xbf, 0x01, 0xef, 0x19, 0x3f, 0x69, 0x22, 0x18, +0x8f, 0x20, 0x3f, 0x7b, 0x80, 0x00, 0x9b, 0x0f, 0x20, 0x18, 0x00, 0x2f, 0x4f, 0xd0, 0x00, 0x27, +0x01, 0x2b, 0x01, 0xd0, 0x02, 0x2b, 0x03, 0xd1, 0x00, 0x29, 0x48, 0xd1, 0x02, 0x23, 0x18, 0xe0, +0x2b, 0x7a, 0x03, 0x2b, 0x10, 0xd1, 0x6b, 0x7a, 0x00, 0x2b, 0x17, 0xd1, 0x00, 0x29, 0x3e, 0xd0, +0x14, 0xe0, 0x00, 0x00, 0x88, 0x13, 0x00, 0x00, 0x04, 0x36, 0x01, 0xc0, 0x60, 0xeb, 0x31, 0x00, +0xc0, 0xa0, 0x00, 0x80, 0x1d, 0x02, 0x00, 0x00, 0x00, 0x29, 0x30, 0xd0, 0x00, 0x2e, 0x03, 0xd0, +0x01, 0x23, 0x24, 0x21, 0x0b, 0x54, 0x01, 0xe0, 0x24, 0x21, 0x0f, 0x54, 0x61, 0x6c, 0x01, 0x29, +0x27, 0xd1, 0x21, 0x00, 0x20, 0x31, 0x0d, 0x00, 0x00, 0x97, 0x49, 0x78, 0x0b, 0x07, 0x02, 0xd5, +0x89, 0x06, 0x07, 0xd5, 0x01, 0xe0, 0x8b, 0x06, 0xc5, 0x17, 0xd8, 0x1f, 0x01, 0x00, 0x00, 0x00, +0xf4, 0x1c, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xf8, 0x13, 0x0f, 0x25, 0x02, 0xd5, 0xec, 0x21, +0x09, 0x59, 0x03, 0xe0, 0x09, 0x07, 0x02, 0xd5, 0xea, 0x21, 0x09, 0x5d, 0x00, 0x91, 0x69, 0x78, +0x8b, 0x07, 0x0e, 0xd4, 0x0b, 0x07, 0x01, 0xd4, 0x89, 0x06, 0x03, 0xd5, 0x6b, 0x46, 0x19, 0x78, +0x09, 0x07, 0x06, 0xd5, 0x61, 0x6a, 0x00, 0x29, 0x03, 0xd0, 0x20, 0x30, 0x00, 0x79, 0x00, 0x28, +0x01, 0xd1, 0x00, 0x20, 0xfe, 0xbd, 0x60, 0x6a, 0x01, 0x28, 0x03, 0xd1, 0xd0, 0x78, 0x40, 0x08, +0x40, 0x00, 0xd0, 0x70, 0x01, 0x20, 0xfe, 0xbd, 0x70, 0xb5, 0x0c, 0x00, 0x16, 0x00, 0x45, 0x78, +0x22, 0x68, 0x01, 0x78, 0x11, 0x70, 0x09, 0x0a, 0x51, 0x70, 0x22, 0x68, 0x41, 0x78, 0x91, 0x70, +0x09, 0x0a, 0xd1, 0x70, 0x23, 0x68, 0x42, 0x78, 0x1b, 0x1d, 0x81, 0x1c, 0x2d, 0x1d, 0x18, 0x00, +0x0b, 0xf0, 0x5e, 0xee, 0x20, 0x68, 0x40, 0x19, 0x20, 0x60, 0x70, 0x78, 0x31, 0x78, 0x00, 0x02, +0x08, 0x43, 0x40, 0x19, 0x30, 0x70, 0x00, 0x0a, 0x70, 0x70, 0x70, 0xbd, 0xf8, 0xb5, 0x0f, 0x00, +0x0b, 0xf0, 0x62, 0xee, 0x05, 0x00, 0x38, 0x00, 0x0b, 0xf0, 0x5a, 0xee, 0x05, 0x26, 0x04, 0x00, +0xf6, 0x01, 0xad, 0x19, 0x1a, 0xe0, 0x20, 0x7a, 0x02, 0x28, 0x04, 0xd0, 0x20, 0x00, 0x0b, 0xf0, +0xe0, 0xee, 0x00, 0x28, 0x0d, 0xd0, 0x20, 0x00, 0x0b, 0xf0, 0xde, 0xee, 0x00, 0x28, 0x08, 0xd0, +0x20, 0x00, 0x0b, 0xf0, 0x4a, 0xee, 0x80, 0x19, 0x80, 0x68, 0xa9, 0x68, 0x88, 0x42, 0x00, 0xd9, +0xa8, 0x60, 0x39, 0x00, 0x20, 0x00, 0x0b, 0xf0, 0xd4, 0xee, 0x04, 0x00, 0x00, 0x2c, 0xe2, 0xd1, +0xf8, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x02, 0x21, 0xff, 0xf7, 0xd0, 0xff, 0x03, 0x21, 0x20, 0x00, +0xff, 0xf7, 0xcc, 0xff, 0x10, 0xbd, 0x70, 0xb5, 0x0b, 0xf0, 0xc6, 0xee, 0x00, 0x28, 0x01, 0xd1, +0x01, 0x24, 0x00, 0xe0, 0x00, 0x24, 0x02, 0x20, 0x0b, 0xf0, 0x22, 0xee, 0x0a, 0xe0, 0x28, 0x00, +0x0b, 0xf0, 0xb2, 0xee, 0x01, 0x28, 0x01, 0xd1, 0x00, 0x24, 0x08, 0xe0, 0x29, 0x7a, 0x28, 0x00, +0x0b, 0xf0, 0xae, 0xee, 0x05, 0x00, 0x01, 0x2c, 0x01, 0xd1, 0x00, 0x2d, 0xef, 0xd1, 0x02, 0x20, +0x0b, 0xf0, 0xae, 0xee, 0x01, 0x2c, 0x07, 0xd1, 0x00, 0x28, 0x05, 0xd0, 0xff, 0x30, 0x41, 0x30, +0x00, 0x7a, 0x00, 0x28, 0x00, 0xd0, 0x00, 0x24, 0x20, 0x00, 0x70, 0xbd, 0xf0, 0xb5, 0x04, 0x00, +0x87, 0xb0, 0x0b, 0xf0, 0x0e, 0xee, 0x07, 0x00, 0x20, 0x00, 0x0b, 0xf0, 0xfe, 0xed, 0x01, 0x90, +0x64, 0x30, 0x00, 0x90, 0x01, 0x98, 0x9b, 0x21, 0x89, 0x00, 0x46, 0x18, 0x3d, 0x00, 0x08, 0x35, +0x20, 0x00, 0xff, 0xf7, 0xc0, 0xff, 0x01, 0x28, 0x11, 0xd1, 0x20, 0x7a, 0x03, 0x28, 0x0c, 0xd1, +0x60, 0x7a, 0x02, 0x28, 0x09, 0xd1, 0x20, 0x00, 0x0b, 0xf0, 0x86, 0xee, 0x25, 0x22, 0x52, 0x01, +0x82, 0x18, 0x79, 0x7a, 0xc0, 0x30, 0x11, 0x77, 0x81, 0x74, 0x07, 0xb0, 0xf0, 0xbd, 0x03, 0xa9, +0x04, 0xa8, 0x05, 0xf0, 0x1d, 0xf9, 0x0b, 0x21, 0x89, 0x01, 0x61, 0x18, 0x06, 0x91, 0x09, 0x69, +0x03, 0x98, 0x08, 0x73, 0x78, 0x72, 0x01, 0x98, 0x0e, 0x21, 0x0e, 0x30, 0x0b, 0xf0, 0x54, 0xee, +0x6b, 0x46, 0x19, 0x7c, 0x8f, 0x07, 0x29, 0x78, 0xbf, 0x0f, 0x8a, 0x07, 0x92, 0x0f, 0x97, 0x42, +0x09, 0xd1, 0x89, 0x09, 0x01, 0x29, 0x27, 0xd1, 0x39, 0x00, 0x01, 0x43, 0x03, 0xd0, 0x01, 0x2f, +0x22, 0xd1, 0x00, 0x28, 0x20, 0xd0, 0x20, 0x00, 0x0b, 0xf0, 0xc2, 0xed, 0x01, 0x7a, 0xbb, 0x07, +0x89, 0x08, 0x89, 0x00, 0x9b, 0x0f, 0x19, 0x43, 0x89, 0x06, 0x02, 0x68, 0x89, 0x0e, 0x01, 0x72, +0x00, 0x20, 0xd0, 0x77, 0xfe, 0x20, 0x0e, 0x21, 0x90, 0x77, 0x50, 0x18, 0x05, 0x90, 0x0b, 0xf0, +0x84, 0xed, 0x01, 0x2f, 0x01, 0xd0, 0x02, 0x2f, 0x03, 0xd1, 0x05, 0x98, 0x09, 0xf0, 0xaf, 0xff, +0x02, 0xe0, 0x05, 0x98, 0x0b, 0xf0, 0x3c, 0xee, 0x20, 0x7a, 0x03, 0x28, 0x0c, 0xd1, 0x60, 0x7a, +0x02, 0x28, 0x09, 0xd1, 0x20, 0x00, 0x0b, 0xf0, 0x30, 0xee, 0x25, 0x22, 0x52, 0x01, 0x82, 0x18, +0x03, 0x99, 0xc0, 0x30, 0x11, 0x77, 0x81, 0x74, 0xb0, 0x78, 0x80, 0x07, 0x2b, 0xd5, 0x6b, 0x46, +0x18, 0x7c, 0x80, 0x06, 0x80, 0x0f, 0x14, 0xd1, 0x00, 0x98, 0xc0, 0x78, 0x81, 0x07, 0x04, 0xd1, +0x80, 0x08, 0x00, 0x99, 0x80, 0x00, 0x40, 0x1c, 0xc8, 0x70, 0x0c, 0x20, 0x02, 0xa9, 0x0b, 0xf0, +0x1c, 0xee, 0x06, 0x99, 0x03, 0x00, 0x09, 0x69, 0x00, 0x9a, 0x09, 0x7b, 0x04, 0xa8, 0x0b, 0xf0, +0x18, 0xee, 0x28, 0x78, 0xcf, 0x21, 0x08, 0x40, 0x6b, 0x46, 0x19, 0x7c, 0x89, 0x06, 0x89, 0x0f, +0x09, 0x01, 0x08, 0x43, 0x28, 0x70, 0x18, 0x7c, 0x80, 0x06, 0x80, 0x0f, 0x03, 0xd1, 0xb0, 0x78, +0xfd, 0x21, 0x08, 0x40, 0xb0, 0x70, 0x06, 0x98, 0x01, 0x69, 0x28, 0x78, 0x48, 0x73, 0x06, 0x99, +0x80, 0x06, 0x09, 0x69, 0x80, 0x0e, 0x48, 0x73, 0x6f, 0xe7, 0xf0, 0xb5, 0x00, 0x26, 0x89, 0xb0, +0x05, 0x00, 0x03, 0x96, 0x0b, 0xf0, 0x48, 0xed, 0x04, 0x00, 0x28, 0x00, 0x0b, 0xf0, 0x50, 0xed, +0x01, 0x90, 0x68, 0x7a, 0x02, 0x28, 0x7e, 0xd1, 0x8f, 0x20, 0x80, 0x00, 0x27, 0x18, 0x28, 0x00, +0xff, 0xf7, 0x34, 0xff, 0x04, 0x21, 0x01, 0x20, 0x0b, 0xf0, 0xe6, 0xed, 0x00, 0x28, 0x0f, 0xd1, +0x28, 0x00, 0xff, 0xf7, 0x2b, 0xfe, 0x01, 0x28, 0x0a, 0xd1, 0x28, 0x00, 0x29, 0x7a, 0x7e, 0x30, +0x02, 0x29, 0x08, 0x90, 0x11, 0xd1, 0x28, 0x00, 0x0b, 0xf0, 0xda, 0xed, 0x00, 0x28, 0x02, 0xd0, +0x00, 0x20, 0x09, 0xb0, 0xf0, 0xbd, 0x28, 0x7a, 0x02, 0x28, 0x06, 0xd1, 0x21, 0x00, 0xff, 0x31, +0x08, 0x98, 0x06, 0x22, 0xf3, 0x31, 0x0b, 0xf0, 0x04, 0xed, 0xff, 0x48, 0x00, 0x88, 0x00, 0x28, +0x03, 0xd0, 0x0b, 0xf0, 0x3a, 0xed, 0x01, 0xf0, 0x34, 0xf9, 0x0b, 0xf0, 0x5e, 0xed, 0x00, 0x21, +0x02, 0x20, 0x0b, 0xf0, 0x5e, 0xed, 0x0b, 0xf0, 0x60, 0xed, 0xf8, 0x4a, 0x50, 0x6a, 0x04, 0x21, +0x08, 0x43, 0x50, 0x62, 0x28, 0x00, 0x0b, 0xf0, 0xb8, 0xed, 0x21, 0x20, 0x00, 0x5d, 0x39, 0x00, +0x00, 0x07, 0xff, 0x31, 0xc0, 0x0f, 0x09, 0x31, 0x0b, 0xf0, 0xb2, 0xed, 0x0b, 0xf0, 0x40, 0xed, +0x0b, 0x20, 0x80, 0x01, 0x2e, 0x18, 0x30, 0x69, 0x00, 0x22, 0x40, 0x7b, 0x00, 0x90, 0x30, 0x69, +0x01, 0x7b, 0x00, 0x98, 0x04, 0xf0, 0xc7, 0xff, 0x05, 0xf0, 0x17, 0xf8, 0x30, 0x69, 0x01, 0x22, +0x01, 0x7b, 0x28, 0x00, 0x0b, 0xf0, 0xa0, 0xed, 0x0e, 0x21, 0x60, 0x18, 0x07, 0x90, 0x0b, 0xf0, +0xa0, 0xed, 0x2a, 0x00, 0x61, 0x32, 0x01, 0x06, 0x00, 0x92, 0x09, 0x0e, 0x00, 0x22, 0x07, 0x98, +0x13, 0x00, 0x06, 0x91, 0x0b, 0xf0, 0x98, 0xed, 0x03, 0x00, 0x06, 0x9a, 0x07, 0x99, 0x28, 0x00, +0x05, 0xf0, 0x50, 0xf8, 0x9b, 0x21, 0x01, 0x9b, 0x89, 0x00, 0x62, 0x18, 0x08, 0x33, 0x21, 0x00, +0x64, 0x31, 0x20, 0x00, 0x00, 0xe0, 0x1c, 0xe1, 0x05, 0x93, 0xff, 0xf7, 0xbf, 0xfc, 0x13, 0x21, +0x49, 0x01, 0x60, 0x18, 0x80, 0x7b, 0x80, 0x07, 0x30, 0xd5, 0x87, 0x20, 0x80, 0x00, 0x00, 0x5d, +0x00, 0x28, 0x40, 0xd0, 0x01, 0x98, 0x00, 0x7a, 0x5d, 0xda, 0x52, 0xc8, 0x01, 0x00, 0x00, 0x00, +0xf0, 0x20, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xf6, 0xa6, 0xa2, 0x4c, 0x80, 0x07, 0x2c, 0xd1, +0x1d, 0x21, 0x49, 0x01, 0x60, 0x18, 0x03, 0x79, 0x58, 0x07, 0x07, 0xd4, 0x20, 0x00, 0x60, 0x30, +0xc1, 0x79, 0xfb, 0x22, 0x89, 0x08, 0x89, 0x00, 0x11, 0x40, 0xc1, 0x71, 0x98, 0x07, 0x80, 0x0f, +0x0f, 0xd0, 0x01, 0x28, 0x23, 0xd0, 0x02, 0x28, 0x0b, 0xd1, 0x30, 0x69, 0x40, 0x30, 0x80, 0x89, +0x81, 0x02, 0xc0, 0x48, 0x0b, 0xf0, 0x9a, 0xec, 0x05, 0x22, 0xd2, 0x01, 0x40, 0x1c, 0xa1, 0x18, +0x88, 0x60, 0x0b, 0xf0, 0xf8, 0xec, 0x00, 0x28, 0x02, 0xd0, 0x28, 0x00, 0xff, 0xf7, 0x4b, 0xfe, +0x87, 0x20, 0x80, 0x00, 0x00, 0x5d, 0x00, 0x28, 0x0f, 0xd0, 0x1d, 0x21, 0x49, 0x01, 0x60, 0x18, +0x01, 0x79, 0xfb, 0x22, 0x11, 0x40, 0x89, 0x08, 0x89, 0x00, 0x49, 0x1c, 0x0d, 0xe0, 0x30, 0x69, +0x40, 0x30, 0x80, 0x89, 0x81, 0x02, 0xb0, 0x48, 0xdc, 0xe7, 0x1d, 0x21, 0x49, 0x01, 0x60, 0x18, +0x01, 0x79, 0x04, 0x22, 0x11, 0x43, 0x89, 0x08, 0x89, 0x00, 0x01, 0x71, 0x29, 0x00, 0x20, 0x31, +0x08, 0x7e, 0xfe, 0x28, 0x12, 0xd0, 0x02, 0x00, 0x0e, 0x3a, 0x07, 0x2a, 0x05, 0xd8, 0x67, 0x22, +0x12, 0x5d, 0x52, 0x07, 0x01, 0xd5, 0x09, 0x30, 0x06, 0xe0, 0x16, 0x28, 0x06, 0xd9, 0x67, 0x22, +0x12, 0x5d, 0x52, 0x07, 0x02, 0xd4, 0x09, 0x38, 0x08, 0x76, 0xa0, 0x77, 0x0b, 0xf0, 0x1a, 0xed, +0x31, 0x69, 0x00, 0x20, 0xc8, 0x73, 0x28, 0x00, 0x0b, 0xf0, 0x18, 0xed, 0x00, 0x28, 0x00, 0xd0, +0xfe, 0xe7, 0x28, 0x00, 0x80, 0x30, 0x04, 0x90, 0x00, 0x69, 0xac, 0x21, 0x01, 0x81, 0x08, 0x21, +0x28, 0x00, 0x0b, 0xf0, 0x10, 0xed, 0x04, 0x98, 0xac, 0x21, 0x80, 0x69, 0x01, 0x81, 0x05, 0x21, +0x28, 0x00, 0x0b, 0xf0, 0x08, 0xed, 0x28, 0x00, 0x0b, 0xf0, 0x08, 0xed, 0x28, 0x00, 0x0b, 0xf0, +0x0a, 0xed, 0x28, 0x00, 0x0b, 0xf0, 0x0a, 0xed, 0x08, 0x99, 0x02, 0x20, 0x0b, 0xf0, 0x9a, 0xec, +0x30, 0x69, 0x2b, 0x21, 0x09, 0x5c, 0x2c, 0x30, 0x0b, 0xf0, 0x04, 0xed, 0x01, 0x20, 0x0b, 0xf0, +0x96, 0xec, 0x00, 0x22, 0xff, 0x21, 0x3a, 0x31, 0x28, 0x00, 0x13, 0x00, 0x08, 0xf0, 0x87, 0xf8, +0x00, 0x22, 0xff, 0x21, 0x7c, 0x31, 0x28, 0x00, 0x13, 0x00, 0x08, 0xf0, 0x80, 0xf8, 0x60, 0x6a, +0x00, 0x28, 0x06, 0xd0, 0x28, 0x00, 0x0b, 0xf0, 0xf2, 0xec, 0x00, 0x28, 0x01, 0xd1, 0x0b, 0xf0, +0xf2, 0xec, 0x0b, 0xf0, 0xf4, 0xec, 0x00, 0x21, 0x02, 0x20, 0x0b, 0xf0, 0x7c, 0xec, 0x0b, 0xf0, +0x6e, 0xec, 0x01, 0x21, 0x02, 0x20, 0x0b, 0xf0, 0x4e, 0xec, 0x0b, 0xf0, 0x78, 0xec, 0xff, 0x22, +0x91, 0x32, 0x2e, 0x23, 0x02, 0xa9, 0x03, 0xa8, 0x0b, 0xf0, 0xe4, 0xec, 0x00, 0x28, 0x49, 0xd0, +0x02, 0x98, 0x01, 0x00, 0x18, 0x31, 0x00, 0x91, 0x61, 0x6c, 0x01, 0x29, 0x06, 0xd1, 0x02, 0x00, +0x38, 0x00, 0x0a, 0x32, 0x30, 0x30, 0x69, 0x46, 0xff, 0xf7, 0x58, 0xfd, 0x11, 0x20, 0x02, 0x9a, +0x40, 0x01, 0x20, 0x18, 0x00, 0x78, 0x0a, 0x32, 0x69, 0x46, 0x0b, 0xf0, 0xd0, 0xec, 0x60, 0x6a, +0x01, 0x28, 0x06, 0xd1, 0x02, 0x9a, 0x20, 0x00, 0x0a, 0x32, 0x28, 0x30, 0x69, 0x46, 0xff, 0xf7, +0x45, 0xfd, 0x00, 0x98, 0xff, 0x21, 0x2b, 0x31, 0x01, 0x70, 0x09, 0x0a, 0x41, 0x70, 0x02, 0x22, +0x00, 0x21, 0x82, 0x70, 0xc1, 0x70, 0x05, 0x99, 0x00, 0x1d, 0x0b, 0xf0, 0xac, 0xeb, 0x02, 0x98, +0xc1, 0x7a, 0x82, 0x7a, 0x0b, 0x02, 0x00, 0x99, 0x13, 0x43, 0xca, 0x78, 0x8c, 0x78, 0x12, 0x02, +0x22, 0x43, 0x9a, 0x18, 0x12, 0x1d, 0x82, 0x72, 0x12, 0x0a, 0xc2, 0x72, 0xc8, 0x78, 0x8a, 0x78, +0x00, 0x02, 0x10, 0x43, 0x09, 0x1d, 0x40, 0x18, 0x00, 0x90, 0x03, 0x9a, 0x08, 0x99, 0x28, 0x00, +0x0b, 0xf0, 0xa0, 0xec, 0x01, 0x26, 0x30, 0x00, 0x7d, 0xe6, 0x0b, 0x00, 0x10, 0xb5, 0x01, 0x89, +0x09, 0x18, 0x0c, 0x00, 0x20, 0x34, 0x22, 0x78, 0x40, 0x69, 0x03, 0x2a, 0x0e, 0xd0, 0x04, 0x2a, +0x11, 0xd0, 0x08, 0x2a, 0x2d, 0xd0, 0x7f, 0x2a, 0x07, 0xd1, 0x00, 0x28, 0x05, 0xd0, 0x02, 0x7a, +0x03, 0x2a, 0x02, 0xd1, 0x7f, 0x22, 0x0b, 0xf0, 0x8a, 0xec, 0x10, 0xbd, 0x0a, 0x00, 0x21, 0x00, +0x0b, 0xf0, 0x88, 0xec, 0x10, 0xbd, 0x62, 0x78, 0x0b, 0x2a, 0x0b, 0xd0, 0x06, 0xdc, 0x00, 0x2a, +0x0b, 0xd0, 0x09, 0x2a, 0x0e, 0xd0, 0x0a, 0x2a, 0xf4, 0xd1, 0x03, 0xe0, 0x0c, 0x2a, 0x01, 0xd0, +0x0d, 0x2a, 0xef, 0xd1, 0x0b, 0xf0, 0x7a, 0xec, 0x10, 0xbd, 0x0a, 0x00, 0x21, 0x00, 0x0b, 0xf0, +0x7a, 0xec, 0x10, 0xbd, 0x00, 0x28, 0xfc, 0xd0, 0x02, 0x7a, 0x03, 0x2a, 0xf9, 0xd1, 0x09, 0x22, +0xd9, 0xe7, 0x0a, 0x00, 0x21, 0x00, 0x0b, 0xf0, 0x72, 0xec, 0x10, 0xbd, 0x10, 0xb5, 0x0b, 0x78, +0x00, 0x2b, 0x0a, 0xd0, 0x5b, 0x1e, 0x1b, 0x06, 0x1b, 0x0e, 0x0b, 0x70, 0x05, 0xd1, 0xd1, 0x78, +0xdf, 0x23, 0x19, 0x40, 0xd1, 0x70, 0x0b, 0xf0, 0x66, 0xec, 0x10, 0xbd, 0xf3, 0xb5, 0x81, 0xb0, +0x0e, 0x00, 0x01, 0x98, 0x0b, 0xf0, 0x4a, 0xeb, 0x05, 0x00, 0x01, 0x98, 0x0b, 0xf0, 0x52, 0xeb, +0x8f, 0x20, 0x80, 0x00, 0x2f, 0x18, 0x87, 0x20, 0x80, 0x00, 0x40, 0x5d, 0x00, 0x28, 0x12, 0xd0, +0x3c, 0x00, 0x20, 0x34, 0xa0, 0x7c, 0x80, 0x07, 0x0d, 0xd5, 0x0b, 0xf0, 0x00, 0xeb, 0x01, 0x2e, +0x00, 0x90, 0x09, 0xd1, 0xf8, 0x6c, 0x00, 0x28, 0x02, 0xd1, 0x20, 0x7b, 0x00, 0x28, 0x2a, 0xd0, +0x00, 0x98, 0x0b, 0xf0, 0x08, 0xeb, 0xfe, 0xbd, 0x00, 0x2e, 0x24, 0xd1, 0x01, 0x98, 0x0b, 0xf0, +0x26, 0xeb, 0x8f, 0x21, 0x89, 0x00, 0x47, 0x18, 0xff, 0x30, 0xff, 0x30, 0x80, 0x1c, 0x01, 0x89, +0xc0, 0x89, 0x41, 0x43, 0x05, 0x48, 0x48, 0x43, 0x0b, 0x22, 0x09, 0xe0, 0x04, 0x36, 0x01, 0xc0, +0x00, 0xa8, 0x00, 0x80, 0x00, 0x2f, 0x68, 0x59, 0x40, 0x4b, 0x4c, 0x00, 0x40, 0x42, 0x0f, 0x00, +0x01, 0x99, 0x92, 0x01, 0x89, 0x18, 0x09, 0x69, 0x40, 0x31, 0x89, 0x89, 0x89, 0x02, 0x0b, 0xf0, +0x0e, 0xeb, 0x40, 0x1c, 0xf8, 0x64, 0x00, 0x98, 0x0b, 0xf0, 0xdc, 0xea, 0x60, 0x35, 0xe8, 0x79, +0x40, 0x07, 0xc0, 0x0f, 0xb0, 0x42, 0xce, 0xd0, 0xa0, 0x7c, 0x80, 0x07, 0xcb, 0xd5, 0x01, 0x98, +0xc1, 0x7a, 0x80, 0x7a, 0x0b, 0xf0, 0x0a, 0xec, 0x04, 0x00, 0x0b, 0xf0, 0xfc, 0xea, 0xe9, 0x79, +0xfb, 0x22, 0x11, 0x40, 0xf2, 0x07, 0x52, 0x0f, 0x11, 0x43, 0x01, 0x2e, 0xe9, 0x71, 0x07, 0xd1, +0x00, 0x7a, 0x89, 0x08, 0x89, 0x00, 0x80, 0x06, 0x80, 0x0f, 0x01, 0x43, 0xe9, 0x71, 0x02, 0xe0, +0x88, 0x08, 0x80, 0x00, 0xe8, 0x71, 0x01, 0x98, 0x0b, 0xf0, 0xf4, 0xeb, 0x0e, 0xe0, 0xe0, 0x68, +0xc0, 0x04, 0x05, 0xd5, 0x20, 0x00, 0x0b, 0xf0, 0xf2, 0xeb, 0x20, 0x00, 0x0b, 0xf0, 0xf2, 0xeb, +0xe2, 0x7a, 0xa1, 0x7a, 0x20, 0x00, 0x0b, 0xf0, 0xde, 0xea, 0x04, 0x00, 0x00, 0x2c, 0xee, 0xd1, +0xfe, 0xbd, 0xff, 0xb5, 0x97, 0xb0, 0x00, 0x25, 0x2e, 0x00, 0x17, 0x98, 0x2f, 0x00, 0x00, 0x7a, +0x2c, 0x00, 0x02, 0x28, 0x01, 0xd0, 0x03, 0x28, 0x0c, 0xd1, 0x17, 0x98, 0x0b, 0xf0, 0xb6, 0xea, +0x8f, 0x21, 0x89, 0x00, 0x05, 0x00, 0x46, 0x18, 0x1b, 0x4c, 0x75, 0xc9, 0x01, 0x00, 0x00, 0x00, +0xec, 0x24, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xdc, 0x28, 0x0b, 0xd5, 0x24, 0x20, 0x87, 0x5d, +0x17, 0x98, 0x0b, 0xf0, 0xba, 0xea, 0x04, 0x00, 0x19, 0x99, 0x18, 0x98, 0x0c, 0x39, 0x09, 0x04, +0x0c, 0x30, 0x09, 0x0c, 0x02, 0xaa, 0x0b, 0xf0, 0xbc, 0xea, 0x20, 0x9a, 0x0a, 0x99, 0xd2, 0x78, +0x10, 0x98, 0x93, 0x06, 0xdb, 0x0f, 0x00, 0x29, 0x02, 0xd1, 0x02, 0x2f, 0x08, 0xd1, 0x02, 0xe0, +0x89, 0x78, 0xc9, 0x07, 0x04, 0xd1, 0x00, 0x28, 0x02, 0xd0, 0x00, 0x79, 0xc0, 0x06, 0x14, 0xd5, +0x20, 0x20, 0x02, 0x43, 0x20, 0x98, 0xc2, 0x70, 0x90, 0x06, 0xc0, 0x0f, 0x98, 0x42, 0x02, 0xd0, +0x17, 0x98, 0x0b, 0xf0, 0x9a, 0xeb, 0x1a, 0x98, 0xff, 0x4b, 0x81, 0x02, 0x22, 0x98, 0x58, 0x43, +0x0b, 0xf0, 0x86, 0xea, 0x21, 0x99, 0x40, 0x1c, 0x08, 0x70, 0x20, 0x36, 0x30, 0x79, 0x02, 0x28, +0x60, 0xd0, 0x87, 0x20, 0x80, 0x00, 0x40, 0x5d, 0x01, 0x28, 0x5b, 0xd1, 0x13, 0x20, 0x40, 0x01, +0x28, 0x18, 0x80, 0x7b, 0x80, 0x07, 0x55, 0xd5, 0x00, 0x20, 0x01, 0x90, 0x60, 0x35, 0x86, 0x46, +0xa8, 0x79, 0x21, 0x7a, 0x05, 0x00, 0x89, 0x06, 0x06, 0x00, 0x89, 0x0f, 0x01, 0x29, 0x03, 0xd1, +0xc2, 0x1e, 0xc4, 0x1d, 0x01, 0x1d, 0x02, 0xe0, 0xc2, 0x1f, 0xc4, 0x1c, 0x01, 0x1f, 0x00, 0x27, +0x00, 0x2a, 0x8c, 0x46, 0x00, 0xdb, 0x17, 0x00, 0x07, 0x9a, 0x00, 0x2a, 0x13, 0xd0, 0x07, 0x9a, +0x93, 0x78, 0xbb, 0x42, 0x0f, 0xdb, 0xa3, 0x42, 0x0d, 0xdc, 0x0f, 0x9a, 0x00, 0x2a, 0x09, 0xd0, +0x0f, 0x9a, 0x92, 0x78, 0x92, 0x07, 0x01, 0xd5, 0x1e, 0x00, 0x07, 0xe0, 0x0f, 0x9a, 0xd2, 0x78, +0x52, 0x06, 0x03, 0xd5, 0x1d, 0x00, 0x0f, 0x9a, 0x00, 0x2a, 0x11, 0xd0, 0x10, 0x9a, 0xd3, 0x78, +0x9a, 0x07, 0x0d, 0xd0, 0x03, 0x22, 0xd2, 0x43, 0x93, 0x43, 0x01, 0x2b, 0x00, 0xd1, 0x04, 0x22, +0x10, 0x9b, 0x9b, 0x78, 0x9a, 0x18, 0xba, 0x42, 0x02, 0xdb, 0xa2, 0x42, 0x00, 0xdc, 0x11, 0x00, +0xb0, 0x42, 0x01, 0xd1, 0xa8, 0x42, 0x01, 0xd0, 0x01, 0x20, 0x86, 0x46, 0x8c, 0x45, 0x01, 0xd0, +0x01, 0x20, 0x01, 0x90, 0x01, 0x99, 0x70, 0x46, 0x08, 0x43, 0x03, 0xd0, 0x17, 0x98, 0x00, 0x21, +0xff, 0xf7, 0xc6, 0xfe, 0x1b, 0xb0, 0xf0, 0xbd, 0x3e, 0xb5, 0x01, 0x89, 0x45, 0x69, 0x0c, 0x18, +0x28, 0x00, 0x0b, 0xf0, 0x0e, 0xea, 0x01, 0x00, 0x8f, 0x20, 0x80, 0x00, 0x08, 0x18, 0x49, 0x6c, +0x00, 0x29, 0x14, 0xd0, 0x01, 0x00, 0x01, 0x22, 0x2e, 0x31, 0x25, 0x30, 0x6b, 0x46, 0x07, 0xc3, +0x0b, 0x20, 0x80, 0x01, 0x28, 0x18, 0x00, 0x69, 0x21, 0x78, 0x40, 0x30, 0x83, 0x89, 0x60, 0x78, +0x02, 0x02, 0x0a, 0x43, 0x21, 0x00, 0x20, 0x31, 0x28, 0x00, 0xff, 0xf7, 0x2c, 0xff, 0x3e, 0xbd, +0x70, 0xb5, 0x06, 0x00, 0x0b, 0xf0, 0xec, 0xe9, 0x8f, 0x21, 0x89, 0x00, 0x44, 0x18, 0x0b, 0xf0, +0xb0, 0xe9, 0xe1, 0x6c, 0x05, 0x00, 0x00, 0x29, 0x06, 0xd0, 0x49, 0x1e, 0xe1, 0x64, 0x03, 0xd1, +0x01, 0x21, 0x30, 0x00, 0xff, 0xf7, 0x8c, 0xfe, 0x28, 0x00, 0x0b, 0xf0, 0xb6, 0xe9, 0x70, 0xbd, +0x10, 0xb5, 0x0b, 0xf0, 0xd6, 0xe9, 0x8f, 0x21, 0x89, 0x00, 0x40, 0x18, 0x20, 0x30, 0xc1, 0x7b, +0x49, 0x08, 0x49, 0x00, 0xc1, 0x73, 0x10, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x1c, 0x20, 0x0c, 0x00, +0x08, 0x81, 0x30, 0x34, 0x3c, 0x21, 0x20, 0x00, 0x0b, 0xf0, 0xea, 0xea, 0x80, 0x35, 0xe8, 0x68, +0x00, 0x28, 0x08, 0xd0, 0x00, 0x69, 0x20, 0x61, 0xe8, 0x68, 0x40, 0x69, 0x60, 0x61, 0xe8, 0x68, +0xc0, 0x78, 0x00, 0x02, 0x60, 0x80, 0x70, 0xbd, 0xf7, 0xb5, 0x01, 0x25, 0x08, 0x89, 0x44, 0x18, +0x00, 0x98, 0x00, 0x7a, 0x02, 0x28, 0x0e, 0xd0, 0x03, 0x28, 0x0a, 0xd1, 0x00, 0x98, 0x40, 0x7a, +0x01, 0x28, 0x01, 0xd0, 0x02, 0x28, 0x04, 0xd1, 0x00, 0x98, 0x21, 0x00, 0x0b, 0xf0, 0xcc, 0xea, +0x00, 0x25, 0x28, 0x00, 0xfe, 0xbd, 0x00, 0x98, 0x0b, 0xf0, 0x9a, 0xe9, 0x8f, 0x21, 0x89, 0x00, +0x46, 0x18, 0x07, 0x00, 0x2f, 0x20, 0x80, 0x5d, 0x00, 0x28, 0xf2, 0xd1, 0x00, 0x98, 0x21, 0x00, +0x0b, 0xf0, 0xbe, 0xea, 0x01, 0x28, 0xec, 0xd1, 0x33, 0x00, 0x21, 0x00, 0x00, 0x98, 0x2f, 0x33, +0x00, 0x22, 0x0c, 0x31, 0x0b, 0xf0, 0xb8, 0xea, 0x05, 0x00, 0xe2, 0xd1, 0xff, 0x37, 0xa0, 0x78, +0xff, 0x37, 0xbf, 0x1c, 0x02, 0x09, 0x01, 0x20, 0xb9, 0x69, 0x90, 0x40, 0x01, 0x42, 0xd8, 0xd0, +0x00, 0x98, 0xe5, 0x22, 0x21, 0x00, 0x0b, 0xf0, 0xac, 0xea, 0xd2, 0xe7, 0x10, 0xb5, 0x00, 0x24, +0x0b, 0xf0, 0x7a, 0xe9, 0x00, 0x7a, 0x80, 0x09, 0x01, 0x28, 0x00, 0xd1, 0x01, 0x24, 0x20, 0x00, +0x10, 0xbd, 0xf8, 0xb5, 0x07, 0x00, 0x0b, 0xf0, 0x64, 0xe9, 0x04, 0x00, 0x00, 0x26, 0x0b, 0xf0, +0x9c, 0xea, 0x0d, 0x28, 0x01, 0xd9, 0x0d, 0x20, 0x01, 0xe0, 0x0b, 0xf0, 0x96, 0xea, 0x05, 0x06, +0x2d, 0x16, 0x38, 0x00, 0xff, 0xf7, 0xe2, 0xff, 0x00, 0x28, 0x13, 0xd0, 0x00, 0x21, 0x2d, 0x1f, +0x84, 0x20, 0x02, 0x5d, 0x0c, 0xe0, 0xc8, 0x00, 0x40, 0x1a, 0x00, 0x19, 0xff, 0x30, 0x61, 0x30, +0x40, 0x7b, 0x05, 0x28, 0x03, 0xd3, 0xa8, 0x42, 0x01, 0xdc, 0x01, 0x26, 0x02, 0xe0, 0x49, 0x1c, +0x8a, 0x42, 0xf0, 0xd8, 0x30, 0x00, 0xf8, 0xbd, 0xf8, 0xb5, 0x00, 0x25, 0x06, 0x00, 0x0b, 0xf0, +0x38, 0xe9, 0x04, 0x00, 0x30, 0x00, 0x0b, 0xf0, 0x40, 0xe9, 0x07, 0x00, 0x30, 0x00, 0xff, 0xf7, +0xbd, 0xff, 0x00, 0x28, 0x03, 0xd0, 0xff, 0x20, 0x6d, 0x30, 0x00, 0x5d, 0x00, 0xe0, 0x38, 0x7a, +0x4a, 0x21, 0x09, 0x5d, 0x80, 0x07, 0x80, 0x0f, 0x89, 0x07, 0x0d, 0xd5, 0x00, 0x28, 0x0b, 0xd1, +0xff, 0x34, 0xff, 0x34, 0xa4, 0x1c, 0x20, 0x7f, 0x00, 0x28, 0x04, 0xd1, 0x30, 0x00, 0xff, 0xf7, +0xb0, 0xff, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x25, 0x28, 0x00, 0xf8, 0xbd, 0xf1, 0xb5, 0x82, 0xb0, +0x02, 0x98, 0x0b, 0xf0, 0x0e, 0xe9, 0x05, 0x00, 0x02, 0x98, 0x0b, 0xf0, 0x16, 0xe9, 0x04, 0x00, +0x28, 0x00, 0x48, 0x30, 0x01, 0x90, 0x02, 0x98, 0x0b, 0xf0, 0x42, 0xea, 0x84, 0x21, 0x4f, 0x5d, +0x3e, 0x4e, 0x00, 0x20, 0x01, 0x2f, 0x10, 0xd9, 0x01, 0x22, 0x0c, 0xe0, 0x0a, 0x21, 0x0a, 0x23, +0x51, 0x43, 0x43, 0x43, 0x89, 0x19, 0x9b, 0x19, 0x09, 0x89, 0x1b, 0x89, 0x99, 0x42, 0x01, 0xd2, +0x10, 0x06, 0x00, 0x0e, 0x52, 0x1c, 0x97, 0x42, 0xf0, 0xd8, 0x0a, 0x23, 0x58, 0x43, 0x0b, 0x23, +0x81, 0x19, 0x49, 0x78, 0x61, 0x72, 0x02, 0x9a, 0x9b, 0x01, 0xd7, 0x18, 0x3a, 0x69, 0x60, 0x35, +0x11, 0x73, 0x21, 0x7a, 0x32, 0x5c, 0x89, 0x08, 0x92, 0x07, 0x89, 0x00, 0x92, 0x0f, 0x11, 0x43, +0x21, 0x72, 0x30, 0x5c, 0xf3, 0x22, 0x00, 0x07, 0x80, 0x0f, 0x11, 0x40, 0x80, 0x00, 0x01, 0x43, +0xcf, 0x20, 0x01, 0x40, 0x21, 0x72, 0xe8, 0x79, 0x80, 0x08, 0x80, 0x00, 0xe8, 0x71, 0x01, 0x98, +0x80, 0x78, 0x80, 0x07, 0x1f, 0xd5, 0x0b, 0xf0, 0x00, 0xea, 0x0d, 0x28, 0x01, 0xd9, 0x0d, 0x20, +0x01, 0xe0, 0x0b, 0xf0, 0xfa, 0xe9, 0x01, 0x06, 0x20, 0x7a, 0x09, 0x16, 0x80, 0x07, 0x06, 0xd1, +0x38, 0x69, 0x00, 0x7b, 0x05, 0x28, 0x02, 0xd3, 0x0f, 0xe4, 0x47, 0xd8, 0x01, 0x00, 0x00, 0x00, +0xe8, 0x28, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xfc, 0xcb, 0xa3, 0x5f, 0x09, 0x1f, 0x88, 0x42, +0x04, 0xdd, 0xe8, 0x79, 0x80, 0x08, 0x80, 0x00, 0x40, 0x1c, 0xe8, 0x71, 0x38, 0x69, 0x21, 0x00, +0x02, 0x7b, 0x02, 0x98, 0x08, 0x31, 0x04, 0xf0, 0x6f, 0xfb, 0x39, 0x69, 0x20, 0x7a, 0x48, 0x73, +0x39, 0x69, 0x80, 0x06, 0x80, 0x0e, 0x48, 0x73, 0xfe, 0xbd, 0xf0, 0xb5, 0x04, 0x00, 0x85, 0xb0, +0x0b, 0xf0, 0x98, 0xe8, 0x02, 0x90, 0x20, 0x00, 0x0b, 0xf0, 0xa0, 0xe8, 0x0b, 0x21, 0x89, 0x01, +0x61, 0x18, 0x04, 0x91, 0x09, 0x69, 0x0c, 0x22, 0x8a, 0x56, 0x00, 0x25, 0x11, 0x1d, 0x01, 0x91, +0x2e, 0x00, 0x11, 0x1f, 0x2c, 0x00, 0xae, 0x46, 0xac, 0x46, 0x03, 0xe0, 0x40, 0x42, 0x0f, 0x00, +0x54, 0x35, 0x01, 0xc0, 0x00, 0x91, 0xff, 0x49, 0x89, 0x7b, 0x03, 0x91, 0x30, 0xe0, 0x0a, 0x21, +0xfc, 0x4b, 0x61, 0x43, 0x80, 0x3b, 0xcb, 0x18, 0x59, 0x78, 0xd7, 0x1e, 0xb9, 0x42, 0x10, 0xdb, +0xd7, 0x1d, 0xb9, 0x42, 0x0d, 0xdc, 0x91, 0x42, 0x02, 0xd0, 0xdf, 0x79, 0xbf, 0x07, 0x05, 0xd1, +0x01, 0x9f, 0xb9, 0x42, 0x03, 0xd0, 0xdf, 0x79, 0x7f, 0x07, 0x00, 0xd5, 0x01, 0x25, 0x1f, 0x89, +0xbe, 0x19, 0xd7, 0x1f, 0xb9, 0x42, 0x11, 0xdb, 0xd7, 0x1c, 0xb9, 0x42, 0x0e, 0xdc, 0x91, 0x42, +0x02, 0xd0, 0xdf, 0x79, 0xbf, 0x07, 0x05, 0xd1, 0x00, 0x9f, 0xb9, 0x42, 0x04, 0xd0, 0xd9, 0x79, +0x49, 0x07, 0x01, 0xd5, 0x01, 0x21, 0x8e, 0x46, 0x19, 0x89, 0x8c, 0x44, 0x03, 0x99, 0x64, 0x1c, +0xa1, 0x42, 0xcc, 0xdc, 0x01, 0x7a, 0x8a, 0x06, 0x92, 0x0f, 0x11, 0xd1, 0xcf, 0x22, 0x75, 0x45, +0x06, 0xd1, 0x11, 0x40, 0x01, 0x22, 0x66, 0x45, 0x00, 0xd3, 0x03, 0x22, 0x12, 0x01, 0x05, 0xe0, +0x00, 0x2d, 0x02, 0xd1, 0x11, 0x40, 0x10, 0x31, 0x01, 0xe0, 0x30, 0x22, 0x11, 0x43, 0x01, 0x72, +0x02, 0x9a, 0x01, 0x7a, 0xff, 0x32, 0xff, 0x32, 0x92, 0x1c, 0x13, 0x7f, 0x89, 0x06, 0x1d, 0x22, +0x89, 0x0f, 0x52, 0x01, 0x00, 0x2b, 0x12, 0xd0, 0x01, 0x29, 0x02, 0xd1, 0x00, 0x2d, 0x0e, 0xd0, +0x04, 0xe0, 0x03, 0x29, 0x0b, 0xd1, 0x71, 0x46, 0x00, 0x29, 0x08, 0xd0, 0x02, 0x99, 0xfb, 0x23, +0x89, 0x18, 0x0a, 0x79, 0x92, 0x08, 0x92, 0x00, 0x92, 0x1c, 0x1a, 0x40, 0x06, 0xe0, 0x02, 0x99, +0x04, 0x23, 0x89, 0x18, 0x0a, 0x79, 0x92, 0x08, 0x92, 0x00, 0x1a, 0x43, 0x0a, 0x71, 0x04, 0x99, +0x00, 0x7a, 0x09, 0x69, 0x48, 0x73, 0x04, 0x99, 0x80, 0x06, 0x09, 0x69, 0x80, 0x0e, 0x48, 0x73, +0x05, 0xb0, 0xf0, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0xff, 0xf7, 0x8a, 0xfe, 0x00, 0x28, 0x02, 0xd0, +0x20, 0x00, 0xff, 0xf7, 0xe5, 0xfe, 0x20, 0x00, 0xff, 0xf7, 0xb8, 0xfe, 0x00, 0x28, 0x02, 0xd0, +0x20, 0x00, 0xff, 0xf7, 0x52, 0xff, 0x10, 0xbd, 0xf3, 0xb5, 0x83, 0xb0, 0x0e, 0x00, 0x03, 0x98, +0x0a, 0xf0, 0xe8, 0xef, 0xfa, 0x20, 0x80, 0x5d, 0x64, 0x23, 0x58, 0x43, 0xff, 0x21, 0x0a, 0xf0, +0xea, 0xef, 0x31, 0x7c, 0x0a, 0x23, 0x59, 0x43, 0xae, 0x4c, 0x40, 0x18, 0x21, 0x7b, 0x27, 0x00, +0x59, 0x43, 0x80, 0x3f, 0xc9, 0x19, 0x08, 0x81, 0x03, 0x98, 0xff, 0xf7, 0x97, 0xfe, 0x00, 0x28, +0x69, 0xd0, 0x00, 0x25, 0x64, 0xe0, 0x13, 0x20, 0x68, 0x43, 0x80, 0x19, 0x12, 0x30, 0x0b, 0xf0, +0x0e, 0xe9, 0x01, 0x00, 0x15, 0x31, 0x02, 0x91, 0x41, 0x78, 0x02, 0x78, 0x08, 0x02, 0x10, 0x43, +0x0c, 0x38, 0x02, 0x06, 0x12, 0x0e, 0x02, 0x99, 0x03, 0x20, 0x01, 0x92, 0x0b, 0xf0, 0x02, 0xe9, +0x00, 0x28, 0x07, 0xd0, 0x21, 0x7b, 0x0a, 0x23, 0x59, 0x43, 0x80, 0x78, 0xc9, 0x19, 0x49, 0x78, +0x88, 0x42, 0x44, 0xd1, 0x01, 0x9a, 0x02, 0x99, 0x2d, 0x20, 0x0b, 0xf0, 0xf4, 0xe8, 0x00, 0x28, +0x02, 0xd0, 0xc1, 0x78, 0x49, 0x06, 0x09, 0xd5, 0x21, 0x7b, 0x0a, 0x23, 0x59, 0x43, 0x01, 0x23, +0xc9, 0x19, 0xca, 0x79, 0x1a, 0x43, 0x00, 0x28, 0xca, 0x71, 0x0a, 0xd0, 0x80, 0x78, 0x80, 0x07, +0x07, 0xd5, 0x20, 0x7b, 0x0a, 0x23, 0x58, 0x43, 0x02, 0x22, 0xc0, 0x19, 0xc1, 0x79, 0x11, 0x43, +0xc1, 0x71, 0x01, 0x9a, 0x02, 0x99, 0x3d, 0x20, 0x0b, 0xf0, 0xd4, 0xe8, 0x00, 0x28, 0x1e, 0xd0, +0xc1, 0x78, 0x8a, 0x07, 0x1b, 0xd0, 0x89, 0x07, 0x89, 0x0f, 0x01, 0x29, 0x81, 0x78, 0x01, 0xd1, +0x09, 0x1d, 0x00, 0xe0, 0x09, 0x1f, 0xa2, 0x7b, 0x00, 0x20, 0x0e, 0xe0, 0x0a, 0x23, 0x43, 0x43, +0xdb, 0x19, 0x5b, 0x78, 0x8b, 0x42, 0x07, 0xd1, 0x0a, 0x23, 0x58, 0x43, 0x04, 0x22, 0xc0, 0x19, +0xc1, 0x79, 0x11, 0x43, 0xc1, 0x71, 0x02, 0xe0, 0x40, 0x1c, 0x82, 0x42, 0xee, 0xd8, 0x6d, 0x1c, +0x30, 0x7c, 0xa8, 0x42, 0x97, 0xd8, 0x30, 0x00, 0x06, 0xf0, 0xbe, 0xff, 0x20, 0x7b, 0x40, 0x1c, +0x00, 0x06, 0x00, 0x0e, 0x20, 0x73, 0xa1, 0x7b, 0x88, 0x42, 0x03, 0x98, 0x02, 0xd2, 0x00, 0xf0, +0x93, 0xfa, 0x55, 0xe7, 0xff, 0xf7, 0x56, 0xff, 0x03, 0x98, 0xff, 0xf7, 0x04, 0xfa, 0x01, 0x28, +0x01, 0xd0, 0x01, 0x21, 0x00, 0xe0, 0x00, 0x21, 0x62, 0x7b, 0x03, 0x98, 0xfe, 0xf7, 0x06, 0xff, +0x46, 0xe7, 0x70, 0xb5, 0x63, 0x4e, 0x80, 0x3e, 0x34, 0x00, 0x80, 0x34, 0x2c, 0xe0, 0xa5, 0x7b, +0x00, 0x22, 0x06, 0xe0, 0x0a, 0x23, 0x53, 0x43, 0x9b, 0x19, 0x5b, 0x78, 0x83, 0x42, 0x02, 0xd0, +0x52, 0x1c, 0x95, 0x42, 0xf6, 0xd8, 0x95, 0x42, 0x07, 0xd9, 0x0a, 0x23, 0x5a, 0x43, 0x92, 0x19, +0x93, 0x78, 0x5b, 0x08, 0x5b, 0x00, 0x93, 0x70, 0x15, 0xe0, 0x0a, 0x22, 0x6a, 0x43, 0x0a, 0x23, +0x92, 0x19, 0x50, 0x70, 0xa5, 0x7b, 0x6e, 0x22, 0x6b, 0x43, 0x00, 0x25, 0x9b, 0x19, 0x5a, 0x71, +0x9d, 0x71, 0xa5, 0x7b, 0x0a, 0x23, 0x6b, 0x43, 0x9b, 0x19, 0xda, 0x70, 0x00, 0x22, 0x1a, 0x71, +0xa2, 0x7b, 0x52, 0x1c, 0xa2, 0x73, 0x40, 0x1c, 0x88, 0x42, 0xd0, 0xd9, 0x70, 0xbd, 0xf3, 0xb5, +0x85, 0xb0, 0x05, 0x98, 0x0a, 0xf0, 0x0e, 0xef, 0x07, 0x00, 0x05, 0x98, 0x0a, 0xf0, 0x16, 0xef, +0x8f, 0x21, 0x89, 0x00, 0x04, 0x90, 0x78, 0x18, 0x03, 0x90, 0x00, 0x20, 0x02, 0x90, 0x41, 0x48, +0x90, 0x21, 0x80, 0x38, 0x0a, 0xf0, 0xde, 0xee, 0x05, 0x98, 0xff, 0xf7, 0x89, 0xfd, 0x3d, 0x4e, +0x00, 0x28, 0x26, 0xd0, 0x00, 0x24, 0x3d, 0x00, 0x80, 0x35, 0x11, 0xe0, 0xe0, 0x00, 0x00, 0x1b, +0xc1, 0x19, 0xb0, 0x7b, 0x0a, 0x23, 0x37, 0x4a, 0x58, 0x43, 0x80, 0x3a, 0xff, 0x31, 0x80, 0x18, +0x6d, 0x31, 0x07, 0x22, 0x0a, 0xf0, 0xd2, 0xee, 0xb0, 0x7b, 0x40, 0x1c, 0x64, 0x1c, 0xb0, 0x73, +0x28, 0x79, 0xa0, 0x42, 0xea, 0xd8, 0x28, 0x79, 0x01, 0x28, 0x03, 0xd1, 0x05, 0x98, 0xff, 0xf7, +0xc7, 0xfd, 0x06, 0xe0, 0x05, 0x99, 0x0b, 0x22, 0x00, 0x20, 0x92, 0x01, 0x89, 0x18, 0x09, 0x69, +0x08, 0x73, 0x05, 0x98, 0xff, 0xf7, 0x92, 0xfd, 0x00, 0x28, 0x49, 0xd0, 0x01, 0x25, 0x0b, 0xf0, +0x06, 0xe8, 0x04, 0x06, 0x24, 0x16, 0x05, 0x98, 0x01, 0x94, 0xff, 0xf7, 0x51, 0xfd, 0x00, 0x28, +0x1b, 0xd0, 0x00, 0x20, 0x84, 0x21, 0xc9, 0x5d, 0x8c, 0x46, 0x13, 0xe0, 0xc1, 0x00, 0x09, 0x1a, +0xca, 0x19, 0xff, 0x21, 0x6e, 0x31, 0x52, 0x56, 0xdb, 0xa6, 0x06, 0xe7, 0x01, 0x00, 0x00, 0x00, +0xe4, 0x2c, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x7b, 0x9d, 0xad, 0x0d, 0x11, 0x00, 0x0b, 0x39, +0xa1, 0x42, 0x00, 0xdb, 0x21, 0x00, 0x0c, 0x06, 0x24, 0x16, 0x0b, 0x32, 0xaa, 0x42, 0x00, 0xdc, +0x2a, 0x00, 0x15, 0x06, 0x2d, 0x16, 0x40, 0x1c, 0x84, 0x45, 0xe9, 0xd8, 0x14, 0xe0, 0x04, 0x9b, +0x04, 0x99, 0x1b, 0x7a, 0x09, 0x20, 0x08, 0x56, 0x0b, 0x21, 0x9b, 0x06, 0x0a, 0x00, 0x9b, 0x0f, +0x01, 0x2b, 0x00, 0xd0, 0x07, 0x22, 0x03, 0x2b, 0x00, 0xd0, 0x07, 0x21, 0x82, 0x18, 0x15, 0x06, +0x40, 0x1a, 0x2d, 0x16, 0x04, 0x06, 0x24, 0x16, 0x01, 0x99, 0x8d, 0x42, 0x00, 0xdc, 0x29, 0x00, +0x01, 0x20, 0x01, 0x2c, 0x00, 0xdb, 0x20, 0x00, 0x09, 0x06, 0x00, 0x06, 0x09, 0x0e, 0x00, 0x0e, +0xff, 0xf7, 0x39, 0xff, 0xb0, 0x7b, 0x01, 0xe0, 0xd4, 0x35, 0x01, 0xc0, 0x01, 0x28, 0x02, 0xd8, +0x02, 0x98, 0x07, 0xb0, 0xf0, 0xbd, 0x06, 0x98, 0x70, 0x73, 0x03, 0x98, 0x02, 0x21, 0xe0, 0x30, +0x01, 0x73, 0x05, 0x98, 0x00, 0xf0, 0xaa, 0xf9, 0x01, 0x20, 0x02, 0x90, 0xf1, 0xe7, 0xf8, 0xb5, +0x00, 0x24, 0x06, 0x00, 0xc0, 0x68, 0xc0, 0x04, 0x28, 0xd5, 0x30, 0x00, 0x0a, 0xf0, 0x70, 0xee, +0x07, 0x00, 0x0c, 0x37, 0x30, 0x00, 0x0a, 0xf0, 0x60, 0xee, 0x05, 0x00, 0x60, 0x37, 0xb8, 0x8a, +0x00, 0x28, 0x00, 0xd1, 0x01, 0x24, 0x0a, 0xf0, 0x20, 0xee, 0x11, 0x21, 0x49, 0x01, 0x6a, 0x18, +0x00, 0x90, 0x91, 0x88, 0x01, 0x20, 0x01, 0x29, 0x00, 0xd3, 0x08, 0x00, 0x01, 0x2c, 0xb8, 0x82, +0x09, 0xd1, 0xd0, 0x88, 0xc0, 0x07, 0x06, 0xd0, 0xff, 0x20, 0x51, 0x30, 0x81, 0x5b, 0x01, 0x22, +0x30, 0x00, 0xfe, 0xf7, 0x53, 0xfd, 0x00, 0x98, 0x0a, 0xf0, 0x1a, 0xee, 0xf8, 0xbd, 0xf8, 0xb5, +0x06, 0x00, 0x0f, 0x00, 0x0a, 0xf0, 0x38, 0xee, 0x05, 0x00, 0x30, 0x00, 0x0a, 0xf0, 0x40, 0xee, +0x04, 0x00, 0x0c, 0x34, 0x30, 0x00, 0x0a, 0xf0, 0xc7, 0xfd, 0x00, 0x28, 0x0b, 0xd0, 0x60, 0x34, +0xa0, 0x8a, 0x00, 0x28, 0x07, 0xd0, 0x11, 0x20, 0x40, 0x01, 0x28, 0x18, 0xc0, 0x88, 0x38, 0x42, +0x01, 0xd0, 0x01, 0x20, 0xf8, 0xbd, 0x00, 0x20, 0xf8, 0xbd, 0xf8, 0xb5, 0x06, 0x00, 0x0a, 0xf0, +0x28, 0xee, 0x04, 0x00, 0x30, 0x00, 0x0a, 0xf0, 0x18, 0xee, 0x05, 0x00, 0xf0, 0x68, 0x0c, 0x34, +0xc0, 0x04, 0x25, 0xd5, 0x0a, 0xf0, 0xd8, 0xed, 0x07, 0x00, 0xa0, 0x6f, 0x00, 0x28, 0x1c, 0xd0, +0x60, 0x34, 0xa0, 0x8a, 0x00, 0x28, 0x18, 0xd0, 0x40, 0x1e, 0x00, 0x04, 0x00, 0x0c, 0xa0, 0x82, +0x13, 0xd1, 0x11, 0x20, 0x40, 0x01, 0x28, 0x18, 0xc0, 0x88, 0xc0, 0x07, 0x0d, 0xd0, 0x30, 0x00, +0x0a, 0xf0, 0x46, 0xef, 0xff, 0x25, 0x51, 0x35, 0xa9, 0x5b, 0x00, 0x28, 0x01, 0xd0, 0x00, 0x22, +0x00, 0xe0, 0x01, 0x22, 0x30, 0x00, 0xfe, 0xf7, 0x01, 0xfd, 0x38, 0x00, 0x0a, 0xf0, 0xc8, 0xed, +0xf8, 0xbd, 0x10, 0xb5, 0x0a, 0xf0, 0xf4, 0xed, 0x04, 0x00, 0x0c, 0x34, 0x0a, 0xf0, 0xac, 0xed, +0x00, 0x21, 0xa1, 0x67, 0x60, 0x34, 0xa1, 0x82, 0x0a, 0xf0, 0xba, 0xed, 0x10, 0xbd, 0x89, 0x78, +0x0a, 0x07, 0x92, 0x0f, 0x02, 0x2a, 0x04, 0xd1, 0x0b, 0x09, 0x04, 0x2b, 0x07, 0xd0, 0x0c, 0x2b, +0x05, 0xd0, 0x01, 0x2a, 0x02, 0xd1, 0x09, 0x09, 0x0a, 0x29, 0x00, 0xd0, 0x5f, 0xe7, 0x70, 0x47, +0x70, 0xb5, 0x04, 0x00, 0x0a, 0xf0, 0xd4, 0xed, 0x20, 0x00, 0x0a, 0xf0, 0xc6, 0xed, 0x11, 0x21, +0x49, 0x01, 0x40, 0x18, 0x80, 0x88, 0x00, 0x28, 0x14, 0xd0, 0x0a, 0xf0, 0x86, 0xed, 0x05, 0x00, +0x20, 0x00, 0x0a, 0xf0, 0x51, 0xfd, 0x00, 0x28, 0x02, 0xd0, 0x20, 0x00, 0xff, 0xf7, 0x95, 0xff, +0x28, 0x00, 0x0a, 0xf0, 0x8e, 0xed, 0xe2, 0x7a, 0xa1, 0x7a, 0x20, 0x00, 0x0a, 0xf0, 0xc0, 0xed, +0x04, 0x00, 0xea, 0xd1, 0x70, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x0a, 0xf0, 0xa6, 0xed, 0x05, 0x00, +0x20, 0x00, 0x0a, 0xf0, 0xf2, 0xee, 0x0d, 0x21, 0x89, 0x01, 0x68, 0x18, 0x01, 0x79, 0x00, 0x29, +0x02, 0xd0, 0x00, 0x69, 0x0a, 0xf0, 0xd8, 0xed, 0x20, 0x00, 0x0a, 0xf0, 0xa2, 0xed, 0x60, 0x30, +0x00, 0x78, 0x03, 0x28, 0x02, 0xd1, 0x20, 0x00, 0x0a, 0xf0, 0xe2, 0xee, 0xe2, 0x7a, 0xa1, 0x7a, +0x20, 0x00, 0x0a, 0xf0, 0x9e, 0xed, 0x04, 0x00, 0xee, 0xd1, 0x03, 0x20, 0x00, 0x02, 0x28, 0x18, +0x00, 0x7c, 0x00, 0x28, 0x05, 0xd0, 0x05, 0x20, 0xc0, 0x01, 0x28, 0x18, 0xc0, 0x68, 0x0a, 0xf0, +0xbc, 0xed, 0x0a, 0xf0, 0xe6, 0xed, 0x04, 0x00, 0x0a, 0xf0, 0xce, 0xee, 0x84, 0x42, 0x1b, 0xd1, +0x5c, 0x48, 0x00, 0x88, 0x00, 0x28, 0x01, 0xd0, 0x0a, 0xf0, 0x96, 0xed, 0x0a, 0xf0, 0xbc, 0xed, +0x0a, 0xf0, 0xc2, 0xed, 0x0a, 0xf0, 0xc4, 0xee, 0x00, 0x20, 0x0a, 0xf0, 0xde, 0xed, 0x01, 0x21, +0x03, 0x20, 0x0a, 0xf0, 0xde, 0xed, 0x54, 0x49, 0x1f, 0x20, 0x08, 0x62, 0x00, 0x21, 0x03, 0x20, +0x0a, 0xf0, 0xae, 0xed, 0x0a, 0xf0, 0xd8, 0xed, 0x70, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x0a, 0xf0, +0x54, 0xed, 0x05, 0x00, 0x0a, 0xf0, 0xbc, 0xed, 0x06, 0x00, 0x0a, 0xf0, 0xa6, 0xee, 0x86, 0x42, +0x21, 0xd1, 0x0a, 0xf0, 0x9a, 0xed, 0x00, 0x21, 0x02, 0x20, 0x0a, 0xf0, 0x9a, 0xed, 0x0a, 0xf0, +0x9c, 0xed, 0x0a, 0xf0, 0xa2, 0xee, 0x01, 0x20, 0x0a, 0xf0, 0xb6, 0xed, 0x0a, 0xf0, 0x2c, 0xee, +0x00, 0x21, 0x02, 0x20, 0x0a, 0xf0, 0xb4, 0xed, 0x0a, 0xf0, 0xa6, 0xed, 0x01, 0x21, 0x02, 0x20, +0x0a, 0xf0, 0x86, 0xed, 0x0a, 0xf0, 0xb0, 0xed, 0x3a, 0x48, 0x00, 0x88, 0x00, 0x28, 0x02, 0xd0, +0x20, 0x00, 0x0a, 0xf0, 0x8e, 0xee, 0x20, 0x00, 0x0a, 0xf0, 0x8e, 0xee, 0x20, 0x00, 0xfe, 0xf7, +0x1d, 0xff, 0x0b, 0x20, 0x80, 0x01, 0x20, 0x18, 0x01, 0x69, 0x00, 0x22, 0x49, 0x7b, 0x00, 0x91, +0x00, 0x69, 0x01, 0x7b, 0x00, 0x98, 0x03, 0xf0, 0xf6, 0xff, 0x04, 0xf0, 0x46, 0xf8, 0x0d, 0x20, +0x80, 0x01, 0x28, 0x18, 0x00, 0x79, 0x00, 0x28, 0x09, 0xd0, 0x35, 0x20, 0x00, 0x22, 0x00, 0x01, +0x2b, 0x18, 0x00, 0x92, 0x29, 0x4a, 0x2a, 0x48, 0x21, 0x00, 0x0a, 0xf0, 0x72, 0xee, 0xa3, 0x20, +0x28, 0x4e, 0x80, 0x00, 0x2f, 0x18, 0x20, 0x00, 0x0a, 0xf0, 0x0a, 0xed, 0x05, 0x00, 0x86, 0x20, +0x00, 0x5b, 0x03, 0x28, 0x07, 0xd1, 0x00, 0x22, 0x00, 0x92, 0x23, 0x48, 0x3b, 0x00, 0x32, 0x00, +0x21, 0x00, 0x0a, 0xf0, 0x5e, 0xee, 0x60, 0x35, 0x28, 0x78, 0x03, 0x28, 0x02, 0xd1, 0x20, 0x00, +0x0a, 0xf0, 0x5a, 0xee, 0xe2, 0x7a, 0xa1, 0x7a, 0x20, 0x00, 0x0a, 0xf0, 0xfa, 0xec, 0x04, 0x00, +0xe1, 0xd1, 0xf8, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0x00, 0x24, 0xfe, 0xf7, 0xab, 0xfe, +0x00, 0x28, 0x05, 0xd0, 0x31, 0x00, 0x28, 0x00, 0xff, 0xf7, 0xc3, 0xfd, 0x04, 0x00, 0x0b, 0xd1, +0x28, 0x00, 0xfe, 0xf7, 0x82, 0xff, 0x01, 0x28, 0x01, 0xd0, 0x01, 0x21, 0x00, 0xe0, 0x00, 0x21, +0x32, 0x00, 0x28, 0x00, 0xfe, 0xf7, 0x84, 0xfc, 0x20, 0x00, 0x70, 0xbd, 0x0b, 0x49, 0x10, 0xb5, +0x09, 0x7b, 0x0a, 0x23, 0x09, 0x4a, 0x59, 0x43, 0x80, 0x3a, 0x89, 0x18, 0x08, 0x4a, 0x06, 0xf0, +0x79, 0xff, 0x10, 0xbd, 0x04, 0x36, 0x01, 0xc0, 0x09, 0x43, 0x5c, 0x22, 0x01, 0x00, 0x00, 0x00, +0xe0, 0x30, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xbd, 0x0c, 0xf2, 0x4b, 0xc0, 0xa0, 0x00, 0x80, +0x00, 0x87, 0x93, 0x03, 0x79, 0x10, 0x01, 0x00, 0x20, 0xa1, 0x07, 0x00, 0xcf, 0xaf, 0x00, 0xc0, +0xd4, 0x35, 0x01, 0xc0, 0xbd, 0x9f, 0x00, 0xc0, 0x70, 0x47, 0xf8, 0xb5, 0x00, 0x22, 0x06, 0x00, +0x0f, 0x00, 0xfe, 0x48, 0x11, 0x00, 0x0a, 0xf0, 0x16, 0xee, 0x04, 0x00, 0x16, 0xd0, 0x20, 0x89, +0x08, 0x21, 0x05, 0x19, 0x28, 0x00, 0x0a, 0xf0, 0x7a, 0xec, 0x29, 0x00, 0x30, 0x00, 0x0a, 0xf0, +0x0e, 0xee, 0x29, 0x1d, 0x38, 0x00, 0x0a, 0xf0, 0x0a, 0xee, 0xf5, 0x48, 0x22, 0x00, 0x80, 0x6a, +0x04, 0x21, 0x00, 0x23, 0x0a, 0xf0, 0x06, 0xee, 0x00, 0x28, 0x03, 0xd0, 0x20, 0x00, 0x0a, 0xf0, +0x06, 0xee, 0x01, 0x20, 0xf8, 0xbd, 0xee, 0x48, 0x10, 0xb5, 0xc0, 0x6a, 0x0a, 0xf0, 0x02, 0xee, +0x10, 0xbd, 0xeb, 0x48, 0x41, 0x78, 0x00, 0x29, 0x02, 0xd0, 0x00, 0x21, 0x41, 0x70, 0xf2, 0xe7, +0x70, 0x47, 0xb1, 0x28, 0x20, 0xd0, 0x10, 0xdc, 0x6f, 0x28, 0x1d, 0xd0, 0x06, 0xdc, 0x2b, 0x28, +0x1a, 0xd0, 0x2c, 0x28, 0x18, 0xd0, 0x40, 0x28, 0x18, 0xd1, 0x15, 0xe0, 0xa9, 0x28, 0x13, 0xd0, +0xaa, 0x28, 0x11, 0xd0, 0xaf, 0x28, 0x11, 0xd1, 0x0e, 0xe0, 0xcf, 0x28, 0x0c, 0xd0, 0x06, 0xdc, +0xb2, 0x28, 0x09, 0xd0, 0xb5, 0x28, 0x07, 0xd0, 0xce, 0x28, 0x07, 0xd1, 0x04, 0xe0, 0xd0, 0x28, +0x02, 0xd0, 0xff, 0x38, 0x21, 0x38, 0x01, 0xd1, 0x01, 0x20, 0x70, 0x47, 0x00, 0x20, 0x70, 0x47, +0x10, 0xb5, 0x40, 0x69, 0x0a, 0xf0, 0xd2, 0xed, 0x00, 0x20, 0x10, 0xbd, 0xf8, 0xb5, 0x07, 0x00, +0x0d, 0x00, 0x00, 0xd1, 0xcf, 0x4d, 0xce, 0x4e, 0x30, 0x78, 0x00, 0x28, 0x3e, 0xd0, 0xf4, 0x68, +0x20, 0x20, 0x20, 0x81, 0x20, 0x34, 0x20, 0x79, 0x03, 0x21, 0x49, 0x04, 0x40, 0x18, 0x0a, 0xf0, +0x06, 0xec, 0xc9, 0x48, 0x0a, 0xf0, 0x02, 0xec, 0x60, 0x78, 0x22, 0x78, 0x00, 0x02, 0x10, 0x43, +0x21, 0x00, 0x40, 0x04, 0x08, 0x31, 0x40, 0x0c, 0xff, 0xf7, 0xb3, 0xff, 0x00, 0x28, 0x01, 0xd0, +0xff, 0xf7, 0xa7, 0xff, 0x0a, 0xf0, 0xae, 0xed, 0x00, 0x28, 0x11, 0xd0, 0x60, 0x78, 0x21, 0x78, +0x00, 0x02, 0x08, 0x43, 0xbd, 0x49, 0x40, 0x18, 0x05, 0xd0, 0x01, 0x28, 0x03, 0xd0, 0x02, 0x28, +0x01, 0xd0, 0x1b, 0x28, 0x04, 0xd1, 0x02, 0x20, 0x0a, 0xf0, 0xa0, 0xed, 0x0a, 0xf0, 0xa2, 0xed, +0xf1, 0x68, 0x01, 0x22, 0x48, 0x7b, 0xb6, 0x4b, 0x10, 0x43, 0x48, 0x73, 0x8d, 0x61, 0x1c, 0x68, +0x00, 0x22, 0x38, 0x69, 0x03, 0x23, 0xa0, 0x47, 0x00, 0x20, 0x30, 0x70, 0xf8, 0xbd, 0x00, 0x20, +0x70, 0x47, 0x42, 0x78, 0x01, 0x78, 0x12, 0x02, 0x0a, 0x43, 0xa9, 0x49, 0x01, 0x2a, 0x04, 0xd1, +0xc2, 0x78, 0x83, 0x78, 0x10, 0x02, 0x18, 0x43, 0x48, 0x81, 0x48, 0x89, 0x70, 0x47, 0xa9, 0x48, +0x10, 0xb5, 0x00, 0x68, 0x0a, 0xf0, 0x82, 0xed, 0xa7, 0x48, 0x00, 0x68, 0x0a, 0xf0, 0x7e, 0xed, +0xa6, 0x48, 0x00, 0x68, 0x0a, 0xf0, 0x7a, 0xed, 0x10, 0xbd, 0x10, 0xb5, 0x0a, 0xf0, 0x7a, 0xed, +0x0a, 0xf0, 0x7c, 0xed, 0x10, 0xbd, 0x10, 0xb5, 0x01, 0x24, 0x0a, 0xf0, 0x00, 0xec, 0xa0, 0x48, +0x01, 0x78, 0x01, 0x29, 0x05, 0xd1, 0x00, 0x21, 0x01, 0x70, 0x02, 0x20, 0x0a, 0xf0, 0x72, 0xed, +0x00, 0x24, 0x20, 0x00, 0x10, 0xbd, 0xfe, 0xb5, 0x06, 0x00, 0x01, 0x20, 0x00, 0x90, 0x0a, 0xf0, +0x6e, 0xed, 0x00, 0x28, 0x00, 0xd0, 0x02, 0x20, 0x0a, 0xf0, 0x50, 0xed, 0x04, 0x00, 0x02, 0x20, +0x0a, 0xf0, 0x58, 0xec, 0x05, 0x00, 0x04, 0xd1, 0x02, 0x21, 0x08, 0x00, 0x0a, 0xf0, 0x66, 0xec, +0x05, 0x00, 0x0a, 0xf0, 0x60, 0xed, 0x8f, 0x4f, 0x00, 0x28, 0x0e, 0xd0, 0x38, 0x88, 0xc0, 0x06, +0x02, 0xd4, 0xe0, 0x68, 0xc0, 0x04, 0x08, 0xd5, 0x70, 0x79, 0x31, 0x79, 0x00, 0x02, 0x08, 0x43, +0x05, 0x28, 0x11, 0xd9, 0x88, 0x49, 0x88, 0x42, 0x0e, 0xd2, 0x0a, 0xf0, 0x50, 0xed, 0x00, 0x28, +0x02, 0xd0, 0xe0, 0x68, 0xc0, 0x04, 0x07, 0xd5, 0x0a, 0xf0, 0x40, 0xed, 0x00, 0x28, 0x46, 0xd0, +0x38, 0x88, 0x80, 0x05, 0x80, 0x0f, 0x42, 0xd0, 0x0a, 0xf0, 0x58, 0xeb, 0x01, 0x90, 0x70, 0x79, +0x31, 0x79, 0x00, 0x02, 0x08, 0x43, 0x01, 0xd0, 0x7c, 0x49, 0x08, 0x60, 0xf0, 0x79, 0xb1, 0x79, +0x00, 0x02, 0x08, 0x43, 0x01, 0xd0, 0x7a, 0x49, 0x08, 0x80, 0xf0, 0x78, 0xb1, 0x78, 0x00, 0x02, +0x08, 0x43, 0x01, 0xd0, 0x77, 0x49, 0x08, 0x80, 0x71, 0x4e, 0x30, 0x78, 0x00, 0x28, 0x23, 0xd1, +0x0a, 0xf0, 0x20, 0xed, 0x00, 0x28, 0x0c, 0xd0, 0xe0, 0x68, 0xc0, 0x04, 0x09, 0xd5, 0x38, 0x88, +0xc0, 0x06, 0x06, 0xd5, 0x00, 0x2d, 0x11, 0xd0, 0xff, 0x35, 0x41, 0x35, 0x28, 0x7a, 0x07, 0x28, +0x0c, 0xd1, 0x0a, 0xf0, 0x0c, 0xed, 0x00, 0x28, 0x0e, 0xd0, 0x38, 0x88, 0x80, 0x05, 0x80, 0x0f, +0x0a, 0xd0, 0xff, 0x34, 0x41, 0x34, 0x20, 0x7a, 0x07, 0x28, 0x05, 0xd1, 0x01, 0x20, 0x30, 0x70, +0x0a, 0xf0, 0xf8, 0xec, 0x00, 0x20, 0x00, 0x90, 0x01, 0x98, 0x0a, 0xf0, 0x2c, 0xeb, 0x00, 0x98, +0xfe, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x01, 0x20, 0x00, 0x90, 0x48, 0x78, 0x0e, 0x00, 0x09, 0x78, +0x00, 0x02, 0x08, 0x43, 0xb1, 0x21, 0x89, 0x00, 0x00, 0x25, 0x67, 0x18, 0x00, 0x28, 0x0f, 0xd0, +0x01, 0x28, 0x0b, 0xd1, 0x20, 0x7a, 0x00, 0x28, 0x37, 0xd0, 0x01, 0x28, 0x35, 0xd0, 0x21, 0x00, +0xff, 0x31, 0x41, 0x31, 0x02, 0x28, 0x09, 0xd0, 0x03, 0x28, 0x16, 0xd0, 0x01, 0x25, 0x48, 0xe0, +0x06, 0x22, 0x39, 0x00, 0xb0, 0x1c, 0x0a, 0xf0, 0x16, 0xeb, 0x42, 0xe0, 0x08, 0x7a, 0x00, 0x28, +0xf4, 0xd1, 0x20, 0x00, 0x0a, 0xf0, 0x22, 0xeb, 0xff, 0x30, 0x06, 0x22, 0xb1, 0x1c, 0xf3, 0x30, +0x0a, 0xf0, 0x08, 0xeb, 0x00, 0x20, 0x00, 0x90, 0x1a, 0xe0, 0x60, 0x7a, 0x02, 0x28, 0x01, 0xd0, +0x01, 0x28, 0x12, 0xd1, 0x08, 0x7a, 0x00, 0x28, 0xe0, 0xd1, 0x20, 0x00, 0x0a, 0xf0, 0x0e, 0xeb, +0xff, 0x30, 0x06, 0x22, 0xb1, 0x1c, 0xf3, 0x30, 0x0a, 0xf0, 0xf4, 0xea, 0x20, 0x00, 0x06, 0x22, +0xb1, 0x1c, 0x7e, 0x30, 0x0a, 0xf0, 0xee, 0xea, 0x02, 0xe0, 0xe0, 0x68, 0xc0, 0x04, 0xcd, 0xd4, +0x06, 0x22, 0xb1, 0x1c, 0x38, 0x00, 0x0a, 0xf0, 0xe6, 0xea, 0x08, 0xf0, 0x77, 0xf8, 0x00, 0x28, +0x05, 0xd1, 0x35, 0x48, 0x06, 0x22, 0x00, 0x68, 0xb1, 0x1c, 0x0a, 0xf0, 0xdc, 0xea, 0x0b, 0x20, +0x80, 0x01, 0x20, 0x18, 0x82, 0x7a, 0x00, 0x9b, 0x39, 0x00, 0x02, 0x20, 0x0a, 0xf0, 0x9a, 0xec, +0x05, 0x00, 0x28, 0x00, 0xf8, 0xbd, 0xf0, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0x40, 0x78, 0x29, 0x78, +0x00, 0x02, 0xd0, 0x24, 0x08, 0x43, 0x01, 0x28, 0x85, 0xb0, 0x65, 0xd1, 0x28, 0x1d, 0x00, 0x27, +0x04, 0x90, 0x1c, 0xe0, 0x04, 0x99, 0x04, 0x22, 0x03, 0xa8, 0x0a, 0xf0, 0xbc, 0xea, 0x04, 0x98, +0x6b, 0x46, 0x00, 0x1d, 0x01, 0x78, 0x19, 0x72, 0x41, 0x78, 0x59, 0x72, 0x80, 0x1c, 0x02, 0x99, +0x04, 0x90, 0x22, 0x00, 0x60, 0x1c, 0x09, 0x04, 0x04, 0x04, 0x09, 0x0c, 0x03, 0x98, 0x24, 0x0c, +0x02, 0x91, 0x0a, 0xf0, 0x74, 0xec, 0xe0, 0x1f, 0x23, 0x3f, 0x65, 0xa8, 0x01, 0x00, 0x00, 0x00, +0xdc, 0x34, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xc8, 0xf2, 0x09, 0xf3, 0xf9, 0x38, 0x06, 0xd0, +0x7f, 0x1c, 0xe8, 0x78, 0xa9, 0x78, 0x00, 0x02, 0x08, 0x43, 0xb8, 0x42, 0xdc, 0xdc, 0xe9, 0x78, +0xaa, 0x78, 0x30, 0x88, 0x0f, 0x02, 0x17, 0x43, 0xb8, 0x42, 0x2d, 0xd9, 0x29, 0xe0, 0x00, 0x00, +0x10, 0x01, 0x00, 0x04, 0x54, 0xf0, 0x00, 0xc0, 0xb5, 0x31, 0x00, 0xc0, 0x08, 0x08, 0x04, 0x00, +0x32, 0x7f, 0xff, 0xff, 0x58, 0xee, 0x00, 0xc0, 0xb8, 0x76, 0x02, 0x00, 0x68, 0xf4, 0x00, 0xc0, +0x08, 0x77, 0x02, 0x00, 0x60, 0xf4, 0x00, 0xc0, 0x04, 0x36, 0x01, 0xc0, 0xfd, 0xff, 0x00, 0x00, +0x1c, 0xf0, 0x00, 0xc0, 0x30, 0xf0, 0x00, 0xc0, 0x7a, 0xef, 0x00, 0xc0, 0x50, 0xf4, 0x00, 0xc0, +0x22, 0x00, 0x60, 0x1c, 0x04, 0x04, 0x00, 0x21, 0x24, 0x0c, 0x08, 0x00, 0x0a, 0xf0, 0x38, 0xec, +0x7f, 0x1c, 0x30, 0x88, 0xb8, 0x42, 0xf3, 0xdc, 0xe8, 0x78, 0xa9, 0x78, 0x00, 0x02, 0x08, 0x43, +0x30, 0x28, 0x00, 0xd9, 0x30, 0x20, 0x30, 0x80, 0x05, 0xb0, 0xf0, 0xbd, 0x00, 0x28, 0xfb, 0xd1, +0x30, 0x88, 0xa8, 0x70, 0x00, 0x0a, 0xe8, 0x70, 0x2d, 0x1d, 0x00, 0x27, 0x0d, 0xe0, 0x21, 0x00, +0x68, 0x46, 0x0a, 0xf0, 0x22, 0xec, 0x06, 0x22, 0x28, 0x00, 0x69, 0x46, 0x0a, 0xf0, 0x4c, 0xea, +0x64, 0x1c, 0x24, 0x04, 0xad, 0x1d, 0x24, 0x0c, 0x7f, 0x1c, 0x30, 0x88, 0xb8, 0x42, 0xee, 0xdc, +0xe2, 0xe7, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x02, 0xe0, 0x03, 0x28, 0x00, 0xd9, 0x00, 0x20, +0xfa, 0x49, 0x08, 0x5c, 0x70, 0x47, 0x01, 0x21, 0x06, 0x28, 0x10, 0xd0, 0xe6, 0x28, 0x0e, 0xd0, +0x6b, 0x28, 0x0c, 0xd0, 0x2b, 0x28, 0x0a, 0xd0, 0x2c, 0x28, 0x08, 0xd0, 0x50, 0x28, 0x06, 0xd0, +0xe7, 0x28, 0x04, 0xd0, 0x24, 0x28, 0x02, 0xd0, 0xb1, 0x28, 0x00, 0xd0, 0x00, 0x21, 0x08, 0x00, +0x70, 0x47, 0xee, 0x48, 0x10, 0xb5, 0x18, 0x38, 0xc0, 0x6a, 0x00, 0x21, 0x0a, 0xf0, 0xf0, 0xeb, +0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0xe7, 0x48, 0x73, 0x21, +0xf0, 0xb5, 0xc9, 0x00, 0x18, 0x38, 0x9d, 0xb0, 0x01, 0x81, 0xe5, 0x49, 0x08, 0x00, 0x5c, 0x30, +0x50, 0x31, 0x15, 0x91, 0x16, 0x90, 0xe3, 0x48, 0xe3, 0x49, 0x14, 0x90, 0x08, 0x00, 0x80, 0x30, +0x60, 0x31, 0x12, 0x91, 0x13, 0x90, 0x01, 0xf0, 0xfc, 0xff, 0xe0, 0x48, 0x0a, 0xf0, 0xd4, 0xeb, +0x01, 0x89, 0x0d, 0x18, 0x68, 0x78, 0x29, 0x78, 0x00, 0x02, 0x08, 0x43, 0x40, 0x04, 0x40, 0x0c, +0x0a, 0x90, 0xe8, 0x78, 0xa9, 0x78, 0x00, 0x02, 0x08, 0x43, 0x08, 0x38, 0x0e, 0x90, 0xd3, 0x48, +0x2c, 0x00, 0x18, 0x38, 0x00, 0x78, 0x08, 0x34, 0x00, 0x28, 0x08, 0xd1, 0x29, 0x79, 0x05, 0x20, +0x00, 0x04, 0x08, 0x18, 0x0a, 0xf0, 0xc4, 0xe9, 0xd1, 0x48, 0x0a, 0xf0, 0xc2, 0xe9, 0x68, 0x78, +0x29, 0x78, 0x00, 0x02, 0x08, 0x43, 0x21, 0x00, 0xff, 0xf7, 0x75, 0xfd, 0x00, 0x28, 0x10, 0xd0, +0xff, 0xf7, 0xaf, 0xff, 0x00, 0x28, 0x06, 0xd1, 0xc4, 0x48, 0x01, 0x21, 0x18, 0x38, 0x41, 0x63, +0x00, 0x20, 0x1d, 0xb0, 0xf0, 0xbd, 0xc1, 0x48, 0x00, 0x21, 0x18, 0x38, 0x41, 0x63, 0x01, 0x21, +0x41, 0x70, 0xc4, 0x48, 0x0a, 0xf0, 0xa4, 0xe9, 0x01, 0x20, 0x0d, 0x90, 0x09, 0x90, 0x00, 0x20, +0x08, 0x90, 0xbe, 0x48, 0x0a, 0xf0, 0x94, 0xeb, 0x11, 0x90, 0x01, 0x89, 0x0d, 0x18, 0x10, 0x95, +0x40, 0x69, 0x07, 0x90, 0x10, 0x98, 0x0a, 0xf0, 0x90, 0xeb, 0x00, 0x28, 0x26, 0xd0, 0x00, 0x20, +0x0a, 0xf0, 0x8e, 0xeb, 0x00, 0x28, 0x21, 0xd1, 0x0a, 0xf0, 0x62, 0xeb, 0x00, 0x28, 0x00, 0xd0, +0x02, 0x20, 0x0a, 0xf0, 0x46, 0xeb, 0x06, 0x00, 0x00, 0x7a, 0x06, 0x28, 0x06, 0xd1, 0x68, 0x79, +0x01, 0x07, 0x09, 0x0f, 0x00, 0x20, 0x0a, 0xf0, 0x80, 0xeb, 0x06, 0x00, 0x00, 0x2e, 0x2c, 0xd1, +0x0a, 0x98, 0xf7, 0x28, 0x11, 0xd1, 0x23, 0x78, 0x00, 0x21, 0x07, 0x9a, 0x00, 0x91, 0x02, 0x92, +0x01, 0x91, 0x68, 0x79, 0x02, 0x07, 0x12, 0x0f, 0x01, 0x09, 0x19, 0xe0, 0x68, 0x79, 0x01, 0x07, +0x09, 0x0f, 0x00, 0x09, 0x0a, 0xf0, 0xac, 0xea, 0xdd, 0xe7, 0x6f, 0x79, 0x3e, 0x09, 0x01, 0x2e, +0x01, 0xd1, 0x02, 0x23, 0x04, 0xe0, 0x02, 0x2e, 0x01, 0xd1, 0x03, 0x23, 0x00, 0xe0, 0x00, 0x23, +0x07, 0x9a, 0x00, 0x21, 0x02, 0x92, 0x3a, 0x07, 0x12, 0x0f, 0x00, 0x91, 0x01, 0x91, 0x31, 0x00, +0x18, 0x00, 0x00, 0x23, 0x0a, 0xf0, 0x54, 0xeb, 0x06, 0x00, 0x11, 0x98, 0x8f, 0x4f, 0x46, 0x61, +0x0b, 0x20, 0x80, 0x01, 0x30, 0x18, 0x00, 0x69, 0x18, 0x3f, 0x06, 0x90, 0x02, 0xe0, 0x01, 0x20, +0x0a, 0xf0, 0xa6, 0xe9, 0x7d, 0x21, 0x90, 0x48, 0x00, 0x22, 0x09, 0x01, 0x0a, 0xf0, 0xdc, 0xea, +0x00, 0x28, 0xf8, 0x60, 0xf3, 0xd0, 0x85, 0x48, 0x84, 0x4a, 0x18, 0x38, 0xc0, 0x68, 0x20, 0x21, +0x01, 0x81, 0x41, 0x18, 0x18, 0x3a, 0x11, 0x63, 0x46, 0x61, 0x0f, 0x91, 0xe9, 0x78, 0xa8, 0x78, +0x0a, 0x02, 0x02, 0x43, 0x10, 0x99, 0x0f, 0x98, 0x0a, 0xf0, 0x2e, 0xeb, 0x7b, 0x48, 0x01, 0x27, +0x18, 0x38, 0x07, 0x70, 0x40, 0x69, 0x00, 0x28, 0x0c, 0xd1, 0x0a, 0x98, 0xaa, 0x28, 0x09, 0xd0, +0x0a, 0xf0, 0x26, 0xeb, 0x75, 0x48, 0x7d, 0x49, 0x18, 0x38, 0x47, 0x61, 0xc8, 0x68, 0x04, 0x22, +0x10, 0x43, 0xc8, 0x60, 0x00, 0x20, 0x0b, 0x90, 0x71, 0x48, 0x00, 0x78, 0xc0, 0x07, 0x20, 0xd1, +0x0a, 0x98, 0xff, 0xf7, 0xe8, 0xfe, 0x00, 0x28, 0x1b, 0xd0, 0x0a, 0x98, 0x01, 0x21, 0xc9, 0x03, +0x08, 0x43, 0x28, 0x70, 0x00, 0x0a, 0x68, 0x70, 0x02, 0x20, 0xa8, 0x71, 0x00, 0x20, 0xe8, 0x71, +0xe8, 0x78, 0xa9, 0x78, 0x02, 0x02, 0x0a, 0x43, 0x10, 0x99, 0x0f, 0x98, 0x0a, 0xf0, 0xfc, 0xea, +0x11, 0x98, 0x0a, 0xf0, 0x9e, 0xea, 0x00, 0x21, 0x30, 0x00, 0xff, 0xf7, 0xd1, 0xfc, 0x01, 0xf0, +0x0b, 0xff, 0x0a, 0xf0, 0xfa, 0xea, 0x66, 0x48, 0x0a, 0xf0, 0xe2, 0xe8, 0x0a, 0x9b, 0x8a, 0x2b, +0x72, 0xd0, 0x72, 0xdc, 0x45, 0x2b, 0x01, 0xd1, 0x01, 0xf0, 0xf8, 0xf9, 0x6e, 0xdc, 0x1e, 0x2b, +0x6d, 0xd0, 0x2d, 0xdc, 0x14, 0x2b, 0x01, 0xd1, 0x01, 0xf0, 0xfd, 0xfd, 0x19, 0xdc, 0x10, 0x2b, +0x6f, 0xd0, 0x11, 0xdc, 0x03, 0x2b, 0x6d, 0xd0, 0x06, 0x2b, 0x6c, 0xd0, 0x0b, 0x2b, 0x01, 0xd0, +0x01, 0xf0, 0xd6, 0xfe, 0x54, 0x20, 0xa8, 0x70, 0x00, 0x20, 0xe8, 0x70, 0x21, 0x00, 0x30, 0x00, +0x0a, 0xf0, 0xd6, 0xea, 0x01, 0xf0, 0xa7, 0xfe, 0x11, 0x2b, 0xfb, 0xd0, 0x12, 0x2b, 0xef, 0xd1, +0x22, 0xe1, 0x16, 0x3b, 0x07, 0x2b, 0xeb, 0xd2, 0x5b, 0x00, 0x7b, 0x44, 0x9b, 0x88, 0x5b, 0x00, +0x9f, 0x44, 0x55, 0x04, 0xbe, 0x0e, 0xbe, 0x0e, 0x41, 0x05, 0x55, 0x05, 0x7d, 0x05, 0x95, 0x06, +0x2b, 0x2b, 0x77, 0xd0, 0x34, 0xdc, 0x24, 0x2b, 0x75, 0xd0, 0x1d, 0xdc, 0x1f, 0x2b, 0x73, 0xd0, +0x20, 0x2b, 0xd5, 0xd1, 0x43, 0x48, 0x22, 0x78, 0x43, 0x6a, 0x60, 0x78, 0x6a, 0x33, 0x01, 0x02, +0x11, 0x43, 0x20, 0x00, 0x0b, 0xaa, 0x0a, 0xf0, 0xb0, 0xea, 0x00, 0x28, 0x65, 0xd0, 0xe0, 0x78, +0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x3c, 0x49, 0x21, 0xc9, 0xbb, 0x4c, 0x01, 0x00, 0x00, 0x00, +0xd8, 0x38, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xe8, 0x11, 0xa1, 0x79, 0x88, 0x42, 0xcb, 0xd0, +0x40, 0x1e, 0x87, 0x40, 0x38, 0x0a, 0xa7, 0x70, 0xe0, 0x70, 0xc5, 0xe7, 0x26, 0x2b, 0xdd, 0xd0, +0x28, 0x2b, 0xb7, 0xd1, 0x30, 0x00, 0x04, 0x22, 0x21, 0x00, 0x39, 0x30, 0x0a, 0xf0, 0x96, 0xe8, +0x30, 0x00, 0x0a, 0xf0, 0x98, 0xea, 0x0a, 0xf0, 0xf2, 0xe8, 0x0a, 0xf0, 0x40, 0xea, 0x0a, 0xf0, +0x42, 0xea, 0xb1, 0xe7, 0x36, 0x2b, 0x05, 0xd1, 0x01, 0xf0, 0x45, 0xf9, 0xf2, 0xe3, 0x06, 0xe1, +0x5c, 0xe0, 0xf0, 0xe3, 0x0a, 0xdc, 0x2c, 0x2b, 0x72, 0xd0, 0x2e, 0x2b, 0x9a, 0xd1, 0x21, 0x00, +0x00, 0x20, 0x01, 0xf0, 0x35, 0xfe, 0xe7, 0xe3, 0x3b, 0xe3, 0xad, 0xe3, 0x37, 0x2b, 0x01, 0xd1, +0x01, 0xf0, 0x38, 0xf9, 0x40, 0x2b, 0x8d, 0xd1, 0x30, 0x00, 0x04, 0xf0, 0x50, 0xfe, 0x00, 0x28, +0x92, 0xd0, 0x0a, 0xf0, 0xa8, 0xe8, 0x1e, 0x48, 0x00, 0x24, 0x04, 0x80, 0x1d, 0x48, 0x04, 0x60, +0xff, 0xf7, 0x9d, 0xfc, 0x16, 0x48, 0xc0, 0x38, 0x01, 0x79, 0x49, 0x08, 0x49, 0x00, 0x01, 0x71, +0x30, 0x00, 0x04, 0xf0, 0xa3, 0xfa, 0x16, 0x99, 0x00, 0x20, 0x0a, 0xf0, 0xe4, 0xe9, 0x16, 0x48, +0xdf, 0x22, 0x04, 0x60, 0x30, 0x00, 0x20, 0x30, 0x81, 0x7e, 0x11, 0x40, 0x81, 0x76, 0xf0, 0x68, +0x04, 0x21, 0x88, 0x43, 0xf0, 0x60, 0xe2, 0xe2, 0xf8, 0xe3, 0xf8, 0xe3, 0xf8, 0xe3, 0xf8, 0xe3, +0x6c, 0xf0, 0x00, 0xc0, 0x82, 0x55, 0x00, 0x04, 0x04, 0x34, 0x01, 0xc0, 0x18, 0x33, 0x01, 0xc0, +0xd8, 0x3f, 0x00, 0x04, 0x01, 0x00, 0x04, 0x00, 0x02, 0x02, 0x04, 0x00, 0x9c, 0x00, 0x00, 0x04, +0x00, 0xa7, 0x00, 0x80, 0x04, 0x04, 0x04, 0x00, 0x38, 0x52, 0x00, 0x04, 0xff, 0xff, 0x00, 0x00, +0x48, 0xf0, 0x00, 0xc0, 0x3c, 0xf0, 0x00, 0xc0, 0xb8, 0xf0, 0x00, 0xc0, 0x6f, 0x2b, 0x01, 0xd1, +0x01, 0xf0, 0xda, 0xf9, 0x7f, 0xdc, 0x67, 0x2b, 0x6e, 0xd0, 0x67, 0xdc, 0x5d, 0x2b, 0x01, 0xd1, +0x01, 0xf0, 0xa7, 0xf9, 0x17, 0xdc, 0x4d, 0x2b, 0x67, 0xd0, 0x50, 0x2b, 0x66, 0xd0, 0x5b, 0x2b, +0x94, 0xd1, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x02, 0xd1, 0x01, 0xf0, 0x92, 0xf9, +0xf0, 0xe3, 0x01, 0x28, 0x01, 0xd0, 0x01, 0xf0, 0x65, 0xfd, 0x0e, 0x9a, 0xa1, 0x1c, 0x30, 0x00, +0x0a, 0xf0, 0x0c, 0xea, 0xfc, 0xe1, 0x5e, 0x2b, 0x01, 0xd1, 0x01, 0xf0, 0x27, 0xf9, 0x66, 0x2b, +0x89, 0xd1, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x7a, 0xd1, 0xe0, 0x78, +0xa1, 0x78, 0x07, 0x02, 0x0f, 0x43, 0x11, 0xd0, 0xfa, 0x48, 0xc1, 0x68, 0xb9, 0x42, 0x0d, 0xd0, +0xc7, 0x60, 0xf9, 0x48, 0x39, 0x00, 0x0a, 0xf0, 0x06, 0xe8, 0xf6, 0x49, 0x08, 0x61, 0x39, 0x00, +0xf5, 0x48, 0x64, 0x31, 0x09, 0xf0, 0xfe, 0xef, 0xf2, 0x49, 0x48, 0x61, 0x60, 0x79, 0x21, 0x79, +0x00, 0x02, 0x08, 0x43, 0x01, 0xd0, 0xef, 0x49, 0x88, 0x63, 0x20, 0x7a, 0x00, 0x28, 0x02, 0xd0, +0xec, 0x49, 0x40, 0x1e, 0x48, 0x71, 0x60, 0x7a, 0x00, 0x28, 0x05, 0xd0, 0xe9, 0x4a, 0x40, 0x1e, +0x11, 0x79, 0x81, 0x42, 0x00, 0xd0, 0x10, 0x71, 0xe0, 0x79, 0xa1, 0x79, 0x00, 0x02, 0x08, 0x43, +0x01, 0xd0, 0xe4, 0x49, 0x08, 0x60, 0xe0, 0x7a, 0xa1, 0x7a, 0x00, 0x02, 0x08, 0x43, 0x01, 0xd0, +0xe0, 0x49, 0xc8, 0x80, 0x0a, 0xf0, 0xc6, 0xe9, 0x01, 0xf0, 0x38, 0xf9, 0x68, 0x3b, 0x07, 0x2b, +0x00, 0xd3, 0xcf, 0xe6, 0x03, 0xe0, 0x0e, 0xe0, 0xf0, 0xe3, 0xf0, 0xe3, 0x06, 0xe3, 0x5b, 0x00, +0x7b, 0x44, 0x9b, 0x88, 0x5b, 0x00, 0x9f, 0x44, 0x36, 0x05, 0x9d, 0x0d, 0x9d, 0x0d, 0x6d, 0x09, +0x7a, 0x09, 0xa5, 0x05, 0x55, 0x09, 0x7f, 0x2b, 0x7b, 0xd0, 0x10, 0xdc, 0x70, 0x3b, 0x09, 0x2b, +0xe7, 0xd2, 0x5b, 0x00, 0x7b, 0x44, 0x9b, 0x88, 0x5b, 0x00, 0x9f, 0x44, 0x52, 0x09, 0x28, 0x09, +0x8b, 0x0d, 0x8b, 0x0d, 0x9c, 0x08, 0x91, 0x09, 0x8b, 0x0d, 0x8b, 0x0d, 0xa4, 0x09, 0x81, 0x3b, +0x08, 0x2b, 0xd6, 0xd2, 0x5b, 0x00, 0x7b, 0x44, 0x9b, 0x88, 0x5b, 0x00, 0x9f, 0x44, 0x45, 0x09, +0xfd, 0x09, 0x55, 0x0d, 0x7a, 0x0d, 0x7a, 0x0d, 0x25, 0x0d, 0x7a, 0x0d, 0x15, 0x0a, 0xda, 0x2b, +0x01, 0xd1, 0xa1, 0xe6, 0xf0, 0xe3, 0x72, 0xdc, 0xb1, 0x2b, 0x71, 0xd0, 0x4d, 0xdc, 0xa4, 0x2b, +0x6f, 0xd0, 0x3a, 0xdc, 0x94, 0x2b, 0x01, 0xd1, 0x01, 0xf0, 0x1c, 0xfa, 0x25, 0xdc, 0x8d, 0x2b, +0x01, 0xd1, 0x01, 0xf0, 0x5f, 0xf9, 0x8f, 0x2b, 0x6f, 0xd0, 0x93, 0x2b, 0xb1, 0xd1, 0x60, 0x78, +0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x01, 0xd0, 0x01, 0xf0, 0xfe, 0xf9, 0x00, 0x20, +0x6b, 0x46, 0xd8, 0x82, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x18, 0x82, 0x60, 0x79, +0x21, 0x79, 0x00, 0x02, 0x08, 0x43, 0x1c, 0x21, 0x04, 0xaa, 0x58, 0x82, 0xab, 0x48, 0x00, 0x68, +0x0a, 0xf0, 0x5c, 0xe9, 0x00, 0x28, 0xcc, 0xd0, 0x3d, 0xe7, 0x97, 0x2b, 0x01, 0xd1, 0x01, 0xf0, +0x03, 0xfa, 0x9a, 0x2b, 0x8d, 0xd1, 0x21, 0x00, 0x30, 0x00, 0x0a, 0xf0, 0x54, 0xe9, 0x00, 0x28, +0xbf, 0xd1, 0x38, 0x0a, 0xaf, 0x71, 0xe8, 0x71, 0x5e, 0xe6, 0xa9, 0x3b, 0x08, 0x2b, 0x97, 0xd2, +0x5b, 0x00, 0x7b, 0x44, 0x9b, 0x88, 0x5b, 0x00, 0x9f, 0x44, 0x56, 0x0a, 0xfb, 0x09, 0x24, 0x0d, +0x24, 0x0d, 0x24, 0x0d, 0xab, 0x01, 0xeb, 0x01, 0xb3, 0x01, 0xce, 0x2b, 0x02, 0xd1, 0x01, 0xf0, +0xcb, 0xfb, 0xf7, 0xe3, 0x38, 0xdc, 0xb5, 0x2b, 0x76, 0xd0, 0x09, 0xdc, 0xb2, 0x2b, 0x74, 0xd0, +0xb3, 0x2b, 0xb3, 0xd1, 0x29, 0x00, 0x30, 0x00, 0x07, 0xf0, 0x84, 0xf9, 0x01, 0xf0, 0x0c, 0xfc, +0xc7, 0x2b, 0x6b, 0xd0, 0xcd, 0x2b, 0xa9, 0xd1, 0x0e, 0x98, 0x08, 0x28, 0x02, 0xd2, 0x00, 0x20, +0xa0, 0x71, 0xe0, 0x71, 0x70, 0x7a, 0x02, 0x28, 0x04, 0xd0, 0x01, 0xf0, 0x9c, 0xfb, 0x5e, 0xe0, +0xa1, 0xe1, 0xef, 0xe3, 0x30, 0x00, 0x09, 0xf0, 0x16, 0xef, 0x61, 0x78, 0x22, 0x78, 0x09, 0x02, +0x11, 0x43, 0x01, 0x29, 0x02, 0xd0, 0x01, 0xf0, 0x7d, 0xfb, 0xf7, 0xe3, 0x01, 0x00, 0x40, 0x31, +0xa2, 0x78, 0x8a, 0x70, 0xe2, 0x78, 0xff, 0x30, 0xff, 0x30, 0xca, 0x70, 0x21, 0x79, 0x80, 0x1c, +0x81, 0x74, 0x61, 0x79, 0xc1, 0x74, 0x0f, 0xe6, 0xd1, 0x2b, 0x7e, 0xd0, 0x0b, 0xdc, 0xcf, 0x2b, +0x01, 0xd1, 0x01, 0xf0, 0x92, 0xfb, 0xd0, 0x2b, 0x9c, 0xd1, 0x0e, 0x99, 0x20, 0x00, 0x0a, 0xf0, +0xf6, 0xe8, 0x01, 0xf0, 0xb7, 0xfb, 0xd6, 0x2b, 0x01, 0xd1, 0x01, 0xf0, 0x55, 0xfa, 0xd9, 0x2b, +0x90, 0xd1, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x01, 0xd0, 0x01, 0xf0, +0x25, 0xfb, 0xa0, 0x1c, 0x07, 0xf0, 0x29, 0xfd, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, +0x67, 0x49, 0x88, 0x42, 0x01, 0xd1, 0x01, 0xf0, 0x2f, 0xfb, 0x0a, 0xf0, 0xdc, 0xe8, 0x30, 0x00, +0xff, 0x30, 0x5d, 0x30, 0x0a, 0xf0, 0xda, 0xe8, 0x01, 0x00, 0x30, 0x00, 0x0a, 0xf0, 0xda, 0xe8, +0x0a, 0xf0, 0xdc, 0xe8, 0x5f, 0x49, 0x30, 0x00, 0x0a, 0xf0, 0xdc, 0xe8, 0x5e, 0x48, 0x00, 0x78, +0x20, 0x71, 0x00, 0x0a, 0x60, 0x71, 0xe6, 0xe7, 0x38, 0x4f, 0x78, 0x11, 0x01, 0x00, 0x00, 0x00, +0xd4, 0x3c, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x6f, 0x47, 0xaf, 0x2b, 0x3b, 0xe1, 0x56, 0xe1, +0x23, 0xe2, 0xff, 0x21, 0x89, 0x1c, 0x58, 0x1a, 0x8b, 0x42, 0x01, 0xd1, 0x01, 0xf0, 0x86, 0xfb, +0x74, 0xdc, 0xec, 0x2b, 0x3e, 0xd0, 0x42, 0xdc, 0xe9, 0x2b, 0x01, 0xd1, 0x01, 0xf0, 0x6f, 0xfb, +0x34, 0xdc, 0xdf, 0x2b, 0x01, 0xd1, 0x01, 0xf0, 0x4c, 0xfb, 0xe4, 0x2b, 0x67, 0xd0, 0xe5, 0x2b, +0xac, 0xd1, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x7e, 0xd0, 0x02, 0x28, +0x9b, 0xd1, 0x13, 0x98, 0x00, 0x88, 0x00, 0x28, 0x97, 0xd1, 0x0a, 0xf0, 0xb2, 0xe8, 0x61, 0x78, +0x22, 0x78, 0x08, 0x02, 0x10, 0x43, 0x01, 0x28, 0x8f, 0xd1, 0xa0, 0x1c, 0x05, 0x90, 0x09, 0xf0, +0xd0, 0xef, 0x40, 0x1c, 0x6b, 0xd0, 0x14, 0x99, 0x00, 0x20, 0x88, 0x82, 0x40, 0x48, 0x05, 0x99, +0x06, 0x22, 0x09, 0xf0, 0x6e, 0xee, 0x3f, 0x48, 0x00, 0x88, 0x00, 0x28, 0x00, 0xe0, 0xf2, 0xe3, +0x7a, 0xd0, 0x0e, 0x98, 0x21, 0x00, 0x08, 0x31, 0x08, 0x38, 0xed, 0xe3, 0xea, 0x2b, 0x01, 0xd0, +0xeb, 0x2b, 0x87, 0xd1, 0x29, 0x00, 0x30, 0x00, 0x08, 0xf0, 0x59, 0xfc, 0x40, 0xe7, 0xf4, 0x2b, +0x00, 0xd1, 0x7b, 0xe5, 0x2c, 0xdc, 0xed, 0x2b, 0x67, 0xd0, 0xf2, 0x2b, 0xc0, 0xd1, 0x0f, 0x9b, +0xaa, 0x1c, 0x00, 0x92, 0x60, 0x78, 0x22, 0x78, 0x01, 0x02, 0x11, 0x43, 0x0a, 0x33, 0xa2, 0x1c, +0x30, 0x00, 0x0a, 0xf0, 0x7a, 0xe8, 0x00, 0x28, 0x00, 0xd0, 0x36, 0xe6, 0x60, 0x78, 0x21, 0x78, +0x00, 0x02, 0x08, 0x43, 0xe5, 0xd1, 0x0a, 0x99, 0x01, 0x22, 0x0f, 0x98, 0xd2, 0x03, 0x11, 0x43, +0x01, 0x70, 0x09, 0x0a, 0x41, 0x70, 0xe9, 0x78, 0xaa, 0x78, 0x09, 0x02, 0x11, 0x43, 0x81, 0x70, +0x09, 0x0a, 0xc1, 0x70, 0x00, 0x21, 0x81, 0x71, 0xc1, 0x71, 0xf2, 0xe3, 0x25, 0xe0, 0xf1, 0xe3, +0xf7, 0x2b, 0x01, 0xd1, 0x01, 0xf0, 0x03, 0xfb, 0xfb, 0x2b, 0x91, 0xd1, 0x60, 0x78, 0x21, 0x78, +0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x01, 0xd0, 0x01, 0xf0, 0x12, 0xfb, 0x0e, 0x98, 0x05, 0xab, +0x00, 0x1f, 0x05, 0x90, 0xe0, 0x78, 0xa1, 0x78, 0x02, 0x02, 0x0a, 0x43, 0x00, 0x92, 0x60, 0x78, +0x22, 0x78, 0x01, 0x02, 0x11, 0x43, 0x22, 0x1d, 0x30, 0x00, 0x01, 0xe0, 0xf9, 0xe3, 0xf9, 0xe3, +0x0a, 0xf0, 0x3e, 0xe8, 0x00, 0x28, 0xac, 0xd1, 0xf7, 0xe5, 0x15, 0x28, 0x7a, 0xd0, 0x3c, 0xdc, +0x0b, 0x28, 0x13, 0xd1, 0x01, 0xf0, 0x5d, 0xf8, 0x18, 0x33, 0x01, 0xc0, 0x40, 0x42, 0x0f, 0x00, +0x18, 0xee, 0x00, 0xc0, 0xff, 0xff, 0x00, 0x00, 0x4c, 0x7b, 0x02, 0x00, 0x28, 0x77, 0x02, 0x00, +0xcc, 0xee, 0x00, 0xc0, 0x38, 0xf0, 0x00, 0xc0, 0xf6, 0xe3, 0xdc, 0xe2, 0x0d, 0xdc, 0x01, 0x28, +0x01, 0xd1, 0x01, 0xf0, 0x02, 0xfb, 0x02, 0x28, 0x90, 0xd1, 0x21, 0x00, 0x30, 0x00, 0x0a, 0xf0, +0x1c, 0xe8, 0x0b, 0x90, 0x0c, 0x20, 0x01, 0xf0, 0xe6, 0xfa, 0x0c, 0x28, 0x70, 0xd0, 0x13, 0x28, +0x84, 0xd1, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x33, 0xd1, 0x60, 0x79, +0x21, 0x79, 0x02, 0x02, 0x0a, 0x43, 0xa1, 0x1d, 0x00, 0x20, 0x0a, 0xf0, 0x0a, 0xe8, 0x00, 0x28, +0x0b, 0x90, 0x00, 0xd1, 0xac, 0xe6, 0x01, 0x20, 0xaa, 0xe6, 0x23, 0x28, 0x01, 0xd1, 0x01, 0xf0, +0x7c, 0xfb, 0x0d, 0xdc, 0x18, 0x28, 0x01, 0xd1, 0x01, 0xf0, 0x6e, 0xfa, 0x21, 0x28, 0x94, 0xd1, +0x0e, 0x98, 0x21, 0x00, 0x02, 0x04, 0x12, 0x0c, 0x30, 0x00, 0x09, 0xf0, 0xf6, 0xef, 0x97, 0xe6, +0x27, 0x28, 0x01, 0xd1, 0x01, 0xf0, 0x78, 0xfb, 0xfe, 0x28, 0x86, 0xd1, 0x08, 0x20, 0xa8, 0x70, +0x00, 0x20, 0xe8, 0x70, 0x20, 0x00, 0x09, 0xf0, 0xec, 0xef, 0xe9, 0x78, 0xaa, 0x78, 0x09, 0x02, +0x11, 0x43, 0x40, 0x18, 0xbf, 0xe7, 0x61, 0x79, 0x22, 0x79, 0x0b, 0x02, 0x13, 0x43, 0x00, 0x06, +0x00, 0x0e, 0x22, 0x1d, 0xa1, 0x1d, 0x09, 0xf0, 0xe0, 0xef, 0x00, 0x04, 0x00, 0x0c, 0x0b, 0x90, +0x00, 0xd0, 0x01, 0x20, 0x00, 0x28, 0x0b, 0x90, 0x85, 0xd1, 0x60, 0x79, 0x21, 0x79, 0x00, 0x02, +0x08, 0x43, 0xce, 0xe3, 0x44, 0xe3, 0x21, 0x00, 0x00, 0x20, 0x09, 0xf0, 0xd2, 0xef, 0x20, 0x00, +0x09, 0xf0, 0xd2, 0xef, 0xef, 0xe3, 0x68, 0x7a, 0x29, 0x7a, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, +0x04, 0xd1, 0x29, 0x00, 0x30, 0x00, 0x06, 0xf0, 0x20, 0xfa, 0x59, 0xe6, 0x29, 0x00, 0x30, 0x00, +0x06, 0xf0, 0xd1, 0xfc, 0x54, 0xe6, 0x29, 0x00, 0x30, 0x00, 0x06, 0xf0, 0x83, 0xfe, 0x26, 0xe0, +0xfe, 0xe3, 0x00, 0x20, 0x0d, 0x90, 0x01, 0xf0, 0x4c, 0xfb, 0x29, 0x00, 0x30, 0x00, 0x06, 0xf0, +0x7d, 0xff, 0x00, 0x28, 0x14, 0xd0, 0x01, 0x28, 0x7e, 0xd0, 0x02, 0x28, 0x01, 0xd1, 0x01, 0xf0, +0x4c, 0xfa, 0x05, 0x28, 0x00, 0xd0, 0x48, 0xe5, 0xff, 0xf7, 0xe9, 0xf8, 0x08, 0xe0, 0x29, 0x00, +0x30, 0x00, 0x06, 0xf0, 0xc3, 0xfe, 0x00, 0x28, 0x02, 0xd0, 0x02, 0x28, 0xf3, 0xd1, 0xee, 0xe7, +0x00, 0x20, 0x0d, 0x90, 0xeb, 0xe7, 0x29, 0x00, 0x30, 0x00, 0x06, 0xf0, 0xad, 0xfe, 0x00, 0x28, +0x0b, 0x90, 0xd6, 0xd0, 0x62, 0xe4, 0x09, 0xf0, 0x94, 0xef, 0x01, 0x00, 0x20, 0x00, 0x06, 0x22, +0x08, 0x30, 0x09, 0xf0, 0x36, 0xed, 0x09, 0xf0, 0x90, 0xef, 0x00, 0x28, 0x02, 0xd0, 0x38, 0x0a, +0x27, 0x74, 0x08, 0xe0, 0x09, 0xf0, 0x8c, 0xef, 0x07, 0x28, 0x01, 0xd1, 0x03, 0x20, 0x00, 0xe0, +0x02, 0x20, 0x20, 0x74, 0x00, 0x0a, 0x60, 0x74, 0x40, 0x20, 0xa0, 0x71, 0x00, 0x20, 0xe0, 0x71, +0x09, 0xf0, 0x82, 0xef, 0xa0, 0x73, 0x00, 0x0a, 0xe0, 0x73, 0x09, 0xf0, 0x82, 0xef, 0x21, 0x00, +0x12, 0x31, 0x09, 0xf0, 0xa2, 0xee, 0x00, 0x20, 0x0c, 0x90, 0x09, 0xf0, 0x7e, 0xef, 0xff, 0xf7, +0xcc, 0xfa, 0x07, 0x00, 0x09, 0xf0, 0x6c, 0xef, 0xff, 0xf7, 0xc7, 0xfa, 0x05, 0x90, 0x07, 0xf0, +0x9b, 0xfa, 0x0c, 0x9a, 0x01, 0x00, 0x00, 0x92, 0x05, 0x9a, 0x3b, 0x00, 0x20, 0x00, 0x09, 0xf0, +0x70, 0xef, 0x20, 0x00, 0x26, 0x30, 0x1c, 0x90, 0x09, 0xf0, 0x52, 0xee, 0x00, 0x0a, 0x1c, 0x99, +0x00, 0x02, 0x09, 0xf0, 0x82, 0xee, 0x07, 0x00, 0x09, 0xf0, 0x52, 0xef, 0x1c, 0x99, 0x38, 0x43, +0x09, 0xf0, 0x7a, 0xee, 0x07, 0x00, 0x09, 0xf0, 0x58, 0xef, 0x00, 0x01, 0x81, 0x21, 0x38, 0x43, +0x49, 0x04, 0x88, 0x43, 0x1c, 0x99, 0x09, 0xf0, 0x70, 0xee, 0x15, 0x98, 0x41, 0x7a, 0x02, 0x7a, +0x08, 0x02, 0x10, 0x43, 0xa0, 0x70, 0x00, 0xe0, 0xed, 0xe2, 0x00, 0x0a, 0xe0, 0x70, 0x02, 0x20, +0x20, 0x70, 0x00, 0x20, 0x60, 0x70, 0xfe, 0x48, 0x20, 0x34, 0x00, 0x78, 0xe0, 0x72, 0x00, 0x0a, +0x20, 0x73, 0x0d, 0x20, 0x60, 0x73, 0x00, 0x20, 0xa0, 0x73, 0x28, 0xe4, 0xf9, 0x48, 0x07, 0x60, +0x30, 0x7a, 0x03, 0x28, 0x09, 0xd1, 0x70, 0x7a, 0x00, 0x28, 0x06, 0xd0, 0x17, 0x20, 0x40, 0x01, +0x30, 0x18, 0x01, 0x78, 0x04, 0x29, 0x00, 0xd0, 0x07, 0x70, 0x0e, 0x98, 0x00, 0x21, 0x03, 0x04, +0x1b, 0x0c, 0x22, 0x00, 0x30, 0x00, 0x05, 0xf0, 0x2f, 0xff, 0x00, 0x28, 0x04, 0xd0, 0x00, 0x20, +0x0d, 0x90, 0xff, 0xf7, 0x44, 0xf8, 0x46, 0xe7, 0x0b, 0x08, 0x70, 0x6a, 0x01, 0x00, 0x00, 0x00, +0xd0, 0x40, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xf5, 0x7a, 0xfb, 0xab, 0xea, 0x49, 0x00, 0x20, +0x08, 0x60, 0x9c, 0xe4, 0x30, 0x7a, 0x03, 0x28, 0x02, 0xd1, 0x70, 0x7a, 0x03, 0x28, 0xf8, 0xd1, +0xf0, 0x68, 0xc0, 0x04, 0x0d, 0xd4, 0x00, 0x21, 0x30, 0x00, 0x05, 0xf0, 0x9e, 0xfa, 0x23, 0x00, +0x22, 0x00, 0x00, 0x21, 0x30, 0x00, 0x09, 0xf0, 0x0a, 0xef, 0x06, 0xe0, 0x13, 0xe2, 0x05, 0xe3, +0x16, 0xe0, 0x01, 0x21, 0x30, 0x00, 0x05, 0xf0, 0x90, 0xfa, 0x0e, 0x98, 0x21, 0x00, 0x02, 0x04, +0x12, 0x0c, 0x30, 0x00, 0x05, 0xf0, 0xae, 0xf9, 0x00, 0x28, 0xd2, 0xd1, 0x77, 0xe4, 0x08, 0x20, +0xa8, 0x70, 0x00, 0x20, 0xe8, 0x70, 0x21, 0x00, 0x30, 0x00, 0x02, 0xf0, 0xe6, 0xfb, 0xd6, 0xe6, +0xd2, 0x49, 0x20, 0x00, 0xff, 0xf7, 0xa7, 0xf9, 0xf7, 0xe4, 0x60, 0x78, 0x22, 0x78, 0x00, 0x02, +0x0e, 0x99, 0x10, 0x43, 0x01, 0x28, 0x63, 0xd1, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, +0x09, 0x28, 0x3a, 0xd0, 0x1a, 0xdc, 0x05, 0x28, 0x4e, 0xd0, 0x06, 0x28, 0x47, 0xd0, 0x07, 0x28, +0x51, 0xd0, 0x08, 0x28, 0x93, 0xd1, 0xc5, 0x48, 0x00, 0x1f, 0xc0, 0x88, 0x00, 0x28, 0x03, 0xd0, +0xe0, 0x88, 0xc3, 0x49, 0x88, 0x42, 0x8a, 0xd2, 0x06, 0x98, 0xa1, 0x79, 0x40, 0x30, 0x81, 0x74, +0xe1, 0x79, 0x63, 0xe5, 0x64, 0xe1, 0x5b, 0xe1, 0xb2, 0xe3, 0xe2, 0xe3, 0x11, 0x28, 0x11, 0xd0, +0x24, 0x28, 0x09, 0xd0, 0x25, 0x28, 0xcf, 0xd1, 0x06, 0x98, 0x04, 0x22, 0xff, 0x30, 0xa1, 0x1d, +0x49, 0x30, 0x09, 0xf0, 0x40, 0xec, 0xc0, 0xe4, 0x06, 0x98, 0x04, 0x22, 0xa1, 0x1d, 0xff, 0x30, +0x39, 0x30, 0xf6, 0xe7, 0xb3, 0x49, 0xa0, 0x79, 0x09, 0x68, 0x88, 0x61, 0xa0, 0x79, 0x00, 0x28, +0xba, 0xd0, 0x30, 0x00, 0x09, 0xf0, 0xa6, 0xee, 0xaf, 0xe4, 0xf0, 0x68, 0xff, 0x21, 0x49, 0x1c, +0x88, 0x43, 0xa1, 0x79, 0xc9, 0x07, 0xc9, 0x0d, 0x08, 0x43, 0xf0, 0x60, 0x09, 0xf0, 0x9e, 0xee, +0x01, 0x00, 0x01, 0x22, 0x30, 0x00, 0x09, 0xf0, 0xf2, 0xec, 0x9e, 0xe4, 0x50, 0xe1, 0x06, 0x98, +0xa1, 0x79, 0x40, 0x30, 0x01, 0x75, 0x98, 0xe4, 0x06, 0x98, 0xa1, 0x79, 0x40, 0x30, 0x01, 0x74, +0xe1, 0x79, 0x41, 0x74, 0x91, 0xe4, 0x06, 0x98, 0xa1, 0x79, 0x40, 0x30, 0x41, 0x75, 0x8c, 0xe4, +0x00, 0x28, 0x91, 0xd1, 0x89, 0x1e, 0xa4, 0x1c, 0x27, 0x00, 0x05, 0x91, 0x74, 0xe0, 0x78, 0x78, +0x39, 0x78, 0x00, 0x02, 0x08, 0x43, 0x08, 0x28, 0x28, 0xd0, 0x0b, 0xdc, 0x03, 0x28, 0x1b, 0xd0, +0x05, 0x28, 0x1d, 0xd0, 0x06, 0x28, 0x28, 0xd0, 0x07, 0x28, 0x35, 0xd1, 0x06, 0x98, 0x40, 0x30, +0x40, 0x7d, 0x25, 0xe0, 0x09, 0x28, 0x29, 0xd0, 0x11, 0x28, 0x23, 0xd0, 0x24, 0x28, 0x06, 0xd0, +0x25, 0x28, 0x29, 0xd1, 0x06, 0x99, 0x04, 0x22, 0xff, 0x31, 0x49, 0x31, 0x46, 0xe0, 0x06, 0x99, +0x04, 0x22, 0xff, 0x31, 0x39, 0x31, 0x41, 0xe0, 0x06, 0x98, 0x40, 0x30, 0x80, 0x7b, 0x0f, 0xe0, +0x06, 0x98, 0x40, 0x30, 0x01, 0x7c, 0x21, 0x71, 0x40, 0x7c, 0x04, 0xe0, 0x06, 0x98, 0x40, 0x30, +0x81, 0x7c, 0x21, 0x71, 0xc0, 0x7c, 0x60, 0x71, 0x33, 0xe0, 0x06, 0x98, 0x40, 0x30, 0x00, 0x7d, +0x20, 0x71, 0x2e, 0xe0, 0x7b, 0x48, 0x00, 0x68, 0x80, 0x69, 0xf9, 0xe7, 0xf0, 0x68, 0xc0, 0x05, +0xc0, 0x0f, 0xf5, 0xe7, 0x2d, 0xe1, 0xc5, 0xe0, 0x01, 0x00, 0x0b, 0x39, 0x04, 0x29, 0x06, 0xd9, +0x00, 0x21, 0x02, 0x00, 0xc9, 0x43, 0x12, 0x3a, 0x0d, 0x2a, 0x00, 0xd8, 0x51, 0x1d, 0x04, 0x91, +0x49, 0x1c, 0x16, 0xd0, 0x30, 0x00, 0x09, 0xf0, 0x2e, 0xee, 0x00, 0x28, 0x11, 0xd0, 0x00, 0x21, +0x30, 0x00, 0x09, 0xf0, 0xa4, 0xed, 0x09, 0x20, 0x80, 0x01, 0x04, 0x99, 0x30, 0x18, 0xc0, 0x6b, +0x89, 0x00, 0x41, 0x18, 0xf8, 0x78, 0xbb, 0x78, 0x02, 0x02, 0x1a, 0x43, 0x20, 0x1d, 0x09, 0xf0, +0x9a, 0xeb, 0xf8, 0x78, 0xb9, 0x78, 0x00, 0x02, 0x08, 0x43, 0x05, 0x99, 0x3f, 0x1d, 0x09, 0x1a, +0x09, 0x1f, 0xc7, 0x19, 0x3c, 0x00, 0x05, 0x91, 0x05, 0x98, 0x00, 0x28, 0x87, 0xdc, 0x0c, 0xe4, +0xd0, 0xe0, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x06, 0xd1, 0x61, 0x88, +0x01, 0x22, 0xd2, 0x07, 0x60, 0x68, 0x89, 0x18, 0x01, 0xf0, 0xd6, 0xf8, 0x60, 0x88, 0x01, 0x21, +0xc9, 0x07, 0x40, 0x18, 0x00, 0x68, 0x60, 0x60, 0x3a, 0xe4, 0x67, 0x88, 0x38, 0x0b, 0x08, 0x28, +0x13, 0xd1, 0x09, 0xf0, 0xf4, 0xed, 0x61, 0x78, 0x22, 0x78, 0x38, 0x05, 0x09, 0x02, 0x00, 0x0d, +0x11, 0x43, 0x01, 0x29, 0x03, 0xd1, 0x21, 0x79, 0x09, 0xf0, 0xec, 0xed, 0x02, 0xe0, 0x09, 0xf0, +0xee, 0xed, 0x20, 0x71, 0x09, 0xf0, 0xee, 0xed, 0x22, 0xe4, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, +0x08, 0x43, 0x01, 0x28, 0x04, 0xd1, 0x21, 0x79, 0x38, 0x00, 0x09, 0xf0, 0xe8, 0xed, 0x17, 0xe4, +0x38, 0x00, 0x09, 0xf0, 0xe8, 0xed, 0x20, 0x71, 0x12, 0xe4, 0x09, 0xf0, 0xe8, 0xed, 0x60, 0x88, +0x05, 0x90, 0x00, 0x05, 0x00, 0x0f, 0x05, 0x98, 0x22, 0xd0, 0x00, 0x0b, 0x02, 0x28, 0x00, 0xd9, +0x00, 0x20, 0x40, 0x1c, 0x07, 0x06, 0x3f, 0x0e, 0x01, 0x2f, 0x02, 0xd9, 0x38, 0x00, 0x09, 0xf0, +0xda, 0xed, 0x05, 0x98, 0x61, 0x78, 0x22, 0x78, 0x80, 0x05, 0x09, 0x02, 0x80, 0x0d, 0x11, 0x43, +0x01, 0x29, 0x04, 0xd1, 0x21, 0x79, 0x09, 0xf0, 0xd2, 0xed, 0x03, 0xe0, 0xee, 0xe1, 0x09, 0xf0, +0xd2, 0xed, 0x20, 0x71, 0x01, 0x2f, 0x15, 0xd9, 0x01, 0x20, 0x09, 0xf0, 0xc4, 0xed, 0x11, 0xe0, +0x05, 0x99, 0x62, 0x78, 0x23, 0x78, 0x09, 0x06, 0x12, 0x02, 0x00, 0x0b, 0x09, 0x0e, 0x1a, 0x43, +0x01, 0x2a, 0x04, 0xd1, 0x22, 0x79, 0x09, 0xf0, 0xc2, 0xed, 0x03, 0xe0, 0xe5, 0xe1, 0x09, 0xf0, +0xc2, 0xed, 0x20, 0x71, 0x09, 0xf0, 0xc2, 0xed, 0x21, 0xe4, 0x09, 0xf0, 0xc4, 0xed, 0x60, 0x78, +0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x05, 0xd1, 0x21, 0x79, 0x60, 0x88, 0x09, 0xf0, +0x8a, 0xed, 0x04, 0xe0, 0x0b, 0xe1, 0x60, 0x88, 0x09, 0xf0, 0x88, 0xed, 0x20, 0x71, 0x09, 0xf0, +0xb6, 0xed, 0x0c, 0xe4, 0x21, 0x00, 0x30, 0x00, 0xfe, 0xf7, 0xbb, 0xff, 0xff, 0xf7, 0xa6, 0xfb, +0x0e, 0x98, 0x21, 0x00, 0x02, 0x04, 0x12, 0x0c, 0x30, 0x00, 0x01, 0xf0, 0x1a, 0xfe, 0x38, 0xe6, +0x06, 0x98, 0x03, 0x21, 0x09, 0xf0, 0xa6, 0xed, 0x16, 0x99, 0x00, 0x20, 0x09, 0xf0, 0x6e, 0xec, +0x09, 0x48, 0x80, 0x6b, 0x09, 0x49, 0x00, 0x20, 0x08, 0x60, 0x29, 0x00, 0x30, 0x00, 0x03, 0xf0, +0xeb, 0xfa, 0x70, 0xe5, 0x28, 0x77, 0x02, 0x00, 0xd8, 0xf0, 0x00, 0xc0, 0x58, 0xf0, 0x00, 0xc0, +0xee, 0x02, 0x00, 0x00, 0x54, 0xf4, 0x00, 0xc0, 0x00, 0xa8, 0x00, 0x80, 0xb8, 0xf0, 0x00, 0xc0, +0x06, 0x98, 0x04, 0x21, 0x09, 0xf0, 0x86, 0xed, 0x16, 0x99, 0x00, 0x20, 0x09, 0xf0, 0x4e, 0xec, +0xff, 0x48, 0x80, 0x6b, 0xff, 0x49, 0x00, 0x20, 0x08, 0x60, 0x29, 0x00, 0x30, 0x00, 0x03, 0xf0, +0xa1, 0xfb, 0x50, 0xe5, 0xfc, 0x4f, 0x7d, 0x22, 0xf8, 0x68, 0xa0, 0x70, 0x00, 0x0a, 0xe0, 0x70, +0xb8, 0x6b, 0x20, 0x71, 0x00, 0x0a, 0x60, 0x71, 0x33, 0x65, 0xc8, 0x66, 0x01, 0x00, 0x00, 0x00, +0xcc, 0x44, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xdf, 0xf4, 0x52, 0x32, 0x78, 0x79, 0xd2, 0x00, +0x40, 0x1c, 0x20, 0x72, 0x38, 0x79, 0x40, 0x1c, 0x60, 0x72, 0x38, 0x68, 0xa0, 0x71, 0x00, 0x0a, +0xe0, 0x71, 0xf8, 0x88, 0x1b, 0x90, 0xf9, 0x6a, 0xb8, 0x6a, 0x09, 0xf0, 0x62, 0xed, 0x7b, 0x6b, +0x3a, 0x6b, 0x09, 0xf0, 0x62, 0xed, 0x1b, 0x9a, 0x00, 0x23, 0x09, 0xf0, 0x5e, 0xed, 0xa0, 0x72, +0x00, 0x0a, 0xe0, 0x72, 0x39, 0xe4, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, +0x08, 0xd1, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x12, 0x99, 0x48, 0x81, 0x12, 0x99, +0x00, 0x20, 0x08, 0x81, 0x12, 0x98, 0x40, 0x89, 0xa5, 0xe3, 0xe0, 0x4a, 0x20, 0x00, 0x72, 0x32, +0x93, 0x1f, 0x00, 0x92, 0x08, 0x3a, 0x91, 0x1e, 0x09, 0xf0, 0x42, 0xed, 0x1d, 0xe4, 0x25, 0xe1, +0x4c, 0xe3, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x23, 0xd1, 0xe0, 0x78, +0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0xff, 0x28, 0x05, 0xd0, 0xd5, 0x4a, 0x00, 0x21, 0x11, 0x70, +0x13, 0x99, 0x48, 0x80, 0x04, 0xe0, 0xd2, 0x48, 0x0a, 0x21, 0x07, 0x70, 0x13, 0x98, 0x41, 0x80, +0x13, 0x98, 0x39, 0x00, 0x40, 0x88, 0x00, 0x28, 0x00, 0xd0, 0x00, 0x21, 0x13, 0x9a, 0x12, 0x88, +0x00, 0x2a, 0x00, 0xd0, 0x00, 0x27, 0xb9, 0x42, 0x03, 0xd0, 0x28, 0x20, 0x09, 0xf0, 0x04, 0xec, +0x0c, 0xe5, 0x13, 0x99, 0x48, 0xe3, 0xc6, 0x48, 0x00, 0x78, 0x00, 0x28, 0x01, 0xd0, 0xff, 0x20, +0xc2, 0xe7, 0x13, 0x98, 0x00, 0x88, 0xbf, 0xe7, 0x14, 0x98, 0x80, 0x8a, 0x20, 0x70, 0x00, 0x0a, +0x60, 0x70, 0x14, 0x99, 0x00, 0x20, 0x88, 0x82, 0xf8, 0xe4, 0xa7, 0xe3, 0xeb, 0xe1, 0x60, 0x78, +0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x25, 0xd1, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, +0x08, 0x43, 0xb8, 0x48, 0x01, 0x78, 0x01, 0xd0, 0x39, 0x43, 0x01, 0xe0, 0x49, 0x08, 0x49, 0x00, +0xb4, 0x4c, 0x01, 0x70, 0x20, 0x78, 0xc0, 0x07, 0x02, 0xd0, 0x09, 0xf0, 0x12, 0xec, 0xdd, 0xe4, +0x09, 0xf0, 0xea, 0xec, 0x00, 0x28, 0x0a, 0xd0, 0x09, 0xf0, 0xea, 0xec, 0x00, 0x28, 0x06, 0xd1, +0x09, 0xf0, 0xea, 0xec, 0x09, 0xf0, 0xec, 0xec, 0xd0, 0xe4, 0xdb, 0xe2, 0x03, 0xe3, 0x20, 0x78, +0x38, 0x43, 0x20, 0x70, 0x04, 0xe4, 0xa7, 0x48, 0x00, 0x88, 0x40, 0x07, 0x40, 0x0f, 0x83, 0xe7, +0x09, 0xf0, 0xde, 0xe9, 0x07, 0x00, 0x60, 0x78, 0x21, 0x78, 0x03, 0x02, 0x60, 0x79, 0x0b, 0x43, +0x21, 0x79, 0x02, 0x02, 0x0a, 0x43, 0xe1, 0x78, 0xa0, 0x78, 0x09, 0x02, 0x01, 0x43, 0x4a, 0xe0, +0xc9, 0xe2, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x04, 0x28, 0x01, 0xd1, 0x02, 0x20, +0x24, 0xe4, 0x01, 0x28, 0x11, 0xd1, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, +0xf5, 0xd1, 0x60, 0x79, 0x21, 0x79, 0x00, 0x02, 0x08, 0x43, 0xa1, 0x1d, 0x09, 0xf0, 0xbc, 0xec, +0x01, 0x28, 0xcf, 0xd0, 0x09, 0xf0, 0xb4, 0xe9, 0x31, 0xe0, 0x02, 0x28, 0x32, 0xd1, 0x60, 0x78, +0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x1a, 0xd1, 0xa0, 0x1d, 0x05, 0xa9, 0x09, 0xf0, 0xb0, 0xec, +0x0b, 0x90, 0x05, 0x98, 0x20, 0x71, 0x00, 0x0a, 0x60, 0x71, 0x68, 0x78, 0x29, 0x78, 0x00, 0x02, +0x08, 0x43, 0x01, 0x21, 0xc9, 0x03, 0x08, 0x43, 0x28, 0x70, 0x00, 0x0a, 0x6b, 0x46, 0x68, 0x70, +0x98, 0x8d, 0xa8, 0x71, 0x00, 0x0a, 0xe8, 0x71, 0x05, 0x98, 0x0e, 0x30, 0x16, 0xe4, 0x09, 0xf0, +0x90, 0xe9, 0x07, 0x00, 0x60, 0x78, 0x21, 0x78, 0x03, 0x02, 0x60, 0x79, 0x0b, 0x43, 0x21, 0x79, +0x02, 0x02, 0x0a, 0x43, 0x78, 0x49, 0xa0, 0x1d, 0x09, 0xf0, 0x8e, 0xec, 0x38, 0x00, 0x09, 0xf0, +0x94, 0xe9, 0x63, 0xe4, 0x05, 0x28, 0x8f, 0xd1, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, +0x01, 0x28, 0x04, 0xd1, 0x20, 0x00, 0x09, 0xf0, 0x84, 0xec, 0xff, 0xf7, 0x8f, 0xfb, 0x00, 0x28, +0xa5, 0xd1, 0x20, 0x00, 0x09, 0xf0, 0x7c, 0xec, 0x00, 0x28, 0xd6, 0xd1, 0x37, 0xe4, 0x1a, 0xe3, +0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x06, 0xd1, 0xe0, 0x78, 0xa1, 0x78, +0x00, 0x02, 0x08, 0x43, 0x01, 0x21, 0x09, 0xf0, 0x70, 0xec, 0xf0, 0x68, 0xc0, 0x04, 0x1e, 0xd5, +0x04, 0xa8, 0x02, 0xf0, 0xfb, 0xfc, 0x15, 0x98, 0x6b, 0x46, 0xc2, 0x7a, 0x81, 0x7a, 0x10, 0x06, +0x00, 0x14, 0x08, 0x43, 0xa0, 0x70, 0x00, 0x0a, 0xe0, 0x70, 0x18, 0x7c, 0x81, 0x07, 0x58, 0x7c, +0x89, 0x0f, 0x09, 0xf0, 0x5e, 0xec, 0x00, 0xe0, 0x49, 0xe3, 0x6b, 0x46, 0x60, 0x71, 0x18, 0x7c, +0x01, 0x22, 0x81, 0x07, 0x58, 0x7c, 0x89, 0x0f, 0x09, 0xf0, 0x56, 0xec, 0x0b, 0xe0, 0x00, 0x20, +0xa0, 0x70, 0x01, 0x00, 0xe0, 0x70, 0x01, 0x20, 0x09, 0xf0, 0x52, 0xec, 0x60, 0x71, 0x00, 0x21, +0x01, 0x20, 0x09, 0xf0, 0x52, 0xec, 0x20, 0x71, 0x0e, 0x20, 0x97, 0xe7, 0x60, 0x78, 0x21, 0x78, +0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x06, 0xd1, 0x21, 0x00, 0x30, 0x00, 0x09, 0xf0, 0x48, 0xec, +0x00, 0x28, 0x00, 0xd1, 0x0b, 0x97, 0x20, 0x00, 0x09, 0xf0, 0x46, 0xec, 0x10, 0x30, 0x85, 0xe7, +0x30, 0x00, 0x04, 0xaa, 0x05, 0xa9, 0x09, 0xf0, 0x44, 0xec, 0x0a, 0x20, 0xa8, 0x70, 0x00, 0x20, +0x6b, 0x46, 0xe8, 0x70, 0x18, 0x7d, 0x20, 0x70, 0x18, 0x7c, 0x60, 0x70, 0x61, 0xe4, 0x20, 0x88, +0x01, 0x28, 0x2d, 0xd1, 0x30, 0x00, 0xff, 0x30, 0x21, 0x30, 0x1a, 0x90, 0x87, 0x8b, 0xc0, 0x8b, +0xa4, 0x1c, 0x05, 0x90, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x03, 0xd0, 0x09, 0xf0, +0x2c, 0xec, 0x1a, 0x99, 0x88, 0x83, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x03, 0xd0, +0x09, 0xf0, 0x22, 0xec, 0x1a, 0x99, 0xc8, 0x83, 0x26, 0x20, 0xa8, 0x70, 0x00, 0x20, 0xe8, 0x70, +0x1a, 0x98, 0x80, 0x8b, 0xb8, 0x42, 0x02, 0xd0, 0x30, 0x00, 0x09, 0xf0, 0x1a, 0xec, 0x1a, 0x98, +0x05, 0x99, 0xc0, 0x8b, 0x88, 0x42, 0xd1, 0xd0, 0x30, 0x00, 0x09, 0xf0, 0x16, 0xec, 0x30, 0xe4, +0x32, 0x00, 0xff, 0x32, 0x21, 0x32, 0x93, 0x8b, 0x39, 0x00, 0x99, 0x40, 0xa1, 0x70, 0x09, 0x0a, +0xe1, 0x70, 0xd1, 0x8b, 0x26, 0x20, 0x8f, 0x40, 0x39, 0x0a, 0x27, 0x71, 0x61, 0x71, 0xa8, 0x70, +0x00, 0x20, 0xe8, 0x70, 0x06, 0x99, 0xa4, 0x1d, 0x20, 0x00, 0x08, 0x22, 0x18, 0x31, 0x10, 0x30, +0x09, 0xf0, 0xe2, 0xe8, 0x37, 0x00, 0xa0, 0x37, 0x78, 0x89, 0xa0, 0x70, 0x00, 0x0a, 0xe0, 0x70, +0xb8, 0x89, 0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, 0x30, 0x00, 0x09, 0xf0, 0xf2, 0xeb, 0x00, 0x04, +0x00, 0x14, 0x01, 0x0a, 0x20, 0x71, 0x62, 0x30, 0x61, 0x71, 0x03, 0xd1, 0x38, 0x8a, 0x20, 0x71, +0x00, 0x0a, 0x60, 0x71, 0xb8, 0x88, 0xa0, 0x72, 0x00, 0x0a, 0xe0, 0x72, 0xf8, 0x88, 0x20, 0x72, +0x00, 0x0a, 0x0b, 0xe0, 0x00, 0xa8, 0x00, 0x80, 0xb8, 0xf0, 0x00, 0xc0, 0x18, 0x33, 0x01, 0xc0, +0x73, 0xef, 0x00, 0xc0, 0x82, 0x55, 0x00, 0x04, 0xff, 0xff, 0x00, 0x00, 0x60, 0x72, 0x30, 0x00, +0x09, 0xf0, 0xbe, 0xe8, 0x20, 0x73, 0x00, 0x0a, 0x7e, 0xc6, 0x0b, 0xfc, 0x01, 0x00, 0x00, 0x00, +0xc8, 0x48, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xff, 0x17, 0xfa, 0xb8, 0x60, 0x73, 0x30, 0x00, +0x09, 0xf0, 0xcc, 0xeb, 0x00, 0x04, 0x00, 0x14, 0x01, 0x0a, 0xa0, 0x71, 0xe1, 0x71, 0x01, 0x0a, +0xa0, 0x73, 0x62, 0x30, 0xe1, 0x73, 0xa4, 0xd1, 0x78, 0x8a, 0xa0, 0x71, 0x01, 0x0a, 0xe1, 0x71, +0xa0, 0x73, 0x00, 0x0a, 0xe0, 0x73, 0x23, 0xe4, 0x10, 0x20, 0xa8, 0x70, 0x00, 0x20, 0xe8, 0x70, +0x30, 0x00, 0xa0, 0x30, 0x04, 0x21, 0x19, 0x90, 0x41, 0x5e, 0x08, 0x00, 0x09, 0xf0, 0xb2, 0xeb, +0xa0, 0x70, 0x00, 0x0a, 0xe0, 0x70, 0x19, 0x98, 0x08, 0x21, 0x41, 0x5e, 0x08, 0x00, 0x09, 0xf0, +0xae, 0xeb, 0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, 0x30, 0x00, 0x09, 0xf0, 0xa0, 0xeb, 0x09, 0xf0, +0xa2, 0xeb, 0xa0, 0x71, 0x00, 0x0a, 0xe0, 0x71, 0x30, 0x00, 0x09, 0xf0, 0x80, 0xe8, 0x09, 0xf0, +0x9e, 0xeb, 0x20, 0x71, 0x00, 0x0a, 0x60, 0x71, 0x70, 0x7a, 0x03, 0x28, 0x01, 0xd0, 0x01, 0x28, +0xd1, 0xd1, 0xf0, 0x68, 0xc0, 0x04, 0xce, 0xd4, 0x5e, 0xe6, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, +0x08, 0x43, 0x03, 0x28, 0x00, 0xd0, 0x74, 0xe6, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, +0xfa, 0x49, 0x88, 0x42, 0x07, 0xd1, 0x01, 0x20, 0x09, 0xf0, 0x84, 0xeb, 0x00, 0x28, 0xeb, 0xd0, +0x09, 0xf0, 0x84, 0xeb, 0x13, 0xe4, 0x00, 0x06, 0x00, 0x0e, 0x09, 0xf0, 0x84, 0xeb, 0x00, 0x28, +0xe2, 0xd0, 0x00, 0x20, 0x09, 0xf0, 0x76, 0xeb, 0x09, 0xe4, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, +0x08, 0x43, 0x7e, 0xd0, 0x05, 0x28, 0x4f, 0xd0, 0xfe, 0x28, 0x7b, 0xd0, 0xff, 0x28, 0xa2, 0xd1, +0xe0, 0x78, 0xa2, 0x78, 0x01, 0x02, 0xea, 0x48, 0x11, 0x43, 0x00, 0x88, 0x41, 0x40, 0x05, 0x91, +0xe2, 0x78, 0xa3, 0x78, 0x12, 0x02, 0x1a, 0x43, 0x0a, 0x40, 0x05, 0x92, 0xe1, 0x78, 0xa2, 0x78, +0x09, 0x02, 0x11, 0x43, 0x8a, 0x05, 0x92, 0x0f, 0x08, 0xd0, 0x82, 0x05, 0x92, 0x0f, 0x05, 0xd0, +0x03, 0x22, 0x12, 0x02, 0x11, 0x40, 0x10, 0x40, 0x81, 0x42, 0xb5, 0xd1, 0xe8, 0x78, 0xa9, 0x78, +0x00, 0x02, 0x08, 0x43, 0x0c, 0x38, 0x02, 0x04, 0x12, 0x0c, 0x21, 0x1d, 0x30, 0x00, 0x05, 0xab, +0x09, 0xf0, 0x4c, 0xeb, 0x01, 0x28, 0xa7, 0xd0, 0xd5, 0x4f, 0xe1, 0x78, 0xa2, 0x78, 0x38, 0x88, +0x09, 0x02, 0x11, 0x43, 0x08, 0x43, 0x6b, 0x46, 0x38, 0x80, 0x98, 0x8a, 0x80, 0x05, 0x80, 0x0f, +0x08, 0xd0, 0x30, 0x00, 0x09, 0xf0, 0x3e, 0xeb, 0xe1, 0x78, 0xa2, 0x78, 0x09, 0x02, 0x11, 0x43, +0x09, 0x0a, 0x01, 0x80, 0x6b, 0x46, 0x98, 0x8a, 0xc0, 0x07, 0x17, 0xd0, 0x09, 0xf0, 0x36, 0xeb, +0x00, 0x28, 0x10, 0xd0, 0x02, 0x20, 0x0f, 0xe0, 0xc6, 0x48, 0x08, 0x90, 0xc6, 0x48, 0x40, 0x78, +0x00, 0x28, 0x97, 0xd0, 0x13, 0x98, 0x00, 0x88, 0x00, 0x28, 0x93, 0xd1, 0x09, 0xf0, 0x16, 0xea, +0x00, 0x22, 0x1e, 0x21, 0x7c, 0xe2, 0x07, 0x20, 0xc0, 0x49, 0x08, 0x70, 0x6b, 0x46, 0x98, 0x8a, +0x31, 0x21, 0x09, 0x01, 0x08, 0x42, 0x85, 0xd0, 0x68, 0x78, 0x29, 0x78, 0x00, 0x02, 0x08, 0x43, +0x01, 0x21, 0xc9, 0x03, 0x08, 0x43, 0x28, 0x70, 0x00, 0x0a, 0x68, 0x70, 0x98, 0x8d, 0xa8, 0x71, +0x00, 0x0a, 0xe8, 0x71, 0xe8, 0x78, 0xa9, 0x78, 0xbf, 0x1c, 0x02, 0x02, 0x0a, 0x43, 0x10, 0x99, +0x01, 0xe0, 0x76, 0xe0, 0x3b, 0xe0, 0x0f, 0x98, 0x09, 0xf0, 0xb0, 0xe9, 0x02, 0x20, 0x09, 0xf0, +0x6e, 0xe8, 0x00, 0x28, 0x05, 0xd1, 0x02, 0x21, 0x08, 0x00, 0x09, 0xf0, 0x7c, 0xe8, 0x00, 0x28, +0x06, 0xd0, 0xff, 0x21, 0x49, 0x31, 0x09, 0x5c, 0x07, 0x29, 0x01, 0xd1, 0x09, 0xf0, 0xf2, 0xea, +0x78, 0x78, 0x39, 0x78, 0x00, 0x02, 0x08, 0x43, 0x6b, 0x46, 0x58, 0x81, 0xf8, 0x78, 0xb9, 0x78, +0x00, 0x02, 0x08, 0x43, 0x98, 0x81, 0x78, 0x79, 0x39, 0x79, 0x00, 0x02, 0x08, 0x43, 0xd8, 0x81, +0xf8, 0x79, 0xb9, 0x79, 0x00, 0x02, 0x08, 0x43, 0x18, 0x82, 0x78, 0x7a, 0x39, 0x7a, 0x00, 0x02, +0x08, 0x43, 0x58, 0x82, 0x00, 0x20, 0x09, 0x90, 0x11, 0x98, 0x09, 0xf0, 0x24, 0xe9, 0x08, 0xf0, +0xca, 0xef, 0x0f, 0x99, 0x0b, 0xaa, 0x02, 0xa8, 0xfe, 0xf7, 0xd1, 0xfb, 0x37, 0xe0, 0xe0, 0x78, +0xa1, 0x78, 0x8f, 0x4f, 0x04, 0x02, 0x38, 0x88, 0x0c, 0x43, 0x04, 0x40, 0xe0, 0x07, 0x05, 0xd0, +0x09, 0xf0, 0xc4, 0xea, 0x38, 0x88, 0x40, 0x08, 0x40, 0x00, 0x38, 0x80, 0x31, 0x20, 0x00, 0x01, +0x04, 0x42, 0x86, 0xd0, 0x68, 0x78, 0x29, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x21, 0xc9, 0x03, +0x08, 0x43, 0x28, 0x70, 0x00, 0x0a, 0x6b, 0x46, 0x68, 0x70, 0x98, 0x8d, 0xa8, 0x71, 0x00, 0x0a, +0xe8, 0x71, 0xe8, 0x78, 0xa9, 0x78, 0x02, 0x02, 0x0a, 0x43, 0x10, 0x99, 0x0f, 0x98, 0x09, 0xf0, +0x4e, 0xe9, 0x21, 0x00, 0x30, 0x00, 0x09, 0xf0, 0xa6, 0xea, 0x04, 0x00, 0x00, 0x20, 0x09, 0x90, +0x11, 0x98, 0x09, 0xf0, 0xe8, 0xe8, 0x00, 0x2c, 0xdb, 0xd0, 0xfe, 0xf7, 0x88, 0xfb, 0x0d, 0x90, +0x3e, 0xe4, 0x73, 0x48, 0x21, 0x1d, 0x00, 0x88, 0xa0, 0x70, 0x00, 0x0a, 0xe0, 0x70, 0x30, 0x00, +0x09, 0xf0, 0x94, 0xea, 0x45, 0xe1, 0x09, 0x20, 0x80, 0x01, 0x30, 0x18, 0x82, 0x6a, 0x08, 0x32, +0x00, 0x21, 0x05, 0xe0, 0x09, 0x20, 0x80, 0x01, 0x30, 0x18, 0x42, 0x6a, 0x08, 0x32, 0x01, 0x21, +0x20, 0x00, 0x09, 0xf0, 0x88, 0xea, 0x23, 0xe4, 0x09, 0xf0, 0x88, 0xea, 0x00, 0x28, 0x01, 0xd0, +0xff, 0xf7, 0xab, 0xf8, 0x66, 0x48, 0x07, 0x80, 0xfa, 0xe7, 0x0e, 0x98, 0xa1, 0x1d, 0x80, 0x1f, +0x02, 0x04, 0x12, 0x14, 0x30, 0x00, 0x09, 0xf0, 0x7e, 0xea, 0x09, 0xf0, 0x80, 0xea, 0x61, 0x4c, +0x04, 0x20, 0x20, 0x56, 0x41, 0x1c, 0xcb, 0xd0, 0x81, 0x1c, 0xc9, 0xd0, 0x5e, 0x4a, 0xd1, 0x6a, +0x87, 0x40, 0x39, 0x43, 0xd1, 0x62, 0x20, 0x79, 0x01, 0x21, 0x09, 0xf0, 0x74, 0xea, 0x04, 0x20, +0x20, 0x56, 0x00, 0x21, 0x09, 0xf0, 0x72, 0xea, 0x0f, 0xe4, 0x00, 0x20, 0x55, 0x49, 0xc0, 0x43, +0x09, 0xf0, 0x90, 0xe8, 0x09, 0xf0, 0x6e, 0xea, 0x51, 0x49, 0x00, 0x20, 0x08, 0x80, 0x04, 0xe4, +0x09, 0xf0, 0x2c, 0xe9, 0x68, 0xe4, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, +0x19, 0xd1, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x00, 0xd1, 0x01, 0xe5, 0x01, 0x28, +0x01, 0xd0, 0x02, 0x28, 0x74, 0xd1, 0x49, 0x49, 0x08, 0x70, 0x09, 0xf0, 0x58, 0xea, 0x09, 0xf0, +0x5a, 0xea, 0x47, 0x48, 0x00, 0x22, 0x00, 0x68, 0x09, 0x21, 0x09, 0xf0, 0xf0, 0xe8, 0x3e, 0x49, +0x00, 0x20, 0x08, 0x72, 0x48, 0xe4, 0x41, 0x48, 0x00, 0x78, 0x57, 0xe3, 0x09, 0x20, 0x80, 0x01, +0x37, 0x18, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x25, 0xd1, 0xe8, 0x78, +0xa9, 0x78, 0x00, 0x02, 0x08, 0x43, 0x10, 0x99, 0x42, 0x18, 0xa1, 0x1c, 0x30, 0x00, 0x09, 0xf0, +0x3e, 0xea, 0x08, 0xf0, 0x24, 0xef, 0xb8, 0x6a, 0x01, 0x00, 0x08, 0x31, 0x06, 0xd0, 0x80, 0x7c, +0xc0, 0x07, 0x03, 0xd0, 0x09, 0xf0, 0x6a, 0xe8, 0x09, 0xf0, 0x6c, 0xe8, 0x28, 0x48, 0x00, 0x88, +0x00, 0x28, 0xa9, 0xd0, 0x09, 0xf0, 0x72, 0xe8, 0xc4, 0x56, 0x82, 0x82, 0x01, 0x00, 0x00, 0x00, +0xc4, 0x4c, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x78, 0x41, 0xf4, 0xea, 0x00, 0x28, 0xa5, 0xd0, +0xf0, 0x68, 0xc0, 0x07, 0xa2, 0xd0, 0x30, 0x00, 0x09, 0xf0, 0x22, 0xe8, 0x16, 0xe4, 0x00, 0x28, +0x1c, 0xd1, 0x0e, 0x98, 0x0f, 0x9d, 0x80, 0x1e, 0x01, 0x04, 0x2b, 0x00, 0x0a, 0x33, 0x09, 0x0c, +0xa2, 0x1c, 0x30, 0x00, 0x09, 0xf0, 0x18, 0xea, 0x0a, 0x99, 0x01, 0x22, 0xd2, 0x03, 0x11, 0x43, +0x29, 0x70, 0x09, 0x0a, 0x0a, 0x30, 0x69, 0x70, 0xa8, 0x70, 0x00, 0x0a, 0xe8, 0x70, 0x00, 0x20, +0xa8, 0x71, 0xe8, 0x71, 0x11, 0x98, 0x09, 0xf0, 0x20, 0xe8, 0x02, 0xe2, 0x04, 0x28, 0x97, 0xd1, +0x0e, 0x98, 0xa2, 0x1c, 0x80, 0x1e, 0x01, 0x04, 0x09, 0x0c, 0x30, 0x00, 0x09, 0xf0, 0x00, 0xea, +0xa8, 0x71, 0x00, 0x0a, 0xfe, 0xf7, 0x41, 0xff, 0xa1, 0x1c, 0x30, 0x00, 0x09, 0xf0, 0xfc, 0xe9, +0xff, 0xf7, 0xd3, 0xf8, 0x02, 0xe1, 0x20, 0x00, 0x09, 0xf0, 0xfa, 0xe9, 0x05, 0xe0, 0x08, 0x30, +0x79, 0xe3, 0x21, 0x00, 0x30, 0x00, 0x09, 0xf0, 0xf8, 0xe9, 0x00, 0x28, 0xf7, 0xd1, 0xc3, 0xe3, +0xff, 0xff, 0x00, 0x00, 0x04, 0x36, 0x01, 0xc0, 0x7f, 0xb1, 0x00, 0x00, 0xc4, 0x33, 0x01, 0xc0, +0x34, 0xf0, 0x00, 0xc0, 0x38, 0xf0, 0x00, 0xc0, 0xcc, 0xee, 0x00, 0xc0, 0x00, 0x23, 0x00, 0x80, +0x98, 0xee, 0x00, 0xc0, 0x18, 0xee, 0x00, 0xc0, 0x0e, 0x9a, 0x21, 0x00, 0x30, 0x00, 0x09, 0xf0, +0xe0, 0xe9, 0x01, 0x28, 0x01, 0xd1, 0xff, 0xf7, 0xe4, 0xf8, 0x11, 0xe4, 0x0e, 0x99, 0x20, 0x00, +0x09, 0xf0, 0xda, 0xe9, 0x0c, 0xe4, 0x20, 0x00, 0x09, 0xf0, 0xda, 0xe9, 0xd5, 0xe7, 0x21, 0x00, +0x30, 0x00, 0x09, 0xf0, 0xda, 0xe9, 0xd0, 0xe7, 0x20, 0x78, 0x22, 0x00, 0x01, 0x28, 0xae, 0xd1, +0x0e, 0x9b, 0x51, 0x78, 0x9b, 0x1e, 0x92, 0x1c, 0x30, 0x00, 0x09, 0xf0, 0xd2, 0xe9, 0x40, 0x1c, +0x97, 0xe4, 0x0f, 0x9d, 0x21, 0x78, 0x28, 0x00, 0x08, 0x30, 0x09, 0xf0, 0xce, 0xe9, 0x08, 0x30, +0xa8, 0x70, 0x00, 0x0a, 0xe8, 0x70, 0x0a, 0x98, 0x01, 0x21, 0xc9, 0x03, 0x08, 0x43, 0x28, 0x70, +0x00, 0x0a, 0x68, 0x70, 0x8b, 0xe7, 0x00, 0x20, 0x05, 0x90, 0x21, 0x00, 0x30, 0x00, 0x05, 0xaa, +0x09, 0xf0, 0xbe, 0xe9, 0x00, 0x28, 0xaa, 0xd0, 0x12, 0x20, 0xa8, 0x70, 0x00, 0x20, 0xe8, 0x70, +0x05, 0x98, 0x00, 0x28, 0xbf, 0xd1, 0xda, 0xe3, 0x20, 0x00, 0x09, 0xf0, 0xb6, 0xe9, 0xff, 0x20, +0x21, 0x30, 0x10, 0xe3, 0x60, 0x78, 0x21, 0x78, 0x03, 0x02, 0x0b, 0x43, 0x05, 0xd1, 0x21, 0x00, +0x30, 0x00, 0xfc, 0xf7, 0x62, 0xfb, 0x0c, 0x30, 0x05, 0xe3, 0x0e, 0x98, 0x21, 0x00, 0x02, 0x04, +0x12, 0x0c, 0x30, 0x00, 0xfc, 0xf7, 0x4c, 0xfa, 0xc1, 0xe3, 0x00, 0x20, 0x05, 0x90, 0x04, 0x90, +0x02, 0x90, 0x21, 0x00, 0x6a, 0x46, 0x04, 0xa8, 0x05, 0xab, 0x09, 0xf0, 0x9a, 0xe9, 0x04, 0x98, +0x00, 0x28, 0x73, 0xd1, 0xff, 0x48, 0x00, 0x68, 0xff, 0x49, 0x08, 0x40, 0x18, 0x90, 0x01, 0xd1, +0x09, 0xf0, 0x92, 0xe9, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x6b, 0x46, 0x03, 0x90, +0x18, 0x78, 0x30, 0x21, 0x41, 0x43, 0xf9, 0x48, 0x09, 0x18, 0x03, 0x98, 0xc0, 0x00, 0x08, 0x18, +0x42, 0x68, 0x00, 0x2a, 0x03, 0xd0, 0x02, 0xa9, 0x68, 0x46, 0x90, 0x47, 0x00, 0xe0, 0x02, 0x97, +0x18, 0x98, 0x00, 0x28, 0x01, 0xd1, 0x09, 0xf0, 0x7c, 0xe9, 0x02, 0x98, 0x00, 0x28, 0xd8, 0xd1, +0x00, 0x21, 0x14, 0x20, 0x6b, 0x46, 0x0b, 0x91, 0x18, 0x56, 0x00, 0x28, 0x08, 0xd0, 0xea, 0x78, +0xab, 0x78, 0x12, 0x02, 0x1a, 0x43, 0x10, 0x18, 0xa8, 0x70, 0x00, 0x0a, 0xe8, 0x70, 0x05, 0x91, +0x03, 0x98, 0x04, 0x28, 0x9f, 0xd1, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0xe8, 0x78, +0xa9, 0x78, 0x03, 0xd1, 0x00, 0x02, 0x08, 0x43, 0x08, 0x38, 0xac, 0xe2, 0x00, 0x02, 0x08, 0x43, +0x2d, 0xe7, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x07, 0xd1, 0xa0, 0x1c, +0x08, 0xf0, 0xee, 0xee, 0x01, 0x00, 0x30, 0x00, 0x09, 0xf0, 0x4e, 0xe9, 0x5f, 0xe3, 0x06, 0x98, +0xa1, 0x1c, 0xff, 0x30, 0x40, 0x1c, 0x40, 0x69, 0x08, 0xf0, 0x16, 0xef, 0x38, 0xe4, 0x60, 0x78, +0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x09, 0xd1, 0x0e, 0x98, 0x02, 0x28, 0x01, 0xd1, +0x00, 0x21, 0x00, 0xe0, 0x21, 0x00, 0x30, 0x00, 0x09, 0xf0, 0x3a, 0xe9, 0x6e, 0xe2, 0x00, 0x28, +0x8f, 0xd1, 0x21, 0x00, 0x30, 0x00, 0x09, 0xf0, 0x38, 0xe9, 0x7c, 0xe2, 0x4e, 0xe2, 0x60, 0x78, +0x21, 0x78, 0x00, 0x02, 0x22, 0x00, 0x08, 0x43, 0x01, 0x28, 0x02, 0xd1, 0x17, 0x21, 0xfe, 0xf7, +0x17, 0xfe, 0x18, 0x21, 0xc2, 0x48, 0x00, 0x68, 0x08, 0xf0, 0x72, 0xef, 0x2f, 0xe3, 0xc0, 0x48, +0x1d, 0x21, 0x00, 0x68, 0x04, 0xaa, 0x08, 0xf0, 0x6c, 0xef, 0x6b, 0x46, 0x18, 0x8a, 0xa0, 0x70, +0x00, 0x0a, 0xe0, 0x70, 0x58, 0x8a, 0xee, 0xe2, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, +0x01, 0x28, 0x06, 0xd1, 0x20, 0x00, 0x00, 0xf0, 0x0a, 0xff, 0x00, 0x28, 0x00, 0xd1, 0xe4, 0xe4, +0x15, 0xe3, 0xa9, 0x1c, 0x20, 0x00, 0x00, 0xf0, 0xc3, 0xfe, 0x10, 0xe3, 0x20, 0x78, 0x64, 0x28, +0x04, 0xda, 0x00, 0x06, 0x00, 0x0e, 0x61, 0x1c, 0x08, 0xf0, 0x8a, 0xef, 0x60, 0x1c, 0x08, 0xf0, +0x8c, 0xef, 0x0a, 0x30, 0x3f, 0xe2, 0x09, 0xf0, 0x7c, 0xe8, 0x03, 0x20, 0x08, 0xf0, 0x40, 0xed, +0x04, 0x00, 0x17, 0x27, 0x7f, 0x01, 0x14, 0xe0, 0x60, 0x7a, 0x00, 0x28, 0x0c, 0xd0, 0xe0, 0x19, +0x00, 0x78, 0x00, 0x28, 0x08, 0xd0, 0x20, 0x00, 0x09, 0xf0, 0xea, 0xe8, 0x01, 0x20, 0x08, 0xf0, +0x6c, 0xed, 0x20, 0x00, 0x09, 0xf0, 0xe8, 0xe8, 0x03, 0x21, 0x20, 0x00, 0x08, 0xf0, 0xc0, 0xed, +0x04, 0x00, 0x00, 0x2c, 0xe8, 0xd1, 0x00, 0x20, 0x09, 0xf0, 0xe2, 0xe8, 0x09, 0xf0, 0xe4, 0xe8, +0x01, 0x20, 0x08, 0xf0, 0x5a, 0xed, 0x68, 0x78, 0x29, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x21, +0xc9, 0x03, 0x08, 0x43, 0x28, 0x70, 0x00, 0x0a, 0x6b, 0x46, 0x68, 0x70, 0x98, 0x8d, 0xa8, 0x71, +0x00, 0x0a, 0xe8, 0x71, 0xe8, 0x78, 0xa9, 0x78, 0x02, 0x02, 0x0a, 0x43, 0x10, 0x99, 0x0f, 0x98, +0x08, 0xf0, 0xe6, 0xee, 0x11, 0x98, 0x08, 0xf0, 0x88, 0xee, 0x00, 0x21, 0x30, 0x00, 0xfe, 0xf7, +0xbb, 0xf8, 0x00, 0x20, 0x0d, 0x90, 0x09, 0x90, 0x86, 0x48, 0x09, 0xf0, 0xc2, 0xe8, 0x00, 0x28, +0xfa, 0xd1, 0xfe, 0xf7, 0x0a, 0xf9, 0x08, 0xf0, 0xc0, 0xef, 0x83, 0x49, 0x00, 0x20, 0x48, 0x61, +0x82, 0x48, 0xc1, 0x68, 0x04, 0x22, 0x91, 0x43, 0xc1, 0x60, 0xa8, 0xe2, 0x28, 0x79, 0x04, 0x90, +0x68, 0x79, 0x00, 0x22, 0x01, 0x07, 0x09, 0x0f, 0x04, 0x09, 0x79, 0x48, 0x05, 0x91, 0x00, 0x68, +0x0b, 0x21, 0x08, 0xf0, 0xde, 0xee, 0x11, 0x98, 0x08, 0xf0, 0x5e, 0xee, 0x76, 0x4d, 0xe8, 0x68, +0x08, 0xf0, 0x5a, 0xee, 0x06, 0xf0, 0xa2, 0xfb, 0x00, 0x28, 0x00, 0xd0, 0x0b, 0x97, 0x74, 0x49, +0x00, 0x20, 0x08, 0x80, 0x73, 0x49, 0x7d, 0x27, 0x08, 0x80, 0x73, 0x49, 0x3f, 0x01, 0x08, 0x60, +0x02, 0xe0, 0x01, 0x20, 0x08, 0xf0, 0x00, 0xed, 0x26, 0x23, 0xf5, 0xe1, 0x01, 0x00, 0x00, 0x00, +0xc0, 0x50, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xbe, 0xd0, 0xab, 0xac, 0x6a, 0x48, 0x00, 0x22, +0x39, 0x00, 0x08, 0xf0, 0x38, 0xee, 0x00, 0x28, 0xe8, 0x60, 0xf4, 0xd0, 0xe8, 0x68, 0x20, 0x21, +0x01, 0x81, 0x46, 0x61, 0x20, 0x30, 0x28, 0x63, 0x0a, 0x99, 0x01, 0x22, 0xd2, 0x03, 0x11, 0x43, +0x01, 0x70, 0x09, 0x0a, 0x41, 0x70, 0x0e, 0x99, 0x6b, 0x46, 0x08, 0x31, 0x81, 0x70, 0x09, 0x0a, +0xc1, 0x70, 0x99, 0x8d, 0x81, 0x71, 0x09, 0x0a, 0xc1, 0x71, 0x04, 0x99, 0x01, 0x71, 0x41, 0x79, +0x22, 0x01, 0x09, 0x07, 0x09, 0x0f, 0x11, 0x43, 0x05, 0x9a, 0x09, 0x09, 0x09, 0x01, 0x12, 0x07, +0x12, 0x0f, 0x11, 0x43, 0x41, 0x71, 0x00, 0x21, 0x30, 0x00, 0xfe, 0xf7, 0x4f, 0xf8, 0x7e, 0xe2, +0xe8, 0x78, 0xa9, 0x78, 0x00, 0x02, 0x08, 0x43, 0xe1, 0x78, 0xa2, 0x78, 0x0c, 0x38, 0x09, 0x02, +0x00, 0x04, 0x11, 0x43, 0x00, 0x0c, 0x04, 0x91, 0x05, 0x90, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, +0x27, 0x1d, 0x08, 0x43, 0x01, 0x28, 0x72, 0xd1, 0x0c, 0x20, 0xa8, 0x70, 0x00, 0x20, 0xe8, 0x70, +0x49, 0xe0, 0x78, 0x78, 0x39, 0x78, 0x00, 0x02, 0x08, 0x43, 0xff, 0x38, 0x52, 0x38, 0x1b, 0xd0, +0x02, 0x28, 0x0a, 0xd0, 0x68, 0x28, 0x25, 0xd1, 0x31, 0x00, 0x38, 0x00, 0x09, 0xf0, 0x36, 0xe8, +0x6b, 0x46, 0x99, 0x8d, 0x40, 0x18, 0x0b, 0x90, 0x1c, 0xe0, 0x04, 0x98, 0x32, 0x00, 0x39, 0x00, +0x09, 0xf0, 0x30, 0xe8, 0x6b, 0x46, 0x99, 0x8d, 0x32, 0x00, 0x40, 0x18, 0x0b, 0x90, 0x04, 0x98, +0x39, 0x00, 0x09, 0xf0, 0x2c, 0xe8, 0x0d, 0xe0, 0x04, 0x98, 0x32, 0x00, 0x39, 0x00, 0x09, 0xf0, +0x2a, 0xe8, 0x6b, 0x46, 0x99, 0x8d, 0x32, 0x00, 0x40, 0x18, 0x0b, 0x90, 0x04, 0x98, 0x39, 0x00, +0x09, 0xf0, 0x24, 0xe8, 0xf8, 0x78, 0xb9, 0x78, 0x00, 0x02, 0x08, 0x43, 0x05, 0x99, 0x09, 0x1a, +0x09, 0x1f, 0x09, 0x04, 0x09, 0x0c, 0x05, 0x91, 0xe9, 0x78, 0xaa, 0x78, 0x09, 0x02, 0x11, 0x43, +0x08, 0x18, 0x00, 0x1d, 0xa8, 0x70, 0x00, 0x0a, 0xe8, 0x70, 0xf8, 0x78, 0xb9, 0x78, 0x00, 0x02, +0x08, 0x43, 0x3f, 0x1d, 0xc7, 0x19, 0x05, 0x98, 0x04, 0x28, 0xb2, 0xd8, 0x6b, 0x46, 0x98, 0x8d, +0x00, 0x28, 0x1a, 0xd1, 0x30, 0x00, 0x00, 0x24, 0xff, 0x30, 0x21, 0x4f, 0x4a, 0x30, 0x17, 0x90, +0x18, 0x20, 0x60, 0x43, 0x39, 0x5c, 0x00, 0x29, 0x0a, 0xd0, 0xc1, 0x19, 0x17, 0x98, 0x09, 0x1d, +0x06, 0x22, 0x08, 0xf0, 0xf8, 0xef, 0x00, 0x28, 0x02, 0xd1, 0x20, 0x00, 0x08, 0xf0, 0xf6, 0xef, +0x64, 0x1c, 0x24, 0x04, 0x24, 0x0c, 0x04, 0x2c, 0xea, 0xd3, 0xca, 0xe1, 0xff, 0xe7, 0x0c, 0x20, +0xa8, 0x70, 0x00, 0x20, 0xe8, 0x70, 0x49, 0xe0, 0x78, 0x78, 0x39, 0x78, 0x00, 0x02, 0x08, 0x43, +0xff, 0x38, 0x52, 0x38, 0x24, 0xd0, 0x02, 0x28, 0x1c, 0xd0, 0x68, 0x28, 0x25, 0xd1, 0x31, 0x00, +0x38, 0x00, 0x08, 0xf0, 0xe0, 0xef, 0x20, 0xe0, 0x00, 0x21, 0x00, 0x80, 0x00, 0x08, 0x00, 0x08, +0x08, 0x1d, 0x01, 0xc0, 0x18, 0xee, 0x00, 0xc0, 0x9c, 0x00, 0x00, 0x04, 0x54, 0xf0, 0x00, 0xc0, +0x00, 0xa7, 0x00, 0x80, 0x04, 0x36, 0x01, 0xc0, 0x48, 0xf0, 0x00, 0xc0, 0x3c, 0xf0, 0x00, 0xc0, +0x4c, 0x7b, 0x02, 0x00, 0x04, 0x98, 0x32, 0x00, 0x39, 0x00, 0x08, 0xf0, 0xb0, 0xef, 0x04, 0xe0, +0x04, 0x98, 0x32, 0x00, 0x39, 0x00, 0x08, 0xf0, 0xb2, 0xef, 0xf8, 0x78, 0xb9, 0x78, 0x00, 0x02, +0x08, 0x43, 0x05, 0x99, 0x09, 0x1a, 0x09, 0x1f, 0x09, 0x04, 0x09, 0x0c, 0x05, 0x91, 0xe9, 0x78, +0xaa, 0x78, 0x09, 0x02, 0x11, 0x43, 0x08, 0x18, 0x00, 0x1d, 0xa8, 0x70, 0x00, 0x0a, 0xe8, 0x70, +0xf8, 0x78, 0xb9, 0x78, 0x00, 0x02, 0x08, 0x43, 0x3f, 0x1d, 0xc7, 0x19, 0x05, 0x98, 0x04, 0x28, +0xb2, 0xd8, 0x76, 0xe1, 0x00, 0x28, 0x13, 0xd1, 0xff, 0x48, 0x40, 0x88, 0xff, 0x49, 0x88, 0x42, +0x01, 0xd3, 0xff, 0x48, 0x09, 0xe0, 0xff, 0x49, 0x88, 0x42, 0x01, 0xd3, 0xfe, 0x48, 0x04, 0xe0, +0x7d, 0x21, 0xc9, 0x00, 0x88, 0x42, 0x03, 0xd3, 0xfc, 0x48, 0xa0, 0x70, 0x00, 0x0a, 0xe0, 0x70, +0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x05, 0x90, 0xf9, 0x48, 0x00, 0x22, 0x00, 0x68, +0x4c, 0x21, 0x08, 0xf0, 0x98, 0xed, 0x07, 0x04, 0x3f, 0x0c, 0x05, 0x98, 0x39, 0x00, 0x08, 0xf0, +0x9e, 0xeb, 0x78, 0x43, 0xa0, 0x70, 0x00, 0x0a, 0xfe, 0xf7, 0xda, 0xfa, 0x01, 0x00, 0x40, 0x31, +0x8a, 0x78, 0xff, 0x30, 0xa2, 0x70, 0xc9, 0x78, 0xff, 0x30, 0x80, 0x1c, 0xe1, 0x70, 0x81, 0x7c, +0x21, 0x71, 0xc0, 0x7c, 0x60, 0x71, 0x00, 0x20, 0xa0, 0x71, 0xe0, 0x71, 0x0e, 0xe0, 0x60, 0x78, +0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x04, 0xd1, 0x21, 0x00, 0x30, 0x00, 0x08, 0xf0, +0x5e, 0xef, 0x2e, 0xe1, 0x06, 0x98, 0x21, 0x00, 0x08, 0xf0, 0x5c, 0xef, 0x10, 0x20, 0x64, 0xe0, +0x0e, 0x99, 0x20, 0x00, 0x08, 0xf0, 0x5a, 0xef, 0x01, 0x28, 0x00, 0xd1, 0x05, 0xe5, 0x18, 0x20, +0x5b, 0xe0, 0x0e, 0x99, 0x20, 0x00, 0x08, 0xf0, 0x56, 0xef, 0x1a, 0xe1, 0x21, 0x00, 0x30, 0x00, +0x08, 0xf0, 0x54, 0xef, 0xbc, 0xe5, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, +0x10, 0xd1, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0xd2, 0x49, 0x08, 0x60, 0x08, 0xf0, +0x56, 0xed, 0x30, 0x00, 0xff, 0x30, 0x5d, 0x30, 0x08, 0xf0, 0x54, 0xed, 0x01, 0x00, 0x30, 0x00, +0x08, 0xf0, 0x54, 0xed, 0xcb, 0x48, 0x00, 0x68, 0xa0, 0x70, 0x00, 0x0a, 0xe0, 0x70, 0xca, 0x48, +0xc2, 0xe0, 0x0e, 0x9a, 0x21, 0x00, 0x30, 0x00, 0x08, 0xf0, 0x34, 0xef, 0x01, 0x28, 0xcd, 0xd0, +0x7c, 0xe0, 0x00, 0x22, 0x21, 0x78, 0x30, 0x00, 0x13, 0x00, 0x08, 0xf0, 0x90, 0xed, 0x0e, 0xe0, +0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x05, 0xd1, 0x20, 0x00, 0xfd, 0xf7, 0x29, 0xff, +0xa0, 0x70, 0x00, 0x0a, 0xe0, 0x70, 0x0c, 0x20, 0xa8, 0x70, 0x00, 0x20, 0xe8, 0x70, 0x00, 0x20, +0x0b, 0x90, 0xd6, 0xe0, 0x00, 0x28, 0x61, 0xd1, 0xe1, 0x78, 0xa3, 0x78, 0x0a, 0x02, 0x1a, 0x43, +0x01, 0x00, 0x00, 0x92, 0x22, 0x1d, 0x30, 0x00, 0x05, 0xab, 0x08, 0xf0, 0x34, 0xed, 0x00, 0x28, +0x00, 0xd1, 0x0b, 0x97, 0x6b, 0x46, 0x98, 0x8a, 0xf7, 0xe4, 0xa8, 0x70, 0x00, 0x0a, 0xe8, 0x70, +0xbf, 0xe0, 0x21, 0x00, 0x4c, 0x34, 0x30, 0x00, 0x08, 0xf0, 0xe8, 0xec, 0x21, 0x00, 0x30, 0x00, +0x08, 0xf0, 0xfc, 0xee, 0x00, 0x28, 0x00, 0xd1, 0x0b, 0x97, 0x90, 0x20, 0xed, 0xe7, 0xa0, 0x1d, +0x05, 0x90, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x53, 0xd1, 0xe0, 0x78, +0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x32, 0xd1, 0x05, 0x98, 0x41, 0x78, 0x02, 0x78, +0x08, 0x02, 0x10, 0x43, 0x01, 0x00, 0xff, 0x39, 0x2b, 0x39, 0x27, 0xd1, 0x08, 0xf0, 0xe2, 0xee, +0x9a, 0x48, 0x00, 0x68, 0x99, 0x49, 0x08, 0x27, 0xb8, 0x43, 0x08, 0x60, 0x0a, 0x20, 0x08, 0xf0, +0x0e, 0xeb, 0x60, 0x79, 0x21, 0x79, 0x00, 0x02, 0x08, 0x43, 0x95, 0x49, 0x01, 0x22, 0x08, 0x80, +0x05, 0x98, 0x00, 0x79, 0x04, 0x90, 0x05, 0x98, 0x41, 0x0e, 0xe3, 0xb2, 0x01, 0x00, 0x00, 0x00, +0xbc, 0x54, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x75, 0xce, 0xf4, 0x56, 0x41, 0x79, 0x04, 0x98, +0x01, 0xf0, 0xa5, 0xfd, 0x01, 0xf0, 0xf5, 0xfd, 0x30, 0x00, 0x08, 0xf0, 0xca, 0xee, 0x01, 0x20, +0x08, 0xf0, 0xca, 0xee, 0x8a, 0x48, 0x00, 0x68, 0x89, 0x49, 0x38, 0x43, 0x08, 0x60, 0x72, 0xe0, +0x0b, 0x97, 0x70, 0xe0, 0x08, 0xf0, 0xc4, 0xee, 0x00, 0x28, 0x12, 0xd0, 0x84, 0x4c, 0x20, 0x68, +0x08, 0x27, 0xb8, 0x43, 0x20, 0x60, 0x0a, 0x20, 0x08, 0xf0, 0xe2, 0xea, 0x81, 0x49, 0x00, 0x20, +0x08, 0x80, 0x08, 0xf0, 0xae, 0xee, 0x00, 0x20, 0x08, 0xf0, 0xae, 0xee, 0x20, 0x68, 0x38, 0x43, +0x20, 0x60, 0x30, 0x00, 0x08, 0xf0, 0xb0, 0xee, 0x55, 0xe0, 0x00, 0x28, 0xe0, 0xd1, 0x05, 0x99, +0xff, 0x20, 0x2b, 0x30, 0x08, 0x70, 0x00, 0x0a, 0x48, 0x70, 0x05, 0x99, 0x02, 0x20, 0x88, 0x70, +0x00, 0x20, 0xc8, 0x70, 0x03, 0xa9, 0x04, 0xa8, 0x01, 0xf0, 0xce, 0xfd, 0x05, 0x98, 0x6b, 0x46, +0x19, 0x7c, 0x01, 0x71, 0x05, 0x99, 0x03, 0x98, 0x48, 0x71, 0x08, 0xf0, 0x92, 0xee, 0x00, 0x28, +0x00, 0xd0, 0x01, 0x20, 0xa0, 0x70, 0x00, 0x0a, 0xe0, 0x70, 0x6a, 0x48, 0x00, 0x88, 0x20, 0x71, +0x00, 0x0a, 0x60, 0x71, 0x2f, 0xe0, 0x20, 0x00, 0xfd, 0xf7, 0x73, 0xfe, 0x00, 0x28, 0x2a, 0xd1, +0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x09, 0xd1, 0x20, 0x00, 0x08, 0x30, +0x08, 0xf0, 0xaa, 0xeb, 0x07, 0x00, 0x20, 0x1d, 0x08, 0xf0, 0xa6, 0xeb, 0x07, 0x60, 0x1a, 0xe0, +0x20, 0x1d, 0x08, 0xf0, 0xa2, 0xeb, 0x00, 0x68, 0x21, 0x00, 0x08, 0x31, 0x08, 0xf0, 0xd0, 0xeb, +0x11, 0xe0, 0xe1, 0x78, 0xa0, 0x78, 0x09, 0x06, 0x09, 0x14, 0x01, 0x43, 0x60, 0x78, 0x22, 0x78, +0x00, 0x02, 0x10, 0x43, 0x08, 0xf0, 0x64, 0xee, 0x01, 0x28, 0x00, 0xd1, 0xeb, 0xe4, 0x02, 0xe0, +0x20, 0x78, 0x08, 0xf0, 0x62, 0xee, 0x0d, 0x98, 0x00, 0x28, 0x16, 0xd0, 0x68, 0x78, 0x29, 0x78, +0x00, 0x02, 0x08, 0x43, 0x01, 0x21, 0xc9, 0x03, 0x08, 0x43, 0x28, 0x70, 0x00, 0x0a, 0x6b, 0x46, +0x68, 0x70, 0x98, 0x8d, 0xa8, 0x71, 0x00, 0x0a, 0xe8, 0x71, 0xe8, 0x78, 0xa9, 0x78, 0x02, 0x02, +0x0a, 0x43, 0x10, 0x99, 0x0f, 0x98, 0x08, 0xf0, 0x08, 0xec, 0x09, 0x98, 0x00, 0x28, 0x02, 0xd0, +0x11, 0x98, 0x08, 0xf0, 0xa6, 0xeb, 0x0d, 0x98, 0x00, 0x28, 0x0a, 0xd0, 0x08, 0x99, 0x85, 0xe5, +0x32, 0x00, 0x21, 0x00, 0x0b, 0xa8, 0x08, 0xf0, 0x3c, 0xee, 0x6b, 0x46, 0x99, 0x8d, 0x08, 0x43, +0xb7, 0xe4, 0x2e, 0x4e, 0x30, 0x78, 0x00, 0x28, 0x06, 0xd1, 0x37, 0x48, 0x08, 0xf0, 0xd4, 0xeb, +0x00, 0x28, 0x01, 0xd0, 0xfd, 0xf7, 0xf9, 0xff, 0x01, 0x20, 0x1d, 0xb0, 0xf0, 0xbd, 0x33, 0x49, +0x10, 0xb5, 0x0a, 0x78, 0x00, 0x2a, 0x05, 0xd0, 0x02, 0x22, 0x0a, 0x70, 0x30, 0x4a, 0x0a, 0x21, +0x08, 0xf0, 0x22, 0xee, 0x08, 0x20, 0x08, 0xf0, 0x24, 0xee, 0x2e, 0x48, 0x2e, 0x49, 0x00, 0x68, +0x08, 0x60, 0x10, 0xbd, 0xf0, 0xb5, 0x87, 0xb0, 0x00, 0x27, 0x05, 0x97, 0x08, 0xf0, 0x1c, 0xee, +0x08, 0xf0, 0x1e, 0xee, 0x01, 0x20, 0x04, 0x90, 0x08, 0xf0, 0xb2, 0xec, 0x17, 0x4b, 0x27, 0x4a, +0x5f, 0x61, 0xd0, 0x68, 0x04, 0x21, 0x88, 0x43, 0xd0, 0x60, 0xa9, 0xe2, 0x24, 0x48, 0x08, 0xf0, +0xb0, 0xe9, 0x03, 0x98, 0x01, 0x89, 0x0d, 0x18, 0x28, 0x00, 0x08, 0xf0, 0x1e, 0xeb, 0x0b, 0x21, +0x06, 0x00, 0x89, 0x01, 0x40, 0x18, 0x00, 0x69, 0x02, 0x90, 0x28, 0x1d, 0x08, 0xf0, 0x14, 0xeb, +0x01, 0x23, 0x1b, 0x03, 0xc2, 0x1a, 0x98, 0x42, 0x7e, 0xd0, 0x57, 0xdc, 0x08, 0x28, 0x7c, 0xd0, +0x38, 0xdc, 0x01, 0x28, 0x7a, 0xd0, 0x02, 0x28, 0x79, 0xd1, 0x04, 0x98, 0xfd, 0xf7, 0x96, 0xff, +0x00, 0x28, 0x2e, 0xd1, 0x20, 0x69, 0x40, 0x1c, 0x20, 0x61, 0x23, 0xe0, 0x54, 0xf0, 0x00, 0xc0, +0x58, 0x1b, 0x00, 0x00, 0x10, 0x1d, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x88, 0x0e, 0x00, 0x00, +0x44, 0x07, 0x00, 0x00, 0x18, 0xee, 0x00, 0xc0, 0x2c, 0x02, 0x00, 0x04, 0x22, 0x02, 0x00, 0x04, +0x00, 0xa3, 0x00, 0x80, 0x00, 0x00, 0x00, 0x04, 0xd8, 0x3f, 0x00, 0x04, 0x34, 0xf0, 0x00, 0xc0, +0x8d, 0xb2, 0x00, 0x00, 0x20, 0xf0, 0x00, 0xc0, 0x1c, 0xf0, 0x00, 0xc0, 0x00, 0xa7, 0x00, 0x80, +0x01, 0x01, 0x03, 0x00, 0x01, 0x20, 0x08, 0xf0, 0xcc, 0xe9, 0x02, 0x21, 0x30, 0x00, 0xfd, 0xf7, +0xe6, 0xfc, 0x4f, 0xe2, 0x80, 0x28, 0x77, 0xd0, 0xc1, 0x1f, 0xff, 0x39, 0xfa, 0x39, 0xc3, 0xd1, +0xfb, 0x4c, 0x20, 0x68, 0x00, 0x28, 0x70, 0xd0, 0x41, 0x7a, 0x03, 0x29, 0x01, 0xd0, 0x01, 0x29, +0x6b, 0xd1, 0x21, 0x79, 0x03, 0x29, 0x69, 0xd0, 0x08, 0x29, 0x01, 0xd0, 0x09, 0x29, 0x72, 0xd1, +0xf3, 0x4b, 0xe2, 0x88, 0x08, 0x33, 0x08, 0xf0, 0xa8, 0xed, 0x99, 0xe0, 0xf1, 0x4d, 0x51, 0x1b, +0xaa, 0x42, 0x69, 0xd0, 0x2a, 0xdc, 0xd2, 0x1a, 0x67, 0xd0, 0xef, 0x49, 0x51, 0x18, 0xa3, 0xd1, +0xee, 0x48, 0xef, 0x4a, 0x01, 0x68, 0x11, 0x60, 0xee, 0x49, 0x01, 0x60, 0x08, 0xf0, 0x7c, 0xeb, +0xed, 0x48, 0x40, 0x78, 0x00, 0x28, 0x05, 0xd0, 0xec, 0x48, 0x00, 0x22, 0x00, 0x68, 0x1e, 0x21, +0x08, 0xf0, 0x52, 0xeb, 0xfd, 0xf7, 0xd7, 0xfc, 0x08, 0xf0, 0x8a, 0xed, 0x07, 0x20, 0x08, 0xf0, +0x78, 0xed, 0x08, 0xf0, 0x8a, 0xed, 0x03, 0xe0, 0x2d, 0xe0, 0x7c, 0xe1, 0xea, 0xe1, 0x05, 0xe2, +0x00, 0x28, 0xb6, 0xd1, 0x30, 0x00, 0xff, 0xf7, 0x3a, 0xff, 0x38, 0xe0, 0x7f, 0x22, 0x52, 0x06, +0x89, 0x18, 0x3b, 0xd0, 0x52, 0x00, 0x89, 0x18, 0xb1, 0xd1, 0x30, 0x00, 0xfb, 0xf7, 0x74, 0xfd, +0x00, 0x28, 0xa6, 0xd0, 0x08, 0xf0, 0x74, 0xed, 0x00, 0x28, 0xa2, 0xd0, 0x30, 0x00, 0xfb, 0xf7, +0xb0, 0xff, 0x04, 0x00, 0x01, 0x00, 0x30, 0x00, 0x08, 0xf0, 0x6e, 0xed, 0x20, 0x05, 0x01, 0xd5, +0xfb, 0xf7, 0xe6, 0xff, 0x00, 0x2c, 0x94, 0xda, 0xd1, 0x4a, 0x42, 0x21, 0x30, 0x00, 0x02, 0x23, +0x08, 0xf0, 0x66, 0xed, 0xde, 0xe1, 0xc9, 0x48, 0xca, 0x49, 0x00, 0x68, 0x88, 0x42, 0x06, 0xd1, +0x30, 0x00, 0xff, 0xf7, 0x0c, 0xff, 0x07, 0xe0, 0x35, 0xe1, 0x3c, 0xe0, 0x31, 0xe0, 0xc9, 0x4a, +0x0a, 0x21, 0x30, 0x00, 0x08, 0xf0, 0x30, 0xed, 0x01, 0x20, 0x08, 0xf0, 0x56, 0xed, 0x30, 0x00, +0x08, 0xf0, 0x8e, 0xea, 0xc6, 0xe1, 0x28, 0xe0, 0x30, 0xe1, 0x37, 0xe1, 0x08, 0xf0, 0xc8, 0xe8, +0xc1, 0x49, 0x4e, 0x6e, 0x0d, 0x6e, 0x0f, 0x66, 0x4f, 0x66, 0x08, 0xf0, 0xd6, 0xe8, 0x00, 0x24, +0x11, 0xe0, 0x39, 0x00, 0xe8, 0x07, 0xc0, 0x0f, 0x79, 0x40, 0x08, 0x43, 0x02, 0xd0, 0x20, 0x00, +0x08, 0xf0, 0x92, 0xea, 0xf0, 0x07, 0x64, 0x1c, 0x6d, 0x08, 0x24, 0x06, 0x05, 0x43, 0x76, 0x08, +0x24, 0x0e, 0x2a, 0x2c, 0xc6, 0xd2, 0x31, 0x00, 0x28, 0x00, 0x79, 0x40, 0x08, 0x43, 0xe8, 0xd1, +0xa0, 0xe1, 0xe2, 0x88, 0x08, 0xf0, 0xcc, 0xe8, 0x02, 0xe0, 0x00, 0x22, 0x03, 0x21, 0xf9, 0xe7, +0x27, 0x60, 0x27, 0x71, 0x0a, 0xe0, 0x30, 0x7a, 0x01, 0x28, 0x07, 0xd1, 0x02, 0x98, 0x03, 0x21, +0x08, 0xf0, 0x7a, 0xeb, 0x11, 0x21, 0x30, 0x00, 0xa2, 0x43, 0x1b, 0x6d, 0x01, 0x00, 0x00, 0x00, +0xb8, 0x58, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x55, 0x2d, 0x5c, 0xdc, 0x08, 0xf0, 0x1a, 0xed, +0x30, 0x00, 0x08, 0xf0, 0xdc, 0xec, 0x87, 0xe1, 0xe0, 0x68, 0x01, 0x89, 0x0d, 0x18, 0x05, 0x98, +0x01, 0x89, 0x46, 0x69, 0x0c, 0x18, 0x28, 0x79, 0x20, 0x71, 0x60, 0x79, 0xb1, 0x7a, 0x00, 0x07, +0x00, 0x0f, 0x09, 0x01, 0x08, 0x43, 0x60, 0x71, 0xf1, 0x7a, 0x00, 0x09, 0x09, 0x07, 0x00, 0x01, +0x09, 0x0f, 0x08, 0x43, 0x60, 0x71, 0x60, 0x78, 0x22, 0x78, 0x01, 0x02, 0x11, 0x43, 0x98, 0x4a, +0x88, 0x1a, 0x91, 0x42, 0x5a, 0xd0, 0x2d, 0xdc, 0x96, 0x4a, 0x88, 0x1a, 0x91, 0x42, 0x0f, 0xd0, +0x1f, 0xdc, 0x95, 0x4a, 0x88, 0x1a, 0x91, 0x42, 0x50, 0xd0, 0x05, 0xdc, 0x93, 0x48, 0x08, 0x18, +0x63, 0xd0, 0x0c, 0x28, 0x60, 0xd1, 0x8f, 0xe0, 0x01, 0x28, 0xfc, 0xd0, 0x07, 0x28, 0xf9, 0xd1, +0x08, 0xf0, 0x2c, 0xea, 0x08, 0xf0, 0x2e, 0xea, 0xe0, 0x78, 0xa1, 0x78, 0x02, 0x02, 0x0a, 0x43, +0x21, 0x00, 0x28, 0x00, 0x08, 0xf0, 0x62, 0xea, 0x21, 0x00, 0x28, 0x00, 0x08, 0xf0, 0xd6, 0xec, +0x9e, 0xe0, 0x14, 0x28, 0x32, 0xd0, 0x34, 0x28, 0x30, 0xd0, 0x35, 0x28, 0x2e, 0xd0, 0x36, 0x28, +0xe0, 0xd1, 0x2b, 0xe0, 0x60, 0x28, 0x29, 0xd0, 0x0c, 0xdc, 0x44, 0x28, 0x26, 0xd0, 0x04, 0xdc, +0x41, 0x28, 0x18, 0xd0, 0x43, 0x28, 0xd5, 0xd1, 0x20, 0xe0, 0x47, 0x28, 0x25, 0xd0, 0x55, 0x28, +0xd0, 0xd1, 0x1b, 0xe0, 0x62, 0x28, 0x77, 0xd0, 0x7b, 0x28, 0x17, 0xd0, 0x90, 0x28, 0x15, 0xd0, +0x9f, 0x28, 0x7f, 0xd1, 0x72, 0x48, 0x9f, 0x30, 0x28, 0x70, 0x00, 0x0a, 0x68, 0x70, 0x38, 0x0a, +0xaf, 0x71, 0xe8, 0x71, 0x74, 0xe0, 0x08, 0xf0, 0xae, 0xec, 0x00, 0x28, 0x06, 0xd0, 0x00, 0x21, +0xff, 0x20, 0x08, 0xf0, 0x2c, 0xeb, 0x30, 0x00, 0x08, 0xf0, 0xa8, 0xec, 0xe0, 0x78, 0xa1, 0x78, +0x02, 0x02, 0x0a, 0x43, 0x21, 0x00, 0x28, 0x00, 0x60, 0xe0, 0x65, 0x48, 0x47, 0x30, 0x28, 0x70, +0x00, 0x0a, 0x68, 0x70, 0xe0, 0x79, 0xa1, 0x79, 0x00, 0x02, 0x08, 0x43, 0xa8, 0x71, 0x00, 0x0a, +0xdf, 0xe7, 0x30, 0x00, 0xfd, 0xf7, 0xee, 0xfb, 0x54, 0xe0, 0x20, 0x00, 0x09, 0x30, 0x06, 0x90, +0x08, 0x22, 0x21, 0x00, 0x28, 0x00, 0x08, 0xf0, 0x0a, 0xea, 0x08, 0x20, 0xa8, 0x70, 0x00, 0x20, +0x2c, 0x00, 0xe8, 0x70, 0x06, 0x98, 0x08, 0x34, 0x08, 0xf0, 0x68, 0xe9, 0x01, 0x00, 0x01, 0x22, +0x20, 0x00, 0x04, 0xf0, 0x8f, 0xf8, 0xe9, 0x78, 0xaa, 0x78, 0x09, 0x02, 0x11, 0x43, 0x40, 0x18, +0xa8, 0x70, 0x00, 0x0a, 0xe8, 0x70, 0x30, 0x7a, 0x03, 0x28, 0x0a, 0xd1, 0x70, 0x7a, 0x00, 0x28, +0x07, 0xd0, 0x17, 0x20, 0x40, 0x01, 0x30, 0x18, 0x01, 0x78, 0x04, 0x29, 0x01, 0xd0, 0x02, 0x21, +0x01, 0x70, 0x4b, 0x48, 0x07, 0x60, 0x23, 0xe0, 0x08, 0x22, 0x21, 0x00, 0x28, 0x00, 0x08, 0xf0, +0xde, 0xe9, 0x08, 0x20, 0xa8, 0x70, 0x00, 0x20, 0xe8, 0x70, 0x28, 0x00, 0x08, 0x30, 0x03, 0xf0, +0xab, 0xfd, 0xe9, 0x78, 0xaa, 0x78, 0x09, 0x02, 0x11, 0x43, 0x40, 0x18, 0xa8, 0x70, 0x00, 0x0a, +0x40, 0x49, 0xe8, 0x70, 0xb5, 0xe7, 0xff, 0xe7, 0x28, 0x00, 0x08, 0x22, 0x21, 0x00, 0x08, 0xf0, +0xc6, 0xe9, 0x28, 0x00, 0x21, 0x00, 0x08, 0x30, 0x0c, 0x22, 0x08, 0x31, 0x08, 0xf0, 0xbe, 0xe9, +0x00, 0x21, 0xa6, 0xe7, 0x05, 0x98, 0x08, 0xf0, 0x5e, 0xe9, 0x37, 0x4c, 0x04, 0x22, 0x60, 0x6a, +0x00, 0x23, 0x05, 0xa9, 0x08, 0xf0, 0x36, 0xec, 0x0f, 0x28, 0x00, 0xd0, 0x0c, 0xe7, 0x07, 0xe7, +0x18, 0x21, 0x30, 0x00, 0x08, 0xf0, 0x1e, 0xec, 0x8e, 0xe0, 0x08, 0xf0, 0x30, 0xec, 0x8b, 0xe0, +0x2e, 0x4d, 0x28, 0x78, 0x00, 0x28, 0x21, 0xd0, 0x07, 0x28, 0x1f, 0xd0, 0x07, 0xf0, 0x8a, 0xef, +0x01, 0x90, 0x28, 0x78, 0x03, 0x28, 0x12, 0xd1, 0x20, 0x78, 0x00, 0x28, 0x04, 0xd1, 0x28, 0x48, +0x08, 0xf0, 0x7c, 0xe9, 0x00, 0x28, 0x02, 0xd0, 0x02, 0x20, 0x28, 0x70, 0x0a, 0xe0, 0x04, 0x20, +0x28, 0x70, 0x24, 0x4a, 0x0b, 0x21, 0x30, 0x00, 0x08, 0xf0, 0xd0, 0xeb, 0x02, 0xe0, 0x01, 0x28, +0x00, 0xd1, 0x2f, 0x70, 0x01, 0x98, 0x07, 0xf0, 0x82, 0xef, 0x65, 0xe0, 0x1e, 0x48, 0x00, 0x88, +0x00, 0x28, 0x61, 0xd0, 0x20, 0x78, 0x00, 0x28, 0x08, 0xd1, 0x19, 0x48, 0x08, 0xf0, 0x5e, 0xe9, +0x00, 0x28, 0x03, 0xd1, 0x08, 0xf0, 0xfe, 0xeb, 0x00, 0x28, 0x2f, 0xd0, 0x01, 0x20, 0x08, 0xf0, +0xfe, 0xeb, 0x51, 0xe0, 0xa8, 0x42, 0x01, 0xc0, 0x00, 0xf0, 0xff, 0x01, 0x00, 0x20, 0xc0, 0xff, +0x1c, 0xf0, 0x00, 0xc0, 0x20, 0xf0, 0x00, 0xc0, 0xff, 0xff, 0x00, 0x00, 0xc4, 0x33, 0x01, 0xc0, +0x18, 0xee, 0x00, 0xc0, 0x22, 0x02, 0x00, 0x04, 0x8d, 0xb2, 0x00, 0x00, 0x18, 0x33, 0x01, 0xc0, +0x6e, 0x80, 0x00, 0x00, 0x2c, 0x80, 0x00, 0x00, 0x24, 0x80, 0x00, 0x00, 0xfa, 0x7f, 0xff, 0xff, +0xd8, 0xf0, 0x00, 0xc0, 0x61, 0x95, 0x00, 0xc0, 0x54, 0xf0, 0x00, 0xc0, 0x34, 0xf0, 0x00, 0xc0, +0xd8, 0x3f, 0x00, 0x04, 0xcb, 0xae, 0x00, 0x00, 0x04, 0x36, 0x01, 0xc0, 0x9b, 0x4a, 0x0b, 0x21, +0x30, 0x00, 0x08, 0xf0, 0x84, 0xeb, 0x1f, 0xe0, 0x99, 0x48, 0x01, 0x68, 0x00, 0x29, 0x07, 0xd1, +0x98, 0x49, 0x09, 0x88, 0x00, 0x29, 0x17, 0xd0, 0x97, 0x49, 0x09, 0x88, 0x00, 0x29, 0x13, 0xd0, +0x07, 0x60, 0x95, 0x48, 0x07, 0x80, 0x08, 0xf0, 0x8a, 0xeb, 0x00, 0x28, 0x0c, 0xd1, 0x01, 0x20, +0x08, 0xf0, 0xb8, 0xeb, 0x08, 0xf0, 0xba, 0xeb, 0x03, 0x20, 0x08, 0xf0, 0xbc, 0xeb, 0x03, 0xe0, +0x01, 0x00, 0x30, 0x00, 0x08, 0xf0, 0xba, 0xeb, 0x03, 0x98, 0x08, 0xf0, 0xbc, 0xe8, 0x8b, 0x48, +0x07, 0xf0, 0x08, 0xef, 0x8a, 0x4c, 0x04, 0x22, 0xa0, 0x6a, 0x53, 0x1f, 0x03, 0xa9, 0x08, 0xf0, +0x92, 0xeb, 0x0f, 0x28, 0xf6, 0xd0, 0x4b, 0xe5, 0x40, 0x1e, 0x00, 0x06, 0x00, 0x0e, 0x03, 0x28, +0x00, 0xd9, 0x00, 0x20, 0x82, 0x49, 0x1c, 0x31, 0x08, 0x5c, 0x70, 0x47, 0x10, 0xb5, 0x42, 0x7a, +0x02, 0x2a, 0x02, 0xd1, 0x08, 0xf0, 0x9e, 0xeb, 0x10, 0xbd, 0x00, 0x29, 0x01, 0xd0, 0x0d, 0x21, +0x00, 0xe0, 0x0e, 0x21, 0x08, 0xf0, 0x66, 0xeb, 0x10, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x79, 0x4c, +0x0e, 0x00, 0x79, 0x49, 0x20, 0x68, 0x88, 0x42, 0x18, 0xd1, 0x72, 0x48, 0x77, 0x4a, 0x01, 0x88, +0x10, 0x78, 0x01, 0x43, 0x0e, 0xd0, 0x00, 0x28, 0x03, 0xd0, 0x07, 0x28, 0x01, 0xd0, 0x02, 0x20, +0x10, 0x70, 0x73, 0x4a, 0x0a, 0x21, 0x28, 0x00, 0x08, 0xf0, 0x20, 0xeb, 0x71, 0x48, 0x00, 0x68, +0x20, 0x60, 0x03, 0xe0, 0x10, 0x21, 0x28, 0x00, 0x08, 0xf0, 0x44, 0xeb, 0x31, 0x00, 0x28, 0x00, +0xfd, 0xf7, 0x47, 0xfa, 0x70, 0xbd, 0x41, 0x78, 0x02, 0x78, 0x09, 0x02, 0x11, 0x43, 0xca, 0x1f, +0xfa, 0x3a, 0x06, 0xd1, 0x08, 0x30, 0x41, 0x78, 0x02, 0x78, 0x08, 0x02, 0x10, 0x43, 0x01, 0x28, +0x00, 0xd0, 0x00, 0x20, 0x70, 0x47, 0x5e, 0x49, 0x08, 0x6b, 0x09, 0x78, 0x00, 0x29, 0x06, 0xd0, +0x41, 0x78, 0x02, 0x78, 0x08, 0x02, 0x10, 0x43, 0x40, 0x04, 0x40, 0x0c, 0x70, 0x47, 0x00, 0x20, +0x70, 0x47, 0x10, 0xb5, 0x04, 0x00, 0x56, 0x48, 0x45, 0xff, 0x2a, 0x6a, 0x01, 0x00, 0x00, 0x00, +0xb4, 0x5c, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xd2, 0x7b, 0x52, 0x8e, 0x03, 0x6b, 0xff, 0xf7, +0xec, 0xff, 0xe4, 0x28, 0x09, 0xd1, 0x58, 0x78, 0x19, 0x78, 0x00, 0x02, 0x08, 0x43, 0x05, 0x28, +0x03, 0xd0, 0x00, 0x21, 0x20, 0x00, 0xfd, 0xf7, 0x77, 0xfa, 0x10, 0xbd, 0x4d, 0x48, 0x10, 0xb5, +0x00, 0x78, 0x00, 0x28, 0x04, 0xd1, 0x51, 0x48, 0x08, 0xf0, 0x7a, 0xe8, 0x00, 0x28, 0x00, 0xd0, +0x01, 0x20, 0x10, 0xbd, 0x10, 0xb5, 0xff, 0xf7, 0xf1, 0xff, 0x00, 0x28, 0x09, 0xd1, 0x4b, 0x48, +0x08, 0xf0, 0x6e, 0xe8, 0x00, 0x28, 0x04, 0xd1, 0x49, 0x48, 0x08, 0xf0, 0x6a, 0xea, 0x00, 0x28, +0x00, 0xd0, 0x01, 0x20, 0x10, 0xbd, 0x47, 0x48, 0x3e, 0x49, 0x00, 0x78, 0x49, 0x69, 0xc0, 0x07, +0xc0, 0x0f, 0x40, 0x42, 0x08, 0x42, 0x01, 0xd1, 0x01, 0x20, 0x70, 0x47, 0x00, 0x20, 0x70, 0x47, +0x70, 0xb5, 0x0c, 0x00, 0x40, 0x49, 0x4a, 0x69, 0x53, 0x00, 0x40, 0x4a, 0xd3, 0x5a, 0x83, 0x70, +0x1b, 0x0a, 0xc3, 0x70, 0x43, 0x79, 0x05, 0x79, 0x1b, 0x02, 0x2b, 0x43, 0x1d, 0xd1, 0x08, 0x23, +0x83, 0x71, 0x00, 0x23, 0xc3, 0x71, 0x4b, 0x68, 0x5b, 0x00, 0xd3, 0x5a, 0x03, 0x72, 0x1b, 0x0a, +0x43, 0x72, 0x8b, 0x68, 0x5b, 0x00, 0xd3, 0x5a, 0x83, 0x72, 0x1b, 0x0a, 0xc3, 0x72, 0xcb, 0x68, +0x5b, 0x00, 0xd3, 0x5a, 0x03, 0x73, 0x1b, 0x0a, 0x43, 0x73, 0x09, 0x69, 0x49, 0x00, 0x51, 0x5a, +0x81, 0x73, 0x09, 0x0a, 0xc1, 0x73, 0x18, 0x21, 0x21, 0x80, 0x41, 0x79, 0x02, 0x79, 0x09, 0x02, +0x11, 0x43, 0x01, 0x29, 0x0a, 0xd1, 0x20, 0x21, 0x81, 0x71, 0x00, 0x21, 0xc1, 0x71, 0x27, 0x49, +0x08, 0x30, 0x20, 0x22, 0x07, 0xf0, 0x44, 0xee, 0x30, 0x20, 0x20, 0x80, 0x70, 0xbd, 0x70, 0xb5, +0x00, 0x21, 0x22, 0x4c, 0x20, 0x4b, 0x42, 0x7a, 0x06, 0x7a, 0x15, 0x02, 0x4a, 0x00, 0xa2, 0x5a, +0x35, 0x43, 0x95, 0x42, 0x00, 0xd1, 0x59, 0x60, 0xc5, 0x7a, 0x86, 0x7a, 0x2d, 0x02, 0x35, 0x43, +0x95, 0x42, 0x00, 0xd1, 0x99, 0x60, 0x45, 0x7b, 0x06, 0x7b, 0x2d, 0x02, 0x35, 0x43, 0x95, 0x42, +0x00, 0xd1, 0xd9, 0x60, 0xc5, 0x7b, 0x86, 0x7b, 0x2d, 0x02, 0x35, 0x43, 0x95, 0x42, 0x00, 0xd1, +0x19, 0x61, 0x49, 0x1c, 0x10, 0x29, 0xde, 0xd3, 0x07, 0xf0, 0x7a, 0xee, 0x01, 0x20, 0x70, 0xbd, +0xb9, 0xae, 0x00, 0x00, 0xac, 0xf0, 0x00, 0xc0, 0x04, 0x36, 0x01, 0xc0, 0x48, 0xf0, 0x00, 0xc0, +0x00, 0x01, 0x03, 0x00, 0x54, 0xf0, 0x00, 0xc0, 0x1c, 0xf0, 0x00, 0xc0, 0xff, 0xff, 0x00, 0x00, +0x34, 0xf0, 0x00, 0xc0, 0x8d, 0xb2, 0x00, 0x00, 0x20, 0xf0, 0x00, 0xc0, 0xd8, 0x3f, 0x00, 0x04, +0x9c, 0x00, 0x00, 0x04, 0x82, 0x55, 0x00, 0x04, 0x38, 0x52, 0x00, 0x04, 0x70, 0x1b, 0x01, 0xc0, +0x10, 0xb5, 0x9b, 0x4c, 0x20, 0x81, 0x9b, 0x48, 0x00, 0x79, 0x80, 0x07, 0x03, 0xd5, 0x06, 0x21, +0x20, 0x00, 0x07, 0xf0, 0x2a, 0xef, 0x96, 0x49, 0x60, 0x69, 0x08, 0xf0, 0x82, 0xea, 0x00, 0x28, +0x20, 0x69, 0x01, 0xd0, 0x08, 0x21, 0x00, 0xe0, 0x06, 0x21, 0x08, 0xf0, 0x7e, 0xea, 0x60, 0x89, +0x01, 0xf0, 0x17, 0xf9, 0x10, 0xbd, 0x38, 0xb5, 0x8d, 0x4c, 0x22, 0x69, 0x82, 0x42, 0x06, 0xd0, +0x00, 0x2a, 0x02, 0xd0, 0x03, 0x20, 0xff, 0xf7, 0xdb, 0xff, 0x04, 0x20, 0x38, 0xbd, 0x00, 0x25, +0x0b, 0x00, 0x08, 0xf0, 0x6e, 0xea, 0x0c, 0x3a, 0x3a, 0x3a, 0x0b, 0x3a, 0x3a, 0x35, 0x3a, 0x35, +0x07, 0x3a, 0x32, 0x3a, 0x03, 0x20, 0xff, 0xf7, 0xcb, 0xff, 0x2e, 0xe0, 0x60, 0x69, 0xc1, 0x68, +0xc9, 0x04, 0x0c, 0xd5, 0xe1, 0x68, 0x00, 0x29, 0x09, 0xd1, 0x7d, 0x49, 0x08, 0xf0, 0x50, 0xea, +0x00, 0x28, 0x04, 0xd0, 0x20, 0x69, 0x06, 0x21, 0x08, 0xf0, 0x4e, 0xea, 0x1d, 0xe0, 0x79, 0x48, +0x00, 0x79, 0xc0, 0x07, 0x08, 0xd0, 0x13, 0x22, 0x00, 0x92, 0x75, 0x4a, 0xe3, 0x88, 0x60, 0x69, +0x11, 0x00, 0x08, 0xf0, 0x4a, 0xea, 0x10, 0xe0, 0x13, 0x22, 0x00, 0x92, 0x70, 0x4a, 0xe3, 0x88, +0x60, 0x69, 0x11, 0x00, 0x07, 0xf0, 0xe0, 0xed, 0x07, 0xe0, 0x6d, 0x49, 0x02, 0x20, 0x01, 0xe0, +0x6b, 0x49, 0x00, 0x20, 0x00, 0xf0, 0xce, 0xf8, 0x25, 0x61, 0x03, 0x20, 0x38, 0xbd, 0x00, 0x20, +0x00, 0x29, 0x10, 0xb5, 0x15, 0xd0, 0x0a, 0x68, 0xd3, 0x6d, 0x9b, 0x78, 0x1c, 0x07, 0xa4, 0x0f, +0x0f, 0xd1, 0x1b, 0x09, 0x0c, 0x2b, 0x01, 0xd0, 0x0a, 0x2b, 0x0a, 0xd1, 0x60, 0x32, 0x52, 0x7a, +0x13, 0x2a, 0x06, 0xd1, 0x08, 0x69, 0x00, 0x28, 0x00, 0xd0, 0x03, 0x20, 0xff, 0xf7, 0x80, 0xff, +0x01, 0x20, 0x10, 0xbd, 0xff, 0xb5, 0x8f, 0xb0, 0x1c, 0x00, 0x05, 0x00, 0x0f, 0x00, 0x58, 0x4e, +0x30, 0x69, 0x00, 0x28, 0x04, 0xd0, 0x00, 0x2c, 0x3e, 0xd0, 0x39, 0x00, 0x02, 0x20, 0x3a, 0xe0, +0x38, 0x21, 0x68, 0x46, 0x07, 0xf0, 0xa0, 0xee, 0x53, 0x48, 0x00, 0x90, 0x53, 0x48, 0x01, 0x90, +0x28, 0x00, 0x7e, 0x30, 0x0c, 0x95, 0x75, 0x61, 0x00, 0x2f, 0x0e, 0x90, 0x06, 0xd0, 0x50, 0x49, +0x06, 0x22, 0x38, 0x00, 0x08, 0xf0, 0x44, 0xe9, 0x00, 0x28, 0x02, 0xd1, 0x0e, 0x99, 0x06, 0x22, +0x13, 0xe0, 0x4b, 0x49, 0x06, 0x22, 0x89, 0x1d, 0x38, 0x00, 0x08, 0xf0, 0x3a, 0xe9, 0x00, 0x28, +0x09, 0xd1, 0x07, 0x22, 0x00, 0x21, 0x28, 0x00, 0x07, 0xf0, 0x76, 0xed, 0x00, 0x2c, 0x13, 0xd0, +0x0e, 0x99, 0x00, 0x20, 0x0f, 0xe0, 0x06, 0x22, 0x39, 0x00, 0x3d, 0x48, 0x07, 0xf0, 0x38, 0xed, +0x3f, 0x49, 0x3b, 0x48, 0x06, 0x22, 0x08, 0xf0, 0x24, 0xe9, 0x00, 0x28, 0x06, 0xd1, 0x00, 0x2c, +0x02, 0xd0, 0x37, 0x49, 0x01, 0x20, 0xa0, 0x47, 0x13, 0xb0, 0xf0, 0xbd, 0x0b, 0x20, 0x80, 0x01, +0x28, 0x18, 0x01, 0x69, 0x08, 0xab, 0x09, 0x7b, 0x19, 0x72, 0x01, 0x69, 0x01, 0x25, 0x49, 0x7b, +0x89, 0x07, 0x89, 0x0f, 0x59, 0x72, 0x01, 0x69, 0x49, 0x7b, 0x09, 0x07, 0x89, 0x0f, 0x99, 0x72, +0x00, 0x69, 0x40, 0x7b, 0x80, 0x06, 0x80, 0x0f, 0xd8, 0x72, 0x11, 0x98, 0x24, 0x28, 0x01, 0xd1, +0x75, 0x81, 0x01, 0xe0, 0x00, 0x20, 0x70, 0x81, 0x08, 0xf0, 0x76, 0xe9, 0x00, 0x28, 0x09, 0xd1, +0x08, 0xab, 0xdf, 0x7a, 0x9a, 0x7a, 0x59, 0x7a, 0x18, 0x7a, 0x3b, 0x00, 0x01, 0xf0, 0x62, 0xf8, +0x00, 0x28, 0x04, 0xd0, 0x08, 0xab, 0x18, 0x7b, 0x40, 0x08, 0x40, 0x00, 0x02, 0xe0, 0x08, 0xab, +0x18, 0x7b, 0x28, 0x43, 0x08, 0xab, 0x18, 0x73, 0x1e, 0x48, 0x07, 0x90, 0x18, 0x98, 0x06, 0x90, +0x18, 0x7b, 0x04, 0x21, 0x08, 0x43, 0x18, 0x73, 0x11, 0x98, 0xf0, 0x80, 0x68, 0x46, 0xf4, 0x60, +0x08, 0xf0, 0x8e, 0xe9, 0x00, 0x28, 0x30, 0x61, 0xb6, 0xd1, 0x11, 0x49, 0x02, 0x20, 0x00, 0xf0, +0x19, 0xf8, 0xb1, 0xe7, 0x1c, 0xb5, 0x6b, 0x46, 0x98, 0x71, 0x06, 0x22, 0x68, 0x46, 0x07, 0xf0, +0xd8, 0xec, 0x0b, 0x48, 0x69, 0x46, 0x40, 0x69, 0x00, 0xf0, 0xe7, 0xfb, 0x1c, 0xbd, 0x00, 0x22, +0x08, 0xb5, 0x00, 0x92, 0xca, 0x79, 0x8b, 0x79, 0x12, 0x02, 0x1a, 0x43, 0x0a, 0x4b, 0xff, 0xf7, +0x51, 0xff, 0x08, 0xbd, 0x02, 0x4a, 0xd2, 0x68, 0x00, 0x2a, 0x00, 0xd0, 0x10, 0x47, 0x70, 0x47, +0xc4, 0x57, 0x02, 0xc0, 0x30, 0xfa, 0x00, 0xc0, 0x47, 0x28, 0x02, 0xfd, 0x01, 0x00, 0x00, 0x00, +0xb0, 0x60, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xdc, 0xce, 0xff, 0xe7, 0x6f, 0x5e, 0x00, 0xc0, +0x07, 0x5f, 0x00, 0xc0, 0x88, 0xed, 0x00, 0xc0, 0x20, 0x4e, 0x00, 0x00, 0x6d, 0x60, 0x00, 0xc0, +0xf3, 0xb5, 0x04, 0x00, 0x89, 0xb0, 0x21, 0x89, 0x40, 0x69, 0x0e, 0x19, 0x01, 0x21, 0x04, 0x91, +0x00, 0x21, 0x0a, 0x9a, 0x07, 0x91, 0x08, 0x91, 0x06, 0x96, 0x05, 0x92, 0xb2, 0x78, 0x13, 0x09, +0x1b, 0x1f, 0x08, 0xf0, 0x40, 0xe9, 0x0a, 0x17, 0x12, 0x6a, 0x6a, 0x24, 0x6a, 0x0c, 0x6a, 0x06, +0x2c, 0x6a, 0x00, 0x28, 0x61, 0xd0, 0x20, 0x00, 0x08, 0xf0, 0x40, 0xe9, 0x5d, 0xe0, 0x00, 0x28, +0x5b, 0xd0, 0x20, 0x00, 0x08, 0xf0, 0x3e, 0xe9, 0x57, 0xe0, 0x00, 0x28, 0x55, 0xd0, 0x06, 0x21, +0x05, 0xaa, 0x10, 0xe0, 0x00, 0x28, 0x50, 0xd0, 0x01, 0x7a, 0x03, 0x29, 0x4d, 0xd1, 0x81, 0x69, +0x42, 0x69, 0x48, 0x31, 0x8a, 0x42, 0x48, 0xd0, 0x25, 0x21, 0x05, 0xaa, 0x03, 0xe0, 0x00, 0x28, +0x43, 0xd0, 0x03, 0x21, 0x05, 0xaa, 0x14, 0x30, 0x08, 0xf0, 0x28, 0xe9, 0x3d, 0xe0, 0x00, 0x21, +0x0d, 0x00, 0x00, 0x28, 0x03, 0x91, 0x32, 0xd1, 0x03, 0x20, 0x07, 0xf0, 0x7c, 0xec, 0x07, 0x00, +0x02, 0xd0, 0x78, 0x7a, 0x00, 0x28, 0x01, 0xd1, 0x00, 0x27, 0x10, 0xe0, 0x38, 0x00, 0x07, 0xf0, +0x16, 0xed, 0x00, 0x28, 0x01, 0xd0, 0x05, 0x00, 0xbd, 0x35, 0xb1, 0x20, 0x80, 0x00, 0x3a, 0x18, +0x2b, 0x00, 0x20, 0x00, 0x03, 0xa9, 0x08, 0xf0, 0x0e, 0xe9, 0x00, 0x28, 0xec, 0xd0, 0x67, 0x61, +0x38, 0x7a, 0x03, 0x28, 0x11, 0xd1, 0x78, 0x7a, 0x01, 0x28, 0x0e, 0xd1, 0x01, 0x22, 0x00, 0x92, +0x00, 0x20, 0x3a, 0x00, 0xff, 0x32, 0x02, 0x90, 0x41, 0x32, 0x31, 0x00, 0x20, 0x00, 0x02, 0xab, +0x08, 0xf0, 0xfc, 0xe8, 0xa0, 0x88, 0x00, 0x28, 0x07, 0xd0, 0x00, 0x2f, 0x05, 0xd0, 0x03, 0x9a, +0x0a, 0x99, 0x20, 0x00, 0x08, 0xf0, 0xf6, 0xe8, 0x04, 0x90, 0x04, 0x98, 0x0b, 0xb0, 0xf0, 0xbd, +0xff, 0x48, 0x70, 0x47, 0xf8, 0xb5, 0x05, 0x00, 0xff, 0x21, 0xfe, 0x48, 0x00, 0x22, 0x91, 0x31, +0x07, 0xf0, 0xb0, 0xed, 0x04, 0x00, 0x01, 0xd1, 0x00, 0x20, 0xf8, 0xbd, 0xfa, 0x49, 0x28, 0x01, +0x47, 0x18, 0xf8, 0x1c, 0x08, 0xf0, 0xe2, 0xe8, 0x06, 0x00, 0x60, 0x61, 0x78, 0x20, 0x25, 0x18, +0x20, 0x81, 0x28, 0x21, 0x28, 0x00, 0x07, 0xf0, 0x0a, 0xec, 0x04, 0x20, 0x28, 0x70, 0x00, 0x20, +0x68, 0x70, 0xa8, 0x78, 0xf3, 0x21, 0x08, 0x40, 0x00, 0x1d, 0x00, 0x07, 0x00, 0x0f, 0x80, 0x30, +0xb1, 0x21, 0x89, 0x00, 0xa8, 0x70, 0x06, 0x22, 0x71, 0x18, 0xa8, 0x1d, 0x07, 0xf0, 0x02, 0xec, +0x31, 0x00, 0xff, 0x31, 0x28, 0x00, 0x06, 0x22, 0x4a, 0x31, 0x0c, 0x30, 0x07, 0xf0, 0xfa, 0xeb, +0x28, 0x00, 0x20, 0x30, 0x00, 0x90, 0x01, 0x78, 0x04, 0x22, 0x11, 0x43, 0x01, 0x70, 0x41, 0x78, +0x7a, 0x78, 0x09, 0x07, 0x09, 0x0f, 0x12, 0x01, 0x11, 0x43, 0x41, 0x70, 0xc1, 0x78, 0x82, 0x78, +0x09, 0x02, 0x11, 0x43, 0x7a, 0x89, 0x09, 0x07, 0x09, 0x0f, 0x12, 0x01, 0x11, 0x43, 0x81, 0x70, +0x09, 0x0a, 0xc1, 0x70, 0x00, 0x21, 0x20, 0x00, 0x08, 0xf0, 0xa4, 0xe8, 0x20, 0x7b, 0x20, 0x28, +0x03, 0xd1, 0x20, 0x00, 0x08, 0xf0, 0xa2, 0xe8, 0xae, 0xe7, 0xd4, 0x49, 0x0c, 0x22, 0x08, 0x68, +0x40, 0x1c, 0x08, 0x60, 0x01, 0x20, 0x00, 0x03, 0x78, 0x81, 0x60, 0x7b, 0x01, 0x21, 0x08, 0x43, +0x60, 0x73, 0xcf, 0x48, 0xa0, 0x61, 0x22, 0x20, 0xa0, 0x80, 0x34, 0x20, 0x27, 0x18, 0x20, 0x81, +0xa9, 0x1d, 0x38, 0x00, 0x07, 0xf0, 0xbe, 0xeb, 0x00, 0x21, 0x39, 0x73, 0x79, 0x73, 0xe7, 0x22, +0x14, 0x21, 0x20, 0x00, 0x0e, 0x23, 0x08, 0xf0, 0x86, 0xe8, 0x00, 0x99, 0x49, 0x78, 0x09, 0x09, +0x81, 0x72, 0x00, 0x99, 0xca, 0x78, 0x8b, 0x78, 0x11, 0x02, 0x19, 0x43, 0x09, 0x09, 0x01, 0x72, +0x09, 0x0a, 0x41, 0x72, 0x31, 0x7a, 0x06, 0x29, 0x81, 0x7c, 0x02, 0xd1, 0x01, 0x22, 0x11, 0x43, +0x01, 0xe0, 0x49, 0x08, 0x49, 0x00, 0x81, 0x74, 0x07, 0xf0, 0x3c, 0xed, 0x00, 0x28, 0x02, 0xd0, +0x05, 0x20, 0x08, 0xf0, 0x24, 0xe8, 0x07, 0xf0, 0x72, 0xeb, 0xb7, 0x4b, 0x05, 0x00, 0xb5, 0x48, +0x21, 0x00, 0x1c, 0x68, 0x00, 0x22, 0x00, 0x68, 0x05, 0x23, 0xa0, 0x47, 0x28, 0x00, 0x07, 0xf0, +0x7a, 0xeb, 0x01, 0x20, 0xf8, 0xbd, 0xf8, 0xb5, 0x01, 0x25, 0x07, 0xf0, 0x60, 0xeb, 0x00, 0x90, +0xaa, 0x48, 0x01, 0x68, 0x02, 0x29, 0x1f, 0xd2, 0xac, 0x4e, 0xa7, 0x4f, 0x34, 0x68, 0x00, 0x20, +0x09, 0x2c, 0x00, 0xd0, 0x60, 0x1c, 0x04, 0x00, 0x00, 0x01, 0x39, 0x5c, 0x00, 0x29, 0x09, 0xd0, +0xc0, 0x19, 0x40, 0x89, 0x01, 0x21, 0x09, 0x03, 0x88, 0x42, 0x03, 0xd0, 0x20, 0x00, 0xff, 0xf7, +0x39, 0xff, 0x05, 0x00, 0x01, 0x2d, 0x06, 0xd1, 0x9c, 0x48, 0x00, 0x68, 0x02, 0x28, 0x02, 0xd2, +0x30, 0x68, 0x84, 0x42, 0xe3, 0xd1, 0x34, 0x60, 0x00, 0x98, 0x07, 0xf0, 0x4c, 0xeb, 0xf8, 0xbd, +0x96, 0x49, 0x08, 0x68, 0x40, 0x1e, 0x08, 0x60, 0xcd, 0xe7, 0x70, 0xb5, 0x05, 0x00, 0x08, 0x00, +0x40, 0x30, 0x07, 0xf0, 0xa8, 0xec, 0x81, 0x78, 0x09, 0x09, 0x08, 0x29, 0x16, 0xd1, 0x20, 0x30, +0x04, 0x00, 0x40, 0x78, 0x8c, 0x4a, 0x01, 0x09, 0x28, 0x00, 0xff, 0x30, 0x4a, 0x30, 0x08, 0xf0, +0x16, 0xe8, 0x0a, 0x28, 0x0a, 0xd0, 0xe1, 0x78, 0xa2, 0x78, 0x09, 0x02, 0x11, 0x43, 0x86, 0x4a, +0x00, 0x01, 0x09, 0x09, 0x80, 0x18, 0x41, 0x81, 0xff, 0xf7, 0xad, 0xff, 0x70, 0xbd, 0x70, 0xb5, +0x05, 0x00, 0x0c, 0x00, 0x07, 0xf0, 0xce, 0xec, 0x00, 0x28, 0x04, 0xd0, 0x02, 0x20, 0x07, 0xf0, +0xce, 0xec, 0x07, 0xf0, 0xd0, 0xec, 0x20, 0x00, 0x40, 0x30, 0x07, 0xf0, 0x7c, 0xec, 0x81, 0x78, +0x09, 0x09, 0x0a, 0x29, 0x03, 0xd1, 0x01, 0x00, 0x28, 0x00, 0x07, 0xf0, 0xf4, 0xef, 0x21, 0x00, +0x28, 0x00, 0xff, 0xf7, 0xc2, 0xff, 0x70, 0xbd, 0xf3, 0xb5, 0x04, 0x00, 0x01, 0x26, 0x81, 0xb0, +0x47, 0x69, 0x00, 0x89, 0x05, 0x19, 0x38, 0x00, 0x07, 0xf0, 0xb0, 0xeb, 0x00, 0x28, 0x31, 0xd0, +0xa8, 0x78, 0x03, 0x09, 0x07, 0xf0, 0xa6, 0xef, 0x0e, 0x08, 0x2e, 0x08, 0x2e, 0x29, 0x2e, 0x2e, +0x2e, 0x1d, 0x2e, 0x10, 0x14, 0x19, 0x24, 0x2e, 0x38, 0x00, 0x07, 0xf0, 0xd8, 0xef, 0x29, 0x00, +0x38, 0x00, 0x06, 0xf0, 0x65, 0xfb, 0x1d, 0xe0, 0x20, 0x00, 0x06, 0xf0, 0x4a, 0xff, 0x19, 0xe0, +0x02, 0x99, 0x20, 0x00, 0x04, 0xf0, 0xed, 0xff, 0x14, 0xe0, 0x20, 0x00, 0x04, 0xf0, 0x1d, 0xff, +0x10, 0xe0, 0x20, 0x00, 0xfb, 0xf7, 0x89, 0xfa, 0x20, 0x00, 0xfc, 0xf7, 0xe3, 0xf8, 0x09, 0xe0, +0x02, 0x99, 0x20, 0x00, 0xfb, 0xf7, 0x51, 0xff, 0x04, 0xe0, 0x02, 0x9a, 0x21, 0x00, 0x38, 0x00, +0xfc, 0xf7, 0x38, 0xf9, 0x30, 0x00, 0xfe, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0xff, 0x30, 0x4a, 0x30, +0x0d, 0x00, 0x06, 0x00, 0x07, 0xf0, 0xae, 0xef, 0x00, 0x28, 0x0e, 0xd0, 0x06, 0x22, 0x29, 0x00, +0x30, 0x00, 0x07, 0xf0, 0xc8, 0xea, 0x20, 0x00, 0x07, 0xf0, 0xa8, 0xef, 0x20, 0x00, 0xff, 0x30, +0xe8, 0x21, 0x59, 0x30, 0x07, 0xf0, 0xfa, 0xeb, 0x84, 0x88, 0xa0, 0x0c, 0x01, 0x00, 0x00, 0x00, +0xac, 0x64, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xf6, 0x40, 0x56, 0x7e, 0x04, 0xe0, 0x21, 0x00, +0x28, 0x00, 0x07, 0xf0, 0xa2, 0xef, 0x04, 0x00, 0x20, 0x00, 0x70, 0xbd, 0xf7, 0xb5, 0x05, 0x00, +0x16, 0x00, 0x47, 0x69, 0x10, 0x00, 0x07, 0xf0, 0xc0, 0xea, 0x11, 0xe0, 0x20, 0x6b, 0x00, 0x28, +0x0a, 0xd0, 0x02, 0x2e, 0x01, 0xd0, 0x03, 0x2e, 0x06, 0xd1, 0xa7, 0x42, 0x04, 0xd0, 0x6c, 0x61, +0x22, 0x6b, 0x01, 0x99, 0x28, 0x00, 0x90, 0x47, 0x31, 0x00, 0x20, 0x00, 0x07, 0xf0, 0x44, 0xeb, +0x04, 0x00, 0xeb, 0xd1, 0x6f, 0x61, 0xfe, 0xbd, 0xf3, 0xb5, 0x83, 0xb0, 0x06, 0x00, 0x01, 0x27, +0x00, 0x89, 0x85, 0x19, 0xa8, 0x78, 0x01, 0x07, 0x89, 0x0f, 0x36, 0xd1, 0x00, 0x09, 0x04, 0x28, +0x68, 0xd0, 0x08, 0x28, 0x6e, 0xd0, 0x0b, 0x28, 0x66, 0xd1, 0x29, 0x00, 0x12, 0x31, 0x02, 0x20, +0x02, 0x91, 0x07, 0xf0, 0x6e, 0xef, 0x04, 0x00, 0x04, 0xd0, 0x20, 0x00, 0x07, 0xf0, 0x20, 0xeb, +0x00, 0x28, 0x09, 0xd1, 0x02, 0x99, 0x03, 0x20, 0x07, 0xf0, 0x62, 0xef, 0x04, 0x00, 0x03, 0xd0, +0x60, 0x7a, 0x02, 0x28, 0x00, 0xd0, 0x00, 0x24, 0x20, 0x00, 0x07, 0xf0, 0x12, 0xeb, 0x00, 0x28, +0x79, 0xd0, 0x28, 0x00, 0x0c, 0x30, 0x01, 0x90, 0x07, 0xf0, 0x2a, 0xef, 0x00, 0x28, 0x01, 0xd0, +0x00, 0x22, 0x06, 0xe0, 0x01, 0x99, 0x20, 0x00, 0x07, 0xf0, 0x4e, 0xef, 0x01, 0x28, 0x05, 0xd1, +0x06, 0x22, 0x01, 0x99, 0x20, 0x00, 0x04, 0xf0, 0x66, 0xfb, 0x64, 0xe0, 0x20, 0x00, 0x07, 0xf0, +0x68, 0xea, 0x00, 0x90, 0x60, 0x7a, 0x07, 0xf0, 0x44, 0xef, 0x05, 0x00, 0x20, 0x00, 0x07, 0xf0, +0x44, 0xef, 0x00, 0x99, 0x20, 0x31, 0x09, 0x78, 0x81, 0x42, 0x29, 0xd9, 0x08, 0x2d, 0x27, 0xd2, +0x01, 0x99, 0x20, 0x00, 0xff, 0xf7, 0x6a, 0xff, 0x05, 0x00, 0x4c, 0xd0, 0x01, 0x9a, 0x29, 0x00, +0x20, 0x00, 0x05, 0xf0, 0x74, 0xfb, 0x28, 0x6b, 0x00, 0x28, 0x44, 0xd0, 0x75, 0x61, 0x2a, 0x6b, +0x30, 0x00, 0x12, 0xe0, 0x75, 0x63, 0x00, 0xc0, 0x44, 0x00, 0x00, 0x04, 0xac, 0x7b, 0x02, 0x00, +0x5c, 0xf4, 0x00, 0xc0, 0xc5, 0x61, 0x00, 0xc0, 0x1c, 0xee, 0x00, 0xc0, 0x58, 0xee, 0x00, 0xc0, +0x90, 0x77, 0x02, 0x00, 0x1f, 0xe0, 0x05, 0xe0, 0x28, 0xe0, 0x04, 0x99, 0x90, 0x47, 0x2a, 0xe0, +0x07, 0x22, 0xbe, 0xe7, 0x29, 0x00, 0x12, 0x31, 0x01, 0x20, 0x07, 0xf0, 0x02, 0xef, 0x00, 0x28, +0x21, 0xd0, 0x29, 0x00, 0x0c, 0x31, 0xff, 0xf7, 0x39, 0xff, 0x04, 0x00, 0x1b, 0xd0, 0x20, 0x6b, +0x00, 0x28, 0x04, 0xd0, 0x74, 0x61, 0x22, 0x6b, 0x04, 0x99, 0x30, 0x00, 0x90, 0x47, 0x20, 0x00, +0x07, 0xf0, 0xfe, 0xee, 0x0f, 0xe0, 0x04, 0x99, 0x03, 0x22, 0x30, 0x00, 0xff, 0xf7, 0x46, 0xff, +0x04, 0x99, 0x02, 0x22, 0x30, 0x00, 0xff, 0xf7, 0x41, 0xff, 0x04, 0xe0, 0x04, 0x99, 0x30, 0x00, +0xff, 0xf7, 0x40, 0xfd, 0x07, 0x00, 0x38, 0x00, 0x05, 0xb0, 0xf0, 0xbd, 0x7f, 0xb5, 0x05, 0x00, +0x0c, 0x00, 0x02, 0xd1, 0x48, 0x1e, 0x04, 0xb0, 0x70, 0xbd, 0x00, 0x20, 0x00, 0x90, 0x01, 0x90, +0x02, 0x90, 0x28, 0x00, 0x03, 0x94, 0x07, 0xf0, 0xf4, 0xe9, 0x03, 0x00, 0x68, 0x7a, 0x02, 0x28, +0x05, 0xd1, 0x8f, 0x20, 0x80, 0x00, 0x21, 0x68, 0x18, 0x18, 0x6a, 0x46, 0x08, 0xe0, 0x29, 0x7a, +0x03, 0x29, 0x01, 0xd1, 0x03, 0x28, 0x05, 0xd1, 0x28, 0x00, 0x21, 0x68, 0x14, 0x30, 0x6a, 0x46, +0x07, 0xf0, 0x7e, 0xee, 0x00, 0x20, 0xde, 0xe7, 0xf0, 0xb5, 0x00, 0x28, 0x85, 0xb0, 0x01, 0xd1, +0x01, 0x20, 0xd1, 0xe7, 0x01, 0x89, 0x45, 0x69, 0x0c, 0x18, 0x00, 0x20, 0x27, 0x00, 0x09, 0x37, +0x00, 0x90, 0x01, 0x90, 0x03, 0x90, 0x28, 0x00, 0x02, 0x97, 0x07, 0xf0, 0xca, 0xe9, 0x06, 0x00, +0x28, 0x00, 0x07, 0xf0, 0xd2, 0xe9, 0x21, 0x78, 0x21, 0x29, 0x1c, 0xd0, 0x11, 0xdc, 0x1d, 0x29, +0x19, 0xd0, 0x09, 0xdc, 0x0b, 0x29, 0x03, 0xd0, 0x0d, 0x29, 0x01, 0xd0, 0x0e, 0x29, 0x2f, 0xd1, +0x28, 0x00, 0x14, 0x30, 0x6a, 0x46, 0x12, 0xe0, 0x1f, 0x29, 0x0c, 0xd0, 0x20, 0x29, 0x27, 0xd1, +0x09, 0xe0, 0x0b, 0x00, 0x22, 0x3b, 0x07, 0xf0, 0x38, 0xee, 0x0a, 0x06, 0x0d, 0x16, 0x23, 0x23, +0x1f, 0x23, 0x23, 0x23, 0x06, 0x23, 0x8f, 0x20, 0x80, 0x00, 0x30, 0x18, 0x6a, 0x46, 0x07, 0xf0, +0x40, 0xee, 0x19, 0xe0, 0x20, 0x7c, 0xe1, 0x7b, 0x02, 0x02, 0x0a, 0x43, 0x39, 0x00, 0x28, 0x00, +0x04, 0xf0, 0xa7, 0xfc, 0x10, 0xe0, 0x60, 0x30, 0x00, 0x78, 0x01, 0x28, 0x0c, 0xd1, 0x00, 0x21, +0x28, 0x00, 0x04, 0xf0, 0x2a, 0xfd, 0x07, 0xe0, 0x28, 0x00, 0x07, 0xf0, 0x76, 0xee, 0x03, 0xe0, +0x21, 0x00, 0x28, 0x00, 0xff, 0xf7, 0x82, 0xff, 0x00, 0x20, 0x7d, 0xe7, 0x70, 0xb5, 0x05, 0x00, +0x4b, 0x26, 0xf6, 0x00, 0x02, 0xe0, 0x01, 0x20, 0x07, 0xf0, 0xb2, 0xe9, 0xd7, 0x48, 0x00, 0x22, +0x31, 0x00, 0x07, 0xf0, 0xea, 0xea, 0x04, 0x00, 0xf5, 0xd0, 0xac, 0x20, 0x65, 0x61, 0x20, 0x81, +0x20, 0x18, 0x69, 0x21, 0x07, 0xf0, 0x4c, 0xe9, 0x20, 0x00, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, +0x09, 0x20, 0x80, 0x01, 0x28, 0x18, 0x80, 0x6a, 0x00, 0x24, 0x00, 0x28, 0x01, 0xd0, 0x04, 0x00, +0x08, 0x34, 0x2e, 0x00, 0x20, 0x36, 0x00, 0x29, 0x02, 0xd1, 0xb0, 0x7f, 0xc0, 0x06, 0x11, 0xd4, +0x01, 0x22, 0x11, 0x00, 0x28, 0x00, 0x07, 0xf0, 0x44, 0xee, 0xb0, 0x7f, 0xc0, 0x06, 0x09, 0xd4, +0xe8, 0x68, 0x03, 0x21, 0x08, 0x43, 0x00, 0x2c, 0xe8, 0x60, 0x03, 0xd0, 0xa0, 0x7a, 0xfd, 0x21, +0x08, 0x40, 0xa0, 0x72, 0x07, 0xf0, 0x90, 0xe9, 0x28, 0x00, 0xfc, 0xf7, 0x60, 0xfd, 0x70, 0xbd, +0x38, 0xb5, 0x04, 0x00, 0xff, 0x21, 0x00, 0x20, 0x49, 0x31, 0x08, 0x55, 0xe1, 0x68, 0x01, 0x22, +0x12, 0x03, 0x91, 0x43, 0xe1, 0x60, 0x0b, 0x21, 0x89, 0x01, 0x65, 0x18, 0x29, 0x69, 0x08, 0x73, +0x20, 0x7a, 0x01, 0x28, 0x06, 0xd1, 0x00, 0x22, 0x11, 0x00, 0x10, 0x00, 0x13, 0x00, 0x00, 0x92, +0x01, 0xf0, 0xc4, 0xf8, 0x07, 0xf0, 0x18, 0xee, 0x28, 0x69, 0x05, 0x21, 0x07, 0xf0, 0xcc, 0xeb, +0x39, 0x20, 0x00, 0x5d, 0x00, 0x07, 0x04, 0xd4, 0x01, 0x22, 0x11, 0x00, 0x20, 0x00, 0x07, 0xf0, +0x08, 0xee, 0x38, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0xa5, 0x48, 0x22, 0x00, 0x80, 0x68, 0x04, 0x21, +0x00, 0x68, 0x00, 0x23, 0x07, 0xf0, 0x88, 0xea, 0x00, 0x28, 0x05, 0xd1, 0x60, 0x69, 0x80, 0x21, +0xfc, 0xf7, 0x5d, 0xfc, 0x00, 0x20, 0x10, 0xbd, 0x20, 0x00, 0x07, 0xf0, 0x82, 0xea, 0x01, 0x20, +0x10, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x0e, 0x00, 0xff, 0xf7, 0x78, 0xff, 0x04, 0x00, 0x24, 0xd0, +0x20, 0x89, 0x07, 0x22, 0x03, 0x19, 0x97, 0x48, 0x18, 0x70, 0x00, 0x0a, 0x58, 0x70, 0x00, 0x20, +0x98, 0x71, 0xd8, 0x71, 0x0f, 0x20, 0x98, 0x70, 0x00, 0x20, 0xd8, 0x70, 0x18, 0x00, 0x31, 0x00, +0x08, 0x30, 0x07, 0xf0, 0xd2, 0xe8, 0x28, 0x00, 0x7e, 0x30, 0x07, 0xf0, 0xae, 0xed, 0x00, 0x28, +0x05, 0xd1, 0x31, 0x00, 0x28, 0x00, 0x07, 0xf0, 0x60, 0xed, 0x00, 0x28, 0x02, 0xd0, 0x28, 0x00, +0xff, 0xf7, 0x96, 0xff, 0x20, 0x00, 0xff, 0xf7, 0xcd, 0xf7, 0xca, 0x5a, 0x01, 0x00, 0x00, 0x00, +0xa8, 0x68, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xd6, 0xa3, 0xfe, 0xf4, 0xbd, 0xff, 0x70, 0xbd, +0x70, 0xb5, 0x04, 0x00, 0x85, 0x48, 0x0d, 0x00, 0x16, 0x00, 0x19, 0x00, 0x03, 0xd0, 0x06, 0x22, +0x07, 0xf0, 0xb4, 0xe8, 0x02, 0xe0, 0x06, 0x21, 0x07, 0xf0, 0xec, 0xe9, 0x7f, 0x48, 0x08, 0x38, +0xc6, 0x80, 0x04, 0x60, 0x05, 0x71, 0x20, 0x00, 0xff, 0xf7, 0x7c, 0xff, 0x12, 0x20, 0x07, 0xf0, +0x32, 0xed, 0x70, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0xa3, 0x20, 0x80, 0x00, 0x20, 0x18, 0x00, 0xf0, +0x1f, 0xfc, 0x77, 0x48, 0x21, 0x00, 0x06, 0x22, 0x7e, 0x31, 0x20, 0x18, 0x07, 0xf0, 0x96, 0xe8, +0x10, 0xbd, 0xfe, 0xb5, 0x05, 0x00, 0x0f, 0x00, 0x11, 0x21, 0x38, 0x00, 0x07, 0xf0, 0x82, 0xe8, +0x6f, 0x48, 0x3c, 0x00, 0x29, 0x18, 0x10, 0x34, 0x06, 0x22, 0xb8, 0x1d, 0x07, 0xf0, 0x86, 0xe8, +0xe8, 0x68, 0xc0, 0x04, 0x7e, 0xd5, 0x29, 0x00, 0x06, 0x22, 0x7e, 0x31, 0x38, 0x00, 0x07, 0xf0, +0x7e, 0xe8, 0x28, 0x00, 0x20, 0x30, 0x81, 0x7f, 0x39, 0x73, 0xc0, 0x7f, 0x78, 0x73, 0x00, 0x20, +0x20, 0x70, 0x60, 0x70, 0x0b, 0x20, 0x80, 0x01, 0x2e, 0x18, 0x30, 0x69, 0x2b, 0x21, 0x20, 0x30, +0xc0, 0x7a, 0xa0, 0x70, 0x00, 0x0a, 0xe0, 0x70, 0x30, 0x69, 0x0a, 0x5c, 0x01, 0x00, 0x2c, 0x31, +0x20, 0x1d, 0x07, 0xf0, 0x64, 0xe8, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x24, 0x1d, +0x04, 0x19, 0xff, 0x20, 0x2b, 0x30, 0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, 0x02, 0x20, 0xa0, 0x70, +0x00, 0x20, 0xe0, 0x70, 0x01, 0xa9, 0x68, 0x46, 0x00, 0xf0, 0xa8, 0xfb, 0x6b, 0x46, 0x18, 0x78, +0x20, 0x71, 0x01, 0x98, 0x60, 0x71, 0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x24, 0x1d, +0x04, 0x19, 0x01, 0x20, 0x20, 0x70, 0x00, 0x20, 0x60, 0x70, 0x0e, 0x20, 0xa0, 0x70, 0x00, 0x20, +0x29, 0x00, 0xe0, 0x70, 0x0e, 0x22, 0x4a, 0x31, 0x20, 0x1d, 0x07, 0xf0, 0x38, 0xe8, 0xe0, 0x78, +0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x24, 0x1d, 0x04, 0x19, 0x70, 0x69, 0x07, 0x21, 0xc9, 0x01, +0x40, 0x18, 0x80, 0x79, 0x00, 0x28, 0x14, 0xd0, 0x20, 0x70, 0x64, 0x1c, 0x00, 0x20, 0x20, 0x70, +0x72, 0x69, 0x64, 0x1c, 0x51, 0x18, 0xc9, 0x79, 0x21, 0x70, 0x64, 0x1c, 0x20, 0x70, 0x70, 0x69, +0x71, 0x21, 0xc9, 0x00, 0x64, 0x1c, 0x41, 0x18, 0x07, 0x22, 0x20, 0x00, 0x07, 0xf0, 0x16, 0xe8, +0xe4, 0x1d, 0x34, 0x48, 0x01, 0x7e, 0x00, 0x29, 0x12, 0xd0, 0x21, 0x70, 0x64, 0x1c, 0x00, 0x21, +0x21, 0x70, 0x40, 0x7e, 0x64, 0x1c, 0x20, 0x70, 0x64, 0x1c, 0x21, 0x70, 0x64, 0x1c, 0x2d, 0x49, +0x1a, 0x22, 0x00, 0xe0, 0x04, 0xe0, 0x18, 0x31, 0x20, 0x00, 0x07, 0xf0, 0x00, 0xe8, 0x1a, 0x34, +0xe0, 0x1b, 0xfe, 0xbd, 0xf0, 0xb5, 0x05, 0x00, 0x87, 0xb0, 0x0f, 0x00, 0x14, 0x00, 0x1e, 0x00, +0x01, 0xa8, 0x00, 0xf0, 0x75, 0xfb, 0x06, 0x22, 0x39, 0x00, 0x03, 0xa8, 0x06, 0xf0, 0xee, 0xef, +0x6b, 0x46, 0x20, 0x0a, 0x5c, 0x76, 0x98, 0x76, 0x04, 0xa8, 0x07, 0x22, 0x80, 0x1c, 0x01, 0xa9, +0x06, 0xf0, 0xe4, 0xef, 0x32, 0x00, 0x28, 0x00, 0x03, 0xa9, 0x07, 0xf0, 0xec, 0xec, 0x07, 0xb0, +0xf0, 0xbd, 0xff, 0xb5, 0x81, 0xb0, 0x06, 0x00, 0x15, 0x00, 0x1f, 0x00, 0xff, 0xf7, 0x68, 0xfe, +0x04, 0x00, 0x09, 0xd0, 0x02, 0x9a, 0x2b, 0x00, 0x31, 0x00, 0x20, 0x00, 0x00, 0x97, 0x07, 0xf0, +0xde, 0xec, 0x20, 0x00, 0xff, 0xf7, 0xc8, 0xfe, 0x05, 0xb0, 0xf0, 0xbd, 0xf8, 0xb5, 0x15, 0x00, +0x06, 0x00, 0x0f, 0x00, 0xff, 0xf7, 0x54, 0xfe, 0x04, 0x00, 0x08, 0xd0, 0x2b, 0x00, 0x3a, 0x00, +0x31, 0x00, 0x20, 0x00, 0x07, 0xf0, 0xce, 0xec, 0x20, 0x00, 0xff, 0xf7, 0xb5, 0xfe, 0xf8, 0xbd, +0x58, 0x00, 0x00, 0x04, 0x98, 0x42, 0x01, 0xc0, 0x24, 0x80, 0x00, 0x00, 0xb0, 0x42, 0x01, 0xc0, +0x86, 0x02, 0x00, 0x00, 0xdc, 0x56, 0x02, 0xc0, 0x10, 0xb5, 0x09, 0x68, 0x49, 0x1c, 0x03, 0xd1, +0x41, 0x68, 0x18, 0x31, 0x07, 0xf0, 0xba, 0xec, 0x00, 0x20, 0x10, 0xbd, 0x02, 0x00, 0x08, 0x00, +0x10, 0xb5, 0x09, 0x68, 0x49, 0x1c, 0x05, 0xd1, 0x51, 0x68, 0x10, 0x00, 0x18, 0x31, 0x07, 0xf0, +0xae, 0xec, 0x00, 0x20, 0x10, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x0e, 0x00, 0x4b, 0x68, 0x85, 0x69, +0x30, 0x68, 0x9f, 0x68, 0xd9, 0x68, 0x00, 0x22, 0x0d, 0x28, 0x4a, 0xd0, 0x17, 0xdc, 0x0a, 0x28, +0x61, 0xd0, 0x0c, 0xdc, 0x80, 0x1c, 0x68, 0xd0, 0x01, 0x28, 0x2d, 0xd0, 0x04, 0x28, 0x6b, 0xd1, +0x00, 0x2d, 0x69, 0xd0, 0x59, 0x68, 0x28, 0x00, 0x07, 0xf0, 0x94, 0xec, 0x64, 0xe0, 0x0b, 0x28, +0x47, 0xd0, 0x0c, 0x28, 0x60, 0xd1, 0x28, 0x00, 0x01, 0xf0, 0x4d, 0xf9, 0x4e, 0xe0, 0x17, 0x28, +0x4f, 0xd0, 0x06, 0xdc, 0x15, 0x28, 0x57, 0xd0, 0x16, 0x28, 0x55, 0xd1, 0x01, 0x20, 0x20, 0x74, +0x48, 0xe0, 0x18, 0x28, 0x50, 0xd0, 0x25, 0x28, 0x4e, 0xd1, 0x00, 0x2d, 0x4c, 0xd0, 0x28, 0x7a, +0x03, 0x28, 0x49, 0xd1, 0x68, 0x7a, 0x01, 0x28, 0x46, 0xd1, 0x1a, 0x68, 0x59, 0x68, 0x28, 0x00, +0x07, 0xf0, 0x94, 0xe8, 0x00, 0x20, 0xf8, 0xbd, 0x28, 0x00, 0x62, 0x74, 0x00, 0xf0, 0x60, 0xfd, +0x00, 0x21, 0x01, 0x20, 0x06, 0xf0, 0xb2, 0xef, 0x07, 0xf0, 0x68, 0xec, 0x00, 0x28, 0x04, 0xd0, +0x07, 0xf0, 0x64, 0xec, 0x00, 0x7a, 0x03, 0x28, 0xec, 0xd0, 0x00, 0x20, 0x07, 0xf0, 0x7a, 0xeb, +0xe8, 0xe7, 0x39, 0x00, 0x28, 0x00, 0x01, 0xf0, 0xdb, 0xfb, 0x01, 0x04, 0x09, 0x0c, 0x28, 0x00, +0x01, 0xf0, 0xa9, 0xf9, 0xde, 0xe7, 0x61, 0x68, 0x24, 0x31, 0x20, 0x00, 0x07, 0xf0, 0x46, 0xec, +0xd8, 0xe7, 0x39, 0x00, 0x28, 0x00, 0x01, 0xf0, 0x1a, 0xfb, 0x01, 0x04, 0x09, 0x0c, 0x28, 0x00, +0x01, 0xf0, 0x92, 0xf9, 0xce, 0xe7, 0x28, 0x00, 0x01, 0xf0, 0x1d, 0xf9, 0x00, 0x28, 0xea, 0xd0, +0xc8, 0xe7, 0x22, 0x74, 0x61, 0x68, 0x3c, 0x31, 0xe7, 0xe7, 0x01, 0x21, 0x08, 0x00, 0x06, 0xf0, +0x7e, 0xef, 0x20, 0x68, 0xa0, 0x60, 0xbd, 0xe7, 0x30, 0x00, 0xf8, 0xbd, 0x70, 0xb5, 0x04, 0x00, +0x4d, 0x68, 0x08, 0x00, 0x03, 0x68, 0xe9, 0x68, 0xa6, 0x69, 0x09, 0x2b, 0x67, 0xd0, 0x09, 0xdc, +0x9b, 0x1c, 0x07, 0xf0, 0xa4, 0xeb, 0x0b, 0x78, 0x22, 0x7b, 0x7b, 0x7b, 0x4a, 0x7b, 0x7b, 0x50, +0x41, 0x56, 0x7b, 0x00, 0x17, 0x2b, 0x69, 0xd0, 0x05, 0xdc, 0x15, 0x2b, 0x6e, 0xd0, 0x16, 0x2b, +0x6c, 0xd1, 0x01, 0x20, 0x63, 0xe0, 0x18, 0x2b, 0x68, 0xd0, 0x25, 0x2b, 0x66, 0xd1, 0x00, 0x2e, +0x64, 0xd0, 0x31, 0x7a, 0x03, 0x29, 0x61, 0xd1, 0x71, 0x7a, 0x01, 0x29, 0x5e, 0xd1, 0x2a, 0x68, +0x69, 0x68, 0x30, 0x00, 0x07, 0xf0, 0x22, 0xe8, 0x57, 0xe0, 0x03, 0x20, 0x80, 0x02, 0x07, 0xf0, +0x02, 0xec, 0x30, 0x00, 0x07, 0xf0, 0x02, 0xec, 0x30, 0x00, 0x07, 0xf0, 0x5c, 0xe8, 0x01, 0x20, +0x07, 0xf0, 0x00, 0xec, 0x01, 0x20, 0x07, 0xf0, 0x0e, 0xeb, 0x61, 0x7c, 0x00, 0x29, 0x44, 0xd0, +0x33, 0x00, 0x62, 0x8a, 0x7e, 0x33, 0x37, 0xe0, 0xff, 0xf7, 0x0a, 0xfe, 0x61, 0x68, 0x18, 0x31, +0x20, 0x00, 0x07, 0xf0, 0xdc, 0xeb, 0x38, 0xe0, 0x9f, 0x79, 0x8a, 0x57, 0x01, 0x00, 0x00, 0x00, +0xa4, 0x6c, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x51, 0xf5, 0xf0, 0xa6, 0x0c, 0x31, 0xc8, 0x79, +0x89, 0x79, 0x02, 0x02, 0x0a, 0x43, 0x03, 0x21, 0x30, 0x00, 0x00, 0x23, 0xee, 0xe7, 0x2a, 0x68, +0x69, 0x68, 0x30, 0x00, 0x00, 0xf0, 0xd6, 0xfb, 0x29, 0xe0, 0x2a, 0x68, 0x69, 0x68, 0x30, 0x00, +0x00, 0xf0, 0x54, 0xfb, 0x23, 0xe0, 0x0c, 0x31, 0x0d, 0x00, 0x30, 0x00, 0x07, 0xf0, 0x40, 0xeb, +0x00, 0x28, 0x1c, 0xd0, 0xe8, 0x79, 0xa9, 0x79, 0x02, 0x02, 0x0a, 0x43, 0x2b, 0x00, 0x08, 0x21, +0x0c, 0xe0, 0x0c, 0x31, 0x0d, 0x00, 0x30, 0x00, 0x07, 0xf0, 0x32, 0xeb, 0x00, 0x28, 0x0e, 0xd0, +0xe8, 0x79, 0xa9, 0x79, 0x02, 0x02, 0x0a, 0x43, 0x2b, 0x00, 0x09, 0x21, 0x30, 0x00, 0xc5, 0xe7, +0x00, 0x20, 0x20, 0x74, 0x61, 0x68, 0x3c, 0x31, 0xc4, 0xe7, 0x20, 0x68, 0xa0, 0x60, 0x00, 0x20, +0x70, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x08, 0x00, 0x0b, 0x68, 0x4d, 0x68, 0xa6, 0x69, 0x00, 0x27, +0x0e, 0x2b, 0x1d, 0xd0, 0x08, 0xdc, 0x9b, 0x1c, 0x07, 0xf0, 0x1a, 0xeb, 0x0a, 0x5a, 0x0f, 0x59, +0x59, 0x59, 0x41, 0x59, 0x59, 0x47, 0x30, 0x59, 0x15, 0x2b, 0x4f, 0xd0, 0x16, 0x2b, 0x42, 0xd0, +0x17, 0x2b, 0x47, 0xd0, 0x18, 0x2b, 0x4a, 0xd1, 0x48, 0xe0, 0x02, 0x20, 0x07, 0xf0, 0xa4, 0xea, +0x01, 0x20, 0x07, 0xf0, 0x92, 0xeb, 0x07, 0xf0, 0x94, 0xeb, 0x07, 0xf0, 0x96, 0xeb, 0x3d, 0xe0, +0x01, 0x20, 0x07, 0xf0, 0x96, 0xeb, 0x61, 0x68, 0x20, 0x00, 0x18, 0x31, 0x07, 0xf0, 0x70, 0xeb, +0x30, 0x00, 0x06, 0xf0, 0xca, 0xee, 0x30, 0x00, 0x06, 0xf0, 0xca, 0xee, 0x76, 0x48, 0x07, 0x60, +0x76, 0x48, 0x07, 0x60, 0x30, 0x00, 0x01, 0xf0, 0x82, 0xf8, 0x27, 0xe0, 0x01, 0x21, 0x08, 0x00, +0x06, 0xf0, 0xd6, 0xee, 0x00, 0x21, 0x01, 0x20, 0x06, 0xf0, 0xaa, 0xee, 0x00, 0x22, 0x03, 0x21, +0x30, 0x00, 0x13, 0x00, 0xff, 0xf7, 0x7e, 0xfd, 0x61, 0x68, 0x18, 0x31, 0x0e, 0xe0, 0x2a, 0x68, +0x69, 0x68, 0x30, 0x00, 0x00, 0xf0, 0x56, 0xfb, 0x10, 0xe0, 0x2a, 0x68, 0x69, 0x68, 0x30, 0x00, +0x00, 0xf0, 0xd4, 0xfa, 0x0a, 0xe0, 0x01, 0x20, 0x20, 0x74, 0x04, 0xe0, 0x20, 0x00, 0x07, 0xf0, +0x40, 0xeb, 0x03, 0xe0, 0x27, 0x74, 0x61, 0x68, 0x3c, 0x31, 0xf7, 0xe7, 0x00, 0x20, 0xf8, 0xbd, +0x20, 0x68, 0xa0, 0x60, 0xfa, 0xe7, 0x70, 0xb5, 0x04, 0x00, 0x48, 0x68, 0x0a, 0x68, 0xc5, 0x68, +0xa0, 0x69, 0x09, 0x2a, 0x2c, 0xd0, 0x0f, 0xdc, 0x92, 0x1c, 0x33, 0xd0, 0x01, 0x2a, 0x15, 0xd0, +0x09, 0x2a, 0x22, 0xd0, 0x0a, 0x2a, 0x2f, 0xd1, 0x29, 0x00, 0x0c, 0x31, 0x07, 0xf0, 0xa0, 0xea, +0x00, 0x28, 0x27, 0xd0, 0x08, 0x20, 0x22, 0xe0, 0x15, 0x2a, 0x10, 0xd0, 0x16, 0x2a, 0x23, 0xd0, +0x17, 0x2a, 0x21, 0xd0, 0x18, 0x2a, 0x1f, 0xd1, 0xa1, 0x68, 0x0a, 0xe0, 0x06, 0xf0, 0x60, 0xef, +0x00, 0x20, 0x07, 0xf0, 0x22, 0xeb, 0x00, 0x20, 0x07, 0xf0, 0x2e, 0xeb, 0x12, 0xe0, 0x61, 0x68, +0x48, 0x31, 0x20, 0x00, 0x07, 0xf0, 0x04, 0xeb, 0x0c, 0xe0, 0x03, 0x20, 0x60, 0x74, 0x09, 0xe0, +0x29, 0x00, 0x0c, 0x31, 0x07, 0xf0, 0x7c, 0xea, 0x00, 0x28, 0x03, 0xd0, 0x09, 0x20, 0x60, 0x74, +0x68, 0x8a, 0x60, 0x82, 0x00, 0x20, 0x70, 0xbd, 0x08, 0x00, 0x70, 0xbd, 0x70, 0xb5, 0x04, 0x00, +0x08, 0x00, 0x49, 0x68, 0x03, 0x68, 0xcd, 0x68, 0xa2, 0x69, 0x14, 0x2b, 0x17, 0xd0, 0x18, 0xdc, +0x07, 0x2b, 0x2c, 0xd0, 0x04, 0xdc, 0x9b, 0x1c, 0x35, 0xd0, 0x01, 0x2b, 0x10, 0xd1, 0x0e, 0xe0, +0x08, 0x2b, 0x27, 0xd0, 0x09, 0x2b, 0x0b, 0xd1, 0x29, 0x00, 0x0c, 0x31, 0x10, 0x00, 0x07, 0xf0, +0x58, 0xea, 0x00, 0x28, 0x03, 0xd0, 0x09, 0x20, 0x60, 0x74, 0x68, 0x8a, 0x60, 0x82, 0x00, 0x20, +0x70, 0xbd, 0x15, 0x3b, 0x00, 0x21, 0x07, 0xf0, 0x54, 0xea, 0x06, 0x04, 0x04, 0x04, 0x05, 0x07, +0x0e, 0x04, 0xf5, 0xe7, 0xa1, 0x68, 0x02, 0xe0, 0x61, 0x74, 0x61, 0x68, 0x30, 0x31, 0x20, 0x00, +0x07, 0xf0, 0xbe, 0xea, 0xeb, 0xe7, 0x61, 0x74, 0x61, 0x68, 0x18, 0x31, 0xf7, 0xe7, 0x03, 0x20, +0x60, 0x74, 0xe4, 0xe7, 0x29, 0x00, 0x0c, 0x31, 0x10, 0x00, 0x07, 0xf0, 0x32, 0xea, 0x00, 0x28, +0xdd, 0xd0, 0x08, 0x20, 0xd8, 0xe7, 0x20, 0x68, 0xa0, 0x60, 0xd8, 0xe7, 0x18, 0x49, 0x10, 0xb5, +0x41, 0x60, 0x18, 0x4a, 0x16, 0x48, 0x00, 0x21, 0x07, 0xf0, 0xca, 0xea, 0x14, 0x49, 0x16, 0x4a, +0x08, 0x00, 0x0c, 0x30, 0x04, 0x00, 0x07, 0xf0, 0xc4, 0xea, 0x11, 0x48, 0x13, 0x4a, 0x21, 0x00, +0x18, 0x30, 0x07, 0xf0, 0xbe, 0xea, 0x0e, 0x48, 0x11, 0x4a, 0x21, 0x00, 0x30, 0x30, 0x07, 0xf0, +0xb8, 0xea, 0x0b, 0x48, 0x0f, 0x4a, 0x21, 0x00, 0x24, 0x30, 0x07, 0xf0, 0xb2, 0xea, 0x08, 0x48, +0x0d, 0x4a, 0x21, 0x00, 0x3c, 0x30, 0x07, 0xf0, 0xac, 0xea, 0x05, 0x48, 0x0b, 0x4a, 0x21, 0x00, +0x48, 0x30, 0x07, 0xf0, 0xa6, 0xea, 0x10, 0xbd, 0x00, 0x1d, 0x01, 0xc0, 0x04, 0x1d, 0x01, 0xc0, +0xb8, 0x42, 0x01, 0xc0, 0xd5, 0x6a, 0x00, 0xc0, 0xe9, 0x6a, 0x00, 0xc0, 0x03, 0x6b, 0x00, 0xc0, +0x09, 0x6c, 0x00, 0xc0, 0x1b, 0x6d, 0x00, 0xc0, 0xef, 0x6d, 0x00, 0xc0, 0x75, 0x6e, 0x00, 0xc0, +0xf8, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x17, 0x00, 0x1e, 0x00, 0x00, 0x28, 0x25, 0xd0, 0x49, 0x20, +0x00, 0x5d, 0xc0, 0x07, 0x00, 0xd0, 0x01, 0x20, 0x07, 0xf0, 0x86, 0xea, 0x20, 0x00, 0x07, 0xf0, +0x88, 0xea, 0x07, 0xf0, 0x8a, 0xea, 0x06, 0x22, 0x21, 0x00, 0x28, 0x00, 0x06, 0xf0, 0x38, 0xed, +0x20, 0x21, 0xa0, 0x1d, 0x06, 0xf0, 0x0c, 0xee, 0x05, 0x00, 0x02, 0x00, 0xa1, 0x1d, 0x38, 0x00, +0x07, 0xf0, 0x7e, 0xea, 0x29, 0x00, 0xa0, 0x1d, 0x35, 0x70, 0x06, 0xf0, 0x22, 0xee, 0x20, 0x00, +0x07, 0xf0, 0x7a, 0xea, 0x01, 0x20, 0x07, 0xf0, 0x60, 0xea, 0xf8, 0xbd, 0xf8, 0xb5, 0x0d, 0x00, +0x16, 0x00, 0x06, 0xf0, 0x72, 0xee, 0x04, 0x00, 0x0c, 0x20, 0x69, 0x46, 0x06, 0xf0, 0xd4, 0xed, +0x03, 0x00, 0x22, 0x00, 0x31, 0x00, 0x28, 0x00, 0x06, 0xf0, 0xd2, 0xed, 0xf8, 0xbd, 0x00, 0x20, +0xff, 0x49, 0xc8, 0x60, 0x70, 0x47, 0x77, 0xb5, 0x83, 0xb0, 0x0d, 0x00, 0x14, 0x00, 0xfc, 0x4e, +0xf0, 0x68, 0x81, 0x42, 0x28, 0xd1, 0x01, 0x22, 0xf1, 0x1c, 0x03, 0xa8, 0x07, 0xf0, 0xf0, 0xe8, +0x00, 0x28, 0x21, 0xd1, 0x07, 0xf0, 0x54, 0xea, 0x00, 0x28, 0x09, 0xd0, 0x00, 0x2c, 0x2d, 0xd1, +0x00, 0x20, 0x07, 0xf0, 0x52, 0xea, 0xf3, 0x48, 0x01, 0x21, 0x07, 0xf0, 0x52, 0xea, 0x25, 0xe0, +0x01, 0x2c, 0x23, 0xd1, 0x28, 0x00, 0x02, 0xaa, 0x03, 0xa9, 0x01, 0xab, 0x07, 0xf0, 0x4c, 0xea, +0x6b, 0x46, 0x1a, 0x79, 0x19, 0x7a, 0x28, 0x00, 0x07, 0xf0, 0x4a, 0xea, 0x07, 0xf0, 0x4c, 0xea, +0x01, 0x20, 0x07, 0xf0, 0x3a, 0xea, 0x11, 0xe0, 0x23, 0x00, 0x01, 0x22, 0x28, 0x00, 0x03, 0xa9, +0x07, 0xf0, 0x46, 0xea, 0x6b, 0x46, 0x18, 0x7b, 0xf0, 0x70, 0xf5, 0x60, 0xb1, 0x68, 0x00, 0x29, +0x04, 0xd1, 0x30, 0x70, 0xb5, 0x60, 0x07, 0xf0, 0x24, 0xea, 0xb0, 0x70, 0x00, 0x20, 0x06, 0xb0, +0x70, 0xbd, 0xdb, 0x49, 0x38, 0xb5, 0x02, 0x00, 0x3c, 0xa8, 0x74, 0xd3, 0x01, 0x00, 0x00, 0x00, +0xa0, 0x70, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x97, 0x64, 0xaf, 0xe0, 0xcc, 0x78, 0x00, 0x94, +0xc9, 0x68, 0x00, 0x98, 0x09, 0x06, 0x09, 0x0e, 0xff, 0xf7, 0xaf, 0xff, 0x38, 0xbd, 0x10, 0xb5, +0xd4, 0x4c, 0xe0, 0x78, 0x20, 0x70, 0xe0, 0x68, 0xa0, 0x60, 0x07, 0xf0, 0x28, 0xea, 0x60, 0x70, +0x07, 0xf0, 0x08, 0xea, 0xa0, 0x70, 0x10, 0xbd, 0x10, 0xb5, 0x07, 0xf0, 0x20, 0xea, 0xcd, 0x49, +0x48, 0x70, 0x10, 0xbd, 0xcb, 0x4a, 0x00, 0x28, 0x01, 0xd0, 0x13, 0x78, 0x03, 0x70, 0x00, 0x29, +0x01, 0xd0, 0x90, 0x68, 0x08, 0x60, 0x70, 0x47, 0x30, 0xb5, 0x04, 0x00, 0xc5, 0x4d, 0x00, 0x20, +0xad, 0x68, 0xa5, 0x42, 0x0e, 0xd1, 0xc3, 0x4c, 0x24, 0x78, 0xa5, 0x07, 0xad, 0x0f, 0x8d, 0x42, +0x08, 0xd1, 0x21, 0x07, 0x89, 0x0f, 0x91, 0x42, 0x04, 0xd1, 0xa1, 0x06, 0x89, 0x0f, 0x99, 0x42, +0x00, 0xd1, 0x01, 0x20, 0x30, 0xbd, 0xbb, 0x48, 0xc0, 0x1c, 0x00, 0x78, 0x80, 0x07, 0x01, 0xd1, +0x01, 0x20, 0x70, 0x47, 0x02, 0x20, 0x70, 0x47, 0xb6, 0x49, 0x0a, 0x78, 0x02, 0x70, 0x89, 0x68, +0x41, 0x70, 0x70, 0x47, 0x70, 0xb5, 0x05, 0x00, 0x0c, 0x00, 0x07, 0xf0, 0xec, 0xe9, 0x00, 0x28, +0x01, 0xd1, 0xb2, 0x48, 0x05, 0xe0, 0x28, 0x00, 0x07, 0xf0, 0xe8, 0xe9, 0x00, 0x28, 0x01, 0xd1, +0xaf, 0x48, 0x04, 0x40, 0x20, 0x00, 0x70, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x0e, 0x00, 0x17, 0x00, +0x1d, 0x00, 0x11, 0x00, 0x30, 0x00, 0x07, 0xf0, 0xde, 0xe9, 0x39, 0x00, 0x30, 0x00, 0x07, 0xf0, +0xde, 0xe9, 0x01, 0x00, 0x20, 0x00, 0x07, 0xf0, 0xde, 0xe9, 0x20, 0x00, 0x07, 0xf0, 0xde, 0xe9, +0x20, 0x00, 0x07, 0xf0, 0xe0, 0xe9, 0x07, 0xf0, 0xe2, 0xe9, 0x29, 0x00, 0x20, 0x00, 0x07, 0xf0, +0xe2, 0xe9, 0xf8, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x08, 0x00, 0x06, 0xf0, 0xc2, 0xee, +0x00, 0x28, 0x03, 0xd0, 0x28, 0x00, 0x7e, 0x30, 0x07, 0xf0, 0x84, 0xe9, 0x00, 0x2c, 0x06, 0xd0, +0x00, 0x20, 0x07, 0xf0, 0x7c, 0xe9, 0x97, 0x48, 0x00, 0x68, 0x80, 0x47, 0x02, 0xe0, 0x01, 0x20, +0x07, 0xf0, 0x74, 0xe9, 0x01, 0x20, 0x07, 0xf0, 0x6a, 0xe9, 0x01, 0x20, 0x00, 0x06, 0x07, 0xf0, +0xc6, 0xe9, 0x07, 0xf0, 0xc8, 0xe9, 0x70, 0xbd, 0xfe, 0xb5, 0x00, 0x21, 0x04, 0x00, 0x89, 0x4d, +0x68, 0x78, 0x07, 0xf0, 0xc4, 0xe9, 0x20, 0x7a, 0x03, 0x28, 0x04, 0xd1, 0x20, 0x00, 0x07, 0xf0, +0xc2, 0xe9, 0x00, 0x28, 0x07, 0xd1, 0x28, 0x68, 0x00, 0x90, 0xa9, 0x68, 0xaa, 0x78, 0x09, 0x06, +0x09, 0x0e, 0xff, 0xf7, 0x02, 0xff, 0x20, 0x7a, 0x00, 0x27, 0x01, 0x28, 0x03, 0xd1, 0xe0, 0x68, +0xc0, 0x04, 0x00, 0xd5, 0x01, 0x27, 0x21, 0x00, 0x38, 0x00, 0xff, 0xf7, 0xbb, 0xff, 0x22, 0x00, +0x61, 0x32, 0x00, 0x92, 0x26, 0x00, 0x40, 0x36, 0x20, 0x00, 0x31, 0x7e, 0x00, 0x22, 0x4a, 0x30, +0x13, 0x00, 0x01, 0x90, 0x06, 0xf0, 0xd2, 0xec, 0x00, 0x2f, 0x03, 0xd1, 0x01, 0x00, 0x20, 0x00, +0xff, 0xf7, 0x78, 0xff, 0x03, 0x00, 0x32, 0x7e, 0x01, 0x99, 0x20, 0x00, 0xff, 0xf7, 0x84, 0xff, +0x07, 0xf0, 0x94, 0xe9, 0x00, 0x20, 0x68, 0x60, 0xfe, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x6e, 0x4c, +0x0e, 0x00, 0x20, 0x79, 0x00, 0x21, 0x80, 0x06, 0xc2, 0x0f, 0x28, 0x00, 0x07, 0xf0, 0x8a, 0xe9, +0x20, 0x79, 0xc0, 0x06, 0x04, 0xd5, 0x31, 0x00, 0x28, 0x00, 0x07, 0xf0, 0x88, 0xe9, 0x70, 0xbd, +0x28, 0x00, 0x07, 0xf0, 0x60, 0xe9, 0x07, 0xf0, 0x86, 0xe9, 0x70, 0xbd, 0x70, 0xb5, 0x62, 0x4c, +0x20, 0x79, 0xc0, 0x06, 0xc5, 0x0f, 0x20, 0x1d, 0x07, 0xf0, 0x80, 0xe9, 0x20, 0x79, 0xc0, 0x06, +0xc0, 0x0f, 0xa8, 0x42, 0x01, 0xd0, 0x07, 0xf0, 0x7e, 0xe9, 0x00, 0xf0, 0x57, 0xfe, 0x70, 0xbd, +0x70, 0xb5, 0x04, 0x00, 0x58, 0x4e, 0x0d, 0x00, 0x30, 0x1d, 0x07, 0xf0, 0x78, 0xe9, 0x20, 0x7a, +0x01, 0x28, 0x03, 0xd1, 0x29, 0x00, 0x30, 0x1d, 0x07, 0xf0, 0x74, 0xe9, 0x70, 0xbd, 0x00, 0x21, +0x01, 0x20, 0x10, 0xb5, 0x06, 0xf0, 0x8e, 0xed, 0x04, 0x00, 0x0d, 0xd0, 0x07, 0xf0, 0x6e, 0xe9, +0x01, 0x00, 0x20, 0x00, 0xff, 0xf7, 0xe4, 0xff, 0xff, 0xf7, 0xd0, 0xff, 0xff, 0x20, 0x55, 0x30, +0x01, 0x5d, 0x20, 0x00, 0xff, 0xf7, 0xb1, 0xff, 0x10, 0xbd, 0xf8, 0xb5, 0x15, 0x00, 0x07, 0x00, +0x08, 0x00, 0x49, 0x78, 0x02, 0x78, 0x09, 0x02, 0x11, 0x43, 0x00, 0x26, 0x34, 0x00, 0x0c, 0x39, +0x2a, 0x00, 0x2c, 0x30, 0x06, 0xf0, 0xb2, 0xeb, 0xe8, 0x69, 0x00, 0x28, 0x01, 0xd0, 0x44, 0x78, +0x86, 0x1c, 0x6a, 0x6b, 0x00, 0x92, 0xa8, 0x69, 0x23, 0x00, 0x41, 0x78, 0x80, 0x1c, 0x32, 0x00, +0x06, 0xf0, 0x54, 0xec, 0x01, 0x00, 0x38, 0x00, 0xff, 0xf7, 0xfc, 0xfe, 0xf8, 0xbd, 0x7c, 0xb5, +0x15, 0x00, 0x30, 0x4a, 0x0e, 0x00, 0x12, 0x78, 0x33, 0x4c, 0x19, 0x00, 0x92, 0x07, 0x05, 0xd0, +0x20, 0x1d, 0x07, 0xf0, 0x38, 0xe9, 0x00, 0xf0, 0x01, 0xfe, 0x7c, 0xbd, 0x2f, 0x4a, 0x00, 0x91, +0x01, 0x00, 0x01, 0x92, 0x33, 0x00, 0x2a, 0x00, 0x20, 0x1d, 0x07, 0xf0, 0x30, 0xe9, 0x7c, 0xbd, +0xf0, 0xb5, 0x0c, 0x00, 0x07, 0x00, 0x12, 0x31, 0x95, 0xb0, 0x06, 0xf0, 0xec, 0xef, 0x00, 0x28, +0x20, 0xd0, 0x21, 0x00, 0x38, 0x00, 0x6a, 0x46, 0xff, 0xf7, 0xb7, 0xff, 0x05, 0x00, 0x07, 0xf0, +0x16, 0xe9, 0x06, 0x00, 0x01, 0x00, 0x38, 0x00, 0xff, 0xf7, 0x8a, 0xff, 0x20, 0x00, 0x08, 0x9a, +0x33, 0x00, 0x29, 0x00, 0x2a, 0x30, 0xff, 0xf7, 0xca, 0xff, 0xff, 0xf7, 0x6f, 0xff, 0xff, 0x20, +0x55, 0x30, 0xc1, 0x5d, 0x38, 0x00, 0xff, 0xf7, 0x50, 0xff, 0x04, 0x9a, 0x03, 0x99, 0x38, 0x00, +0x07, 0xf0, 0x08, 0xe9, 0x15, 0xb0, 0xf0, 0xbd, 0x01, 0x20, 0x70, 0x47, 0xf7, 0xb5, 0x82, 0xb0, +0x0c, 0x00, 0x16, 0x00, 0x07, 0xf0, 0x02, 0xe9, 0x0f, 0x00, 0x05, 0x00, 0x21, 0x00, 0x08, 0x22, +0x20, 0x31, 0x68, 0x46, 0x06, 0xf0, 0x1e, 0xeb, 0xf0, 0x7e, 0x07, 0xf0, 0xfc, 0xe8, 0x01, 0x00, +0x60, 0x78, 0x22, 0x78, 0x00, 0x02, 0x10, 0x43, 0x00, 0x1d, 0x00, 0x01, 0x06, 0xf0, 0x2e, 0xeb, +0x00, 0x21, 0x0d, 0xe0, 0x78, 0xf4, 0x00, 0xc0, 0xff, 0x07, 0x00, 0x00, 0xff, 0x3f, 0x00, 0x80, +0xff, 0xff, 0x3f, 0x80, 0xc4, 0xbb, 0x02, 0x00, 0x82, 0x55, 0x00, 0x04, 0x40, 0x4b, 0x4c, 0x00, +0x00, 0x9a, 0x01, 0x9b, 0x80, 0x18, 0x59, 0x41, 0x00, 0x90, 0x30, 0x00, 0x30, 0x30, 0x01, 0x91, +0x06, 0xf0, 0x50, 0xec, 0x00, 0x9a, 0x28, 0x1a, 0x80, 0x18, 0x01, 0x9b, 0x00, 0x21, 0x59, 0x41, +0x01, 0x91, 0x00, 0x90, 0x02, 0x99, 0x0b, 0x20, 0x80, 0x01, 0x08, 0x18, 0x01, 0x69, 0x01, 0x9b, +0x00, 0x9a, 0xcb, 0x61, 0x8a, 0x61, 0x00, 0x69, 0x21, 0x00, 0x47, 0x62, 0x05, 0x62, 0x02, 0x98, +0x07, 0xf0, 0xc4, 0xe8, 0x05, 0xb0, 0xf0, 0xbd, 0xf7, 0xb5, 0x9e, 0xb0, 0x0c, 0x00, 0x06, 0x00, +0x00, 0x7a, 0x0d, 0x00, 0x12, 0x34, 0x03, 0x28, 0x01, 0xd0, 0x00, 0x28, 0x05, 0xd1, 0x21, 0x00, +0x30, 0x00, 0x06, 0xf0, 0x68, 0xef, 0x00, 0x28, 0x7d, 0xd0, 0x29, 0x00, 0x30, 0x00, 0x08, 0xaa, +0xff, 0xf7, 0x33, 0xff, 0x07, 0x90, 0x07, 0xf0, 0xbc, 0xbd, 0xa2, 0xdd, 0x01, 0x00, 0x00, 0x00, +0x9c, 0x74, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xe2, 0x9a, 0x54, 0x58, 0x92, 0xe8, 0x07, 0x00, +0x01, 0x00, 0x30, 0x00, 0xff, 0xf7, 0x06, 0xff, 0x28, 0x00, 0x10, 0x9a, 0x07, 0x99, 0x3b, 0x00, +0x2a, 0x30, 0xff, 0xf7, 0x46, 0xff, 0xff, 0xf7, 0xeb, 0xfe, 0x22, 0x00, 0x30, 0x00, 0x08, 0xa9, +0x07, 0xf0, 0x9a, 0xe8, 0x0b, 0x20, 0x09, 0x99, 0x80, 0x01, 0x34, 0x18, 0x00, 0x29, 0x04, 0xd0, +0x09, 0x98, 0xc1, 0x78, 0x20, 0x69, 0x40, 0x30, 0x81, 0x73, 0x28, 0x00, 0x20, 0x30, 0x1d, 0x90, +0x41, 0x7a, 0x02, 0x7a, 0x08, 0x02, 0x21, 0x69, 0x10, 0x43, 0x40, 0x31, 0x88, 0x81, 0xfa, 0x48, +0x09, 0x9b, 0x00, 0x78, 0x82, 0x07, 0x92, 0x0f, 0x00, 0x92, 0x69, 0x78, 0x28, 0x78, 0x0a, 0x02, +0x02, 0x43, 0x1d, 0x99, 0x30, 0x00, 0x07, 0xf0, 0x7c, 0xe8, 0x06, 0x90, 0x07, 0xf0, 0x68, 0xe8, +0x07, 0x00, 0x05, 0x91, 0x1d, 0x99, 0x08, 0x22, 0x02, 0xa8, 0x06, 0xf0, 0x86, 0xea, 0x20, 0x98, +0xc0, 0x7e, 0x07, 0xf0, 0x62, 0xe8, 0x69, 0x78, 0x2a, 0x78, 0x09, 0x02, 0x11, 0x43, 0x09, 0x1d, +0x0a, 0x01, 0x01, 0x00, 0x10, 0x00, 0x06, 0xf0, 0x94, 0xea, 0x02, 0x9a, 0x03, 0x9b, 0x80, 0x18, +0x00, 0x21, 0x02, 0x90, 0x20, 0x98, 0x59, 0x41, 0x30, 0x30, 0x03, 0x91, 0x06, 0xf0, 0xc4, 0xeb, +0x02, 0x9a, 0x38, 0x1a, 0x03, 0x9b, 0x80, 0x18, 0x00, 0x21, 0x59, 0x41, 0x03, 0x91, 0x02, 0x90, +0x20, 0x69, 0x03, 0x9a, 0x02, 0x99, 0xc2, 0x61, 0x81, 0x61, 0x22, 0x69, 0x05, 0x99, 0x17, 0x62, +0x51, 0x62, 0x30, 0x7a, 0x01, 0x28, 0x09, 0xd1, 0x07, 0x9a, 0x00, 0x92, 0x20, 0x9a, 0x29, 0x00, +0x30, 0x00, 0x08, 0xab, 0x00, 0xf0, 0xd9, 0xff, 0x3b, 0xe0, 0x26, 0xe0, 0x29, 0x00, 0x30, 0x00, +0x07, 0xf0, 0x2e, 0xe8, 0x06, 0x9a, 0x09, 0x99, 0x30, 0x00, 0x07, 0xf0, 0x36, 0xe8, 0x0c, 0x9a, +0x0b, 0x99, 0x30, 0x00, 0x07, 0xf0, 0x18, 0xe8, 0x0d, 0x98, 0x00, 0x21, 0x00, 0x28, 0x05, 0xd0, +0x22, 0x69, 0x80, 0x78, 0x12, 0x7b, 0x90, 0x42, 0x00, 0xd0, 0x01, 0x21, 0xc6, 0x4c, 0x00, 0x29, +0x0d, 0xd0, 0x60, 0x68, 0x40, 0x1c, 0x03, 0x28, 0x60, 0x60, 0x06, 0xd3, 0x07, 0x22, 0x00, 0x21, +0x30, 0x00, 0x06, 0xf0, 0x5e, 0xea, 0x00, 0x20, 0x60, 0x60, 0x21, 0xb0, 0xf0, 0xbd, 0x00, 0x20, +0x60, 0x60, 0x07, 0x98, 0xbd, 0x49, 0x0f, 0x28, 0x08, 0x79, 0x05, 0xd9, 0xf7, 0x22, 0x10, 0x40, +0xc0, 0x08, 0xc0, 0x00, 0x80, 0x1c, 0x03, 0xe0, 0x08, 0x22, 0x10, 0x43, 0xc0, 0x08, 0xc0, 0x00, +0x08, 0x71, 0xff, 0x20, 0x55, 0x30, 0x81, 0x5d, 0x30, 0x00, 0xff, 0xf7, 0x28, 0xfe, 0xe4, 0xe7, +0x70, 0xb5, 0x04, 0x00, 0x14, 0x30, 0x05, 0x00, 0xff, 0xf7, 0x74, 0xfc, 0xa1, 0x69, 0x28, 0x00, +0x18, 0x31, 0x06, 0xf0, 0xf6, 0xef, 0x00, 0x20, 0x70, 0xbd, 0x10, 0xb5, 0xab, 0x4c, 0x21, 0x79, +0x89, 0x06, 0xca, 0x0f, 0x00, 0x21, 0x06, 0xf0, 0xa8, 0xef, 0x20, 0x79, 0x80, 0x06, 0x01, 0xd5, +0x01, 0x20, 0x00, 0xe0, 0x00, 0x20, 0x06, 0xf0, 0xe8, 0xef, 0x10, 0xbd, 0xf0, 0xb5, 0x04, 0x00, +0x00, 0x20, 0x85, 0xb0, 0x06, 0xf0, 0xe4, 0xef, 0x03, 0x20, 0x80, 0x02, 0x06, 0xf0, 0x08, 0xef, +0x20, 0x00, 0x3e, 0x30, 0x06, 0xf0, 0xe0, 0xef, 0x0b, 0x21, 0x20, 0x7a, 0x89, 0x01, 0x00, 0x27, +0x66, 0x18, 0x03, 0x28, 0x18, 0xd1, 0x17, 0x20, 0x40, 0x01, 0x20, 0x18, 0x00, 0x78, 0x03, 0x28, +0x12, 0xd1, 0x20, 0x00, 0x06, 0x21, 0x7e, 0x30, 0x06, 0xf0, 0xc2, 0xe9, 0x30, 0x69, 0x20, 0x21, +0x2c, 0x30, 0x06, 0xf0, 0x06, 0xeb, 0x30, 0x69, 0x20, 0x30, 0xc7, 0x72, 0x30, 0x69, 0x40, 0x30, +0x87, 0x73, 0x30, 0x69, 0x40, 0x30, 0x87, 0x81, 0x06, 0xf0, 0x9a, 0xe9, 0x01, 0x90, 0x20, 0x7a, +0x03, 0x28, 0x0f, 0xd1, 0x60, 0x7a, 0x03, 0x28, 0x0c, 0xd1, 0x71, 0x20, 0xc0, 0x00, 0x25, 0x18, +0x01, 0xe0, 0x06, 0xf0, 0xb6, 0xef, 0x68, 0x68, 0x00, 0x28, 0xfa, 0xd1, 0x00, 0x21, 0x20, 0x00, +0x06, 0xf0, 0xb2, 0xef, 0x01, 0x98, 0x06, 0xf0, 0x98, 0xe9, 0x20, 0x00, 0x06, 0xf0, 0xb0, 0xef, +0x20, 0x00, 0x06, 0xf0, 0xb2, 0xef, 0x20, 0x00, 0xff, 0x30, 0x06, 0x21, 0x4a, 0x30, 0x06, 0xf0, +0x90, 0xe9, 0x20, 0x00, 0xff, 0x30, 0x41, 0x30, 0x00, 0x21, 0x03, 0x90, 0x01, 0x82, 0x06, 0xf0, +0x40, 0xea, 0x00, 0x28, 0x00, 0xd1, 0x20, 0x00, 0xff, 0x30, 0x41, 0x30, 0x00, 0x8a, 0x06, 0xf0, +0xa0, 0xef, 0x00, 0x21, 0x01, 0x20, 0x06, 0xf0, 0x10, 0xea, 0x20, 0x7a, 0x06, 0xf0, 0x9c, 0xef, +0x01, 0x21, 0x08, 0x00, 0x06, 0xf0, 0x10, 0xea, 0x00, 0x21, 0x01, 0x20, 0x06, 0xf0, 0xe4, 0xe9, +0x09, 0x20, 0x80, 0x01, 0x20, 0x18, 0x05, 0x00, 0x06, 0xf0, 0x92, 0xef, 0x20, 0x00, 0x06, 0xf0, +0xdc, 0xea, 0x20, 0x00, 0x06, 0xf0, 0x54, 0xee, 0x20, 0x7a, 0x00, 0x28, 0x01, 0xd1, 0x06, 0xf0, +0x8c, 0xef, 0x20, 0x00, 0x06, 0xf0, 0x8c, 0xef, 0x61, 0x4f, 0x0e, 0x21, 0x78, 0x6a, 0x40, 0x1d, +0x06, 0xf0, 0x3a, 0xea, 0x02, 0x90, 0x06, 0xf0, 0x88, 0xef, 0x00, 0x22, 0x00, 0x92, 0x78, 0x6a, +0x02, 0x99, 0x40, 0x1d, 0x13, 0x00, 0x06, 0xf0, 0x34, 0xea, 0x79, 0x6a, 0x03, 0x00, 0x02, 0x9a, +0x49, 0x1d, 0x20, 0x00, 0xff, 0xf7, 0xea, 0xfc, 0x20, 0x00, 0x06, 0xf0, 0x86, 0xea, 0x00, 0x22, +0x11, 0x00, 0x20, 0x00, 0x06, 0xf0, 0x74, 0xef, 0x01, 0x21, 0x20, 0x00, 0x06, 0xf0, 0x74, 0xef, +0x30, 0x69, 0x00, 0x27, 0x80, 0x30, 0xc7, 0x80, 0x28, 0x6b, 0x06, 0xf0, 0x92, 0xe9, 0x2f, 0x63, +0xe8, 0x6a, 0x00, 0x28, 0x02, 0xd0, 0x06, 0xf0, 0x90, 0xe9, 0xef, 0x62, 0xe0, 0x68, 0x41, 0x07, +0x01, 0xd4, 0xc0, 0x06, 0x0b, 0xd5, 0xa8, 0x6a, 0x00, 0x28, 0x02, 0xd0, 0x06, 0xf0, 0x84, 0xe9, +0xaf, 0x62, 0x68, 0x6a, 0x00, 0x28, 0x02, 0xd0, 0x06, 0xf0, 0x7e, 0xe9, 0x6f, 0x62, 0x20, 0x7a, +0x03, 0x28, 0x0b, 0xd1, 0xa8, 0x6a, 0x00, 0x28, 0x02, 0xd0, 0x06, 0xf0, 0x76, 0xe9, 0xaf, 0x62, +0x68, 0x6a, 0x00, 0x28, 0x02, 0xd0, 0x06, 0xf0, 0x70, 0xe9, 0x6f, 0x62, 0xe0, 0x68, 0x10, 0x21, +0x88, 0x43, 0xe0, 0x60, 0x30, 0x69, 0x64, 0x21, 0x40, 0x30, 0x87, 0x73, 0x30, 0x69, 0x33, 0x4d, +0x40, 0x30, 0x81, 0x81, 0x33, 0x49, 0xe0, 0x68, 0x88, 0x43, 0xe0, 0x60, 0x03, 0x98, 0x61, 0x21, +0xc7, 0x71, 0x20, 0x00, 0xc9, 0x43, 0xa0, 0x30, 0x01, 0x82, 0x41, 0x82, 0x52, 0x21, 0x28, 0x1d, +0x06, 0xf0, 0xee, 0xe8, 0x28, 0x79, 0x20, 0x21, 0x08, 0x43, 0x28, 0x71, 0x20, 0x00, 0xff, 0xf7, +0xf4, 0xfe, 0xaf, 0x20, 0x80, 0x00, 0x01, 0x22, 0xff, 0x21, 0x20, 0x18, 0x06, 0xf0, 0x68, 0xe9, +0x20, 0x00, 0x06, 0xf0, 0x1e, 0xef, 0x07, 0xe6, 0x1f, 0x49, 0x00, 0x20, 0x48, 0x60, 0x70, 0x47, +0x10, 0xb5, 0x41, 0x7a, 0x02, 0x29, 0x03, 0xd1, 0xc0, 0x68, 0xc0, 0x04, 0x0d, 0xd4, 0x0a, 0xe0, +0x41, 0x69, 0x80, 0x69, 0x48, 0x30, 0x81, 0x42, 0x07, 0xd1, 0x06, 0xf0, 0x52, 0xeb, 0x16, 0x49, +0x89, 0x68, 0x88, 0x42, 0x01, 0xd0, 0x00, 0x20, 0x10, 0xbd, 0x01, 0x20, 0x10, 0xbd, 0x10, 0xb5, +0x41, 0x7a, 0x02, 0x29, 0x05, 0xd1, 0x06, 0xf0, 0x9b, 0x0a, 0x40, 0xf5, 0x01, 0x00, 0x00, 0x00, +0x98, 0x78, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xc2, 0x79, 0xfc, 0xd2, 0xdc, 0xe8, 0x8f, 0x21, +0x89, 0x00, 0x40, 0x18, 0x00, 0xe0, 0x14, 0x30, 0x01, 0x68, 0x40, 0x68, 0x02, 0x00, 0x30, 0x32, +0x91, 0x42, 0x05, 0xd0, 0x0c, 0x3a, 0x91, 0x42, 0x02, 0xd0, 0x3c, 0x30, 0x81, 0x42, 0x01, 0xd1, +0x01, 0x20, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0x10, 0xb5, 0x41, 0x7a, 0x02, 0x29, 0x0d, 0xd1, +0x06, 0xf0, 0xc0, 0xe8, 0x8f, 0x21, 0x89, 0x00, 0x40, 0x18, 0x08, 0xe0, 0x78, 0xf4, 0x00, 0xc0, +0x82, 0x55, 0x00, 0x04, 0x38, 0x52, 0x00, 0x04, 0x04, 0x00, 0x02, 0x00, 0x14, 0x30, 0x01, 0x68, +0x40, 0x68, 0x18, 0x30, 0x81, 0x42, 0x01, 0xd1, 0x01, 0x20, 0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, +0x22, 0x49, 0x00, 0x20, 0x10, 0xb5, 0x48, 0x60, 0x00, 0xf0, 0x8d, 0xfe, 0x10, 0xbd, 0x01, 0x00, +0x01, 0x20, 0x10, 0xb5, 0x06, 0xf0, 0xc2, 0xee, 0x10, 0xbd, 0xf0, 0xb5, 0x04, 0x00, 0x87, 0xb0, +0x68, 0x46, 0x06, 0xf0, 0xc0, 0xee, 0x20, 0x68, 0x1a, 0x22, 0x69, 0x46, 0x06, 0xf0, 0x7e, 0xe8, +0x20, 0x68, 0x00, 0x25, 0x1a, 0x30, 0x01, 0x26, 0x20, 0x60, 0xa9, 0x00, 0x68, 0x46, 0x0c, 0x18, +0xa0, 0x7a, 0x40, 0x06, 0x80, 0x0f, 0x06, 0xf0, 0xb2, 0xee, 0x07, 0x00, 0xe0, 0x7a, 0x01, 0x07, +0x09, 0x0f, 0x30, 0x00, 0x88, 0x40, 0x41, 0x1e, 0x38, 0x00, 0x06, 0xf0, 0xac, 0xee, 0xe0, 0x7a, +0x31, 0x00, 0x00, 0x09, 0x81, 0x40, 0x49, 0x1e, 0x38, 0x00, 0x06, 0xf0, 0xa8, 0xee, 0xa0, 0x7a, +0x01, 0x07, 0x09, 0x0f, 0x38, 0x00, 0x06, 0xf0, 0xa6, 0xee, 0xa1, 0x89, 0x38, 0x00, 0x06, 0xf0, +0xa6, 0xee, 0x6d, 0x1c, 0x04, 0x2d, 0xd8, 0xdb, 0x07, 0xb0, 0xf0, 0xbd, 0x78, 0xf4, 0x00, 0xc0, +0x30, 0xb5, 0xfd, 0x4c, 0x03, 0x9d, 0x2f, 0xc4, 0x30, 0xbd, 0x70, 0xb5, 0x16, 0x00, 0x04, 0x00, +0x0d, 0x00, 0x0a, 0x00, 0xf9, 0x49, 0xf8, 0x48, 0x06, 0xf0, 0x94, 0xee, 0x00, 0x28, 0x1c, 0xd0, +0x68, 0x78, 0x29, 0x78, 0x00, 0x02, 0x08, 0x43, 0x2d, 0x28, 0x06, 0xd1, 0xf2, 0x48, 0x1c, 0x22, +0x01, 0x68, 0x20, 0x00, 0x61, 0x30, 0x06, 0xf0, 0x32, 0xe8, 0xe0, 0x68, 0x40, 0x21, 0x08, 0x43, +0x0b, 0x21, 0x89, 0x01, 0x61, 0x18, 0xe0, 0x60, 0x09, 0x6a, 0x20, 0x31, 0xc9, 0x7d, 0x89, 0x07, +0x02, 0xd5, 0x80, 0x21, 0x08, 0x43, 0xe0, 0x60, 0x70, 0xbd, 0xe8, 0x48, 0x32, 0x00, 0x29, 0x00, +0x06, 0xf0, 0x74, 0xee, 0x70, 0xbd, 0xf8, 0xb5, 0x04, 0x00, 0x0e, 0x00, 0xe3, 0x48, 0x15, 0x00, +0x06, 0xf0, 0x70, 0xee, 0x00, 0x22, 0x11, 0x00, 0x10, 0x00, 0x13, 0x00, 0x00, 0x92, 0xff, 0xf7, +0xbf, 0xff, 0x20, 0x00, 0xfe, 0xf7, 0x9c, 0xfe, 0x04, 0x00, 0x08, 0xd0, 0x33, 0x79, 0x01, 0x22, +0x29, 0x00, 0x20, 0x00, 0x06, 0xf0, 0x62, 0xee, 0x20, 0x00, 0xfe, 0xf7, 0xfd, 0xfe, 0xf8, 0xbd, +0xd7, 0x48, 0x10, 0xb5, 0x44, 0x69, 0x08, 0x20, 0x04, 0x40, 0x01, 0xd1, 0x06, 0xf0, 0x5a, 0xee, +0x06, 0xf0, 0x40, 0xec, 0x00, 0x2c, 0x02, 0xd1, 0x08, 0x20, 0x06, 0xf0, 0x58, 0xee, 0x10, 0xbd, +0xf3, 0xb5, 0x8b, 0xb0, 0x06, 0x00, 0x00, 0x20, 0x09, 0x90, 0x07, 0x90, 0x06, 0x90, 0x05, 0x90, +0x04, 0x90, 0x06, 0xf0, 0x90, 0xe8, 0x00, 0x28, 0x01, 0xd1, 0xff, 0xf7, 0xe1, 0xff, 0xff, 0x20, +0x49, 0x30, 0x80, 0x5d, 0x00, 0x28, 0x06, 0xd1, 0x0c, 0x98, 0x20, 0x21, 0x08, 0x30, 0x06, 0xf0, +0xae, 0xe8, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x09, 0x90, 0x0b, 0x20, 0x00, 0x22, 0x80, 0x01, +0x34, 0x18, 0x00, 0x92, 0x21, 0x6a, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x25, 0x33, 0x18, 0x32, +0x35, 0x30, 0xff, 0xf7, 0x75, 0xff, 0x09, 0x98, 0x00, 0x28, 0x7e, 0xd1, 0xb7, 0x48, 0x06, 0xf0, +0x2a, 0xee, 0xb6, 0x49, 0xff, 0x20, 0x09, 0x1f, 0x08, 0x60, 0x30, 0x00, 0x06, 0xf0, 0x26, 0xee, +0x00, 0x28, 0x0a, 0x90, 0x71, 0xd0, 0x0a, 0x98, 0x05, 0xab, 0x01, 0x89, 0x0d, 0x18, 0x20, 0x69, +0x0c, 0x99, 0x40, 0x30, 0x82, 0x89, 0xaf, 0x48, 0x00, 0x92, 0x02, 0x68, 0x28, 0x00, 0x52, 0x1d, +0x09, 0x30, 0x06, 0xf0, 0x18, 0xee, 0x6b, 0x46, 0x98, 0x8a, 0x0d, 0x21, 0x08, 0x38, 0x05, 0x90, +0x29, 0x70, 0x0c, 0x99, 0x08, 0x22, 0x68, 0x1c, 0x05, 0xf0, 0x98, 0xef, 0x0c, 0x98, 0x4d, 0x30, +0x3d, 0xe0, 0x00, 0x1f, 0x00, 0x04, 0x08, 0x9c, 0x00, 0x0c, 0x05, 0x90, 0xe1, 0x78, 0xa2, 0x78, +0x0f, 0x02, 0x17, 0x43, 0x87, 0x42, 0x37, 0xd8, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, +0x7f, 0x28, 0x0f, 0xd0, 0x05, 0xdc, 0x21, 0x28, 0x22, 0xd0, 0x30, 0x28, 0x1a, 0xd1, 0x06, 0x94, +0x1e, 0xe0, 0xdd, 0x28, 0x0b, 0xd0, 0xff, 0x38, 0x50, 0x38, 0x13, 0xd1, 0x7f, 0x20, 0x20, 0x70, +0x00, 0x20, 0x60, 0x70, 0x91, 0x48, 0x21, 0x00, 0x06, 0xf0, 0xe8, 0xed, 0x10, 0xe0, 0x20, 0x1d, +0x06, 0xf0, 0xe8, 0xed, 0x03, 0x28, 0x01, 0xd1, 0x07, 0x94, 0x03, 0xe0, 0x8b, 0x48, 0x21, 0x00, +0x06, 0xf0, 0xdc, 0xed, 0x2a, 0x00, 0x4e, 0x32, 0x21, 0x00, 0x30, 0x00, 0xff, 0xf7, 0x15, 0xff, +0x6b, 0x46, 0x98, 0x8a, 0xc0, 0x1b, 0x05, 0x90, 0x08, 0x98, 0xc0, 0x19, 0x00, 0x1d, 0x6b, 0x46, +0x08, 0x90, 0x98, 0x8a, 0x04, 0x28, 0xbc, 0xd2, 0x83, 0x48, 0x6b, 0x46, 0x32, 0x18, 0x40, 0x1e, +0x31, 0x18, 0x04, 0xa8, 0x07, 0xc3, 0x30, 0x00, 0x7c, 0x4b, 0x06, 0x9a, 0x07, 0x99, 0x06, 0xf0, +0xc6, 0xed, 0x00, 0x28, 0x1c, 0xd0, 0x04, 0x21, 0x00, 0xe0, 0x20, 0xe0, 0xf0, 0x68, 0x6b, 0x46, +0x88, 0x43, 0x19, 0x7c, 0xc9, 0x07, 0x49, 0x0f, 0x08, 0x43, 0xf0, 0x60, 0x73, 0x48, 0x08, 0xa9, +0x06, 0xf0, 0xb8, 0xed, 0x29, 0x00, 0x50, 0x31, 0x48, 0x72, 0x00, 0x0a, 0x88, 0x72, 0x08, 0x98, +0x49, 0x1d, 0x06, 0xf0, 0xb8, 0xe8, 0x0a, 0x98, 0x06, 0xf0, 0xb0, 0xed, 0x01, 0x28, 0x03, 0xd1, +0x0a, 0x98, 0x06, 0xf0, 0xb8, 0xe8, 0x02, 0xe0, 0x09, 0x98, 0x00, 0x28, 0x04, 0xd0, 0x6b, 0x4a, +0x0c, 0x99, 0x30, 0x00, 0xff, 0xf7, 0xff, 0xfe, 0x0d, 0xb0, 0xf0, 0xbd, 0xf3, 0xb5, 0x8b, 0xb0, +0x06, 0x00, 0x00, 0x20, 0x09, 0x90, 0x07, 0x90, 0x05, 0x90, 0x04, 0x90, 0x03, 0x90, 0x05, 0xf0, +0xba, 0xef, 0x00, 0x28, 0x01, 0xd1, 0xff, 0xf7, 0x0b, 0xff, 0x30, 0x00, 0xff, 0x30, 0x41, 0x30, +0x0a, 0x90, 0x00, 0x7a, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, 0x09, 0x90, 0x0b, 0x20, 0x00, 0x22, +0x80, 0x01, 0x30, 0x18, 0x00, 0x92, 0x01, 0x6a, 0x0b, 0x00, 0x0a, 0x00, 0x08, 0x00, 0x25, 0x33, +0x18, 0x32, 0x35, 0x30, 0xff, 0xf7, 0xa4, 0xfe, 0x09, 0x98, 0x00, 0x28, 0x7e, 0xd1, 0x4f, 0x48, +0x06, 0xf0, 0x58, 0xed, 0x30, 0x00, 0x06, 0xf0, 0x5a, 0xed, 0x00, 0x28, 0x08, 0x90, 0x75, 0xd0, +0x08, 0x98, 0x07, 0xaa, 0x01, 0x89, 0x0d, 0x18, 0x28, 0x00, 0x0c, 0x99, 0x09, 0x30, 0x06, 0xf0, +0x6a, 0xed, 0x6b, 0x46, 0x98, 0x8b, 0x45, 0x49, 0x08, 0x38, 0x07, 0x90, 0xff, 0x20, 0x09, 0x1f, +0x08, 0x60, 0x0b, 0x21, 0x29, 0x70, 0x0c, 0x98, 0x65, 0x30, 0x3a, 0xe0, 0x00, 0x1f, 0x00, 0x04, +0x06, 0x9c, 0x00, 0x0c, 0x07, 0x90, 0xe1, 0x78, 0x52, 0x79, 0x8e, 0x25, 0x01, 0x00, 0x00, 0x00, +0x94, 0x7c, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x45, 0x2f, 0xf2, 0x80, 0xa2, 0x78, 0x0f, 0x02, +0x17, 0x43, 0x87, 0x42, 0x34, 0xd8, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x7f, 0x28, +0x17, 0xd0, 0x05, 0xdc, 0x21, 0x28, 0x1f, 0xd0, 0x30, 0x28, 0x17, 0xd1, 0x04, 0x94, 0x1b, 0xe0, +0xdd, 0x28, 0x07, 0xd0, 0xff, 0x38, 0x50, 0x38, 0x10, 0xd1, 0x7f, 0x20, 0x20, 0x70, 0x00, 0x20, +0x60, 0x70, 0x06, 0xe0, 0x20, 0x1d, 0x06, 0xf0, 0x28, 0xed, 0x03, 0x28, 0x01, 0xd1, 0x05, 0x94, +0x0a, 0xe0, 0x2b, 0x48, 0x21, 0x00, 0x06, 0xf0, 0x1c, 0xed, 0x05, 0xe0, 0x2a, 0x00, 0x62, 0x32, +0x21, 0x00, 0x30, 0x00, 0xff, 0xf7, 0x53, 0xfe, 0x6b, 0x46, 0x98, 0x8b, 0xc0, 0x1b, 0x07, 0x90, +0x06, 0x98, 0xc0, 0x19, 0x00, 0x1d, 0x6b, 0x46, 0x06, 0x90, 0x98, 0x8b, 0x04, 0x28, 0xbf, 0xd2, +0x22, 0x48, 0x6b, 0x46, 0x32, 0x18, 0x40, 0x1e, 0x31, 0x18, 0x03, 0xa8, 0x07, 0xc3, 0x30, 0x00, +0x1b, 0x4b, 0x04, 0x9a, 0x05, 0x99, 0x06, 0xf0, 0x04, 0xed, 0x00, 0x28, 0x1c, 0xd0, 0xf0, 0x68, +0x04, 0x21, 0x88, 0x43, 0x6b, 0x46, 0x19, 0x7b, 0xc9, 0x07, 0x49, 0x0f, 0x08, 0x43, 0xf0, 0x60, +0x13, 0x48, 0x06, 0xa9, 0x06, 0xf0, 0xf8, 0xec, 0x29, 0x00, 0x60, 0x31, 0x48, 0x73, 0x00, 0xe0, +0x14, 0xe0, 0x00, 0x0a, 0x88, 0x73, 0x06, 0x98, 0x09, 0x31, 0x05, 0xf0, 0xf6, 0xef, 0x08, 0x98, +0x06, 0xf0, 0xee, 0xec, 0x01, 0x28, 0x03, 0xd1, 0x08, 0x98, 0x05, 0xf0, 0xf6, 0xef, 0x05, 0xe0, +0x0a, 0x99, 0x02, 0x20, 0x08, 0x72, 0x09, 0x98, 0x00, 0x28, 0x05, 0xd0, 0x08, 0x4a, 0x0c, 0x99, +0x52, 0x1c, 0x30, 0x00, 0xff, 0xf7, 0x39, 0xfe, 0x38, 0xe7, 0x00, 0x00, 0x0c, 0x43, 0x01, 0xc0, +0x8c, 0xf4, 0x00, 0xc0, 0xc0, 0xa2, 0x00, 0x80, 0x54, 0xf4, 0x00, 0xc0, 0xf7, 0x02, 0x00, 0x00, +0x2b, 0x80, 0x00, 0x00, 0x10, 0xb5, 0x04, 0x00, 0x06, 0xf0, 0x5a, 0xea, 0xe0, 0x68, 0x40, 0x07, +0x06, 0xd5, 0x20, 0x00, 0x06, 0xf0, 0xcc, 0xec, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x21, 0x00, 0xe0, +0x00, 0x21, 0x20, 0x00, 0xfe, 0xf7, 0xde, 0xfc, 0xe0, 0x68, 0x01, 0x21, 0x09, 0x03, 0x08, 0x43, +0xe0, 0x60, 0xff, 0x20, 0x06, 0x21, 0x49, 0x30, 0x01, 0x55, 0x49, 0x48, 0x00, 0x88, 0x00, 0x28, +0x02, 0xd0, 0x20, 0x00, 0x05, 0xf0, 0x9c, 0xef, 0x10, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x45, 0x48, +0x0c, 0x00, 0x06, 0xf0, 0x7a, 0xec, 0x20, 0x7b, 0x00, 0x28, 0x04, 0xd1, 0x28, 0x00, 0xff, 0xf7, +0xd1, 0xff, 0x00, 0x26, 0x01, 0xe0, 0x00, 0x26, 0xf6, 0x43, 0x28, 0x00, 0xfe, 0xf7, 0xa2, 0xfc, +0x05, 0x00, 0x08, 0xd0, 0x23, 0x7a, 0x22, 0x7b, 0x3b, 0x49, 0x28, 0x00, 0x06, 0xf0, 0x68, 0xec, +0x28, 0x00, 0xfe, 0xf7, 0x03, 0xfd, 0x30, 0x00, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x00, 0x26, +0x34, 0x48, 0x0c, 0x00, 0xf6, 0x43, 0x06, 0xf0, 0x58, 0xec, 0x20, 0x7b, 0x00, 0x28, 0x04, 0xd1, +0x28, 0x00, 0xff, 0xf7, 0xaf, 0xff, 0x00, 0x26, 0x02, 0xe0, 0x28, 0x00, 0xfe, 0xf7, 0xc4, 0xfc, +0x28, 0x00, 0xfe, 0xf7, 0x7f, 0xfc, 0x05, 0x00, 0x09, 0xd0, 0x2b, 0x49, 0x23, 0x7a, 0x22, 0x7b, +0x49, 0x1c, 0x28, 0x00, 0x06, 0xf0, 0x44, 0xec, 0x28, 0x00, 0xfe, 0xf7, 0xdf, 0xfc, 0x30, 0x00, +0x70, 0xbd, 0x24, 0x48, 0x00, 0x1f, 0x00, 0x68, 0x70, 0x47, 0x70, 0xb5, 0x14, 0x00, 0x05, 0x00, +0x01, 0x22, 0x05, 0xf0, 0xaa, 0xee, 0x1f, 0x48, 0x00, 0x1f, 0x00, 0x2c, 0x04, 0xd0, 0x05, 0x21, +0xc9, 0x01, 0x69, 0x18, 0xc9, 0x6b, 0x00, 0xe0, 0xff, 0x21, 0x01, 0x60, 0x70, 0xbd, 0x10, 0xb5, +0x04, 0x00, 0xfe, 0xf7, 0x99, 0xfc, 0x20, 0x00, 0xfe, 0xf7, 0x54, 0xfc, 0x04, 0x00, 0x06, 0xd0, +0x00, 0x21, 0x20, 0x00, 0x06, 0xf0, 0x50, 0xec, 0x20, 0x00, 0xfe, 0xf7, 0xb7, 0xfc, 0x10, 0xbd, +0x70, 0xb5, 0x00, 0x25, 0x06, 0x00, 0xed, 0x43, 0x06, 0xf0, 0x22, 0xec, 0x04, 0x00, 0x0d, 0xd0, +0x20, 0x89, 0x0e, 0x21, 0x00, 0x19, 0x01, 0x70, 0x20, 0x00, 0x06, 0xf0, 0x32, 0xec, 0x01, 0x28, +0x03, 0xd1, 0x20, 0x00, 0x05, 0xf0, 0x38, 0xef, 0x00, 0xe0, 0x00, 0x25, 0x6d, 0x1c, 0x05, 0xd1, +0x30, 0x00, 0xff, 0xf7, 0x91, 0xfb, 0x30, 0x00, 0xff, 0xf7, 0xd1, 0xff, 0x70, 0xbd, 0x00, 0x00, +0x04, 0x36, 0x01, 0xc0, 0x8c, 0xf4, 0x00, 0xc0, 0x2b, 0x80, 0x00, 0x00, 0x08, 0xb5, 0x00, 0x91, +0x0a, 0x22, 0x69, 0x46, 0x05, 0xf0, 0xc0, 0xed, 0x08, 0xbd, 0x08, 0xb5, 0x00, 0x91, 0x0c, 0x22, +0x69, 0x46, 0x05, 0xf0, 0xba, 0xed, 0x08, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x01, 0x20, +0x96, 0xb0, 0x05, 0xf0, 0x8e, 0xed, 0x06, 0x00, 0x05, 0xf0, 0xce, 0xee, 0x60, 0x78, 0x22, 0x78, +0x01, 0x02, 0x11, 0x43, 0x20, 0x00, 0x0c, 0x39, 0x2c, 0x30, 0x01, 0xaa, 0x05, 0xf0, 0x9c, 0xed, +0x0b, 0x21, 0x89, 0x01, 0x70, 0x18, 0x02, 0x69, 0xfc, 0x49, 0x68, 0x32, 0x2b, 0x00, 0x01, 0xa8, +0x06, 0xf0, 0xfe, 0xeb, 0x16, 0xb0, 0x70, 0xbd, 0x01, 0x20, 0x10, 0xb5, 0x06, 0xf0, 0xfc, 0xeb, +0x00, 0x28, 0x17, 0xd0, 0xf5, 0x48, 0x00, 0x1f, 0x00, 0x79, 0x40, 0x06, 0x12, 0xd4, 0xf3, 0x48, +0x22, 0x30, 0x05, 0xf0, 0xae, 0xee, 0x00, 0x28, 0x01, 0xdd, 0x01, 0x24, 0x00, 0xe0, 0x00, 0x24, +0xef, 0x48, 0x21, 0x00, 0x00, 0x68, 0xff, 0xf7, 0xc7, 0xff, 0xee, 0x48, 0x21, 0x00, 0x00, 0x68, +0xff, 0xf7, 0xc2, 0xff, 0x10, 0xbd, 0xff, 0xb5, 0x8d, 0xb0, 0x00, 0x20, 0x0e, 0x00, 0x01, 0x00, +0x06, 0x90, 0x16, 0x9f, 0x17, 0x9d, 0x03, 0xa8, 0xff, 0xf7, 0x92, 0xf8, 0x0d, 0x98, 0x06, 0xf0, +0xd8, 0xeb, 0x05, 0x90, 0x38, 0x00, 0x1c, 0x30, 0x08, 0x90, 0x38, 0x89, 0xc4, 0x19, 0xe2, 0x48, +0x00, 0x68, 0x01, 0x79, 0x00, 0x91, 0x0d, 0x98, 0xb1, 0x21, 0x89, 0x00, 0x41, 0x18, 0x01, 0x97, +0x10, 0x9b, 0x0f, 0x9a, 0x30, 0x00, 0x06, 0xf0, 0xc8, 0xeb, 0x01, 0x1b, 0x09, 0x04, 0x09, 0x0c, +0x10, 0x9a, 0x07, 0x91, 0xd9, 0x49, 0x08, 0x2a, 0x0a, 0x90, 0x01, 0xd1, 0x08, 0x60, 0x00, 0xe0, +0x48, 0x60, 0x31, 0x00, 0x06, 0xf0, 0xbc, 0xeb, 0x31, 0x00, 0x04, 0x22, 0x24, 0x31, 0x0a, 0x90, +0x09, 0x90, 0x05, 0xf0, 0x0e, 0xed, 0x0a, 0x98, 0x6b, 0x46, 0x00, 0x1d, 0x0a, 0x90, 0x30, 0x00, +0x20, 0x30, 0x41, 0x7d, 0x19, 0x74, 0x80, 0x7d, 0x58, 0x74, 0x88, 0x06, 0x01, 0xd5, 0x01, 0x21, +0x00, 0xe0, 0x00, 0x21, 0x0d, 0x98, 0x06, 0xf0, 0x2c, 0xeb, 0x0d, 0x98, 0x06, 0xf0, 0xa4, 0xeb, +0x01, 0x28, 0x06, 0xd1, 0x0a, 0x99, 0x0d, 0x98, 0x06, 0xf0, 0xa2, 0xeb, 0x0a, 0x99, 0x40, 0x18, +0x0a, 0x90, 0x6b, 0x46, 0x18, 0x7b, 0x80, 0x07, 0x30, 0xd1, 0xbc, 0x48, 0x00, 0x1f, 0x00, 0x79, +0x40, 0x06, 0x2b, 0xd4, 0x0a, 0x98, 0x02, 0x90, 0x00, 0x20, 0x07, 0x00, 0x01, 0x90, 0x00, 0x90, +0xb6, 0x48, 0x22, 0x30, 0x05, 0xf0, 0x34, 0xee, 0x00, 0x28, 0x02, 0xd0, 0x01, 0x20, 0x01, 0x90, +0x00, 0x90, 0x0d, 0x98, 0x20, 0x30, 0x80, 0x7e, 0x80, 0x06, 0x05, 0xd4, 0xaf, 0x48, 0x0a, 0x30, +0x05, 0xf0, 0x26, 0xee, 0x00, 0x28, 0x01, 0xd0, 0x3c, 0x13, 0x22, 0xf5, 0x01, 0x00, 0x00, 0x00, +0x90, 0x80, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xf2, 0xc2, 0x48, 0x65, 0x01, 0x20, 0x00, 0x90, +0xab, 0x48, 0x2a, 0x30, 0x05, 0xf0, 0x1e, 0xee, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x27, 0x00, 0x9a, +0x01, 0x99, 0x02, 0x98, 0x3b, 0x00, 0x06, 0xf0, 0x72, 0xeb, 0x0a, 0x99, 0x40, 0x18, 0x0a, 0x90, +0x0a, 0x9a, 0x0d, 0x98, 0x2d, 0x21, 0x06, 0xf0, 0x6e, 0xeb, 0x0a, 0x99, 0x40, 0x18, 0x0a, 0x90, +0x0c, 0x90, 0x0d, 0x98, 0x31, 0x00, 0xc0, 0x68, 0x4c, 0x31, 0x40, 0x07, 0x0f, 0x1d, 0x00, 0x28, +0x0b, 0x91, 0x14, 0xda, 0x0b, 0x98, 0x05, 0xf0, 0xfe, 0xed, 0x79, 0x78, 0x3b, 0x78, 0x0a, 0x02, +0x01, 0x00, 0x07, 0x98, 0x1a, 0x43, 0x02, 0x92, 0x01, 0x91, 0x00, 0x90, 0x10, 0x9a, 0x0c, 0x99, +0x23, 0x00, 0x30, 0x20, 0x06, 0xf0, 0x52, 0xeb, 0x0a, 0x99, 0x40, 0x18, 0x0a, 0x90, 0x30, 0x00, +0x0a, 0x99, 0x01, 0x22, 0x37, 0x30, 0x06, 0xf0, 0x4e, 0xeb, 0x0a, 0x99, 0x42, 0x18, 0x0d, 0x98, +0x3d, 0x21, 0x0a, 0x92, 0x06, 0xf0, 0x3e, 0xeb, 0x0a, 0x99, 0x42, 0x18, 0x0d, 0x98, 0x48, 0x21, +0x0a, 0x92, 0x06, 0xf0, 0x38, 0xeb, 0x0a, 0x99, 0x42, 0x18, 0x0d, 0x98, 0x4a, 0x21, 0x0a, 0x92, +0x06, 0xf0, 0x30, 0xeb, 0x0a, 0x99, 0x40, 0x18, 0x0a, 0x90, 0x0d, 0x98, 0x06, 0xf0, 0xea, 0xe9, +0x00, 0x28, 0x05, 0xd0, 0x0a, 0xa8, 0xff, 0xf7, 0xe4, 0xfb, 0x0d, 0x98, 0x06, 0xf0, 0x2e, 0xeb, +0x0b, 0x98, 0x05, 0xf0, 0xc0, 0xed, 0x79, 0x78, 0x3b, 0x78, 0x0a, 0x02, 0x01, 0x00, 0x07, 0x98, +0x1a, 0x43, 0x6e, 0x46, 0x07, 0xc6, 0x23, 0x00, 0x10, 0x9a, 0x0a, 0x99, 0xdd, 0x20, 0x06, 0xf0, +0x16, 0xeb, 0x0a, 0x99, 0x40, 0x18, 0x0a, 0x90, 0x28, 0x00, 0x06, 0xf0, 0x1c, 0xeb, 0x06, 0x98, +0xe8, 0x61, 0x08, 0x98, 0x05, 0x99, 0x81, 0x70, 0xe8, 0x69, 0x01, 0x21, 0x09, 0x03, 0x88, 0x43, +0xe8, 0x61, 0x05, 0x98, 0x06, 0xf0, 0x12, 0xeb, 0x6c, 0x60, 0xe8, 0x62, 0x0a, 0x98, 0x22, 0x00, +0x00, 0x1b, 0x20, 0x38, 0x06, 0x04, 0x36, 0x0c, 0x30, 0x0a, 0x26, 0x70, 0x60, 0x70, 0x0d, 0x98, +0x01, 0x21, 0x0c, 0x23, 0x06, 0xf0, 0x06, 0xeb, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, +0x0a, 0x99, 0x80, 0x1b, 0x40, 0x18, 0x09, 0x99, 0x0a, 0x90, 0x09, 0x1b, 0x08, 0x39, 0x29, 0x73, +0x01, 0x1b, 0x08, 0x39, 0x69, 0x73, 0x61, 0x78, 0x22, 0x78, 0x09, 0x02, 0x11, 0x43, 0x1c, 0x31, +0xe9, 0x81, 0x10, 0x99, 0x08, 0x29, 0x02, 0xd1, 0x5a, 0x49, 0x08, 0x60, 0x04, 0xe0, 0x5a, 0x49, +0x08, 0x60, 0x28, 0x00, 0x06, 0xf0, 0xea, 0xea, 0xff, 0x22, 0x06, 0x21, 0xa0, 0x1d, 0x06, 0xf0, +0xea, 0xea, 0x11, 0xb0, 0xf0, 0xbd, 0xf0, 0xb5, 0x06, 0x00, 0x0f, 0x00, 0x02, 0x21, 0x07, 0x20, +0x9d, 0xb0, 0x05, 0xf0, 0xcc, 0xec, 0x00, 0x28, 0x04, 0xd1, 0x30, 0x00, 0x05, 0xf0, 0xca, 0xec, +0x00, 0x28, 0x02, 0xd0, 0x03, 0x20, 0x1d, 0xb0, 0xf0, 0xbd, 0x04, 0xa9, 0x03, 0xa8, 0xfe, 0xf7, +0x51, 0xff, 0x38, 0x00, 0x40, 0x30, 0x81, 0x7e, 0x00, 0x29, 0x03, 0xd0, 0x41, 0x7e, 0x05, 0x91, +0x80, 0x7e, 0x03, 0xe0, 0x03, 0x98, 0x05, 0x90, 0x3c, 0x20, 0xc0, 0x5d, 0x6b, 0x46, 0x05, 0x06, +0x0b, 0x20, 0x80, 0x01, 0x34, 0x18, 0x20, 0x69, 0x2d, 0x0e, 0x05, 0x73, 0x20, 0x69, 0x19, 0x7d, +0x41, 0x73, 0x30, 0x00, 0x06, 0xf0, 0xba, 0xea, 0x01, 0x21, 0x09, 0x20, 0x05, 0xf0, 0x6a, 0xec, +0x00, 0x21, 0x09, 0x20, 0x05, 0xf0, 0x3e, 0xec, 0x03, 0x20, 0x06, 0xf0, 0xb4, 0xea, 0x05, 0x98, +0x00, 0x22, 0x29, 0x00, 0xfe, 0xf7, 0xc1, 0xfe, 0xfe, 0xf7, 0x11, 0xff, 0x39, 0x00, 0x30, 0x00, +0x00, 0xf0, 0xca, 0xf9, 0x39, 0x00, 0x06, 0xa8, 0x06, 0xf0, 0xa8, 0xea, 0x08, 0xab, 0x98, 0x7e, +0x5a, 0x7e, 0x01, 0x02, 0x20, 0x69, 0x11, 0x43, 0x40, 0x30, 0x10, 0xab, 0x81, 0x81, 0x98, 0x7b, +0xc0, 0x07, 0x04, 0xd0, 0x00, 0x22, 0x29, 0x00, 0x30, 0x00, 0xff, 0xf7, 0xd8, 0xfd, 0x30, 0x00, +0x05, 0xf0, 0x94, 0xec, 0x00, 0x28, 0x00, 0xd0, 0xfe, 0xe7, 0x34, 0x00, 0x80, 0x34, 0x20, 0x69, +0xac, 0x25, 0x05, 0x81, 0x21, 0x69, 0x1b, 0x4a, 0x48, 0x19, 0x10, 0x60, 0x1f, 0x48, 0xe2, 0x68, +0x02, 0x60, 0x01, 0x92, 0x00, 0x91, 0x3a, 0x00, 0x30, 0x00, 0x08, 0x23, 0x06, 0xa9, 0xff, 0xf7, +0x54, 0xfe, 0xa0, 0x69, 0x14, 0x4a, 0x05, 0x81, 0xa1, 0x69, 0x05, 0x23, 0x48, 0x19, 0x10, 0x60, +0x17, 0x48, 0x62, 0x69, 0x02, 0x60, 0x01, 0x92, 0x00, 0x91, 0x3a, 0x00, 0x30, 0x00, 0x06, 0xa9, +0xff, 0xf7, 0x43, 0xfe, 0x08, 0xab, 0x98, 0x7e, 0x59, 0x7e, 0x00, 0x02, 0x08, 0x43, 0x06, 0xf0, +0x6a, 0xea, 0x02, 0x21, 0x09, 0x20, 0x05, 0xf0, 0x0e, 0xec, 0x0e, 0x48, 0x01, 0x68, 0x20, 0x22, +0x11, 0x43, 0x01, 0x60, 0x01, 0x21, 0x09, 0x20, 0x05, 0xf0, 0xdc, 0xeb, 0x00, 0x20, 0x72, 0xe7, +0x86, 0x55, 0x00, 0x04, 0x04, 0x1d, 0x01, 0xc0, 0x00, 0x1d, 0x01, 0xc0, 0x54, 0xf4, 0x00, 0xc0, +0x94, 0xf4, 0x00, 0xc0, 0xb4, 0xbb, 0x02, 0x00, 0xb8, 0xbb, 0x02, 0x00, 0xe8, 0x1c, 0x01, 0xc0, +0xec, 0x1c, 0x01, 0xc0, 0x00, 0xa7, 0x00, 0x80, 0xf0, 0xb5, 0x05, 0x00, 0x0f, 0x00, 0x02, 0x21, +0x07, 0x20, 0x89, 0xb0, 0x05, 0xf0, 0x1a, 0xec, 0x00, 0x28, 0x04, 0xd1, 0x28, 0x00, 0x05, 0xf0, +0x1a, 0xec, 0x00, 0x28, 0x02, 0xd0, 0x03, 0x20, 0x09, 0xb0, 0xf0, 0xbd, 0x04, 0xa9, 0x03, 0xa8, +0xfe, 0xf7, 0xa0, 0xfe, 0x38, 0x00, 0x40, 0x30, 0x81, 0x79, 0x3c, 0x00, 0x20, 0x34, 0x00, 0x29, +0x04, 0xd0, 0x41, 0x79, 0x6b, 0x46, 0x19, 0x76, 0x80, 0x79, 0x03, 0xe0, 0x6b, 0x46, 0x18, 0x7b, +0x18, 0x76, 0xa0, 0x7b, 0x6b, 0x46, 0x58, 0x76, 0x20, 0x78, 0x02, 0x28, 0x05, 0xd1, 0xa0, 0x78, +0x61, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x28, 0x01, 0xd2, 0x01, 0x20, 0xdc, 0xe7, 0x0b, 0x20, +0x80, 0x01, 0x2e, 0x18, 0x30, 0x69, 0x6b, 0x46, 0x59, 0x7e, 0x01, 0x73, 0x30, 0x69, 0x19, 0x7e, +0x41, 0x73, 0x03, 0x20, 0x06, 0xf0, 0xfe, 0xe9, 0xa0, 0x78, 0x62, 0x78, 0x01, 0x02, 0x30, 0x69, +0x11, 0x43, 0x40, 0x30, 0x81, 0x81, 0x6b, 0x46, 0x5a, 0x7e, 0x28, 0x00, 0x06, 0xa9, 0xfe, 0xf7, +0xef, 0xfd, 0x6b, 0x46, 0x59, 0x7e, 0x06, 0x98, 0x00, 0x22, 0xfe, 0xf7, 0xfe, 0xfd, 0xfe, 0xf7, +0x4e, 0xfe, 0x32, 0x69, 0x29, 0x00, 0x13, 0x00, 0x7e, 0x31, 0x2b, 0x33, 0x2c, 0x32, 0x38, 0x00, +0x08, 0x91, 0x06, 0xf0, 0xec, 0xe9, 0x38, 0x00, 0x37, 0x30, 0x0e, 0x21, 0x07, 0x90, 0x05, 0xf0, +0xd2, 0xeb, 0x58, 0x21, 0x05, 0x90, 0x48, 0x55, 0x28, 0x00, 0x05, 0x9a, 0x07, 0x99, 0x4a, 0x30, +0x05, 0xf0, 0xf0, 0xea, 0x32, 0x6a, 0x07, 0x98, 0x35, 0x32, 0x00, 0x92, 0x00, 0x22, 0x05, 0x99, +0x13, 0x00, 0x05, 0xf0, 0xc4, 0xeb, 0x06, 0x00, 0x03, 0x00, 0x05, 0x9a, 0x07, 0x99, 0x28, 0x00, +0xfe, 0xf7, 0x7a, 0xfe, 0x28, 0x00, 0x05, 0xf0, 0x16, 0xec, 0x01, 0x20, 0x28, 0x72, 0x39, 0x00, +0x28, 0x00, 0x06, 0xf0, 0xc8, 0xe9, 0xa0, 0x7d, 0xc0, 0x07, 0x05, 0xd0, 0x6b, 0x46, 0x59, 0x7e, +0x01, 0x22, 0x28, 0x00, 0xff, 0xf7, 0xf3, 0xfc, 0xae, 0x1d, 0x21, 0xaf, 0x01, 0x00, 0x00, 0x00, +0x8c, 0x84, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xd8, 0x4c, 0xe1, 0xfc, 0x30, 0x00, 0x06, 0xf0, +0xc0, 0xe9, 0x8c, 0x4a, 0xc0, 0x07, 0x11, 0x79, 0xbf, 0x23, 0x40, 0x0e, 0x19, 0x40, 0x01, 0x43, +0x28, 0x00, 0x11, 0x71, 0x05, 0xf0, 0xa4, 0xeb, 0x00, 0x28, 0x00, 0xd0, 0xfe, 0xe7, 0x2e, 0x00, +0x80, 0x36, 0x31, 0x69, 0xac, 0x20, 0x08, 0x81, 0x30, 0x69, 0x83, 0x4a, 0x01, 0x00, 0xac, 0x31, +0x11, 0x60, 0x82, 0x49, 0xf2, 0x68, 0x0a, 0x60, 0x01, 0x92, 0x00, 0x90, 0x08, 0x9a, 0x39, 0x00, +0x28, 0x00, 0x08, 0x23, 0xff, 0xf7, 0x63, 0xfd, 0xb1, 0x69, 0xac, 0x20, 0x08, 0x81, 0xb0, 0x69, +0x7b, 0x4a, 0x01, 0x00, 0xac, 0x31, 0x11, 0x60, 0x7a, 0x49, 0x72, 0x69, 0x0a, 0x60, 0x01, 0x92, +0x00, 0x90, 0x08, 0x9a, 0x39, 0x00, 0x28, 0x00, 0x05, 0x23, 0xff, 0xf7, 0x50, 0xfd, 0xa0, 0x78, +0x61, 0x78, 0x00, 0x02, 0x08, 0x43, 0x06, 0xf0, 0x78, 0xe9, 0x28, 0x00, 0x61, 0x7d, 0x20, 0x30, +0x81, 0x77, 0xa1, 0x7d, 0xc1, 0x77, 0x28, 0x00, 0x06, 0xf0, 0x62, 0xe9, 0x02, 0x21, 0x08, 0x20, +0x05, 0xf0, 0x12, 0xeb, 0x6c, 0x49, 0x08, 0x68, 0x20, 0x22, 0x10, 0x43, 0x08, 0x60, 0x01, 0x21, +0x08, 0x20, 0x05, 0xf0, 0xe2, 0xea, 0x00, 0x20, 0x28, 0xe7, 0xf8, 0xb5, 0x04, 0x00, 0x1e, 0x00, +0x06, 0x9f, 0x06, 0xf0, 0x6a, 0xe9, 0x05, 0x00, 0x20, 0x00, 0xff, 0x30, 0x41, 0x30, 0x80, 0x6a, +0x00, 0x28, 0x39, 0xd1, 0xe0, 0x68, 0x01, 0x21, 0x09, 0x03, 0x08, 0x43, 0xe0, 0x60, 0x71, 0x6b, +0x00, 0x29, 0x04, 0xd0, 0x20, 0x00, 0x1c, 0x22, 0x61, 0x30, 0x05, 0xf0, 0x5e, 0xea, 0x2a, 0x68, +0x58, 0x20, 0x35, 0x32, 0x00, 0x92, 0x01, 0x5d, 0x00, 0x22, 0x20, 0x00, 0x4a, 0x30, 0x13, 0x00, +0x05, 0xf0, 0x2e, 0xeb, 0x01, 0x00, 0x39, 0x40, 0x20, 0x00, 0x06, 0xf0, 0x4a, 0xe9, 0x20, 0x00, +0x05, 0xf0, 0x72, 0xef, 0x20, 0x00, 0x05, 0xf0, 0xcc, 0xeb, 0x30, 0x69, 0x00, 0x28, 0x01, 0xd0, +0x01, 0x21, 0x00, 0xe0, 0x00, 0x21, 0x20, 0x00, 0x06, 0xf0, 0x3e, 0xe9, 0xe0, 0x68, 0x01, 0x21, +0x08, 0x43, 0x02, 0x22, 0x10, 0x43, 0xe0, 0x60, 0x22, 0x00, 0xff, 0x32, 0x69, 0x75, 0x4a, 0x32, +0x20, 0x21, 0x20, 0x00, 0x06, 0xf0, 0x34, 0xe9, 0x20, 0x00, 0x05, 0xf0, 0x2a, 0xef, 0x0f, 0x2f, +0x0a, 0xd8, 0x3c, 0x49, 0x08, 0x22, 0x08, 0x79, 0x10, 0x43, 0xc0, 0x08, 0xc0, 0x00, 0x08, 0x71, +0x3e, 0x48, 0x1e, 0x31, 0x05, 0xf0, 0xac, 0xeb, 0xf8, 0xbd, 0x41, 0x69, 0x80, 0x69, 0x02, 0x00, +0x24, 0x32, 0x91, 0x42, 0x02, 0xd0, 0x3c, 0x30, 0x81, 0x42, 0x01, 0xd1, 0x01, 0x20, 0x70, 0x47, +0x00, 0x20, 0x70, 0x47, 0x02, 0x21, 0x07, 0x20, 0x10, 0xb5, 0x05, 0xf0, 0x9e, 0xea, 0x32, 0x48, +0x01, 0x68, 0x20, 0x22, 0x11, 0x43, 0x01, 0x60, 0x01, 0x21, 0x07, 0x20, 0x05, 0xf0, 0x6c, 0xea, +0x10, 0xbd, 0x2f, 0x49, 0x00, 0x20, 0x08, 0x60, 0x48, 0x60, 0x70, 0x47, 0xf3, 0xb5, 0x01, 0x00, +0x02, 0x00, 0x83, 0xb0, 0x04, 0x00, 0x4a, 0x31, 0x04, 0x98, 0x58, 0x32, 0x02, 0x91, 0x06, 0xf0, +0xfc, 0xe8, 0x05, 0xf0, 0x0e, 0xec, 0x0b, 0x20, 0x80, 0x01, 0x26, 0x18, 0x32, 0x6a, 0x20, 0x00, +0x35, 0x32, 0x00, 0x92, 0x40, 0x30, 0x01, 0x7e, 0x07, 0x00, 0x00, 0x22, 0x02, 0x98, 0x13, 0x00, +0x05, 0xf0, 0xbe, 0xea, 0x05, 0x00, 0x03, 0x00, 0x3a, 0x7e, 0x02, 0x99, 0x20, 0x00, 0xfe, 0xf7, +0x75, 0xfd, 0x28, 0x00, 0x06, 0xf0, 0xcc, 0xe8, 0x12, 0x4a, 0xc0, 0x07, 0x11, 0x79, 0xbf, 0x23, +0x40, 0x0e, 0x19, 0x40, 0x01, 0x43, 0x20, 0x00, 0x11, 0x71, 0x05, 0xf0, 0x06, 0xeb, 0x04, 0x99, +0x20, 0x00, 0x40, 0x31, 0x4a, 0x7a, 0x20, 0x30, 0x82, 0x77, 0x89, 0x7a, 0xc1, 0x77, 0x30, 0x69, +0x21, 0x00, 0x03, 0x00, 0x2b, 0x33, 0x04, 0x98, 0x5a, 0x1c, 0x7e, 0x31, 0xfe, 0xf7, 0x6c, 0xfc, +0x0c, 0x49, 0x00, 0x20, 0x08, 0x70, 0x01, 0x20, 0x20, 0x72, 0x06, 0xf0, 0xc2, 0xe8, 0x05, 0xb0, +0xf0, 0xbd, 0x00, 0x00, 0x82, 0x55, 0x00, 0x04, 0x04, 0x1d, 0x01, 0xc0, 0xe8, 0x1c, 0x01, 0xc0, +0x00, 0x1d, 0x01, 0xc0, 0xec, 0x1c, 0x01, 0xc0, 0x00, 0xa7, 0x00, 0x80, 0x40, 0x4b, 0x4c, 0x00, +0x94, 0xf4, 0x00, 0xc0, 0x60, 0xf4, 0x00, 0xc0, 0x3e, 0xb5, 0x00, 0x21, 0x04, 0x00, 0x0a, 0x00, +0x0b, 0x00, 0x68, 0x46, 0x0e, 0xc0, 0x06, 0x22, 0xff, 0x49, 0x68, 0x46, 0x05, 0xf0, 0x94, 0xe9, +0xfd, 0x4d, 0x00, 0x22, 0xcb, 0x3d, 0xaa, 0x70, 0x68, 0x7b, 0x01, 0x21, 0x00, 0x28, 0x0c, 0xd0, +0x01, 0x28, 0x07, 0xd0, 0x04, 0x28, 0x03, 0xd1, 0x80, 0x20, 0x6b, 0x46, 0x98, 0x71, 0x06, 0xe0, +0x00, 0x2c, 0x02, 0xd0, 0x6b, 0x46, 0x99, 0x71, 0x01, 0xe0, 0x6b, 0x46, 0x9a, 0x71, 0x6b, 0x46, +0x29, 0x73, 0x98, 0x79, 0xa8, 0x73, 0xf0, 0x48, 0x00, 0x22, 0x0b, 0x38, 0xc1, 0x6b, 0xd2, 0x43, +0xff, 0x31, 0x41, 0x31, 0x0a, 0x80, 0xc0, 0x6b, 0x69, 0x46, 0x06, 0xf0, 0x7e, 0xe8, 0x3e, 0xbd, +0xf0, 0xb5, 0x91, 0xb0, 0xe8, 0x4c, 0x0b, 0x3c, 0xe0, 0x6b, 0x06, 0xf0, 0x7a, 0xe8, 0x05, 0x00, +0x40, 0x21, 0x01, 0xa8, 0x05, 0xf0, 0x9c, 0xea, 0xe3, 0x49, 0x06, 0x22, 0x01, 0xa8, 0x05, 0xf0, +0x5c, 0xe9, 0x20, 0x00, 0x20, 0x30, 0x01, 0x00, 0x42, 0x7c, 0x03, 0xa8, 0x0f, 0x39, 0x80, 0x1c, +0x05, 0xf0, 0x52, 0xe9, 0x20, 0x00, 0x20, 0x30, 0xc1, 0x7c, 0x6b, 0x46, 0x99, 0x72, 0x00, 0x7d, +0xd8, 0x72, 0xda, 0x48, 0x00, 0x21, 0x00, 0x88, 0x26, 0x00, 0x98, 0x81, 0xa3, 0x7a, 0xc0, 0x3e, +0x01, 0xaa, 0x0a, 0xe0, 0x70, 0x18, 0xa0, 0x30, 0x00, 0x7f, 0x57, 0x18, 0x20, 0x37, 0x40, 0x06, +0x40, 0x0e, 0x49, 0x1c, 0x09, 0x06, 0x09, 0x0e, 0xb8, 0x72, 0x8b, 0x42, 0xf2, 0xd8, 0x00, 0x27, +0x04, 0x20, 0xb7, 0x70, 0x30, 0x73, 0xe0, 0x6b, 0x28, 0x22, 0x52, 0x5d, 0xc1, 0x68, 0x01, 0x26, +0x36, 0x03, 0xd2, 0x07, 0xb1, 0x43, 0xd2, 0x0c, 0x11, 0x43, 0xc1, 0x60, 0xc6, 0x48, 0x0f, 0xa9, +0x17, 0x38, 0x05, 0xf0, 0xa6, 0xef, 0x10, 0xab, 0x18, 0x80, 0xe0, 0x6b, 0xc1, 0x68, 0xc9, 0x04, +0x04, 0xd4, 0xc1, 0x49, 0x4b, 0x39, 0x09, 0x68, 0x00, 0x29, 0x05, 0xd0, 0x2a, 0x00, 0x00, 0x23, +0x01, 0xa9, 0x06, 0xf0, 0x2a, 0xe8, 0x02, 0xe0, 0x01, 0xa9, 0x06, 0xf0, 0x2a, 0xe8, 0x00, 0x28, +0x5f, 0xd1, 0xe0, 0x6b, 0xc1, 0x68, 0x31, 0x43, 0xc1, 0x60, 0xe0, 0x6b, 0x00, 0x28, 0x58, 0xd0, +0x09, 0x21, 0x89, 0x01, 0x40, 0x18, 0xc0, 0x6b, 0x00, 0x28, 0x52, 0xd0, 0x60, 0x30, 0x07, 0x83, +0xe0, 0x6b, 0x00, 0x28, 0x4d, 0xd0, 0x40, 0x18, 0xc0, 0x6b, 0x00, 0x28, 0x49, 0xd0, 0x60, 0x30, +0x47, 0x83, 0xe0, 0x6b, 0x00, 0x28, 0x44, 0xd0, 0x40, 0x18, 0xc0, 0x6b, 0x00, 0x28, 0x40, 0xd0, +0x60, 0x30, 0x87, 0x83, 0xe0, 0x6b, 0x00, 0x28, 0x3b, 0xd0, 0x40, 0x18, 0xc0, 0x6b, 0x00, 0x28, +0x37, 0xd0, 0x60, 0x30, 0xc7, 0x83, 0xe0, 0x6b, 0x00, 0x28, 0x32, 0xd0, 0x40, 0x18, 0xc0, 0x6b, +0x00, 0x28, 0x2e, 0xd0, 0x80, 0x30, 0x07, 0x80, 0xe0, 0x6b, 0x00, 0x28, 0x29, 0xd0, 0x40, 0x18, +0xc0, 0x6b, 0x00, 0x28, 0x25, 0xd0, 0x80, 0x30, 0x2d, 0x6c, 0xbe, 0x89, 0x01, 0x00, 0x00, 0x00, +0x88, 0x88, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xf8, 0xaf, 0x49, 0x76, 0x47, 0x80, 0xe0, 0x6b, +0x00, 0x28, 0x20, 0xd0, 0x40, 0x18, 0xc0, 0x6b, 0x00, 0x28, 0x1c, 0xd0, 0x80, 0x30, 0x87, 0x80, +0xe0, 0x6b, 0x00, 0x28, 0x17, 0xd0, 0x40, 0x18, 0xc0, 0x6b, 0x00, 0x28, 0x13, 0xd0, 0x80, 0x30, +0xc7, 0x80, 0xe0, 0x6b, 0x00, 0x28, 0x0e, 0xd0, 0x40, 0x18, 0xc0, 0x6b, 0x00, 0x28, 0x0a, 0xd0, +0x80, 0x30, 0x07, 0x81, 0xe0, 0x6b, 0x00, 0x28, 0x05, 0xd0, 0x40, 0x18, 0xc0, 0x6b, 0x00, 0x28, +0x01, 0xd0, 0x80, 0x30, 0x47, 0x81, 0x11, 0xb0, 0xf0, 0xbd, 0x38, 0xb5, 0x04, 0x00, 0x05, 0xf0, +0xba, 0xef, 0xe1, 0x68, 0x05, 0x00, 0x88, 0x03, 0x40, 0xd4, 0x01, 0x20, 0x40, 0x04, 0x01, 0x43, +0x82, 0x48, 0xe1, 0x60, 0xab, 0x38, 0x00, 0x79, 0x00, 0x28, 0x09, 0xd0, 0x0b, 0x20, 0x80, 0x01, +0x20, 0x18, 0x00, 0x69, 0x80, 0x30, 0x00, 0x79, 0xc0, 0x07, 0x01, 0xd0, 0x01, 0x21, 0x00, 0xe0, +0x00, 0x21, 0x20, 0x00, 0x05, 0xf0, 0xaa, 0xef, 0x00, 0x21, 0x20, 0x00, 0x00, 0xf0, 0x11, 0xff, +0x40, 0x21, 0x20, 0x00, 0xfd, 0xf7, 0x81, 0xf9, 0x20, 0x00, 0x05, 0xf0, 0xa4, 0xef, 0x73, 0x48, +0x4b, 0x38, 0x80, 0x68, 0x00, 0x28, 0x0e, 0xd0, 0x70, 0x48, 0xcb, 0x38, 0xc1, 0x69, 0x00, 0x29, +0x09, 0xd0, 0x7d, 0x22, 0xd2, 0x00, 0x4a, 0x43, 0x00, 0x92, 0x03, 0x22, 0x29, 0x00, 0x20, 0x00, +0x00, 0x23, 0xfd, 0xf7, 0xf5, 0xfa, 0x6b, 0x48, 0x00, 0x88, 0x00, 0x28, 0x06, 0xd0, 0x05, 0xf0, +0x26, 0xea, 0x00, 0x28, 0x02, 0xd0, 0x20, 0x00, 0x05, 0xf0, 0xd8, 0xe9, 0x38, 0xbd, 0xf8, 0xb5, +0x06, 0x22, 0x07, 0x00, 0x61, 0x48, 0x39, 0x00, 0x0b, 0x38, 0xc6, 0x6b, 0x30, 0x00, 0xff, 0x30, +0x4a, 0x30, 0x05, 0xf0, 0x54, 0xe8, 0x30, 0x00, 0x06, 0x22, 0x39, 0x00, 0x7e, 0x30, 0x05, 0xf0, +0x4e, 0xe8, 0x0b, 0x21, 0x89, 0x01, 0x75, 0x18, 0x28, 0x69, 0x20, 0x21, 0x2c, 0x30, 0x05, 0xf0, +0x82, 0xe9, 0x28, 0x69, 0x3c, 0x00, 0x20, 0x34, 0xa2, 0x79, 0x2c, 0x30, 0xb9, 0x1d, 0x05, 0xf0, +0x3e, 0xe8, 0x28, 0x69, 0xa1, 0x79, 0x20, 0x30, 0xc1, 0x72, 0x29, 0x69, 0xe2, 0x79, 0x80, 0x31, +0x08, 0x79, 0x52, 0x07, 0x40, 0x08, 0x40, 0x00, 0xd2, 0x0f, 0x10, 0x43, 0x08, 0x71, 0xfd, 0x22, +0x10, 0x40, 0xe2, 0x79, 0x29, 0x69, 0x12, 0x07, 0xd2, 0x0f, 0x52, 0x00, 0x80, 0x31, 0x10, 0x43, +0x08, 0x71, 0xe0, 0x79, 0x40, 0x07, 0x01, 0xd5, 0x01, 0x21, 0x00, 0xe0, 0x00, 0x21, 0x30, 0x00, +0x05, 0xf0, 0x3c, 0xef, 0x41, 0x49, 0x00, 0x20, 0xcb, 0x39, 0x48, 0x71, 0x39, 0x00, 0x05, 0xf0, +0x9e, 0xe8, 0x01, 0x20, 0x05, 0xf0, 0x56, 0xed, 0xa1, 0x79, 0xb8, 0x1d, 0x05, 0xf0, 0x06, 0xe9, +0x3a, 0x00, 0x39, 0x00, 0x30, 0x00, 0x05, 0xf0, 0x32, 0xef, 0xf8, 0xbd, 0xf0, 0xb5, 0x05, 0x00, +0x0b, 0x21, 0x36, 0x4c, 0x89, 0x01, 0x0b, 0x3c, 0xe0, 0x6b, 0x87, 0xb0, 0x41, 0x18, 0x0f, 0x69, +0x05, 0xf0, 0x10, 0xef, 0x26, 0x00, 0xc0, 0x3e, 0x00, 0x90, 0xb0, 0x68, 0x05, 0xf0, 0x22, 0xef, +0x07, 0x20, 0x30, 0x73, 0x20, 0x00, 0x29, 0x00, 0x60, 0x38, 0x05, 0x00, 0x01, 0x77, 0x30, 0x79, +0x05, 0xf0, 0xe8, 0xed, 0x05, 0xf0, 0xc6, 0xed, 0x03, 0x91, 0x02, 0x90, 0x28, 0x7f, 0x00, 0x28, +0x01, 0xd0, 0x02, 0x28, 0x7d, 0xd1, 0x25, 0x48, 0x01, 0xa9, 0x17, 0x38, 0x05, 0xf0, 0x62, 0xee, +0x01, 0x00, 0x01, 0x98, 0x21, 0x4a, 0x89, 0x1f, 0x09, 0x04, 0x80, 0x1d, 0x09, 0x0c, 0xa3, 0x3a, +0x05, 0xf0, 0x00, 0xe8, 0x28, 0x7f, 0x00, 0x28, 0xec, 0xd1, 0xe0, 0x6b, 0x0b, 0x21, 0x89, 0x01, +0x41, 0x18, 0x0e, 0x69, 0x00, 0x99, 0x05, 0xf0, 0xfa, 0xee, 0x05, 0xf0, 0xe0, 0xeb, 0x17, 0x4d, +0x31, 0x00, 0x15, 0x35, 0x68, 0x7e, 0x30, 0x73, 0x28, 0x00, 0x05, 0x90, 0x80, 0x7e, 0x70, 0x73, +0xe8, 0x8a, 0x40, 0x31, 0x04, 0x91, 0x88, 0x81, 0x28, 0x00, 0x60, 0x38, 0x43, 0x69, 0x02, 0x69, +0x73, 0x62, 0x32, 0x62, 0xc2, 0x69, 0x80, 0x69, 0xf2, 0x61, 0xb0, 0x61, 0x2e, 0x00, 0x60, 0x3e, +0x30, 0x68, 0x00, 0x28, 0x01, 0xd0, 0x00, 0x20, 0x0b, 0xe0, 0x08, 0x48, 0x03, 0x99, 0x4b, 0x38, +0xc3, 0x6a, 0x82, 0x6a, 0x02, 0x98, 0x80, 0x1a, 0x99, 0x41, 0x07, 0x4a, 0x00, 0x23, 0x05, 0xf0, +0x66, 0xea, 0x01, 0x21, 0x30, 0x63, 0xe0, 0x6b, 0x09, 0x03, 0x07, 0xe0, 0x6b, 0x61, 0x02, 0xc0, +0xe6, 0x1c, 0x01, 0xc0, 0x04, 0x36, 0x01, 0xc0, 0x40, 0x42, 0x0f, 0x00, 0xc2, 0x68, 0x0a, 0x43, +0xc2, 0x60, 0xe0, 0x6b, 0x04, 0x22, 0xff, 0x30, 0x41, 0x30, 0x02, 0x72, 0xe0, 0x6b, 0xc2, 0x68, +0x8a, 0x43, 0xc2, 0x60, 0x04, 0x21, 0x07, 0x20, 0x05, 0xf0, 0x44, 0xe8, 0x00, 0x28, 0x0a, 0xd1, +0xfa, 0x48, 0x03, 0x99, 0x43, 0x6a, 0x02, 0x6a, 0x02, 0x98, 0x80, 0x18, 0xea, 0x8a, 0x59, 0x41, +0x92, 0x02, 0x05, 0xf0, 0xa8, 0xee, 0xe0, 0x6b, 0x01, 0x22, 0xc1, 0x68, 0x12, 0x03, 0x11, 0x43, +0xc1, 0x60, 0x38, 0x00, 0xff, 0x30, 0x00, 0x21, 0x21, 0x30, 0x81, 0x81, 0x49, 0x1e, 0x41, 0x81, +0x00, 0xe0, 0x5c, 0xe0, 0x05, 0xf0, 0x3e, 0xed, 0xff, 0x37, 0x7f, 0x1c, 0x79, 0x63, 0x38, 0x63, +0xe0, 0x6b, 0x05, 0xf0, 0x94, 0xee, 0x05, 0xf0, 0x96, 0xee, 0x79, 0x64, 0x38, 0x64, 0x03, 0x20, +0x05, 0xf0, 0x34, 0xee, 0xe0, 0x6b, 0x05, 0xf0, 0x92, 0xee, 0x28, 0x7d, 0xc0, 0x07, 0x04, 0xd0, +0x69, 0x7e, 0xe0, 0x6b, 0x00, 0x22, 0x05, 0xf0, 0x1e, 0xe8, 0x05, 0xf0, 0x8c, 0xee, 0xe0, 0x6b, +0xfa, 0xf7, 0x77, 0xfb, 0xe0, 0x6b, 0x05, 0x99, 0x20, 0x30, 0xca, 0x7c, 0x82, 0x77, 0x09, 0x7d, +0xc1, 0x77, 0x04, 0x99, 0x00, 0x20, 0x88, 0x73, 0xd9, 0x49, 0x04, 0x22, 0x08, 0x70, 0xe0, 0x6b, +0xc1, 0x68, 0x91, 0x43, 0xd5, 0x4a, 0x60, 0x3a, 0x13, 0x79, 0xdb, 0x07, 0x5b, 0x0f, 0x19, 0x43, +0x10, 0x23, 0xc1, 0x60, 0x99, 0x43, 0x53, 0x79, 0xe0, 0x6b, 0xdb, 0x07, 0xdb, 0x0e, 0x19, 0x43, +0xc1, 0x60, 0xf0, 0x68, 0x00, 0x28, 0x15, 0xd1, 0xe0, 0x6b, 0xcb, 0x04, 0x0b, 0xd5, 0xcb, 0x06, +0x0b, 0xd4, 0x49, 0x07, 0x09, 0xd4, 0x01, 0x00, 0x20, 0x31, 0x8b, 0x7f, 0xdb, 0x06, 0x02, 0xd5, +0x49, 0x7e, 0x09, 0x07, 0x01, 0xd5, 0x01, 0x21, 0xf1, 0x60, 0x11, 0x79, 0x52, 0x79, 0x11, 0x43, +0xfd, 0xf7, 0xb6, 0xfd, 0xc1, 0x48, 0x80, 0x38, 0x80, 0x68, 0x07, 0x21, 0x3a, 0xe0, 0x00, 0x9d, +0x06, 0x26, 0x20, 0x35, 0x28, 0x7a, 0x00, 0x28, 0xe0, 0x6b, 0x11, 0xd0, 0x00, 0x99, 0x05, 0xf0, +0x96, 0xeb, 0x00, 0x28, 0x08, 0xd0, 0xe0, 0x6b, 0x00, 0x99, 0x05, 0xf0, 0x28, 0xee, 0xe0, 0x6b, +0x00, 0xf0, 0x4b, 0xfd, 0x08, 0x26, 0x0a, 0xe0, 0x00, 0x98, 0xff, 0xf7, 0x90, 0xfe, 0x06, 0xe0, +0x00, 0xf0, 0x43, 0xfd, 0xe0, 0x6b, 0x00, 0x21, 0xff, 0x30, 0x41, 0x30, 0x01, 0x72, 0xe0, 0x6b, +0x01, 0x22, 0xc1, 0x68, 0x12, 0x03, 0x91, 0x43, 0x2a, 0x7a, 0xd2, 0x07, 0xd2, 0x0c, 0x11, 0x43, +0xc1, 0x60, 0xaa, 0x49, 0xab, 0x48, 0x52, 0x22, 0x80, 0x31, 0x04, 0xf0, 0xd8, 0xee, 0xe0, 0x6b, +0xfe, 0xf7, 0xd5, 0xfc, 0xe0, 0x6b, 0x00, 0x21, 0x6a, 0xd2, 0xe0, 0xd2, 0x01, 0x00, 0x00, 0x00, +0x84, 0x8c, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x7f, 0xf9, 0x47, 0x24, 0x00, 0xf0, 0x5b, 0xfd, +0xa3, 0x48, 0x31, 0x00, 0x80, 0x38, 0x80, 0x68, 0x05, 0xf0, 0x66, 0xeb, 0x04, 0xf0, 0x28, 0xef, +0xe0, 0x6b, 0xc1, 0x68, 0x4a, 0x07, 0x02, 0xd4, 0x02, 0x22, 0x11, 0x43, 0xc1, 0x60, 0x07, 0xb0, +0xf0, 0xbd, 0xf7, 0xb5, 0x82, 0xb0, 0x03, 0x26, 0x99, 0x4c, 0x40, 0x34, 0xe0, 0x6b, 0x05, 0xf0, +0xcc, 0xed, 0x25, 0x00, 0x07, 0x00, 0xc0, 0x3d, 0xa8, 0x68, 0x02, 0x99, 0x88, 0x42, 0x07, 0xd0, +0x00, 0x28, 0x02, 0xd0, 0x0c, 0x20, 0xff, 0xf7, 0xa3, 0xfe, 0x04, 0x20, 0x05, 0xb0, 0xf0, 0xbd, +0x03, 0x9b, 0x05, 0xf0, 0x46, 0xeb, 0x0a, 0x86, 0x06, 0x86, 0x29, 0x74, 0x6a, 0x82, 0x82, 0x7f, +0x20, 0x86, 0xe8, 0x78, 0x40, 0x1c, 0xe8, 0x70, 0xe0, 0x6b, 0xc0, 0x68, 0xc0, 0x04, 0x0b, 0xd5, +0x05, 0xf0, 0xde, 0xed, 0x00, 0x28, 0x07, 0xd0, 0x05, 0xf0, 0xea, 0xe9, 0x00, 0x28, 0x70, 0xd1, +0x05, 0xf0, 0xda, 0xed, 0x00, 0x28, 0x6c, 0xd1, 0xe0, 0x6b, 0x05, 0xf0, 0xda, 0xed, 0x00, 0x28, +0x67, 0xd0, 0x02, 0x26, 0x65, 0xe0, 0x28, 0x7b, 0x07, 0x28, 0x62, 0xd0, 0x03, 0x28, 0x3d, 0xd8, +0x68, 0x78, 0x40, 0x1c, 0x68, 0x70, 0x3c, 0xe0, 0xe0, 0x6b, 0x01, 0x21, 0x00, 0xf0, 0x03, 0xfd, +0x05, 0xf0, 0xca, 0xed, 0x76, 0x49, 0x80, 0x39, 0x08, 0x71, 0x00, 0x20, 0x05, 0xf0, 0x6c, 0xec, +0x73, 0x4d, 0x20, 0x37, 0x80, 0x3d, 0x28, 0x00, 0x39, 0x7a, 0xcb, 0x30, 0x80, 0x35, 0x00, 0x29, +0x01, 0x90, 0x09, 0xd0, 0xe0, 0x6b, 0x01, 0x99, 0x05, 0xf0, 0xfa, 0xea, 0x01, 0x21, 0x00, 0x28, +0x68, 0x60, 0x00, 0xd0, 0x00, 0x21, 0xa9, 0x60, 0x69, 0x49, 0xa2, 0x7a, 0xe0, 0x6b, 0x00, 0x23, +0x3c, 0x31, 0xfe, 0xf7, 0xef, 0xf9, 0x01, 0x98, 0xff, 0xf7, 0xf3, 0xfd, 0xe0, 0x6b, 0xc0, 0x68, +0xc0, 0x04, 0xc0, 0x0f, 0x38, 0x72, 0x62, 0x48, 0x80, 0x38, 0x41, 0x78, 0x49, 0x1c, 0x41, 0x70, +0x69, 0x68, 0x00, 0x29, 0x02, 0xd1, 0x40, 0x7b, 0x03, 0x28, 0x02, 0xd1, 0xff, 0xf7, 0xd4, 0xfc, +0x1f, 0xe0, 0x00, 0x20, 0xff, 0xf7, 0x9c, 0xfc, 0x1b, 0xe0, 0x68, 0x78, 0x00, 0x28, 0x18, 0xd0, +0x03, 0x28, 0x16, 0xd2, 0x40, 0x1c, 0x68, 0x70, 0x05, 0xf0, 0x7e, 0xea, 0xf1, 0xe7, 0x28, 0x7b, +0x07, 0x28, 0x0e, 0xd0, 0x03, 0x28, 0x01, 0xd9, 0x04, 0x20, 0x00, 0xe0, 0x0a, 0x20, 0xff, 0xf7, +0x1f, 0xfe, 0x06, 0xe0, 0xe0, 0x6b, 0xfd, 0xf7, 0xf7, 0xfc, 0x00, 0x20, 0xa8, 0x60, 0x00, 0xf0, +0x7f, 0xfc, 0x30, 0x00, 0x72, 0xe7, 0xff, 0xb5, 0x81, 0xb0, 0x00, 0x24, 0x0e, 0x00, 0x03, 0x98, +0x00, 0x28, 0x3f, 0xd0, 0x03, 0x98, 0x06, 0x22, 0x01, 0x89, 0x0d, 0x18, 0x44, 0x48, 0x29, 0x00, +0x12, 0x31, 0x4b, 0x30, 0x05, 0xf0, 0xfc, 0xe9, 0x00, 0x28, 0x32, 0xd1, 0xa8, 0x78, 0x40, 0x4f, +0x00, 0x09, 0x40, 0x37, 0x0a, 0x28, 0x10, 0xd0, 0x0b, 0xdc, 0x01, 0x28, 0x55, 0xd0, 0x03, 0x28, +0x53, 0xd0, 0x08, 0x28, 0x26, 0xd1, 0xf8, 0x6b, 0x0a, 0x9a, 0x29, 0x00, 0xfe, 0xf7, 0xcc, 0xfa, +0x1f, 0xe0, 0x0b, 0x28, 0x0a, 0xd0, 0x0c, 0x28, 0x1c, 0xd1, 0x35, 0x4c, 0x80, 0x3c, 0xa0, 0x68, +0x05, 0xf0, 0x1a, 0xed, 0x60, 0x78, 0x00, 0x28, 0x68, 0xd1, 0x12, 0xe0, 0x30, 0x4c, 0x80, 0x3c, +0xa0, 0x68, 0x05, 0xf0, 0x12, 0xed, 0x20, 0x7b, 0x02, 0x28, 0x03, 0xd0, 0x01, 0x28, 0x08, 0xd1, +0x05, 0xf0, 0x2a, 0xea, 0xf8, 0x6b, 0x0a, 0x99, 0x05, 0xf0, 0x32, 0xed, 0x03, 0x98, 0x05, 0xf0, +0x34, 0xed, 0x01, 0x24, 0x00, 0x2e, 0x27, 0xd0, 0x30, 0x68, 0xc5, 0x6d, 0x1c, 0x38, 0x00, 0x90, +0xa8, 0x78, 0x01, 0x07, 0x89, 0x0f, 0x1f, 0xd1, 0x00, 0x09, 0x61, 0xd0, 0x02, 0x28, 0x5f, 0xd0, +0x0b, 0x28, 0x7c, 0xd1, 0x1e, 0x4f, 0x01, 0x24, 0x80, 0x3f, 0xb8, 0x7b, 0x01, 0x28, 0x0b, 0xd0, +0xb8, 0x68, 0x05, 0xf0, 0xea, 0xec, 0xb8, 0x69, 0x00, 0x28, 0x05, 0xd0, 0x7d, 0x21, 0xc9, 0x00, +0x41, 0x43, 0xb8, 0x68, 0x05, 0xf0, 0x14, 0xed, 0x30, 0x69, 0x00, 0x28, 0x38, 0x7b, 0x37, 0xd1, +0x01, 0x28, 0x64, 0xd1, 0x02, 0x20, 0x38, 0x73, 0x61, 0xe0, 0x11, 0x4c, 0x80, 0x3c, 0xa0, 0x68, +0x05, 0xf0, 0xd2, 0xec, 0x20, 0x7b, 0x05, 0x28, 0x03, 0xd0, 0x04, 0x28, 0xc9, 0xd1, 0x05, 0xf0, +0xec, 0xe9, 0xf8, 0x6b, 0x0a, 0x99, 0x05, 0xf0, 0xf4, 0xec, 0x09, 0x48, 0x34, 0x30, 0x04, 0x00, +0x05, 0xf0, 0xfa, 0xec, 0x68, 0x78, 0x29, 0x78, 0x02, 0x02, 0x0a, 0x43, 0x29, 0x00, 0x20, 0x31, +0x20, 0x00, 0x05, 0xf0, 0xf6, 0xec, 0x03, 0x98, 0x05, 0xf0, 0xf6, 0xec, 0xb1, 0xe7, 0x05, 0xe0, +0x20, 0x61, 0x02, 0xc0, 0x60, 0xf4, 0x00, 0xc0, 0x86, 0x55, 0x00, 0x04, 0x03, 0x28, 0xa8, 0xd2, +0x40, 0x1c, 0x60, 0x70, 0x05, 0xf0, 0xc8, 0xe9, 0x00, 0x20, 0xff, 0xf7, 0xd9, 0xfb, 0xa0, 0xe7, +0x01, 0x28, 0x2c, 0xd1, 0xb8, 0x78, 0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x02, 0x28, 0xb8, 0x70, +0x25, 0xd8, 0xe8, 0x78, 0xf7, 0x21, 0x08, 0x40, 0xe8, 0x70, 0x1b, 0xe0, 0x02, 0x24, 0x1e, 0xe0, +0x30, 0x69, 0x01, 0x24, 0x00, 0x28, 0x06, 0xd1, 0xff, 0x48, 0x01, 0x7b, 0x04, 0x29, 0x16, 0xd1, +0x05, 0x21, 0x01, 0x73, 0x13, 0xe0, 0xfc, 0x49, 0x08, 0x7b, 0x04, 0x28, 0x0f, 0xd1, 0x88, 0x78, +0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x02, 0x28, 0x88, 0x70, 0x08, 0xd8, 0xe9, 0x78, 0xf7, 0x20, +0x01, 0x40, 0xe9, 0x70, 0x00, 0x98, 0x05, 0xf0, 0xbc, 0xec, 0x00, 0x28, 0xde, 0xd0, 0x20, 0x00, +0x9c, 0xe6, 0xf3, 0xb5, 0xa9, 0xb0, 0x00, 0x26, 0x04, 0x00, 0xef, 0x4d, 0x04, 0x96, 0xc0, 0x35, +0x0a, 0x96, 0xe8, 0x6b, 0x05, 0xf0, 0x50, 0xec, 0x0d, 0x90, 0xef, 0x6b, 0x00, 0x21, 0x0a, 0x00, +0x1e, 0xa8, 0x0e, 0x97, 0x06, 0xc0, 0x1c, 0x21, 0xe8, 0x48, 0x04, 0xf0, 0x26, 0xed, 0x28, 0x1f, +0x0e, 0x21, 0x27, 0x90, 0x04, 0xf0, 0x68, 0xee, 0x20, 0x00, 0x0d, 0x30, 0x20, 0x90, 0x60, 0x7a, +0x21, 0x7a, 0x00, 0x02, 0x08, 0x43, 0x01, 0xd0, 0xe1, 0x49, 0x08, 0x80, 0xde, 0x48, 0x00, 0x26, +0x20, 0x30, 0x26, 0x90, 0x06, 0x71, 0x60, 0x30, 0x0b, 0x22, 0x06, 0x62, 0x92, 0x01, 0x46, 0x62, +0xb8, 0x18, 0x01, 0x69, 0x80, 0x31, 0x08, 0x79, 0x40, 0x08, 0x40, 0x00, 0x08, 0x71, 0xe9, 0x6b, +0x89, 0x18, 0x09, 0x69, 0xfd, 0x22, 0x80, 0x31, 0x10, 0x40, 0x08, 0x71, 0xe8, 0x6b, 0x01, 0x22, +0xc1, 0x68, 0xd2, 0x03, 0x91, 0x43, 0xc1, 0x60, 0x26, 0x98, 0x05, 0x21, 0x46, 0x71, 0xce, 0x48, +0x41, 0x73, 0xb4, 0x30, 0x25, 0x90, 0x05, 0xf0, 0x68, 0xeb, 0xcb, 0x48, 0x06, 0x22, 0x21, 0x00, +0xcb, 0x30, 0x04, 0xf0, 0xf6, 0xec, 0xc8, 0x48, 0xe0, 0x30, 0x24, 0x90, 0xa1, 0x79, 0xc1, 0x74, +0xe1, 0x79, 0x01, 0x75, 0x24, 0x98, 0xa1, 0x7a, 0x81, 0x75, 0xe1, 0x7a, 0xc1, 0x75, 0x21, 0x7b, +0x24, 0x98, 0xc1, 0x4c, 0x01, 0x76, 0x24, 0x98, 0x21, 0x00, 0x86, 0x76, 0x2a, 0x98, 0xd1, 0x31, +0x0d, 0x38, 0xe0, 0x34, 0x23, 0x91, 0x4c, 0xe1, 0x20, 0x9e, 0x00, 0x1f, 0x21, 0x90, 0xf0, 0x78, +0xb1, 0x78, 0x02, 0x02, 0x21, 0x98, 0x0a, 0x43, 0xd4, 0x47, 0xc9, 0xad, 0x01, 0x00, 0x00, 0x00, +0x80, 0x90, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xb9, 0x68, 0x18, 0x62, 0x82, 0x42, 0x7e, 0xd8, +0x0f, 0x92, 0x70, 0x78, 0x31, 0x78, 0x00, 0x02, 0x08, 0x43, 0xdd, 0x28, 0x78, 0xd0, 0x12, 0xdc, +0x2d, 0x28, 0x76, 0xd0, 0x08, 0xdc, 0x00, 0x28, 0x32, 0xd0, 0x01, 0x28, 0x3a, 0xd0, 0x03, 0x28, +0x01, 0xd1, 0x30, 0x79, 0x60, 0x76, 0x26, 0xe1, 0x30, 0x28, 0x73, 0xd0, 0x48, 0x28, 0x01, 0xd0, +0x7f, 0x28, 0xf8, 0xd1, 0x1b, 0xe1, 0xff, 0x23, 0x4b, 0x33, 0xc1, 0x1a, 0x98, 0x42, 0x7e, 0xd0, +0x0c, 0xdc, 0xff, 0x38, 0x80, 0x1e, 0x7b, 0xd0, 0x09, 0x28, 0x14, 0xd0, 0x12, 0x28, 0x2d, 0xd0, +0x1e, 0x28, 0xe8, 0xd1, 0xa1, 0x49, 0x30, 0x79, 0x48, 0x73, 0x0c, 0xe1, 0x03, 0x29, 0x70, 0xd0, +0x05, 0x29, 0x6f, 0xd0, 0x14, 0x29, 0xde, 0xd1, 0x26, 0x99, 0x01, 0x20, 0x48, 0x71, 0xf0, 0x78, +0xb1, 0x78, 0x02, 0x02, 0x0a, 0x43, 0x25, 0x98, 0x31, 0x1d, 0x05, 0xf0, 0xfc, 0xeb, 0xfa, 0xe0, +0x20, 0x20, 0x20, 0x2a, 0x00, 0xd8, 0x10, 0x00, 0x02, 0x06, 0x12, 0x0e, 0x62, 0x74, 0x23, 0x98, +0x31, 0x1d, 0x08, 0xe0, 0x0e, 0x20, 0x0e, 0x2a, 0x00, 0xd2, 0x10, 0x00, 0x02, 0x06, 0x12, 0x0e, +0xaa, 0x72, 0x27, 0x98, 0x31, 0x1d, 0x04, 0xf0, 0x7e, 0xec, 0xe4, 0xe0, 0x31, 0x00, 0x0c, 0x31, +0x08, 0x22, 0x68, 0x46, 0x22, 0x91, 0x04, 0xf0, 0x76, 0xec, 0x01, 0x99, 0x00, 0x98, 0x00, 0x27, +0x79, 0x40, 0x78, 0x40, 0x08, 0x43, 0xae, 0xd0, 0x08, 0x22, 0x31, 0x1d, 0x02, 0xa8, 0x04, 0xf0, +0x6a, 0xec, 0x03, 0x99, 0x02, 0x98, 0x79, 0x40, 0x08, 0x43, 0xa4, 0xd0, 0x7f, 0x48, 0x08, 0x22, +0x31, 0x1d, 0x90, 0x30, 0x04, 0xf0, 0x5e, 0xec, 0x7c, 0x48, 0x22, 0x99, 0x08, 0x22, 0x98, 0x30, +0x04, 0xf0, 0x58, 0xec, 0x79, 0x4e, 0x80, 0x36, 0x73, 0x69, 0x32, 0x69, 0x03, 0xe0, 0xc5, 0xe0, +0x5e, 0xe0, 0xa1, 0xe0, 0x06, 0xe0, 0xb0, 0x69, 0xf1, 0x69, 0x80, 0x1a, 0x99, 0x41, 0x71, 0x62, +0x30, 0x62, 0xb0, 0xe0, 0x17, 0x00, 0xf2, 0x70, 0x00, 0x22, 0x05, 0x20, 0x04, 0xa9, 0x01, 0xab, +0x07, 0xc3, 0x05, 0xaa, 0x00, 0x92, 0xb0, 0x1c, 0x0c, 0xaa, 0x0a, 0xa9, 0x0b, 0xab, 0x05, 0xf0, +0xae, 0xeb, 0x38, 0x0a, 0xb7, 0x70, 0xf0, 0x70, 0x26, 0x99, 0x01, 0x20, 0x03, 0xe0, 0x7b, 0xe0, +0x32, 0xe0, 0x92, 0xe0, 0x1c, 0xe1, 0x08, 0x71, 0x25, 0x98, 0x31, 0x00, 0x05, 0xf0, 0xa2, 0xea, +0x0e, 0x99, 0x0b, 0x20, 0x80, 0x01, 0x08, 0x18, 0x01, 0x69, 0x6b, 0x46, 0x80, 0x31, 0x0a, 0x79, +0x1b, 0x7c, 0x52, 0x08, 0x52, 0x00, 0xdb, 0x09, 0x1a, 0x43, 0x0a, 0x71, 0xd1, 0x07, 0xa2, 0x7c, +0xfb, 0x23, 0x49, 0x0f, 0x1a, 0x40, 0x0a, 0x43, 0xa2, 0x74, 0x00, 0x69, 0xfd, 0x22, 0x80, 0x30, +0x01, 0x79, 0x6b, 0x46, 0x11, 0x40, 0x1a, 0x7c, 0x52, 0x06, 0xd2, 0x17, 0x52, 0x1c, 0xd2, 0x07, +0x92, 0x0f, 0x11, 0x43, 0x01, 0x71, 0x88, 0x07, 0xa1, 0x7c, 0xc0, 0x0f, 0xf7, 0x22, 0xc0, 0x00, +0x11, 0x40, 0x01, 0x43, 0xa1, 0x74, 0x66, 0xe0, 0x20, 0x98, 0x00, 0x22, 0x1e, 0xa9, 0x05, 0xf0, +0x72, 0xeb, 0x18, 0xab, 0x58, 0x7e, 0x60, 0x76, 0x24, 0x98, 0x19, 0x7e, 0x81, 0x76, 0x5a, 0xe0, +0x30, 0x1d, 0x05, 0xf0, 0x6c, 0xeb, 0x01, 0x28, 0x2d, 0xd1, 0x0e, 0x99, 0x0b, 0x20, 0x80, 0x01, +0x0f, 0x18, 0x78, 0x69, 0x00, 0x28, 0x05, 0xd1, 0x0e, 0x98, 0x01, 0x21, 0x05, 0xf0, 0x62, 0xeb, +0x00, 0x28, 0x20, 0xd0, 0x78, 0x69, 0xdd, 0x21, 0x89, 0x00, 0x40, 0x18, 0x09, 0x21, 0x04, 0xf0, +0x16, 0xed, 0x70, 0x78, 0x31, 0x78, 0x00, 0x02, 0x08, 0x43, 0x7a, 0x69, 0x1b, 0x21, 0x49, 0x01, +0x52, 0x18, 0x10, 0x75, 0xf0, 0x78, 0xb2, 0x78, 0x00, 0x02, 0x10, 0x43, 0x7a, 0x69, 0x51, 0x18, +0x48, 0x75, 0xf0, 0x78, 0xb1, 0x78, 0x02, 0x02, 0x0a, 0x43, 0x33, 0x49, 0x78, 0x69, 0x40, 0x18, +0x31, 0x1d, 0x04, 0xf0, 0xc0, 0xeb, 0x30, 0x1d, 0x05, 0xf0, 0x38, 0xea, 0x03, 0x28, 0x22, 0xd1, +0x26, 0x99, 0x01, 0x20, 0x08, 0x71, 0x1a, 0xe0, 0x1a, 0x20, 0xb0, 0x70, 0x00, 0x20, 0xf0, 0x70, +0x2d, 0x20, 0x30, 0x70, 0x00, 0x20, 0x70, 0x70, 0x25, 0x49, 0x2d, 0x20, 0x1c, 0x39, 0x08, 0x77, +0xf0, 0x78, 0xb2, 0x78, 0x00, 0x02, 0x10, 0x43, 0x48, 0x77, 0xf0, 0x78, 0xb1, 0x78, 0x02, 0x02, +0x1f, 0x48, 0x0a, 0x43, 0x31, 0x1d, 0x80, 0x1c, 0x1d, 0xe7, 0x48, 0x20, 0x89, 0xe0, 0x25, 0x98, +0x31, 0x00, 0x05, 0xf0, 0x10, 0xea, 0x0f, 0x99, 0x21, 0x98, 0x0f, 0x9a, 0x40, 0x1a, 0x20, 0x99, +0x89, 0x18, 0x09, 0x1d, 0x20, 0x91, 0x04, 0x28, 0x00, 0xd3, 0xaf, 0xe6, 0x20, 0x7d, 0xc1, 0x06, +0x01, 0xd4, 0xc0, 0x07, 0x19, 0xd0, 0x21, 0x20, 0x6b, 0x46, 0x18, 0x73, 0x02, 0x20, 0x58, 0x73, +0xa0, 0x7e, 0x81, 0x07, 0x60, 0x7e, 0x89, 0x0f, 0x04, 0xf0, 0x78, 0xee, 0x6b, 0x46, 0x98, 0x73, +0xa0, 0x7e, 0x81, 0x07, 0x60, 0x7e, 0x89, 0x0f, 0x04, 0xf0, 0x74, 0xee, 0x6b, 0x46, 0xd8, 0x73, +0x25, 0x98, 0x04, 0x22, 0x03, 0xa9, 0x05, 0xf0, 0xd6, 0xea, 0x0e, 0x98, 0x0b, 0x21, 0x89, 0x01, +0x40, 0x18, 0x40, 0x69, 0x00, 0x28, 0x10, 0xd0, 0xdd, 0x21, 0x07, 0xe0, 0xa0, 0x60, 0x02, 0xc0, +0xd8, 0x56, 0x02, 0xc0, 0xe6, 0x1c, 0x01, 0xc0, 0x76, 0x03, 0x00, 0x00, 0xf8, 0x4a, 0x89, 0x00, +0x41, 0x18, 0x80, 0x18, 0x09, 0x22, 0x04, 0xf0, 0x56, 0xeb, 0x38, 0x21, 0x10, 0xa8, 0x04, 0xf0, +0x8e, 0xec, 0xe8, 0x6b, 0xf3, 0x49, 0x10, 0x91, 0xf3, 0x49, 0xf4, 0x4e, 0x00, 0x27, 0x1c, 0x90, +0x11, 0x91, 0x37, 0x60, 0xc0, 0x68, 0xc0, 0x04, 0x18, 0xd4, 0x0d, 0x98, 0x62, 0x7c, 0x23, 0x99, +0x80, 0x1d, 0x04, 0xf0, 0x30, 0xef, 0x00, 0x28, 0x12, 0xd1, 0x05, 0xf0, 0x18, 0xe9, 0x32, 0x00, +0xd3, 0x6a, 0x92, 0x6a, 0x80, 0x1a, 0x99, 0x41, 0x7d, 0x22, 0x3b, 0x00, 0xd2, 0x00, 0x04, 0xf0, +0xfa, 0xed, 0x31, 0x00, 0x80, 0x39, 0x09, 0x6a, 0x81, 0x42, 0x01, 0xd3, 0x01, 0x20, 0x30, 0x60, +0xe8, 0x6b, 0x05, 0xf0, 0xac, 0xea, 0xe8, 0x6b, 0xfd, 0xf7, 0x80, 0xfa, 0x60, 0x7e, 0x18, 0xab, +0x18, 0x72, 0xa0, 0x7e, 0x81, 0x07, 0x89, 0x0f, 0x00, 0x07, 0x80, 0x0f, 0x59, 0x72, 0x98, 0x72, +0xdf, 0x72, 0xe8, 0x6b, 0xc0, 0x68, 0xc0, 0x04, 0xd9, 0x48, 0x06, 0xd5, 0x00, 0x69, 0x05, 0xe0, +0x7f, 0x20, 0x30, 0x70, 0x00, 0x0a, 0x70, 0x70, 0x71, 0xe7, 0x40, 0x69, 0x7d, 0x23, 0xdb, 0x00, +0x58, 0x43, 0x18, 0x90, 0x04, 0xf0, 0x72, 0xef, 0x00, 0x28, 0x0b, 0xd1, 0xa0, 0x7e, 0x18, 0xab, +0x80, 0x06, 0x84, 0x0f, 0x9a, 0x7a, 0x59, 0x7a, 0x18, 0x7a, 0x23, 0x00, 0xfd, 0xf7, 0x5c, 0xfe, +0x00, 0x28, 0x04, 0xd0, 0x18, 0xab, 0x18, 0x7b, 0x40, 0x08, 0x40, 0x00, 0x03, 0xe0, 0x18, 0xab, +0x18, 0x7b, 0x01, 0x21, 0x08, 0x43, 0x18, 0xab, 0x18, 0x73, 0xb7, 0x60, 0x77, 0x60, 0xc5, 0x49, +0x18, 0x98, 0x40, 0x18, 0x17, 0x90, 0x18, 0x7b, 0x10, 0x21, 0x08, 0x43, 0x18, 0x73, 0x10, 0xa8, +0x16, 0x97, 0x04, 0xf0, 0x88, 0xef, 0xbe, 0x49, 0x00, 0x28, 0x88, 0x60, 0x00, 0xd0, 0x01, 0x20, +0x2b, 0xb0, 0xf0, 0xbd, 0xf7, 0xb5, 0x06, 0x00, 0x00, 0xf0, 0x55, 0xe1, 0x01, 0x00, 0x00, 0x00, +0x7c, 0x94, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x0b, 0x76, 0x12, 0xab, 0xb9, 0x4d, 0x28, 0x78, +0x00, 0x28, 0x01, 0xd0, 0x00, 0x20, 0xfe, 0xbd, 0xb5, 0x4c, 0x00, 0x20, 0x40, 0x34, 0xe6, 0x63, +0x01, 0x21, 0x68, 0x71, 0xb2, 0x4f, 0x29, 0x70, 0xf8, 0x60, 0x68, 0x70, 0x28, 0x73, 0xe8, 0x70, +0x20, 0x00, 0xb2, 0x49, 0x52, 0x22, 0x40, 0x30, 0x04, 0xf0, 0xbe, 0xea, 0x02, 0x99, 0x01, 0x98, +0xff, 0xf7, 0x73, 0xfd, 0x00, 0x28, 0x10, 0xd1, 0x21, 0x00, 0xac, 0x48, 0x00, 0x26, 0x52, 0x22, +0x40, 0x31, 0x04, 0xf0, 0xb2, 0xea, 0xe0, 0x6b, 0xfe, 0xf7, 0xaf, 0xf8, 0x20, 0x00, 0x0c, 0x38, +0x05, 0xf0, 0x06, 0xe9, 0x00, 0x20, 0x28, 0x70, 0x19, 0xe0, 0x38, 0x68, 0x00, 0x28, 0x10, 0xd0, +0x9f, 0x49, 0xe0, 0x6b, 0x4b, 0x31, 0x0f, 0x00, 0x04, 0xf0, 0x36, 0xef, 0x00, 0x28, 0x08, 0xd1, +0x01, 0x20, 0x68, 0x71, 0x30, 0x00, 0xff, 0x30, 0x06, 0x22, 0x39, 0x00, 0x4a, 0x30, 0x04, 0xf0, +0x94, 0xea, 0xe0, 0x6b, 0x03, 0x21, 0xff, 0x30, 0x41, 0x30, 0x01, 0x26, 0x01, 0x72, 0x30, 0x00, +0xfe, 0xbd, 0x93, 0x4a, 0x10, 0xb5, 0x20, 0x3a, 0xd1, 0x83, 0x03, 0x23, 0x60, 0x3a, 0x05, 0x28, +0x13, 0x73, 0x02, 0xd1, 0xff, 0xf7, 0x14, 0xf9, 0x10, 0xbd, 0x07, 0x28, 0x0b, 0xd1, 0x0d, 0x29, +0x09, 0xd1, 0x51, 0x7b, 0x05, 0x29, 0x06, 0xd1, 0x91, 0x7b, 0x00, 0x29, 0x03, 0xd1, 0x01, 0x20, +0xff, 0xf7, 0xd2, 0xf8, 0x10, 0xbd, 0xff, 0xf7, 0x67, 0xfa, 0x10, 0xbd, 0x85, 0x4b, 0x06, 0x22, +0x10, 0xb5, 0x1a, 0x73, 0x1a, 0x00, 0x60, 0x32, 0xd1, 0x83, 0xff, 0xf7, 0x5d, 0xfa, 0x10, 0xbd, +0x70, 0xb5, 0x04, 0x00, 0x7e, 0x48, 0x20, 0x38, 0x00, 0x7f, 0x00, 0x28, 0x1a, 0xd1, 0x60, 0x69, +0x05, 0xf0, 0xe2, 0xe9, 0x7a, 0x4d, 0xe8, 0x68, 0x00, 0x28, 0x02, 0xd0, 0x60, 0x69, 0xff, 0xf7, +0xaa, 0xf9, 0x00, 0x20, 0xe8, 0x60, 0x60, 0x69, 0x00, 0x21, 0x00, 0xf0, 0xd8, 0xf8, 0x74, 0x48, +0x40, 0x30, 0xc0, 0x6b, 0xff, 0x30, 0x41, 0x30, 0x00, 0x7a, 0x00, 0x28, 0x02, 0xd1, 0x12, 0x20, +0x04, 0xf0, 0xce, 0xee, 0x60, 0x69, 0x04, 0xf0, 0xdc, 0xeb, 0x00, 0x20, 0x70, 0xbd, 0x70, 0x48, +0x00, 0x88, 0x70, 0x47, 0x6a, 0x49, 0xf8, 0xb5, 0x20, 0x39, 0x04, 0x00, 0x08, 0x7f, 0x0e, 0x00, +0x54, 0x36, 0x00, 0x28, 0x01, 0xd0, 0x02, 0x28, 0x0a, 0xd1, 0x30, 0x00, 0x69, 0x46, 0x05, 0xf0, +0xb0, 0xe8, 0x05, 0x00, 0x02, 0x00, 0x00, 0x99, 0x20, 0x00, 0x04, 0xf0, 0x26, 0xea, 0x1e, 0xe0, +0x64, 0x48, 0x20, 0x71, 0x02, 0x0a, 0x62, 0x71, 0x0b, 0x7f, 0x06, 0x25, 0xdb, 0x1e, 0xc2, 0x1e, +0x04, 0xf0, 0xba, 0xee, 0x08, 0x0d, 0x0d, 0x0a, 0x1a, 0x05, 0x10, 0x08, 0x10, 0x0a, 0x02, 0x20, +0xc0, 0x43, 0x01, 0xe0, 0x01, 0x20, 0xc0, 0x43, 0x20, 0x80, 0xc8, 0x8b, 0x04, 0xe0, 0x01, 0x20, +0x22, 0x80, 0x01, 0xe0, 0x02, 0x20, 0x22, 0x80, 0xa0, 0x70, 0x00, 0x0a, 0xe0, 0x70, 0x30, 0x00, +0x05, 0xf0, 0x5e, 0xe8, 0x28, 0x00, 0xf8, 0xbd, 0x04, 0x20, 0xc0, 0x43, 0xec, 0xe7, 0x70, 0xb5, +0x04, 0x00, 0x00, 0x29, 0x35, 0xd0, 0x20, 0x00, 0x05, 0xf0, 0x0a, 0xe9, 0x21, 0x00, 0x06, 0x00, +0x06, 0x22, 0x7e, 0x31, 0x04, 0xf0, 0xf0, 0xe9, 0x0b, 0x20, 0x80, 0x01, 0x25, 0x18, 0x29, 0x69, +0x20, 0x22, 0x2c, 0x31, 0xb0, 0x1d, 0x04, 0xf0, 0xe8, 0xe9, 0x28, 0x69, 0xfb, 0x22, 0x20, 0x30, +0xc1, 0x7a, 0x30, 0x00, 0x20, 0x30, 0x81, 0x71, 0xc1, 0x79, 0x11, 0x40, 0x2a, 0x69, 0x80, 0x32, +0x12, 0x79, 0xd2, 0x07, 0x52, 0x0f, 0x11, 0x43, 0xf7, 0x22, 0xc1, 0x71, 0x11, 0x40, 0x2a, 0x69, +0x80, 0x32, 0x12, 0x79, 0x92, 0x07, 0xd2, 0x0f, 0xd2, 0x00, 0x11, 0x43, 0xc1, 0x71, 0xe1, 0x68, +0xc9, 0x04, 0xc9, 0x0f, 0x01, 0x72, 0xe0, 0x68, 0x01, 0x21, 0x49, 0x04, 0x88, 0x43, 0xe0, 0x60, +0x70, 0xbd, 0x20, 0x00, 0x00, 0xf0, 0x17, 0xf8, 0x70, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x10, 0xd0, +0x2c, 0x48, 0x40, 0x79, 0x00, 0x28, 0x0c, 0xd0, 0x29, 0x48, 0x40, 0x30, 0xc0, 0x6b, 0x05, 0xf0, +0xc8, 0xe8, 0x06, 0x22, 0x21, 0x00, 0x04, 0xf0, 0xa0, 0xed, 0x00, 0x28, 0x01, 0xd1, 0x01, 0x20, +0x10, 0xbd, 0x00, 0x20, 0x10, 0xbd, 0x00, 0x28, 0x10, 0xb5, 0x04, 0xd0, 0x05, 0xf0, 0xb8, 0xe8, +0x29, 0x21, 0x04, 0xf0, 0x96, 0xe9, 0x10, 0xbd, 0x1e, 0x48, 0x70, 0xb5, 0x00, 0x25, 0x04, 0x00, +0xc0, 0x34, 0x05, 0x70, 0xe0, 0x6b, 0xfd, 0xf7, 0x29, 0xf8, 0x00, 0x28, 0x0a, 0xd0, 0x01, 0x89, +0x1d, 0x4a, 0x09, 0x18, 0x0a, 0x70, 0x12, 0x0a, 0x4a, 0x70, 0x2a, 0x0a, 0x8d, 0x71, 0xca, 0x71, +0xfd, 0xf7, 0x88, 0xf8, 0x12, 0x48, 0x20, 0x38, 0x00, 0x7f, 0x00, 0x28, 0x0e, 0xd1, 0x10, 0x48, +0x10, 0x49, 0x42, 0x68, 0xe0, 0x6b, 0x28, 0x31, 0x00, 0x23, 0x05, 0xf0, 0x0a, 0xe9, 0xe0, 0x6b, +0x3f, 0x21, 0x09, 0x5c, 0x49, 0x07, 0xc9, 0x0f, 0x04, 0xf0, 0xa6, 0xef, 0x70, 0xbd, 0x00, 0x28, +0x10, 0xb5, 0x05, 0xd0, 0x0d, 0x48, 0x0a, 0x00, 0x00, 0x68, 0x48, 0x21, 0x04, 0xf0, 0x7c, 0xeb, +0x10, 0xbd, 0x00, 0x00, 0x7d, 0x03, 0x00, 0x00, 0xab, 0x8c, 0x00, 0xc0, 0xef, 0x8d, 0x00, 0xc0, +0x20, 0x61, 0x02, 0xc0, 0xa0, 0x60, 0x02, 0xc0, 0x10, 0x27, 0x00, 0x00, 0x86, 0x55, 0x00, 0x04, +0xe6, 0x1c, 0x01, 0xc0, 0xff, 0xff, 0x00, 0x00, 0x12, 0x80, 0x00, 0x00, 0x18, 0xee, 0x00, 0xc0, +0xf8, 0xb5, 0xff, 0x4d, 0x28, 0x69, 0x04, 0xf0, 0x04, 0xea, 0x28, 0x69, 0x05, 0x26, 0x01, 0x7a, +0xf6, 0x01, 0x03, 0x29, 0x10, 0xd1, 0x41, 0x7a, 0x01, 0x29, 0x0d, 0xd1, 0x17, 0x21, 0x49, 0x01, +0x41, 0x18, 0x09, 0x78, 0x03, 0x29, 0x07, 0xd1, 0x04, 0xf0, 0xe6, 0xee, 0x00, 0x28, 0x03, 0xd0, +0x68, 0x68, 0x80, 0x19, 0x40, 0x69, 0x06, 0xe0, 0x69, 0x68, 0x8a, 0x19, 0x10, 0x7c, 0x53, 0x7c, +0x98, 0x42, 0x04, 0xd3, 0x50, 0x69, 0x06, 0x21, 0x04, 0xf0, 0xca, 0xed, 0xf8, 0xbd, 0x00, 0x22, +0x2a, 0x72, 0x6a, 0x72, 0xea, 0x72, 0xc3, 0x00, 0xaa, 0x72, 0x18, 0x1a, 0x2a, 0x73, 0xc0, 0x1d, +0x6a, 0x73, 0x0c, 0x18, 0xaa, 0x73, 0x20, 0x78, 0x00, 0x90, 0xa0, 0x78, 0x61, 0x78, 0xc2, 0x07, +0x00, 0x98, 0xd2, 0x0f, 0x05, 0xf0, 0xa8, 0xe8, 0x07, 0x00, 0x05, 0xf0, 0xaa, 0xe8, 0x05, 0xf0, +0xac, 0xe8, 0x00, 0x2f, 0xd4, 0xd0, 0xa0, 0x79, 0x61, 0x79, 0x00, 0x02, 0x08, 0x43, 0x7d, 0x21, +0xc9, 0x00, 0x41, 0x43, 0x68, 0x68, 0x80, 0x19, 0x40, 0x69, 0x05, 0xf0, 0xa2, 0xe8, 0x03, 0x28, +0xc6, 0xd1, 0xa0, 0x78, 0xc0, 0x07, 0x02, 0xd0, 0x01, 0x20, 0xa8, 0x72, 0xf8, 0xbd, 0x00, 0xf0, +0x38, 0xf8, 0x00, 0x06, 0x00, 0x0e, 0xa8, 0x72, 0xf8, 0xd1, 0x68, 0x7a, 0x00, 0x28, 0xb7, 0xd0, +0xf8, 0xbd, 0x70, 0xb5, 0x00, 0xf0, 0xfd, 0xfb, 0xcd, 0x4d, 0x69, 0x7a, 0x00, 0x29, 0x23, 0xd0, +0x28, 0x7a, 0x88, 0x42, 0x20, 0xd2, 0x40, 0x1c, 0x28, 0x72, 0xa8, 0x7a, 0x00, 0x28, 0x0e, 0xd1, +0x08, 0xe0, 0x00, 0xf0, 0x1e, 0xf8, 0x00, 0x06, 0x00, 0x0e, 0xa8, 0x72, 0x07, 0xd1, 0x68, 0x7a, +0xa0, 0x42, 0x04, 0xd0, 0x6c, 0x7a, 0x28, 0x7a, 0xdf, 0xec, 0x28, 0x1c, 0x01, 0x00, 0x00, 0x00, +0x78, 0x98, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x2b, 0x95, 0xba, 0x21, 0x20, 0x1a, 0x03, 0x28, +0xf1, 0xdb, 0x00, 0xf0, 0xf0, 0xfb, 0x00, 0x28, 0x08, 0xd0, 0x69, 0x68, 0x05, 0x20, 0xc0, 0x01, +0x08, 0x18, 0x01, 0x7c, 0x49, 0x1c, 0x01, 0x74, 0xff, 0xf7, 0x74, 0xff, 0x00, 0xf0, 0xdc, 0xfb, +0x70, 0xbd, 0xb9, 0x48, 0x70, 0x47, 0xf0, 0xb5, 0x00, 0x20, 0x85, 0xb0, 0xb5, 0x4d, 0x03, 0x90, +0x6a, 0x68, 0x69, 0x21, 0x8e, 0x5c, 0x05, 0x21, 0xab, 0x7b, 0xc9, 0x01, 0x51, 0x18, 0xb3, 0x42, +0x07, 0xd2, 0x6c, 0x7b, 0x0f, 0x89, 0xbc, 0x42, 0x03, 0xd1, 0x5b, 0x1c, 0xab, 0x73, 0x00, 0x23, +0x6b, 0x73, 0x53, 0x23, 0xdb, 0x00, 0xd7, 0x18, 0x09, 0xe0, 0x63, 0x01, 0x1b, 0x19, 0x6a, 0x33, +0xd3, 0x5c, 0x00, 0x2b, 0x14, 0xd0, 0xfe, 0x2b, 0x12, 0xd0, 0x64, 0x1c, 0xac, 0x73, 0xac, 0x7b, +0xb4, 0x42, 0xf2, 0xd3, 0xa3, 0x4a, 0x6b, 0x7b, 0x0c, 0x89, 0x12, 0x7b, 0xa3, 0x42, 0x22, 0xd1, +0x88, 0x7a, 0x00, 0x28, 0x3a, 0xd0, 0x00, 0x2a, 0x38, 0xd1, 0x01, 0x20, 0x28, 0x73, 0x35, 0xe0, +0xac, 0x7b, 0x89, 0x69, 0x63, 0x01, 0x1b, 0x19, 0x6b, 0x33, 0xd4, 0x18, 0x00, 0x29, 0x03, 0xd0, +0x38, 0x00, 0x03, 0xa9, 0x04, 0xf0, 0x06, 0xef, 0x98, 0x4a, 0x13, 0x21, 0x6b, 0x46, 0x07, 0xc3, +0x22, 0x00, 0x28, 0x69, 0x03, 0x9b, 0x19, 0xe0, 0x68, 0x7b, 0x40, 0x1c, 0x68, 0x73, 0x68, 0x7a, +0x40, 0x1c, 0x68, 0x72, 0x17, 0xe0, 0x8b, 0x7a, 0x00, 0x2b, 0x17, 0xd0, 0x00, 0x2a, 0x15, 0xd1, +0x89, 0x69, 0x00, 0x29, 0x03, 0xd0, 0x38, 0x00, 0x03, 0xa9, 0x04, 0xf0, 0xec, 0xee, 0x8b, 0x4a, +0x13, 0x21, 0x6b, 0x46, 0x07, 0xc3, 0x00, 0x22, 0x28, 0x69, 0x03, 0x9b, 0x00, 0x21, 0x04, 0xf0, +0xfe, 0xef, 0x00, 0x28, 0xe0, 0xd0, 0x00, 0x20, 0x05, 0xb0, 0xf0, 0xbd, 0x01, 0x20, 0xfb, 0xe7, +0xfe, 0xb5, 0x15, 0x00, 0x00, 0x24, 0x50, 0x69, 0x00, 0x2a, 0x46, 0xd0, 0x29, 0x89, 0xb1, 0x26, +0x49, 0x19, 0x8a, 0x78, 0x00, 0x23, 0x12, 0x09, 0xb6, 0x00, 0x02, 0x2a, 0x1f, 0xd0, 0x05, 0x2a, +0x12, 0xd0, 0x08, 0x2a, 0x10, 0xd0, 0x0d, 0x2a, 0x36, 0xd1, 0x82, 0x19, 0x28, 0x00, 0x02, 0xa9, +0x02, 0x93, 0x04, 0xf0, 0xf4, 0xec, 0x00, 0x28, 0x2f, 0xd0, 0x02, 0x9a, 0x08, 0x99, 0x28, 0x00, +0x04, 0xf0, 0xf4, 0xec, 0x01, 0x24, 0x28, 0xe0, 0x6e, 0x4a, 0x53, 0x68, 0x05, 0x22, 0xd2, 0x01, +0x9a, 0x18, 0x12, 0x7c, 0x00, 0x92, 0x08, 0x9a, 0x04, 0xf0, 0xcc, 0xef, 0xf2, 0xe7, 0x00, 0x27, +0x03, 0x20, 0x02, 0x93, 0x04, 0xf0, 0x32, 0xe8, 0x04, 0x00, 0x02, 0xd1, 0x60, 0x7a, 0x00, 0x28, +0x12, 0xd0, 0x20, 0x00, 0x04, 0xf0, 0xce, 0xe8, 0x00, 0x28, 0x00, 0xd0, 0x6f, 0x46, 0x3b, 0x00, +0xa2, 0x19, 0x28, 0x00, 0x02, 0xa9, 0x04, 0xf0, 0xca, 0xec, 0x00, 0x28, 0x04, 0xd0, 0x02, 0x9a, +0x08, 0x99, 0x28, 0x00, 0x04, 0xf0, 0xca, 0xec, 0x00, 0x24, 0x20, 0x00, 0xfe, 0xbd, 0x7c, 0xb5, +0x05, 0x20, 0xc0, 0x01, 0x57, 0x4e, 0x15, 0x00, 0x14, 0x18, 0x0b, 0x00, 0x04, 0xf0, 0x9e, 0xec, +0x0c, 0x50, 0x07, 0x07, 0x13, 0x1e, 0x50, 0x41, 0x50, 0x50, 0x0e, 0x50, 0x41, 0x50, 0xa0, 0x6a, +0x75, 0x60, 0x29, 0x00, 0x30, 0x61, 0x04, 0xf0, 0x9a, 0xef, 0x41, 0xe0, 0x00, 0xf0, 0xfb, 0xfa, +0x00, 0xf0, 0x20, 0xfb, 0x07, 0xe0, 0x00, 0xf0, 0xf6, 0xfa, 0xa0, 0x6a, 0x75, 0x60, 0x30, 0x61, +0x00, 0xf0, 0x10, 0xfb, 0x1c, 0xe0, 0x00, 0xf0, 0xf7, 0xfa, 0x31, 0xe0, 0x00, 0xf0, 0xeb, 0xfa, +0x01, 0x20, 0xf0, 0x72, 0x04, 0xf0, 0x6e, 0xef, 0x05, 0x00, 0x69, 0x46, 0x01, 0xa8, 0x04, 0xf0, +0x82, 0xef, 0x28, 0x02, 0x00, 0x99, 0x40, 0x1b, 0x03, 0xf0, 0xec, 0xef, 0x61, 0x6a, 0xe0, 0x31, +0x88, 0x76, 0x00, 0xf0, 0xe8, 0xfa, 0x00, 0x28, 0x05, 0xd0, 0x20, 0x7c, 0x40, 0x1c, 0x20, 0x74, +0xff, 0xf7, 0x70, 0xfe, 0xdf, 0xe7, 0x70, 0x7a, 0x30, 0x72, 0x10, 0x20, 0x04, 0xf0, 0x1e, 0xec, +0xd9, 0xe7, 0x00, 0x20, 0x60, 0x61, 0x53, 0x20, 0xc0, 0x00, 0x28, 0x18, 0x04, 0xf0, 0x12, 0xee, +0x64, 0x6a, 0x20, 0x00, 0xf6, 0x30, 0x04, 0xf0, 0x0a, 0xe9, 0x01, 0x00, 0x20, 0x00, 0x88, 0x47, +0x03, 0x20, 0x7c, 0xbd, 0x70, 0xb5, 0x06, 0x00, 0x2a, 0x48, 0x00, 0x69, 0xfc, 0xf7, 0x38, 0xfe, +0x05, 0x00, 0x10, 0xd0, 0x28, 0x89, 0x44, 0x19, 0x29, 0x48, 0x20, 0x70, 0x00, 0x0a, 0x21, 0x00, +0x60, 0x70, 0x09, 0x31, 0x30, 0x00, 0x04, 0xf0, 0x26, 0xe9, 0x00, 0x20, 0xa0, 0x71, 0xe0, 0x71, +0x28, 0x00, 0xfc, 0xf7, 0x91, 0xfe, 0x70, 0xbd, 0x10, 0xb5, 0x04, 0x00, 0x04, 0xf0, 0xe6, 0xe8, +0x00, 0x28, 0x0e, 0xd0, 0x04, 0xf0, 0x1e, 0xe9, 0x21, 0x00, 0x00, 0x20, 0x04, 0xf0, 0x12, 0xe9, +0x21, 0x1d, 0x00, 0x20, 0x04, 0xf0, 0x0e, 0xe9, 0x21, 0x00, 0x0c, 0x31, 0x00, 0x20, 0x04, 0xf0, +0x0a, 0xe9, 0x10, 0xbd, 0xf7, 0xb5, 0x82, 0xb0, 0x04, 0x00, 0x0e, 0x00, 0x03, 0x25, 0x00, 0x29, +0x6b, 0xd0, 0x30, 0x1d, 0x04, 0xf0, 0xca, 0xe8, 0x00, 0x28, 0x66, 0xd0, 0x30, 0x00, 0x08, 0x30, +0x07, 0x00, 0x04, 0xf0, 0xc4, 0xe8, 0x00, 0x28, 0x5f, 0xd0, 0x31, 0x7c, 0x00, 0x29, 0x5c, 0xd0, +0x20, 0x70, 0x00, 0x0a, 0x60, 0x70, 0x30, 0x7c, 0xa0, 0x70, 0x38, 0x00, 0x04, 0xf0, 0xb6, 0xe8, +0x05, 0x00, 0x30, 0x1d, 0x04, 0xf0, 0xb2, 0xe8, 0x01, 0x00, 0x2a, 0x00, 0xe0, 0x1c, 0x03, 0xf0, +0x56, 0xef, 0x07, 0xe0, 0xf4, 0x61, 0x02, 0xc0, 0x43, 0x98, 0x00, 0xc0, 0x9f, 0x98, 0x00, 0xc0, +0x06, 0x80, 0x00, 0x00, 0x38, 0x00, 0x04, 0xf0, 0xa2, 0xe8, 0xc1, 0x1c, 0xff, 0x20, 0x67, 0x18, +0x14, 0x30, 0x38, 0x70, 0x00, 0x0a, 0x78, 0x70, 0xa0, 0x78, 0x09, 0x1d, 0xc0, 0x00, 0x02, 0x0a, +0xb8, 0x70, 0x40, 0x18, 0xfa, 0x70, 0x00, 0x25, 0x01, 0x90, 0x0a, 0xe0, 0x13, 0x20, 0x68, 0x43, +0x08, 0x22, 0x81, 0x19, 0xe8, 0x00, 0xc0, 0x19, 0x16, 0x31, 0x00, 0x1d, 0x03, 0xf0, 0x2e, 0xef, +0x6d, 0x1c, 0xa0, 0x78, 0xa8, 0x42, 0xf1, 0xdc, 0x01, 0x98, 0x27, 0x18, 0xff, 0x20, 0x2b, 0x30, +0x38, 0x70, 0x00, 0x0a, 0x78, 0x70, 0xa0, 0x78, 0x40, 0x00, 0x01, 0x0a, 0xb8, 0x70, 0xf9, 0x70, +0x01, 0x99, 0x09, 0x1d, 0x45, 0x18, 0x00, 0x21, 0x0b, 0xe0, 0x13, 0x22, 0x4a, 0x43, 0x48, 0x00, +0x92, 0x19, 0x13, 0x00, 0xc0, 0x19, 0xd2, 0x7f, 0x1f, 0x33, 0x02, 0x71, 0x5a, 0x78, 0x49, 0x1c, +0x42, 0x71, 0xa0, 0x78, 0x88, 0x42, 0xf0, 0xdc, 0x03, 0xe0, 0x00, 0x20, 0x20, 0x70, 0x60, 0x70, +0xa0, 0x70, 0x04, 0x98, 0x00, 0x28, 0x02, 0xd0, 0x30, 0x00, 0xff, 0xf7, 0x6d, 0xff, 0x28, 0x00, +0xa2, 0xe6, 0xff, 0xb5, 0x87, 0xb0, 0x1c, 0x00, 0x16, 0x00, 0x0f, 0x00, 0x2b, 0x21, 0x09, 0x01, +0x18, 0x00, 0x04, 0xf0, 0x30, 0xe8, 0x00, 0x21, 0x0a, 0x00, 0x02, 0xa8, 0x06, 0xc0, 0x53, 0x20, +0xc0, 0x00, 0x20, 0x18, 0x05, 0x00, 0x04, 0xf0, 0x56, 0xed, 0x05, 0x21, 0xc9, 0x01, 0x01, 0x20, +0x61, 0x18, 0x08, 0x81, 0x07, 0x22, 0x39, 0x00, 0x20, 0x00, 0x03, 0xf0, 0xe0, 0xee, 0xf6, 0x1f, +0x36, 0x04, 0x15, 0x21, 0x36, 0x0c, 0xff, 0x1d, 0x63, 0xaa, 0x4d, 0x19, 0x01, 0x00, 0x00, 0x00, +0x74, 0x9c, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xac, 0xc3, 0xb4, 0x73, 0x49, 0x01, 0x07, 0x98, +0x61, 0x18, 0x08, 0x73, 0x73, 0xe0, 0xf8, 0x78, 0xb9, 0x78, 0x02, 0x02, 0x0a, 0x43, 0x10, 0x1d, +0x00, 0x04, 0x00, 0x0c, 0x06, 0x90, 0x78, 0x78, 0x39, 0x78, 0x00, 0x02, 0xff, 0x23, 0x08, 0x43, +0xdb, 0x1c, 0xc1, 0x1a, 0x98, 0x42, 0x46, 0xd0, 0x19, 0xdc, 0x7f, 0x28, 0x50, 0xd0, 0x06, 0xdc, +0x00, 0x28, 0x1b, 0xd0, 0x01, 0x28, 0x36, 0xd0, 0x2d, 0x28, 0x52, 0xd1, 0x48, 0xe0, 0xdd, 0x28, +0x46, 0xd0, 0xff, 0x38, 0x80, 0x1e, 0x4c, 0xd1, 0x05, 0x90, 0xe1, 0x1d, 0x38, 0x00, 0x05, 0xaa, +0x04, 0xf0, 0x26, 0xee, 0x00, 0x20, 0x04, 0xa9, 0xfd, 0xf7, 0x02, 0xfa, 0x41, 0xe0, 0x21, 0x29, +0x1b, 0xd0, 0x11, 0xdc, 0x08, 0x29, 0x38, 0xd0, 0x10, 0x29, 0x3a, 0xd1, 0x10, 0x22, 0x69, 0x21, +0x00, 0x92, 0x09, 0x5d, 0x4b, 0x01, 0x59, 0x18, 0x0a, 0x19, 0x23, 0x00, 0x6a, 0x32, 0x69, 0x33, +0x39, 0x00, 0x04, 0xf0, 0x46, 0xee, 0x2c, 0xe0, 0x48, 0x29, 0x1b, 0xd0, 0x4d, 0x29, 0x28, 0xd1, +0x7f, 0x21, 0x39, 0x70, 0x09, 0x0a, 0x79, 0x70, 0x1a, 0xe0, 0x06, 0x22, 0x39, 0x1d, 0x60, 0x1c, +0x03, 0xf0, 0x86, 0xee, 0x1d, 0xe0, 0xff, 0x48, 0x39, 0x00, 0x22, 0x18, 0x01, 0x20, 0x0e, 0x23, +0x04, 0xf0, 0x32, 0xee, 0x15, 0xe0, 0x51, 0x20, 0xc0, 0x00, 0x21, 0x18, 0x38, 0x00, 0x04, 0xf0, +0x30, 0xee, 0x0e, 0xe0, 0x1a, 0x21, 0xb9, 0x70, 0x00, 0x21, 0xf9, 0x70, 0x2d, 0x21, 0xe0, 0xe7, +0x39, 0x00, 0x28, 0x00, 0x04, 0xf0, 0xe4, 0xec, 0x03, 0xe0, 0x39, 0x1d, 0x28, 0x00, 0x04, 0xf0, +0xd0, 0xed, 0x06, 0x98, 0x30, 0x1a, 0x06, 0x04, 0x06, 0x98, 0x36, 0x0c, 0x3f, 0x18, 0x00, 0x2e, +0x89, 0xd1, 0x06, 0x22, 0x60, 0x1c, 0x02, 0xa9, 0x04, 0xf0, 0x4a, 0xea, 0x00, 0x28, 0x04, 0xd1, +0xff, 0x22, 0x06, 0x21, 0x60, 0x1c, 0x04, 0xf0, 0x2c, 0xed, 0x01, 0x20, 0x0b, 0xb0, 0xf0, 0xbd, +0xf7, 0xb5, 0x00, 0x20, 0x0d, 0x00, 0x05, 0x21, 0xc9, 0x01, 0x6c, 0x18, 0x60, 0x74, 0x05, 0xe0, +0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x0e, 0x28, 0x60, 0x74, 0x06, 0xd2, 0x60, 0x7c, 0xc1, 0x00, +0x09, 0x1a, 0x49, 0x19, 0x09, 0x7a, 0x00, 0x29, 0xf2, 0xd1, 0x60, 0x7c, 0x00, 0x28, 0x1f, 0xd0, +0x69, 0x20, 0x46, 0x5d, 0x2a, 0x00, 0x6a, 0x32, 0x00, 0x20, 0x01, 0x27, 0x07, 0xe0, 0x41, 0x01, +0x09, 0x18, 0x51, 0x5c, 0x00, 0x29, 0x01, 0xd0, 0xfe, 0x29, 0x04, 0xd1, 0x40, 0x1c, 0xb0, 0x42, +0xf5, 0xdb, 0x00, 0x2e, 0x00, 0xd1, 0xa7, 0x72, 0xce, 0x48, 0x0e, 0x21, 0x28, 0x18, 0x04, 0xf0, +0xa0, 0xeb, 0x00, 0x98, 0xa0, 0x62, 0x02, 0x99, 0x28, 0x00, 0x00, 0xf0, 0x6c, 0xf9, 0x60, 0x61, +0xfe, 0xbd, 0x70, 0xb5, 0x06, 0x00, 0x03, 0xf0, 0x24, 0xee, 0x05, 0x00, 0x00, 0x24, 0x15, 0xe0, +0x68, 0x7a, 0x02, 0x28, 0x0d, 0xd1, 0x28, 0x00, 0x03, 0xf0, 0xae, 0xee, 0x00, 0x28, 0x08, 0xd0, +0x28, 0x00, 0x03, 0xf0, 0x1a, 0xee, 0xff, 0x30, 0xe1, 0x30, 0x00, 0x8a, 0xa0, 0x42, 0x00, 0xd3, +0x04, 0x00, 0x31, 0x00, 0x28, 0x00, 0x03, 0xf0, 0xa4, 0xee, 0x05, 0x00, 0x00, 0x2d, 0xe7, 0xd1, +0x20, 0x00, 0x70, 0xbd, 0xf8, 0xb5, 0x7d, 0x21, 0x05, 0x00, 0x09, 0x01, 0xb6, 0x48, 0x0e, 0x00, +0x00, 0x22, 0x03, 0xf0, 0x76, 0xef, 0x2f, 0x00, 0x04, 0x00, 0x0c, 0x37, 0x00, 0x28, 0x08, 0xd1, +0x00, 0x22, 0xb2, 0x48, 0x11, 0x00, 0x03, 0x23, 0x04, 0xf0, 0x9e, 0xed, 0x04, 0x00, 0x14, 0xd0, +0xaf, 0x4e, 0x10, 0x20, 0x20, 0x73, 0x20, 0x20, 0x20, 0x81, 0x29, 0x00, 0x20, 0x00, 0x03, 0xf0, +0x64, 0xef, 0x20, 0x89, 0x29, 0x1d, 0x00, 0x19, 0x03, 0xf0, 0x5e, 0xef, 0x30, 0x00, 0x39, 0x00, +0x90, 0x38, 0x03, 0xf0, 0x5a, 0xef, 0x20, 0x00, 0xf8, 0xbd, 0x29, 0x1d, 0x00, 0x20, 0x03, 0xf0, +0x54, 0xef, 0x39, 0x00, 0x00, 0x20, 0x03, 0xf0, 0x50, 0xef, 0x00, 0x20, 0xf8, 0xbd, 0xf8, 0xb5, +0x05, 0x00, 0x0c, 0x00, 0x9f, 0x48, 0x17, 0x00, 0xfb, 0x21, 0x03, 0xf0, 0xf6, 0xee, 0x05, 0x20, +0xc0, 0x01, 0x9c, 0x4e, 0x20, 0x18, 0x46, 0x62, 0x30, 0x00, 0x03, 0xf0, 0x0a, 0xef, 0x00, 0x28, +0x07, 0xd1, 0x30, 0x00, 0xff, 0xf7, 0xb6, 0xff, 0x30, 0x1d, 0x03, 0xf0, 0x02, 0xef, 0x00, 0x28, +0x21, 0xd0, 0x94, 0x49, 0x0c, 0x20, 0x70, 0x74, 0xf6, 0x31, 0x38, 0x00, 0x03, 0xf0, 0x2c, 0xef, +0x02, 0x20, 0xff, 0xf7, 0x86, 0xff, 0x06, 0x00, 0x03, 0x20, 0xff, 0xf7, 0x82, 0xff, 0xb0, 0x42, +0x01, 0xd2, 0x30, 0x00, 0x02, 0xe0, 0x03, 0x20, 0xff, 0xf7, 0x7b, 0xff, 0x96, 0x21, 0x40, 0x00, +0x96, 0x28, 0x00, 0xd8, 0x01, 0x00, 0x8a, 0x02, 0x21, 0x00, 0x28, 0x00, 0xff, 0xf7, 0x38, 0xff, +0x00, 0x28, 0x00, 0xd0, 0x01, 0x20, 0xf8, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x08, 0x00, 0x11, 0x00, +0x1a, 0x00, 0x81, 0x4c, 0x05, 0x23, 0xdb, 0x01, 0xe3, 0x18, 0x5b, 0x69, 0x00, 0x26, 0x00, 0x2b, +0x2b, 0xd1, 0x23, 0x00, 0xff, 0xf7, 0x77, 0xfe, 0x00, 0x28, 0x26, 0xd0, 0x7b, 0x48, 0x40, 0x6a, +0x60, 0x30, 0x41, 0x7b, 0x00, 0x29, 0x1a, 0xd0, 0x00, 0x7b, 0x00, 0x28, 0x17, 0xd0, 0x28, 0x7a, +0x00, 0x28, 0x01, 0xd0, 0x01, 0x28, 0x12, 0xd1, 0xe8, 0x68, 0xc0, 0x04, 0x0f, 0xd4, 0x00, 0x20, +0xc1, 0x00, 0x09, 0x1a, 0x09, 0x19, 0x0a, 0x7a, 0x00, 0x2a, 0x08, 0xd0, 0x49, 0x7a, 0x89, 0x06, +0x02, 0xd5, 0x04, 0xf0, 0x16, 0xed, 0x02, 0xe0, 0x40, 0x1c, 0x0e, 0x28, 0xf0, 0xdb, 0x6c, 0x4a, +0x21, 0x00, 0x28, 0x00, 0xff, 0xf7, 0x8b, 0xff, 0x06, 0x00, 0x30, 0x00, 0x70, 0xbd, 0x01, 0x7a, +0x03, 0x29, 0x0e, 0xd1, 0x41, 0x69, 0x80, 0x69, 0x48, 0x30, 0x81, 0x42, 0x09, 0xd1, 0x62, 0x49, +0x14, 0x39, 0x0a, 0x7a, 0x48, 0x7a, 0x82, 0x42, 0x00, 0xd2, 0x08, 0x72, 0x01, 0x20, 0x88, 0x72, +0xc8, 0x72, 0x70, 0x47, 0x01, 0x00, 0x5c, 0x48, 0x10, 0xb5, 0x14, 0x38, 0x00, 0x69, 0xf8, 0xf7, +0x55, 0xfd, 0x10, 0xbd, 0xf7, 0xb5, 0x84, 0xb0, 0x00, 0x20, 0x0f, 0x00, 0x59, 0xa1, 0x09, 0x68, +0x03, 0x91, 0x59, 0xa1, 0x06, 0xc9, 0x01, 0x91, 0x53, 0x4c, 0x4e, 0x49, 0x02, 0x92, 0x65, 0x18, +0x89, 0x1d, 0x66, 0x18, 0x71, 0x69, 0x00, 0x29, 0x25, 0xd1, 0x2b, 0x21, 0x09, 0x01, 0x20, 0x00, +0x03, 0xf0, 0x52, 0xee, 0x02, 0x20, 0x30, 0x81, 0x03, 0x20, 0x20, 0x70, 0x38, 0x78, 0x80, 0x07, +0x05, 0xd1, 0x04, 0x22, 0x28, 0x00, 0x03, 0xa9, 0x03, 0xf0, 0x0a, 0xed, 0x2d, 0x1d, 0x08, 0x22, +0x28, 0x00, 0x01, 0xa9, 0x03, 0xf0, 0x04, 0xed, 0x07, 0x22, 0x39, 0x00, 0xe0, 0x1d, 0x03, 0xf0, +0x00, 0xed, 0xff, 0x22, 0x06, 0x21, 0x60, 0x1c, 0x04, 0xf0, 0xd2, 0xeb, 0x06, 0x9a, 0x04, 0x98, +0x21, 0x00, 0xff, 0xf7, 0x34, 0xff, 0x07, 0xb0, 0xf0, 0xbd, 0x3b, 0x48, 0x00, 0x21, 0x14, 0x38, +0x10, 0xb5, 0x00, 0x68, 0xc9, 0x43, 0x03, 0xf0, 0xc0, 0xee, 0x10, 0xbd, 0x36, 0x48, 0x10, 0xb5, +0x14, 0x38, 0x00, 0x68, 0x03, 0xf0, 0x7c, 0xee, 0x10, 0xbd, 0x33, 0x49, 0x00, 0x20, 0x14, 0x39, +0x8a, 0x7a, 0x00, 0x2a, 0x07, 0xd0, 0x4a, 0x7a, 0xf2, 0x61, 0x91, 0x8e, 0x01, 0x00, 0x00, 0x00, +0x70, 0xa0, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xa2, 0x76, 0x19, 0x1a, 0x0b, 0x7a, 0x9a, 0x42, +0x03, 0xd1, 0xc9, 0x7a, 0x00, 0x29, 0x00, 0xd0, 0x01, 0x20, 0x70, 0x47, 0xff, 0x20, 0x2d, 0x30, +0x10, 0xb5, 0x04, 0xf0, 0xf4, 0xe9, 0x04, 0xf0, 0x92, 0xec, 0x10, 0xbd, 0x70, 0xb5, 0x01, 0x25, +0x26, 0x4c, 0x05, 0x26, 0x14, 0x3c, 0x60, 0x7a, 0x20, 0x72, 0xa5, 0x72, 0x60, 0x68, 0xf6, 0x01, +0x80, 0x19, 0x40, 0x69, 0x00, 0x28, 0x02, 0xd0, 0x04, 0xf0, 0x84, 0xec, 0xe5, 0x72, 0xff, 0xf7, +0xd6, 0xff, 0x00, 0x28, 0x08, 0xd0, 0x60, 0x68, 0x80, 0x19, 0x01, 0x7c, 0x49, 0x1c, 0x01, 0x74, +0xff, 0xf7, 0xdc, 0xff, 0xff, 0xf7, 0x5a, 0xfb, 0x70, 0xbd, 0xf0, 0xb5, 0x05, 0x00, 0x0f, 0x00, +0x16, 0x48, 0x91, 0xb0, 0x14, 0x38, 0x04, 0x69, 0x38, 0x21, 0x02, 0xa8, 0x03, 0xf0, 0xde, 0xed, +0x05, 0x20, 0xc0, 0x01, 0x2e, 0x18, 0xb0, 0x6a, 0x0e, 0x90, 0x16, 0x48, 0x02, 0x90, 0x16, 0x48, +0x08, 0x97, 0x03, 0x90, 0x15, 0x48, 0x04, 0x95, 0x08, 0xab, 0x09, 0x90, 0x18, 0x7d, 0x08, 0x21, +0x08, 0x43, 0x18, 0x75, 0x15, 0x20, 0x40, 0x01, 0x28, 0x18, 0x0b, 0x90, 0x20, 0x7a, 0x00, 0x28, +0x3f, 0xd1, 0xe0, 0x68, 0xc0, 0x04, 0x1b, 0xe0, 0x7a, 0x02, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x04, +0x30, 0x00, 0x00, 0x04, 0x44, 0x07, 0x00, 0x00, 0xb8, 0x64, 0x02, 0xc0, 0x08, 0x62, 0x02, 0xc0, +0x38, 0x52, 0x00, 0x04, 0xd1, 0x9a, 0x00, 0xc0, 0x02, 0x04, 0x0b, 0x16, 0x0c, 0x12, 0x18, 0x24, +0x30, 0x48, 0x60, 0x6c, 0x1b, 0x9a, 0x00, 0xc0, 0x7d, 0x99, 0x00, 0xc0, 0xa0, 0x86, 0x01, 0x00, +0x1f, 0xd5, 0x01, 0xa9, 0x68, 0x46, 0xfc, 0xf7, 0xbd, 0xff, 0x01, 0x27, 0x00, 0x24, 0x0e, 0xe0, +0xe0, 0x00, 0x00, 0x1b, 0x40, 0x19, 0x01, 0x7a, 0x01, 0x9a, 0x91, 0x42, 0x11, 0xd1, 0xc0, 0x1d, +0x01, 0x22, 0x69, 0x46, 0x04, 0xf0, 0x46, 0xe8, 0x00, 0x28, 0x0a, 0xd1, 0x64, 0x1c, 0x70, 0x7c, +0xa0, 0x42, 0xed, 0xdc, 0x00, 0x2f, 0x04, 0xd0, 0x08, 0xab, 0x18, 0x7d, 0x40, 0x08, 0x40, 0x00, +0x03, 0xe0, 0x08, 0xab, 0x18, 0x7d, 0x01, 0x21, 0x08, 0x43, 0x08, 0xab, 0x18, 0x75, 0x02, 0xa8, +0x04, 0xf0, 0xe8, 0xe8, 0x11, 0xb0, 0xf0, 0xbd, 0xf8, 0xb5, 0x8c, 0x46, 0x86, 0x46, 0x00, 0x20, +0x04, 0x00, 0x01, 0x00, 0x76, 0xe0, 0x60, 0x46, 0x45, 0x78, 0x06, 0x78, 0x1f, 0x68, 0x2d, 0x02, +0x35, 0x43, 0x7e, 0x00, 0x7f, 0x1c, 0xb6, 0x18, 0x1f, 0x60, 0x35, 0x80, 0x45, 0x78, 0x06, 0x78, +0x2d, 0x02, 0x35, 0x43, 0x2e, 0x00, 0xff, 0x3e, 0x33, 0x3e, 0x17, 0xd0, 0x09, 0x2e, 0x28, 0xd0, +0x0f, 0x2e, 0x0d, 0xd0, 0x5f, 0x2e, 0x51, 0xd1, 0xc6, 0x78, 0x87, 0x78, 0x36, 0x02, 0x3e, 0x43, +0x4c, 0xd1, 0x1f, 0x68, 0x7e, 0x00, 0xb6, 0x18, 0x7f, 0x1c, 0x1f, 0x60, 0x35, 0x80, 0x45, 0xe0, +0xc5, 0x78, 0x86, 0x78, 0x2d, 0x02, 0x35, 0x43, 0x09, 0x9e, 0xf7, 0xe7, 0xc6, 0x78, 0x87, 0x78, +0x36, 0x02, 0x3e, 0x43, 0xed, 0xd0, 0x06, 0x9d, 0x01, 0x26, 0x2d, 0x68, 0xa6, 0x40, 0xb5, 0x43, +0x06, 0x9e, 0x35, 0x60, 0x06, 0x79, 0xa6, 0x40, 0x35, 0x43, 0x06, 0x9e, 0x64, 0x1c, 0x35, 0x60, +0x2c, 0xe0, 0xc6, 0x78, 0x87, 0x78, 0x36, 0x02, 0x3e, 0x43, 0x02, 0xd0, 0x06, 0x79, 0x04, 0x2e, +0x14, 0xd3, 0x1f, 0x68, 0x7e, 0x00, 0x7f, 0x1c, 0xb6, 0x18, 0x1f, 0x60, 0x35, 0x80, 0x45, 0x78, +0x06, 0x78, 0x1f, 0x68, 0x2d, 0x02, 0x35, 0x43, 0x7e, 0x00, 0xb6, 0x18, 0x7f, 0x1c, 0x1f, 0x60, +0x35, 0x80, 0x45, 0x78, 0x06, 0x78, 0x2d, 0x02, 0x35, 0x43, 0xc2, 0xe7, 0x07, 0x9d, 0x03, 0x27, +0x2e, 0x68, 0x4d, 0x00, 0xaf, 0x40, 0x00, 0x95, 0x07, 0x9d, 0xbe, 0x43, 0x2e, 0x60, 0x00, 0x9d, +0x07, 0x79, 0xaf, 0x40, 0x07, 0x9d, 0x37, 0x43, 0x49, 0x1c, 0x2f, 0x60, 0xc6, 0x78, 0x85, 0x78, +0x36, 0x02, 0x2e, 0x43, 0x75, 0x46, 0xad, 0x1b, 0x2d, 0x1f, 0xae, 0x46, 0x65, 0x46, 0x2d, 0x1d, +0x75, 0x19, 0xac, 0x46, 0x75, 0x46, 0x04, 0x2d, 0x85, 0xd2, 0xf8, 0xbd, 0xf7, 0xb5, 0x82, 0xb0, +0x01, 0x26, 0x00, 0x29, 0x00, 0xd0, 0x00, 0x26, 0x04, 0x9d, 0x01, 0x2e, 0x02, 0xd0, 0x08, 0x00, +0x04, 0xf0, 0x74, 0xe8, 0x04, 0x00, 0x30, 0xd0, 0xff, 0x20, 0x98, 0x30, 0x6b, 0x46, 0x98, 0x80, +0x08, 0x20, 0xd8, 0x80, 0xe0, 0x68, 0xc0, 0x04, 0x1a, 0xd5, 0x20, 0x00, 0x03, 0xf0, 0xc2, 0xeb, +0x07, 0x00, 0x0c, 0x37, 0x04, 0x22, 0x28, 0x00, 0x01, 0xa9, 0x03, 0xf0, 0x9c, 0xeb, 0xb8, 0x6f, +0x6b, 0x46, 0x00, 0x90, 0x18, 0x78, 0x2d, 0x1d, 0x28, 0x70, 0x58, 0x78, 0x21, 0x00, 0x68, 0x70, +0xad, 0x1c, 0xff, 0x31, 0x06, 0x22, 0x4a, 0x31, 0x28, 0x00, 0x03, 0xf0, 0x8c, 0xeb, 0xad, 0x1d, +0xe2, 0x7a, 0xa1, 0x7a, 0x20, 0x00, 0x03, 0xf0, 0xae, 0xeb, 0x04, 0x00, 0x01, 0xd0, 0x01, 0x2e, +0xd8, 0xd0, 0x04, 0x98, 0x28, 0x1a, 0x00, 0x04, 0x00, 0x0c, 0x05, 0xb0, 0xf0, 0xbd, 0xf8, 0xb5, +0x0c, 0x00, 0x16, 0x00, 0x1f, 0x00, 0x03, 0xf0, 0x8a, 0xeb, 0x21, 0x00, 0xff, 0x39, 0x3a, 0x39, +0x04, 0xd1, 0x04, 0x00, 0x01, 0x00, 0xe7, 0x22, 0x92, 0x00, 0x03, 0xe0, 0x04, 0x1d, 0x01, 0x00, +0x1d, 0x22, 0x52, 0x01, 0x8d, 0x18, 0x00, 0x2e, 0x00, 0xd0, 0x27, 0x60, 0xff, 0x30, 0xe1, 0x30, +0x00, 0x8a, 0x7d, 0x21, 0xc0, 0x01, 0x03, 0xf0, 0x7a, 0xeb, 0x22, 0x68, 0x64, 0x23, 0x5a, 0x43, +0x01, 0x00, 0x80, 0x18, 0x40, 0x1e, 0x03, 0xf0, 0x72, 0xeb, 0x28, 0x60, 0xf8, 0xbd, 0xf3, 0xb5, +0x00, 0x20, 0xa1, 0xb0, 0x0c, 0x00, 0x16, 0x90, 0xfa, 0x49, 0x20, 0x22, 0x0e, 0xa8, 0x04, 0xf0, +0x16, 0xeb, 0x10, 0x20, 0x0d, 0x90, 0x21, 0x98, 0x03, 0xf0, 0x64, 0xeb, 0x08, 0x90, 0x21, 0x98, +0x03, 0xf0, 0x54, 0xeb, 0x8f, 0x21, 0x05, 0x00, 0x89, 0x00, 0x07, 0x90, 0x40, 0x18, 0x0c, 0x90, +0xe0, 0x78, 0xa2, 0x78, 0x01, 0x02, 0x28, 0x00, 0xff, 0x30, 0xcf, 0x30, 0x20, 0x90, 0x0b, 0x90, +0x0a, 0x34, 0x0a, 0xa8, 0x17, 0x94, 0x09, 0x90, 0x21, 0x98, 0x11, 0x43, 0x20, 0x30, 0x1f, 0x90, +0x0b, 0x20, 0x21, 0x9a, 0x80, 0x01, 0x03, 0x1d, 0xd2, 0x18, 0x1e, 0x92, 0x21, 0x9a, 0x0a, 0x39, +0x10, 0x18, 0x1d, 0x90, 0x77, 0xe2, 0x17, 0x9e, 0x00, 0x20, 0x09, 0x1f, 0x18, 0x91, 0x19, 0x90, +0xf0, 0x78, 0xb1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x18, 0x99, 0x34, 0x1d, 0x88, 0x42, 0x86, 0x46, +0x7b, 0xd8, 0x07, 0x99, 0x19, 0x20, 0x40, 0x01, 0x08, 0x18, 0x00, 0x7a, 0x00, 0x28, 0x84, 0x46, +0x14, 0xd0, 0x00, 0x27, 0x38, 0x00, 0x0e, 0xab, 0x08, 0xe0, 0x71, 0x78, 0x32, 0x78, 0x09, 0x02, +0x11, 0x43, 0x42, 0x00, 0x9a, 0x5a, 0x91, 0x42, 0x08, 0xd0, 0x40, 0x1c, 0x0d, 0x99, 0x88, 0x42, +0xf3, 0xdb, 0x00, 0x2f, 0x02, 0xd1, 0x01, 0x20, 0x16, 0x90, 0x42, 0xe2, 0x70, 0x78, 0x32, 0x78, +0x01, 0x02, 0x11, 0x43, 0xff, 0x22, 0x42, 0x32, 0x88, 0x1a, 0x91, 0x42, 0x7a, 0xd0, 0x39, 0xdc, +0xc9, 0x4a, 0x88, 0x1a, 0x91, 0x42, 0x76, 0xd0, 0x2b, 0xdc, 0xc8, 0x4a, 0x88, 0x1a, 0x91, 0x42, +0x72, 0xd0, 0x19, 0xdc, 0x3d, 0x29, 0x70, 0xd0, 0xea, 0xc6, 0x10, 0x44, 0x01, 0x00, 0x00, 0x00, +0x6c, 0xa4, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x88, 0xf8, 0xb0, 0x83, 0xff, 0x39, 0x89, 0x1e, +0x6e, 0xd1, 0x07, 0x21, 0x70, 0x46, 0x03, 0xf0, 0xf4, 0xea, 0x01, 0x00, 0x28, 0x00, 0x80, 0x30, +0x1c, 0x90, 0x01, 0x71, 0xf0, 0x78, 0xb1, 0x78, 0x02, 0x02, 0x28, 0x00, 0x0a, 0x43, 0xff, 0x30, +0x21, 0x00, 0x6d, 0x30, 0x03, 0xf0, 0xc8, 0xea, 0x00, 0x27, 0x8a, 0xe0, 0x03, 0x28, 0x7e, 0xd0, +0x04, 0x28, 0xe5, 0xd1, 0x20, 0x78, 0x00, 0x21, 0x03, 0xf0, 0xae, 0xed, 0x21, 0x78, 0x21, 0x98, +0x04, 0xf0, 0x8a, 0xea, 0xfd, 0xe1, 0x01, 0x28, 0x72, 0xd0, 0x02, 0x28, 0x71, 0xd0, 0x03, 0x28, +0x70, 0xd0, 0x07, 0x28, 0xd4, 0xd1, 0xcb, 0xe1, 0x3a, 0x28, 0xfc, 0xd0, 0x24, 0xdc, 0x1d, 0x28, +0x69, 0xd0, 0x15, 0xdc, 0x05, 0x28, 0x67, 0xd0, 0x1c, 0x28, 0xc9, 0xd1, 0x0b, 0x98, 0x21, 0x78, +0x20, 0x30, 0x81, 0x73, 0x21, 0x78, 0xc1, 0x73, 0x1d, 0x98, 0x21, 0x78, 0x00, 0x69, 0x40, 0x30, +0x01, 0x75, 0x1d, 0x98, 0x21, 0x78, 0x00, 0x69, 0x40, 0x30, 0x41, 0x75, 0xd9, 0xe1, 0xef, 0xe1, +0x28, 0x28, 0x72, 0xd0, 0x2f, 0x28, 0xb3, 0xd1, 0x43, 0x20, 0xc0, 0x00, 0x04, 0x22, 0x21, 0x00, +0x28, 0x18, 0x03, 0xf0, 0x8a, 0xea, 0xcc, 0xe1, 0x52, 0x28, 0xc0, 0xd0, 0x55, 0x28, 0x70, 0xd0, +0x56, 0x28, 0x6f, 0xd0, 0x57, 0x28, 0xa3, 0xd1, 0x87, 0x21, 0x20, 0x78, 0x89, 0x00, 0x00, 0x28, +0x48, 0x55, 0x0c, 0x98, 0x67, 0xd0, 0xff, 0x30, 0x61, 0x30, 0x01, 0x7a, 0xfb, 0x22, 0x11, 0x40, +0x89, 0x08, 0x89, 0x00, 0x49, 0x1c, 0x89, 0xe1, 0x6c, 0xe1, 0x5d, 0xe0, 0x44, 0xe1, 0x9d, 0xe1, +0x9e, 0xe1, 0xf8, 0x00, 0xc0, 0x1b, 0x40, 0x19, 0x1b, 0x90, 0xff, 0x30, 0x61, 0x30, 0x1a, 0x90, +0x01, 0x7b, 0xf3, 0x22, 0x11, 0x40, 0x01, 0x73, 0x81, 0x7b, 0x03, 0x22, 0x11, 0x43, 0x81, 0x73, +0x1c, 0x98, 0x01, 0x79, 0x7d, 0x20, 0x00, 0x01, 0x03, 0xf0, 0x72, 0xea, 0x6e, 0x28, 0x00, 0xd9, +0x6e, 0x20, 0x1a, 0x99, 0xc8, 0x73, 0x00, 0x0a, 0x08, 0x74, 0x1c, 0x98, 0x01, 0x79, 0x7d, 0x20, +0x00, 0x01, 0x03, 0xf0, 0x66, 0xea, 0x1b, 0x99, 0xff, 0x31, 0x71, 0x31, 0x05, 0xe0, 0xa2, 0xe0, +0x0c, 0xe0, 0x52, 0xe0, 0x15, 0xe0, 0x65, 0xe0, 0x59, 0xe0, 0x48, 0x70, 0x00, 0x0a, 0x7f, 0x1c, +0x88, 0x70, 0x1c, 0x98, 0x00, 0x79, 0xb8, 0x42, 0xcb, 0xdc, 0x7a, 0xe1, 0x0b, 0x98, 0x2a, 0x30, +0x19, 0x90, 0x1d, 0x98, 0x21, 0x78, 0x00, 0x69, 0x40, 0x30, 0x01, 0x74, 0x61, 0x78, 0x41, 0x74, +0x6f, 0xe1, 0x20, 0x78, 0x00, 0x28, 0x02, 0xd0, 0x04, 0xf0, 0xfa, 0xe9, 0x00, 0xe0, 0xfe, 0x20, +0x1f, 0x99, 0x08, 0x76, 0xa8, 0x77, 0x21, 0x98, 0x04, 0xe0, 0x4a, 0xe0, 0x1f, 0x99, 0x0a, 0x7e, +0x38, 0x21, 0x0a, 0x54, 0xc2, 0x7a, 0x81, 0x7a, 0x03, 0xf0, 0x3e, 0xea, 0x00, 0x28, 0xf5, 0xd1, +0x57, 0xe1, 0x72, 0xe0, 0xc0, 0xe0, 0x22, 0xe1, 0x20, 0x78, 0x00, 0x28, 0x11, 0xd1, 0x21, 0x20, +0x00, 0x01, 0x28, 0x18, 0x81, 0x7b, 0x42, 0x7b, 0x09, 0x02, 0x11, 0x43, 0xff, 0x22, 0xc1, 0x32, +0x91, 0x43, 0x62, 0x78, 0x52, 0x07, 0xd2, 0x0d, 0x11, 0x43, 0x41, 0x73, 0x09, 0x0a, 0x81, 0x73, +0x3f, 0xe1, 0xe8, 0x1d, 0xff, 0x30, 0xfa, 0x30, 0x41, 0x7f, 0xc7, 0x22, 0x11, 0x40, 0x62, 0x78, +0x52, 0x07, 0x92, 0x0e, 0x11, 0x43, 0x41, 0x77, 0x33, 0xe1, 0xe8, 0x1d, 0xff, 0x30, 0xfa, 0x30, +0x41, 0x7f, 0xfb, 0x22, 0x11, 0x40, 0x22, 0x78, 0xd2, 0x07, 0x52, 0x0f, 0xf2, 0xe7, 0x0b, 0x98, +0x2c, 0x30, 0x19, 0x90, 0x1d, 0x98, 0x21, 0x78, 0x00, 0x69, 0x40, 0x30, 0x81, 0x74, 0x61, 0x78, +0xc1, 0x74, 0x1e, 0xe1, 0x21, 0x00, 0x28, 0x00, 0x04, 0xf0, 0xae, 0xe9, 0x00, 0x28, 0x9c, 0xd0, +0x04, 0xe1, 0xf1, 0x78, 0xb0, 0x78, 0x09, 0x06, 0x0a, 0x14, 0x02, 0x43, 0x21, 0x98, 0x21, 0x00, +0x04, 0xf0, 0xa6, 0xe9, 0x00, 0x28, 0xf3, 0xd1, 0x21, 0x98, 0x00, 0x7a, 0x03, 0x28, 0x8c, 0xd1, +0xe0, 0x78, 0xa1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x36, 0x49, 0x88, 0x42, 0x85, 0xd1, 0x00, 0x20, +0x04, 0xf0, 0x9a, 0xe9, 0x21, 0x98, 0x05, 0x21, 0x03, 0xf0, 0x9e, 0xea, 0x21, 0x98, 0x08, 0x21, +0x03, 0xf0, 0x9a, 0xea, 0x21, 0x99, 0x80, 0x22, 0x80, 0x31, 0xc8, 0x68, 0xc3, 0x78, 0x13, 0x43, +0xc3, 0x70, 0x48, 0x69, 0xc1, 0x78, 0x11, 0x43, 0xc1, 0x70, 0x01, 0x20, 0x04, 0xf0, 0x84, 0xe9, +0xe7, 0xe0, 0x16, 0x90, 0xe5, 0xe0, 0x02, 0x20, 0xfb, 0xe7, 0x11, 0x20, 0x40, 0x01, 0x2f, 0x18, +0x78, 0x88, 0x00, 0x06, 0x00, 0x0e, 0x06, 0x90, 0x03, 0xf0, 0x72, 0xe9, 0x05, 0x90, 0x20, 0x88, +0x00, 0x28, 0x0c, 0xd0, 0x01, 0x28, 0x02, 0xd0, 0x02, 0x28, 0x09, 0xd1, 0x06, 0xe0, 0x1b, 0x48, +0x06, 0x22, 0xf0, 0x30, 0x21, 0x00, 0x28, 0x18, 0x03, 0xf0, 0x86, 0xe9, 0x01, 0x20, 0x78, 0x80, +0x06, 0x98, 0x01, 0x28, 0x54, 0xd1, 0x78, 0x88, 0x00, 0x28, 0x51, 0xd1, 0xf8, 0x88, 0xc0, 0x07, +0x4e, 0xd0, 0x21, 0x9f, 0x38, 0x00, 0x03, 0xf0, 0x98, 0xe9, 0x0c, 0x30, 0x81, 0x6f, 0x01, 0x29, +0x11, 0xd1, 0xf9, 0x68, 0xc9, 0x04, 0x0e, 0xd5, 0x00, 0x21, 0x60, 0x30, 0x81, 0x82, 0x38, 0x00, +0x03, 0xf0, 0xca, 0xea, 0x00, 0x28, 0x06, 0xd0, 0xff, 0x20, 0x51, 0x30, 0xc1, 0x5b, 0x00, 0x22, +0x38, 0x00, 0xf7, 0xf7, 0x87, 0xf8, 0xfa, 0x7a, 0xb9, 0x7a, 0x38, 0x00, 0x03, 0xf0, 0x84, 0xe9, +0x07, 0x00, 0xdf, 0xd1, 0x2c, 0xe0, 0x00, 0x00, 0x94, 0xed, 0x00, 0xc0, 0x32, 0x01, 0x00, 0x00, +0x2b, 0x01, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xa0, 0x1c, 0x03, 0xf0, 0x12, 0xee, 0x00, 0x28, +0x06, 0x90, 0xa5, 0xd0, 0x06, 0x98, 0x03, 0xf0, 0x68, 0xe9, 0x00, 0x28, 0xa0, 0xd0, 0x07, 0x00, +0x0c, 0x37, 0x03, 0xf0, 0x1e, 0xe9, 0x05, 0x90, 0x21, 0x78, 0xb9, 0x67, 0x00, 0x29, 0x0f, 0xd1, +0x00, 0x20, 0x60, 0x37, 0xb8, 0x82, 0x06, 0x98, 0x03, 0xf0, 0x96, 0xea, 0x00, 0x28, 0x07, 0xd0, +0x06, 0x98, 0x00, 0x22, 0xff, 0x30, 0x41, 0x30, 0x01, 0x8a, 0x06, 0x98, 0xf7, 0xf7, 0x52, 0xf8, +0x05, 0x98, 0x03, 0xf0, 0x1a, 0xe9, 0x6c, 0xe0, 0x1e, 0x98, 0x06, 0x22, 0x21, 0x00, 0x03, 0xf0, +0x24, 0xe9, 0x0b, 0x98, 0x06, 0x22, 0x21, 0x00, 0x24, 0x30, 0x03, 0xf0, 0x1e, 0xe9, 0x00, 0xf0, +0xaf, 0xfe, 0x00, 0x28, 0x05, 0xd1, 0xf9, 0x48, 0x06, 0x22, 0x00, 0x68, 0x21, 0x00, 0x03, 0xf0, +0x14, 0xe9, 0x21, 0x98, 0x01, 0x27, 0x00, 0x7a, 0x3b, 0x00, 0x02, 0x28, 0x00, 0xd1, 0x00, 0x23, +0x1d, 0x98, 0x1e, 0x99, 0x82, 0x7a, 0x02, 0x20, 0x03, 0xf0, 0xce, 0xea, 0x00, 0x28, 0x48, 0xd0, +0x16, 0x97, 0x46, 0xe0, 0x60, 0x78, 0x21, 0x78, 0x2f, 0x00, 0x00, 0x02, 0xe8, 0x37, 0x08, 0x43, +0xf8, 0x80, 0x04, 0xf0, 0xde, 0xe8, 0x38, 0x81, 0xf0, 0x78, 0xb1, 0x78, 0x00, 0x02, 0x08, 0x43, +0x02, 0x28, 0x36, 0xd9, 0xa1, 0x78, 0xb9, 0x72, 0xe0, 0x78, 0xf8, 0x72, 0x31, 0xe0, 0xff, 0x30, +0x61, 0x30, 0x01, 0x7a, 0x04, 0x22, 0x11, 0x43, 0x89, 0x08, 0x89, 0x00, 0x01, 0x72, 0x28, 0xe0, +0x04, 0x22, 0x21, 0x00, 0x06, 0xa8, 0x03, 0xf0, 0xb9, 0x94, 0x49, 0xff, 0x01, 0x00, 0x00, 0x00, +0x68, 0xa8, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xa8, 0x1b, 0x18, 0x09, 0xe0, 0xe8, 0x03, 0xf0, +0xba, 0xe8, 0x07, 0x00, 0x70, 0x78, 0x32, 0x78, 0x01, 0x02, 0x11, 0x43, 0x06, 0x9b, 0x21, 0x98, +0x01, 0x22, 0xff, 0xf7, 0x58, 0xfd, 0x21, 0x98, 0x04, 0xf0, 0xb8, 0xe8, 0x38, 0x00, 0xa2, 0xe7, +0x01, 0x20, 0x28, 0xe7, 0x21, 0x9a, 0x16, 0xa9, 0x04, 0x91, 0x09, 0x99, 0x05, 0x92, 0x19, 0xaa, +0x60, 0x46, 0x6b, 0x46, 0x03, 0x94, 0x07, 0xc3, 0x29, 0x00, 0x08, 0x9b, 0x20, 0x9a, 0x08, 0x33, +0x30, 0x00, 0x04, 0xf0, 0xa8, 0xe8, 0x19, 0x98, 0x00, 0x28, 0x06, 0xd0, 0xf1, 0x78, 0xb3, 0x78, +0x0a, 0x02, 0x1a, 0x43, 0x21, 0x00, 0x03, 0xf0, 0xb2, 0xe8, 0xf0, 0x78, 0xb1, 0x78, 0x00, 0x02, +0x08, 0x43, 0x18, 0x99, 0x17, 0x9a, 0x09, 0x1a, 0x12, 0x1d, 0x80, 0x18, 0x17, 0x90, 0x04, 0x29, +0x00, 0xd3, 0x84, 0xe5, 0x28, 0x00, 0x04, 0xf0, 0x92, 0xe8, 0x10, 0xab, 0x18, 0x8b, 0x23, 0xb0, +0xf0, 0xbd, 0xf3, 0xb5, 0x00, 0x20, 0xcb, 0xb0, 0x54, 0x22, 0x49, 0x90, 0xb9, 0x49, 0x34, 0xa8, +0x04, 0xf0, 0x60, 0xe8, 0x00, 0x20, 0x30, 0x90, 0x14, 0x21, 0x2b, 0xa8, 0x03, 0xf0, 0xca, 0xe9, +0x00, 0x21, 0x0a, 0x00, 0x29, 0xa8, 0x06, 0xc0, 0x01, 0x20, 0x1e, 0x90, 0x18, 0xa8, 0x06, 0xc0, +0x16, 0xa8, 0x06, 0xc0, 0x4b, 0x98, 0x03, 0xf0, 0xa2, 0xe8, 0x15, 0x90, 0x4b, 0x98, 0x03, 0xf0, +0x92, 0xe8, 0x04, 0x21, 0x13, 0x91, 0x8f, 0x21, 0x04, 0x00, 0x89, 0x00, 0x40, 0x18, 0x27, 0x90, +0x2a, 0x20, 0x33, 0x90, 0x02, 0x20, 0x32, 0x90, 0xe4, 0x20, 0x31, 0x90, 0x00, 0x20, 0x18, 0xab, +0x1a, 0x90, 0x18, 0x7a, 0x20, 0x21, 0x08, 0x43, 0x81, 0x06, 0xc9, 0x0f, 0xf7, 0x22, 0xc9, 0x00, +0x10, 0x40, 0x08, 0x43, 0x18, 0x72, 0x4c, 0x98, 0x4c, 0x9d, 0xc1, 0x78, 0x80, 0x78, 0x0b, 0x02, +0x03, 0x43, 0x0a, 0x3b, 0x0a, 0x35, 0x00, 0x2b, 0x10, 0xd0, 0x00, 0x20, 0x33, 0x90, 0x1e, 0x90, +0x13, 0xaa, 0x18, 0xa9, 0x31, 0xa8, 0x01, 0xae, 0x07, 0xc6, 0x32, 0xaa, 0x18, 0x00, 0x00, 0x92, +0x29, 0x00, 0x34, 0xaa, 0x33, 0xab, 0xff, 0xf7, 0x0b, 0xfc, 0x49, 0x90, 0x4c, 0x99, 0x0a, 0x20, +0x88, 0x70, 0x00, 0x20, 0x06, 0x00, 0xc8, 0x70, 0x48, 0xe1, 0x77, 0x00, 0x34, 0xa8, 0x38, 0x18, +0x2b, 0x90, 0x02, 0x20, 0x28, 0xab, 0x12, 0xa9, 0x18, 0x71, 0x2c, 0x91, 0x58, 0x71, 0x00, 0x21, +0x2b, 0xab, 0x82, 0x00, 0x2b, 0xab, 0x99, 0x50, 0x29, 0xaa, 0x11, 0x54, 0x40, 0x1c, 0x05, 0x28, +0xf7, 0xd3, 0x00, 0x20, 0x12, 0x90, 0x34, 0xa8, 0xc7, 0x5b, 0xff, 0x21, 0x71, 0x31, 0x78, 0x1a, +0x8f, 0x42, 0x7e, 0xd0, 0x3c, 0xdc, 0x80, 0x49, 0x78, 0x1a, 0x8f, 0x42, 0x7a, 0xd0, 0x15, 0xdc, +0x3d, 0x2f, 0x78, 0xd0, 0x38, 0x00, 0xff, 0x38, 0x30, 0x38, 0x7f, 0xd0, 0x12, 0x28, 0x46, 0xd1, +0x10, 0xab, 0x98, 0x89, 0xee, 0x21, 0x12, 0x90, 0x09, 0x5b, 0x19, 0x82, 0xf2, 0x21, 0x09, 0x5b, +0x59, 0x82, 0x14, 0xa9, 0x2d, 0x91, 0x28, 0xab, 0x98, 0x71, 0x6d, 0xe0, 0x09, 0x28, 0x78, 0xd0, +0x14, 0x28, 0x34, 0xd1, 0x1e, 0x98, 0x2a, 0x00, 0x01, 0x28, 0x02, 0xd1, 0x00, 0x20, 0x90, 0x70, +0xd0, 0x70, 0x4b, 0x98, 0x29, 0x00, 0x03, 0xf0, 0xee, 0xef, 0x2d, 0x18, 0x12, 0x90, 0x4b, 0x98, +0x29, 0x00, 0x03, 0xf0, 0xec, 0xef, 0x10, 0xab, 0x19, 0x89, 0x2d, 0x18, 0x08, 0x18, 0x00, 0x1f, +0x12, 0x90, 0x00, 0x20, 0x28, 0xab, 0x2c, 0x90, 0x2b, 0x90, 0x58, 0x71, 0x18, 0x71, 0x4b, 0xe0, +0x28, 0x28, 0x7a, 0xd0, 0x0f, 0xdc, 0x23, 0x28, 0x7a, 0xd0, 0x26, 0x28, 0x5e, 0xd0, 0x27, 0x28, +0x0d, 0xd1, 0x06, 0x22, 0x16, 0xa9, 0x18, 0xa8, 0x03, 0xf0, 0xc8, 0xeb, 0x00, 0x28, 0x5c, 0xd1, +0x2a, 0x00, 0x00, 0x21, 0x5b, 0xe0, 0x38, 0x28, 0x69, 0xd0, 0x3a, 0x28, 0xd7, 0xd0, 0x27, 0x98, +0x1a, 0xaa, 0x30, 0x30, 0x1f, 0xa9, 0x0e, 0xab, 0x07, 0xc3, 0x23, 0xaa, 0x1b, 0xa9, 0x1c, 0xa8, +0x0b, 0xab, 0x07, 0xc3, 0x1d, 0xaa, 0x49, 0x98, 0x28, 0xa9, 0xc3, 0x78, 0x80, 0x78, 0x1b, 0x02, +0x18, 0x43, 0x08, 0xab, 0x07, 0xc3, 0x31, 0xaa, 0x27, 0x98, 0x32, 0xa9, 0xe0, 0x30, 0x00, 0x7b, +0x05, 0xab, 0x07, 0xc3, 0x21, 0x00, 0x27, 0x98, 0xff, 0x31, 0x00, 0x7f, 0x03, 0x95, 0x80, 0x06, +0xc2, 0x0f, 0x04, 0x92, 0x15, 0x9a, 0x12, 0xa8, 0x08, 0x32, 0xcf, 0x31, 0x23, 0x00, 0x02, 0x90, +0x03, 0xe0, 0x47, 0xe0, 0x5c, 0xe0, 0x54, 0xe0, 0x08, 0xe0, 0x01, 0x92, 0x00, 0x91, 0x38, 0x00, +0x29, 0xaa, 0x2b, 0xa9, 0x03, 0xf0, 0x96, 0xef, 0x00, 0x27, 0x77, 0xe0, 0x01, 0x20, 0x12, 0x90, +0x03, 0xf0, 0x94, 0xef, 0x1d, 0x90, 0x1d, 0xa8, 0x10, 0xab, 0x2d, 0x90, 0x18, 0x89, 0x82, 0xe7, +0xff, 0xe7, 0x18, 0x22, 0x20, 0x00, 0x0c, 0xa9, 0x03, 0xf0, 0x8c, 0xef, 0x28, 0xab, 0x00, 0x28, +0x98, 0x71, 0x01, 0xd0, 0x0c, 0xa9, 0x2d, 0x91, 0x12, 0x90, 0xe5, 0xe7, 0x06, 0x20, 0x28, 0xab, +0x12, 0x90, 0x98, 0x71, 0x2c, 0x48, 0xcd, 0x30, 0x29, 0xe0, 0x2a, 0x00, 0x18, 0xa9, 0x4b, 0x98, +0xff, 0xf7, 0xb8, 0xfb, 0x00, 0x06, 0x00, 0x0e, 0xd6, 0xd0, 0x00, 0x21, 0x28, 0xab, 0x2c, 0x91, +0x2b, 0x91, 0x18, 0x71, 0x00, 0x1f, 0x59, 0x71, 0xe6, 0xe7, 0x12, 0xe0, 0x00, 0xe0, 0x2f, 0xe0, +0x02, 0x20, 0x28, 0xab, 0x12, 0x90, 0x98, 0x71, 0x4b, 0x98, 0x03, 0xf0, 0x04, 0xe8, 0x1c, 0x90, +0x1c, 0xa8, 0x33, 0xe0, 0x04, 0x20, 0x28, 0xab, 0x12, 0x90, 0x98, 0x71, 0x43, 0x20, 0xc0, 0x00, +0x05, 0xe0, 0x01, 0x20, 0x28, 0xab, 0x12, 0x90, 0x98, 0x71, 0x87, 0x20, 0x80, 0x00, 0x20, 0x18, +0x24, 0xe0, 0x16, 0x20, 0x28, 0xab, 0x12, 0x90, 0x98, 0x71, 0x20, 0x00, 0x66, 0x30, 0x1d, 0xe0, +0x04, 0x20, 0x12, 0x90, 0x20, 0x20, 0x00, 0x5d, 0x1c, 0x90, 0x1c, 0xa8, 0x2d, 0x90, 0x02, 0x20, +0x28, 0xab, 0x08, 0x21, 0x98, 0x71, 0x1b, 0x91, 0x1b, 0xa9, 0x2e, 0x91, 0xd8, 0x71, 0x9b, 0xe7, +0x4b, 0x98, 0x02, 0xf0, 0xe8, 0xef, 0x01, 0x00, 0x4b, 0x98, 0x00, 0x7a, 0x03, 0x28, 0x93, 0xd1, +0x20, 0x20, 0x28, 0xab, 0x12, 0x90, 0x98, 0x71, 0xc8, 0x6b, 0x20, 0x30, 0x2d, 0x90, 0x8b, 0xe7, +0x50, 0xf4, 0x00, 0xc0, 0xb4, 0xed, 0x00, 0xc0, 0x55, 0x01, 0x00, 0x00, 0xb8, 0x00, 0x2b, 0xa9, +0x4a, 0x90, 0x08, 0x58, 0x00, 0x28, 0x09, 0xd0, 0x01, 0x00, 0x29, 0xaa, 0xd2, 0x5d, 0x28, 0x00, +0x02, 0xf0, 0x14, 0xef, 0x4a, 0x99, 0x00, 0x20, 0x2b, 0xaa, 0x50, 0x50, 0x29, 0xa9, 0xc8, 0x5d, +0x00, 0x28, 0x02, 0xd0, 0x45, 0x19, 0x00, 0x20, 0xc8, 0x55, 0x7f, 0x1c, 0x05, 0x2f, 0xe5, 0xd3, +0x4c, 0x98, 0x10, 0xab, 0xc1, 0x78, 0x82, 0x78, 0x08, 0x02, 0x19, 0x89, 0x10, 0x43, 0x09, 0x1d, +0x40, 0x18, 0x4c, 0x99, 0x88, 0x70, 0x00, 0x0a, 0x76, 0x1c, 0xc8, 0x70, 0x33, 0x98, 0x86, 0x42, +0x00, 0xd2, 0xb2, 0xe6, 0x30, 0x98, 0x4d, 0xb0, 0xf0, 0xbd, 0x10, 0xb5, 0x14, 0x00, 0x52, 0x04, +0x52, 0x0c, 0xe4, 0x0b, 0x03, 0xd1, 0x0b, 0x00, 0x2c, 0x21, 0x03, 0xf0, 0x30, 0xeb, 0x10, 0xbd, +0xf8, 0xb5, 0x04, 0x00, 0x08, 0x00, 0x08, 0x30, 0x8b, 0xef, 0x79, 0x4e, 0x01, 0x00, 0x00, 0x00, +0x64, 0xac, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x2f, 0x4d, 0x16, 0x5b, 0x0d, 0x00, 0x00, 0x26, +0x00, 0x90, 0x03, 0xf0, 0xa2, 0xeb, 0x00, 0x28, 0x07, 0xd0, 0x81, 0x7a, 0xa2, 0x7a, 0x91, 0x42, +0x03, 0xd1, 0xc1, 0x7a, 0xe2, 0x7a, 0x91, 0x42, 0x01, 0xd0, 0x01, 0x20, 0xf8, 0xbd, 0x03, 0xf0, +0x40, 0xed, 0x07, 0x00, 0x20, 0xd0, 0x38, 0x89, 0x23, 0x21, 0xc4, 0x19, 0x20, 0x00, 0x21, 0x70, +0x00, 0x99, 0x06, 0x22, 0x09, 0x30, 0x02, 0xf0, 0xc4, 0xee, 0xe8, 0x78, 0xa9, 0x78, 0x00, 0x02, +0x08, 0x43, 0x0e, 0x28, 0x01, 0xd1, 0x02, 0x20, 0x03, 0xe0, 0xe8, 0x7b, 0xa9, 0x7b, 0x00, 0x02, +0x08, 0x43, 0xe0, 0x73, 0x00, 0x0a, 0x20, 0x74, 0x38, 0x00, 0x03, 0xf0, 0x3a, 0xed, 0x01, 0x28, +0x03, 0xd1, 0x38, 0x00, 0x03, 0xf0, 0x40, 0xe8, 0x01, 0x26, 0x30, 0x00, 0xf8, 0xbd, 0x70, 0xb5, +0x0d, 0x00, 0x01, 0x26, 0x03, 0xf0, 0x14, 0xed, 0x04, 0x00, 0x0b, 0xd0, 0x20, 0x89, 0x00, 0x19, +0x05, 0x70, 0x20, 0x00, 0x03, 0xf0, 0x24, 0xed, 0x06, 0x00, 0x01, 0x28, 0x02, 0xd1, 0x20, 0x00, +0x03, 0xf0, 0x2a, 0xe8, 0x30, 0x00, 0x70, 0xbd, 0x10, 0xb5, 0x01, 0x24, 0x21, 0x21, 0xff, 0xf7, +0xe6, 0xff, 0x00, 0x28, 0x00, 0xd1, 0x00, 0x24, 0x20, 0x00, 0x10, 0xbd, 0x70, 0xb5, 0x05, 0x00, +0x01, 0x24, 0x02, 0xf0, 0x9a, 0xee, 0x19, 0x21, 0x49, 0x01, 0x40, 0x18, 0x00, 0x7a, 0x00, 0x28, +0x01, 0xd1, 0x02, 0x20, 0x70, 0xbd, 0x1f, 0x21, 0x28, 0x00, 0xff, 0xf7, 0xd0, 0xff, 0x00, 0x28, +0x00, 0xd1, 0x00, 0x24, 0x20, 0x00, 0x70, 0xbd, 0xf8, 0xb5, 0x05, 0x00, 0x00, 0x26, 0x34, 0x00, +0x77, 0x1e, 0x20, 0x29, 0x04, 0xd0, 0x22, 0x29, 0x04, 0xd0, 0x2b, 0x29, 0x04, 0xd0, 0x37, 0xe0, +0x8d, 0x4c, 0x01, 0xe0, 0x8c, 0x4c, 0xe4, 0x1e, 0x28, 0x00, 0x02, 0xf0, 0x5e, 0xef, 0x00, 0x28, +0x01, 0xd1, 0x03, 0xf0, 0x66, 0xee, 0x03, 0xf0, 0x18, 0xe8, 0x00, 0x28, 0x0a, 0xd0, 0x28, 0x00, +0x03, 0xf0, 0x8a, 0xec, 0x00, 0x28, 0x05, 0xd0, 0x84, 0x49, 0x09, 0x88, 0x00, 0x29, 0x01, 0xd0, +0x02, 0xf0, 0xc6, 0xef, 0x28, 0x00, 0x03, 0xf0, 0x74, 0xea, 0x00, 0x2c, 0x19, 0xd0, 0x28, 0x00, +0xfb, 0xf7, 0xd8, 0xfc, 0x05, 0x00, 0x14, 0xd0, 0x28, 0x89, 0x21, 0x0a, 0x40, 0x19, 0x04, 0x70, +0x41, 0x70, 0x00, 0x21, 0x81, 0x71, 0xc1, 0x71, 0x08, 0x21, 0x81, 0x70, 0x00, 0x21, 0xc1, 0x70, +0x28, 0x00, 0xfb, 0xf7, 0x33, 0xfd, 0x01, 0x28, 0x03, 0xd1, 0x28, 0x00, 0x02, 0xf0, 0xc4, 0xef, +0x3e, 0x00, 0x30, 0x00, 0xf8, 0xbd, 0xf7, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x00, 0x27, 0x02, 0xf0, +0x3c, 0xee, 0x00, 0x2d, 0x02, 0xd0, 0x29, 0x7b, 0x00, 0x29, 0x1a, 0xd1, 0xff, 0x21, 0x07, 0x22, +0x49, 0x31, 0x0a, 0x55, 0x19, 0x22, 0x52, 0x01, 0x01, 0x21, 0x80, 0x18, 0x00, 0x26, 0x01, 0x72, +0x03, 0xf0, 0x2e, 0xea, 0x65, 0x48, 0x00, 0x88, 0x00, 0x28, 0x0d, 0xd0, 0x02, 0xf0, 0x90, 0xee, +0x01, 0x28, 0x02, 0xd1, 0x20, 0x00, 0x03, 0xf0, 0x50, 0xe9, 0x20, 0x00, 0x02, 0xf0, 0x80, 0xef, +0x02, 0xe0, 0x00, 0x27, 0xff, 0x43, 0x01, 0x26, 0x02, 0x98, 0x01, 0x28, 0x1c, 0xd1, 0x20, 0x00, +0xfb, 0xf7, 0x90, 0xfc, 0x04, 0x00, 0x17, 0xd0, 0x20, 0x89, 0x57, 0x49, 0x00, 0x19, 0x49, 0x1e, +0x01, 0x70, 0x09, 0x0a, 0x41, 0x70, 0x31, 0x0a, 0x86, 0x71, 0xc1, 0x71, 0x08, 0x21, 0x81, 0x70, +0x00, 0x21, 0xc1, 0x70, 0x29, 0x7b, 0x01, 0x72, 0x20, 0x00, 0xfb, 0xf7, 0xe7, 0xfc, 0x01, 0x28, +0x02, 0xd1, 0x20, 0x00, 0x02, 0xf0, 0x78, 0xef, 0x38, 0x00, 0xfe, 0xbd, 0xfe, 0xb5, 0x06, 0x00, +0x00, 0x20, 0x01, 0x90, 0x30, 0x00, 0x02, 0xf0, 0xf0, 0xed, 0x8f, 0x21, 0x89, 0x00, 0x44, 0x18, +0x47, 0x49, 0x05, 0x00, 0x47, 0x18, 0x30, 0x00, 0x02, 0xf0, 0xf2, 0xed, 0x00, 0x90, 0xff, 0x20, +0x49, 0x30, 0x80, 0x5d, 0x00, 0x28, 0x01, 0xd0, 0x02, 0x20, 0xfe, 0xbd, 0x30, 0x7a, 0x03, 0x28, +0x04, 0xd1, 0x70, 0x7a, 0x02, 0x28, 0x01, 0xd0, 0x04, 0x20, 0xfe, 0xbd, 0x00, 0x22, 0x11, 0x00, +0x30, 0x00, 0x00, 0xf0, 0xf8, 0xfe, 0x20, 0x35, 0x68, 0x78, 0xc0, 0x07, 0x20, 0x7f, 0x02, 0xd0, +0xef, 0x21, 0x08, 0x40, 0x01, 0xe0, 0x10, 0x21, 0x08, 0x43, 0x20, 0x77, 0xb8, 0x78, 0xf8, 0x70, +0x30, 0x00, 0xf6, 0xf7, 0x90, 0xff, 0x01, 0x28, 0x0b, 0xd1, 0x30, 0x00, 0xf7, 0xf7, 0x80, 0xfc, +0x00, 0x28, 0x04, 0xd1, 0x00, 0x98, 0x00, 0x7a, 0x80, 0x09, 0x01, 0x28, 0x01, 0xd1, 0x05, 0x20, +0x01, 0x90, 0x1d, 0x21, 0x30, 0x00, 0xff, 0xf7, 0xf2, 0xfe, 0x01, 0x28, 0x01, 0xd0, 0x01, 0x98, +0xfe, 0xbd, 0x03, 0x20, 0x01, 0x90, 0xfe, 0xbd, 0xfe, 0xb5, 0x05, 0x00, 0x01, 0x20, 0x0e, 0x00, +0x00, 0x2d, 0x01, 0x90, 0x3d, 0xd0, 0x00, 0x20, 0x01, 0x90, 0x30, 0x72, 0x70, 0x72, 0xf0, 0x78, +0xb1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x80, 0x1c, 0xb0, 0x70, 0x37, 0x00, 0x00, 0x0a, 0x08, 0x37, +0x34, 0x00, 0x0a, 0x34, 0xf0, 0x70, 0x28, 0x00, 0x02, 0xf0, 0x9a, 0xed, 0x0c, 0x30, 0x00, 0x90, +0xe8, 0x68, 0xc0, 0x04, 0x1e, 0xd5, 0x78, 0x78, 0x39, 0x78, 0x00, 0x02, 0x08, 0x43, 0x40, 0x1c, +0x38, 0x70, 0x00, 0x0a, 0x2a, 0x00, 0xff, 0x32, 0x78, 0x70, 0x4a, 0x32, 0x21, 0x1d, 0x20, 0x00, +0x03, 0xf0, 0x72, 0xed, 0x00, 0x98, 0x00, 0x7d, 0xa0, 0x72, 0x28, 0x00, 0x03, 0xf0, 0x7c, 0xe8, +0xe0, 0x72, 0xf0, 0x78, 0xb1, 0x78, 0x00, 0x02, 0x08, 0x43, 0x0c, 0x30, 0xb0, 0x70, 0x00, 0x0a, +0x0c, 0x34, 0xf0, 0x70, 0xea, 0x7a, 0xa9, 0x7a, 0x28, 0x00, 0x02, 0xf0, 0x7a, 0xed, 0x05, 0x00, +0xd1, 0xd1, 0x01, 0x98, 0xfe, 0xbd, 0x00, 0x00, 0xb2, 0x80, 0x00, 0x00, 0x04, 0x36, 0x01, 0xc0, +0x1d, 0x02, 0x00, 0x00, 0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x02, 0xf0, 0x56, 0xed, 0x20, 0x00, +0x02, 0xf0, 0x5e, 0xed, 0x01, 0x21, 0x60, 0x30, 0x01, 0x70, 0x21, 0x00, 0xff, 0x31, 0x04, 0x22, +0x4a, 0x31, 0x20, 0x00, 0xff, 0xf7, 0x43, 0xfe, 0x00, 0x2d, 0x03, 0xd1, 0x24, 0x21, 0x20, 0x00, +0xff, 0xf7, 0x85, 0xfe, 0x70, 0xbd, 0x10, 0xb5, 0x0c, 0x00, 0x08, 0x00, 0x02, 0xf0, 0x3c, 0xed, +0x05, 0x22, 0xd2, 0x01, 0x00, 0x21, 0x80, 0x18, 0xc1, 0x60, 0x20, 0x00, 0xff, 0xf7, 0xda, 0xff, +0x10, 0xbd, 0xf7, 0xb5, 0x82, 0xb0, 0x17, 0x00, 0x02, 0x98, 0x00, 0x26, 0x02, 0xf0, 0x38, 0xed, +0x05, 0x00, 0x02, 0x98, 0x03, 0x99, 0xff, 0x30, 0x0c, 0x35, 0x06, 0x22, 0x4a, 0x30, 0x03, 0xf0, +0x00, 0xe9, 0x00, 0x28, 0x0d, 0xd1, 0x28, 0x00, 0x40, 0x30, 0x01, 0x7d, 0x01, 0x26, 0x01, 0x29, +0x02, 0xd1, 0x00, 0x20, 0x05, 0xb0, 0xf0, 0xbd, 0xc4, 0x8a, 0x03, 0x2c, 0x05, 0xd0, 0x02, 0x2c, +0x03, 0xd0, 0x38, 0x00, 0x03, 0xf0, 0x0c, 0xed, 0x04, 0x00, 0x00, 0x22, 0x00, 0x92, 0x02, 0x9a, +0x03, 0x99, 0x02, 0x98, 0x3b, 0x00, 0x7e, 0x32, 0x02, 0xf0, 0x36, 0xed, 0x07, 0x00, 0x03, 0x98, +0x00, 0x78, 0xc0, 0x07, 0x0f, 0xd1, 0x00, 0x2f, 0x03, 0xd0, 0x01, 0x20, 0xc0, 0x03, 0x04, 0x43, +0x07, 0xe0, 0x01, 0x2e, 0x05, 0xd1, 0x01, 0x21, 0x63, 0x7e, 0x39, 0x69, 0x01, 0x00, 0x00, 0x00, +0x60, 0xb0, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xe9, 0xdc, 0x49, 0x1d, 0x54, 0x20, 0x41, 0x55, +0x02, 0x98, 0x03, 0xf0, 0xf4, 0xec, 0x40, 0x35, 0xec, 0x82, 0x38, 0x00, 0xd4, 0xe7, 0xf7, 0xb5, +0x82, 0xb0, 0x05, 0x00, 0x00, 0x24, 0xff, 0x30, 0x17, 0x00, 0xe4, 0x43, 0x4a, 0x30, 0x03, 0x99, +0x26, 0x00, 0x06, 0x22, 0x01, 0x90, 0x03, 0xf0, 0xbe, 0xe8, 0x00, 0x28, 0x0b, 0xd1, 0x28, 0x00, +0x02, 0xf0, 0xe8, 0xec, 0x03, 0x21, 0x60, 0x30, 0x41, 0x80, 0x01, 0x99, 0x3a, 0x00, 0x28, 0x00, +0xff, 0xf7, 0xa1, 0xff, 0x06, 0x00, 0x28, 0x00, 0xfb, 0xf7, 0x4e, 0xfb, 0x05, 0x00, 0x1e, 0xd0, +0x28, 0x89, 0x44, 0x19, 0xff, 0x48, 0x20, 0x70, 0x00, 0x0a, 0x00, 0x2e, 0x60, 0x70, 0x01, 0xd1, +0x00, 0x20, 0x00, 0xe0, 0x01, 0x20, 0xa0, 0x71, 0x00, 0x0a, 0xe0, 0x71, 0x10, 0x20, 0xa0, 0x70, +0x00, 0x20, 0xe0, 0x70, 0x20, 0x00, 0x03, 0x99, 0x06, 0x22, 0x08, 0x30, 0x02, 0xf0, 0xa2, 0xec, +0x38, 0x0a, 0xa7, 0x73, 0xe0, 0x73, 0x28, 0x00, 0xfb, 0xf7, 0x9a, 0xfb, 0x00, 0xe0, 0x26, 0x00, +0x30, 0x00, 0x91, 0xe7, 0xf8, 0xb5, 0x05, 0x00, 0x0f, 0x00, 0x02, 0xf0, 0xb4, 0xec, 0xfe, 0x6d, +0x04, 0x00, 0xed, 0x49, 0xed, 0x48, 0xb6, 0x1d, 0xf7, 0xf7, 0xf6, 0xff, 0x30, 0x78, 0xc0, 0x07, +0x0d, 0xd0, 0x60, 0x37, 0x78, 0x7a, 0x33, 0x28, 0x01, 0xd1, 0x20, 0x24, 0x1e, 0xe0, 0x34, 0x28, +0x01, 0xd1, 0x22, 0x24, 0x1a, 0xe0, 0x36, 0x28, 0x1e, 0xd1, 0x2b, 0x24, 0x16, 0xe0, 0x60, 0x34, +0x62, 0x88, 0x31, 0x00, 0x28, 0x00, 0xff, 0xf7, 0x84, 0xfd, 0x28, 0x00, 0xff, 0x30, 0x06, 0x22, +0x31, 0x00, 0x4a, 0x30, 0x03, 0xf0, 0x5e, 0xe8, 0x00, 0x28, 0x0d, 0xd1, 0x20, 0x78, 0x01, 0x28, +0x0a, 0xd1, 0x24, 0x24, 0x02, 0xe0, 0x01, 0x20, 0x02, 0xf0, 0xb0, 0xec, 0x21, 0x00, 0x28, 0x00, +0xff, 0xf7, 0xb7, 0xfd, 0x01, 0x28, 0xf6, 0xd0, 0x00, 0x20, 0xf8, 0xbd, 0x10, 0xb5, 0x04, 0x00, +0x02, 0xf0, 0x78, 0xec, 0x60, 0x30, 0x00, 0x78, 0x01, 0x28, 0x03, 0xd1, 0x24, 0x21, 0x20, 0x00, +0xff, 0xf7, 0xa7, 0xfd, 0x10, 0xbd, 0xf3, 0xb5, 0x83, 0xb0, 0x06, 0x00, 0x02, 0xf0, 0x6a, 0xec, +0x05, 0x00, 0x02, 0xf0, 0x24, 0xec, 0x01, 0x90, 0xc9, 0x49, 0xc8, 0x48, 0xf7, 0xf7, 0xac, 0xff, +0x30, 0x00, 0x01, 0xf0, 0xf4, 0xfa, 0x30, 0x00, 0x02, 0xf0, 0x50, 0xec, 0x03, 0x21, 0x07, 0x00, +0x09, 0x02, 0x40, 0x18, 0x02, 0x90, 0x00, 0x7c, 0x34, 0x00, 0x80, 0x34, 0x00, 0x28, 0x0b, 0xd0, +0xe0, 0x88, 0x03, 0x28, 0x08, 0xd1, 0x05, 0x20, 0xc0, 0x01, 0x38, 0x18, 0xc0, 0x68, 0x02, 0xf0, +0x7e, 0xec, 0x02, 0x99, 0x00, 0x20, 0x08, 0x74, 0x01, 0x20, 0xe0, 0x80, 0x30, 0x00, 0x02, 0xf0, +0xc2, 0xec, 0x00, 0x28, 0x24, 0xd0, 0x30, 0x00, 0x02, 0xf0, 0xd0, 0xec, 0x69, 0x6e, 0x04, 0x00, +0x00, 0x29, 0x05, 0xd0, 0x30, 0x00, 0x03, 0xf0, 0x2e, 0xec, 0x00, 0x20, 0x68, 0x66, 0x04, 0xe0, +0x20, 0x7f, 0x01, 0x28, 0x01, 0xd3, 0x40, 0x1e, 0x20, 0x77, 0x20, 0x37, 0x20, 0x7f, 0x39, 0x78, +0x88, 0x42, 0x0d, 0xd2, 0x20, 0x00, 0xa0, 0x30, 0x01, 0x00, 0x00, 0x7c, 0x42, 0x07, 0x07, 0xd5, +0xfb, 0x22, 0x10, 0x40, 0x08, 0x74, 0xa0, 0x68, 0x01, 0x21, 0x49, 0x02, 0x08, 0x43, 0xa0, 0x60, +0x28, 0x00, 0x80, 0x21, 0x0c, 0x30, 0x02, 0xf0, 0x32, 0xed, 0x00, 0x27, 0x60, 0x20, 0x47, 0x55, +0x30, 0x00, 0x03, 0xf0, 0xd4, 0xe8, 0x04, 0x98, 0x00, 0x28, 0x0e, 0xd1, 0x0b, 0x20, 0x80, 0x01, +0x34, 0x18, 0xa0, 0x69, 0x00, 0x28, 0x08, 0xd0, 0x20, 0x69, 0x40, 0x30, 0x81, 0x89, 0x99, 0x48, +0x02, 0xf0, 0xfc, 0xeb, 0xe8, 0x60, 0xa7, 0x61, 0x0b, 0xe0, 0x30, 0x00, 0xff, 0x30, 0x06, 0x21, +0x4a, 0x30, 0x02, 0xf0, 0xcc, 0xeb, 0xf0, 0x68, 0x40, 0x05, 0x02, 0xd4, 0x30, 0x00, 0x03, 0xf0, +0xee, 0xeb, 0x01, 0x98, 0x02, 0xf0, 0xbe, 0xeb, 0xc6, 0xe6, 0x70, 0xb5, 0x04, 0x00, 0x00, 0x89, +0x65, 0x69, 0x00, 0x19, 0x20, 0x30, 0x41, 0x78, 0x02, 0x78, 0x08, 0x02, 0x10, 0x43, 0x03, 0xf0, +0xd2, 0xeb, 0x63, 0x69, 0x29, 0x00, 0x02, 0x00, 0xff, 0x31, 0x4a, 0x31, 0x18, 0x00, 0xff, 0xf7, +0xc8, 0xfc, 0x00, 0x21, 0x28, 0x00, 0xff, 0xf7, 0x66, 0xff, 0x00, 0x20, 0x70, 0xbd, 0xff, 0xb5, +0x81, 0xb0, 0xff, 0x21, 0x16, 0x00, 0x5d, 0x31, 0x0a, 0x9d, 0x28, 0x00, 0x03, 0xf0, 0xca, 0xeb, +0x04, 0x00, 0x01, 0xd1, 0x40, 0x1e, 0x9f, 0xe6, 0x20, 0x89, 0x2a, 0x00, 0x07, 0x19, 0xb1, 0x20, +0x7e, 0x32, 0x80, 0x00, 0x29, 0x18, 0x00, 0x92, 0xcb, 0x32, 0x20, 0x00, 0x0b, 0x23, 0x03, 0xf0, +0xbe, 0xeb, 0x04, 0x9a, 0x00, 0x92, 0x02, 0x9a, 0x01, 0x99, 0x33, 0x00, 0x38, 0x00, 0x03, 0xf0, +0xba, 0xeb, 0x20, 0x00, 0x03, 0xf0, 0xfe, 0xea, 0x86, 0xe6, 0xf8, 0xb5, 0x05, 0x00, 0x16, 0x00, +0x20, 0x35, 0xea, 0x78, 0xaf, 0x78, 0x12, 0x02, 0x00, 0x24, 0x3a, 0x43, 0x8a, 0x42, 0x01, 0xd0, +0x0e, 0x24, 0x1f, 0xe0, 0x03, 0x2a, 0x04, 0xd1, 0xc0, 0x78, 0x40, 0x06, 0x01, 0xd4, 0x01, 0x24, +0x18, 0xe0, 0x18, 0x00, 0x03, 0xf0, 0xa2, 0xeb, 0x00, 0x28, 0x04, 0xd0, 0x68, 0x78, 0x29, 0x78, +0x00, 0x02, 0x08, 0x43, 0x0e, 0xd0, 0x68, 0x78, 0x29, 0x78, 0xff, 0x2e, 0x05, 0xd1, 0x00, 0x02, +0x08, 0x43, 0x07, 0xd0, 0x01, 0x28, 0x05, 0xd0, 0x03, 0xe0, 0x00, 0x02, 0x08, 0x43, 0xb0, 0x42, +0x00, 0xd0, 0x0d, 0x24, 0x20, 0x00, 0xf8, 0xbd, 0x02, 0x89, 0x41, 0x69, 0x10, 0x18, 0x80, 0x31, +0x8a, 0x88, 0x4b, 0x69, 0xc9, 0x88, 0xc8, 0xe7, 0xf8, 0xb5, 0x0e, 0x00, 0x01, 0x89, 0x47, 0x69, +0x0d, 0x18, 0x38, 0x00, 0x02, 0xf0, 0x6e, 0xeb, 0x38, 0x00, 0x02, 0xf0, 0x60, 0xeb, 0x04, 0x00, +0x01, 0x20, 0x80, 0x37, 0x05, 0x21, 0xc9, 0x01, 0xf8, 0x80, 0x60, 0x18, 0xc0, 0x68, 0x02, 0xf0, +0x96, 0xeb, 0x03, 0x22, 0x12, 0x02, 0x00, 0x21, 0xa0, 0x18, 0x00, 0x2e, 0x01, 0x74, 0x0a, 0xd1, +0x29, 0x20, 0x29, 0x00, 0x00, 0x01, 0x80, 0x22, 0x28, 0x31, 0x20, 0x18, 0x02, 0xf0, 0x22, 0xef, +0x00, 0x28, 0x00, 0xd0, 0x0f, 0x26, 0x30, 0x00, 0xf8, 0xbd, 0xf8, 0xb5, 0x0d, 0x00, 0x06, 0x00, +0x02, 0xf0, 0x48, 0xeb, 0x30, 0x00, 0x02, 0xf0, 0x3a, 0xeb, 0x03, 0x21, 0x09, 0x02, 0x41, 0x18, +0x0a, 0x7c, 0x00, 0x2a, 0x02, 0xd0, 0x00, 0x20, 0xc0, 0x43, 0xf8, 0xbd, 0x03, 0x23, 0x86, 0x22, +0x93, 0x53, 0xa3, 0x22, 0x92, 0x00, 0x84, 0x18, 0x12, 0x1d, 0x80, 0x18, 0x28, 0x60, 0x01, 0x20, +0x08, 0x74, 0x20, 0x68, 0x02, 0xf0, 0x62, 0xeb, 0x00, 0x22, 0x00, 0x92, 0x2e, 0x4a, 0x2f, 0x48, +0x23, 0x00, 0x31, 0x00, 0x02, 0xf0, 0x86, 0xec, 0x28, 0x68, 0x03, 0xf0, 0x34, 0xeb, 0x00, 0x20, +0xf8, 0xbd, 0xf3, 0xb5, 0x85, 0xb0, 0x00, 0x24, 0x05, 0x98, 0x03, 0x94, 0x02, 0x94, 0x01, 0x89, +0x45, 0x69, 0x0e, 0x18, 0x28, 0x00, 0x02, 0xf0, 0x16, 0xeb, 0x60, 0x30, 0x04, 0x90, 0x00, 0x78, +0x09, 0x27, 0xbf, 0x01, 0x03, 0x28, 0x08, 0xd1, 0x28, 0x00, 0x03, 0xf0, 0x20, 0xeb, 0x00, 0x28, +0x03, 0xd0, 0xe8, 0x19, 0x80, 0x6a, 0x00, 0x28, 0xb3, 0xfd, 0x0d, 0x66, 0x01, 0x00, 0x00, 0x00, +0x5c, 0xb4, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x9c, 0x22, 0xb2, 0xa5, 0x6f, 0xd1, 0x28, 0x00, +0x01, 0xf0, 0x97, 0xf9, 0xf0, 0x78, 0x40, 0x06, 0x1a, 0xd5, 0xef, 0x19, 0x78, 0x6a, 0x00, 0x28, +0x65, 0xd0, 0x01, 0x00, 0x08, 0x31, 0x62, 0xd0, 0x80, 0x7c, 0xc0, 0x07, 0x5f, 0xd0, 0x06, 0x98, +0x40, 0x30, 0x02, 0xf0, 0x2a, 0xec, 0x01, 0x88, 0x00, 0x23, 0x60, 0x31, 0x01, 0x80, 0x7a, 0x6a, +0x06, 0x99, 0x08, 0x32, 0x05, 0xa8, 0x03, 0xf0, 0x00, 0xeb, 0x00, 0x28, 0x00, 0xd1, 0x0f, 0x24, +0x20, 0x36, 0x70, 0x78, 0x31, 0x78, 0x07, 0x02, 0xf0, 0x78, 0x0f, 0x43, 0xb1, 0x78, 0x06, 0x02, +0x0e, 0x43, 0x00, 0x2c, 0x12, 0xd1, 0x0d, 0xe0, 0xb5, 0x80, 0x00, 0x00, 0x22, 0x22, 0x22, 0x22, +0xcc, 0xcc, 0xcc, 0xcc, 0x11, 0x11, 0x11, 0x11, 0xb8, 0x0b, 0x00, 0x00, 0x20, 0xa1, 0x07, 0x00, +0xcf, 0xaf, 0x00, 0xc0, 0x05, 0x98, 0xff, 0xf7, 0x49, 0xff, 0x04, 0x00, 0x86, 0x20, 0x40, 0x5b, +0x03, 0x28, 0x09, 0xd1, 0x05, 0x98, 0x21, 0x00, 0xff, 0xf7, 0x48, 0xff, 0x04, 0x00, 0x01, 0x27, +0x03, 0x26, 0x00, 0x28, 0x0d, 0xd1, 0x03, 0xe0, 0x00, 0x2c, 0x0a, 0xd1, 0x00, 0x2f, 0x03, 0xd1, +0x04, 0x99, 0x02, 0x20, 0x08, 0x70, 0x04, 0xe0, 0x28, 0x00, 0x03, 0xa9, 0xff, 0xf7, 0x5f, 0xff, +0x02, 0x90, 0x02, 0x98, 0x40, 0x1c, 0x0a, 0xd0, 0x76, 0x1c, 0x31, 0x04, 0x03, 0x9b, 0x09, 0x0c, +0x22, 0x00, 0x38, 0x00, 0x00, 0x95, 0xff, 0xf7, 0xcc, 0xfe, 0x40, 0x1c, 0x01, 0xd1, 0x00, 0x21, +0x02, 0xe0, 0x00, 0x2c, 0x03, 0xd0, 0x01, 0x21, 0x28, 0x00, 0xff, 0xf7, 0x2f, 0xfd, 0x07, 0xb0, +0xf0, 0xbd, 0x00, 0x00, 0x10, 0xb5, 0x03, 0xf0, 0xac, 0xea, 0x03, 0xf0, 0xae, 0xea, 0x10, 0xbd, +0xd6, 0x48, 0x80, 0x68, 0x70, 0x47, 0xd5, 0x49, 0x88, 0x60, 0x70, 0x47, 0x08, 0xb5, 0x03, 0xf0, +0xa8, 0xea, 0x00, 0x20, 0x69, 0x46, 0x03, 0xf0, 0xa8, 0xea, 0x03, 0xf0, 0xaa, 0xea, 0xd0, 0x49, +0x00, 0x98, 0x88, 0x42, 0x01, 0xd0, 0x00, 0x20, 0x08, 0xbd, 0x01, 0x20, 0x08, 0xbd, 0x03, 0x00, +0xca, 0x49, 0x00, 0x20, 0x00, 0xb5, 0x02, 0xf0, 0xf0, 0xee, 0x07, 0x05, 0x07, 0x09, 0x0b, 0x0d, +0x06, 0x0f, 0x06, 0x00, 0xc7, 0x48, 0x00, 0xbd, 0x08, 0x68, 0x00, 0xbd, 0xc6, 0x48, 0x00, 0xbd, +0xc6, 0x48, 0x00, 0xbd, 0xc6, 0x48, 0x00, 0xbd, 0x48, 0x68, 0x00, 0xbd, 0x70, 0x47, 0x10, 0xb5, +0x00, 0xf0, 0x5b, 0xf9, 0x03, 0xf0, 0x88, 0xea, 0x01, 0x20, 0x03, 0xf0, 0x8a, 0xea, 0xbb, 0x49, +0xc8, 0x60, 0x00, 0x20, 0x10, 0xbd, 0x00, 0x22, 0x11, 0x00, 0x10, 0x00, 0x13, 0x00, 0x10, 0xb5, +0x02, 0xf0, 0x12, 0xed, 0x03, 0xf0, 0x80, 0xea, 0xb4, 0x48, 0xc0, 0x68, 0xc2, 0x6b, 0xc1, 0x6a, +0xb8, 0x48, 0x00, 0x68, 0x03, 0xf0, 0x7c, 0xea, 0xb7, 0x48, 0x01, 0x68, 0x00, 0x29, 0x03, 0xd1, +0x01, 0x21, 0x01, 0x60, 0x1f, 0xf0, 0x63, 0xfa, 0x03, 0xf0, 0x76, 0xea, 0x03, 0xf0, 0x78, 0xea, +0x03, 0xf0, 0x7a, 0xea, 0x02, 0xf0, 0x80, 0xed, 0x02, 0xf0, 0x82, 0xed, 0xb0, 0x49, 0xaf, 0x48, +0x48, 0x61, 0xaf, 0x48, 0x40, 0x30, 0x42, 0x68, 0x80, 0x23, 0x1a, 0x43, 0x42, 0x60, 0x42, 0x68, +0x43, 0x06, 0x1a, 0x43, 0x42, 0x60, 0x0a, 0x69, 0x00, 0x22, 0x0a, 0x61, 0x82, 0x60, 0x01, 0x68, +0x02, 0x60, 0x02, 0xf0, 0xd6, 0xe9, 0x04, 0x00, 0x03, 0xf0, 0x62, 0xea, 0x03, 0xf0, 0x64, 0xea, +0x03, 0xf0, 0x66, 0xea, 0x20, 0x00, 0x02, 0xf0, 0xe0, 0xe9, 0x02, 0xf0, 0xa2, 0xeb, 0x04, 0x20, +0x03, 0xf0, 0x62, 0xea, 0x03, 0xf0, 0x64, 0xea, 0x00, 0x20, 0x10, 0xbd, 0x10, 0xb5, 0x00, 0x24, +0x86, 0xb0, 0x03, 0xf0, 0x62, 0xea, 0x03, 0xf0, 0x64, 0xea, 0xfb, 0xf7, 0xcc, 0xfc, 0x00, 0x22, +0x06, 0x21, 0x20, 0x00, 0xfb, 0xf7, 0xcb, 0xfc, 0xfb, 0xf7, 0x1b, 0xfd, 0x03, 0xf0, 0x5c, 0xea, +0x03, 0xf0, 0x5e, 0xea, 0x93, 0x48, 0x01, 0x90, 0x93, 0x48, 0x02, 0x90, 0x93, 0x48, 0x03, 0x90, +0x93, 0x48, 0x04, 0x90, 0x01, 0xa8, 0x03, 0xf0, 0x58, 0xea, 0x03, 0xf0, 0x5a, 0xea, 0x03, 0xf0, +0x5c, 0xea, 0xf6, 0xf7, 0x7f, 0xf8, 0x03, 0xf0, 0x5c, 0xea, 0x00, 0x20, 0x02, 0xf0, 0x2c, 0xee, +0x03, 0xf0, 0x5a, 0xea, 0x03, 0xf0, 0x5c, 0xea, 0x03, 0xf0, 0x5e, 0xea, 0x03, 0xf0, 0x60, 0xea, +0x01, 0xf0, 0x96, 0xff, 0x03, 0xf0, 0x60, 0xea, 0x03, 0xf0, 0x62, 0xea, 0x04, 0x00, 0x00, 0x22, +0x76, 0x48, 0x00, 0x92, 0x40, 0x69, 0x08, 0x22, 0x01, 0x21, 0x05, 0xab, 0x03, 0xf0, 0x5c, 0xea, +0x20, 0x00, 0x06, 0xb0, 0x10, 0xbd, 0xfe, 0xb5, 0x00, 0x24, 0x01, 0x88, 0x7d, 0x4a, 0x91, 0x42, +0x77, 0xd0, 0x01, 0x22, 0x12, 0x03, 0x91, 0x42, 0x02, 0xd1, 0x7b, 0x49, 0x08, 0x24, 0x0c, 0xe0, +0x01, 0x22, 0x52, 0x03, 0x91, 0x42, 0x02, 0xd1, 0x78, 0x49, 0x04, 0x24, 0x05, 0xe0, 0x01, 0x22, +0xd2, 0x02, 0x91, 0x42, 0x02, 0xd1, 0x76, 0x49, 0x10, 0x24, 0x01, 0x80, 0x01, 0x88, 0x75, 0x4a, +0xac, 0x31, 0x11, 0x80, 0x01, 0x88, 0x08, 0x39, 0x01, 0x80, 0x05, 0xe0, 0x28, 0x00, 0x02, 0xf0, +0x6c, 0xe9, 0x01, 0x20, 0x02, 0xf0, 0xc4, 0xe9, 0x02, 0xf0, 0x52, 0xe9, 0x05, 0x00, 0x6e, 0x48, +0x02, 0xf0, 0x4a, 0xed, 0x06, 0x00, 0x6c, 0x48, 0x08, 0x21, 0x03, 0xf0, 0x2a, 0xea, 0x07, 0x00, +0x69, 0x48, 0x10, 0x21, 0x03, 0xf0, 0x24, 0xea, 0x38, 0x18, 0x86, 0x42, 0xe6, 0xd1, 0x67, 0x4e, +0x00, 0x22, 0x30, 0x68, 0x41, 0x21, 0x02, 0xf0, 0x70, 0xeb, 0x65, 0x49, 0x62, 0x48, 0x03, 0xf0, +0x1c, 0xea, 0x60, 0x48, 0x27, 0x06, 0x01, 0x88, 0x62, 0x48, 0x3f, 0x0e, 0x81, 0x80, 0x87, 0x71, +0x61, 0x48, 0x60, 0x49, 0x02, 0x68, 0x00, 0x92, 0x60, 0x4a, 0x5b, 0x48, 0x60, 0x4b, 0x03, 0xf0, +0x10, 0xea, 0x10, 0x2c, 0x05, 0xd0, 0x01, 0x20, 0x03, 0x2c, 0x00, 0xd9, 0x60, 0x08, 0x04, 0x06, +0x24, 0x0e, 0x22, 0x00, 0x04, 0x21, 0x00, 0x20, 0x03, 0xf0, 0x06, 0xea, 0x3a, 0x00, 0x00, 0x21, +0x01, 0x20, 0x03, 0xf0, 0x02, 0xea, 0x3a, 0x00, 0x00, 0x21, 0x02, 0x20, 0x03, 0xf0, 0xfc, 0xe9, +0x22, 0x00, 0x04, 0x21, 0x03, 0x20, 0x03, 0xf0, 0xf8, 0xe9, 0x03, 0xf0, 0xfa, 0xe9, 0x28, 0x00, +0x02, 0xf0, 0x1a, 0xe9, 0x04, 0x20, 0x01, 0x90, 0x30, 0x68, 0x42, 0x21, 0x01, 0xaa, 0x02, 0xf0, +0x34, 0xeb, 0xfe, 0xbd, 0xf8, 0xb5, 0x00, 0x25, 0x4a, 0x4f, 0x3e, 0x68, 0x4a, 0x48, 0x06, 0x40, +0x03, 0xf0, 0xea, 0xe9, 0x00, 0x90, 0x38, 0x68, 0x01, 0x21, 0x09, 0x07, 0x88, 0x43, 0x38, 0x60, +0x38, 0x68, 0x46, 0x49, 0x08, 0x43, 0x38, 0x60, 0x03, 0xf0, 0xe2, 0xe9, 0x03, 0xf0, 0xe4, 0xe9, +0x00, 0x24, 0x2d, 0x49, 0xa0, 0x00, 0x10, 0x31, 0x08, 0x58, 0x80, 0x47, 0x00, 0x28, 0x00, 0xd0, +0x01, 0x25, 0x64, 0x1c, 0x0a, 0x2c, 0xf4, 0xd3, 0x03, 0xf0, 0xda, 0xe9, 0x03, 0xf0, 0xdc, 0xe9, +0x3b, 0x48, 0x00, 0x68, 0x03, 0xf0, 0xdc, 0xe9, 0x3a, 0x48, 0x00, 0x68, 0x03, 0xf0, 0xd8, 0xe9, +0x39, 0x48, 0x00, 0x68, 0x03, 0xf0, 0xd4, 0xe9, 0x38, 0x68, 0x33, 0x49, 0xc9, 0x43, 0x08, 0x40, +0x30, 0x43, 0x38, 0x60, 0x00, 0x98, 0x03, 0xf0, 0xf0, 0xe8, 0x0f, 0x90, 0x01, 0x00, 0x00, 0x00, +0x58, 0xb8, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xbc, 0xc1, 0x1a, 0x2f, 0xd0, 0xe9, 0x03, 0xf0, +0xd2, 0xe9, 0x28, 0x00, 0xf8, 0xbd, 0x32, 0x48, 0x00, 0x09, 0x00, 0x01, 0x70, 0x47, 0x31, 0x48, +0x61, 0x21, 0x10, 0xb5, 0x02, 0xf0, 0xce, 0xe8, 0x2e, 0x4c, 0x0c, 0x20, 0x50, 0x34, 0xa0, 0x72, +0x00, 0x20, 0xe0, 0x72, 0x2b, 0x48, 0x01, 0x22, 0x01, 0x78, 0x11, 0x43, 0x01, 0x70, 0x01, 0x79, +0x20, 0x22, 0x11, 0x43, 0x01, 0x71, 0x01, 0x20, 0x02, 0xf0, 0xc0, 0xee, 0x26, 0x48, 0x00, 0x88, +0x20, 0x72, 0x00, 0x0a, 0x60, 0x72, 0xff, 0x21, 0x20, 0x00, 0x10, 0x30, 0x01, 0x70, 0x10, 0xbd, +0xe8, 0x1c, 0x01, 0xc0, 0x58, 0x30, 0x33, 0x38, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x6b, 0x01, 0xc0, +0x00, 0x73, 0x01, 0xc0, 0x00, 0x0e, 0x02, 0xc0, 0x38, 0x52, 0x00, 0x04, 0x34, 0xf6, 0x00, 0xc0, +0xbf, 0xa8, 0x12, 0x9e, 0x00, 0xa5, 0x00, 0x80, 0x6c, 0xf4, 0x00, 0xc0, 0x70, 0xf4, 0x00, 0xc0, +0x78, 0xf0, 0x00, 0xc0, 0x74, 0xf4, 0x00, 0xc0, 0xff, 0xff, 0x00, 0x00, 0x88, 0x0e, 0x00, 0x00, +0x10, 0x1d, 0x00, 0x00, 0x44, 0x07, 0x00, 0x00, 0x56, 0xf0, 0x00, 0xc0, 0x30, 0x00, 0x00, 0x04, +0x18, 0xee, 0x00, 0xc0, 0x27, 0x11, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x04, 0x0c, 0xf1, 0x00, 0xc0, +0xb8, 0x48, 0x00, 0x04, 0x00, 0x80, 0x02, 0xc0, 0x00, 0x28, 0x00, 0x80, 0x00, 0x30, 0x00, 0x30, +0x00, 0x30, 0x00, 0x20, 0xb8, 0x76, 0x02, 0x00, 0x68, 0xf4, 0x00, 0xc0, 0x08, 0x77, 0x02, 0x00, +0x68, 0xc9, 0x01, 0xc0, 0x82, 0x55, 0x00, 0x04, 0x80, 0x20, 0x00, 0x80, 0x10, 0xb5, 0x04, 0x00, +0x0a, 0x21, 0x02, 0xf0, 0x68, 0xe8, 0x7f, 0x20, 0x20, 0x70, 0x08, 0x20, 0x60, 0x70, 0xa0, 0x78, +0x01, 0x21, 0x08, 0x43, 0xa0, 0x70, 0x10, 0xbd, 0x4a, 0x21, 0x01, 0x70, 0x0e, 0x21, 0x41, 0x70, +0x14, 0x21, 0x00, 0x22, 0x81, 0x70, 0xc2, 0x70, 0x0a, 0x22, 0x02, 0x71, 0x00, 0x22, 0x42, 0x71, +0xff, 0x22, 0x2d, 0x32, 0x82, 0x71, 0x12, 0x0a, 0xc2, 0x71, 0xc8, 0x22, 0x02, 0x72, 0x00, 0x22, +0x42, 0x72, 0x0a, 0x0a, 0x81, 0x72, 0xc2, 0x72, 0x05, 0x22, 0x02, 0x73, 0x00, 0x22, 0x42, 0x73, +0x81, 0x73, 0x09, 0x0a, 0xc1, 0x73, 0x70, 0x47, 0xf0, 0xb5, 0x05, 0x00, 0x89, 0xb0, 0x02, 0xf0, +0x5a, 0xe8, 0x04, 0x00, 0x28, 0x00, 0x02, 0xf0, 0x62, 0xe8, 0x07, 0x00, 0x00, 0x2c, 0x7e, 0xd0, +0x00, 0x2f, 0x7c, 0xd0, 0x26, 0x00, 0xff, 0x36, 0x10, 0x20, 0xe1, 0x36, 0xb0, 0x73, 0x30, 0x00, +0x20, 0x22, 0x12, 0x38, 0xfd, 0xa1, 0x03, 0xf0, 0x22, 0xe9, 0x64, 0x20, 0x30, 0x82, 0x01, 0x20, +0xf0, 0x73, 0xff, 0x48, 0x30, 0x83, 0x40, 0x1e, 0x70, 0x83, 0x07, 0x20, 0x30, 0x77, 0x70, 0x77, +0xfc, 0x4e, 0x20, 0x00, 0xff, 0x30, 0x31, 0x68, 0x06, 0x22, 0xf3, 0x30, 0x02, 0xf0, 0x1e, 0xe8, +0xb1, 0x20, 0x80, 0x00, 0x31, 0x68, 0x28, 0x18, 0x06, 0x22, 0x06, 0x00, 0x02, 0xf0, 0xe2, 0xef, +0x28, 0x7a, 0x01, 0x23, 0x02, 0x28, 0x00, 0xd1, 0x00, 0x23, 0x0b, 0x20, 0x80, 0x01, 0x28, 0x18, +0x08, 0x90, 0x82, 0x7a, 0x31, 0x00, 0x02, 0x20, 0x02, 0xf0, 0xd0, 0xe9, 0xe0, 0x1d, 0xff, 0x30, +0xfa, 0x30, 0x07, 0x90, 0x41, 0x7f, 0x11, 0x23, 0x4a, 0x08, 0x52, 0x00, 0x06, 0x21, 0x0a, 0x43, +0x5b, 0x01, 0x01, 0x21, 0xe3, 0x18, 0x19, 0x70, 0xc1, 0x77, 0xc7, 0x21, 0x0a, 0x40, 0x42, 0x77, +0x21, 0x20, 0x00, 0x01, 0x20, 0x18, 0x81, 0x7b, 0x42, 0x7b, 0x09, 0x02, 0x11, 0x43, 0xff, 0x22, +0xc1, 0x32, 0x91, 0x43, 0x41, 0x73, 0x09, 0x0a, 0x81, 0x73, 0x20, 0x00, 0x80, 0x30, 0x0b, 0x21, +0x06, 0x90, 0x01, 0x71, 0x62, 0x21, 0xec, 0x30, 0x02, 0xf0, 0x1c, 0xe9, 0x00, 0x26, 0xf3, 0x20, +0xcf, 0x21, 0x2e, 0xe0, 0xf0, 0x00, 0x80, 0x1b, 0x00, 0x19, 0x05, 0x90, 0xff, 0x30, 0x61, 0x30, +0x71, 0x1c, 0x04, 0x90, 0x41, 0x73, 0x01, 0x7b, 0xc3, 0x22, 0x89, 0x08, 0x89, 0x00, 0x11, 0x40, +0x01, 0x73, 0x81, 0x7b, 0x03, 0x22, 0x11, 0x43, 0x81, 0x73, 0x06, 0x98, 0x01, 0x79, 0x7d, 0x20, +0x00, 0x01, 0x01, 0xf0, 0xe0, 0xef, 0x6e, 0x28, 0x00, 0xd9, 0x6e, 0x20, 0x00, 0xe0, 0xe7, 0xe0, +0x04, 0x99, 0xc8, 0x73, 0x00, 0x0a, 0x08, 0x74, 0x06, 0x98, 0x01, 0x79, 0x7d, 0x20, 0x00, 0x01, +0x01, 0xf0, 0xd0, 0xef, 0x05, 0x99, 0xff, 0x31, 0x71, 0x31, 0x48, 0x70, 0x00, 0x0a, 0x76, 0x1c, +0x88, 0x70, 0x06, 0x98, 0x00, 0x79, 0xb0, 0x42, 0xcc, 0xd8, 0x20, 0x00, 0x0e, 0x30, 0x02, 0xf0, +0x5e, 0xe8, 0x00, 0x21, 0xfe, 0x20, 0x21, 0x77, 0xa0, 0x77, 0xe1, 0x77, 0x2a, 0x7a, 0x08, 0x20, +0x20, 0x22, 0x10, 0x55, 0xa0, 0x18, 0x03, 0x90, 0x81, 0x70, 0x01, 0x21, 0x41, 0x70, 0xe1, 0x20, +0xc0, 0x00, 0x20, 0x60, 0x29, 0x7a, 0x03, 0x29, 0x01, 0xd0, 0xff, 0x20, 0x91, 0x30, 0x60, 0x60, +0x20, 0x00, 0x03, 0xf0, 0x80, 0xe8, 0x4b, 0x20, 0xc0, 0x00, 0x20, 0x18, 0x03, 0xf0, 0x7e, 0xe8, +0x09, 0x20, 0x80, 0x01, 0x20, 0x18, 0x01, 0x7e, 0xdf, 0x22, 0x11, 0x40, 0x07, 0x9a, 0x52, 0x7f, +0xd2, 0x07, 0xd2, 0x17, 0x52, 0x1c, 0xd2, 0x07, 0x92, 0x0e, 0x11, 0x43, 0x01, 0x76, 0xe9, 0x7a, +0x28, 0x7a, 0xf5, 0xf7, 0x49, 0xff, 0xe6, 0x6f, 0x00, 0x2e, 0x11, 0xd0, 0x08, 0x36, 0x54, 0x21, +0x30, 0x00, 0x02, 0xf0, 0xa8, 0xe8, 0x03, 0x20, 0xb0, 0x71, 0xf0, 0x79, 0x04, 0x21, 0x00, 0x09, +0x00, 0x01, 0xf0, 0x71, 0x48, 0x20, 0x81, 0x55, 0xb0, 0x7a, 0x40, 0x08, 0x40, 0x00, 0xb0, 0x72, +0x20, 0x00, 0x03, 0xf0, 0x58, 0xe8, 0x03, 0x98, 0x40, 0x78, 0xc0, 0x09, 0x06, 0xd0, 0x06, 0x98, +0x00, 0x68, 0x00, 0x28, 0x02, 0xd0, 0x06, 0x98, 0x01, 0xf0, 0xac, 0xef, 0x01, 0x26, 0x66, 0x64, +0x07, 0x98, 0xfb, 0x22, 0x06, 0x77, 0x1d, 0x20, 0x40, 0x01, 0x20, 0x18, 0x01, 0x79, 0x11, 0x40, +0x89, 0x08, 0x89, 0x00, 0x49, 0x1c, 0x01, 0x71, 0x20, 0x00, 0x48, 0x30, 0x02, 0x90, 0x03, 0xf0, +0x3e, 0xe8, 0xe0, 0x1d, 0xff, 0x30, 0xfc, 0x30, 0xff, 0xf7, 0xce, 0xfe, 0x86, 0x48, 0x20, 0x18, +0xff, 0xf7, 0xbc, 0xfe, 0x20, 0x00, 0x28, 0x30, 0x66, 0x62, 0x00, 0x21, 0x01, 0x90, 0x03, 0xf0, +0x32, 0xe8, 0xff, 0x20, 0x69, 0x30, 0x06, 0x51, 0x01, 0x98, 0x31, 0x00, 0x03, 0xf0, 0x2e, 0xe8, +0x20, 0x00, 0x80, 0x21, 0xe8, 0x30, 0x02, 0xf0, 0x5e, 0xe8, 0x20, 0x00, 0x02, 0x22, 0xe0, 0x30, +0xc2, 0x81, 0x06, 0x82, 0x41, 0x8a, 0xb1, 0x43, 0x91, 0x43, 0x41, 0x82, 0xff, 0x20, 0x00, 0x26, +0x65, 0x30, 0x06, 0x55, 0x10, 0x00, 0x02, 0xf0, 0xb6, 0xe8, 0xa8, 0x42, 0x05, 0xd1, 0x28, 0x00, +0x03, 0xf0, 0x18, 0xe8, 0x29, 0x00, 0x03, 0xf0, 0x1a, 0xe8, 0x06, 0x20, 0x78, 0x72, 0x38, 0x7a, +0xc3, 0x21, 0x80, 0x08, 0x80, 0x00, 0x08, 0x40, 0x80, 0x06, 0x80, 0x0e, 0x38, 0x72, 0x39, 0x68, +0x11, 0x20, 0x40, 0x01, 0x09, 0x18, 0x4e, 0x80, 0x3a, 0x68, 0x14, 0x21, 0x12, 0x18, 0x91, 0x80, +0x3a, 0x68, 0x03, 0x21, 0x10, 0x18, 0xc1, 0x80, 0x07, 0x98, 0x3b, 0x00, 0x86, 0x61, 0x21, 0x00, +0x02, 0x9a, 0x08, 0x33, 0x64, 0x31, 0x20, 0x00, 0xc6, 0xfd, 0xca, 0xf8, 0x01, 0x00, 0x00, 0x00, +0x54, 0xbc, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x3b, 0x97, 0x14, 0x7d, 0xf5, 0xf7, 0xfe, 0xfe, +0xa1, 0x7f, 0x38, 0x20, 0x41, 0x55, 0xe8, 0x68, 0xff, 0x21, 0x49, 0x1c, 0x88, 0x43, 0x40, 0x34, +0xe8, 0x60, 0x66, 0x80, 0x07, 0x98, 0x01, 0x21, 0x46, 0x82, 0x08, 0x98, 0x00, 0x69, 0xff, 0x30, +0x41, 0x30, 0x81, 0x81, 0x09, 0xb0, 0xf0, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x01, 0xf0, 0xe4, 0xee, +0x04, 0x00, 0x28, 0x00, 0xff, 0xf7, 0x82, 0xfe, 0x20, 0x00, 0x01, 0xf0, 0xda, 0xfc, 0x20, 0x00, +0x02, 0xf0, 0xda, 0xef, 0x70, 0xbd, 0xf8, 0xb5, 0x0c, 0x00, 0x05, 0x00, 0x11, 0x00, 0x00, 0x2c, +0x60, 0xd0, 0x20, 0x00, 0xff, 0x30, 0x06, 0x22, 0x4a, 0x30, 0x01, 0xf0, 0xba, 0xee, 0x28, 0x00, +0x80, 0x30, 0x21, 0x00, 0xc2, 0x69, 0x80, 0x31, 0xca, 0x61, 0x2b, 0x00, 0xa0, 0x33, 0x22, 0x00, +0x1e, 0x78, 0xa0, 0x32, 0x16, 0x70, 0x9e, 0x78, 0x96, 0x70, 0x5e, 0x78, 0x56, 0x70, 0xdb, 0x78, +0xd3, 0x70, 0xff, 0x22, 0x49, 0x32, 0x53, 0x5d, 0x13, 0x55, 0x22, 0x00, 0x20, 0x32, 0x13, 0x00, +0x52, 0x7e, 0xf7, 0x26, 0x32, 0x40, 0x39, 0x26, 0x76, 0x5d, 0x04, 0x27, 0x36, 0x07, 0xf6, 0x0f, +0xf6, 0x00, 0x32, 0x43, 0x5a, 0x76, 0x09, 0x23, 0x9b, 0x01, 0xee, 0x18, 0xb4, 0x46, 0x76, 0x6a, +0xe3, 0x18, 0x5e, 0x62, 0xe6, 0x68, 0xbe, 0x43, 0xef, 0x68, 0x7f, 0x07, 0xff, 0x0f, 0xbf, 0x00, +0x3e, 0x43, 0x10, 0x27, 0xe6, 0x60, 0xbe, 0x43, 0xef, 0x68, 0xff, 0x06, 0xff, 0x0f, 0x3f, 0x01, +0x3e, 0x43, 0xe6, 0x60, 0x07, 0x69, 0x0f, 0x61, 0x87, 0x69, 0x8f, 0x61, 0xc7, 0x68, 0xcf, 0x60, +0x40, 0x69, 0x48, 0x61, 0xff, 0x20, 0x40, 0x1c, 0x86, 0x43, 0xe8, 0x68, 0xc0, 0x05, 0xc0, 0x0f, +0x00, 0x02, 0x06, 0x43, 0x10, 0x07, 0xe6, 0x60, 0x02, 0xd5, 0x60, 0x46, 0x80, 0x6a, 0x98, 0x62, +0x20, 0x00, 0x01, 0xf0, 0x86, 0xee, 0x06, 0x00, 0x28, 0x00, 0x01, 0xf0, 0x82, 0xee, 0x00, 0x89, +0x30, 0x81, 0x11, 0xe0, 0x2c, 0x00, 0x28, 0x00, 0x01, 0xf0, 0x7a, 0xee, 0x41, 0x7a, 0x06, 0x00, +0x0b, 0x20, 0x80, 0x01, 0x20, 0x18, 0x02, 0x69, 0x11, 0x73, 0x02, 0x69, 0x31, 0x7a, 0x51, 0x73, +0x00, 0x69, 0x89, 0x06, 0x89, 0x0e, 0x41, 0x73, 0x20, 0x00, 0x01, 0xf0, 0x5e, 0xee, 0x05, 0x00, +0xe0, 0x68, 0xc0, 0x21, 0x88, 0x43, 0xe0, 0x60, 0x0e, 0x22, 0x20, 0x00, 0x0c, 0x36, 0xa9, 0x18, +0x4a, 0x30, 0x01, 0xf0, 0x3e, 0xee, 0x20, 0x00, 0x29, 0x7f, 0x80, 0x30, 0x81, 0x80, 0x0f, 0xe0, +0x4d, 0x61, 0x72, 0x76, 0x65, 0x6c, 0x6c, 0x20, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x20, 0x41, 0x50, +0x00, 0x00, 0x00, 0x00, 0x2b, 0x09, 0x00, 0x00, 0x50, 0xf4, 0x00, 0xc0, 0x2e, 0x02, 0x00, 0x00, +0x01, 0x21, 0xc1, 0x80, 0x60, 0x38, 0x00, 0x90, 0x41, 0x7e, 0x10, 0x22, 0x11, 0x43, 0x41, 0x76, +0xff, 0x30, 0x2b, 0x49, 0x21, 0x30, 0x01, 0x80, 0x41, 0x80, 0x00, 0x21, 0x0f, 0x22, 0x81, 0x80, +0x82, 0x71, 0x01, 0x82, 0x29, 0x00, 0xff, 0x31, 0x06, 0x22, 0xf3, 0x31, 0xc2, 0x38, 0x01, 0xf0, +0x10, 0xee, 0xe0, 0x68, 0x40, 0x05, 0x1e, 0xd5, 0x0b, 0x20, 0x80, 0x01, 0x20, 0x18, 0x07, 0x69, +0x29, 0x00, 0xff, 0x31, 0x38, 0x00, 0x20, 0x22, 0xcf, 0x31, 0x2c, 0x30, 0x02, 0xf0, 0xf0, 0xee, +0x28, 0x00, 0xff, 0x30, 0xe1, 0x30, 0x82, 0x7b, 0x2b, 0x21, 0xca, 0x55, 0x01, 0x8a, 0x40, 0x37, +0xb9, 0x81, 0xc1, 0x7b, 0xb9, 0x73, 0x01, 0x8b, 0x39, 0x82, 0x41, 0x8b, 0x79, 0x82, 0x01, 0x7f, +0x39, 0x75, 0x40, 0x7f, 0x78, 0x75, 0xe0, 0x68, 0x01, 0x21, 0x09, 0x03, 0x88, 0x43, 0xe0, 0x60, +0x07, 0x20, 0xc0, 0x01, 0x28, 0x18, 0xc0, 0x69, 0x30, 0x60, 0x00, 0x20, 0x54, 0x21, 0x88, 0x55, +0xb0, 0x67, 0x60, 0x36, 0xb0, 0x82, 0x00, 0x98, 0xa9, 0x7f, 0x01, 0x76, 0xf8, 0xbd, 0x8c, 0x21, +0x01, 0x70, 0x12, 0x21, 0x41, 0x70, 0x98, 0x21, 0x81, 0x70, 0x24, 0x21, 0xc1, 0x70, 0xb0, 0x21, +0x01, 0x71, 0x48, 0x21, 0x41, 0x71, 0x60, 0x21, 0x81, 0x71, 0x6c, 0x21, 0xc1, 0x71, 0x70, 0x47, +0xff, 0xff, 0x00, 0x00, 0x70, 0xb5, 0x00, 0x24, 0x02, 0x20, 0x01, 0xf0, 0x72, 0xee, 0x03, 0x20, +0x01, 0xf0, 0x6e, 0xee, 0x03, 0x20, 0x01, 0xf0, 0xcc, 0xed, 0x00, 0x28, 0x26, 0xd0, 0x00, 0x20, +0x01, 0xf0, 0x5a, 0xef, 0x05, 0x00, 0x02, 0x21, 0x03, 0x20, 0x01, 0xf0, 0x76, 0xee, 0x00, 0x28, +0x05, 0xd1, 0x03, 0x21, 0x08, 0x00, 0x01, 0xf0, 0x70, 0xee, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x24, +0x28, 0x7a, 0x00, 0x28, 0x02, 0xd1, 0x00, 0x2c, 0x12, 0xd0, 0x0b, 0xe0, 0x03, 0x28, 0x0f, 0xd1, +0x00, 0x20, 0x01, 0xf0, 0xae, 0xed, 0x00, 0x28, 0x06, 0xd0, 0xff, 0x30, 0x41, 0x30, 0x00, 0x7a, +0x04, 0x28, 0x01, 0xd1, 0x01, 0x20, 0x70, 0xbd, 0x00, 0x2c, 0x01, 0xd0, 0x00, 0x20, 0x70, 0xbd, +0xff, 0x48, 0x00, 0x68, 0x70, 0xbd, 0xf8, 0xb5, 0x0d, 0x00, 0x16, 0x00, 0x01, 0xf0, 0x3c, 0xee, +0x2d, 0x1d, 0x36, 0x1f, 0x04, 0x00, 0x36, 0x04, 0x36, 0x0c, 0x89, 0xe0, 0xa8, 0x78, 0x69, 0x78, +0x00, 0x02, 0x08, 0x43, 0xc0, 0x1c, 0x2b, 0x78, 0x07, 0x04, 0x3f, 0x0c, 0x00, 0x20, 0x9b, 0x1e, +0x02, 0xf0, 0x16, 0xea, 0x10, 0x15, 0x09, 0x39, 0x58, 0x1a, 0x4e, 0x5d, 0x53, 0x7a, 0x2f, 0x72, +0x0e, 0x7a, 0x49, 0x62, 0x68, 0x7a, 0x3a, 0x00, 0x29, 0x00, 0x20, 0x00, 0xba, 0x30, 0x03, 0xe0, +0x3a, 0x00, 0xec, 0x48, 0x29, 0x00, 0x53, 0xe0, 0x01, 0xf0, 0x62, 0xed, 0x5e, 0xe0, 0x3a, 0x00, +0x29, 0x00, 0x20, 0x00, 0xac, 0x30, 0xf7, 0xe7, 0x20, 0x00, 0x3a, 0x00, 0x29, 0x00, 0xc3, 0x30, +0x01, 0xf0, 0x56, 0xed, 0x20, 0x00, 0x3a, 0x00, 0x29, 0x00, 0xcb, 0x30, 0x01, 0xf0, 0x50, 0xed, +0x20, 0x68, 0x01, 0x21, 0x49, 0x04, 0x08, 0x43, 0x04, 0x21, 0x20, 0x60, 0xc8, 0x20, 0x01, 0x55, +0x44, 0xe0, 0x20, 0x00, 0x3a, 0x00, 0x29, 0x00, 0xd7, 0x30, 0x01, 0xf0, 0x42, 0xed, 0x04, 0x21, +0xdc, 0x20, 0x01, 0x55, 0x3a, 0xe0, 0x20, 0x00, 0x3a, 0x00, 0x29, 0x00, 0xd3, 0x30, 0x01, 0xf0, +0x38, 0xed, 0x20, 0x00, 0xc0, 0x30, 0x82, 0x7d, 0xe9, 0x78, 0xd2, 0x07, 0xd2, 0x0f, 0x49, 0x00, +0x0a, 0x43, 0x82, 0x75, 0x2a, 0xe0, 0xcf, 0x48, 0x3a, 0x00, 0x29, 0x00, 0x54, 0x30, 0x17, 0xe0, +0xcc, 0x48, 0x3a, 0x00, 0x29, 0x00, 0x7d, 0x30, 0x12, 0xe0, 0xca, 0x48, 0x3a, 0x00, 0x29, 0x00, +0xac, 0x30, 0x0d, 0xe0, 0xc7, 0x48, 0x3a, 0x00, 0x29, 0x00, 0xa7, 0x30, 0x08, 0xe0, 0xc5, 0x48, +0x3a, 0x00, 0x29, 0x00, 0x8a, 0x30, 0x03, 0xe0, 0xc2, 0x48, 0x3a, 0x00, 0x29, 0x00, 0x91, 0x30, +0x20, 0x18, 0xa9, 0xe7, 0x20, 0x00, 0x3a, 0x00, 0x29, 0x00, 0xcb, 0x30, 0x01, 0xf0, 0x08, 0xed, +0x04, 0x21, 0xd0, 0x20, 0x01, 0x55, 0x01, 0xe0, 0x01, 0x28, 0x05, 0xd0, 0x2a, 0x78, 0x01, 0x20, +0x21, 0x68, 0x90, 0x40, 0x01, 0x43, 0x21, 0x60, 0xed, 0x19, 0xf0, 0x1b, 0x06, 0x04, 0x36, 0x0c, +0x00, 0x2e, 0x00, 0xd0, 0x72, 0xe7, 0xf8, 0xbd, 0xf7, 0xb5, 0x88, 0xb0, 0x0d, 0x00, 0x01, 0xf0, +0xa4, 0xed, 0x06, 0x00, 0xad, 0x1d, 0xb0, 0x49, 0x7a, 0x17, 0xbf, 0xe8, 0x01, 0x00, 0x00, 0x00, +0x50, 0xc0, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xa1, 0xaa, 0x40, 0xfd, 0x04, 0x22, 0x28, 0x00, +0x01, 0xf0, 0xe8, 0xec, 0x2d, 0x1d, 0x04, 0x24, 0x00, 0x27, 0x01, 0x20, 0x31, 0x68, 0xb8, 0x40, +0x01, 0x42, 0x59, 0xd0, 0xbb, 0x1e, 0x02, 0xf0, 0x7e, 0xe9, 0x10, 0x12, 0x09, 0x3f, 0x99, 0x1b, +0x6b, 0x99, 0x99, 0x99, 0x31, 0x99, 0x1f, 0x99, 0x58, 0x7a, 0x8f, 0x99, 0x31, 0x00, 0x09, 0x22, +0xba, 0x31, 0x28, 0x00, 0x01, 0xf0, 0xce, 0xec, 0x09, 0x35, 0x09, 0x34, 0x84, 0xe0, 0x31, 0x00, +0x05, 0x22, 0xac, 0x31, 0x28, 0x00, 0x01, 0xf0, 0xc6, 0xec, 0x6d, 0x1d, 0x64, 0x1d, 0x7b, 0xe0, +0x08, 0x22, 0x31, 0x00, 0xc3, 0x31, 0x72, 0xe0, 0x3f, 0x20, 0x00, 0x01, 0x30, 0x18, 0x07, 0x90, +0x01, 0x7b, 0xc0, 0x7a, 0x0a, 0x02, 0x02, 0x43, 0x93, 0x48, 0xd2, 0x1c, 0x31, 0x18, 0x28, 0x00, +0x01, 0xf0, 0xb0, 0xec, 0x07, 0x98, 0x01, 0x7b, 0xc2, 0x7a, 0x5a, 0xe0, 0x30, 0x00, 0xc0, 0x30, +0x06, 0x90, 0x02, 0x8b, 0x31, 0x00, 0xd2, 0x1c, 0xd7, 0x31, 0x28, 0x00, 0x01, 0xf0, 0xa2, 0xec, +0x06, 0x98, 0x3a, 0xe0, 0xed, 0x1c, 0x12, 0xe0, 0x30, 0x00, 0xc0, 0x30, 0x05, 0x90, 0x80, 0x7d, +0x31, 0x00, 0x40, 0x08, 0x01, 0x90, 0x05, 0x98, 0xd3, 0x31, 0x82, 0x8a, 0x28, 0x00, 0xd2, 0x1c, +0x01, 0xf0, 0x90, 0xec, 0x01, 0x98, 0xed, 0x1c, 0x28, 0x70, 0x05, 0x98, 0x80, 0x8a, 0xe4, 0x1c, +0x45, 0x19, 0x00, 0x19, 0x04, 0x04, 0x24, 0x0c, 0x40, 0xe0, 0x11, 0x20, 0x80, 0x01, 0x30, 0x18, +0x04, 0x90, 0x01, 0x7c, 0xc0, 0x7b, 0x0a, 0x02, 0x02, 0x43, 0x77, 0x48, 0xd2, 0x1c, 0x54, 0x30, +0x31, 0x18, 0x28, 0x00, 0x01, 0xf0, 0x76, 0xec, 0x04, 0x98, 0x01, 0x7c, 0xc2, 0x7b, 0x20, 0xe0, +0x23, 0x20, 0x40, 0x01, 0x30, 0x18, 0x03, 0x90, 0x02, 0x8b, 0x6f, 0x48, 0xd2, 0x1c, 0x7d, 0x30, +0x31, 0x18, 0x28, 0x00, 0x01, 0xf0, 0x66, 0xec, 0x03, 0x98, 0x00, 0x8b, 0xc2, 0xe7, 0x25, 0x20, +0x40, 0x01, 0x30, 0x18, 0x02, 0x90, 0x01, 0x7a, 0xc0, 0x79, 0x0a, 0x02, 0x02, 0x43, 0x66, 0x48, +0xd2, 0x1c, 0xac, 0x30, 0x31, 0x18, 0x28, 0x00, 0x01, 0xf0, 0x54, 0xec, 0x02, 0x98, 0x01, 0x7a, +0xc2, 0x79, 0x08, 0x02, 0x10, 0x43, 0xad, 0xe7, 0x08, 0x22, 0x31, 0x00, 0xcb, 0x31, 0x28, 0x00, +0x01, 0xf0, 0x48, 0xec, 0x08, 0x35, 0x08, 0x34, 0x24, 0x04, 0x24, 0x0c, 0x7f, 0x1c, 0x3f, 0x06, +0x3f, 0x0e, 0x13, 0x2f, 0x00, 0xd2, 0x58, 0xe7, 0x0a, 0x98, 0x04, 0x80, 0x0b, 0xb0, 0xf0, 0xbd, +0xf8, 0xb5, 0x04, 0x00, 0x0f, 0x00, 0x15, 0x00, 0x00, 0x26, 0x50, 0x21, 0x10, 0x00, 0x01, 0xf0, +0x6e, 0xed, 0x66, 0xe0, 0x41, 0x78, 0x02, 0x78, 0x09, 0x02, 0x11, 0x43, 0x0a, 0x02, 0x09, 0x0a, +0x0a, 0x43, 0x4f, 0x4b, 0x12, 0x04, 0x12, 0x0c, 0xd1, 0x1a, 0x9a, 0x42, 0x31, 0xd0, 0x19, 0xdc, +0x4c, 0x4b, 0xd1, 0x1a, 0x9a, 0x42, 0x38, 0xd0, 0x0a, 0xdc, 0x4b, 0x49, 0x51, 0x18, 0x30, 0xd0, +0x06, 0x29, 0x28, 0xd0, 0x07, 0x29, 0x2e, 0xd0, 0x0f, 0x29, 0x3b, 0xd1, 0x2c, 0x63, 0x39, 0xe0, +0x0f, 0x29, 0x2c, 0xd0, 0x11, 0x29, 0x2e, 0xd0, 0x12, 0x29, 0x2a, 0xd0, 0x28, 0x29, 0x31, 0xd1, +0xac, 0x60, 0x2f, 0xe0, 0x0c, 0x29, 0x18, 0xd0, 0x09, 0xdc, 0x01, 0x29, 0x17, 0xd0, 0x06, 0x29, +0x25, 0xd0, 0x07, 0x29, 0x21, 0xd0, 0x09, 0x29, 0x24, 0xd1, 0x6c, 0x60, 0x22, 0xe0, 0x0e, 0x29, +0x1f, 0xd0, 0x0f, 0x29, 0x03, 0xd0, 0x19, 0x29, 0x1c, 0xd1, 0xec, 0x61, 0x1a, 0xe0, 0x2c, 0x60, +0x18, 0xe0, 0xec, 0x60, 0x16, 0xe0, 0x2c, 0x61, 0x14, 0xe0, 0x6c, 0x61, 0x12, 0xe0, 0x2c, 0x62, +0x10, 0xe0, 0x6c, 0x62, 0x0e, 0xe0, 0xac, 0x62, 0x0c, 0xe0, 0xec, 0x62, 0x0a, 0xe0, 0x6c, 0x63, +0x08, 0xe0, 0xac, 0x63, 0x06, 0xe0, 0xec, 0x63, 0x04, 0xe0, 0x2c, 0x64, 0x02, 0xe0, 0xac, 0x64, +0x00, 0xe0, 0xec, 0x64, 0xc1, 0x78, 0x82, 0x78, 0x08, 0x02, 0x10, 0x43, 0x01, 0x02, 0x00, 0x0a, +0x01, 0x43, 0x08, 0x04, 0x00, 0x0c, 0x31, 0x18, 0x09, 0x1d, 0x0e, 0x04, 0x36, 0x0c, 0x24, 0x18, +0x24, 0x1d, 0x20, 0x00, 0xbe, 0x42, 0x95, 0xd3, 0xf8, 0xbd, 0xff, 0xb5, 0x87, 0xb0, 0x0c, 0x00, +0x05, 0x21, 0x09, 0x02, 0x29, 0x20, 0x40, 0x01, 0x61, 0x18, 0x20, 0x18, 0x05, 0x91, 0x21, 0x00, +0x06, 0x90, 0x25, 0x20, 0x27, 0x00, 0xa0, 0x31, 0x16, 0x00, 0x00, 0x25, 0x40, 0x01, 0xc0, 0x37, +0x20, 0x18, 0x03, 0x90, 0x0a, 0x98, 0x04, 0x91, 0x62, 0xe1, 0x00, 0x96, 0x70, 0x78, 0x31, 0x78, +0x03, 0x02, 0x0b, 0x43, 0xff, 0x21, 0x88, 0x31, 0x58, 0x1a, 0x8b, 0x42, 0x79, 0xd0, 0x0a, 0xdc, +0xff, 0x3b, 0x7d, 0x3b, 0x02, 0xf0, 0x3e, 0xe8, 0x0b, 0x81, 0x8e, 0x9a, 0xa8, 0xaf, 0xb5, 0xc1, +0x32, 0x32, 0x32, 0xcc, 0x32, 0x00, 0x1b, 0x28, 0x6c, 0xd0, 0x3a, 0xdc, 0x09, 0x28, 0x6a, 0xd0, +0x25, 0xdc, 0x0b, 0xe0, 0x88, 0xf6, 0x00, 0xc0, 0xfa, 0x03, 0x00, 0x00, 0x60, 0x16, 0x32, 0x00, +0x3b, 0x10, 0x00, 0x00, 0x12, 0x10, 0x00, 0x00, 0xfe, 0xef, 0xff, 0xff, 0x07, 0x28, 0x6f, 0xd0, +0x08, 0x28, 0x13, 0xd1, 0xf0, 0x79, 0xb1, 0x79, 0xfa, 0x4a, 0x00, 0x02, 0x08, 0x43, 0x90, 0x42, +0x67, 0xd1, 0x71, 0x7a, 0x30, 0x7a, 0x09, 0x02, 0x01, 0x43, 0x91, 0x42, 0xf8, 0xd1, 0x06, 0x99, +0x00, 0x20, 0x88, 0x72, 0x05, 0x98, 0xc2, 0x62, 0x05, 0x98, 0x02, 0x63, 0x15, 0xe1, 0x19, 0x28, +0x71, 0xd0, 0x1a, 0x28, 0xfa, 0xd1, 0x04, 0x9a, 0x03, 0x20, 0x90, 0x76, 0x22, 0x00, 0x06, 0x20, +0xb0, 0x32, 0xd0, 0x72, 0x00, 0x20, 0x10, 0x73, 0x06, 0x22, 0x31, 0x1d, 0x20, 0x00, 0xbd, 0x30, +0x66, 0xe0, 0x1c, 0x28, 0x78, 0xd0, 0x1d, 0x28, 0x14, 0xd0, 0x1e, 0x28, 0x2c, 0xd0, 0x20, 0x28, +0xe4, 0xd1, 0x23, 0x20, 0x40, 0x01, 0x20, 0x18, 0x07, 0x22, 0x01, 0x90, 0xc2, 0x75, 0xe2, 0x48, +0x06, 0x22, 0x31, 0x1d, 0x20, 0x18, 0x01, 0xf0, 0x46, 0xeb, 0x01, 0x98, 0x06, 0x21, 0x01, 0x83, +0x80, 0x20, 0x20, 0xe0, 0xdc, 0x48, 0xf2, 0x78, 0xb3, 0x78, 0x80, 0x38, 0x12, 0x02, 0x20, 0x18, +0x1a, 0x43, 0x42, 0x70, 0x12, 0x0a, 0x82, 0x70, 0x0d, 0x22, 0x02, 0x70, 0xf2, 0x78, 0xb3, 0x78, +0x12, 0x02, 0x1a, 0x43, 0x31, 0x1d, 0xc0, 0x1c, 0x01, 0xf0, 0x2c, 0xeb, 0x01, 0x20, 0x40, 0x03, +0x09, 0xe0, 0x7c, 0xe0, 0x0e, 0xe1, 0xca, 0xe0, 0x03, 0x99, 0x30, 0x79, 0x08, 0x71, 0x03, 0x98, +0x71, 0x79, 0x41, 0x71, 0x20, 0x20, 0x05, 0x43, 0xc7, 0xe0, 0x70, 0x79, 0x31, 0x79, 0x00, 0x02, +0x08, 0x43, 0xa0, 0x81, 0xf0, 0x79, 0xb1, 0x79, 0x00, 0x02, 0x08, 0x43, 0xe0, 0x81, 0xbc, 0xe0, +0x7f, 0xe0, 0x94, 0xe0, 0xa0, 0x68, 0x32, 0x79, 0x41, 0x08, 0x70, 0x79, 0x49, 0x00, 0x00, 0x02, +0x10, 0x43, 0xc0, 0x07, 0xc0, 0x0f, 0x01, 0x43, 0xa1, 0x60, 0xae, 0xe0, 0x20, 0x00, 0x06, 0x22, +0x31, 0x1d, 0xb4, 0x30, 0x01, 0xf0, 0xfe, 0xea, 0x04, 0x99, 0x03, 0x20, 0x48, 0x74, 0x04, 0x98, +0x06, 0x21, 0x41, 0x82, 0xa1, 0xe0, 0xb0, 0xe0, 0x20, 0x00, 0x08, 0x22, 0x31, 0x1d, 0x14, 0x30, +0x01, 0xf0, 0xf0, 0xea, 0x99, 0xe0, 0x70, 0x79, 0xa0, 0xb5, 0x49, 0x94, 0x01, 0x00, 0x00, 0x00, +0x4c, 0xc4, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x8b, 0x24, 0xe9, 0x64, 0x31, 0x79, 0x00, 0x02, +0x08, 0x43, 0x20, 0x82, 0x93, 0xe0, 0x04, 0x20, 0xf8, 0x74, 0xb8, 0x7d, 0x31, 0x79, 0xc0, 0x07, +0xc0, 0x0f, 0x49, 0x00, 0x08, 0x43, 0xb8, 0x75, 0x10, 0x20, 0xbe, 0xe7, 0xd1, 0xe0, 0x04, 0x99, +0x02, 0x20, 0x08, 0x73, 0x04, 0x98, 0x31, 0x79, 0xc1, 0x73, 0x04, 0x98, 0x71, 0x79, 0x01, 0x74, +0x04, 0x20, 0xb2, 0xe7, 0x06, 0x20, 0xf8, 0x70, 0x30, 0x7a, 0xb8, 0x72, 0xf0, 0x79, 0x78, 0x72, +0x20, 0x00, 0x03, 0x22, 0x31, 0x1d, 0xc6, 0x30, 0x01, 0xf0, 0xc6, 0xea, 0x04, 0x20, 0x38, 0x72, +0xf0, 0x78, 0xb1, 0x78, 0x00, 0x02, 0x08, 0x43, 0xb8, 0x80, 0x07, 0x98, 0x01, 0xf0, 0xd0, 0xea, +0x07, 0x98, 0x01, 0xf0, 0xda, 0xea, 0xb9, 0x7a, 0x41, 0x72, 0x07, 0x98, 0x0b, 0x22, 0x92, 0x01, +0x80, 0x18, 0x00, 0x69, 0x01, 0x73, 0x07, 0x98, 0x05, 0x21, 0x01, 0xf0, 0x96, 0xeb, 0x40, 0x20, +0x8b, 0xe7, 0x11, 0x20, 0xf8, 0x72, 0x30, 0x7a, 0xb8, 0x74, 0xf0, 0x79, 0x78, 0x74, 0x20, 0x00, +0x03, 0x22, 0x31, 0x1d, 0xce, 0x30, 0x01, 0xf0, 0xa0, 0xea, 0x04, 0x20, 0x38, 0x74, 0xf0, 0x78, +0xb1, 0x78, 0x00, 0x02, 0x08, 0x43, 0xb8, 0x81, 0x07, 0x98, 0x05, 0x21, 0x01, 0xf0, 0x7c, 0xeb, +0x01, 0x20, 0x40, 0x04, 0x71, 0xe7, 0x09, 0x20, 0xc0, 0x01, 0x08, 0x21, 0x20, 0x18, 0x01, 0x71, +0x71, 0x79, 0x32, 0x79, 0x09, 0x02, 0x11, 0x43, 0xc1, 0x71, 0x09, 0x0a, 0x01, 0x72, 0xf1, 0x79, +0xb2, 0x79, 0x09, 0x02, 0x11, 0x43, 0x41, 0x72, 0x09, 0x0a, 0x81, 0x72, 0xff, 0x20, 0x40, 0x1c, +0x5b, 0xe7, 0x71, 0x79, 0x32, 0x79, 0x08, 0x02, 0x06, 0x99, 0x10, 0x43, 0x88, 0x72, 0xf1, 0x79, +0xb2, 0x79, 0x08, 0x02, 0x05, 0x99, 0x10, 0x43, 0x08, 0x28, 0xc8, 0x62, 0x06, 0xd0, 0x80, 0x28, +0x06, 0xd0, 0xff, 0x38, 0x40, 0x1e, 0x07, 0xd1, 0x05, 0x20, 0x02, 0xe0, 0x01, 0x20, 0x00, 0xe0, +0x04, 0x20, 0x05, 0x99, 0x08, 0x63, 0x0a, 0xe0, 0x71, 0x7a, 0x32, 0x7a, 0x08, 0x02, 0x10, 0x43, +0xf7, 0xe7, 0x70, 0x79, 0x31, 0x79, 0x00, 0x02, 0x08, 0x43, 0x06, 0x99, 0x88, 0x82, 0x00, 0x98, +0x36, 0x1d, 0xc1, 0x78, 0x82, 0x78, 0x08, 0x02, 0x0a, 0x99, 0x10, 0x43, 0x86, 0x19, 0x08, 0x1a, +0x00, 0x1f, 0x0a, 0x90, 0x00, 0x28, 0x00, 0xd0, 0x99, 0xe6, 0x28, 0x00, 0x08, 0xe6, 0x5f, 0x48, +0x29, 0x21, 0x2c, 0x38, 0x20, 0x18, 0x01, 0xf0, 0x34, 0xea, 0x11, 0x20, 0x80, 0x01, 0x0f, 0x21, +0x20, 0x18, 0x81, 0x73, 0xf1, 0x78, 0xb2, 0x78, 0x09, 0x02, 0x11, 0x43, 0xc1, 0x73, 0x09, 0x0a, +0x01, 0x74, 0x56, 0x48, 0x06, 0x22, 0x29, 0x38, 0x31, 0x1d, 0x20, 0x18, 0x01, 0xf0, 0x2c, 0xea, +0x52, 0x48, 0x20, 0x21, 0x23, 0x38, 0x20, 0x18, 0x02, 0x90, 0x01, 0xf0, 0x1a, 0xea, 0xf0, 0x78, +0xb1, 0x78, 0x02, 0x02, 0x0a, 0x43, 0x31, 0x00, 0x02, 0x98, 0x92, 0x1f, 0x0a, 0x31, 0x01, 0xf0, +0x1c, 0xea, 0x01, 0x20, 0xc0, 0x03, 0xf8, 0xe6, 0x03, 0x9a, 0x09, 0x20, 0x90, 0x71, 0x47, 0x48, +0x06, 0x22, 0x2f, 0x30, 0x31, 0x1d, 0x20, 0x18, 0x01, 0xf0, 0x0e, 0xea, 0x01, 0x20, 0x40, 0x02, +0xeb, 0xe6, 0x03, 0x99, 0x00, 0x20, 0xc8, 0x73, 0x03, 0x99, 0x30, 0x79, 0x88, 0x74, 0x03, 0x99, +0x01, 0x20, 0x08, 0x82, 0xe1, 0xe6, 0xf8, 0xb5, 0x00, 0x24, 0x06, 0x00, 0x0f, 0x00, 0x01, 0xf0, +0xb0, 0xea, 0x05, 0x00, 0xf8, 0x78, 0xb9, 0x78, 0x00, 0x02, 0x08, 0x43, 0x79, 0x78, 0x3a, 0x78, +0x09, 0x02, 0x11, 0x43, 0x08, 0x38, 0x00, 0x04, 0x09, 0x06, 0x3a, 0x00, 0x00, 0x0c, 0x09, 0x0e, +0x08, 0x32, 0xea, 0x29, 0x05, 0xd0, 0xeb, 0x29, 0x1e, 0xd0, 0xec, 0x29, 0x68, 0xd0, 0x01, 0x20, +0xf8, 0xbd, 0x51, 0x78, 0x13, 0x78, 0x09, 0x02, 0x19, 0x43, 0x80, 0x1e, 0x03, 0x04, 0x1b, 0x0c, +0x01, 0x29, 0x0a, 0xd1, 0x92, 0x1c, 0x29, 0x00, 0x30, 0x00, 0xff, 0xf7, 0x10, 0xfe, 0x00, 0x28, +0x56, 0xd0, 0x01, 0x21, 0xa8, 0x68, 0x49, 0x02, 0x42, 0xe0, 0x00, 0x29, 0x50, 0xd1, 0x0a, 0x20, +0xb8, 0x70, 0x00, 0x20, 0xf8, 0x70, 0x4b, 0xe0, 0x50, 0x78, 0x11, 0x78, 0x00, 0x02, 0x08, 0x43, +0x01, 0x28, 0x3f, 0xd1, 0xd0, 0x78, 0x91, 0x78, 0x00, 0x02, 0x08, 0x43, 0x01, 0x06, 0x09, 0x0e, +0x01, 0x29, 0x05, 0xd1, 0x30, 0x00, 0x02, 0xf0, 0xd0, 0xea, 0x06, 0xe0, 0x01, 0x24, 0x37, 0xe0, +0x00, 0x29, 0x05, 0xd1, 0x30, 0x00, 0x02, 0xf0, 0xcc, 0xea, 0x01, 0x28, 0xf6, 0xd0, 0x2f, 0xe0, +0x0c, 0x29, 0x08, 0xd1, 0x30, 0x00, 0x02, 0xf0, 0xc8, 0xea, 0x01, 0x28, 0xee, 0xd0, 0x10, 0x49, +0x00, 0x20, 0x08, 0x60, 0x24, 0xe0, 0x02, 0x29, 0x03, 0xd1, 0x30, 0x00, 0x02, 0xf0, 0xc0, 0xea, +0xeb, 0xe7, 0x03, 0x29, 0x03, 0xd1, 0x30, 0x00, 0x02, 0xf0, 0xbe, 0xea, 0xe5, 0xe7, 0x07, 0x29, +0x16, 0xd0, 0x08, 0x29, 0x14, 0xd0, 0x09, 0x29, 0x12, 0xd1, 0xa8, 0x68, 0x01, 0x21, 0x89, 0x02, +0x08, 0x43, 0xa8, 0x60, 0x0c, 0xe0, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x7a, 0x04, 0x00, 0x00, +0x88, 0xf6, 0x00, 0xc0, 0x00, 0x28, 0x03, 0xd1, 0x70, 0x7a, 0x90, 0x70, 0x00, 0x0a, 0xd0, 0x70, +0x20, 0x00, 0xf8, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x01, 0xf0, 0x8a, 0xe9, 0x09, 0x21, 0x89, 0x01, +0x46, 0x18, 0x20, 0x21, 0x09, 0x5c, 0xf2, 0x69, 0x8a, 0x42, 0x01, 0xd3, 0x00, 0x20, 0x70, 0xbd, +0xc5, 0x22, 0x92, 0x00, 0x20, 0x21, 0x80, 0x18, 0x02, 0xf0, 0x92, 0xea, 0x25, 0x00, 0xff, 0x35, +0x00, 0x06, 0x00, 0x21, 0x41, 0x35, 0x00, 0x0e, 0xff, 0x28, 0x29, 0x82, 0x0f, 0xd0, 0x40, 0x1c, +0x28, 0x82, 0xe0, 0x68, 0x01, 0x21, 0x09, 0x03, 0x08, 0x43, 0xe0, 0x60, 0xf0, 0x69, 0x40, 0x1c, +0x01, 0x28, 0xf0, 0x61, 0x03, 0xd1, 0x44, 0x21, 0x20, 0x00, 0x01, 0xf0, 0xb2, 0xed, 0x28, 0x8a, +0x70, 0xbd, 0xfe, 0xb5, 0x04, 0x00, 0x01, 0xf0, 0x24, 0xe9, 0x01, 0x90, 0xe0, 0x68, 0xc0, 0x04, +0x03, 0xd4, 0x01, 0x98, 0x01, 0xf0, 0x30, 0xe9, 0xfe, 0xbd, 0x20, 0x00, 0x01, 0xf0, 0x5c, 0xe9, +0x05, 0x00, 0x20, 0x00, 0xf6, 0xf7, 0x61, 0xfb, 0x09, 0x20, 0x80, 0x01, 0x26, 0x18, 0x00, 0x27, +0x88, 0x20, 0xf7, 0x62, 0x47, 0x51, 0xe0, 0x68, 0x01, 0x21, 0xc9, 0x03, 0x88, 0x43, 0xe0, 0x60, +0x30, 0x6b, 0x01, 0xf0, 0x7e, 0xe9, 0x01, 0x21, 0x20, 0x00, 0x37, 0x63, 0x02, 0xf0, 0x54, 0xea, +0xe0, 0x68, 0x01, 0x21, 0x09, 0x03, 0x27, 0x00, 0x88, 0x43, 0xff, 0x37, 0x41, 0x37, 0xe0, 0x60, +0x39, 0x8a, 0x00, 0x29, 0x0c, 0xd0, 0x00, 0x22, 0x20, 0x00, 0xf5, 0xf7, 0x3b, 0xf8, 0x28, 0x68, +0xc5, 0x21, 0x3a, 0x8a, 0x89, 0x00, 0x40, 0x18, 0x52, 0x1e, 0x20, 0x21, 0x02, 0xf0, 0x40, 0xea, +0x00, 0x20, 0x38, 0x82, 0x29, 0x68, 0x09, 0x20, 0x80, 0x01, 0x08, 0x18, 0xc1, 0x69, 0x13, 0x27, +0x49, 0x1e, 0xc1, 0x61, 0x28, 0x00, 0x02, 0x21, 0x60, 0x30, 0x01, 0x70, 0x40, 0x78, 0x7f, 0x01, +0x00, 0x28, 0x0a, 0xd1, 0x28, 0x68, 0xc0, 0x19, 0x41, 0x78, 0x49, 0x1e, 0x09, 0x06, 0x09, 0x0e, +0x41, 0x70, 0x02, 0xd1, 0x20, 0x00, 0x02, 0xf0, 0x1c, 0x7f, 0xc6, 0x92, 0x01, 0x00, 0x00, 0x00, +0x48, 0xc8, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xab, 0xc7, 0x41, 0xee, 0x28, 0xea, 0x20, 0x00, +0x20, 0x30, 0x02, 0x90, 0x80, 0x7f, 0x80, 0x06, 0x0a, 0xd4, 0x28, 0x68, 0xc0, 0x19, 0x81, 0x78, +0x49, 0x1e, 0x09, 0x06, 0x09, 0x0e, 0x81, 0x70, 0x02, 0xd1, 0x20, 0x00, 0x02, 0xf0, 0x1a, 0xea, +0x02, 0x98, 0xc0, 0x7f, 0x40, 0x07, 0x0a, 0xd4, 0x28, 0x68, 0xc0, 0x19, 0xc1, 0x78, 0x49, 0x1e, +0x09, 0x06, 0x09, 0x0e, 0xc1, 0x70, 0x02, 0xd1, 0x20, 0x00, 0x02, 0xf0, 0x10, 0xea, 0x28, 0x68, +0x20, 0x30, 0x40, 0x78, 0x01, 0x07, 0x01, 0xd4, 0x80, 0x06, 0x06, 0xd5, 0xb0, 0x6a, 0x00, 0x28, +0x03, 0xd0, 0x01, 0xf0, 0x1c, 0xe9, 0x00, 0x20, 0xb0, 0x62, 0x28, 0x68, 0x20, 0x30, 0x40, 0x78, +0xc0, 0x09, 0x0d, 0xd0, 0xb0, 0x6a, 0x00, 0x28, 0x0a, 0xd0, 0x4d, 0x20, 0xc0, 0x00, 0x20, 0x18, +0x01, 0xf0, 0x10, 0xe9, 0xe0, 0x68, 0x10, 0x21, 0x88, 0x43, 0xe0, 0x60, 0x00, 0x20, 0x70, 0x62, +0xe0, 0x68, 0x02, 0x21, 0x40, 0x08, 0x40, 0x00, 0x88, 0x43, 0xe0, 0x60, 0x30, 0x00, 0x01, 0xf0, +0xc2, 0xee, 0x20, 0x00, 0x01, 0xf0, 0x0a, 0xea, 0x28, 0x00, 0x24, 0x30, 0x3c, 0x21, 0x01, 0xf0, +0xda, 0xe9, 0x29, 0x68, 0x09, 0x20, 0x80, 0x01, 0x08, 0x18, 0xc0, 0x69, 0x00, 0x28, 0x03, 0xd1, +0x43, 0x21, 0x20, 0x00, 0x01, 0xf0, 0xf6, 0xec, 0xe0, 0x68, 0x80, 0x06, 0x05, 0xd4, 0x28, 0x68, +0xc0, 0x19, 0x41, 0x79, 0x49, 0x1e, 0x41, 0x71, 0x4b, 0xe0, 0x20, 0x00, 0x60, 0x30, 0xc1, 0x78, +0x89, 0x07, 0x04, 0xd4, 0x29, 0x68, 0xc9, 0x19, 0xca, 0x79, 0x52, 0x1e, 0xca, 0x71, 0xc1, 0x78, +0xc9, 0x06, 0x04, 0xd4, 0x29, 0x68, 0xc9, 0x19, 0x8a, 0x79, 0x52, 0x1e, 0x8a, 0x71, 0x00, 0x79, +0x40, 0x06, 0x0b, 0xd5, 0x28, 0x68, 0xc0, 0x19, 0x01, 0x7a, 0x49, 0x1e, 0x09, 0x06, 0x09, 0x0e, +0x01, 0x72, 0x03, 0xd1, 0x01, 0x21, 0x20, 0x00, 0xf5, 0xf7, 0x2c, 0xfd, 0x26, 0x00, 0x00, 0x25, +0xff, 0x36, 0x4a, 0x36, 0x31, 0x00, 0x28, 0x00, 0x6a, 0x46, 0xff, 0x4b, 0x02, 0xf0, 0xa2, 0xe9, +0x01, 0x28, 0x08, 0xd1, 0x29, 0x00, 0x30, 0x00, 0x02, 0xf0, 0xa0, 0xe9, 0x00, 0x22, 0x29, 0x00, +0x30, 0x00, 0x02, 0xf0, 0xa0, 0xe9, 0xf9, 0x4a, 0x31, 0x00, 0x28, 0x00, 0x02, 0xf0, 0x9e, 0xe9, +0x01, 0x28, 0x09, 0xd1, 0x2a, 0x00, 0x31, 0x00, 0x20, 0x00, 0x02, 0xf0, 0x9c, 0xe9, 0x01, 0x22, +0x29, 0x00, 0x30, 0x00, 0x02, 0xf0, 0x8e, 0xe9, 0x6d, 0x1c, 0x2d, 0x06, 0x2d, 0x0e, 0x08, 0x2d, +0xd8, 0xd3, 0x20, 0x00, 0x01, 0xf0, 0x62, 0xe9, 0xe0, 0x68, 0x20, 0x21, 0x88, 0x43, 0xe0, 0x60, +0x20, 0x00, 0x1c, 0x21, 0x61, 0x30, 0x01, 0xf0, 0x26, 0xe8, 0x20, 0x00, 0x01, 0xf0, 0x3a, 0xee, +0xe9, 0xe6, 0x70, 0xb5, 0x04, 0x00, 0x45, 0x69, 0x00, 0x89, 0x06, 0x19, 0x28, 0x00, 0xff, 0xf7, +0xda, 0xfe, 0x29, 0x00, 0xff, 0x31, 0x05, 0x22, 0x4a, 0x31, 0x28, 0x00, 0xfe, 0xf7, 0x2d, 0xf9, +0x32, 0x00, 0x01, 0x21, 0x28, 0x00, 0x06, 0x23, 0x01, 0xf0, 0xe8, 0xee, 0x20, 0x00, 0x01, 0xf0, +0x86, 0xef, 0x70, 0xbd, 0xff, 0xb5, 0x81, 0xb0, 0x04, 0x00, 0x1e, 0x00, 0x0a, 0x9f, 0x01, 0xf0, +0x2e, 0xe8, 0x05, 0x00, 0x20, 0x00, 0x01, 0xf0, 0x1e, 0xe8, 0x24, 0x35, 0x3c, 0x21, 0x28, 0x00, +0x01, 0xf0, 0x40, 0xe9, 0x03, 0x9a, 0x02, 0x99, 0x33, 0x00, 0x28, 0x00, 0x00, 0x97, 0x02, 0xf0, +0x56, 0xe9, 0x01, 0x20, 0x20, 0x35, 0x28, 0x76, 0x05, 0xb0, 0xf0, 0xbd, 0xff, 0xb5, 0x89, 0xb0, +0x2d, 0x20, 0x00, 0x25, 0x0f, 0x00, 0x13, 0x9e, 0xed, 0x43, 0x30, 0x80, 0x09, 0x98, 0x01, 0xf0, +0x0e, 0xe8, 0x08, 0x90, 0x09, 0x98, 0x00, 0xf0, 0xfe, 0xef, 0x04, 0x00, 0x09, 0x98, 0x80, 0x30, +0x40, 0x69, 0x02, 0xf0, 0x10, 0xe8, 0x00, 0x28, 0x02, 0xd1, 0x00, 0x2f, 0x4a, 0xd1, 0x08, 0xe0, +0x00, 0x2f, 0x03, 0xd1, 0x0c, 0x99, 0x0b, 0x98, 0x08, 0x43, 0x02, 0xd1, 0x00, 0x20, 0x0d, 0xb0, +0xf0, 0xbd, 0x09, 0x21, 0x89, 0x01, 0x60, 0x18, 0x00, 0x7e, 0xc0, 0x06, 0x23, 0xd5, 0x21, 0x20, +0x00, 0x5d, 0x01, 0x07, 0x01, 0xd4, 0x81, 0x06, 0x1f, 0xd5, 0x27, 0x00, 0xe0, 0x37, 0xb8, 0x7a, +0x23, 0x00, 0x07, 0x90, 0x80, 0x33, 0xd8, 0x6e, 0x00, 0x22, 0x08, 0x9e, 0x06, 0x90, 0x05, 0x92, +0x0c, 0x99, 0x0b, 0x98, 0x04, 0x91, 0x03, 0x90, 0xf9, 0x89, 0x22, 0x00, 0x21, 0x32, 0x02, 0x92, +0x01, 0x91, 0x98, 0x6e, 0x24, 0x36, 0x00, 0x90, 0x06, 0x9b, 0x07, 0x9a, 0x09, 0x98, 0x31, 0x00, +0x02, 0xf0, 0x08, 0xe9, 0x07, 0xe0, 0x00, 0x25, 0x14, 0xe0, 0x81, 0x07, 0x06, 0xd5, 0x0b, 0x98, +0x00, 0x28, 0xf8, 0xd0, 0x0c, 0x98, 0x00, 0x28, 0xf5, 0xd0, 0x0b, 0xe0, 0xc0, 0x09, 0x09, 0xd0, +0x12, 0x99, 0x32, 0x00, 0x20, 0x00, 0x02, 0xf0, 0xfa, 0xe8, 0x00, 0x28, 0x02, 0xd0, 0x00, 0x20, +0x30, 0x80, 0xe8, 0xe7, 0x28, 0x00, 0xba, 0xe7, 0xf3, 0xb5, 0x04, 0x00, 0x00, 0x20, 0xb5, 0xb0, +0x05, 0x00, 0x09, 0x90, 0x20, 0x00, 0x00, 0xf0, 0xaa, 0xef, 0x06, 0x90, 0x20, 0x00, 0x00, 0xf0, +0x9a, 0xef, 0x06, 0x00, 0x8f, 0x20, 0x80, 0x00, 0x37, 0x18, 0x06, 0x98, 0xff, 0x21, 0x0c, 0x30, +0x07, 0x90, 0x91, 0x31, 0x20, 0x00, 0x01, 0xf0, 0x9a, 0xef, 0x21, 0x00, 0xff, 0x31, 0x4a, 0x31, +0x00, 0x28, 0x34, 0x91, 0x27, 0x90, 0x08, 0xd1, 0x34, 0x99, 0x05, 0x22, 0x20, 0x00, 0xfe, 0xf7, +0x7c, 0xf8, 0x00, 0x20, 0xc0, 0x43, 0x37, 0xb0, 0xf0, 0xbd, 0x27, 0x98, 0x22, 0x00, 0x00, 0x89, +0x27, 0x99, 0x7e, 0x32, 0x00, 0x92, 0x40, 0x18, 0x28, 0x90, 0xb1, 0x20, 0x80, 0x00, 0x21, 0x18, +0x34, 0x9a, 0x27, 0x98, 0x01, 0x23, 0x01, 0xf0, 0x7e, 0xef, 0x28, 0x98, 0x00, 0x21, 0x20, 0x30, +0x33, 0x90, 0x81, 0x70, 0xc1, 0x70, 0x27, 0x98, 0xac, 0x21, 0x01, 0x81, 0x36, 0x99, 0x28, 0x98, +0x25, 0xaa, 0x26, 0xab, 0x02, 0xf0, 0xae, 0xe8, 0x07, 0x98, 0x0b, 0x21, 0x40, 0x30, 0x89, 0x01, +0x32, 0x90, 0x00, 0x7d, 0x61, 0x18, 0x03, 0x28, 0x31, 0x91, 0x4a, 0xd1, 0x20, 0x00, 0x01, 0xf0, +0x72, 0xef, 0x00, 0x28, 0x45, 0xd0, 0x09, 0x20, 0x80, 0x01, 0x20, 0x18, 0x30, 0x90, 0x80, 0x6a, +0x00, 0x28, 0x3e, 0xd0, 0x33, 0x99, 0x1e, 0x20, 0x88, 0x70, 0x00, 0x20, 0xc8, 0x70, 0x38, 0x26, +0x6b, 0x46, 0x05, 0x27, 0x1e, 0x72, 0x03, 0x20, 0x5f, 0x72, 0x98, 0x72, 0x7d, 0x20, 0x02, 0xad, +0xe9, 0x1c, 0xc0, 0x00, 0x01, 0xf0, 0xae, 0xe8, 0x28, 0x98, 0x3b, 0x00, 0xaa, 0x1c, 0x31, 0x00, +0x02, 0xf0, 0x84, 0xe8, 0x28, 0x9a, 0x01, 0x21, 0x20, 0x00, 0x06, 0x23, 0x01, 0xf0, 0xe6, 0xed, +0x27, 0x98, 0x01, 0xf0, 0x84, 0xee, 0x30, 0x98, 0x00, 0x6b, 0x00, 0x28, 0x17, 0xd1, 0x27, 0x20, +0x00, 0x22, 0x00, 0x01, 0x23, 0x18, 0x00, 0x92, 0x55, 0x4a, 0x56, 0x48, 0x21, 0x00, 0x01, 0xf0, +0x86, 0xe8, 0x31, 0x98, 0x00, 0x21, 0x00, 0x69, 0x80, 0x30, 0xc2, 0x88, 0x20, 0x00, 0x02, 0xf0, +0x6a, 0xe8, 0x31, 0x98, 0x00, 0x69, 0x80, 0x30, 0xc1, 0x88, 0x49, 0x1c, 0xc1, 0x80, 0x00, 0x20, +0x89, 0xe7, 0x26, 0x99, 0x25, 0x98, 0x10, 0xaa, 0xb0, 0x73, 0xe6, 0x6d, 0x01, 0x00, 0x00, 0x00, +0x44, 0xcc, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x2c, 0x91, 0x4f, 0xbc, 0x00, 0xf0, 0x1c, 0xef, +0x31, 0x99, 0x26, 0x90, 0x0b, 0x69, 0x2b, 0x21, 0xca, 0x5c, 0x00, 0x92, 0x02, 0x00, 0x28, 0x98, +0x2c, 0x33, 0x10, 0xa9, 0x02, 0xf0, 0x54, 0xe8, 0x00, 0x28, 0x30, 0xd1, 0x36, 0x9a, 0x23, 0x98, +0x0e, 0xa9, 0x6b, 0x46, 0x07, 0xc3, 0x20, 0x00, 0x12, 0x9b, 0x1c, 0x9a, 0x22, 0x99, 0xff, 0xf7, +0xdf, 0xfe, 0x40, 0x1c, 0x02, 0xd1, 0x6b, 0x46, 0x18, 0x8f, 0x24, 0xe0, 0xff, 0x20, 0x11, 0x30, +0xc0, 0x59, 0x00, 0x28, 0x72, 0xd1, 0x0f, 0xaa, 0x09, 0xa9, 0x01, 0x92, 0x00, 0x91, 0x32, 0x00, +0x28, 0x98, 0x0e, 0x32, 0x10, 0xa9, 0x0a, 0xab, 0x02, 0xf0, 0x36, 0xe8, 0x00, 0x28, 0x0e, 0xd1, +0x07, 0x9b, 0x70, 0x6c, 0x1c, 0x33, 0x00, 0x28, 0x12, 0xd0, 0x3a, 0x00, 0x30, 0x32, 0x00, 0x92, +0x36, 0x99, 0x28, 0x98, 0x10, 0xaa, 0x02, 0xf0, 0x2c, 0xe8, 0x00, 0x28, 0x08, 0xd0, 0x27, 0x98, +0xff, 0xf7, 0x81, 0xfe, 0x41, 0xe7, 0x33, 0x99, 0x88, 0x70, 0x00, 0x0a, 0xc8, 0x70, 0xf6, 0xe7, +0x08, 0xab, 0x1b, 0x7f, 0x00, 0x2b, 0x04, 0xd0, 0x28, 0x98, 0x32, 0x21, 0x0c, 0xaa, 0x02, 0xf0, +0x08, 0xe8, 0x70, 0x6c, 0x01, 0x28, 0x09, 0xd1, 0x1d, 0x98, 0x00, 0x28, 0x06, 0xd0, 0x32, 0x00, +0x28, 0x98, 0x66, 0x32, 0x3d, 0x21, 0x16, 0x23, 0x01, 0xf0, 0xfa, 0xef, 0x30, 0x00, 0x20, 0x30, +0x2f, 0x90, 0x2e, 0x90, 0x40, 0x78, 0xc0, 0x09, 0x07, 0xd0, 0x23, 0x98, 0x23, 0x9a, 0x43, 0x78, +0x28, 0x98, 0x92, 0x1c, 0x44, 0x21, 0x01, 0xf0, 0xec, 0xef, 0x70, 0x6c, 0x01, 0x28, 0x1a, 0xd1, +0x1d, 0x98, 0x00, 0x28, 0x17, 0xd0, 0x38, 0x00, 0x20, 0x30, 0x01, 0x79, 0x02, 0x29, 0x0a, 0xd0, +0x80, 0x7c, 0x80, 0x07, 0x07, 0xd5, 0xf2, 0x1d, 0xff, 0x32, 0x28, 0x98, 0xfe, 0x32, 0x4a, 0x21, +0x0e, 0x23, 0x01, 0xf0, 0xd6, 0xef, 0x23, 0x20, 0x00, 0x01, 0x32, 0x18, 0x28, 0x98, 0x7f, 0x21, +0x08, 0x23, 0x01, 0xf0, 0xce, 0xef, 0x70, 0x6a, 0x01, 0x28, 0x08, 0xe0, 0xac, 0x7b, 0x02, 0x00, +0x4c, 0x7b, 0x02, 0x00, 0x40, 0x42, 0x0f, 0x00, 0x73, 0x1c, 0x01, 0x00, 0x46, 0xe0, 0x09, 0xd1, +0x13, 0x98, 0x00, 0x28, 0x06, 0xd0, 0x32, 0x00, 0x28, 0x98, 0x2a, 0x32, 0xdd, 0x21, 0x18, 0x23, +0x01, 0xf0, 0xb6, 0xef, 0x20, 0x00, 0xff, 0x30, 0x41, 0x30, 0x2d, 0x90, 0x00, 0x8a, 0x00, 0x28, +0x07, 0xd1, 0x20, 0x00, 0xff, 0xf7, 0xca, 0xfc, 0x2d, 0x98, 0x01, 0x25, 0x00, 0x8a, 0x00, 0x28, +0x2c, 0xd0, 0x33, 0x98, 0xc1, 0x78, 0x82, 0x78, 0x08, 0x02, 0x10, 0x43, 0x3a, 0xd1, 0x20, 0x00, +0x00, 0xf0, 0xd6, 0xee, 0x00, 0x28, 0x35, 0xd0, 0x20, 0x00, 0x00, 0xf0, 0xe6, 0xee, 0x03, 0x90, +0x24, 0x98, 0x00, 0x28, 0x03, 0x98, 0x00, 0x7f, 0x0a, 0xd0, 0x2f, 0x99, 0x09, 0x78, 0x88, 0x42, +0x14, 0xd2, 0x36, 0x99, 0x20, 0x00, 0x01, 0xf0, 0xa0, 0xef, 0x07, 0x99, 0x88, 0x65, 0x0f, 0xe0, +0x40, 0x1c, 0x03, 0x99, 0x00, 0x06, 0x00, 0x0e, 0x08, 0x77, 0x2f, 0x99, 0x09, 0x78, 0x88, 0x42, +0x06, 0xd9, 0x01, 0x28, 0x02, 0xd3, 0x03, 0x99, 0x40, 0x1e, 0x08, 0x77, 0x0c, 0x20, 0x62, 0xe7, +0x03, 0x98, 0x2f, 0x99, 0x00, 0x7f, 0x09, 0x78, 0x88, 0x42, 0x0b, 0xd3, 0x03, 0x98, 0x04, 0x22, +0xa0, 0x30, 0x01, 0x7c, 0x11, 0x43, 0x01, 0x74, 0x03, 0x98, 0xd1, 0x01, 0x80, 0x68, 0x08, 0x43, +0x03, 0x99, 0x88, 0x60, 0x28, 0x9a, 0x01, 0x21, 0x20, 0x00, 0x06, 0x23, 0x01, 0xf0, 0xc8, 0xec, +0xe0, 0x68, 0x02, 0x21, 0x40, 0x08, 0x40, 0x00, 0x88, 0x43, 0xe0, 0x60, 0x2e, 0x99, 0x49, 0x78, +0xca, 0x07, 0x08, 0xd1, 0x89, 0x07, 0x09, 0xd5, 0xf1, 0x6f, 0x0a, 0x00, 0x08, 0x32, 0x05, 0xd0, +0x89, 0x7c, 0xc9, 0x07, 0x02, 0xd0, 0x03, 0x21, 0x08, 0x43, 0xe0, 0x60, 0x70, 0x6a, 0x01, 0x28, +0x29, 0xd1, 0x13, 0x98, 0x00, 0x28, 0x05, 0xd1, 0x70, 0x6c, 0x01, 0x28, 0x23, 0xd1, 0x1d, 0x98, +0x00, 0x28, 0x20, 0xd0, 0x01, 0x21, 0x20, 0x00, 0x01, 0xf0, 0xd2, 0xec, 0x13, 0x98, 0x00, 0x28, +0x1d, 0xd0, 0x07, 0x98, 0x13, 0x99, 0x60, 0x30, 0x09, 0x7a, 0xc1, 0x73, 0x13, 0x99, 0x09, 0x7a, +0x01, 0x74, 0x13, 0x99, 0x09, 0x7a, 0x41, 0x74, 0xff, 0x20, 0x69, 0x30, 0x80, 0x59, 0x01, 0x28, +0x05, 0xd1, 0x13, 0x98, 0x00, 0x7a, 0x00, 0x07, 0x01, 0xd0, 0x01, 0x21, 0x00, 0xe0, 0x00, 0x21, +0x31, 0x98, 0x01, 0x60, 0x03, 0xe0, 0x00, 0x21, 0x20, 0x00, 0x01, 0xf0, 0xb2, 0xec, 0x2d, 0x98, +0x03, 0x21, 0x00, 0x8a, 0x89, 0x03, 0x08, 0x43, 0x33, 0x99, 0x08, 0x71, 0x00, 0x0a, 0x48, 0x71, +0x32, 0x98, 0x03, 0x21, 0x01, 0x75, 0x07, 0x99, 0x00, 0x20, 0x08, 0x75, 0x20, 0x00, 0x01, 0xf0, +0xb4, 0xed, 0x33, 0x99, 0x00, 0x20, 0x88, 0x70, 0xc8, 0x70, 0x20, 0x00, 0x71, 0x6c, 0x61, 0x30, +0x01, 0x29, 0x2c, 0x90, 0x7e, 0xd1, 0x1d, 0x99, 0x40, 0x1e, 0x00, 0x29, 0x2b, 0x90, 0x0e, 0xd1, +0x01, 0x2d, 0x04, 0xd0, 0x00, 0x2d, 0x43, 0xd1, 0xe0, 0x68, 0x80, 0x06, 0x14, 0xd5, 0x38, 0x00, +0x20, 0x30, 0x41, 0x7a, 0x49, 0x1c, 0x41, 0x72, 0x1d, 0x98, 0x00, 0x28, 0x0a, 0xd0, 0x00, 0x2d, +0x21, 0xd1, 0xe0, 0x68, 0x80, 0x06, 0x07, 0xd4, 0x38, 0x00, 0x20, 0x30, 0x41, 0x7a, 0x49, 0x1e, +0x41, 0x72, 0x01, 0xe0, 0x00, 0x2d, 0x13, 0xd1, 0x2b, 0x98, 0xc0, 0x78, 0xc0, 0x06, 0x0f, 0xd4, +0xe0, 0x68, 0x80, 0x06, 0x0c, 0xd5, 0x1d, 0x98, 0x00, 0x28, 0x04, 0xd0, 0x10, 0xa8, 0x01, 0xf0, +0xe8, 0xee, 0x00, 0x28, 0x04, 0xd0, 0x38, 0x00, 0x20, 0x30, 0x81, 0x7a, 0x49, 0x1e, 0x81, 0x72, +0x1d, 0x98, 0x00, 0x28, 0x14, 0xd0, 0x10, 0xa8, 0x01, 0xf0, 0xda, 0xee, 0x00, 0x28, 0x0f, 0xd1, +0x01, 0x2d, 0x08, 0xd0, 0x00, 0x2d, 0x0b, 0xd1, 0x2b, 0x98, 0xc0, 0x78, 0xc0, 0x06, 0x02, 0xd4, +0xe0, 0x68, 0x80, 0x06, 0x04, 0xd4, 0x38, 0x00, 0x20, 0x30, 0x81, 0x7a, 0x49, 0x1c, 0x81, 0x72, +0x2b, 0x98, 0xc0, 0x78, 0x80, 0x07, 0x11, 0xd4, 0xe0, 0x68, 0x80, 0x06, 0x0e, 0xd5, 0x00, 0x2d, +0x0c, 0xd1, 0x1d, 0x98, 0x00, 0x28, 0x04, 0xd0, 0x10, 0xa8, 0x01, 0xf0, 0xbe, 0xee, 0x00, 0x28, +0x04, 0xd0, 0x38, 0x00, 0x20, 0x30, 0xc1, 0x7a, 0x49, 0x1e, 0xc1, 0x72, 0x1d, 0x98, 0x00, 0x28, +0x39, 0xd0, 0x10, 0xa8, 0x01, 0xf0, 0xb0, 0xee, 0x00, 0x28, 0x0f, 0xd1, 0x01, 0x2d, 0x08, 0xd0, +0x00, 0x2d, 0x0b, 0xd1, 0xe0, 0x68, 0x80, 0x06, 0x03, 0xd5, 0x2b, 0x98, 0xc0, 0x78, 0x80, 0x07, +0x04, 0xd5, 0x38, 0x00, 0x20, 0x30, 0xc1, 0x7a, 0x49, 0x1c, 0xc1, 0x72, 0x1d, 0x98, 0x00, 0x28, +0x21, 0xd0, 0x00, 0xe0, 0x59, 0xe0, 0x1d, 0x98, 0xc0, 0x78, 0x40, 0x06, 0x1b, 0xd5, 0x01, 0x2d, +0x08, 0xd0, 0x00, 0x2d, 0x3b, 0xd1, 0xe0, 0x68, 0x80, 0x06, 0x38, 0xd5, 0x2b, 0x98, 0x00, 0x79, +0x40, 0x06, 0x34, 0xd4, 0x38, 0x00, 0x20, 0x30, 0x01, 0x7b, 0x49, 0x1c, 0x01, 0x73, 0x06, 0x98, +0x01, 0x68, 0x13, 0x20, 0x40, 0x01, 0x08, 0x18, 0x00, 0x7a, 0x01, 0x28, 0x03, 0xd1, 0x00, 0x21, +0x20, 0x00, 0xf5, 0xf7, 0xb9, 0xf9, 0x00, 0x2d, 0x0e, 0xda, 0xe0, 0xe5, 0x01, 0x00, 0x00, 0x00, +0x40, 0xd0, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xea, 0x00, 0x10, 0xfa, 0x1e, 0xd1, 0xe0, 0x68, +0x80, 0x06, 0x1b, 0xd5, 0x2b, 0x98, 0x00, 0x79, 0x40, 0x06, 0x17, 0xd5, 0x1d, 0x98, 0x00, 0x28, +0x2d, 0xd0, 0x1d, 0x98, 0xc0, 0x78, 0x40, 0x06, 0x13, 0xd4, 0x38, 0x00, 0x20, 0x30, 0x01, 0x7b, +0x49, 0x1e, 0x01, 0x73, 0x06, 0x98, 0x13, 0x21, 0x00, 0x68, 0x49, 0x01, 0x40, 0x18, 0x00, 0x7a, +0x00, 0x28, 0x03, 0xd1, 0x01, 0x21, 0x20, 0x00, 0xf5, 0xf7, 0x98, 0xf9, 0x1d, 0x98, 0x00, 0x28, +0x15, 0xd0, 0x39, 0x00, 0x30, 0x31, 0x10, 0xa8, 0x01, 0xf0, 0x54, 0xee, 0x10, 0xa8, 0x01, 0xf0, +0x4e, 0xee, 0xc0, 0x07, 0x01, 0x0e, 0xe0, 0x68, 0x80, 0x22, 0x90, 0x43, 0x08, 0x43, 0x60, 0x21, +0x08, 0x43, 0xe0, 0x60, 0x1d, 0x99, 0x2c, 0x98, 0x1c, 0x22, 0x00, 0xf0, 0xbc, 0xec, 0xe0, 0x68, +0x00, 0x22, 0x80, 0x06, 0x00, 0xd5, 0x2c, 0x9a, 0x00, 0x92, 0x08, 0xab, 0x19, 0x79, 0x00, 0x22, +0x13, 0x00, 0x0a, 0xa8, 0x00, 0xf0, 0x8a, 0xed, 0x08, 0x90, 0x08, 0xab, 0x19, 0x79, 0x58, 0x20, +0x01, 0x55, 0x20, 0x00, 0x0e, 0x22, 0x4a, 0x30, 0x0a, 0xa9, 0x00, 0xf0, 0xa4, 0xec, 0x08, 0x99, +0x20, 0x00, 0x01, 0xf0, 0x38, 0xea, 0x20, 0x00, 0x00, 0xf0, 0xd4, 0xed, 0x20, 0x00, 0x01, 0xf0, +0xc2, 0xe9, 0x20, 0x00, 0x00, 0xf0, 0x1a, 0xee, 0x38, 0x00, 0x20, 0x30, 0x2a, 0x90, 0x01, 0x79, +0x20, 0x00, 0x20, 0x30, 0x02, 0x29, 0x29, 0x90, 0x02, 0xd1, 0x32, 0x98, 0x41, 0x75, 0x80, 0xe0, +0x10, 0xa8, 0x01, 0xf0, 0x14, 0xee, 0x00, 0x28, 0x14, 0xd0, 0x00, 0x2d, 0x0e, 0xd1, 0x32, 0x98, +0x40, 0x7d, 0x00, 0x28, 0x0a, 0xd1, 0x2a, 0x98, 0x2a, 0x99, 0x40, 0x79, 0x40, 0x1e, 0x00, 0x06, +0x00, 0x0e, 0x48, 0x71, 0x02, 0xd1, 0x20, 0x00, 0x01, 0xf0, 0xac, 0xed, 0x32, 0x98, 0x01, 0x21, +0x41, 0x75, 0x16, 0xe0, 0x01, 0x2d, 0x05, 0xd0, 0x00, 0x2d, 0x0f, 0xd1, 0x32, 0x98, 0x40, 0x7d, +0x00, 0x28, 0x0b, 0xd0, 0x2a, 0x98, 0x2a, 0x99, 0x40, 0x79, 0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, +0x01, 0x28, 0x48, 0x71, 0x02, 0xd1, 0x20, 0x00, 0x01, 0xf0, 0x94, 0xed, 0x32, 0x99, 0x00, 0x20, +0x48, 0x75, 0x36, 0x98, 0x01, 0xf0, 0xe6, 0xed, 0x00, 0x28, 0x0e, 0xd0, 0x00, 0x2d, 0x20, 0xd1, +0x29, 0x98, 0x80, 0x7f, 0x80, 0x06, 0x1c, 0xd4, 0x2a, 0x98, 0x2a, 0x99, 0x80, 0x79, 0x40, 0x1e, +0x00, 0x06, 0x00, 0x0e, 0x88, 0x71, 0x14, 0xd1, 0x10, 0xe0, 0x01, 0x2d, 0x05, 0xd0, 0x00, 0x2d, +0x0f, 0xd1, 0x29, 0x98, 0x80, 0x7f, 0x80, 0x06, 0x0b, 0xd5, 0x2a, 0x98, 0x2a, 0x99, 0x80, 0x79, +0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x01, 0x28, 0x88, 0x71, 0x02, 0xd1, 0x20, 0x00, 0x01, 0xf0, +0x6e, 0xed, 0x36, 0x98, 0x01, 0xf0, 0xc2, 0xed, 0x00, 0x28, 0x0e, 0xd0, 0x00, 0x2d, 0x20, 0xd1, +0x29, 0x98, 0xc0, 0x7f, 0x40, 0x07, 0x1c, 0xd4, 0x2a, 0x98, 0x2a, 0x99, 0xc0, 0x79, 0x40, 0x1e, +0x00, 0x06, 0x00, 0x0e, 0xc8, 0x71, 0x14, 0xd1, 0x10, 0xe0, 0x01, 0x2d, 0x05, 0xd0, 0x00, 0x2d, +0x0f, 0xd1, 0x29, 0x98, 0xc0, 0x7f, 0x40, 0x07, 0x0b, 0xd5, 0x2a, 0x98, 0x2a, 0x99, 0xc0, 0x79, +0x40, 0x1c, 0x00, 0x06, 0x00, 0x0e, 0x01, 0x28, 0xc8, 0x71, 0x02, 0xd1, 0x20, 0x00, 0x01, 0xf0, +0x4a, 0xed, 0x20, 0x00, 0x01, 0xf0, 0x9e, 0xed, 0x02, 0x00, 0x01, 0x21, 0x20, 0x00, 0x01, 0xf0, +0x9e, 0xed, 0x20, 0x00, 0x00, 0xf0, 0x26, 0xed, 0x36, 0x99, 0x29, 0x98, 0x20, 0x31, 0x0a, 0x78, +0x82, 0x77, 0x49, 0x78, 0xc1, 0x77, 0x33, 0x98, 0x39, 0x7f, 0x01, 0x70, 0x79, 0x7f, 0xff, 0x27, +0x41, 0x70, 0x91, 0x37, 0x3a, 0x00, 0x2d, 0x23, 0x04, 0xa9, 0x05, 0xa8, 0x00, 0xf0, 0xf2, 0xec, +0x00, 0x28, 0x2c, 0xd0, 0x04, 0x9d, 0x05, 0x98, 0x18, 0x35, 0x28, 0x1a, 0x3f, 0x1a, 0x29, 0x00, +0x30, 0x00, 0x01, 0xf0, 0x80, 0xed, 0x00, 0x04, 0x00, 0x0c, 0x39, 0x1a, 0x0b, 0x04, 0x2f, 0x18, +0x36, 0x98, 0x1e, 0x14, 0x41, 0x78, 0x00, 0x78, 0x0a, 0x02, 0x02, 0x43, 0x36, 0x99, 0x33, 0x00, +0x38, 0x00, 0x01, 0xf0, 0x74, 0xed, 0x31, 0x1a, 0x0b, 0x04, 0x3e, 0x18, 0x28, 0x99, 0x1b, 0x14, +0x06, 0x22, 0x30, 0x00, 0x01, 0xf0, 0x6a, 0xed, 0x04, 0x99, 0x80, 0x19, 0x40, 0x1b, 0x88, 0x72, +0x00, 0x0a, 0xc8, 0x72, 0x05, 0x9a, 0x34, 0x99, 0x20, 0x00, 0x00, 0xf0, 0xcc, 0xec, 0x27, 0x98, +0x01, 0xf0, 0x28, 0xeb, 0x00, 0x06, 0x00, 0x0e, 0x00, 0xd0, 0x48, 0xe4, 0x22, 0x99, 0x00, 0x29, +0x03, 0xd0, 0x31, 0x9a, 0x01, 0x21, 0x91, 0x61, 0x41, 0xe4, 0x31, 0x99, 0x00, 0x22, 0x8a, 0x61, +0x3d, 0xe4, 0x10, 0xb5, 0x44, 0x69, 0x20, 0x00, 0xff, 0xf7, 0x59, 0xfa, 0x21, 0x00, 0xff, 0x31, +0x02, 0x22, 0x4a, 0x31, 0x20, 0x00, 0xfd, 0xf7, 0x7e, 0xfe, 0x10, 0xbd, 0x10, 0xb5, 0x09, 0x68, +0x49, 0x1c, 0x0c, 0xd0, 0x20, 0x29, 0x08, 0xd1, 0x80, 0x69, 0x00, 0xf0, 0xb4, 0xeb, 0x00, 0x68, +0x1d, 0x21, 0x49, 0x01, 0x40, 0x18, 0x01, 0x21, 0x01, 0x72, 0x00, 0x20, 0x10, 0xbd, 0x41, 0x68, +0x18, 0x31, 0x01, 0xf0, 0xa0, 0xe8, 0xf8, 0xe7, 0xf8, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x48, 0x68, +0x01, 0x27, 0xc0, 0x68, 0x00, 0x90, 0xa6, 0x69, 0x30, 0x00, 0x00, 0xf0, 0x90, 0xeb, 0x00, 0x2c, +0x5a, 0xd0, 0x00, 0x2d, 0x58, 0xd0, 0x00, 0x2e, 0x56, 0xd0, 0x2b, 0x68, 0x21, 0x2b, 0x43, 0xd0, +0x10, 0xdc, 0x17, 0x2b, 0x06, 0xd0, 0x08, 0xdc, 0x9b, 0x1c, 0x4b, 0xd0, 0x01, 0x2b, 0x13, 0xd0, +0x18, 0x2b, 0x4b, 0xd1, 0x61, 0x68, 0x3c, 0x31, 0x32, 0xe0, 0x1d, 0x2b, 0x19, 0xd0, 0x1e, 0x2b, +0x44, 0xd1, 0x24, 0xe0, 0x22, 0x3b, 0x00, 0xf0, 0xfe, 0xef, 0x0c, 0x35, 0x41, 0x41, 0x41, 0x41, +0x41, 0x3f, 0x3f, 0x3f, 0x41, 0x3f, 0x21, 0x41, 0x01, 0xf0, 0x74, 0xe8, 0x00, 0x28, 0x04, 0xd0, +0x01, 0xf0, 0x70, 0xe8, 0x00, 0x7a, 0x03, 0x28, 0x2e, 0xd0, 0x00, 0x20, 0x00, 0xf0, 0x86, 0xef, +0x2a, 0xe0, 0x01, 0x00, 0x9b, 0x23, 0x9b, 0x00, 0x1c, 0x22, 0x48, 0x31, 0xc0, 0x18, 0x01, 0xf0, +0x0e, 0xeb, 0x1e, 0x21, 0x30, 0x00, 0xf5, 0xf7, 0x6f, 0xfe, 0x1d, 0xe0, 0x00, 0x27, 0x00, 0x99, +0x3a, 0x00, 0x30, 0x00, 0xfd, 0xf7, 0x09, 0xfd, 0x00, 0x28, 0x15, 0xd1, 0x61, 0x68, 0x30, 0x31, +0x20, 0x00, 0x01, 0xf0, 0x48, 0xe8, 0x0f, 0xe0, 0x22, 0x22, 0x00, 0x21, 0x30, 0x00, 0xf4, 0xf7, +0xf9, 0xfa, 0x09, 0xe0, 0x30, 0x00, 0xf4, 0xf7, 0x2f, 0xfc, 0x22, 0x21, 0x30, 0x00, 0xfd, 0xf7, +0xad, 0xfc, 0x01, 0xe0, 0x20, 0x68, 0xa0, 0x60, 0x00, 0x20, 0xf8, 0xbd, 0x28, 0x00, 0xf8, 0xbd, +0xf8, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x86, 0x69, 0x00, 0x28, 0x48, 0xd0, 0x00, 0x2d, 0xfc, 0xd0, +0x28, 0x68, 0x0b, 0x27, 0xbf, 0x01, 0x21, 0x28, 0x42, 0xd0, 0x0e, 0xdc, 0x17, 0x28, 0x5d, 0xd0, +0x06, 0xdc, 0x80, 0x1c, 0x7b, 0xd0, 0x01, 0x28, 0x12, 0xd0, 0x18, 0x28, 0x72, 0xd1, 0x55, 0xe0, +0x1f, 0x28, 0x35, 0xd0, 0x20, 0x28, 0x7b, 0xd1, 0x53, 0xe0, 0x03, 0x00, 0x22, 0x3b, 0x00, 0xf0, +0x9a, 0xef, 0x0b, 0x50, 0x77, 0x77, 0x77, 0x77, 0x92, 0xcc, 0xd9, 0xc4, 0x01, 0x00, 0x00, 0x00, +0x3c, 0xd4, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x21, 0x1e, 0x4f, 0x00, 0x77, 0x4a, 0x75, 0x2f, +0x50, 0x75, 0x77, 0x00, 0x01, 0x20, 0x00, 0xf0, 0x2c, 0xef, 0x22, 0x7d, 0x00, 0x2a, 0x05, 0xd0, +0x00, 0x20, 0x01, 0x00, 0x20, 0x75, 0x30, 0x00, 0x00, 0xf0, 0x1a, 0xeb, 0xa0, 0x69, 0x00, 0xf0, +0x04, 0xeb, 0x00, 0x68, 0x1d, 0x25, 0x6d, 0x01, 0x40, 0x19, 0x00, 0x7a, 0x00, 0x28, 0x0b, 0xd0, +0xa0, 0x69, 0x00, 0xf0, 0xfa, 0xea, 0x00, 0x68, 0x41, 0x19, 0x00, 0x20, 0x08, 0x72, 0x02, 0x00, +0x1f, 0x21, 0x20, 0x00, 0x00, 0xf0, 0x84, 0xef, 0xf0, 0x19, 0x00, 0x69, 0x04, 0x21, 0x00, 0xf0, +0x8c, 0xed, 0x45, 0xe0, 0x1f, 0x28, 0x02, 0xd1, 0x33, 0x21, 0x20, 0x24, 0x0a, 0xe0, 0x2a, 0x28, +0x06, 0xd1, 0x36, 0x21, 0x2b, 0x24, 0x01, 0x20, 0xf2, 0x19, 0x12, 0x69, 0x90, 0x73, 0x01, 0xe0, +0x34, 0x21, 0x22, 0x24, 0x30, 0x00, 0xf4, 0xf7, 0x91, 0xfa, 0x03, 0x28, 0x30, 0xd0, 0x01, 0x00, +0x22, 0x00, 0x30, 0x00, 0xf4, 0xf7, 0x80, 0xfa, 0x2a, 0xe0, 0x30, 0x00, 0xf5, 0xf7, 0x17, 0xfd, +0x61, 0x68, 0x3c, 0x31, 0x13, 0xe0, 0x30, 0x00, 0xf4, 0xf7, 0xe2, 0xfa, 0x28, 0x68, 0x20, 0x28, +0x02, 0xd1, 0x67, 0x68, 0x18, 0x37, 0x03, 0xe0, 0x2b, 0x28, 0x0e, 0xd1, 0x67, 0x68, 0x3c, 0x37, +0x28, 0x68, 0x01, 0x06, 0x09, 0x0e, 0x30, 0x00, 0xfd, 0xf7, 0x22, 0xfc, 0x39, 0x00, 0x20, 0x00, +0x00, 0xf0, 0xaa, 0xef, 0x0c, 0xe0, 0x04, 0xe0, 0x0c, 0xe0, 0x30, 0x00, 0xf4, 0xf7, 0x96, 0xfb, +0xe7, 0xe7, 0xf0, 0x19, 0x00, 0x69, 0x05, 0x21, 0x00, 0xf0, 0x46, 0xed, 0x20, 0x68, 0xa0, 0x60, +0x00, 0x20, 0xf8, 0xbd, 0x28, 0x00, 0xf8, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x08, 0x00, 0x00, 0x2c, +0x3e, 0xd0, 0x00, 0x28, 0x3c, 0xd0, 0x02, 0x68, 0xa5, 0x69, 0x21, 0x2a, 0x2f, 0xd0, 0x0c, 0xdc, +0x18, 0x2a, 0x2e, 0xd0, 0x04, 0xdc, 0x92, 0x1c, 0x30, 0xd0, 0x01, 0x2a, 0x31, 0xd1, 0x2f, 0xe0, +0x1f, 0x2a, 0x24, 0xd0, 0x20, 0x2a, 0x2c, 0xd1, 0x21, 0xe0, 0x29, 0x2a, 0x19, 0xd0, 0x04, 0xdc, +0x22, 0x2a, 0x1c, 0xd0, 0x28, 0x2a, 0x24, 0xd1, 0x22, 0xe0, 0x2a, 0x2a, 0x20, 0xd0, 0x2c, 0x2a, +0x1f, 0xd1, 0x61, 0x68, 0x20, 0x00, 0x18, 0x31, 0x00, 0xf0, 0x6e, 0xef, 0x2d, 0x21, 0x28, 0x00, +0xf5, 0xf7, 0x84, 0xfd, 0x0b, 0x21, 0x00, 0x20, 0x89, 0x01, 0x69, 0x18, 0x09, 0x69, 0x88, 0x73, +0x0e, 0xe0, 0x28, 0x00, 0xf5, 0xf7, 0x05, 0xfd, 0x61, 0x68, 0x30, 0x31, 0x02, 0xe0, 0x22, 0x75, +0x06, 0xe0, 0xa1, 0x68, 0x20, 0x00, 0x00, 0xf0, 0x58, 0xef, 0x01, 0xe0, 0x20, 0x68, 0xa0, 0x60, +0x00, 0x20, 0x70, 0xbd, 0x10, 0xb5, 0x0a, 0x68, 0x1f, 0x2a, 0x0f, 0xd0, 0x08, 0xdc, 0x92, 0x1c, +0x0d, 0xd0, 0x01, 0x2a, 0x0b, 0xd0, 0x17, 0x2a, 0x0b, 0xd0, 0x18, 0x2a, 0x0e, 0xd1, 0x06, 0xe0, +0x20, 0x2a, 0x03, 0xd0, 0x21, 0x2a, 0x01, 0xd0, 0x22, 0x2a, 0x07, 0xd1, 0x02, 0x75, 0x00, 0x20, +0x10, 0xbd, 0x41, 0x68, 0x48, 0x31, 0x00, 0xf0, 0x38, 0xef, 0xf8, 0xe7, 0x08, 0x00, 0x10, 0xbd, +0x16, 0x4a, 0x17, 0x48, 0x00, 0x21, 0x10, 0xb5, 0x00, 0xf0, 0x56, 0xef, 0x14, 0x49, 0x15, 0x4a, +0x08, 0x00, 0x18, 0x30, 0x00, 0xf0, 0x50, 0xef, 0x11, 0x49, 0x13, 0x4a, 0x08, 0x00, 0x30, 0x30, +0x00, 0xf0, 0x4a, 0xef, 0x0e, 0x49, 0x11, 0x4a, 0x08, 0x00, 0x48, 0x30, 0x00, 0xf0, 0x44, 0xef, +0x0b, 0x49, 0x0f, 0x4a, 0x08, 0x00, 0x3c, 0x30, 0x00, 0xf0, 0x3e, 0xef, 0x10, 0xbd, 0x09, 0x21, +0x89, 0x01, 0x07, 0x4a, 0x41, 0x18, 0x10, 0xb5, 0x0a, 0x60, 0x11, 0x00, 0x8f, 0x22, 0x92, 0x00, +0x18, 0x31, 0x80, 0x18, 0x00, 0xf0, 0xe4, 0xef, 0x10, 0xbd, 0xf0, 0xe7, 0xf1, 0xd2, 0x00, 0xc0, +0xf8, 0x5e, 0x01, 0xc0, 0x1d, 0xd3, 0x00, 0xc0, 0xf5, 0xd3, 0x00, 0xc0, 0x29, 0xd5, 0x00, 0xc0, +0xb5, 0xd5, 0x00, 0xc0, 0xf1, 0xb5, 0x61, 0x20, 0xc0, 0x43, 0x84, 0xb0, 0x00, 0x27, 0x03, 0x90, +0x02, 0x90, 0x04, 0x98, 0xb9, 0x00, 0x09, 0x18, 0x05, 0x20, 0xc0, 0x01, 0x09, 0x18, 0x0c, 0x68, +0x00, 0x2c, 0x7e, 0xd0, 0x61, 0x78, 0x22, 0x78, 0x0e, 0x02, 0x0f, 0x21, 0x16, 0x43, 0x89, 0x01, +0x0e, 0x40, 0xf6, 0xd0, 0x06, 0x42, 0x08, 0xd0, 0x03, 0x98, 0x62, 0x30, 0x05, 0xd1, 0x04, 0x98, +0x01, 0xf0, 0x6a, 0xeb, 0x00, 0x04, 0x00, 0x14, 0x03, 0x90, 0xff, 0x20, 0x41, 0x30, 0x06, 0x42, +0x08, 0xd0, 0x02, 0x98, 0x62, 0x30, 0x05, 0xd1, 0x04, 0x98, 0x00, 0xf0, 0xd2, 0xec, 0x00, 0x04, +0x00, 0x14, 0x02, 0x90, 0x00, 0x25, 0x30, 0x06, 0x14, 0xd5, 0x30, 0x21, 0x09, 0x5d, 0x03, 0x9a, +0x01, 0x20, 0x91, 0x42, 0x00, 0xdd, 0x00, 0x20, 0x80, 0x21, 0x00, 0x91, 0x23, 0x00, 0x22, 0x00, +0x01, 0x00, 0x04, 0x98, 0x5e, 0x33, 0x30, 0x32, 0x01, 0x97, 0xf3, 0xf7, 0x12, 0xff, 0x00, 0x28, +0x00, 0xd0, 0x80, 0x25, 0xb0, 0x05, 0x17, 0xd5, 0x3c, 0x21, 0x09, 0x5d, 0x03, 0x9a, 0x01, 0x20, +0x91, 0x42, 0x00, 0xda, 0x00, 0x20, 0x01, 0x21, 0x49, 0x02, 0x00, 0x91, 0x23, 0x00, 0x22, 0x00, +0x01, 0x00, 0x04, 0x98, 0x5f, 0x33, 0x3c, 0x32, 0x01, 0x97, 0xf3, 0xf7, 0xfa, 0xfe, 0x00, 0x28, +0x02, 0xd0, 0x01, 0x20, 0x40, 0x02, 0x05, 0x43, 0x70, 0x06, 0x16, 0xd5, 0x2a, 0x21, 0x09, 0x5d, +0x02, 0x9a, 0x01, 0x20, 0x49, 0x42, 0x91, 0x42, 0x00, 0xdd, 0x00, 0x20, 0x40, 0x21, 0x00, 0x91, +0x23, 0x00, 0x22, 0x00, 0x01, 0x00, 0x04, 0x98, 0x5c, 0x33, 0x2a, 0x32, 0x01, 0x97, 0xf3, 0xf7, +0xe0, 0xfe, 0x00, 0x28, 0x01, 0xd0, 0x40, 0x20, 0x05, 0x43, 0xf0, 0x05, 0x18, 0xd5, 0x36, 0x21, +0x09, 0x5d, 0x01, 0x20, 0x4a, 0x42, 0x02, 0x99, 0x8a, 0x42, 0x00, 0xda, 0x00, 0x20, 0xff, 0x26, +0x76, 0x1c, 0x23, 0x00, 0x5d, 0x33, 0x22, 0x00, 0x36, 0x32, 0x01, 0x00, 0x01, 0x97, 0x00, 0x96, +0x00, 0xe0, 0x15, 0xe0, 0x04, 0x98, 0xf3, 0xf7, 0xc4, 0xfe, 0x00, 0x28, 0x00, 0xd0, 0x35, 0x43, +0x00, 0x2d, 0x0d, 0xd0, 0x00, 0x2f, 0x0b, 0xd1, 0x04, 0x98, 0x05, 0x21, 0xc9, 0x01, 0x40, 0x18, +0x81, 0x88, 0x29, 0x43, 0x81, 0x80, 0x01, 0x21, 0x04, 0x98, 0xc9, 0x06, 0xf5, 0xf7, 0xa7, 0xfc, +0x7f, 0x1c, 0x3f, 0x06, 0x3f, 0x0e, 0x01, 0x2f, 0x00, 0xd2, 0x5a, 0xe7, 0x05, 0xb0, 0xf0, 0xbd, +0xf3, 0xb5, 0x00, 0x24, 0x05, 0x00, 0x05, 0x26, 0xf6, 0x01, 0x81, 0xb0, 0xa0, 0x00, 0x40, 0x19, +0x80, 0x19, 0x00, 0x68, 0x00, 0x28, 0x48, 0xd0, 0x41, 0x78, 0x02, 0x78, 0x09, 0x02, 0x11, 0x43, +0x49, 0x07, 0x42, 0xd5, 0x02, 0x99, 0x09, 0x69, 0x00, 0x29, 0x0c, 0xd1, 0x01, 0x00, 0x60, 0x31, +0x00, 0x22, 0x4a, 0x70, 0x8a, 0x70, 0xc0, 0x7c, 0x0b, 0x00, 0x01, 0x21, 0x00, 0x28, 0x00, 0xd0, +0x01, 0x00, 0x19, 0x70, 0x31, 0xe0, 0x01, 0x00, 0x60, 0x31, 0x8a, 0x78, 0x4b, 0x78, 0x12, 0x02, +0x1a, 0x43, 0x52, 0x1c, 0x12, 0x04, 0x12, 0x0c, 0x13, 0x0a, 0x4a, 0x70, 0x8b, 0x70, 0x0b, 0x78, +0x00, 0x2b, 0x22, 0xd0, 0x87, 0x7c, 0xba, 0x42, 0x1f, 0xd3, 0x5b, 0x1e, 0x1a, 0x06, 0x12, 0x0e, +0x0a, 0x70, 0x1a, 0xd1, 0x4a, 0x70, 0x8a, 0x70, 0x7c, 0xe5, 0x14, 0x64, 0x01, 0x00, 0x00, 0x00, +0x38, 0xd8, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x01, 0xfd, 0xe7, 0x8a, 0xc2, 0x7c, 0x00, 0x2a, +0x01, 0xd0, 0x0a, 0x70, 0x08, 0xe0, 0x41, 0x78, 0x02, 0x78, 0x09, 0x02, 0x11, 0x43, 0x04, 0x22, +0x91, 0x43, 0x01, 0x70, 0x09, 0x0a, 0x41, 0x70, 0x00, 0x2c, 0x08, 0xd1, 0xa8, 0x19, 0x81, 0x88, +0x04, 0x22, 0x11, 0x43, 0x81, 0x80, 0x51, 0x06, 0x28, 0x00, 0xf5, 0xf7, 0x4a, 0xfc, 0x64, 0x1c, +0x24, 0x06, 0x24, 0x0e, 0x01, 0x2c, 0xab, 0xd3, 0xfe, 0xbd, 0x41, 0x49, 0xc8, 0x68, 0x40, 0x1c, +0xc8, 0x60, 0x70, 0x47, 0xf0, 0xb5, 0x1d, 0x00, 0x1f, 0xb4, 0x00, 0x20, 0xc0, 0x43, 0x84, 0xb0, +0x00, 0x90, 0x01, 0x90, 0x04, 0x98, 0x05, 0x21, 0xc9, 0x01, 0x46, 0x18, 0x34, 0x68, 0x00, 0x2c, +0x3e, 0xd0, 0x60, 0x78, 0x21, 0x78, 0x00, 0x02, 0x08, 0x43, 0x40, 0x05, 0x38, 0xd5, 0x00, 0xf0, +0x9a, 0xee, 0x06, 0x9a, 0x0f, 0x00, 0x2b, 0x00, 0x12, 0x1a, 0x8b, 0x41, 0x02, 0x90, 0x05, 0xd2, +0x06, 0x9a, 0x02, 0x98, 0x39, 0x00, 0x80, 0x1a, 0xa9, 0x41, 0x07, 0xe0, 0x06, 0x9a, 0x00, 0x98, +0x01, 0x99, 0x80, 0x1a, 0x02, 0x9a, 0xa9, 0x41, 0x80, 0x18, 0x79, 0x41, 0x07, 0x00, 0x20, 0x00, +0x0d, 0x00, 0x4a, 0x30, 0x00, 0xf0, 0xfa, 0xe9, 0x00, 0x21, 0x2b, 0x00, 0x3a, 0x1a, 0x8b, 0x41, +0x18, 0xd3, 0x23, 0x4f, 0xf8, 0x88, 0x40, 0x1c, 0x05, 0x04, 0x2d, 0x0c, 0x20, 0x00, 0x4e, 0x30, +0xfd, 0x80, 0x00, 0xf0, 0xec, 0xe9, 0xa8, 0x42, 0x0a, 0xd8, 0x00, 0x20, 0xf8, 0x80, 0xb0, 0x88, +0x01, 0x21, 0x89, 0x02, 0x08, 0x43, 0xb0, 0x80, 0x04, 0x98, 0x49, 0x04, 0xf5, 0xf7, 0xf1, 0xfb, +0x09, 0xb0, 0xf0, 0xbd, 0x16, 0x49, 0x00, 0x20, 0xc8, 0x80, 0xf9, 0xe7, 0x05, 0x22, 0xd2, 0x01, +0x80, 0x18, 0x10, 0xb5, 0x04, 0x68, 0x00, 0x2c, 0x1f, 0xd0, 0x60, 0x78, 0x22, 0x78, 0x00, 0x02, +0x10, 0x43, 0x40, 0x05, 0x19, 0xd5, 0x48, 0x7d, 0x01, 0xf0, 0x1c, 0xea, 0x40, 0x34, 0xe1, 0x79, +0xa2, 0x79, 0x0b, 0x02, 0x13, 0x43, 0x0a, 0x49, 0x00, 0x22, 0x98, 0x42, 0x0e, 0xd8, 0x88, 0x88, +0x40, 0x1c, 0x00, 0x04, 0x00, 0x0c, 0x88, 0x80, 0x63, 0x7a, 0x24, 0x7a, 0x1b, 0x02, 0x23, 0x43, +0x83, 0x42, 0x02, 0xd8, 0x01, 0x20, 0x08, 0x81, 0x8a, 0x80, 0x10, 0xbd, 0x0a, 0x81, 0xfb, 0xe7, +0xe4, 0xee, 0x00, 0xc0, 0x70, 0xb5, 0x05, 0x00, 0x00, 0xf0, 0x70, 0xe8, 0x04, 0x00, 0x28, 0x00, +0x00, 0xf0, 0x60, 0xe8, 0x11, 0x22, 0x01, 0x00, 0x52, 0x01, 0x89, 0x18, 0x49, 0x88, 0x0c, 0x34, +0x00, 0x20, 0x01, 0x29, 0x03, 0xd1, 0xa1, 0x6f, 0x01, 0x29, 0x00, 0xd1, 0x01, 0x20, 0x70, 0xbd, +0x10, 0xb5, 0x89, 0x78, 0x0a, 0x07, 0x93, 0x0f, 0x02, 0x2b, 0x04, 0xd1, 0x0b, 0x09, 0x04, 0x2b, +0x08, 0xd0, 0x0c, 0x2b, 0x06, 0xd0, 0x92, 0x0f, 0x02, 0xd1, 0x09, 0x09, 0x05, 0x29, 0x01, 0xd0, +0xf5, 0xf7, 0xd3, 0xf9, 0x10, 0xbd, 0x00, 0x00, 0x01, 0x48, 0x40, 0x89, 0x70, 0x47, 0x00, 0x00, +0x54, 0xf0, 0x00, 0xc0, 0x04, 0xf0, 0x1f, 0xe5, 0x7d, 0x17, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xa5, 0xdf, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x09, 0x01, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xa3, 0xdf, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x0d, 0x74, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x85, 0x17, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xe8, 0xcb, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x57, 0xac, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x89, 0xad, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x5c, 0xca, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xd1, 0x54, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xa7, 0xb5, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x9b, 0xb5, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x95, 0x4a, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x75, 0x4a, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x43, 0x84, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xfc, 0xd4, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xc3, 0x4a, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x15, 0x1b, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x33, 0xc3, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x99, 0xa4, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xc5, 0x83, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xe9, 0x63, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x3d, 0x61, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x7b, 0xaf, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x91, 0x6c, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xb9, 0x63, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x31, 0x66, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc5, 0x10, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xfd, 0x1c, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x4b, 0xbc, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xb5, 0xff, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc5, 0x00, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xa7, 0xd1, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x51, 0x1a, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xe7, 0xd4, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x8d, 0xd9, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xb9, 0xbe, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xef, 0xc0, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x7b, 0xbf, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xab, 0x60, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xa9, 0xbe, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x97, 0xd9, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x95, 0xd3, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xd9, 0x35, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x8d, 0xd4, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x45, 0x1a, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x73, 0x5a, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xad, 0x5a, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x93, 0xbf, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xaf, 0x65, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x1d, 0xbe, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x35, 0x4b, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xaf, 0xbf, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x07, 0xc4, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x05, 0xb7, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x2d, 0x19, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xcf, 0x64, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xaf, 0xce, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xfb, 0xbe, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xe9, 0x00, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x85, 0x84, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xcf, 0x60, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x07, 0xb8, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x6d, 0x62, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xaf, 0xbe, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xd3, 0xc0, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x4d, 0x6c, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xab, 0x66, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x43, 0x67, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xe9, 0x67, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xa1, 0x56, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x2b, 0xd3, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x11, 0xde, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x4d, 0x26, 0xa6, 0x05, 0x01, 0x00, 0x00, 0x00, +0x34, 0xdc, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x86, 0xab, 0xe9, 0xd8, 0xc5, 0x1e, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x33, 0x54, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xd7, 0x84, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xb5, 0x55, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x7b, 0xd1, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x2f, 0x36, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xa7, 0xd1, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xf7, 0x34, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x97, 0x1c, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x0d, 0x66, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xe3, 0x4a, 0x02, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xdd, 0x6f, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x39, 0x87, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x6d, 0x4a, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x94, 0xcb, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xfd, 0xcd, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xbb, 0x68, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x99, 0x69, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x77, 0x04, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x53, 0x19, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x3d, 0x2b, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xe0, 0xcc, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x1f, 0xaa, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x2f, 0x6d, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xa7, 0xc5, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x8f, 0x49, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc3, 0xbe, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xed, 0x3e, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xbb, 0x3e, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x8f, 0xaf, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xe7, 0xc5, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x85, 0xbb, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x83, 0x49, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x6d, 0xd5, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x00, 0xcd, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x57, 0x11, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x19, 0xd5, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x1f, 0x24, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xab, 0xb0, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x03, 0x41, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x15, 0x4b, 0x02, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x11, 0x7a, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xad, 0x10, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xb3, 0xd0, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x5d, 0x1a, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xd7, 0xa8, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x49, 0xa7, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x53, 0xa7, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x5d, 0xa7, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x19, 0x3e, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xd7, 0x28, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xfd, 0x28, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x11, 0x24, 0x02, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x91, 0xd6, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x3f, 0xd6, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x99, 0xb0, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x25, 0xd6, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xc9, 0xbe, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x27, 0xc8, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x55, 0xea, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x07, 0x4b, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x73, 0xb0, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x09, 0x52, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xa7, 0xb5, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x11, 0xd3, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x75, 0x1b, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x89, 0xa7, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x27, 0xb4, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x75, 0x5b, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x3b, 0x31, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x91, 0x85, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x67, 0x8d, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x49, 0x7b, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xbb, 0x7d, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x71, 0x00, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x87, 0x56, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xd1, 0x62, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xad, 0x75, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x57, 0x6a, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x95, 0xef, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x81, 0x9d, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x23, 0xa4, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x29, 0xed, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x2b, 0xfd, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x99, 0xcc, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x8f, 0xd3, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x5d, 0x4b, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xa1, 0x4a, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xf7, 0x4a, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xd5, 0xfe, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x8d, 0x4a, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x8b, 0xb6, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x77, 0xca, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x2d, 0x78, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xdf, 0x61, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xb7, 0xd2, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xcf, 0xf8, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x49, 0xf5, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x65, 0xf5, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xdb, 0xf8, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xf7, 0x3e, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xbd, 0x3e, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xad, 0xf3, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x91, 0x2b, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x31, 0x16, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xf9, 0x15, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x41, 0x2d, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x37, 0x2d, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x23, 0xf4, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x2d, 0xf7, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xd7, 0xf6, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xa9, 0x5e, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x8c, 0xce, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x18, 0xc6, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x45, 0xb5, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x3d, 0xd2, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x1d, 0x6c, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x09, 0x1e, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x31, 0x4e, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xcd, 0x43, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x5f, 0x4d, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x39, 0x4d, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xf1, 0xf8, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x7d, 0x60, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x87, 0x5f, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x8f, 0x5f, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x2d, 0x4b, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x09, 0x4b, 0x01, 0x00, 0xdc, 0xba, 0xa8, 0x11, 0x01, 0x00, 0x00, 0x00, +0x30, 0xe0, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x88, 0x1e, 0x44, 0xb1, 0x04, 0xf0, 0x1f, 0xe5, +0x31, 0x78, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x53, 0x79, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x11, 0x4a, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xf5, 0xb3, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x03, 0xb6, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x1f, 0xb6, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x8f, 0xb5, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x7f, 0xb5, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x11, 0x3b, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x2b, 0x3b, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x47, 0x90, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x7b, 0x90, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xeb, 0xe9, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x6d, 0xa7, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x05, 0x77, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc5, 0xaf, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x85, 0xc4, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x25, 0xb1, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x13, 0xae, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x35, 0xa8, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x15, 0xb4, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x8b, 0x8e, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xf9, 0x58, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x65, 0x56, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xe9, 0xa8, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x77, 0xa9, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x77, 0x56, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x15, 0x34, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x37, 0x34, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x25, 0xa7, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x2f, 0x0d, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x8f, 0x0f, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xcb, 0x1a, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xdb, 0xe8, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xc5, 0xdb, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x2f, 0xeb, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x3f, 0xe8, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x7f, 0xdc, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xe5, 0xdc, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x3d, 0x6b, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x93, 0x6b, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x29, 0x73, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xf1, 0x51, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x17, 0xc4, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xb7, 0xf8, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc3, 0xf8, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xc1, 0x64, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x2d, 0x25, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x47, 0x27, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x5f, 0xd8, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x4d, 0xd1, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x25, 0x6c, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x0d, 0x6c, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x9f, 0x89, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x9b, 0x83, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xb7, 0x82, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x3f, 0x84, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x65, 0x83, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xb3, 0x84, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc5, 0x11, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xa5, 0x23, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x35, 0x85, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xe7, 0x32, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x51, 0x33, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xbd, 0x2f, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xdd, 0x30, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xed, 0x31, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x1d, 0x32, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xf1, 0xd9, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x87, 0xb0, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x17, 0xd6, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x23, 0x40, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x67, 0xd2, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xf9, 0xb0, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xf5, 0x43, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x81, 0x4a, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x4d, 0xb4, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xb3, 0x54, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x8d, 0x63, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xbf, 0x47, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xb3, 0x28, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x77, 0x55, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x9d, 0xbb, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xb3, 0xad, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x55, 0xac, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xfd, 0xb5, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x3f, 0x55, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x2d, 0x14, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xcd, 0x54, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x9d, 0x74, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x53, 0xd7, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x85, 0x77, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x01, 0x24, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xf9, 0x9e, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xed, 0x40, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x51, 0xb1, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x3d, 0xad, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xe5, 0xa9, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xff, 0xa8, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x43, 0xb1, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x03, 0x11, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xa1, 0xd2, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x55, 0x3c, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x94, 0xce, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xd1, 0x63, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x27, 0x39, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xeb, 0x03, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x15, 0x01, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xed, 0xb6, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc3, 0xbe, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x1d, 0xdb, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x7d, 0x04, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x67, 0x4b, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x13, 0x18, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xf5, 0x17, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x4d, 0x04, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x2d, 0xd9, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x95, 0x76, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xdb, 0x6c, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xd1, 0xa8, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x4f, 0x48, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x57, 0xce, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xad, 0x4b, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xdd, 0x0d, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x27, 0xd8, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xeb, 0xd7, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x23, 0x4b, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xb3, 0x60, 0x82, 0xa9, 0x01, 0x00, 0x00, 0x00, +0x2c, 0xe4, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xa2, 0x90, 0xed, 0x28, 0xb9, 0x10, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x6b, 0x00, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xe9, 0x3d, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x4d, 0x02, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x0d, 0x0e, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xcf, 0x10, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x2b, 0xb7, 0x30, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xed, 0xd1, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x31, 0x6c, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x63, 0x1e, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xd3, 0x49, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x51, 0x59, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xf3, 0x3d, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x01, 0x3e, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xbb, 0xd6, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x17, 0x58, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x13, 0xb7, 0x30, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x8b, 0x68, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x61, 0x56, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x05, 0x5f, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x28, 0xcc, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xa5, 0x57, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x1d, 0x61, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x23, 0x61, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x37, 0x28, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x09, 0x61, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x8b, 0x29, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x25, 0x29, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x29, 0x61, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xa1, 0x60, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x29, 0x2d, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x31, 0x2d, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x35, 0x05, 0x02, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xb5, 0x61, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x27, 0x3b, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x13, 0x3d, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x41, 0x6c, 0x02, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xcf, 0x3b, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x81, 0x87, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x3b, 0x1e, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x4d, 0x1f, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x8f, 0x60, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x67, 0xc3, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x51, 0x28, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xcf, 0x89, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x71, 0x3c, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc9, 0x3d, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x87, 0x66, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc7, 0x23, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x03, 0x68, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xe3, 0x66, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x07, 0x1d, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x21, 0x69, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x69, 0x69, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x19, 0xdc, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xf5, 0x1b, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x25, 0xdc, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xff, 0xd5, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x2b, 0x32, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xb1, 0x92, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x73, 0xa5, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x0b, 0xb7, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xd9, 0x25, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xcf, 0x1c, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x9f, 0x61, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x67, 0x6c, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x5b, 0xd3, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xcf, 0x17, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x03, 0x34, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x59, 0x56, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x47, 0xd4, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x51, 0xa7, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x33, 0x8d, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x5f, 0xb6, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x71, 0x85, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xcd, 0xde, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xad, 0x5e, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x1d, 0xcf, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x45, 0xd5, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xf5, 0xc1, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x9b, 0xde, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x5f, 0x1b, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x73, 0x1b, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xb9, 0x40, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x7d, 0x1b, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xa9, 0x76, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x59, 0x77, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x3d, 0x74, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc5, 0x74, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xb1, 0x1a, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xbd, 0x1a, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x53, 0x74, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xd5, 0x58, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xf1, 0x75, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xbf, 0x73, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x7f, 0xa8, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x69, 0x75, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x2b, 0x74, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x4d, 0x59, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x57, 0x76, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x99, 0x6e, 0x02, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x8b, 0x76, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x5b, 0x66, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x73, 0xd2, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xef, 0x3b, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xf3, 0x62, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x5d, 0x63, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x85, 0x19, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc3, 0x19, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x7d, 0x5d, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x43, 0x2d, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x57, 0x5f, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc3, 0x5d, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x25, 0xd9, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xab, 0x6a, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x39, 0x87, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x77, 0x61, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xb3, 0x40, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x1c, 0x12, 0x02, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x49, 0x5f, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x47, 0x92, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xe1, 0x63, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xa3, 0x92, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xbf, 0x63, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x13, 0x5f, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xfb, 0x69, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xa9, 0xc2, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x35, 0xd6, 0x00, 0x00, 0x74, 0xb5, 0x39, 0xbd, 0x01, 0x00, 0x00, 0x00, +0x28, 0xe8, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x82, 0x73, 0x45, 0xa2, 0x04, 0xf0, 0x1f, 0xe5, +0x49, 0xd6, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x01, 0x55, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x83, 0x63, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xd7, 0x61, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xcf, 0x01, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x0f, 0xc6, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xdd, 0xfe, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x7b, 0xfe, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x11, 0x21, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x5b, 0xec, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xc3, 0xd7, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x1f, 0x3b, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x81, 0x33, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x31, 0x1c, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x35, 0x26, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x49, 0x59, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x87, 0xb9, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x71, 0x60, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xf3, 0x40, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x5f, 0x8e, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x01, 0xdc, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x8f, 0x39, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x3b, 0xb5, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x27, 0x03, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xdb, 0x3a, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x37, 0x74, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x7d, 0x73, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x63, 0xff, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x41, 0x63, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x31, 0x96, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x0f, 0xab, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x25, 0xa8, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x9d, 0xd8, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xe3, 0xb5, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xe7, 0xdb, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x65, 0xdf, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xef, 0x3d, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x71, 0x28, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x95, 0x21, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x6f, 0x3a, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x65, 0x05, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x29, 0x0c, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x89, 0xc3, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xa7, 0x21, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x1f, 0x6d, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc9, 0xaa, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x7d, 0xab, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x33, 0x42, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xfb, 0x8b, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x55, 0x5f, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xb5, 0x3a, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x30, 0xcb, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xeb, 0x77, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x71, 0x20, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x75, 0xf1, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xf5, 0x61, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xf7, 0x1d, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x8f, 0xb9, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x5d, 0x67, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x41, 0x78, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x3f, 0x01, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x8b, 0x5f, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x93, 0x60, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xb9, 0x7c, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xc9, 0x77, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x45, 0xf0, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x53, 0xe0, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xef, 0x80, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x17, 0x78, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x03, 0x3e, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xbb, 0xbe, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x11, 0xd0, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xeb, 0x61, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x95, 0x62, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x6f, 0x71, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x2f, 0x5a, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x3f, 0x6f, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x41, 0x21, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x93, 0x05, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x63, 0x18, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xd3, 0xf6, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x23, 0xe9, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x59, 0xe9, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x51, 0xe9, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x35, 0xf8, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x7b, 0x40, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x5f, 0xf8, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xa1, 0x36, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x3d, 0x41, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xdb, 0x2e, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xd1, 0xf6, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x41, 0xbb, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x11, 0xbb, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x2d, 0xbb, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x6b, 0x28, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x77, 0x28, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xbd, 0x53, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x9b, 0x19, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x63, 0x8d, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x0d, 0xe1, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xfd, 0x53, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xed, 0x58, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x67, 0x26, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xbf, 0x49, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xed, 0xa5, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x69, 0x5b, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xfb, 0x13, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x6f, 0x61, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xf5, 0x6c, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc7, 0xda, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xf1, 0x23, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xbd, 0x88, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x8f, 0x89, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x01, 0x89, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xdd, 0xb9, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xfb, 0xb9, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x09, 0x2b, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xeb, 0x00, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xb9, 0xbc, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc5, 0x00, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x0b, 0xbd, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xb9, 0x10, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x3b, 0x2b, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc3, 0x28, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xc9, 0xb7, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x9d, 0x0d, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x37, 0xb7, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x36, 0xe8, 0xa8, 0xcc, 0x01, 0x00, 0x00, 0x00, +0x24, 0xec, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x05, 0x25, 0x4b, 0xf0, 0xc3, 0xf0, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x41, 0xb7, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xaf, 0xdd, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x23, 0xe1, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x01, 0x77, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x0d, 0x86, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xa7, 0x6a, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xb5, 0xad, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x27, 0xab, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xf9, 0xaa, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xa7, 0xb0, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x2b, 0xb3, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x15, 0x81, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x97, 0x6d, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x49, 0x81, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x53, 0x66, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xcd, 0x66, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x85, 0x67, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xbd, 0xff, 0x30, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xe5, 0x20, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x03, 0x0b, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x1b, 0x00, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x21, 0x20, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x19, 0x82, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x39, 0x82, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x0d, 0xf2, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xb9, 0x70, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x05, 0x60, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x19, 0x1c, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xaf, 0x6f, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xd9, 0x6f, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x73, 0x6f, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xa3, 0xbd, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x03, 0x71, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x13, 0x71, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x5b, 0x70, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x89, 0x70, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x3b, 0x70, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x4b, 0x70, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x39, 0x2c, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x0f, 0x8a, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xb3, 0xf1, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xd7, 0x5a, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xcf, 0xb5, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xdb, 0x17, 0x31, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2f, 0x01, 0x5d, 0x01, +0x33, 0x01, 0x62, 0x01, 0x35, 0x01, 0x32, 0x01, 0x34, 0x01, 0x46, 0x01, 0x96, 0x01, 0x97, 0x01, +0x64, 0x01, 0xdd, 0x00, 0x69, 0x01, 0x70, 0x01, 0x39, 0x01, 0x7b, 0x01, 0x00, 0x00, 0x01, 0x00, +0x2b, 0x01, 0x2c, 0x01, 0x2d, 0x01, 0x2f, 0x01, 0x30, 0x01, 0x31, 0x01, 0x32, 0x01, 0x32, 0x01, +0x34, 0x01, 0x36, 0x01, 0x33, 0x01, 0x46, 0x01, 0x35, 0x01, 0x39, 0x01, 0x7b, 0x01, 0x3b, 0x01, +0x3b, 0x01, 0x3b, 0x01, 0x3b, 0x01, 0x1f, 0x01, 0x38, 0x01, 0x40, 0x01, 0x5e, 0x01, 0x55, 0x01, +0x5d, 0x01, 0x2a, 0x01, 0x01, 0x01, 0x62, 0x01, 0x41, 0x01, 0x91, 0x01, 0x91, 0x01, 0x92, 0x01, +0x64, 0x01, 0x2d, 0x00, 0xdd, 0x00, 0xaa, 0x01, 0x93, 0x01, 0x70, 0x01, 0x98, 0x01, 0x3d, 0x00, +0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x2e, 0x33, 0x2e, +0x31, 0x2e, 0x30, 0x00, 0x00, 0x3c, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x02, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xfd, +0xfd, 0xff, 0x88, 0x00, 0xc0, 0x03, 0xc1, 0x03, 0xbe, 0x03, 0xbf, 0x03, 0xc4, 0x03, 0xc5, 0x03, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xfd, 0xfd, 0xff, 0x92, 0xfd, 0xfd, 0xff, 0x92, 0xfd, 0xfd, 0xff, 0x92, 0x00, 0x00, 0x00, 0x00, +0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x12, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x01, +0x02, 0x00, 0x00, 0x00, 0x05, 0x01, 0x02, 0x00, 0x00, 0x00, 0x06, 0x01, 0x02, 0x00, 0x00, 0x00, +0x07, 0x01, 0x02, 0x00, 0x3c, 0x00, 0x16, 0x01, 0x02, 0x00, 0x00, 0x00, 0x17, 0x01, 0x02, 0x00, +0x00, 0x00, 0x26, 0x01, 0x02, 0x00, 0x00, 0x00, 0x27, 0x01, 0x02, 0x00, 0x00, 0x00, 0x28, 0x01, +0x02, 0x00, 0x00, 0x00, 0x29, 0x01, 0x02, 0x00, 0x00, 0x00, 0x24, 0x01, 0x10, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x01, +0x02, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x71, 0xf1, 0x22, 0xbe, 0x01, 0x00, 0x00, 0x00, +0x20, 0xf0, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xc3, 0xb4, 0x14, 0xb6, 0x01, 0x00, 0x00, 0x00, +0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x44, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x02, 0x00, 0x01, 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, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x75, 0x02, 0x00, 0x00, +0x05, 0x00, 0x00, 0x00, 0x21, 0x4a, 0x02, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, +0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, +0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf9, 0x10, 0x00, 0x00, 0x58, 0x37, 0x01, 0xc0, +0x02, 0x01, 0x01, 0x00, 0x02, 0x02, 0x01, 0x00, 0x01, 0x02, 0x01, 0x00, 0x01, 0x03, 0x02, 0x00, +0x01, 0x03, 0x01, 0x00, 0x00, 0xff, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x0b, 0xef, 0x00, 0x00, +0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x03, 0x09, +0x04, 0x06, 0x04, 0x05, 0x07, 0x00, 0x08, 0x01, 0x06, 0x02, 0x08, 0x07, 0x0f, 0x00, 0x7f, 0x00, +0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xff, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, +0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, +0x0a, 0x76, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, +0x05, 0x06, 0x08, 0x09, 0x7e, 0x00, 0x00, 0x00, 0xff, 0x02, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x0c, 0x00, 0xdc, 0x05, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0xf4, 0x01, 0x00, 0x00, +0x00, 0x00, 0x0c, 0x00, 0xdc, 0x05, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0xdc, 0x05, 0x00, 0x00, +0x00, 0x00, 0x08, 0x00, 0xdc, 0x05, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x59, 0x06, 0x00, 0x00, +0x01, 0x00, 0x04, 0x00, 0x59, 0x06, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x59, 0x06, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0xf6, 0x00, 0xc0, 0x90, 0xf8, 0x00, 0xc0, +0x88, 0xf8, 0x00, 0xc0, 0x8c, 0xf8, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x98, 0xf8, 0x00, 0xc0, +0x94, 0xf8, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x78, 0x1d, 0x01, 0xc0, 0x58, 0x1e, 0x01, 0xc0, +0x4c, 0x1e, 0x01, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x1e, 0x01, 0xc0, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x90, 0x03, 0x91, 0x03, 0xc4, 0x03, 0xf1, 0x03, 0xc5, 0x03, 0xf2, 0x03, +0xbe, 0x03, 0xdf, 0x03, 0xbf, 0x03, 0xe0, 0x03, 0xc0, 0x03, 0xe5, 0x03, 0xc1, 0x03, 0xe6, 0x03, +0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00, 0x48, 0x00, 0x00, 0x00, 0x06, 0x00, 0x6c, 0x09, +0xb4, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xec, 0x01, 0x00, 0x00, +0xa0, 0x01, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, +0x0a, 0x00, 0x00, 0x00, 0x02, 0x01, 0x2d, 0x01, 0x55, 0x01, 0x56, 0x01, 0x57, 0x01, 0x58, 0x01, +0xa2, 0x01, 0xa7, 0x01, 0xab, 0x01, 0xac, 0x01, 0xaf, 0x01, 0xb0, 0x01, 0xb1, 0x01, 0xb2, 0x01, +0xb4, 0x01, 0xc8, 0x01, 0x08, 0x00, 0x2c, 0x00, 0x2d, 0x00, 0x2e, 0x00, 0x31, 0x00, 0x32, 0x00, +0x33, 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, 0x00, 0x4f, 0x00, 0x5a, 0x00, 0x80, 0x00, 0xdd, 0x00, +0x35, 0x01, 0x79, 0x01, 0x7b, 0x01, 0x04, 0x02, 0x54, 0x03, 0x88, 0x02, 0x8b, 0x02, 0x8c, 0x02, +0xb6, 0x03, 0xb8, 0x03, 0xb9, 0x03, 0xcb, 0x03, 0xce, 0x03, 0xcf, 0x03, 0xd0, 0x03, 0x08, 0x04, +0x51, 0x04, 0x94, 0x04, 0x95, 0x04, 0x44, 0x00, 0x47, 0x00, 0x50, 0x00, 0x51, 0x00, 0x79, 0x01, +0x7a, 0x01, 0x7b, 0x01, 0xd9, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, +0x48, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, +0x56, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x00, +0xa7, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xac, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x00, 0x00, +0xb0, 0x00, 0x00, 0x00, 0xb1, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, +0x08, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, +0x31, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, +0x37, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, +0x80, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0x35, 0x01, 0x00, 0x00, 0x79, 0x01, 0x00, 0x00, +0x7b, 0x01, 0x00, 0x00, 0x04, 0x02, 0x00, 0x00, 0x54, 0x03, 0x00, 0x00, 0x88, 0x02, 0x00, 0x00, +0x8b, 0x02, 0x00, 0x00, 0x8c, 0x02, 0x00, 0x00, 0xb6, 0x03, 0x00, 0x00, 0xb8, 0x03, 0x00, 0x00, +0xb9, 0x03, 0x00, 0x00, 0xcb, 0x03, 0x00, 0x00, 0xce, 0x03, 0x00, 0x00, 0xcf, 0x03, 0x00, 0x00, +0xd0, 0x03, 0x00, 0x00, 0x08, 0x04, 0x00, 0x00, 0x51, 0x04, 0x00, 0x00, 0x94, 0x04, 0x00, 0x00, +0x95, 0x04, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0xca, 0xb8, 0x73, 0xf4, 0x01, 0x00, 0x00, 0x00, +0x1c, 0xf4, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xb6, 0x4a, 0xef, 0x0e, 0x47, 0x00, 0x00, 0x00, +0x50, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x79, 0x01, 0x00, 0x00, 0x7a, 0x01, 0x00, 0x00, +0x7b, 0x01, 0x00, 0x00, 0xd9, 0x02, 0x00, 0x00, 0xb0, 0x30, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x94, 0x43, 0x01, 0xc0, +0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00, 0x07, 0x07, 0x07, 0x00, 0x03, 0x00, 0x03, 0x00, 0x07, +0x00, 0x03, 0x00, 0x07, 0x04, 0x05, 0x00, 0x07, 0x06, 0x07, 0x00, 0x08, 0x00, 0x02, 0x00, 0x08, +0x03, 0x04, 0x00, 0x08, 0x05, 0x07, 0x00, 0x08, 0x00, 0x02, 0x01, 0x08, 0x03, 0x04, 0x01, 0x08, +0x05, 0x07, 0x01, 0x01, 0x12, 0x0e, 0x0e, 0x0e, 0x0d, 0x0d, 0x0d, 0x0a, 0x0a, 0x0a, 0x02, 0x12, +0x0f, 0x0f, 0x0f, 0x0f, 0x0e, 0x0d, 0x0a, 0x0a, 0x0a, 0x03, 0x12, 0x10, 0x10, 0x0f, 0x0f, 0x0e, +0x0d, 0x0a, 0x0a, 0x0a, 0x04, 0x12, 0x10, 0x10, 0x0f, 0x0f, 0x0e, 0x0d, 0x0b, 0x0b, 0x0b, 0x05, +0x12, 0x10, 0x10, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0c, 0x0b, 0x06, 0x12, 0x10, 0x10, 0x0f, 0x0f, +0x0e, 0x0d, 0x0d, 0x0c, 0x0b, 0x07, 0x12, 0x10, 0x10, 0x0f, 0x0f, 0x0e, 0x0d, 0x0d, 0x0c, 0x0b, +0x08, 0x12, 0x10, 0x10, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0c, 0x0b, 0x09, 0x12, 0x10, 0x10, 0x0f, +0x0f, 0x0e, 0x0d, 0x0a, 0x0a, 0x0a, 0x0a, 0x12, 0x10, 0x10, 0x0f, 0x0f, 0x0e, 0x0d, 0x0d, 0x0c, +0x0b, 0x0b, 0x12, 0x0e, 0x0e, 0x0e, 0x0e, 0x0e, 0x0d, 0x0d, 0x0c, 0x0b, 0x0c, 0x10, 0x10, 0x10, +0x0f, 0x0f, 0x0e, 0x0d, 0x0d, 0x0c, 0x0b, 0x0d, 0x10, 0x10, 0x10, 0x0f, 0x0f, 0x0e, 0x0d, 0x0d, +0x0c, 0x0b, 0x0e, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0b, 0x03, 0x00, 0x03, +0x02, 0x01, 0x06, 0x05, 0x04, 0x09, 0x08, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, +0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x3f, 0x7f, 0x02, 0x00, 0x00, 0x00, 0xf4, 0x01, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, +0x4b, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x3a, 0x00, 0xf8, 0x00, 0x88, 0x00, 0x49, 0x01, 0x4c, 0x01, +0xf5, 0xff, 0x00, 0x00, 0x30, 0x00, 0x29, 0x00, 0x4e, 0x00, 0x4b, 0x00, 0x6d, 0x00, 0x78, 0x00, +0x4c, 0x00, 0x00, 0x00, 0xae, 0x00, 0x31, 0x00, 0xf8, 0x00, 0x7a, 0x00, 0x42, 0x01, 0x19, 0x01, +0xe7, 0xff, 0x00, 0x00, 0x40, 0x00, 0x38, 0x00, 0x7a, 0x00, 0x76, 0x00, 0xd8, 0x00, 0x7a, 0x01, +0x38, 0x00, 0x00, 0x00, 0xd7, 0x00, 0x97, 0x00, 0x01, 0x01, 0x5d, 0x01, 0x43, 0x01, 0xbc, 0x02, +0xe9, 0xff, 0x00, 0x00, 0x7c, 0x00, 0x09, 0x01, 0x98, 0x00, 0xe0, 0x01, 0xc3, 0x00, 0x21, 0x03, +0x59, 0x00, 0x00, 0x00, 0xa5, 0x00, 0x56, 0x00, 0xd0, 0x00, 0x87, 0x00, 0xe2, 0x00, 0xac, 0x00, +0xd5, 0xff, 0x00, 0x00, 0x25, 0x00, 0x4d, 0x00, 0x5d, 0x00, 0x9a, 0x00, 0x9c, 0x00, 0x61, 0x01, +0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xaf, 0xb5, 0x00, 0xc0, 0xc7, 0xb5, 0x00, 0xc0, 0x5d, 0xb6, 0x00, 0xc0, +0xf1, 0x58, 0x01, 0x00, 0xe5, 0x6b, 0x01, 0x00, 0x8d, 0xbd, 0x01, 0x00, 0xe5, 0x15, 0x00, 0x00, +0xe7, 0xff, 0x00, 0x00, 0x43, 0xa8, 0x00, 0x00, 0xe1, 0x53, 0x01, 0x00, 0x0e, 0x76, 0x02, 0x00, +0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xff, 0xff, 0xff, 0x00, 0x04, 0x00, 0x3f, 0x00, 0x1d, 0x00, 0x27, 0x00, 0x2f, 0x00, 0x2a, 0x00, +0x3e, 0x00, 0x24, 0x00, 0x42, 0x00, 0x01, 0x00, 0x4d, 0x00, 0x17, 0x00, 0x4e, 0x00, 0x82, 0x00, +0x4f, 0x00, 0x2c, 0x00, 0x50, 0x00, 0x48, 0x00, 0x51, 0x00, 0x12, 0x00, 0x52, 0x00, 0x3f, 0x00, +0x65, 0x00, 0x1c, 0x00, 0x66, 0x00, 0x27, 0x00, 0x69, 0x00, 0x1f, 0x00, 0x70, 0x00, 0x20, 0x00, +0x72, 0x00, 0x20, 0x00, 0xd4, 0x00, 0x01, 0x00, 0xd5, 0x00, 0x01, 0x00, 0xd6, 0x00, 0x2a, 0x00, +0xd8, 0x00, 0x12, 0x00, 0xd9, 0x00, 0x04, 0x00, 0xda, 0x00, 0x0a, 0x00, 0xdb, 0x00, 0xa1, 0x00, +0xdd, 0x00, 0x2c, 0x00, 0xe0, 0x00, 0x31, 0x00, 0xf1, 0x00, 0x1e, 0x00, 0x03, 0x01, 0x80, 0x00, +0x15, 0x01, 0x6e, 0x00, 0x16, 0x01, 0x7f, 0x00, 0x1d, 0x01, 0x66, 0x00, 0x21, 0x01, 0x64, 0x00, +0x25, 0x01, 0x66, 0x00, 0x29, 0x01, 0x60, 0x00, 0x2f, 0x01, 0x00, 0x00, 0x30, 0x01, 0xf9, 0x00, +0x31, 0x01, 0x00, 0x00, 0x32, 0x01, 0xf9, 0x00, 0x47, 0x01, 0x90, 0x00, 0x48, 0x01, 0xe3, 0x00, +0x49, 0x01, 0x4c, 0x00, 0x4d, 0x01, 0x18, 0x00, 0x50, 0x01, 0x30, 0x00, 0x56, 0x01, 0x3c, 0x00, +0x57, 0x01, 0xd9, 0x00, 0x5b, 0x01, 0x4b, 0x00, 0x5c, 0x01, 0x62, 0x00, 0x5d, 0x01, 0x25, 0x00, +0x5e, 0x01, 0x19, 0x00, 0x65, 0x01, 0x50, 0x00, 0x8a, 0x01, 0x03, 0x00, 0x99, 0x01, 0x05, 0x00, +0xa1, 0x01, 0x70, 0x00, 0xa2, 0x01, 0x23, 0x00, 0xa4, 0x01, 0x44, 0x00, 0xa6, 0x01, 0x0e, 0x00, +0xa7, 0x01, 0x3a, 0x00, 0xa9, 0x01, 0x13, 0x00, 0xaa, 0x01, 0x06, 0x00, 0xac, 0x01, 0x4c, 0x00, +0xaf, 0x01, 0x00, 0x00, 0xb4, 0x01, 0x00, 0x00, 0xb5, 0x01, 0x6a, 0x00, 0xc0, 0x01, 0x77, 0x00, +0xc2, 0x01, 0x69, 0x00, 0xc3, 0x01, 0x03, 0x00, 0xc6, 0x01, 0x91, 0x00, 0xd0, 0x01, 0x68, 0x00, +0xd1, 0x01, 0x68, 0x00, 0xe5, 0x01, 0x69, 0x00, 0xe6, 0x01, 0x69, 0x00, 0xd4, 0x01, 0x07, 0x00, +0xd5, 0x01, 0xc3, 0x00, 0xd6, 0x01, 0xc3, 0x00, 0xdc, 0x01, 0x46, 0x00, 0x11, 0x00, 0x13, 0x00, +0x00, 0x01, 0x00, 0x00, 0xb8, 0x01, 0x49, 0x00, 0xb9, 0x01, 0xc9, 0x00, 0xba, 0x01, 0x03, 0x00, +0xbb, 0x01, 0x00, 0x00, 0x11, 0x00, 0x23, 0x00, 0x80, 0x01, 0x05, 0x00, 0x81, 0x01, 0x05, 0x00, +0x82, 0x01, 0x05, 0x00, 0x83, 0x01, 0x05, 0x00, 0x84, 0x01, 0x05, 0x00, 0x85, 0x01, 0x05, 0x00, +0x86, 0x01, 0x05, 0x00, 0x87, 0x01, 0x05, 0x00, 0x88, 0x01, 0x05, 0x00, 0x89, 0x01, 0x05, 0x00, +0x8a, 0x01, 0x05, 0x00, 0x8b, 0x01, 0x05, 0x00, 0xab, 0x9c, 0x8f, 0x45, 0x01, 0x00, 0x00, 0x00, +0x18, 0xf8, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x96, 0xa9, 0x47, 0x84, 0x8c, 0x01, 0x05, 0x00, +0x8d, 0x01, 0x05, 0x00, 0x8e, 0x01, 0x05, 0x00, 0x8f, 0x01, 0x05, 0x00, 0x90, 0x01, 0x05, 0x00, +0x91, 0x01, 0x05, 0x00, 0x92, 0x01, 0x05, 0x00, 0x93, 0x01, 0x05, 0x00, 0x94, 0x01, 0x05, 0x00, +0x95, 0x01, 0x05, 0x00, 0x96, 0x01, 0x05, 0x00, 0x97, 0x01, 0x05, 0x00, 0x98, 0x01, 0x05, 0x00, +0x99, 0x01, 0x05, 0x00, 0x9a, 0x01, 0x05, 0x00, 0x9b, 0x01, 0x05, 0x00, 0x9c, 0x01, 0x05, 0x00, +0x9d, 0x01, 0x05, 0x00, 0x9e, 0x01, 0x05, 0x00, 0x9f, 0x01, 0x05, 0x00, 0x11, 0x00, 0x03, 0x00, +0xff, 0xff, 0xff, 0x00, 0xa0, 0x01, 0xb3, 0x00, 0xc0, 0x01, 0x4e, 0x00, 0xff, 0xff, 0xff, 0x00, +0xa0, 0x01, 0xd3, 0x00, 0xc0, 0x01, 0x4e, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, +0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, +0xa0, 0x01, 0xce, 0x00, 0xa1, 0x01, 0xce, 0x00, 0xa2, 0x01, 0xce, 0x00, 0xa3, 0x01, 0xce, 0x00, +0xa4, 0x01, 0xce, 0x00, 0xa5, 0x01, 0xce, 0x00, 0xa6, 0x01, 0xce, 0x00, 0xa7, 0x01, 0xce, 0x00, +0xa8, 0x01, 0xce, 0x00, 0xa9, 0x01, 0xce, 0x00, 0xc0, 0x01, 0x47, 0x00, 0xc1, 0x01, 0x47, 0x00, +0xc2, 0x01, 0x47, 0x00, 0xc3, 0x01, 0x47, 0x00, 0xc4, 0x01, 0x47, 0x00, 0xc5, 0x01, 0x47, 0x00, +0xc6, 0x01, 0x47, 0x00, 0xc7, 0x01, 0x47, 0x00, 0xc8, 0x01, 0x47, 0x00, 0xc9, 0x01, 0x47, 0x00, +0xff, 0xff, 0xff, 0x00, 0x80, 0x01, 0x00, 0x00, 0x81, 0x01, 0x00, 0x00, 0x82, 0x01, 0x00, 0x00, +0x83, 0x01, 0x00, 0x00, 0x84, 0x01, 0x00, 0x00, 0x85, 0x01, 0x00, 0x00, 0x86, 0x01, 0x00, 0x00, +0x87, 0x01, 0x00, 0x00, 0x88, 0x01, 0x00, 0x00, 0x89, 0x01, 0x00, 0x00, 0x8a, 0x01, 0x00, 0x00, +0x8b, 0x01, 0x00, 0x00, 0x8c, 0x01, 0x00, 0x00, 0x8d, 0x01, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, +0x8f, 0x01, 0x00, 0x00, 0x90, 0x01, 0x00, 0x00, 0x91, 0x01, 0x00, 0x00, 0x92, 0x01, 0x00, 0x00, +0x93, 0x01, 0x00, 0x00, 0x94, 0x01, 0x00, 0x00, 0x95, 0x01, 0x00, 0x00, 0x96, 0x01, 0x00, 0x00, +0x97, 0x01, 0x00, 0x00, 0x98, 0x01, 0x00, 0x00, 0x99, 0x01, 0x00, 0x00, 0x9a, 0x01, 0x00, 0x00, +0x9b, 0x01, 0x00, 0x00, 0x9c, 0x01, 0x00, 0x00, 0x9d, 0x01, 0x00, 0x00, 0x9e, 0x01, 0x00, 0x00, +0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0x01, 0x01, 0x01, 0x01, 0xff, 0x04, 0x04, +0x04, 0x04, 0x03, 0x03, 0x02, 0x02, 0xff, 0x07, 0x07, 0x07, 0x06, 0x06, 0x05, 0x05, 0x05, 0x0a, +0x0a, 0x0a, 0x0a, 0x09, 0x09, 0x08, 0x08, 0x08, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, +0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x03, +0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x07, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, +0x3d, 0x00, 0x00, 0x07, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x07, 0x0c, 0x00, +0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x08, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, +0x00, 0x08, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x08, 0x0c, 0x00, 0x00, 0x00, +0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x8c, 0x1a, 0x02, 0x00, 0x1e, 0x02, 0x14, 0x03, 0x00, 0x00, 0x00, 0x00, +0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x02, 0x13, 0xf1, 0x75, 0x81, 0x3f, 0x12, 0x13, 0xed, 0xe5, 0x82, 0x60, 0x03, 0x02, 0x00, +0x38, 0xe4, 0x78, 0x7f, 0xf6, 0xd8, 0xfd, 0xc2, 0x03, 0xc2, 0x04, 0x02, 0x00, 0x38, 0x12, 0x00, +0x3d, 0x80, 0xfe, 0x75, 0x34, 0x00, 0xc2, 0x08, 0xe4, 0xf5, 0x35, 0xf5, 0x36, 0xc2, 0x09, 0xc2, +0x0a, 0x75, 0x37, 0x0e, 0x75, 0x38, 0x0c, 0x75, 0x39, 0x0a, 0x75, 0x3a, 0x08, 0x75, 0x3b, 0x06, +0x75, 0x3c, 0x04, 0x75, 0x3d, 0x02, 0x75, 0x3e, 0x01, 0x75, 0x2c, 0xff, 0x75, 0x2d, 0xff, 0x75, +0x30, 0xc9, 0x75, 0x31, 0xff, 0x75, 0x2e, 0x59, 0x75, 0x2f, 0xff, 0x75, 0x2a, 0x1f, 0x75, 0x2b, +0x00, 0x75, 0x32, 0x80, 0xc2, 0x06, 0xc2, 0x07, 0xc2, 0x00, 0xc2, 0x01, 0xc2, 0x02, 0x75, 0x26, +0x01, 0x90, 0xf0, 0xb2, 0xe0, 0xfc, 0x44, 0x20, 0xf0, 0x75, 0x8e, 0x00, 0x75, 0x86, 0x00, 0x75, +0x88, 0x00, 0x75, 0x89, 0x00, 0x90, 0xf0, 0xb2, 0xe0, 0xfc, 0x44, 0x40, 0xf0, 0xe5, 0xb0, 0x54, +0x30, 0x70, 0x07, 0x90, 0xf0, 0xb1, 0xe4, 0xf0, 0x80, 0xf3, 0xe5, 0xf1, 0xfc, 0x24, 0xd7, 0x40, +0xf9, 0xec, 0x24, 0x09, 0x83, 0xc0, 0xe0, 0xec, 0x24, 0x2c, 0x83, 0xc0, 0xe0, 0x22, 0x1a, 0xa9, +0xcc, 0x62, 0xaa, 0x75, 0x75, 0xea, 0xb7, 0x75, 0xb6, 0xea, 0x09, 0x97, 0xad, 0xd3, 0xf0, 0x10, +0x84, 0xa7, 0xdb, 0xef, 0xce, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0x84, 0xd2, 0x09, +0x7d, 0xf5, 0xdd, 0xc9, 0xf6, 0x30, 0x50, 0x01, 0x01, 0x01, 0x02, 0x02, 0x05, 0x03, 0x13, 0x05, +0x06, 0x07, 0x13, 0x08, 0x03, 0x0a, 0x0a, 0x0a, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0f, 0x13, 0x13, +0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x0d, 0x13, 0x0c, 0x08, 0x04, 0x02, 0x09, 0x05, 0x0b, 0x0b, +0x75, 0xde, 0x00, 0x75, 0xe4, 0x00, 0x75, 0xdb, 0x00, 0x75, 0xe3, 0x00, 0x75, 0xe6, 0x00, 0x75, +0xdc, 0x00, 0x75, 0xda, 0x00, 0x75, 0xdd, 0x00, 0x90, 0xf0, 0x05, 0xe0, 0xfc, 0x53, 0x04, 0x20, +0xbc, 0x20, 0x02, 0x80, 0x05, 0x75, 0xd9, 0x00, 0x80, 0x03, 0x75, 0xd9, 0x03, 0x30, 0x08, 0x28, +0x90, 0xf0, 0x7b, 0xe0, 0xfc, 0x53, 0x04, 0x01, 0xbc, 0x01, 0x08, 0x90, 0xf0, 0xb2, 0xe0, 0xfc, +0x54, 0xdf, 0xf0, 0x90, 0xf0, 0xb2, 0xe0, 0xfc, 0x44, 0x40, 0xf0, 0xe5, 0xb0, 0x54, 0x30, 0x70, +0x07, 0x90, 0xf0, 0xb1, 0xe4, 0xf0, 0x80, 0xf3, 0xd2, 0x08, 0x90, 0xf0, 0x4b, 0xe0, 0xfc, 0x53, +0x04, 0x20, 0xbc, 0x20, 0x05, 0x75, 0xf2, 0xff, 0x80, 0x03, 0x75, 0xf2, 0xfb, 0x75, 0xf4, 0x03, +0xd2, 0xaf, 0x90, 0xf0, 0x07, 0xe0, 0xfc, 0x53, 0x04, 0xc0, 0xbc, 0x40, 0x02, 0x80, 0x0d, 0x90, +0xf0, 0x55, 0xe0, 0xfc, 0x75, 0xf1, 0x03, 0x90, 0xf0, 0x55, 0xec, 0xf0, 0x75, 0xf1, 0x01, 0x75, +0xd9, 0x07, 0xd2, 0xa7, 0x90, 0xff, 0x9c, 0x12, 0x16, 0x6d, 0xc2, 0xa7, 0x90, 0xf0, 0x05, 0xe0, +0xfc, 0x53, 0x04, 0x20, 0xbc, 0x20, 0x02, 0x80, 0x06, 0x90, 0xfd, 0x66, 0x12, 0x16, 0x6d, 0x75, +0xf1, 0x02, 0xc2, 0x04, 0x90, 0xf0, 0x05, 0xe0, 0x46, 0x04, 0x5c, 0x94, 0x01, 0x00, 0x00, 0x00, +0x14, 0xfc, 0x00, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x11, 0xff, 0x49, 0xd6, 0xfc, 0x53, 0x04, 0x08, +0xbc, 0x08, 0x05, 0x75, 0xd9, 0x17, 0x80, 0x03, 0x75, 0xd9, 0x07, 0x90, 0xf0, 0x05, 0xe0, 0xfc, +0x53, 0x04, 0x80, 0xbc, 0x80, 0x03, 0x43, 0xd9, 0x20, 0x30, 0xce, 0x05, 0x75, 0xda, 0xb7, 0x80, +0x03, 0x75, 0xda, 0xb3, 0x75, 0xdd, 0x03, 0x90, 0xf0, 0x03, 0xe0, 0xfc, 0x30, 0xe0, 0x03, 0x43, +0xdd, 0x10, 0x90, 0xf0, 0x03, 0xe0, 0xfc, 0x30, 0xe4, 0x03, 0x43, 0xdd, 0x20, 0x90, 0xff, 0x9c, +0x12, 0x16, 0x6d, 0x75, 0xe7, 0x01, 0x90, 0xf0, 0x07, 0xe0, 0xfc, 0x53, 0x04, 0xc0, 0xbc, 0x40, +0x06, 0x75, 0xf1, 0x24, 0x02, 0x00, 0xb4, 0x90, 0xf0, 0x07, 0xe0, 0xfc, 0x53, 0x04, 0xc0, 0xbc, +0x80, 0x12, 0x75, 0xf1, 0x04, 0x90, 0xf0, 0x54, 0x74, 0x07, 0xf0, 0x90, 0xf0, 0x56, 0x74, 0x0f, +0xf0, 0x02, 0x00, 0xb4, 0x75, 0xf1, 0x03, 0x90, 0xff, 0xff, 0x12, 0x16, 0x6d, 0x90, 0xf0, 0x54, +0x74, 0x07, 0xf0, 0x90, 0xf0, 0x56, 0x74, 0x0f, 0xf0, 0x02, 0x00, 0xb4, 0xc2, 0x03, 0xc2, 0x02, +0x75, 0x26, 0x01, 0xe5, 0xc8, 0x20, 0xe4, 0x36, 0x90, 0xf0, 0x40, 0xe0, 0xfc, 0x53, 0x04, 0x04, +0xbc, 0x04, 0x2b, 0x90, 0xfc, 0x18, 0x12, 0x1a, 0x79, 0xd2, 0xa0, 0x75, 0x23, 0x01, 0x75, 0x24, +0x0f, 0x75, 0x25, 0x00, 0x75, 0x10, 0xb7, 0x75, 0x11, 0xf0, 0x90, 0xf0, 0x55, 0x12, 0x17, 0x8d, +0x92, 0xb7, 0xc2, 0xa0, 0xc2, 0x8e, 0xc2, 0x8f, 0xc2, 0x00, 0xc2, 0x01, 0xc2, 0x02, 0x43, 0xe7, +0x02, 0x75, 0xf1, 0x04, 0x90, 0xf0, 0x07, 0xe0, 0xfc, 0x53, 0x04, 0xc0, 0xbc, 0x40, 0x03, 0x30, +0x04, 0x1b, 0x90, 0xf0, 0x5b, 0xe0, 0xfc, 0x53, 0x04, 0x80, 0xbc, 0x80, 0x10, 0xd2, 0xc2, 0x75, +0xdc, 0x07, 0x75, 0xde, 0x0f, 0x75, 0xe4, 0x0e, 0xd2, 0xc3, 0x75, 0xe3, 0x01, 0xc2, 0x03, 0xc2, +0x02, 0x75, 0x26, 0x01, 0x75, 0xf1, 0x24, 0x90, 0xf0, 0x07, 0xe0, 0xfc, 0x53, 0x04, 0xc0, 0xbc, +0x40, 0x03, 0x20, 0x04, 0x0c, 0x90, 0xf0, 0x54, 0x74, 0x07, 0xf0, 0x90, 0xf0, 0x56, 0x74, 0x0f, +0xf0, 0x53, 0xdd, 0xfb, 0x43, 0xdd, 0x04, 0x53, 0xdd, 0xfb, 0x43, 0xdd, 0x04, 0x75, 0x3f, 0x00, +0x75, 0x82, 0x13, 0x12, 0x16, 0x33, 0x75, 0x3f, 0x21, 0x75, 0x82, 0x8a, 0x12, 0x16, 0x33, 0x90, +0xf0, 0x07, 0xe0, 0xfc, 0x53, 0x04, 0xc0, 0xbc, 0x40, 0x0e, 0x20, 0x04, 0x0b, 0x75, 0x3f, 0x08, +0x75, 0x82, 0x00, 0x12, 0x16, 0x33, 0x80, 0x15, 0x75, 0x3f, 0x00, 0x75, 0x82, 0x00, 0x12, 0x16, +0x33, 0x90, 0xf0, 0xeb, 0xe0, 0xf5, 0xed, 0x90, 0xf0, 0xea, 0xe0, 0xf5, 0xee, 0x75, 0x82, 0x00, +0x12, 0x16, 0x59, 0xe5, 0x82, 0x44, 0x02, 0xf5, 0x3f, 0x75, 0x82, 0x00, 0x12, 0x16, 0x33, 0x90, +0xff, 0xf3, 0x12, 0x16, 0x6d, 0x90, 0xf0, 0x07, 0xe0, 0xfc, 0x53, 0x04, 0xc0, 0xbc, 0x40, 0x09, +0x20, 0x04, 0x06, 0x75, 0xf1, 0x1f, 0x02, 0x00, 0xb4, 0x75, 0xf1, 0x06, 0x02, 0x00, 0xb4, 0xe5, +0xc8, 0x54, 0x30, 0x70, 0x14, 0x90, 0xf0, 0xd2, 0xe0, 0xfc, 0x53, 0x04, 0x80, 0xbc, 0x80, 0x04, +0x90, 0xf0, 0x40, 0xe0, 0x75, 0xe2, 0x01, 0x80, 0x05, 0xe5, 0xd1, 0x30, 0xe0, 0xfb, 0x75, 0xf1, +0x0d, 0x90, 0xf0, 0x41, 0xe0, 0xfc, 0x53, 0x04, 0x40, 0xbc, 0x40, 0x02, 0x80, 0x03, 0x02, 0x04, +0x2f, 0x90, 0xf0, 0x03, 0xe0, 0xfc, 0x20, 0xe4, 0x03, 0x02, 0x04, 0x2f, 0x75, 0xde, 0x08, 0x75, +0xdc, 0x02, 0xd2, 0xc1, 0x75, 0x24, 0x7f, 0x75, 0x25, 0x00, 0x75, 0x27, 0x06, 0x75, 0x26, 0x20, +0x75, 0x23, 0x02, 0x75, 0x16, 0x41, 0x75, 0x17, 0xf1, 0x90, 0xf1, 0xca, 0x12, 0x19, 0x1f, 0x75, +0xc0, 0x01, 0x75, 0x27, 0x06, 0x75, 0x26, 0x20, 0x75, 0x23, 0x01, 0x75, 0x16, 0x41, 0x75, 0x17, +0xf1, 0x90, 0xf1, 0xc8, 0x12, 0x19, 0x1f, 0x75, 0xe4, 0x0c, 0x75, 0xc0, 0x20, 0x75, 0x24, 0x7f, +0x75, 0x25, 0x00, 0x75, 0x27, 0x06, 0x75, 0x26, 0x20, 0x75, 0x23, 0x02, 0x75, 0x16, 0x41, 0x75, +0x17, 0xf1, 0x90, 0xf1, 0xcb, 0x12, 0x19, 0x1f, 0x75, 0xc0, 0x10, 0x75, 0x27, 0x06, 0x75, 0x26, +0x20, 0x75, 0x23, 0x01, 0x75, 0x16, 0x41, 0x75, 0x17, 0xf1, 0x90, 0xf1, 0xc9, 0x12, 0x19, 0x1f, +0x75, 0xc0, 0x00, 0x75, 0xde, 0x00, 0x75, 0xe4, 0x04, 0xc2, 0x8e, 0xc2, 0x8f, 0xc2, 0x02, 0x43, +0xe7, 0x40, 0x90, 0xf0, 0x41, 0xe0, 0xfc, 0x53, 0x04, 0x80, 0xbc, 0x80, 0x02, 0x80, 0x03, 0x02, +0x04, 0xe6, 0x90, 0xf0, 0x07, 0xe0, 0xfc, 0x53, 0x04, 0x10, 0x90, 0xf0, 0x08, 0xe0, 0xfd, 0x74, +0x80, 0x5d, 0x4c, 0x70, 0x0b, 0x90, 0xf0, 0x07, 0xe0, 0xfc, 0x53, 0x04, 0x02, 0xbc, 0x00, 0xf5, +0x90, 0xf0, 0x03, 0xe0, 0xfc, 0x30, 0xe0, 0x78, 0x43, 0xdc, 0x7e, 0x43, 0xe6, 0x06, 0x75, 0xe4, +0x04, 0x75, 0xe8, 0x02, 0x75, 0x24, 0x7f, 0x75, 0x25, 0x00, 0x75, 0x27, 0x06, 0x75, 0x26, 0x20, +0x75, 0x23, 0x08, 0x75, 0x16, 0x41, 0x75, 0x17, 0xf1, 0x90, 0xf1, 0x92, 0x12, 0x19, 0x1f, 0x75, +0xe8, 0x01, 0x75, 0x27, 0x06, 0x75, 0x26, 0x20, 0x75, 0x23, 0x04, 0x75, 0x16, 0x41, 0x75, 0x17, +0xf1, 0x90, 0xf1, 0x8e, 0x12, 0x19, 0x1f, 0x75, 0xe8, 0x08, 0x75, 0x24, 0x7f, 0x75, 0x25, 0x00, +0x75, 0x27, 0x06, 0x75, 0x26, 0x20, 0x75, 0x23, 0x08, 0x75, 0x16, 0x41, 0x75, 0x17, 0xf1, 0x90, +0xf1, 0x93, 0x12, 0x19, 0x1f, 0x75, 0xe8, 0x04, 0x75, 0x27, 0x06, 0x75, 0x26, 0x20, 0x75, 0x23, +0x04, 0x75, 0x16, 0x41, 0x75, 0x17, 0xf1, 0x90, 0xf1, 0x8f, 0x12, 0x19, 0x1f, 0x75, 0xe8, 0x00, +0x43, 0xe7, 0x20, 0x75, 0xe4, 0x00, 0x75, 0xdc, 0x00, 0x75, 0xe6, 0x00, 0x75, 0xf1, 0x23, 0xe5, +0xc8, 0x54, 0x30, 0x70, 0x51, 0xc2, 0x02, 0x90, 0xf0, 0x4b, 0xe0, 0xfc, 0x53, 0x04, 0x10, 0xbc, +0x10, 0x2f, 0x90, 0xfd, 0x66, 0x12, 0x1a, 0x79, 0x75, 0x82, 0x01, 0x12, 0x16, 0x59, 0xac, 0x82, +0x8c, 0xf9, 0x53, 0x04, 0x01, 0xe4, 0xa2, 0x02, 0x33, 0xfd, 0x4c, 0x60, 0xeb, 0x30, 0x02, 0x05, +0x75, 0xf1, 0x24, 0x80, 0x03, 0x75, 0xf1, 0x05, 0xc2, 0x8e, 0xc2, 0x8f, 0xc2, 0x02, 0x02, 0x00, +0xb4, 0x90, 0xff, 0x5a, 0x12, 0x16, 0x6d, 0x75, 0x82, 0x01, 0x12, 0x16, 0x59, 0x85, 0x82, 0xf9, +0x75, 0xf1, 0x05, 0x02, 0x00, 0xb4, 0x30, 0xfa, 0xfd, 0xc2, 0xc3, 0x75, 0xde, 0x00, 0x75, 0xe4, +0x00, 0x75, 0xe3, 0x00, 0x75, 0xdc, 0x00, 0xc2, 0xc2, 0xe5, 0xc8, 0x20, 0xe4, 0x06, 0x75, 0xf1, +0x0c, 0x02, 0x00, 0xb4, 0x30, 0xfb, 0x03, 0x02, 0x00, 0xb4, 0x75, 0xf1, 0x0c, 0x80, 0xf5, 0x75, +0x26, 0x01, 0x90, 0xf0, 0x40, 0xe0, 0xfc, 0x53, 0x04, 0x02, 0xbc, 0x02, 0x31, 0x90, 0xfa, 0xca, +0x12, 0x1a, 0x79, 0x90, 0xf0, 0x56, 0x74, 0x0f, 0xf0, 0xd2, 0xa2, 0x75, 0x23, 0x08, 0x75, 0x24, +0x1f, 0x75, 0x25, 0x00, 0x75, 0x10, 0xb7, 0x75, 0x11, 0xf0, 0x90, 0xf0, 0x56, 0x12, 0x17, 0x8d, +0x92, 0xb7, 0xc2, 0xa2, 0xc2, 0x8e, 0xc2, 0x8f, 0xc2, 0x00, 0xc2, 0x01, 0xc2, 0x02, 0x75, 0xf1, +0x08, 0x90, 0xf0, 0x40, 0xe0, 0xfc, 0x53, 0x04, 0x10, 0xbc, 0x10, 0x31, 0x90, 0xfa, 0xca, 0x12, +0x1a, 0x79, 0x90, 0xf0, 0x54, 0x74, 0x07, 0xf0, 0x5f, 0x93, 0x92, 0xfd, 0x01, 0x00, 0x00, 0x00, +0x10, 0x00, 0x01, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xbd, 0x3a, 0xfe, 0x4b, 0xd2, 0xa4, 0x75, 0x23, +0x20, 0x75, 0x24, 0x0f, 0x75, 0x25, 0x00, 0x75, 0x10, 0xb7, 0x75, 0x11, 0xf0, 0x90, 0xf0, 0x54, +0x12, 0x17, 0x8d, 0x92, 0xb7, 0xc2, 0xa4, 0xc2, 0x8e, 0xc2, 0x8f, 0xc2, 0x00, 0xc2, 0x01, 0xc2, +0x02, 0x75, 0xf1, 0x26, 0x90, 0xf0, 0x41, 0xe0, 0xfc, 0x53, 0x04, 0x02, 0xbc, 0x02, 0x71, 0x90, +0xfd, 0x65, 0x12, 0x1a, 0x79, 0x90, 0xf0, 0xa6, 0x74, 0x0a, 0xf0, 0xd2, 0xa1, 0x75, 0x24, 0x0f, +0x75, 0x25, 0x00, 0x75, 0x26, 0x01, 0x75, 0x23, 0x02, 0x75, 0x10, 0xb7, 0x75, 0x11, 0xf0, 0x90, +0xf0, 0xa6, 0x12, 0x17, 0x8d, 0x92, 0xb7, 0xc2, 0xa1, 0xc2, 0x8e, 0xc2, 0x8f, 0xc2, 0x00, 0xc2, +0x01, 0xc2, 0x02, 0x90, 0xf0, 0x6a, 0xe0, 0xfc, 0xc4, 0x54, 0x0f, 0xfc, 0x90, 0xf0, 0xa6, 0xe0, +0xfd, 0xec, 0x30, 0xe3, 0x18, 0x74, 0x0f, 0xc3, 0x9c, 0x04, 0xfe, 0x53, 0x06, 0x0f, 0xc3, 0xed, +0x9e, 0x50, 0x04, 0x7d, 0x00, 0x80, 0x14, 0xed, 0xc3, 0x9e, 0xfd, 0x80, 0x0e, 0x74, 0x07, 0x5c, +0xfe, 0x2d, 0xff, 0x8f, 0x05, 0x24, 0xf0, 0x50, 0x02, 0x7d, 0x0f, 0x90, 0xf0, 0xa6, 0xed, 0xf0, +0x75, 0xf1, 0x09, 0x90, 0xf0, 0x41, 0xe0, 0xfd, 0x53, 0x05, 0x10, 0xbd, 0x10, 0x02, 0x80, 0x03, +0x02, 0x07, 0xb0, 0x20, 0x09, 0x7c, 0xd2, 0xa5, 0xd2, 0xb2, 0xd2, 0xb0, 0x75, 0x3f, 0x11, 0x75, +0x82, 0x02, 0x12, 0x16, 0x33, 0x75, 0x82, 0x26, 0x12, 0x16, 0x59, 0xe5, 0x82, 0x54, 0x1f, 0xf5, +0xee, 0x75, 0x3f, 0x01, 0x75, 0x82, 0x02, 0x12, 0x16, 0x33, 0x90, 0xf0, 0x72, 0x74, 0x03, 0xf0, +0x90, 0xff, 0xf9, 0x12, 0x16, 0x6d, 0x12, 0x16, 0x25, 0x85, 0x82, 0x35, 0x85, 0x83, 0x36, 0x90, +0xf0, 0x72, 0xe0, 0xfd, 0xbd, 0x07, 0x00, 0x50, 0x32, 0x90, 0xf0, 0x72, 0xe0, 0xfd, 0x90, 0xf0, +0x72, 0x74, 0x01, 0x2d, 0xf0, 0x12, 0x16, 0x25, 0xad, 0x82, 0xaf, 0x83, 0xc3, 0xe5, 0x35, 0x9d, +0xe5, 0x36, 0x9f, 0x50, 0x08, 0x8d, 0x35, 0x8f, 0x36, 0xd2, 0x0a, 0x80, 0x10, 0x90, 0xf0, 0x72, +0xe0, 0xfa, 0x14, 0x90, 0xf0, 0x72, 0xf0, 0xc2, 0x0a, 0x80, 0x02, 0xc2, 0x0a, 0xd2, 0x09, 0x02, +0x00, 0xb4, 0x30, 0x0a, 0x56, 0x90, 0xf0, 0x72, 0xe0, 0xfa, 0xba, 0x07, 0x00, 0x50, 0x3e, 0x90, +0xf0, 0x72, 0xe0, 0xfa, 0x90, 0xf0, 0x72, 0x74, 0x01, 0x2a, 0xf0, 0x12, 0x16, 0x25, 0xad, 0x82, +0xaf, 0x83, 0xc3, 0xe5, 0x35, 0x9d, 0xe5, 0x36, 0x9f, 0x50, 0x0a, 0x8d, 0x35, 0x8f, 0x36, 0x75, +0xf1, 0x09, 0x02, 0x00, 0xb4, 0x90, 0xf0, 0x72, 0xe0, 0xfa, 0x14, 0x90, 0xf0, 0x72, 0xf0, 0x75, +0xf1, 0x0a, 0xc2, 0xb0, 0xc2, 0xb2, 0xc2, 0x09, 0xc2, 0xa5, 0x02, 0x00, 0xb4, 0x75, 0xf1, 0x0a, +0xc2, 0xb0, 0xc2, 0xb2, 0xc2, 0x09, 0xc2, 0xa5, 0x02, 0x00, 0xb4, 0x90, 0xf0, 0x72, 0xe0, 0xfa, +0x60, 0x3e, 0x90, 0xf0, 0x72, 0xe0, 0xfa, 0x14, 0x90, 0xf0, 0x72, 0xf0, 0x12, 0x16, 0x25, 0xad, +0x82, 0xaf, 0x83, 0xc3, 0xe5, 0x35, 0x9d, 0xe5, 0x36, 0x9f, 0x50, 0x0a, 0x8d, 0x35, 0x8f, 0x36, +0x75, 0xf1, 0x09, 0x02, 0x00, 0xb4, 0x90, 0xf0, 0x72, 0xe0, 0xfa, 0x90, 0xf0, 0x72, 0x74, 0x01, +0x2a, 0xf0, 0x75, 0xf1, 0x0a, 0xc2, 0xb0, 0xc2, 0xb2, 0xc2, 0x09, 0xc2, 0xa5, 0x02, 0x00, 0xb4, +0x75, 0xf1, 0x0a, 0xc2, 0xb0, 0xc2, 0xb2, 0xc2, 0x09, 0xc2, 0xa5, 0x02, 0x00, 0xb4, 0x75, 0xf1, +0x0a, 0x02, 0x00, 0xb4, 0xc2, 0x03, 0xc2, 0x02, 0x75, 0x26, 0x01, 0x90, 0xf0, 0x41, 0xe0, 0xfa, +0x53, 0x02, 0x08, 0xba, 0x08, 0x2b, 0x90, 0xfd, 0x65, 0x12, 0x1a, 0x79, 0xd2, 0xb3, 0x75, 0x23, +0x80, 0x75, 0x24, 0x0f, 0x75, 0x25, 0x00, 0x75, 0x10, 0xb7, 0x75, 0x11, 0xf0, 0x90, 0xf0, 0x71, +0x12, 0x17, 0x8d, 0x92, 0xb7, 0xc2, 0xb3, 0xc2, 0x8e, 0xc2, 0x8f, 0xc2, 0x00, 0xc2, 0x01, 0xc2, +0x02, 0x43, 0xe7, 0x04, 0xc2, 0xc3, 0x75, 0xde, 0x00, 0x75, 0xe4, 0x00, 0x75, 0xe3, 0x00, 0x75, +0xdc, 0x00, 0xc2, 0xc2, 0x75, 0xf1, 0x0c, 0xc2, 0x03, 0xc2, 0x02, 0x75, 0x26, 0x01, 0x90, 0xf0, +0x41, 0xe0, 0xfa, 0x53, 0x02, 0x20, 0xba, 0x20, 0x4c, 0x30, 0xce, 0x49, 0x90, 0xfd, 0x65, 0x12, +0x1a, 0x79, 0xd2, 0xa6, 0x75, 0x24, 0x0f, 0x75, 0x25, 0x00, 0x90, 0xf0, 0x08, 0xe0, 0xfa, 0x53, +0x02, 0x80, 0xba, 0x80, 0x13, 0x75, 0x23, 0x04, 0x75, 0x10, 0xb8, 0x75, 0x11, 0xf0, 0x90, 0xf0, +0x6d, 0x12, 0x17, 0x8d, 0x92, 0xb7, 0x80, 0x11, 0x75, 0x23, 0x02, 0x75, 0x10, 0xb8, 0x75, 0x11, +0xf0, 0x90, 0xf0, 0x6d, 0x12, 0x17, 0x8d, 0x92, 0xb7, 0xc2, 0xa6, 0xc2, 0x8e, 0xc2, 0x8f, 0xc2, +0x00, 0xc2, 0x01, 0xc2, 0x02, 0xe5, 0xc8, 0x20, 0xe4, 0x03, 0x43, 0xe7, 0x08, 0x74, 0x10, 0x55, +0xc8, 0xfa, 0xba, 0x10, 0x03, 0x43, 0xe7, 0x10, 0x75, 0xf1, 0x22, 0x90, 0xf0, 0x41, 0xe0, 0xfa, +0x53, 0x02, 0x04, 0xba, 0x04, 0x02, 0x80, 0x03, 0x02, 0x09, 0xc3, 0x75, 0xdc, 0x20, 0x75, 0xde, +0x0d, 0x75, 0xe4, 0x0f, 0xd2, 0xc3, 0xad, 0xd2, 0xaf, 0xd3, 0xd2, 0xb2, 0xd2, 0xb0, 0xc2, 0xcf, +0xd2, 0xc6, 0x75, 0x27, 0x07, 0x75, 0x26, 0x40, 0xe5, 0x27, 0x60, 0x47, 0xc0, 0x05, 0xc0, 0x07, +0x12, 0x16, 0x25, 0x85, 0x82, 0x35, 0x85, 0x83, 0x36, 0xd0, 0x07, 0xd0, 0x05, 0xc3, 0xe5, 0x35, +0x9d, 0xe5, 0x36, 0x9f, 0x50, 0x0e, 0x90, 0xf1, 0x9c, 0xe0, 0xfa, 0x90, 0xf1, 0x9c, 0xe5, 0x26, +0x2a, 0xf0, 0x80, 0x15, 0xc3, 0xed, 0x95, 0x35, 0xef, 0x95, 0x36, 0x50, 0x0c, 0x90, 0xf1, 0x9c, +0xe0, 0xfa, 0x90, 0xf1, 0x9c, 0xc3, 0x95, 0x26, 0xf0, 0xe5, 0x26, 0xc3, 0x13, 0xf5, 0x26, 0x15, +0x27, 0x80, 0xb5, 0xc0, 0x05, 0xc0, 0x07, 0x12, 0x16, 0x25, 0x85, 0x82, 0x35, 0x85, 0x83, 0x36, +0xd0, 0x07, 0xd0, 0x05, 0xc3, 0xe5, 0x35, 0x9d, 0xe5, 0x36, 0x9f, 0x50, 0x0c, 0x90, 0xf1, 0x9c, +0xe0, 0xfa, 0x90, 0xf1, 0x9c, 0xe5, 0x26, 0x2a, 0xf0, 0xc0, 0x05, 0xc0, 0x07, 0x12, 0x16, 0x25, +0x85, 0x82, 0xd4, 0x85, 0x83, 0xd5, 0xd0, 0x07, 0xd0, 0x05, 0xd2, 0xcf, 0x75, 0x27, 0x07, 0x75, +0x26, 0x40, 0xe5, 0x27, 0x60, 0x47, 0xc0, 0x05, 0xc0, 0x07, 0x12, 0x16, 0x25, 0x85, 0x82, 0x35, +0x85, 0x83, 0x36, 0xd0, 0x07, 0xd0, 0x05, 0xc3, 0xe5, 0x35, 0x9d, 0xe5, 0x36, 0x9f, 0x50, 0x0e, +0x90, 0xf1, 0x9c, 0xe0, 0xfa, 0x90, 0xf1, 0x9c, 0xe5, 0x26, 0x2a, 0xf0, 0x80, 0x15, 0xc3, 0xed, +0x95, 0x35, 0xef, 0x95, 0x36, 0x50, 0x0c, 0x90, 0xf1, 0x9c, 0xe0, 0xfa, 0x90, 0xf1, 0x9c, 0xc3, +0x95, 0x26, 0xf0, 0xe5, 0x26, 0xc3, 0x13, 0xf5, 0x26, 0x15, 0x27, 0x80, 0xb5, 0xc0, 0x05, 0xc0, +0x07, 0x12, 0x16, 0x25, 0x85, 0x82, 0x35, 0x85, 0x83, 0x36, 0xd0, 0x07, 0xd0, 0x05, 0xc3, 0xe5, +0x35, 0x9d, 0xe5, 0x36, 0x9f, 0x50, 0x0c, 0x90, 0xf1, 0x9c, 0xe0, 0xfa, 0x90, 0xf1, 0x9c, 0xe5, +0x26, 0x2a, 0xf0, 0x12, 0x16, 0x25, 0x85, 0x82, 0xd6, 0x85, 0x83, 0xd7, 0xc2, 0xc6, 0xc2, 0xcf, +0xc2, 0xb0, 0xc2, 0xb2, 0xc2, 0xc3, 0x75, 0xdc, 0x00, 0x75, 0xde, 0x00, 0x75, 0xe4, 0x00, 0xc2, +0xcf, 0x75, 0xe2, 0x02, 0x75, 0xf1, 0x25, 0xc2, 0xcb, 0xc0, 0x32, 0xc0, 0x01, 0x00, 0x00, 0x00, +0x0c, 0x04, 0x01, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x97, 0xb4, 0x57, 0xd2, 0x83, 0xc2, 0x81, 0xc2, +0x82, 0x75, 0xf1, 0x0d, 0x90, 0xf1, 0x78, 0xe0, 0xfa, 0x30, 0xe0, 0x06, 0x75, 0xdc, 0x01, 0x75, +0xe6, 0x01, 0x75, 0xe4, 0x04, 0x90, 0xf0, 0x41, 0xe0, 0xfa, 0x53, 0x02, 0x80, 0xba, 0x80, 0x02, +0x80, 0x03, 0x02, 0x0a, 0x91, 0x90, 0xf0, 0x07, 0xe0, 0xfa, 0x53, 0x02, 0x10, 0x90, 0xf0, 0x08, +0xe0, 0xfb, 0x74, 0x80, 0x5b, 0x4a, 0x70, 0x0b, 0x90, 0xf0, 0x07, 0xe0, 0xfa, 0x53, 0x02, 0x02, +0xba, 0x00, 0xf5, 0x90, 0xf0, 0x03, 0xe0, 0xfa, 0x30, 0xe0, 0x78, 0x43, 0xdc, 0x7e, 0x43, 0xe6, +0x06, 0x75, 0xe4, 0x04, 0x75, 0xe8, 0x20, 0x75, 0x24, 0x7f, 0x75, 0x25, 0x00, 0x75, 0x27, 0x06, +0x75, 0x26, 0x20, 0x75, 0x23, 0x08, 0x75, 0x16, 0x41, 0x75, 0x17, 0xf1, 0x90, 0xf1, 0x94, 0x12, +0x19, 0x1f, 0x75, 0xe8, 0x10, 0x75, 0x27, 0x06, 0x75, 0x26, 0x20, 0x75, 0x23, 0x04, 0x75, 0x16, +0x41, 0x75, 0x17, 0xf1, 0x90, 0xf1, 0x90, 0x12, 0x19, 0x1f, 0x75, 0xe8, 0x80, 0x75, 0x24, 0x7f, +0x75, 0x25, 0x00, 0x75, 0x27, 0x06, 0x75, 0x26, 0x20, 0x75, 0x23, 0x08, 0x75, 0x16, 0x41, 0x75, +0x17, 0xf1, 0x90, 0xf1, 0x95, 0x12, 0x19, 0x1f, 0x75, 0xe8, 0x40, 0x75, 0x27, 0x06, 0x75, 0x26, +0x20, 0x75, 0x23, 0x04, 0x75, 0x16, 0x41, 0x75, 0x17, 0xf1, 0x90, 0xf1, 0x91, 0x12, 0x19, 0x1f, +0x75, 0xe8, 0x00, 0x43, 0xe7, 0x80, 0x90, 0xf0, 0x07, 0xe0, 0xfa, 0x53, 0x02, 0xc0, 0xba, 0xc0, +0x05, 0x75, 0xf1, 0x0e, 0x80, 0x03, 0x75, 0xf1, 0x16, 0x75, 0xe7, 0x00, 0x02, 0x00, 0xb4, 0x75, +0xe7, 0x20, 0x75, 0xf8, 0x00, 0x75, 0xe7, 0x00, 0x75, 0xe6, 0x00, 0x75, 0xde, 0x00, 0x75, 0xdc, +0x30, 0x75, 0xe4, 0x0c, 0x75, 0xe3, 0x03, 0x90, 0xf0, 0x47, 0xe0, 0xfa, 0x53, 0x02, 0x10, 0xba, +0x10, 0xf5, 0x75, 0xf1, 0x0f, 0x75, 0xe6, 0x00, 0x75, 0xde, 0x00, 0x75, 0xdc, 0x30, 0x75, 0xe4, +0x0c, 0x75, 0xe3, 0x03, 0x90, 0xf0, 0x47, 0xe0, 0xfa, 0x53, 0x02, 0x10, 0xba, 0x00, 0xf5, 0x75, +0xf1, 0x10, 0x75, 0xdc, 0x6f, 0x75, 0xe6, 0x06, 0x75, 0xde, 0x0f, 0x75, 0xe4, 0x0e, 0x75, 0xdb, +0x01, 0x75, 0xe3, 0x03, 0x90, 0xf0, 0x47, 0xe0, 0xfa, 0x53, 0x02, 0x08, 0xba, 0x08, 0xf5, 0x75, +0xf1, 0x11, 0x75, 0xdc, 0x6f, 0x75, 0xe6, 0x06, 0x75, 0xde, 0x0f, 0x75, 0xe4, 0x0e, 0x75, 0xdb, +0x01, 0x75, 0xe3, 0x03, 0x90, 0xf0, 0x47, 0xe0, 0xfa, 0x53, 0x02, 0x08, 0xba, 0x00, 0xf5, 0x75, +0xf1, 0x27, 0x75, 0xdc, 0x00, 0x75, 0xe6, 0x06, 0x75, 0xde, 0x0f, 0x75, 0xe4, 0x0e, 0x75, 0xdb, +0x00, 0x75, 0xe3, 0x00, 0x90, 0xf0, 0x47, 0xe0, 0xfa, 0x53, 0x02, 0x01, 0xba, 0x01, 0xf5, 0x75, +0xf1, 0x28, 0x75, 0xdc, 0x00, 0x75, 0xe6, 0x06, 0x75, 0xde, 0x0f, 0x75, 0xe4, 0x0e, 0x75, 0xdb, +0x00, 0x75, 0xe3, 0x00, 0x90, 0xf0, 0x47, 0xe0, 0xfa, 0x53, 0x02, 0x01, 0xba, 0x00, 0xf5, 0x90, +0xf0, 0x05, 0xe0, 0xfa, 0x53, 0x02, 0x40, 0xba, 0x40, 0x06, 0x75, 0xf1, 0x12, 0x02, 0x00, 0xb4, +0x75, 0xf1, 0x16, 0x02, 0x00, 0xb4, 0x75, 0xe6, 0x06, 0x75, 0xdc, 0x6f, 0x75, 0xde, 0x0f, 0x75, +0xe4, 0x0e, 0x75, 0xdb, 0x01, 0x75, 0xe3, 0x03, 0x90, 0xf0, 0x47, 0xe0, 0xfa, 0x53, 0x02, 0x08, +0xba, 0x08, 0xf5, 0x75, 0xf1, 0x13, 0x02, 0x00, 0xb4, 0x75, 0xe6, 0x06, 0x75, 0xdc, 0x6f, 0x75, +0xde, 0x0f, 0x75, 0xe4, 0x0e, 0x75, 0xdb, 0x01, 0x75, 0xe3, 0x03, 0x90, 0xf0, 0x47, 0xe0, 0xfa, +0x53, 0x02, 0x08, 0xba, 0x00, 0xf5, 0x90, 0xf0, 0x47, 0xe0, 0xfa, 0x53, 0x02, 0x04, 0xba, 0x04, +0x06, 0x75, 0xf1, 0x14, 0x02, 0x00, 0xb4, 0x75, 0xf1, 0x16, 0x02, 0x00, 0xb4, 0x75, 0xdb, 0x01, +0x75, 0xe4, 0x0a, 0x90, 0xf0, 0x47, 0xe0, 0xfa, 0x53, 0x02, 0x04, 0xba, 0x00, 0xf5, 0x75, 0xf1, +0x15, 0x75, 0xdb, 0x01, 0x75, 0xdc, 0x7f, 0x75, 0xe4, 0x0e, 0x90, 0xf0, 0x47, 0xe0, 0xfa, 0x53, +0x02, 0x02, 0xba, 0x00, 0xf5, 0x75, 0xf1, 0x16, 0x02, 0x00, 0xb4, 0xc2, 0x03, 0x75, 0xde, 0x00, +0x90, 0xf1, 0x78, 0xe0, 0xfa, 0x30, 0xe0, 0x06, 0x43, 0xdc, 0x01, 0x43, 0xe6, 0x01, 0x90, 0xf0, +0x41, 0xe0, 0xfa, 0x53, 0x02, 0x80, 0xba, 0x80, 0x02, 0x80, 0x03, 0x02, 0x0c, 0xca, 0x90, 0xf0, +0x07, 0xe0, 0xfa, 0x53, 0x02, 0x10, 0x90, 0xf0, 0x08, 0xe0, 0xfb, 0x74, 0x80, 0x5b, 0x4a, 0x70, +0x0b, 0x90, 0xf0, 0x07, 0xe0, 0xfa, 0x53, 0x02, 0x02, 0xba, 0x00, 0xf5, 0x90, 0xf0, 0x03, 0xe0, +0xfa, 0x30, 0xe0, 0x78, 0x43, 0xdc, 0x7e, 0x43, 0xe6, 0x06, 0x75, 0xe4, 0x04, 0x75, 0xe8, 0x02, +0x75, 0x24, 0x7f, 0x75, 0x25, 0x00, 0x75, 0x27, 0x06, 0x75, 0x26, 0x20, 0x75, 0x23, 0x08, 0x75, +0x16, 0x41, 0x75, 0x17, 0xf1, 0x90, 0xf1, 0x92, 0x12, 0x19, 0x1f, 0x75, 0xe8, 0x01, 0x75, 0x27, +0x06, 0x75, 0x26, 0x20, 0x75, 0x23, 0x04, 0x75, 0x16, 0x41, 0x75, 0x17, 0xf1, 0x90, 0xf1, 0x8e, +0x12, 0x19, 0x1f, 0x75, 0xe8, 0x08, 0x75, 0x24, 0x7f, 0x75, 0x25, 0x00, 0x75, 0x27, 0x06, 0x75, +0x26, 0x20, 0x75, 0x23, 0x08, 0x75, 0x16, 0x41, 0x75, 0x17, 0xf1, 0x90, 0xf1, 0x93, 0x12, 0x19, +0x1f, 0x75, 0xe8, 0x04, 0x75, 0x27, 0x06, 0x75, 0x26, 0x20, 0x75, 0x23, 0x04, 0x75, 0x16, 0x41, +0x75, 0x17, 0xf1, 0x90, 0xf1, 0x8f, 0x12, 0x19, 0x1f, 0x75, 0xe8, 0x00, 0x43, 0xe7, 0x20, 0x90, +0xf0, 0x41, 0xe0, 0xfa, 0x53, 0x02, 0x80, 0xba, 0x80, 0x02, 0x80, 0x03, 0x02, 0x0d, 0x7b, 0x90, +0xf0, 0x07, 0xe0, 0xfa, 0x53, 0x02, 0x10, 0x90, 0xf0, 0x08, 0xe0, 0xfb, 0x74, 0x80, 0x5b, 0x4a, +0x70, 0x0b, 0x90, 0xf0, 0x07, 0xe0, 0xfa, 0x53, 0x02, 0x02, 0xba, 0x00, 0xf5, 0x90, 0xf0, 0x03, +0xe0, 0xfa, 0x30, 0xe0, 0x78, 0x43, 0xdc, 0x7e, 0x43, 0xe6, 0x06, 0x75, 0xe4, 0x04, 0x75, 0xe8, +0x20, 0x75, 0x24, 0x7f, 0x75, 0x25, 0x00, 0x75, 0x27, 0x06, 0x75, 0x26, 0x20, 0x75, 0x23, 0x08, +0x75, 0x16, 0x41, 0x75, 0x17, 0xf1, 0x90, 0xf1, 0x94, 0x12, 0x19, 0x1f, 0x75, 0xe8, 0x10, 0x75, +0x27, 0x06, 0x75, 0x26, 0x20, 0x75, 0x23, 0x04, 0x75, 0x16, 0x41, 0x75, 0x17, 0xf1, 0x90, 0xf1, +0x90, 0x12, 0x19, 0x1f, 0x75, 0xe8, 0x80, 0x75, 0x24, 0x7f, 0x75, 0x25, 0x00, 0x75, 0x27, 0x06, +0x75, 0x26, 0x20, 0x75, 0x23, 0x08, 0x75, 0x16, 0x41, 0x75, 0x17, 0xf1, 0x90, 0xf1, 0x95, 0x12, +0x19, 0x1f, 0x75, 0xe8, 0x40, 0x75, 0x27, 0x06, 0x75, 0x26, 0x20, 0x75, 0x23, 0x04, 0x75, 0x16, +0x41, 0x75, 0x17, 0xf1, 0x90, 0xf1, 0x91, 0x12, 0x19, 0x1f, 0x75, 0xe8, 0x00, 0x43, 0xe7, 0x80, +0x75, 0xf1, 0x16, 0x02, 0x00, 0xb4, 0x90, 0xf0, 0x05, 0xe0, 0xfa, 0x30, 0xe4, 0x03, 0x02, 0x0f, +0xbf, 0xc2, 0x03, 0x90, 0xf0, 0x42, 0xe0, 0xfa, 0x53, 0x02, 0x02, 0xba, 0x02, 0x57, 0xd2, 0xa2, +0xd2, 0xa2, 0xd2, 0xb2, 0xc2, 0xb2, 0x90, 0xf0, 0xb7, 0xe0, 0xfa, 0x74, 0x18, 0x5a, 0xfc, 0x90, +0xf0, 0x56, 0xe0, 0xfe, 0x90, 0xff, 0xff, 0xc0, 0x04, 0xc0, 0x06, 0x12, 0x16, 0x6d, 0xd0, 0x06, +0xd0, 0x04, 0xbc, 0x18, 0x0a, 0xbe, 0x1f, 0x04, 0x93, 0xc8, 0xde, 0x2f, 0x01, 0x00, 0x00, 0x00, +0x08, 0x08, 0x01, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xb7, 0x57, 0xff, 0x58, 0xd2, 0xb7, 0x80, 0x22, +0x0e, 0x80, 0x1f, 0xbc, 0x10, 0x0a, 0xee, 0x70, 0x04, 0xd2, 0xb7, 0x80, 0x15, 0x1e, 0x80, 0x12, +0xc2, 0xa2, 0xc2, 0xa2, 0xc2, 0xa2, 0xc2, 0xa2, 0x90, 0xff, 0xff, 0xc0, 0x06, 0x12, 0x16, 0x6d, +0xd0, 0x06, 0x90, 0xf0, 0x56, 0xee, 0xf0, 0xc2, 0xa2, 0x75, 0xdc, 0x01, 0x75, 0xe4, 0x04, 0x90, +0xf0, 0x43, 0xe0, 0xfa, 0x53, 0x02, 0x80, 0xba, 0x80, 0x02, 0x80, 0x03, 0x02, 0x0e, 0xa5, 0x90, +0xf1, 0x03, 0xe0, 0xfa, 0x30, 0xe2, 0x05, 0x75, 0xdc, 0x35, 0x80, 0x03, 0x75, 0xdc, 0x31, 0x90, +0xf0, 0x03, 0xe0, 0xfa, 0x53, 0x02, 0x01, 0xba, 0x01, 0x7b, 0x75, 0xe8, 0x0c, 0x90, 0xff, 0xf6, +0x12, 0x16, 0x6d, 0xd2, 0xb2, 0xc2, 0xb2, 0x90, 0xff, 0xff, 0x12, 0x16, 0x6d, 0x90, 0xf1, 0x41, +0xe0, 0xfa, 0x74, 0x04, 0x5a, 0xfc, 0x90, 0xf1, 0x8f, 0xe0, 0xfe, 0xbc, 0x04, 0x0a, 0xbe, 0x7f, +0x04, 0xd2, 0xb7, 0x80, 0x0e, 0x0e, 0x80, 0x0b, 0xec, 0x70, 0x08, 0xee, 0x70, 0x04, 0xd2, 0xb7, +0x80, 0x01, 0x1e, 0x90, 0xf1, 0x8f, 0xee, 0xf0, 0x75, 0xe8, 0x08, 0xd2, 0xb2, 0xc2, 0xb2, 0x90, +0xff, 0xff, 0x12, 0x16, 0x6d, 0x90, 0xf1, 0x41, 0xe0, 0xfa, 0x74, 0x08, 0x5a, 0xfc, 0x90, 0xf1, +0x93, 0xe0, 0xfe, 0xbc, 0x08, 0x0a, 0xbe, 0x7f, 0x04, 0xd2, 0xb7, 0x80, 0x0e, 0x0e, 0x80, 0x0b, +0xec, 0x70, 0x08, 0xee, 0x70, 0x04, 0xd2, 0xb7, 0x80, 0x01, 0x1e, 0x90, 0xf1, 0x93, 0xee, 0xf0, +0x75, 0xe8, 0x00, 0x80, 0x06, 0x90, 0xff, 0xd7, 0x12, 0x16, 0x6d, 0x75, 0xdc, 0x01, 0x90, 0xf0, +0x43, 0xe0, 0xfa, 0x53, 0x02, 0x40, 0xba, 0x40, 0x02, 0x80, 0x03, 0x02, 0x0f, 0x57, 0x75, 0xde, +0x08, 0x90, 0xf1, 0x03, 0xe0, 0xfa, 0x30, 0xe3, 0x05, 0x75, 0xe4, 0x0e, 0x80, 0x03, 0x75, 0xe4, +0x0c, 0x90, 0xf0, 0x03, 0xe0, 0xfa, 0x53, 0x02, 0x10, 0xba, 0x10, 0x7b, 0x75, 0xc0, 0x30, 0x90, +0xff, 0xf6, 0x12, 0x16, 0x6d, 0xd2, 0xb2, 0xc2, 0xb2, 0x90, 0xff, 0xff, 0x12, 0x16, 0x6d, 0x90, +0xf1, 0x41, 0xe0, 0xfa, 0x74, 0x01, 0x5a, 0xfc, 0x90, 0xf1, 0xc9, 0xe0, 0xfe, 0xbc, 0x01, 0x0a, +0xbe, 0x7f, 0x04, 0xd2, 0xb7, 0x80, 0x0e, 0x0e, 0x80, 0x0b, 0xec, 0x70, 0x08, 0xee, 0x70, 0x04, +0xd2, 0xb7, 0x80, 0x01, 0x1e, 0x90, 0xf1, 0xc9, 0xee, 0xf0, 0x75, 0xc0, 0x20, 0xd2, 0xb2, 0xc2, +0xb2, 0x90, 0xff, 0xff, 0x12, 0x16, 0x6d, 0x90, 0xf1, 0x41, 0xe0, 0xfa, 0x74, 0x02, 0x5a, 0xfc, +0x90, 0xf1, 0xcb, 0xe0, 0xfe, 0xbc, 0x02, 0x0a, 0xbe, 0x7f, 0x04, 0xd2, 0xb7, 0x80, 0x0e, 0x0e, +0x80, 0x0b, 0xec, 0x70, 0x08, 0xee, 0x70, 0x04, 0xd2, 0xb7, 0x80, 0x01, 0x1e, 0x90, 0xf1, 0xcb, +0xee, 0xf0, 0x75, 0xc0, 0x00, 0x80, 0x06, 0x90, 0xff, 0xd8, 0x12, 0x16, 0x6d, 0x75, 0xdc, 0x00, +0x75, 0xe4, 0x00, 0x90, 0xf0, 0xdb, 0xe0, 0xfa, 0x20, 0xe7, 0x5a, 0xd2, 0xa3, 0x85, 0x30, 0x82, +0x85, 0x31, 0x83, 0x12, 0x16, 0x6d, 0xd2, 0xb2, 0xc2, 0xb2, 0x90, 0xff, 0xff, 0x12, 0x16, 0x6d, +0x74, 0x07, 0x55, 0x90, 0xfe, 0xbe, 0x06, 0x13, 0xe5, 0xed, 0x60, 0x04, 0x15, 0xed, 0x80, 0x33, +0xe5, 0xee, 0x60, 0x2f, 0x15, 0xee, 0x75, 0xed, 0x07, 0x80, 0x28, 0xbe, 0x05, 0x17, 0x74, 0xe1, +0x25, 0xed, 0x40, 0x04, 0x05, 0xed, 0x80, 0x1b, 0x74, 0xe1, 0x25, 0xee, 0x40, 0x15, 0x05, 0xee, +0x75, 0xed, 0x10, 0x80, 0x0e, 0xc2, 0xa3, 0xc2, 0xa3, 0xc2, 0xa3, 0xc2, 0xa3, 0x90, 0xff, 0xff, +0x12, 0x16, 0x6d, 0xc2, 0xa3, 0x53, 0xe4, 0x06, 0xc2, 0x83, 0xc2, 0x81, 0x20, 0x96, 0x02, 0xc2, +0x82, 0x75, 0xf1, 0x16, 0x75, 0xe2, 0x04, 0xc2, 0x02, 0x90, 0xf0, 0x4b, 0xe0, 0xfa, 0x53, 0x02, +0x10, 0xba, 0x10, 0x62, 0xe5, 0xc8, 0x54, 0x30, 0x70, 0x1d, 0x90, 0xfc, 0xe1, 0x12, 0x1a, 0x79, +0x75, 0x82, 0x01, 0x12, 0x16, 0x59, 0xaa, 0x82, 0x8a, 0xf9, 0x53, 0x02, 0x04, 0xe4, 0xa2, 0x02, +0x33, 0xfb, 0x4a, 0x70, 0x15, 0x80, 0xe9, 0x90, 0xfc, 0xd4, 0x12, 0x1a, 0x79, 0x74, 0x08, 0x55, +0xd1, 0xfa, 0xe4, 0xa2, 0x02, 0x33, 0xfb, 0x4a, 0x60, 0xf3, 0x30, 0x02, 0x1e, 0xc2, 0x8e, 0xc2, +0x8f, 0xc2, 0x02, 0x75, 0xf8, 0x00, 0x75, 0xe7, 0x00, 0x75, 0xd1, 0x00, 0x75, 0xe2, 0x00, 0x75, +0xdc, 0x00, 0x75, 0xe6, 0x00, 0x75, 0xf1, 0x04, 0x02, 0x00, 0xb4, 0xc2, 0x8e, 0xc2, 0x8f, 0xc2, +0x02, 0x75, 0xe2, 0x08, 0x80, 0x06, 0x90, 0xff, 0xdf, 0x12, 0x16, 0x6d, 0xe5, 0xc8, 0x54, 0x30, +0x70, 0x39, 0x75, 0x82, 0x01, 0x12, 0x16, 0x59, 0x85, 0x82, 0xf9, 0x75, 0x3f, 0x11, 0x75, 0x82, +0x02, 0x12, 0x16, 0x33, 0x75, 0x82, 0x27, 0x12, 0x16, 0x59, 0x85, 0x82, 0xed, 0x75, 0x82, 0x26, +0x12, 0x16, 0x59, 0xe5, 0x82, 0x54, 0x1f, 0xf5, 0xee, 0x75, 0x82, 0x28, 0x12, 0x16, 0x59, 0x85, +0x82, 0xff, 0x75, 0x3f, 0x21, 0x75, 0x82, 0x02, 0x12, 0x16, 0x33, 0xc2, 0x03, 0xc2, 0x04, 0x75, +0xf8, 0x00, 0x75, 0xe7, 0x00, 0x75, 0xd1, 0x00, 0x75, 0xe2, 0x00, 0x90, 0xf1, 0x01, 0xe0, 0xfa, +0x53, 0x02, 0x78, 0x90, 0xf1, 0x02, 0xe0, 0xfb, 0x53, 0x03, 0x80, 0xbb, 0x80, 0x02, 0x7a, 0x80, +0x90, 0xf1, 0x02, 0xe0, 0xfb, 0x53, 0x03, 0x10, 0xbb, 0x10, 0x02, 0x7a, 0x04, 0x90, 0xf1, 0x02, +0xe0, 0xfb, 0x53, 0x03, 0x08, 0xbb, 0x08, 0x02, 0x7a, 0x02, 0xba, 0x00, 0x03, 0x02, 0x13, 0x5d, +0x74, 0x04, 0x5a, 0xfb, 0xbb, 0x04, 0x18, 0x75, 0xdb, 0x01, 0x75, 0xdc, 0x7f, 0x75, 0xe6, 0x06, +0x75, 0xe5, 0x00, 0x75, 0xde, 0x0f, 0x75, 0xe4, 0x0e, 0x75, 0xe3, 0x03, 0x02, 0x13, 0x1f, 0x74, +0x02, 0x5a, 0xfb, 0xbb, 0x02, 0x15, 0x75, 0xdb, 0x01, 0x75, 0xdc, 0x7f, 0x75, 0xe6, 0x07, 0x75, +0xde, 0x0f, 0x75, 0xe4, 0x0e, 0x75, 0xe3, 0x03, 0x02, 0x13, 0x1f, 0x74, 0xf8, 0x5a, 0xfb, 0xbb, +0x00, 0x03, 0x02, 0x13, 0x1f, 0x74, 0xf8, 0x5a, 0xfb, 0xbb, 0x08, 0x02, 0x80, 0x3d, 0xbb, 0x10, +0x02, 0x80, 0x5c, 0xbb, 0x18, 0x02, 0x80, 0x7b, 0xbb, 0x20, 0x03, 0x02, 0x11, 0xc1, 0xbb, 0x28, +0x03, 0x02, 0x11, 0xe5, 0xbb, 0x30, 0x03, 0x02, 0x12, 0x09, 0xbb, 0x38, 0x03, 0x02, 0x12, 0x2d, +0xbb, 0x40, 0x03, 0x02, 0x12, 0x51, 0xbb, 0x48, 0x03, 0x02, 0x12, 0x95, 0xbb, 0x50, 0x03, 0x02, +0x12, 0xb8, 0xbb, 0x80, 0x03, 0x02, 0x12, 0xfe, 0x02, 0x13, 0x1f, 0x75, 0xd9, 0x07, 0x75, 0xda, +0x00, 0x75, 0xdd, 0x00, 0x75, 0xdb, 0x00, 0x75, 0xdc, 0x00, 0x75, 0xe6, 0x00, 0x75, 0xde, 0x00, +0x75, 0xe4, 0x00, 0x75, 0xe5, 0x00, 0x75, 0xe3, 0x08, 0x75, 0xc0, 0x00, 0x02, 0x13, 0x1f, 0x75, +0xd9, 0x07, 0x75, 0xda, 0x00, 0x75, 0xdd, 0x00, 0x75, 0xdb, 0x04, 0x75, 0xdc, 0x00, 0x75, 0xe6, +0x00, 0x75, 0xde, 0x00, 0x75, 0xe4, 0x08, 0x75, 0xe5, 0x00, 0x75, 0xe3, 0x00, 0x75, 0xc0, 0x00, +0x02, 0x13, 0x1f, 0x75, 0xd9, 0x07, 0x75, 0xda, 0x00, 0x75, 0xdd, 0x00, 0x75, 0xdb, 0x08, 0x75, +0xdc, 0x00, 0x75, 0xe6, 0x00, 0x75, 0xde, 0x00, 0x75, 0xe4, 0x0c, 0x75, 0xe5, 0x00, 0x75, 0xe3, +0x00, 0x75, 0xc0, 0x00, 0x02, 0x13, 0x1f, 0x75, 0xbe, 0xec, 0xf6, 0x4f, 0x01, 0x00, 0x00, 0x00, +0x04, 0x0c, 0x01, 0xc0, 0x00, 0x04, 0x00, 0x00, 0x30, 0x01, 0xf1, 0x0a, 0xd9, 0x07, 0x75, 0xda, +0x00, 0x75, 0xdd, 0x00, 0x75, 0xdb, 0x10, 0x75, 0xdc, 0x00, 0x75, 0xe6, 0x00, 0x75, 0xde, 0x08, +0x75, 0xe4, 0x0c, 0x75, 0xe5, 0x00, 0x75, 0xe3, 0x00, 0x75, 0xc0, 0x00, 0x02, 0x13, 0x1f, 0x75, +0xd9, 0x07, 0x75, 0xda, 0x00, 0x75, 0xdd, 0x00, 0x75, 0xdb, 0x80, 0x75, 0xdc, 0x20, 0x75, 0xe6, +0x00, 0x75, 0xde, 0x00, 0x75, 0xe4, 0x00, 0x75, 0xe5, 0x00, 0x75, 0xe3, 0x00, 0x75, 0xc0, 0x00, +0x02, 0x13, 0x1f, 0x75, 0xd9, 0x07, 0x75, 0xda, 0x00, 0x75, 0xdd, 0x00, 0x75, 0xdb, 0x40, 0x75, +0xdc, 0x30, 0x75, 0xe6, 0x00, 0x75, 0xde, 0x00, 0x75, 0xe4, 0x04, 0x75, 0xe5, 0x00, 0x75, 0xe3, +0x00, 0x75, 0xc0, 0x00, 0x02, 0x13, 0x1f, 0x75, 0xd9, 0x07, 0x75, 0xda, 0xb7, 0x75, 0xdd, 0x37, +0x75, 0xdb, 0x00, 0x75, 0xdc, 0x66, 0x75, 0xe6, 0x02, 0x75, 0xde, 0x0f, 0x75, 0xe4, 0x0a, 0x75, +0xe5, 0x00, 0x75, 0xe3, 0x80, 0x75, 0xc0, 0x00, 0x02, 0x13, 0x1f, 0x75, 0xda, 0xb7, 0x75, 0xdd, +0x27, 0x75, 0xdb, 0x00, 0x75, 0xe6, 0x00, 0x75, 0xde, 0x0f, 0x90, 0xf1, 0x16, 0xe0, 0xfb, 0x53, +0x03, 0x40, 0xbb, 0x40, 0x18, 0x90, 0xf1, 0x9e, 0xe0, 0xfb, 0x30, 0xe1, 0x08, 0x75, 0xdc, 0x20, +0x75, 0xe4, 0x0f, 0x80, 0x0e, 0x75, 0xdc, 0x00, 0x75, 0xe4, 0x0e, 0x80, 0x06, 0x75, 0xdc, 0x00, +0x75, 0xe4, 0x0e, 0x75, 0xe5, 0x00, 0x75, 0xe3, 0x20, 0x75, 0xc0, 0x88, 0x02, 0x13, 0x1f, 0x75, +0xd9, 0x07, 0x75, 0xda, 0xb7, 0x75, 0xdd, 0x37, 0x75, 0xdb, 0x00, 0x75, 0xdc, 0x7f, 0x75, 0xe6, +0x07, 0x75, 0xde, 0x00, 0x75, 0xe4, 0x04, 0x75, 0xe5, 0x00, 0x75, 0xe3, 0x40, 0x75, 0xc0, 0x00, +0x80, 0x67, 0x75, 0xda, 0xb7, 0x75, 0xdd, 0x27, 0x75, 0xdb, 0x00, 0x75, 0xdc, 0x20, 0x75, 0xe6, +0x00, 0x75, 0xde, 0x0f, 0x90, 0xf1, 0x16, 0xe0, 0xfb, 0x53, 0x03, 0x40, 0xbb, 0x40, 0x18, 0x90, +0xf1, 0x9e, 0xe0, 0xfb, 0x30, 0xe1, 0x08, 0x75, 0xdc, 0x20, 0x75, 0xe4, 0x0f, 0x80, 0x0e, 0x75, +0xdc, 0x00, 0x75, 0xe4, 0x0e, 0x80, 0x06, 0x75, 0xdc, 0x00, 0x75, 0xe4, 0x0e, 0x75, 0xe5, 0x00, +0x75, 0xe3, 0x10, 0x75, 0xc0, 0x88, 0x80, 0x21, 0x75, 0xd9, 0x07, 0x75, 0xda, 0xb7, 0x75, 0xdd, +0x37, 0x75, 0xdb, 0x00, 0x75, 0xdc, 0x67, 0x75, 0xe6, 0x02, 0x75, 0xde, 0x0f, 0x75, 0xe4, 0x0f, +0x75, 0xe5, 0x07, 0x75, 0xe3, 0x03, 0x75, 0xc0, 0x88, 0x90, 0xfd, 0x44, 0x12, 0x16, 0x6d, 0x90, +0xf1, 0x01, 0xe0, 0xfb, 0x74, 0x78, 0x5b, 0xfa, 0x90, 0xf1, 0x02, 0xe0, 0xfb, 0x53, 0x03, 0x80, +0xbb, 0x80, 0x02, 0x7a, 0x80, 0x90, 0xf1, 0x02, 0xe0, 0xfb, 0x53, 0x03, 0x10, 0xbb, 0x10, 0x02, +0x7a, 0x04, 0x90, 0xf1, 0x02, 0xe0, 0xfb, 0x53, 0x03, 0x08, 0xbb, 0x08, 0x02, 0x80, 0x03, 0x02, +0x10, 0xc4, 0x7a, 0x02, 0x02, 0x10, 0xc4, 0x90, 0xf0, 0x05, 0xe0, 0xfa, 0x53, 0x02, 0x08, 0xba, +0x08, 0x03, 0x43, 0xd9, 0x10, 0x90, 0xf0, 0x05, 0xe0, 0xfa, 0x53, 0x02, 0x80, 0xba, 0x80, 0x03, +0x43, 0xd9, 0x20, 0x30, 0xce, 0x05, 0x75, 0xda, 0xb7, 0x80, 0x03, 0x75, 0xda, 0xb3, 0x75, 0xdd, +0x07, 0x90, 0xf0, 0x03, 0xe0, 0xfa, 0x30, 0xe0, 0x03, 0x43, 0xdd, 0x10, 0x90, 0xf0, 0x03, 0xe0, +0xfa, 0x30, 0xe4, 0x03, 0x43, 0xdd, 0x20, 0x75, 0xc0, 0x00, 0x75, 0xe5, 0x00, 0x75, 0xde, 0x00, +0x75, 0xdb, 0x00, 0x75, 0xe3, 0x00, 0x75, 0xdc, 0x7f, 0x75, 0xe6, 0x07, 0x90, 0xf1, 0x03, 0xe0, +0xfa, 0x30, 0xe3, 0x05, 0x75, 0xe4, 0x06, 0x80, 0x03, 0x75, 0xe4, 0x04, 0xd2, 0xa8, 0x75, 0xf1, +0x17, 0x20, 0x03, 0x03, 0x75, 0x87, 0x01, 0xc2, 0xa8, 0x02, 0x00, 0xb4, 0xc2, 0x03, 0x90, 0xf0, +0x4c, 0xe0, 0xfa, 0x20, 0xe0, 0x06, 0x90, 0xff, 0x56, 0x12, 0x16, 0x6d, 0x75, 0xf1, 0x04, 0xd2, +0x04, 0x02, 0x00, 0xb4, 0x02, 0x00, 0xb4, 0x90, 0x00, 0x01, 0x22, 0xc0, 0xd0, 0x75, 0xd0, 0x08, +0xc2, 0xaf, 0xc2, 0x8e, 0xc2, 0x8f, 0xd2, 0x02, 0xd2, 0xaf, 0xd0, 0xd0, 0x32, 0xc0, 0xe0, 0xc0, +0x82, 0xc0, 0x83, 0xc0, 0xd0, 0x75, 0xd0, 0x08, 0xc2, 0x0b, 0xc2, 0xaf, 0xc2, 0x8e, 0xc2, 0x8f, +0xd2, 0x02, 0xd2, 0x03, 0x75, 0xde, 0x00, 0x75, 0xe4, 0x00, 0x75, 0xe3, 0x00, 0x75, 0xe6, 0x00, +0x75, 0xdc, 0x00, 0x75, 0xdb, 0x00, 0x30, 0x87, 0x0b, 0x75, 0xf1, 0x00, 0x53, 0x80, 0x48, 0xd2, +0x0b, 0x02, 0x15, 0xf3, 0xa2, 0x80, 0x72, 0x83, 0x40, 0x03, 0x02, 0x14, 0xc4, 0x75, 0xf1, 0x20, +0x90, 0xf0, 0x56, 0x74, 0x0f, 0xf0, 0x90, 0xf0, 0x54, 0x74, 0x07, 0xf0, 0x90, 0xf0, 0xa6, 0x74, +0x0a, 0xf0, 0x90, 0xf0, 0x6d, 0x74, 0x08, 0xf0, 0x90, 0xf0, 0x71, 0x74, 0x08, 0xf0, 0x90, 0xf1, +0xc8, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0xc9, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0xca, 0x74, 0x3f, 0xf0, +0x90, 0xf1, 0xcb, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0x8e, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0x8f, 0x74, +0x3f, 0xf0, 0x90, 0xf1, 0x90, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0x91, 0x74, 0x3f, 0xf0, 0x90, 0xf1, +0x92, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0x93, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0x94, 0x74, 0x3f, 0xf0, +0x90, 0xf1, 0x95, 0x74, 0x3f, 0xf0, 0xc2, 0xcf, 0x90, 0xf1, 0x9c, 0x74, 0x7f, 0xf0, 0xd2, 0xcf, +0x90, 0xf1, 0x9c, 0x74, 0x7f, 0xf0, 0xc2, 0xcf, 0x53, 0x80, 0xc0, 0x02, 0x15, 0xf3, 0xa2, 0x82, +0x72, 0x81, 0x40, 0x03, 0x02, 0x15, 0x56, 0x90, 0xf0, 0xb2, 0xe0, 0xfa, 0x44, 0x10, 0xf0, 0x75, +0xf1, 0x20, 0x90, 0xf0, 0x56, 0x74, 0x0f, 0xf0, 0x90, 0xf0, 0x54, 0x74, 0x07, 0xf0, 0x90, 0xf0, +0xa6, 0x74, 0x0a, 0xf0, 0x90, 0xf0, 0x6d, 0x74, 0x08, 0xf0, 0x90, 0xf0, 0x71, 0x74, 0x08, 0xf0, +0x90, 0xf1, 0xc8, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0xc9, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0xca, 0x74, +0x3f, 0xf0, 0x90, 0xf1, 0xcb, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0x8e, 0x74, 0x0f, 0xf0, 0x90, 0xf1, +0x8f, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0x90, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0x91, 0x74, 0x3f, 0xf0, +0x90, 0xf1, 0x92, 0x74, 0x0f, 0xf0, 0x90, 0xf1, 0x93, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0x94, 0x74, +0x3f, 0xf0, 0x90, 0xf1, 0x95, 0x74, 0x3f, 0xf0, 0xc2, 0xcf, 0x90, 0xf1, 0x9c, 0x74, 0x7f, 0xf0, +0xd2, 0xcf, 0x90, 0xf1, 0x9c, 0x74, 0x7f, 0xf0, 0xc2, 0xcf, 0x53, 0x80, 0xc0, 0x02, 0x15, 0xf3, +0x30, 0xc8, 0x09, 0x75, 0xf1, 0x0f, 0x53, 0xc8, 0x02, 0x02, 0x15, 0xf3, 0x30, 0xc9, 0x09, 0x75, +0xf1, 0x11, 0x53, 0xc8, 0x01, 0x02, 0x15, 0xf3, 0x30, 0x86, 0x09, 0x75, 0xf1, 0x13, 0x53, 0x80, +0xbf, 0x02, 0x15, 0xf3, 0x30, 0x84, 0x40, 0x90, 0xf0, 0xb2, 0xe0, 0xfa, 0x44, 0x10, 0xf0, 0x75, +0xf1, 0x21, 0x90, 0xf1, 0x8e, 0x74, 0x0f, 0xf0, 0x90, 0xf1, 0x8f, 0x74, 0x3f, 0xf0, 0x90, 0xf1, +0x90, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0x91, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0x92, 0x74, 0x0f, 0xf0, +0x90, 0xf1, 0x93, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0x94, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0x95, 0x74, +0x3f, 0xf0, 0x53, 0x80, 0xcf, 0x80, 0x36, 0x75, 0x57, 0xa3, 0x04, 0x14, 0x01, 0x00, 0x00, 0x00, +0x00, 0x10, 0x01, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xf6, 0x90, 0xae, 0x4c, 0xf1, 0x21, 0x90, 0xf1, +0x8e, 0x74, 0x0f, 0xf0, 0x90, 0xf1, 0x8f, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0x90, 0x74, 0x3f, 0xf0, +0x90, 0xf1, 0x91, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0x92, 0x74, 0x0f, 0xf0, 0x90, 0xf1, 0x93, 0x74, +0x3f, 0xf0, 0x90, 0xf1, 0x94, 0x74, 0x3f, 0xf0, 0x90, 0xf1, 0x95, 0x74, 0x3f, 0xf0, 0x53, 0x80, +0xcf, 0x90, 0xf0, 0x07, 0xe0, 0xfa, 0x53, 0x0a, 0x10, 0x90, 0xf0, 0x08, 0xe0, 0xfb, 0x74, 0x80, +0x5b, 0x42, 0x0a, 0xe4, 0xa2, 0x0b, 0x33, 0xfb, 0x4a, 0x70, 0x0b, 0x90, 0xf0, 0x07, 0xe0, 0xfa, +0x53, 0x0a, 0x02, 0xba, 0x00, 0xf5, 0xc2, 0xa8, 0xd2, 0xaf, 0xd0, 0xd0, 0xd0, 0x83, 0xd0, 0x82, +0xd0, 0xe0, 0x32, 0xd2, 0xb1, 0x30, 0x95, 0xfd, 0x85, 0xf6, 0x82, 0x85, 0xf7, 0x83, 0xc2, 0xb1, +0x22, 0xaa, 0x82, 0x75, 0xfe, 0x02, 0x8a, 0xfa, 0x85, 0x3f, 0xfb, 0x90, 0xff, 0xff, 0x12, 0x16, +0x6d, 0x75, 0xfe, 0x03, 0x90, 0xff, 0xff, 0x12, 0x16, 0x6d, 0x75, 0xfe, 0x02, 0x90, 0xff, 0xff, +0x12, 0x16, 0x6d, 0x75, 0xfe, 0x00, 0x22, 0xaa, 0x82, 0x75, 0xfe, 0x02, 0x8a, 0xfc, 0x90, 0xff, +0xff, 0x12, 0x16, 0x6d, 0x85, 0xfd, 0x82, 0x75, 0xfe, 0x00, 0x22, 0xaa, 0x82, 0xab, 0x83, 0x43, +0x89, 0x01, 0x8a, 0x8a, 0x8b, 0x8c, 0xd2, 0x8c, 0x30, 0x8d, 0xfd, 0xc2, 0x8c, 0xc2, 0x8d, 0x22, +0x85, 0x2e, 0x82, 0x85, 0x2f, 0x83, 0x12, 0x16, 0x6d, 0xd2, 0xb2, 0xc2, 0xb2, 0xc2, 0xb2, 0x90, +0xff, 0xff, 0x12, 0x16, 0x6d, 0x30, 0x91, 0x11, 0xaa, 0x32, 0x7b, 0x00, 0xe5, 0xe9, 0xc3, 0x9a, +0xf5, 0xe9, 0xe5, 0xea, 0x9b, 0xf5, 0xea, 0x80, 0x18, 0x30, 0x90, 0x10, 0xaa, 0x32, 0x7b, 0x00, +0xea, 0x25, 0xe9, 0xf5, 0xe9, 0xeb, 0x35, 0xea, 0xf5, 0xea, 0x80, 0x05, 0x74, 0x01, 0x24, 0xff, +0x22, 0x85, 0xeb, 0xed, 0x85, 0xec, 0xee, 0xe5, 0x32, 0xc3, 0x13, 0xf5, 0x32, 0xe4, 0x24, 0xff, +0x22, 0xaa, 0xe9, 0xe5, 0xea, 0xc4, 0xca, 0xc4, 0x54, 0x0f, 0x6a, 0xca, 0x54, 0x0f, 0xca, 0x6a, +0xca, 0xfb, 0x85, 0x2e, 0x82, 0x85, 0x2f, 0x83, 0xc0, 0x02, 0xc0, 0x03, 0x12, 0x16, 0x6d, 0xd0, +0x03, 0xd0, 0x02, 0xd2, 0xb2, 0xc2, 0xb2, 0xc2, 0xb2, 0x90, 0xff, 0xff, 0xc0, 0x02, 0xc0, 0x03, +0x12, 0x16, 0x6d, 0xd0, 0x03, 0xd0, 0x02, 0x30, 0x90, 0x1b, 0xea, 0xb5, 0x2a, 0x0b, 0xeb, 0xb5, +0x2b, 0x07, 0xd2, 0x97, 0x74, 0x01, 0x24, 0xff, 0x22, 0xac, 0x26, 0x7d, 0x00, 0xec, 0x2a, 0xfa, +0xed, 0x3b, 0xfb, 0x80, 0x1a, 0xea, 0xb5, 0x2b, 0x0b, 0xeb, 0xb5, 0x2c, 0x07, 0xd2, 0x97, 0x74, +0x01, 0x24, 0xff, 0x22, 0xac, 0x26, 0x7d, 0x00, 0xea, 0xc3, 0x9c, 0xfa, 0xeb, 0x9d, 0xfb, 0x20, +0x05, 0x03, 0x75, 0x33, 0x00, 0xe5, 0x33, 0x25, 0x33, 0xfc, 0xe4, 0xa2, 0x90, 0x33, 0xfd, 0x2c, +0xf5, 0x33, 0x53, 0x33, 0x03, 0x8a, 0xe9, 0xeb, 0xc4, 0x54, 0xf0, 0xc5, 0xe9, 0xc4, 0xc5, 0xe9, +0x65, 0xe9, 0xc5, 0xe9, 0x54, 0xf0, 0xc5, 0xe9, 0x65, 0xe9, 0xf5, 0xea, 0x85, 0xeb, 0xed, 0x85, +0xec, 0xee, 0xe5, 0x33, 0xb4, 0x02, 0x04, 0x74, 0x01, 0x80, 0x01, 0xe4, 0x24, 0xff, 0x92, 0x0c, +0xa2, 0x0c, 0x72, 0x02, 0xe4, 0x33, 0xf5, 0x82, 0x24, 0xff, 0x22, 0xaa, 0x82, 0xab, 0x83, 0x7c, +0x00, 0x75, 0x12, 0x00, 0xe0, 0xfd, 0x90, 0xff, 0xf6, 0xc0, 0x02, 0xc0, 0x03, 0xc0, 0x04, 0xc0, +0x05, 0x12, 0x16, 0x6d, 0xd0, 0x05, 0xd0, 0x04, 0xd0, 0x03, 0xd0, 0x02, 0xae, 0x10, 0xaf, 0x11, +0x30, 0x01, 0x03, 0x02, 0x18, 0x43, 0xd2, 0xb2, 0xc2, 0xb2, 0x90, 0xff, 0xff, 0xc0, 0x02, 0xc0, +0x03, 0xc0, 0x04, 0xc0, 0x05, 0xc0, 0x06, 0xc0, 0x07, 0x12, 0x16, 0x6d, 0xd0, 0x07, 0xd0, 0x06, +0xd0, 0x05, 0xd0, 0x04, 0xd0, 0x03, 0xd0, 0x02, 0x8e, 0x82, 0x8f, 0x83, 0xe0, 0xf8, 0xe5, 0x23, +0x52, 0x00, 0xe8, 0xb5, 0x23, 0x04, 0x74, 0x01, 0x80, 0x01, 0xe4, 0x24, 0xff, 0x92, 0x0d, 0x30, +0x0d, 0x0f, 0xed, 0xb5, 0x24, 0x05, 0x74, 0x01, 0x24, 0xff, 0x22, 0xe5, 0x26, 0x2d, 0xfd, 0x80, +0x0e, 0xed, 0xb5, 0x25, 0x05, 0x74, 0x01, 0x24, 0xff, 0x22, 0xed, 0xc3, 0x95, 0x26, 0xfd, 0xec, +0x2c, 0xf8, 0xe4, 0xa2, 0x0d, 0x33, 0x28, 0x54, 0x0f, 0xfc, 0xb4, 0x01, 0x00, 0xe4, 0x33, 0xf8, +0x8a, 0x82, 0x8b, 0x83, 0xed, 0xf0, 0xe4, 0xb8, 0xf5, 0x01, 0x04, 0xf8, 0xe4, 0xbc, 0x0a, 0x01, +0x04, 0xd3, 0x48, 0x70, 0x01, 0xc3, 0x92, 0x0e, 0xa2, 0x0e, 0x72, 0x02, 0x92, 0x01, 0x02, 0x17, +0xb2, 0xe4, 0x24, 0xff, 0x22, 0xaa, 0x82, 0xab, 0x83, 0x7c, 0x00, 0x75, 0x15, 0x00, 0xe0, 0xfd, +0x90, 0xff, 0xd8, 0xc0, 0x02, 0xc0, 0x03, 0xc0, 0x04, 0xc0, 0x05, 0x12, 0x16, 0x6d, 0xd0, 0x05, +0xd0, 0x04, 0xd0, 0x03, 0xd0, 0x02, 0xae, 0x13, 0xaf, 0x14, 0x30, 0x01, 0x03, 0x02, 0x19, 0x1b, +0x90, 0xff, 0xf6, 0xc0, 0x02, 0xc0, 0x03, 0xc0, 0x04, 0xc0, 0x05, 0xc0, 0x06, 0xc0, 0x07, 0x12, +0x16, 0x6d, 0xd0, 0x07, 0xd0, 0x06, 0xd0, 0x05, 0xd0, 0x04, 0xd0, 0x03, 0xd0, 0x02, 0xd2, 0xb2, +0xc2, 0xb2, 0x90, 0xff, 0xff, 0xc0, 0x02, 0xc0, 0x03, 0xc0, 0x04, 0xc0, 0x05, 0xc0, 0x06, 0xc0, +0x07, 0x12, 0x16, 0x6d, 0xd0, 0x07, 0xd0, 0x06, 0xd0, 0x05, 0xd0, 0x04, 0xd0, 0x03, 0xd0, 0x02, +0x8e, 0x82, 0x8f, 0x83, 0xe0, 0xf8, 0xe5, 0x23, 0x52, 0x00, 0xe8, 0xb5, 0x23, 0x04, 0x74, 0x01, +0x80, 0x01, 0xe4, 0x24, 0xff, 0x92, 0x0f, 0x30, 0x0f, 0x0f, 0xed, 0xb5, 0x24, 0x05, 0x74, 0x01, +0x24, 0xff, 0x22, 0xe5, 0x26, 0x2d, 0xfd, 0x80, 0x0e, 0xed, 0xb5, 0x25, 0x05, 0x74, 0x01, 0x24, +0xff, 0x22, 0xed, 0xc3, 0x95, 0x26, 0xfd, 0xec, 0x2c, 0xf8, 0xe4, 0xa2, 0x0f, 0x33, 0x28, 0x54, +0x0f, 0xfc, 0xb4, 0x01, 0x00, 0xe4, 0x33, 0xf8, 0x8a, 0x82, 0x8b, 0x83, 0xed, 0xf0, 0xe4, 0xb8, +0xf5, 0x01, 0x04, 0xf8, 0xe4, 0xbc, 0x0a, 0x01, 0x04, 0xd3, 0x48, 0x70, 0x01, 0xc3, 0x92, 0x10, +0xa2, 0x10, 0x72, 0x02, 0x92, 0x01, 0x02, 0x18, 0x6c, 0xe4, 0x24, 0xff, 0x22, 0xaa, 0x82, 0xab, +0x83, 0x90, 0xff, 0xf6, 0xc0, 0x02, 0xc0, 0x03, 0x12, 0x16, 0x6d, 0xd0, 0x03, 0xd0, 0x02, 0xac, +0x16, 0xad, 0x17, 0xe5, 0x27, 0x60, 0x52, 0xd2, 0xb2, 0xc2, 0xb2, 0x90, 0xff, 0xff, 0xc0, 0x02, +0xc0, 0x03, 0xc0, 0x04, 0xc0, 0x05, 0x12, 0x16, 0x6d, 0xd0, 0x05, 0xd0, 0x04, 0xd0, 0x03, 0xd0, +0x02, 0x8c, 0x82, 0x8d, 0x83, 0xe0, 0xfe, 0xe5, 0x23, 0x52, 0x06, 0xee, 0xb5, 0x23, 0x11, 0x8a, +0x82, 0x8b, 0x83, 0xe0, 0xfe, 0xe5, 0x26, 0x2e, 0xfe, 0x8a, 0x82, 0x8b, 0x83, 0xf0, 0x80, 0x0f, +0x8a, 0x82, 0x8b, 0x83, 0xe0, 0xfe, 0xc3, 0x95, 0x26, 0xfe, 0x8a, 0x82, 0x8b, 0x83, 0xf0, 0xe5, +0x26, 0xc3, 0x13, 0xf5, 0x26, 0x15, 0x27, 0x80, 0xaa, 0xd2, 0xb2, 0xc2, 0xb2, 0x90, 0xff, 0xff, +0xc0, 0x02, 0xc0, 0x03, 0xc0, 0x04, 0xc0, 0x05, 0x12, 0x16, 0x6d, 0xd0, 0x05, 0xd0, 0x04, 0xd0, +0x03, 0xd0, 0x02, 0x8c, 0x82, 0x8d, 0x83, 0xe0, 0xfc, 0xe5, 0x23, 0x52, 0x04, 0xec, 0xb5, 0x23, +0x0d, 0x8a, 0x82, 0x8b, 0x83, 0xe0, 0x04, 0xfc, 0x1e, 0x57, 0x3c, 0xd5, 0x01, 0x00, 0x00, 0x00, +0xfc, 0x13, 0x01, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xac, 0xeb, 0xa1, 0x45, 0x8a, 0x82, 0x8b, 0x83, +0xec, 0xf0, 0x22, 0xaa, 0x82, 0xab, 0x83, 0x90, 0xff, 0xd8, 0xc0, 0x02, 0xc0, 0x03, 0x12, 0x16, +0x6d, 0xd0, 0x03, 0xd0, 0x02, 0xac, 0x18, 0xad, 0x19, 0xe5, 0x27, 0x60, 0x68, 0x90, 0xff, 0xf6, +0xc0, 0x02, 0xc0, 0x03, 0xc0, 0x04, 0xc0, 0x05, 0x12, 0x16, 0x6d, 0xd0, 0x05, 0xd0, 0x04, 0xd0, +0x03, 0xd0, 0x02, 0xd2, 0xb2, 0xc2, 0xb2, 0x90, 0xff, 0xff, 0xc0, 0x02, 0xc0, 0x03, 0xc0, 0x04, +0xc0, 0x05, 0x12, 0x16, 0x6d, 0xd0, 0x05, 0xd0, 0x04, 0xd0, 0x03, 0xd0, 0x02, 0x8c, 0x82, 0x8d, +0x83, 0xe0, 0xfe, 0xe5, 0x23, 0x52, 0x06, 0xee, 0xb5, 0x23, 0x11, 0x8a, 0x82, 0x8b, 0x83, 0xe0, +0xfe, 0xe5, 0x26, 0x2e, 0xfe, 0x8a, 0x82, 0x8b, 0x83, 0xf0, 0x80, 0x0f, 0x8a, 0x82, 0x8b, 0x83, +0xe0, 0xfe, 0xc3, 0x95, 0x26, 0xfe, 0x8a, 0x82, 0x8b, 0x83, 0xf0, 0xe5, 0x26, 0xc3, 0x13, 0xf5, +0x26, 0x15, 0x27, 0x80, 0x94, 0xd2, 0xb2, 0xc2, 0xb2, 0x90, 0xff, 0xff, 0xc0, 0x02, 0xc0, 0x03, +0xc0, 0x04, 0xc0, 0x05, 0x12, 0x16, 0x6d, 0xd0, 0x05, 0xd0, 0x04, 0xd0, 0x03, 0xd0, 0x02, 0x8c, +0x82, 0x8d, 0x83, 0xe0, 0xfc, 0xe5, 0x23, 0x52, 0x04, 0xec, 0xb5, 0x23, 0x0d, 0x8a, 0x82, 0x8b, +0x83, 0xe0, 0x04, 0xfc, 0x8a, 0x82, 0x8b, 0x83, 0xec, 0xf0, 0x22, 0xaa, 0x82, 0xab, 0x83, 0x43, +0x89, 0x10, 0x8a, 0x8b, 0x8b, 0x8d, 0xd2, 0xaf, 0xd2, 0xab, 0xd2, 0x8e, 0x22, 0x00, 0x61, 0x59, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x22, 0x5e, 0xf2, 0x01, 0x00, 0x00, 0x00, +0xf8, 0x17, 0x01, 0xc0, 0x00, 0x04, 0x00, 0x00, 0xff, 0x31, 0x72, 0x29, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x48, 0x08, 0x01, 0x3d, 0x48, 0x08, 0x02, +0x35, 0x48, 0x08, 0x02, 0x2d, 0x48, 0x08, 0x02, 0x25, 0x48, 0x09, 0x02, 0x1d, 0x48, 0x09, 0x02, +0x15, 0x48, 0x0a, 0x02, 0x0d, 0x48, 0x0a, 0x02, 0x05, 0x48, 0x0a, 0x02, 0x05, 0x49, 0x0a, 0x02, +0x05, 0x49, 0x0a, 0x0f, 0x05, 0x49, 0x0a, 0x0f, 0x05, 0x49, 0x0a, 0x0f, 0x05, 0x49, 0x0a, 0x0f, +0x05, 0x49, 0x0a, 0x0f, 0x05, 0x49, 0x0a, 0x0f, 0x05, 0x49, 0x0a, 0x0f, 0x3b, 0x08, 0x05, 0x01, +0x39, 0x08, 0x05, 0x02, 0x31, 0x08, 0x05, 0x02, 0x29, 0x08, 0x05, 0x02, 0x21, 0x08, 0x06, 0x02, +0x19, 0x08, 0x06, 0x02, 0x11, 0x08, 0x07, 0x02, 0x09, 0x08, 0x07, 0x02, 0x01, 0x08, 0x07, 0x02, +0x01, 0x08, 0x07, 0x0f, 0x01, 0x08, 0x07, 0x0f, 0x01, 0x08, 0x07, 0x0f, 0x01, 0x08, 0x07, 0x0f, +0x01, 0x08, 0x07, 0x0f, 0x01, 0x08, 0x07, 0x0f, 0x01, 0x08, 0x07, 0x0f, 0x60, 0x08, 0x02, 0x02, +0x58, 0x08, 0x02, 0x02, 0x50, 0x08, 0x03, 0x02, 0x48, 0x08, 0x03, 0x02, 0x40, 0x08, 0x04, 0x02, +0x38, 0x08, 0x04, 0x02, 0x30, 0x08, 0x04, 0x02, 0x28, 0x08, 0x04, 0x02, 0x28, 0x08, 0x04, 0x0f, +0x18, 0x08, 0x01, 0x02, 0x10, 0x08, 0x01, 0x02, 0x08, 0x08, 0x01, 0x02, 0x00, 0x08, 0x01, 0x02, +0x00, 0x08, 0x01, 0x0f, 0xb8, 0x1a, 0x01, 0xc0, 0xb4, 0x1a, 0x01, 0xc0, 0xb0, 0x1a, 0x01, 0xc0, +0xac, 0x1a, 0x01, 0xc0, 0xac, 0x1a, 0x01, 0xc0, 0xa4, 0x1a, 0x01, 0xc0, 0xa0, 0x1a, 0x01, 0xc0, +0x9c, 0x1a, 0x01, 0xc0, 0x98, 0x1a, 0x01, 0xc0, 0x94, 0x1a, 0x01, 0xc0, 0x90, 0x1a, 0x01, 0xc0, +0x8c, 0x1a, 0x01, 0xc0, 0x88, 0x1a, 0x01, 0xc0, 0x88, 0x1a, 0x01, 0xc0, 0x68, 0x1a, 0x01, 0xc0, +0x64, 0x1a, 0x01, 0xc0, 0x60, 0x1a, 0x01, 0xc0, 0x5c, 0x1a, 0x01, 0xc0, 0x58, 0x1a, 0x01, 0xc0, +0x54, 0x1a, 0x01, 0xc0, 0x50, 0x1a, 0x01, 0xc0, 0x4c, 0x1a, 0x01, 0xc0, 0x28, 0x1a, 0x01, 0xc0, +0x24, 0x1a, 0x01, 0xc0, 0x20, 0x1a, 0x01, 0xc0, 0x1c, 0x1a, 0x01, 0xc0, 0x18, 0x1a, 0x01, 0xc0, +0x14, 0x1a, 0x01, 0xc0, 0x10, 0x1a, 0x01, 0xc0, 0x0c, 0x1a, 0x01, 0xc0, 0x08, 0x1a, 0x01, 0xc0, +0x01, 0x00, 0x00, 0x00, 0x20, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x20, 0x00, 0x00, 0x04, 0x00, 0x08, 0x00, 0x10, 0x00, 0x14, 0x00, 0x20, 0x00, 0x20, 0x00, +0x28, 0x00, 0x28, 0x00, 0x40, 0x00, 0x50, 0x00, 0x50, 0x00, 0x6a, 0x00, 0x6a, 0x00, 0x6a, 0x00, +0x6a, 0x00, 0x6a, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb1, 0x13, 0x75, 0x00, 0xb9, 0x11, 0x75, 0x00, +0x7b, 0x09, 0xa5, 0x00, 0x88, 0x08, 0xa5, 0x00, 0xd8, 0x09, 0x77, 0x00, 0xdc, 0x08, 0x77, 0x00, +0xbd, 0x04, 0xa7, 0x00, 0x44, 0x04, 0xa7, 0x00, 0x90, 0x06, 0x77, 0x00, 0xe8, 0x05, 0x77, 0x00, +0x29, 0x03, 0xa7, 0x00, 0xd8, 0x02, 0xa7, 0x00, 0xec, 0x04, 0x69, 0x00, 0x6e, 0x04, 0x69, 0x00, +0x5e, 0x02, 0x99, 0x00, 0x22, 0x02, 0x99, 0x00, 0x35, 0x19, 0xb7, 0xdf, 0x01, 0x00, 0x00, 0x00, +0xf4, 0x1b, 0x01, 0xc0, 0xa8, 0x02, 0x00, 0x00, 0xba, 0x68, 0x0f, 0x69, 0x48, 0x03, 0x69, 0x00, +0xf4, 0x02, 0x69, 0x00, 0x94, 0x01, 0x99, 0x00, 0x6c, 0x01, 0x99, 0x00, 0x76, 0x02, 0x59, 0x00, +0x37, 0x02, 0x59, 0x00, 0x2f, 0x01, 0x89, 0x00, 0x11, 0x01, 0x89, 0x00, 0x30, 0x02, 0x59, 0x00, +0xf8, 0x01, 0x59, 0x00, 0x0d, 0x01, 0x89, 0x00, 0xf2, 0x00, 0x89, 0x00, 0xf8, 0x01, 0x59, 0x00, +0xc5, 0x01, 0x59, 0x00, 0xf2, 0x00, 0x89, 0x00, 0xda, 0x00, 0x89, 0x00, 0x28, 0x08, 0x04, 0x55, +0x28, 0x08, 0x04, 0x55, 0x3c, 0x48, 0x04, 0x77, 0x3c, 0x48, 0x04, 0x77, 0x38, 0x08, 0x04, 0x77, +0x38, 0x08, 0x04, 0x77, 0x4c, 0x48, 0x03, 0x99, 0x4c, 0x48, 0x03, 0x99, 0x38, 0x08, 0x04, 0x77, +0x38, 0x08, 0x04, 0x77, 0x4c, 0x48, 0x03, 0x99, 0x4c, 0x48, 0x03, 0x99, 0x48, 0x08, 0x03, 0x99, +0x48, 0x08, 0x03, 0x99, 0x4c, 0x48, 0x03, 0x99, 0x4c, 0x48, 0x03, 0x99, 0x48, 0x08, 0x03, 0x99, +0x48, 0x08, 0x03, 0x99, 0x4c, 0x48, 0x03, 0x99, 0x4c, 0x48, 0x03, 0x99, 0x48, 0x08, 0x03, 0x99, +0x48, 0x08, 0x03, 0x99, 0x4c, 0x48, 0x03, 0x99, 0x4c, 0x48, 0x03, 0x99, 0x48, 0x08, 0x03, 0x99, +0x48, 0x08, 0x03, 0x99, 0x4c, 0x48, 0x03, 0x99, 0x4c, 0x48, 0x03, 0x99, 0x48, 0x08, 0x03, 0x99, +0x48, 0x08, 0x03, 0x99, 0x4c, 0x48, 0x03, 0x99, 0x4c, 0x48, 0x03, 0x99, 0x00, 0x01, 0x02, 0x03, +0x03, 0x05, 0x05, 0x07, 0x07, 0x09, 0x09, 0x09, 0x09, 0x09, 0x00, 0x00, 0x28, 0x08, 0x04, 0x55, +0x30, 0x08, 0x04, 0x66, 0x38, 0x08, 0x04, 0x77, 0x40, 0x08, 0x04, 0x88, 0x48, 0x08, 0x03, 0x99, +0x50, 0x08, 0x03, 0xaa, 0x58, 0x08, 0x02, 0xbb, 0x60, 0x08, 0x02, 0xcc, 0x00, 0x00, 0x0a, 0x00, +0x8c, 0x0c, 0x02, 0xc0, 0x4c, 0x0d, 0x02, 0xc0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbb, 0xc7, 0x30, 0x00, +0x00, 0x00, 0x00, 0x00, 0x4b, 0xc6, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xc7, 0x30, 0x00, +0x00, 0x00, 0x00, 0x00, 0xa9, 0xf9, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0xfb, 0x30, 0x00, +0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xbb, 0xc7, 0x30, 0x00, +0x01, 0x00, 0x00, 0x00, 0xff, 0xc5, 0x30, 0x00, 0x01, 0x00, 0x00, 0x00, 0xbf, 0xc6, 0x30, 0x00, +0x01, 0x00, 0x00, 0x00, 0xa5, 0xf9, 0x30, 0x00, 0x01, 0x00, 0x00, 0x00, 0x6f, 0xfa, 0x30, 0x00, +0x57, 0x00, 0xfe, 0x00, 0x68, 0x01, 0x10, 0x00, 0x7e, 0x06, 0x07, 0x00, 0xff, 0xff, 0xff, 0x00, +0x08, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x47, 0x00, 0x6d, 0x00, 0x4a, 0x00, 0x6a, 0x00, +0x69, 0x00, 0xe6, 0x00, 0x6b, 0x00, 0xd9, 0x00, 0x6c, 0x00, 0xd8, 0x00, 0x58, 0x01, 0x2c, 0x00, +0x59, 0x01, 0x2c, 0x00, 0x65, 0x01, 0x24, 0x00, 0xd6, 0x01, 0x2d, 0x00, 0x6e, 0x02, 0x18, 0x00, +0x8d, 0x02, 0x63, 0x00, 0xae, 0x02, 0x29, 0x00, 0xcf, 0x02, 0x60, 0x00, 0xd5, 0x02, 0x04, 0x00, +0xe0, 0x02, 0x0c, 0x00, 0xfe, 0x02, 0xa6, 0x00, 0xff, 0x02, 0xa6, 0x00, 0x26, 0x03, 0xc3, 0x00, +0x43, 0x03, 0x66, 0x00, 0x7f, 0x03, 0x39, 0x00, 0x85, 0x03, 0x00, 0x00, 0x92, 0x03, 0x0a, 0x00, +0x93, 0x03, 0x0a, 0x00, 0xfb, 0x03, 0x81, 0x00, 0xfe, 0x03, 0x84, 0x00, 0xff, 0x03, 0x84, 0x00, +0x01, 0x04, 0xc0, 0x00, 0x20, 0x04, 0xc0, 0x00, 0x21, 0x04, 0x3e, 0x00, 0x23, 0x04, 0x03, 0x00, +0x24, 0x04, 0x3f, 0x00, 0x25, 0x04, 0x00, 0x00, 0x26, 0x04, 0x3f, 0x00, 0x27, 0x04, 0x20, 0x00, +0x28, 0x04, 0xb8, 0x00, 0x29, 0x04, 0x17, 0x00, 0x2a, 0x04, 0x39, 0x00, 0x2b, 0x04, 0x01, 0x00, +0x2c, 0x04, 0x20, 0x00, 0x2f, 0x04, 0x58, 0x00, 0x30, 0x04, 0x13, 0x00, 0x31, 0x04, 0xff, 0x00, +0x32, 0x04, 0xff, 0x00, 0x47, 0x04, 0x4f, 0x00, 0x4a, 0x04, 0x24, 0x00, 0x4b, 0x04, 0x0f, 0x00, +0x4e, 0x04, 0x71, 0x00, 0x52, 0x04, 0x1a, 0x00, 0x59, 0x04, 0x04, 0x00, 0x85, 0x04, 0x3c, 0x00, +0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, +0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, +0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x32, 0xf8, 0xe8, 0xf0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x80, 0x02, 0xc0, 0x00, 0x04, 0x00, 0x00, +0x10, 0x4a, 0xa0, 0x6d, 0x00, 0x21, 0x09, 0xa0, 0x10, 0xb5, 0x03, 0xf0, 0x90, 0xe9, 0x09, 0x4c, +0x60, 0x60, 0x03, 0xf0, 0x90, 0xe9, 0x03, 0xf0, 0x92, 0xe9, 0x20, 0x68, 0x00, 0x28, 0x03, 0xd0, +0x00, 0x22, 0x0d, 0x21, 0x03, 0xf0, 0x8e, 0xe9, 0x00, 0x20, 0x10, 0xbd, 0x77, 0x6c, 0x61, 0x6e, +0x00, 0x00, 0x00, 0x00, 0x18, 0xee, 0x00, 0xc0, 0x1f, 0x48, 0x01, 0x21, 0x49, 0x03, 0x41, 0x61, +0x1e, 0x49, 0x01, 0x61, 0x1e, 0x49, 0x41, 0x61, 0x05, 0x21, 0x01, 0x61, 0x70, 0x47, 0x10, 0xb5, +0x00, 0xf0, 0x44, 0xf9, 0x1b, 0x48, 0x80, 0x21, 0x03, 0xf0, 0x78, 0xe9, 0x1a, 0x48, 0xdc, 0x21, +0x03, 0xf0, 0x74, 0xe9, 0x18, 0x48, 0x14, 0x21, 0xdc, 0x30, 0x03, 0xf0, 0x70, 0xe9, 0x16, 0x48, +0x50, 0x21, 0xf0, 0x30, 0x03, 0xf0, 0x6a, 0xe9, 0x00, 0x20, 0x10, 0xbd, 0xf0, 0xb5, 0x00, 0x24, +0x12, 0x4e, 0x13, 0x4f, 0x08, 0xe0, 0xc5, 0x19, 0x68, 0x68, 0x03, 0xf0, 0x64, 0xe9, 0x69, 0x68, +0x01, 0x20, 0x88, 0x40, 0xb0, 0x60, 0x64, 0x1c, 0xe0, 0x00, 0x39, 0x58, 0x00, 0x29, 0xf2, 0xd1, +0x0c, 0x49, 0x17, 0x20, 0x03, 0xf0, 0x56, 0xe9, 0xff, 0xf7, 0xc6, 0xff, 0x01, 0x20, 0xc0, 0x05, +0xb0, 0x60, 0x00, 0x20, 0xf0, 0xbd, 0x00, 0x00, 0x80, 0x29, 0x00, 0x80, 0x07, 0x00, 0x00, 0xff, +0x10, 0x20, 0x00, 0x00, 0x50, 0x3d, 0x00, 0x04, 0xa0, 0x77, 0x02, 0x00, 0x00, 0x30, 0x00, 0x80, +0x60, 0x76, 0x02, 0x00, 0x33, 0x01, 0x00, 0x00, 0x04, 0x49, 0x03, 0x48, 0x08, 0x60, 0x05, 0x49, +0x03, 0x48, 0x08, 0x60, 0x70, 0x47, 0x00, 0x00, 0x3d, 0x07, 0x00, 0x00, 0xf0, 0xba, 0x02, 0x00, +0x44, 0x00, 0x00, 0x04, 0xf4, 0xba, 0x02, 0x00, 0x30, 0x48, 0x00, 0x68, 0x81, 0x68, 0x01, 0x22, +0x12, 0x04, 0x11, 0x43, 0x81, 0x60, 0x81, 0x68, 0xff, 0x22, 0x20, 0x32, 0x11, 0x43, 0x01, 0x22, +0x52, 0x03, 0x91, 0x43, 0x81, 0x60, 0x41, 0x68, 0x12, 0x11, 0x11, 0x43, 0x41, 0x60, 0x41, 0x68, +0xd2, 0x00, 0x11, 0x43, 0x41, 0x60, 0x70, 0x47, 0x09, 0x04, 0x01, 0x43, 0x23, 0x48, 0x00, 0x68, +0x81, 0x61, 0x70, 0x47, 0x21, 0x49, 0x09, 0x68, 0xca, 0x68, 0x12, 0x0c, 0x12, 0x04, 0x02, 0x43, +0xca, 0x60, 0x70, 0x47, 0x1d, 0x49, 0x09, 0x68, 0x4a, 0x69, 0x12, 0x0c, 0x12, 0x04, 0x02, 0x43, +0x4a, 0x61, 0x70, 0x47, 0x09, 0x04, 0x01, 0x43, 0x18, 0x48, 0x00, 0x68, 0xc1, 0x63, 0x70, 0x47, +0x16, 0x49, 0x09, 0x68, 0x4a, 0x68, 0x12, 0x0a, 0x12, 0x02, 0x02, 0x43, 0x4a, 0x60, 0x70, 0x47, +0x12, 0x48, 0x00, 0x68, 0x80, 0x30, 0x41, 0x68, 0x06, 0x22, 0x91, 0x43, 0x41, 0x60, 0x70, 0x47, +0x0e, 0x4a, 0x12, 0x68, 0x80, 0x32, 0x53, 0x6a, 0x09, 0x01, 0x1b, 0x0f, 0x1b, 0x07, 0x09, 0x09, +0x0b, 0x43, 0x53, 0x62, 0x11, 0x6a, 0x40, 0x03, 0xc9, 0x0c, 0xc9, 0x04, 0x40, 0x0b, 0x01, 0x43, +0x11, 0x62, 0x10, 0x68, 0x1f, 0x21, 0x09, 0x04, 0x88, 0x43, 0x01, 0x21, 0x09, 0x05, 0x40, 0x18, +0x10, 0x60, 0x10, 0x68, 0x49, 0x00, 0x08, 0x43, 0x10, 0x60, 0x70, 0x47, 0x2c, 0xee, 0x00, 0xc0, +0x10, 0xb5, 0x03, 0xf0, 0xcc, 0xe8, 0x00, 0xf0, 0xbb, 0xfd, 0x00, 0x20, 0x00, 0xf0, 0x4e, 0xfd, +0x00, 0xf0, 0xe2, 0xfc, 0x00, 0x20, 0x00, 0xf0, 0xae, 0xfc, 0x00, 0xf0, 0xad, 0xfc, 0x00, 0xf0, +0xb3, 0xfc, 0x00, 0xf0, 0x21, 0xfd, 0x00, 0xf0, 0x7b, 0xfd, 0x00, 0xf0, 0x1f, 0xfd, 0x00, 0xf0, +0x1c, 0xfd, 0x00, 0x20, 0x10, 0xbd, 0x10, 0xb5, 0x00, 0xf0, 0x87, 0xfe, 0x00, 0xf0, 0x9e, 0xfe, +0x03, 0xf0, 0xb0, 0xe8, 0x03, 0xf0, 0xb2, 0xe8, 0x00, 0xf0, 0xa0, 0xf8, 0x00, 0x28, 0x01, 0xd0, +0x01, 0x20, 0x10, 0xbd, 0xd8, 0xf7, 0xc0, 0xff, 0x00, 0x20, 0x10, 0xbd, 0x10, 0xb5, 0x00, 0xf0, +0xd7, 0xfb, 0x24, 0x48, 0x22, 0x49, 0x01, 0x60, 0x23, 0x49, 0x41, 0x60, 0x23, 0x49, 0x81, 0x60, +0x23, 0x48, 0x41, 0x6b, 0x08, 0x22, 0x91, 0x43, 0x41, 0x63, 0x22, 0x48, 0x01, 0x68, 0x22, 0x4a, +0x11, 0x40, 0x01, 0x60, 0x00, 0x20, 0x10, 0xbd, 0x00, 0x20, 0x70, 0x47, 0x30, 0xb5, 0x94, 0x08, +0x00, 0x22, 0x03, 0xe0, 0x93, 0x00, 0xcd, 0x58, 0x52, 0x1c, 0xc5, 0x50, 0xa2, 0x42, 0xf9, 0xd3, +0x30, 0xbd, 0x93, 0x08, 0x00, 0x22, 0x10, 0xb5, 0x02, 0xe0, 0x94, 0x00, 0x52, 0x1c, 0x01, 0x51, +0x9a, 0x42, 0xfa, 0xd3, 0x10, 0xbd, 0x0b, 0x22, 0xad, 0x20, 0xd2, 0x01, 0x00, 0x21, 0x80, 0x02, +0x10, 0xb5, 0xff, 0xf7, 0xee, 0xff, 0x07, 0x22, 0x10, 0x49, 0x11, 0x48, 0xd2, 0x01, 0xff, 0xf7, +0xdd, 0xff, 0x03, 0x22, 0x0f, 0x49, 0x10, 0x48, 0x12, 0x02, 0xff, 0xf7, 0xd7, 0xff, 0x00, 0xf0, +0x39, 0xfe, 0x00, 0xf0, 0x35, 0xfc, 0x00, 0xf0, 0xc7, 0xfc, 0x00, 0x20, 0x10, 0xbd, 0x00, 0x00, +0x0f, 0x00, 0x20, 0x00, 0x80, 0x29, 0x00, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x0a, 0x80, 0x80, +0x40, 0xa8, 0x00, 0x80, 0x00, 0x28, 0x00, 0x80, 0xff, 0xcf, 0xff, 0xcf, 0xf0, 0x77, 0x33, 0x00, +0x80, 0xb9, 0x02, 0x00, 0x70, 0x7b, 0x33, 0x00, 0x00, 0xbd, 0x02, 0x00, 0x3e, 0xb5, 0x00, 0x20, +0x01, 0x22, 0x02, 0x90, 0x34, 0x21, 0x02, 0xa8, 0x03, 0xf0, 0x44, 0xe8, 0x00, 0x28, 0x1b, 0xd1, +0x14, 0x49, 0x01, 0x20, 0x08, 0x70, 0x02, 0x98, 0x00, 0xf0, 0x02, 0xfe, 0x12, 0x4c, 0xff, 0x25, +0x2d, 0x35, 0xa5, 0x22, 0x29, 0x00, 0x20, 0x00, 0x03, 0xf0, 0x38, 0xe8, 0x0c, 0x22, 0x04, 0x21, +0x01, 0x92, 0x00, 0x91, 0x02, 0x98, 0x22, 0x00, 0x0a, 0x21, 0x2b, 0x00, 0x03, 0xf0, 0x32, 0xe8, +0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, 0x3e, 0xbd, 0x00, 0x20, 0x3e, 0xbd, 0x00, 0x28, 0x10, 0xb5, +0x00, 0xd1, 0xfe, 0xe7, 0x00, 0x68, 0x00, 0x28, 0x00, 0xd1, 0xfe, 0xe7, 0x03, 0xf0, 0x26, 0xe8, +0x10, 0xbd, 0x00, 0x00, 0xa8, 0x76, 0x02, 0x00, 0xe0, 0x78, 0x02, 0x00, 0x00, 0xb5, 0x0d, 0x49, +0x00, 0x20, 0x87, 0xb0, 0x48, 0x60, 0x02, 0x00, 0x01, 0x00, 0x1e, 0x20, 0x03, 0xab, 0x07, 0xc3, +0x02, 0x00, 0x09, 0x48, 0xff, 0x21, 0xcd, 0x31, 0x6b, 0x46, 0x07, 0xc3, 0xa8, 0x38, 0x07, 0x4a, +0x00, 0x23, 0x07, 0xa1, 0x03, 0xf0, 0x0e, 0xe8, 0x00, 0x06, 0x00, 0x0e, 0x00, 0xd0, 0x01, 0x20, +0x07, 0xb0, 0x00, 0xbd, 0x34, 0xee, 0x00, 0xc0, 0xac, 0x2b, 0x01, 0xc0, 0x63, 0x11, 0x00, 0xc0, +0x49, 0x64, 0x6c, 0x65, 0x00, 0x00, 0x00, 0x00, 0x12, 0x49, 0x11, 0x48, 0x08, 0x60, 0x13, 0x49, +0x11, 0x48, 0x08, 0x60, 0x13, 0x49, 0x12, 0x48, 0x08, 0x60, 0x14, 0x49, 0x12, 0x48, 0x08, 0x60, +0x14, 0x49, 0x13, 0x48, 0x08, 0x60, 0x15, 0x49, 0x13, 0x48, 0x08, 0x60, 0x15, 0x49, 0x14, 0x48, +0x08, 0x60, 0x15, 0x48, 0x15, 0x49, 0x40, 0x68, 0x08, 0x60, 0x16, 0x49, 0x14, 0x48, 0x08, 0x60, +0x15, 0x49, 0x04, 0x20, 0x08, 0x60, 0x16, 0x49, 0x14, 0x48, 0x08, 0x60, 0x70, 0x47, 0x00, 0x00, +0xff, 0x30, 0x00, 0xc0, 0xa4, 0xba, 0x02, 0x00, 0x3f, 0x55, 0x00, 0x00, 0xa8, 0xba, 0x02, 0x00, +0x0d, 0xdd, 0x31, 0x00, 0xac, 0xba, 0x02, 0x00, 0x55, 0xea, 0x00, 0x00, 0x88, 0xba, 0x02, 0x00, +0x37, 0xe7, 0xa3, 0xd8, 0x01, 0x00, 0x00, 0x00, 0xfc, 0x83, 0x02, 0xc0, 0x00, 0x04, 0x00, 0x00, +0x4a, 0x31, 0xaf, 0x64, 0x25, 0x3a, 0x02, 0x00, 0x8c, 0xba, 0x02, 0x00, 0x75, 0x11, 0x00, 0x00, +0x90, 0xba, 0x02, 0x00, 0xa9, 0x11, 0x00, 0x00, 0x94, 0xba, 0x02, 0x00, 0x3c, 0x1b, 0x01, 0xc0, +0x9c, 0xba, 0x02, 0x00, 0x44, 0x00, 0x00, 0x04, 0xa0, 0xba, 0x02, 0x00, 0x98, 0xba, 0x02, 0x00, +0xf5, 0x17, 0x02, 0x00, 0xec, 0xbd, 0x02, 0x00, 0x04, 0x49, 0x32, 0x20, 0x08, 0x60, 0x05, 0x49, +0x03, 0x48, 0x08, 0x60, 0x05, 0x49, 0x04, 0x48, 0x08, 0x60, 0x70, 0x47, 0xd0, 0xba, 0x02, 0x00, +0xcd, 0x11, 0x00, 0x00, 0xcc, 0xba, 0x02, 0x00, 0xd9, 0x11, 0x00, 0x00, 0xc8, 0xba, 0x02, 0x00, +0x1a, 0x48, 0x10, 0xb5, 0x80, 0x68, 0x02, 0xf0, 0x9c, 0xef, 0x10, 0xbd, 0xfe, 0xb5, 0x00, 0x25, +0x17, 0x48, 0x05, 0x70, 0x15, 0x4c, 0x17, 0x48, 0x20, 0x61, 0x00, 0xf0, 0x37, 0xf8, 0x00, 0x28, +0x1f, 0xd1, 0x14, 0x48, 0x28, 0x38, 0xe0, 0x60, 0x20, 0x00, 0x0c, 0x30, 0xff, 0xf7, 0x50, 0xff, +0x11, 0x4e, 0x12, 0x48, 0xc1, 0x22, 0x31, 0x00, 0x02, 0xf0, 0x72, 0xef, 0x0d, 0x48, 0x10, 0x49, +0xd0, 0x38, 0xa0, 0x60, 0x00, 0x22, 0x0f, 0xa0, 0x6b, 0x46, 0x07, 0xc3, 0x20, 0x00, 0x0b, 0x49, +0x32, 0x00, 0x08, 0x30, 0x0b, 0x23, 0x02, 0xf0, 0x78, 0xef, 0x00, 0x28, 0x01, 0xd0, 0x01, 0x20, +0xfe, 0xbd, 0x01, 0x20, 0xa5, 0x61, 0x60, 0x60, 0x00, 0x20, 0xfe, 0xbd, 0xb0, 0x76, 0x02, 0x00, +0x2c, 0x00, 0x00, 0x04, 0x10, 0x7b, 0x02, 0x00, 0x6c, 0x07, 0x00, 0x00, 0xf0, 0x90, 0x02, 0x00, +0x45, 0x2f, 0x02, 0x00, 0x4d, 0x41, 0x43, 0x20, 0x54, 0x78, 0x00, 0x00, 0x08, 0xb5, 0x0c, 0x22, +0x00, 0x92, 0x09, 0x48, 0x04, 0x22, 0x06, 0x23, 0x03, 0xa1, 0x02, 0xf0, 0x5a, 0xef, 0x00, 0x28, +0x00, 0xd0, 0x01, 0x20, 0x08, 0xbd, 0x00, 0x00, 0x54, 0x78, 0x4d, 0x67, 0x6d, 0x74, 0x38, 0x30, +0x32, 0x31, 0x31, 0x4d, 0x73, 0x67, 0x51, 0x00, 0xc0, 0x76, 0x02, 0x00, 0x0a, 0x49, 0x04, 0x20, +0x0a, 0x4a, 0x08, 0x60, 0x0a, 0x21, 0x11, 0x60, 0x09, 0x49, 0x08, 0x60, 0x0a, 0x49, 0x09, 0x48, +0x08, 0x60, 0x0b, 0x49, 0x09, 0x48, 0x08, 0x60, 0x0b, 0x49, 0x0a, 0x48, 0x08, 0x60, 0x0c, 0x49, +0x0a, 0x48, 0x08, 0x60, 0x70, 0x47, 0x00, 0x00, 0xd4, 0xba, 0x02, 0x00, 0xdc, 0xba, 0x02, 0x00, +0xd8, 0xba, 0x02, 0x00, 0xa7, 0xd1, 0x00, 0x00, 0xe0, 0xba, 0x02, 0x00, 0x1f, 0x2d, 0x00, 0x00, +0xe4, 0xba, 0x02, 0x00, 0x09, 0x1f, 0x00, 0x00, 0xe8, 0xba, 0x02, 0x00, 0x4d, 0x17, 0x00, 0x00, +0xec, 0xba, 0x02, 0x00, 0x07, 0x49, 0x0e, 0x20, 0x08, 0x70, 0x08, 0x49, 0x06, 0x48, 0x08, 0x60, +0x08, 0x49, 0x07, 0x48, 0x08, 0x60, 0x09, 0x49, 0x07, 0x48, 0x08, 0x60, 0x09, 0x49, 0x08, 0x48, +0x08, 0x60, 0x70, 0x47, 0x00, 0xbb, 0x02, 0x00, 0x54, 0x54, 0x02, 0xc0, 0x04, 0xbb, 0x02, 0x00, +0x43, 0x1f, 0x00, 0x00, 0x08, 0xbb, 0x02, 0x00, 0xe5, 0x20, 0x00, 0x00, 0x0c, 0xbb, 0x02, 0x00, +0x2b, 0x21, 0x00, 0x00, 0x10, 0xbb, 0x02, 0x00, 0x07, 0x21, 0x08, 0x48, 0xc9, 0x01, 0x10, 0xb5, +0x02, 0xf0, 0xc6, 0xee, 0x05, 0x48, 0x06, 0x49, 0x20, 0x38, 0x08, 0x63, 0x04, 0x48, 0x0c, 0x22, +0x01, 0x21, 0x30, 0x30, 0x02, 0xf0, 0xf0, 0xee, 0x10, 0xbd, 0x00, 0x00, 0x98, 0x2f, 0x01, 0xc0, +0xd8, 0x32, 0x01, 0xc0, 0x70, 0xb5, 0x00, 0x24, 0x11, 0x4d, 0x12, 0x48, 0x14, 0x21, 0xac, 0x60, +0x02, 0xf0, 0xae, 0xee, 0x0f, 0x48, 0x14, 0x21, 0x3c, 0x38, 0x02, 0xf0, 0xaa, 0xee, 0x0d, 0x48, +0x14, 0x21, 0x28, 0x38, 0x02, 0xf0, 0xa4, 0xee, 0x0a, 0x48, 0x14, 0x21, 0x14, 0x38, 0x02, 0xf0, +0xa0, 0xee, 0x08, 0x48, 0x69, 0x68, 0x14, 0x30, 0x04, 0x61, 0x44, 0x61, 0x84, 0x61, 0xc4, 0x61, +0x81, 0x60, 0x05, 0x49, 0x01, 0x62, 0x05, 0x49, 0x41, 0x62, 0x02, 0xf0, 0xca, 0xee, 0x70, 0xbd, +0x50, 0xee, 0x00, 0xc0, 0xec, 0x3f, 0x00, 0x04, 0x87, 0x3a, 0x02, 0x00, 0x05, 0x41, 0x00, 0x00, +0x02, 0x49, 0x01, 0x20, 0x08, 0x60, 0x02, 0x49, 0x08, 0x60, 0x70, 0x47, 0x60, 0xbb, 0x02, 0x00, +0x5c, 0xbb, 0x02, 0x00, 0x03, 0x49, 0x64, 0x20, 0x08, 0x80, 0x03, 0x49, 0x07, 0x20, 0x08, 0x80, +0x70, 0x47, 0x00, 0x00, 0x74, 0xbb, 0x02, 0x00, 0x76, 0xbb, 0x02, 0x00, 0x05, 0x49, 0x04, 0x48, +0x08, 0x60, 0x06, 0x49, 0x04, 0x48, 0x08, 0x60, 0x06, 0x49, 0x05, 0x48, 0x08, 0x60, 0x70, 0x47, +0x53, 0x66, 0x00, 0x00, 0xe0, 0xbb, 0x02, 0x00, 0xcd, 0x65, 0x00, 0x00, 0xa0, 0xbb, 0x02, 0x00, +0x0d, 0x66, 0x00, 0x00, 0xe8, 0xbb, 0x02, 0x00, 0x0e, 0xb5, 0x02, 0xf0, 0x96, 0xee, 0x0f, 0x48, +0x00, 0x21, 0x02, 0xf0, 0x96, 0xee, 0x7d, 0x20, 0x00, 0x01, 0x00, 0x22, 0x00, 0x90, 0x0b, 0x48, +0x01, 0x92, 0x02, 0x92, 0x0a, 0x4a, 0x74, 0x30, 0x00, 0x23, 0x0a, 0xa1, 0x02, 0xf0, 0x8c, 0xee, +0x64, 0x20, 0x00, 0x22, 0x00, 0x90, 0x05, 0x48, 0x01, 0x92, 0x02, 0x92, 0x09, 0x4a, 0xe8, 0x30, +0x00, 0x23, 0x09, 0xa1, 0x02, 0xf0, 0x80, 0xee, 0x0e, 0xbd, 0x00, 0x00, 0x20, 0x42, 0x00, 0x04, +0x51, 0xac, 0x00, 0x00, 0x53, 0x6c, 0x65, 0x65, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, +0x54, 0x6d, 0x72, 0x00, 0x4b, 0xa9, 0x00, 0x00, 0x41, 0x50, 0x5f, 0x4e, 0x75, 0x6c, 0x6c, 0x50, +0x6b, 0x74, 0x44, 0x6f, 0x6e, 0x65, 0x54, 0x6d, 0x72, 0x00, 0x00, 0x00, 0x0e, 0xb5, 0x3c, 0x48, +0x00, 0xf0, 0x1d, 0xf8, 0x3a, 0x49, 0x3a, 0x48, 0x34, 0x31, 0x02, 0xf0, 0x62, 0xee, 0x39, 0x48, +0x00, 0x22, 0x00, 0x90, 0x36, 0x48, 0x01, 0x92, 0x02, 0x92, 0x37, 0x4a, 0xf8, 0x30, 0x00, 0x23, +0x36, 0xa1, 0x02, 0xf0, 0x52, 0xee, 0x00, 0x22, 0x64, 0x20, 0x01, 0x92, 0x02, 0x92, 0x00, 0x90, +0x36, 0x4a, 0x3b, 0x48, 0x00, 0x23, 0x36, 0xa1, 0x02, 0xf0, 0x46, 0xee, 0x0e, 0xbd, 0x70, 0xb5, +0x04, 0x00, 0x38, 0x4a, 0x00, 0x21, 0x00, 0x1d, 0x02, 0xf0, 0x46, 0xee, 0x20, 0x00, 0x36, 0x4a, +0x21, 0x1d, 0x34, 0x30, 0x02, 0xf0, 0x40, 0xee, 0x20, 0x00, 0x40, 0x30, 0x33, 0x4a, 0x21, 0x1d, +0x05, 0x00, 0x02, 0xf0, 0x3a, 0xee, 0x20, 0x00, 0x10, 0x30, 0x31, 0x4a, 0x21, 0x1d, 0x06, 0x00, +0x02, 0xf0, 0x32, 0xee, 0x20, 0x00, 0x2f, 0x4a, 0x31, 0x00, 0x1c, 0x30, 0x02, 0xf0, 0x2c, 0xee, +0x20, 0x00, 0x2d, 0x4a, 0x31, 0x00, 0x28, 0x30, 0x02, 0xf0, 0x26, 0xee, 0x20, 0x00, 0x2b, 0x4a, +0x29, 0x00, 0x4c, 0x30, 0x02, 0xf0, 0x20, 0xee, 0x20, 0x00, 0x29, 0x4a, 0x29, 0x00, 0x58, 0x30, +0x02, 0xf0, 0x1a, 0xee, 0x20, 0x00, 0x27, 0x4a, 0x29, 0x00, 0x64, 0x30, 0x02, 0xf0, 0x14, 0xee, +0x20, 0x00, 0x25, 0x4a, 0x31, 0x00, 0x94, 0x30, 0x02, 0xf0, 0x0e, 0xee, 0x20, 0x00, 0x23, 0x4a, +0x31, 0x00, 0xa0, 0x30, 0x02, 0xf0, 0x08, 0xee, 0x20, 0x00, 0x21, 0x4a, 0x29, 0x00, 0x70, 0x30, +0x02, 0xf0, 0x02, 0xee, 0x20, 0x00, 0x1f, 0x4a, 0x29, 0x00, 0x7c, 0x30, 0x02, 0xf0, 0xfc, 0xed, +0x20, 0x00, 0x1d, 0x4a, 0x29, 0x00, 0x88, 0x30, 0x02, 0xf0, 0xf6, 0xed, 0x70, 0xbd, 0x00, 0x00, +0x5e, 0x3a, 0x9d, 0xe5, 0x01, 0x00, 0x00, 0x00, 0xf8, 0x87, 0x02, 0xc0, 0x00, 0x04, 0x00, 0x00, +0x19, 0xeb, 0x7c, 0x08, 0x88, 0x43, 0x00, 0x04, 0xb8, 0x0b, 0x00, 0x00, 0x51, 0xac, 0x00, 0x00, +0x53, 0x6c, 0x65, 0x65, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x6d, 0x72, 0x00, +0x4b, 0xa9, 0x00, 0x00, 0x4e, 0x75, 0x6c, 0x6c, 0x50, 0x6b, 0x74, 0x44, 0x6f, 0x6e, 0x65, 0x54, +0x6d, 0x72, 0x00, 0x00, 0xac, 0x44, 0x00, 0x04, 0x03, 0x8a, 0x00, 0x00, 0xbb, 0x8e, 0x00, 0x00, +0x39, 0x90, 0x00, 0x00, 0xf9, 0x8a, 0x00, 0x00, 0x9b, 0x8c, 0x00, 0x00, 0x89, 0x8b, 0x00, 0x00, +0x23, 0x91, 0x00, 0x00, 0x3b, 0x92, 0x00, 0x00, 0x01, 0x96, 0x00, 0x00, 0xbf, 0x9e, 0x00, 0x00, +0x05, 0x9e, 0x00, 0x00, 0xc3, 0x9f, 0x00, 0x00, 0x19, 0xa2, 0x00, 0x00, 0xf5, 0xa4, 0x00, 0x00, +0x09, 0x49, 0x08, 0x48, 0x10, 0xb5, 0x88, 0x61, 0x07, 0x48, 0x0c, 0x22, 0x01, 0x21, 0x18, 0x30, +0x02, 0xf0, 0x9c, 0xed, 0xff, 0xf7, 0x44, 0xff, 0xff, 0xf7, 0x08, 0xff, 0x02, 0xf0, 0xb2, 0xed, +0x10, 0xbd, 0x00, 0x00, 0xe4, 0x35, 0x01, 0xc0, 0x10, 0xf0, 0x00, 0xc0, 0x3e, 0xb5, 0x00, 0xf0, +0xf3, 0xfb, 0x00, 0x28, 0x32, 0xd1, 0x2e, 0x4c, 0x2c, 0x48, 0x60, 0x62, 0x0c, 0x22, 0x20, 0x00, +0x00, 0x92, 0x04, 0x22, 0x24, 0x30, 0x06, 0x23, 0x2a, 0xa1, 0x02, 0xf0, 0x7c, 0xed, 0x27, 0x48, +0x0c, 0x22, 0x3c, 0x30, 0xa0, 0x62, 0x20, 0x00, 0x00, 0x92, 0x04, 0x22, 0x28, 0x30, 0x0a, 0x23, +0x28, 0xa1, 0x02, 0xf0, 0x70, 0xed, 0x2a, 0x4d, 0x2a, 0x48, 0xb1, 0x22, 0x29, 0x00, 0x02, 0xf0, +0x52, 0xed, 0x1e, 0x48, 0x28, 0x49, 0xc8, 0x38, 0x20, 0x62, 0x00, 0x22, 0x27, 0xa0, 0x6b, 0x46, +0x07, 0xc3, 0x20, 0x00, 0x23, 0x49, 0x2a, 0x00, 0x20, 0x30, 0x0c, 0x23, 0x02, 0xf0, 0x56, 0xed, +0x00, 0x28, 0x03, 0xd1, 0xff, 0xf7, 0xb4, 0xff, 0x00, 0x20, 0x3e, 0xbd, 0x01, 0x20, 0x3e, 0xbd, +0x10, 0xb5, 0x13, 0x4c, 0x20, 0x6a, 0x02, 0xf0, 0x46, 0xed, 0x10, 0x48, 0x0c, 0x22, 0x20, 0x38, +0xe0, 0x62, 0x20, 0x00, 0x01, 0x21, 0x2c, 0x30, 0x02, 0xf0, 0x48, 0xed, 0x10, 0xbd, 0x1a, 0x49, +0x18, 0x48, 0x08, 0x60, 0x1a, 0x49, 0x19, 0x48, 0x08, 0x60, 0x1b, 0x49, 0x19, 0x48, 0x08, 0x60, +0x1b, 0x49, 0x1a, 0x48, 0x08, 0x60, 0x1c, 0x49, 0x1a, 0x48, 0x08, 0x60, 0x1c, 0x49, 0x1b, 0x48, +0x08, 0x60, 0x1d, 0x49, 0x1b, 0x48, 0x08, 0x60, 0x70, 0x47, 0x00, 0x00, 0xe0, 0x36, 0x01, 0xc0, +0x54, 0xf0, 0x00, 0xc0, 0x43, 0x42, 0x50, 0x72, 0x6f, 0x63, 0x53, 0x4d, 0x45, 0x4d, 0x73, 0x67, +0x51, 0x00, 0x00, 0x00, 0x43, 0x42, 0x50, 0x72, 0x6f, 0x63, 0x4d, 0x73, 0x67, 0x51, 0x00, 0x00, +0xa4, 0x06, 0x00, 0x00, 0xac, 0x5f, 0x01, 0xc0, 0x65, 0x56, 0x00, 0xc0, 0x43, 0x42, 0x20, 0x50, +0x72, 0x6f, 0x63, 0x00, 0x23, 0xe9, 0x00, 0x00, 0x20, 0xbc, 0x02, 0x00, 0x59, 0xe9, 0x00, 0x00, +0x24, 0xbc, 0x02, 0x00, 0x51, 0xe9, 0x00, 0x00, 0x28, 0xbc, 0x02, 0x00, 0xcd, 0x54, 0x00, 0x00, +0x2c, 0xbc, 0x02, 0x00, 0xd9, 0x70, 0x00, 0xc0, 0x30, 0xbc, 0x02, 0x00, 0x61, 0x98, 0x01, 0x00, +0x38, 0xbc, 0x02, 0x00, 0xbf, 0x98, 0x01, 0x00, 0x3c, 0xbc, 0x02, 0x00, 0x4b, 0x48, 0x02, 0x21, +0x01, 0x73, 0x04, 0x21, 0x41, 0x73, 0x70, 0x47, 0x48, 0x48, 0xf8, 0xb5, 0x00, 0x24, 0x00, 0x1f, +0x04, 0x60, 0xff, 0xf7, 0x8d, 0xfb, 0x02, 0xf0, 0x0a, 0xed, 0x45, 0x49, 0x0d, 0x5c, 0x02, 0xf0, +0x0a, 0xed, 0x29, 0x00, 0x02, 0xf0, 0x0a, 0xed, 0x42, 0x4e, 0x23, 0x00, 0x32, 0x00, 0x02, 0xf0, +0x0a, 0xed, 0x40, 0x1c, 0x61, 0x41, 0x05, 0x04, 0x2d, 0x0c, 0x02, 0xf0, 0xf8, 0xec, 0x3e, 0x49, +0x40, 0x00, 0x0f, 0x5a, 0x02, 0xf0, 0x02, 0xed, 0x39, 0x00, 0x02, 0xf0, 0xf8, 0xec, 0x23, 0x00, +0x32, 0x00, 0x02, 0xf0, 0xf8, 0xec, 0x40, 0x1c, 0x61, 0x41, 0x00, 0x04, 0x00, 0x0c, 0x29, 0x00, +0xff, 0xf7, 0x7e, 0xfb, 0x02, 0xf0, 0xe2, 0xec, 0x34, 0x49, 0x0d, 0x5c, 0x02, 0xf0, 0xe2, 0xec, +0x29, 0x00, 0x02, 0xf0, 0xe4, 0xec, 0x23, 0x00, 0x32, 0x00, 0x02, 0xf0, 0xe4, 0xec, 0x40, 0x1c, +0x61, 0x41, 0x05, 0x04, 0x2d, 0x0c, 0x02, 0xf0, 0xd2, 0xec, 0x2d, 0x49, 0x0f, 0x5c, 0x02, 0xf0, +0xd2, 0xec, 0x39, 0x00, 0x02, 0xf0, 0xd2, 0xec, 0x23, 0x00, 0x32, 0x00, 0x02, 0xf0, 0xd2, 0xec, +0x40, 0x1c, 0x61, 0x41, 0x00, 0x04, 0x00, 0x0c, 0x29, 0x00, 0xff, 0xf7, 0x6f, 0xfb, 0x08, 0x20, +0xff, 0xf7, 0x5c, 0xfb, 0x02, 0xf0, 0xbe, 0xec, 0x31, 0x00, 0x02, 0xf0, 0xcc, 0xec, 0x40, 0x1c, +0x00, 0x04, 0x00, 0x0c, 0xff, 0xf7, 0x5a, 0xfb, 0x02, 0xf0, 0xb4, 0xec, 0x05, 0x21, 0x02, 0xf0, +0xb6, 0xec, 0x1c, 0x4a, 0x23, 0x00, 0x02, 0xf0, 0xb6, 0xec, 0x19, 0x22, 0x80, 0x18, 0x61, 0x41, +0x00, 0x06, 0x00, 0x0e, 0xff, 0xf7, 0x58, 0xfb, 0x60, 0x1e, 0x02, 0xf0, 0xb8, 0xec, 0x03, 0x20, +0x02, 0xf0, 0xb8, 0xec, 0x0c, 0x20, 0x02, 0xf0, 0xb6, 0xec, 0xff, 0xf7, 0x55, 0xfb, 0x02, 0xf0, +0xb6, 0xec, 0x02, 0xf0, 0xb8, 0xec, 0x04, 0x00, 0x02, 0xf0, 0xb8, 0xec, 0x21, 0x00, 0xff, 0xf7, +0x53, 0xfb, 0x30, 0x20, 0x02, 0xf0, 0xa6, 0xec, 0x03, 0x20, 0x00, 0x02, 0x02, 0xf0, 0xa2, 0xec, +0xff, 0xf7, 0x6c, 0xff, 0x02, 0xf0, 0xae, 0xec, 0xf8, 0xbd, 0x00, 0x00, 0xe0, 0xf0, 0x00, 0xc0, +0xe4, 0x74, 0x02, 0x00, 0x40, 0x42, 0x0f, 0x00, 0xce, 0x74, 0x02, 0x00, 0xfa, 0x74, 0x02, 0x00, +0xef, 0x74, 0x02, 0x00, 0xc0, 0xc6, 0x2d, 0x00, 0x01, 0x49, 0x01, 0x20, 0x08, 0x70, 0x70, 0x47, +0xa0, 0xb9, 0x02, 0x00, 0x01, 0x21, 0x09, 0x20, 0x00, 0x07, 0x01, 0x60, 0x00, 0x21, 0x41, 0x60, +0x70, 0x47, 0x45, 0x48, 0x01, 0x6b, 0x80, 0x22, 0x11, 0x43, 0x01, 0x63, 0x70, 0x47, 0x70, 0x47, +0x10, 0xb5, 0xff, 0xf7, 0xef, 0xff, 0xff, 0xf7, 0xf4, 0xff, 0x02, 0xf0, 0x88, 0xec, 0x10, 0xbd, +0x10, 0xb5, 0x02, 0xf0, 0x54, 0xec, 0x01, 0x24, 0x64, 0x02, 0x05, 0x28, 0x01, 0xd0, 0x02, 0xf0, +0x4e, 0xec, 0xc0, 0x20, 0x08, 0x21, 0x02, 0xf0, 0x7e, 0xec, 0x38, 0x48, 0x42, 0x68, 0x03, 0x21, +0xc9, 0x04, 0x8a, 0x43, 0x42, 0x60, 0x82, 0x68, 0x8a, 0x43, 0x82, 0x60, 0x34, 0x48, 0x01, 0x68, +0x40, 0x22, 0x11, 0x43, 0x01, 0x60, 0x01, 0x68, 0x21, 0x43, 0x01, 0x60, 0x01, 0x68, 0x05, 0x22, +0x11, 0x43, 0x01, 0x60, 0x2f, 0x49, 0x00, 0x20, 0x08, 0x60, 0x02, 0xf0, 0x68, 0xec, 0x10, 0xbd, +0x70, 0xb5, 0x2d, 0x4c, 0xa0, 0x68, 0x2d, 0x49, 0x00, 0x09, 0x00, 0x01, 0x08, 0x43, 0xa0, 0x60, +0xe0, 0x68, 0x07, 0x22, 0x00, 0x09, 0x00, 0x01, 0x10, 0x43, 0xe0, 0x60, 0x20, 0x69, 0x00, 0x09, +0x00, 0x01, 0x08, 0x43, 0x20, 0x61, 0xa0, 0x69, 0xc9, 0x1f, 0x08, 0x43, 0xa0, 0x61, 0x09, 0x20, +0x02, 0xf0, 0x50, 0xec, 0x20, 0x68, 0x22, 0x49, 0x08, 0x40, 0x20, 0x60, 0x20, 0x68, 0x25, 0x05, +0xa8, 0x43, 0x20, 0x60, 0x20, 0x68, 0x03, 0x21, 0x49, 0x06, 0x08, 0x43, 0x20, 0x60, 0x20, 0x68, +0x1c, 0x49, 0x08, 0x40, 0x20, 0x60, 0x60, 0x68, 0x80, 0x09, 0x80, 0x01, 0x60, 0x60, 0x02, 0xf0, +0x09, 0xf1, 0xd1, 0xc6, 0x01, 0x00, 0x00, 0x00, 0xf4, 0x8b, 0x02, 0xc0, 0x00, 0x04, 0x00, 0x00, +0xed, 0x84, 0x09, 0xbc, 0x36, 0xec, 0xc1, 0x06, 0x03, 0xd5, 0x20, 0x68, 0x61, 0x05, 0x08, 0x43, +0x0b, 0xe0, 0x41, 0x06, 0x05, 0xd5, 0x60, 0x68, 0x01, 0x21, 0x49, 0x04, 0x08, 0x43, 0x60, 0x60, +0x04, 0xe0, 0xc0, 0x07, 0x02, 0xd0, 0x20, 0x68, 0x28, 0x43, 0x20, 0x60, 0xb0, 0x20, 0x02, 0xf0, +0x28, 0xec, 0x70, 0xbd, 0x70, 0x47, 0x70, 0x47, 0x10, 0xb5, 0x00, 0xf0, 0x3d, 0xf9, 0x0b, 0x49, +0xc8, 0x60, 0x10, 0xbd, 0x0b, 0x49, 0x0a, 0x48, 0x08, 0x60, 0x70, 0x47, 0x40, 0x0c, 0x00, 0x90, +0x00, 0x29, 0x00, 0x80, 0x00, 0x23, 0x00, 0x80, 0x00, 0x24, 0x00, 0x80, 0x00, 0x21, 0x00, 0x80, +0x07, 0x80, 0x00, 0x00, 0xff, 0xf7, 0xdf, 0x57, 0xff, 0xdf, 0xbf, 0xff, 0x4c, 0xf1, 0x00, 0xc0, +0x05, 0xf3, 0x00, 0x00, 0x18, 0xba, 0x02, 0x00, 0x70, 0x47, 0x70, 0xb5, 0x02, 0xf0, 0x04, 0xec, +0x05, 0x20, 0x02, 0xf0, 0x06, 0xec, 0x40, 0x06, 0x03, 0xd4, 0x02, 0xf0, 0x06, 0xec, 0x00, 0x20, +0x70, 0xbd, 0x08, 0x21, 0x1d, 0x20, 0x02, 0xf0, 0x04, 0xec, 0x0a, 0x20, 0x02, 0xf0, 0x04, 0xec, +0x0b, 0x20, 0x02, 0xf0, 0xf6, 0xeb, 0x00, 0x07, 0xf7, 0xd5, 0x0c, 0x20, 0x02, 0xf0, 0xf0, 0xeb, +0x05, 0x00, 0x0b, 0x20, 0x02, 0xf0, 0xec, 0xeb, 0x40, 0x07, 0x44, 0x0d, 0x2c, 0x43, 0xe1, 0x08, +0x1c, 0x20, 0x02, 0xf0, 0xf6, 0xeb, 0x1d, 0x20, 0x02, 0xf0, 0xe2, 0xeb, 0x61, 0x07, 0xc0, 0x06, +0x09, 0x0e, 0xc0, 0x0e, 0x01, 0x43, 0x1d, 0x20, 0x02, 0xf0, 0xea, 0xeb, 0x08, 0x21, 0x1d, 0x20, +0x02, 0xf0, 0xea, 0xeb, 0x02, 0xf0, 0xd8, 0xeb, 0x01, 0x20, 0x70, 0xbd, 0x10, 0xb5, 0x01, 0xf0, +0xdc, 0xfb, 0x02, 0xf0, 0xca, 0xeb, 0x31, 0x21, 0x33, 0x20, 0x02, 0xf0, 0xda, 0xeb, 0x14, 0x21, +0x24, 0x20, 0x02, 0xf0, 0xd6, 0xeb, 0x66, 0x21, 0x41, 0x20, 0x02, 0xf0, 0xd2, 0xeb, 0x02, 0xf0, +0xc4, 0xeb, 0x02, 0xf0, 0xd6, 0xeb, 0x64, 0x20, 0x02, 0xf0, 0xc6, 0xeb, 0x02, 0xf0, 0xd4, 0xeb, +0x02, 0xf0, 0xd6, 0xeb, 0x88, 0x21, 0x05, 0x20, 0x02, 0xf0, 0xc2, 0xeb, 0x01, 0x21, 0x08, 0x20, +0x02, 0xf0, 0xbe, 0xeb, 0x58, 0x21, 0x0a, 0x20, 0x02, 0xf0, 0xba, 0xeb, 0x42, 0x21, 0x09, 0x20, +0x02, 0xf0, 0xb6, 0xeb, 0x02, 0xf0, 0xc8, 0xeb, 0x10, 0xbd, 0x00, 0x00, 0xf8, 0xb5, 0x00, 0x20, +0xc0, 0x43, 0x64, 0x4d, 0x28, 0x60, 0x68, 0x60, 0x64, 0x49, 0x63, 0x48, 0x48, 0x60, 0x64, 0x4a, +0x88, 0x05, 0xc9, 0x0b, 0x03, 0x68, 0x40, 0x18, 0x90, 0x42, 0xfb, 0xd3, 0x00, 0x20, 0x0b, 0x22, +0x92, 0x03, 0x03, 0x68, 0x40, 0x18, 0x90, 0x42, 0xfb, 0xd3, 0x01, 0x20, 0x80, 0x06, 0x00, 0x68, +0x02, 0xf0, 0xae, 0xeb, 0x00, 0x20, 0x02, 0xf0, 0xb0, 0xeb, 0xc7, 0x20, 0x02, 0xf0, 0x80, 0xeb, +0x01, 0x26, 0x30, 0x43, 0x01, 0x00, 0xc7, 0x20, 0x02, 0xf0, 0xaa, 0xeb, 0xc7, 0x20, 0x02, 0xf0, +0x78, 0xeb, 0x40, 0x27, 0x38, 0x43, 0x04, 0x00, 0x01, 0x00, 0xc7, 0x20, 0x02, 0xf0, 0xa0, 0xeb, +0x20, 0x00, 0x02, 0x24, 0x20, 0x43, 0x01, 0x00, 0xc7, 0x20, 0x02, 0xf0, 0x9a, 0xeb, 0xc8, 0x20, +0x02, 0xf0, 0x66, 0xeb, 0xc0, 0x07, 0xfa, 0xd0, 0xc7, 0x20, 0x02, 0xf0, 0x62, 0xeb, 0xa0, 0x43, +0x04, 0x00, 0x01, 0x00, 0xc7, 0x20, 0x02, 0xf0, 0x8c, 0xeb, 0x20, 0x00, 0xb8, 0x43, 0x04, 0x00, +0x01, 0x00, 0xc7, 0x20, 0x02, 0xf0, 0x84, 0xeb, 0x20, 0x00, 0x20, 0x27, 0x38, 0x43, 0x01, 0x00, +0xc7, 0x20, 0x02, 0xf0, 0x7e, 0xeb, 0xc7, 0x20, 0x02, 0xf0, 0x4a, 0xeb, 0x04, 0x24, 0x20, 0x43, +0x01, 0x00, 0xc7, 0x20, 0x02, 0xf0, 0x74, 0xeb, 0xc8, 0x20, 0x02, 0xf0, 0x42, 0xeb, 0x80, 0x07, +0xfa, 0xd5, 0xc7, 0x20, 0x02, 0xf0, 0x3c, 0xeb, 0xa0, 0x43, 0xb8, 0x43, 0x04, 0x00, 0x01, 0x00, +0xc7, 0x20, 0x02, 0xf0, 0x66, 0xeb, 0x61, 0x08, 0x49, 0x00, 0xc7, 0x20, 0x02, 0xf0, 0x60, 0xeb, +0x00, 0x20, 0x02, 0xf0, 0x5a, 0xeb, 0x12, 0x20, 0x02, 0xf0, 0x2a, 0xeb, 0x80, 0x24, 0x20, 0x43, +0x01, 0x06, 0x09, 0x0e, 0x12, 0x20, 0x02, 0xf0, 0x34, 0xeb, 0x12, 0x20, 0x02, 0xf0, 0x20, 0xeb, +0x00, 0x20, 0x02, 0xf0, 0x4a, 0xeb, 0x12, 0x20, 0x02, 0xf0, 0x1a, 0xeb, 0xa0, 0x43, 0x01, 0x06, +0x09, 0x0e, 0x12, 0x20, 0x02, 0xf0, 0x24, 0xeb, 0x12, 0x20, 0x02, 0xf0, 0x12, 0xeb, 0x02, 0xf0, +0x44, 0xeb, 0x20, 0x49, 0x08, 0x68, 0x30, 0x43, 0x08, 0x60, 0x1f, 0x48, 0x00, 0x78, 0x1f, 0x48, +0x00, 0x7a, 0x1f, 0x49, 0x08, 0x7d, 0x1e, 0x4a, 0x20, 0x43, 0x20, 0x3a, 0x50, 0x63, 0x08, 0x7d, +0x40, 0x06, 0xfc, 0xd5, 0x08, 0x7d, 0xa0, 0x43, 0x50, 0x63, 0xa8, 0x69, 0x01, 0x21, 0x09, 0x03, +0x08, 0x43, 0xa8, 0x61, 0x02, 0xf0, 0xe4, 0xea, 0x40, 0x06, 0x03, 0xd5, 0x15, 0x49, 0x1b, 0x20, +0x40, 0x01, 0x48, 0x60, 0x00, 0x20, 0xf8, 0xbd, 0x10, 0xb5, 0xff, 0xf7, 0xde, 0xfe, 0x09, 0x48, +0xc1, 0x69, 0x11, 0x4a, 0x09, 0x0e, 0x09, 0x06, 0x89, 0x18, 0xc1, 0x61, 0xc1, 0x69, 0x01, 0x22, +0x52, 0x06, 0x11, 0x43, 0xc1, 0x61, 0x00, 0x20, 0x02, 0xf0, 0x12, 0xeb, 0x01, 0x20, 0xc0, 0x03, +0x10, 0xbd, 0x00, 0x00, 0x00, 0x21, 0x00, 0x80, 0x02, 0x00, 0x03, 0x00, 0x00, 0x23, 0x00, 0x80, +0x00, 0x20, 0x02, 0xc0, 0x00, 0x2d, 0x00, 0x80, 0x00, 0x20, 0x00, 0x90, 0xe0, 0x2a, 0x00, 0x90, +0x20, 0x24, 0x00, 0x90, 0x80, 0x2f, 0x00, 0x80, 0x9a, 0x99, 0x19, 0x00, 0x34, 0x21, 0x10, 0xb5, +0x02, 0xf0, 0xfa, 0xea, 0x10, 0xbd, 0x10, 0xb5, 0x02, 0xf0, 0xfa, 0xea, 0x10, 0xbd, 0x00, 0x00, +0x16, 0x49, 0x15, 0x48, 0x08, 0x60, 0x17, 0x49, 0x15, 0x48, 0x08, 0x60, 0x16, 0x49, 0x1e, 0x20, +0x08, 0x60, 0x16, 0x49, 0x00, 0x20, 0xc0, 0x43, 0x08, 0x60, 0x16, 0x49, 0x14, 0x48, 0x08, 0x60, +0x16, 0x49, 0x15, 0x48, 0x08, 0x60, 0x70, 0x47, 0x70, 0xb5, 0x20, 0x21, 0x0c, 0x48, 0x02, 0xf0, +0x04, 0xea, 0x2d, 0x21, 0x08, 0x48, 0x09, 0x01, 0x02, 0xf0, 0xfe, 0xe9, 0x08, 0x4a, 0x06, 0x4c, +0x00, 0x20, 0x18, 0x21, 0x41, 0x43, 0x95, 0x68, 0x09, 0x19, 0x40, 0x1c, 0x4d, 0x61, 0x1e, 0x28, +0x91, 0x60, 0xf6, 0xd3, 0x70, 0xbd, 0x00, 0x00, 0x48, 0x7f, 0x02, 0x00, 0x3c, 0xba, 0x02, 0x00, +0x18, 0x82, 0x02, 0x00, 0x28, 0xba, 0x02, 0x00, 0x40, 0xba, 0x02, 0x00, 0x2c, 0xba, 0x02, 0x00, +0x10, 0x27, 0x00, 0x00, 0x30, 0xba, 0x02, 0x00, 0x49, 0xff, 0x00, 0x00, 0x34, 0xba, 0x02, 0x00, +0x2a, 0x4a, 0x70, 0xb5, 0x14, 0x00, 0x50, 0x34, 0x00, 0x23, 0x10, 0x00, 0x94, 0x60, 0x10, 0x30, +0x53, 0x60, 0xd0, 0x60, 0x01, 0x20, 0x01, 0x01, 0x89, 0x18, 0x0d, 0x00, 0x10, 0x3d, 0x8d, 0x60, +0x48, 0x60, 0x20, 0x35, 0x40, 0x1c, 0x04, 0x28, 0xcd, 0x60, 0xf4, 0xd3, 0x04, 0x20, 0x50, 0x64, +0x1e, 0x48, 0x30, 0x30, 0x90, 0x64, 0x30, 0x30, 0xd0, 0x64, 0xa3, 0x60, 0xe2, 0x60, 0x01, 0x00, +0x20, 0x39, 0xc3, 0x60, 0x81, 0x60, 0x1a, 0x49, 0x10, 0x30, 0x08, 0x60, 0x18, 0x48, 0x0c, 0x22, +0x01, 0x21, 0x02, 0xf0, 0xe6, 0xe9, 0x00, 0x20, 0x70, 0xbd, 0xf8, 0xb5, 0x0f, 0x00, 0x14, 0x4d, +0xbe, 0x60, 0x01, 0x1f, 0x01, 0x00, 0x00, 0x00, 0xf0, 0x8f, 0x02, 0xc0, 0x00, 0x04, 0x00, 0x00, +0xbe, 0x5e, 0xda, 0xd0, 0x06, 0x00, 0x00, 0x21, 0x28, 0x68, 0xc9, 0x43, 0x02, 0xf0, 0x86, 0xea, +0x0f, 0x49, 0x50, 0x31, 0xcc, 0x68, 0x08, 0x00, 0x10, 0x30, 0x84, 0x42, 0x0f, 0xd0, 0xe0, 0x68, +0xc8, 0x60, 0x81, 0x60, 0x00, 0x20, 0xa0, 0x60, 0xe0, 0x60, 0x28, 0x68, 0x02, 0xf0, 0x7a, 0xea, +0x60, 0x68, 0x3a, 0x00, 0x31, 0x00, 0x02, 0xf0, 0x7a, 0xea, 0x20, 0x00, 0xf8, 0xbd, 0x28, 0x68, +0x02, 0xf0, 0x70, 0xea, 0x00, 0x20, 0xf8, 0xbd, 0x10, 0xb5, 0x02, 0xf0, 0x74, 0xea, 0x10, 0xbd, +0x60, 0x3b, 0x01, 0xc0, 0xbc, 0xf1, 0x00, 0xc0, 0x07, 0x49, 0x06, 0x48, 0x08, 0x60, 0x08, 0x49, +0x06, 0x48, 0x08, 0x60, 0x08, 0x49, 0x07, 0x48, 0x08, 0x60, 0x08, 0x49, 0x80, 0x20, 0x08, 0x60, +0x70, 0x47, 0x00, 0x00, 0x61, 0xff, 0x00, 0x00, 0x5c, 0xba, 0x02, 0x00, 0x73, 0xff, 0x00, 0x00, +0x60, 0xba, 0x02, 0x00, 0xfc, 0x00, 0x00, 0x04, 0x54, 0xba, 0x02, 0x00, 0x58, 0xba, 0x02, 0x00, +0x70, 0xb5, 0x19, 0x48, 0x02, 0xf0, 0x52, 0xea, 0x17, 0x48, 0x0c, 0x30, 0x02, 0xf0, 0x4e, 0xea, +0x16, 0x4e, 0x00, 0x24, 0x25, 0x00, 0x5c, 0x20, 0x60, 0x43, 0x81, 0x19, 0x4d, 0x60, 0x35, 0x50, +0x11, 0x48, 0x02, 0xf0, 0x48, 0xea, 0x64, 0x1c, 0x18, 0x2c, 0xf4, 0xdb, 0x00, 0x20, 0x70, 0xbd, +0x10, 0x49, 0x0f, 0x48, 0x10, 0xb5, 0x08, 0x60, 0x10, 0x49, 0x0f, 0x48, 0x08, 0x60, 0x11, 0x49, +0x0f, 0x48, 0x08, 0x60, 0x11, 0x49, 0x10, 0x48, 0x08, 0x60, 0x12, 0x49, 0x10, 0x48, 0x08, 0x60, +0x12, 0x49, 0x11, 0x48, 0x08, 0x60, 0x13, 0x49, 0x11, 0x48, 0x08, 0x60, 0x13, 0x49, 0x12, 0x48, +0x08, 0x60, 0x01, 0xf0, 0xd9, 0xfe, 0x10, 0xbd, 0xec, 0x8f, 0x02, 0x00, 0x4c, 0x87, 0x02, 0x00, +0xf1, 0xff, 0x00, 0x00, 0x68, 0xba, 0x02, 0x00, 0xf3, 0xff, 0x00, 0x00, 0x80, 0xba, 0x02, 0x00, +0xf5, 0xff, 0x00, 0x00, 0x70, 0xba, 0x02, 0x00, 0x03, 0x00, 0x01, 0x00, 0x6c, 0xba, 0x02, 0x00, +0x19, 0x00, 0x01, 0x00, 0x74, 0xba, 0x02, 0x00, 0x2f, 0x00, 0x01, 0x00, 0x78, 0xba, 0x02, 0x00, +0x43, 0x00, 0x01, 0x00, 0x7c, 0xba, 0x02, 0x00, 0x57, 0x00, 0x01, 0x00, 0x84, 0xba, 0x02, 0x00, +0x10, 0xb5, 0xff, 0xf7, 0x7f, 0xf9, 0x10, 0xbd, 0x3e, 0xb5, 0x14, 0x4c, 0x12, 0x48, 0xe0, 0x60, +0x20, 0x00, 0x0c, 0x30, 0xff, 0xf7, 0xf2, 0xf8, 0x4b, 0x25, 0x2d, 0x01, 0x10, 0x48, 0xd1, 0x22, +0x29, 0x00, 0x02, 0xf0, 0x14, 0xe9, 0x0c, 0x48, 0x0e, 0x49, 0xa8, 0x38, 0xa0, 0x60, 0x00, 0x22, +0x0d, 0xa0, 0x6b, 0x46, 0x07, 0xc3, 0x20, 0x00, 0x09, 0x49, 0x2a, 0x00, 0x08, 0x30, 0x0b, 0x23, +0x02, 0xf0, 0x18, 0xe9, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x20, 0x3e, 0xbd, 0x03, 0x48, 0x10, 0xb5, +0x80, 0x68, 0x02, 0xf0, 0x0c, 0xe9, 0x10, 0xbd, 0xe0, 0x82, 0x02, 0x00, 0x00, 0x77, 0x02, 0x00, +0x5c, 0x98, 0x02, 0x00, 0xe9, 0x63, 0x02, 0x00, 0x4d, 0x41, 0x43, 0x20, 0x54, 0x78, 0x20, 0x4e, +0x6f, 0x74, 0x69, 0x66, 0x79, 0x00, 0x00, 0x00, 0x3e, 0xb5, 0x0c, 0x22, 0x19, 0x48, 0x18, 0x49, +0x81, 0x60, 0x20, 0x31, 0xc1, 0x60, 0x20, 0x31, 0x01, 0x61, 0x01, 0x21, 0x08, 0x30, 0x02, 0xf0, +0xfa, 0xe8, 0x14, 0x48, 0x0c, 0x22, 0x00, 0x21, 0x0c, 0x30, 0x02, 0xf0, 0xf4, 0xe8, 0x11, 0x48, +0x0c, 0x22, 0x00, 0x21, 0x10, 0x30, 0x02, 0xf0, 0xee, 0xe8, 0x0d, 0x48, 0xff, 0x21, 0x21, 0x31, +0x60, 0x30, 0x02, 0xf0, 0xb4, 0xe8, 0x0a, 0x48, 0x00, 0x21, 0x18, 0x38, 0x02, 0x22, 0x01, 0x60, +0x42, 0x60, 0x01, 0x22, 0x81, 0x60, 0xc2, 0x60, 0x01, 0x82, 0x24, 0x21, 0x41, 0x82, 0x06, 0x49, +0x6c, 0x46, 0x2c, 0xc9, 0x2c, 0xc4, 0x00, 0x99, 0x41, 0x61, 0x02, 0xf0, 0x98, 0xe9, 0x3e, 0xbd, +0x8c, 0x3c, 0x01, 0xc0, 0xcc, 0xf1, 0x00, 0xc0, 0x54, 0x75, 0x02, 0x00, 0x01, 0x49, 0x01, 0x20, +0x08, 0x60, 0x70, 0x47, 0x14, 0xbb, 0x02, 0x00, 0x08, 0x49, 0x07, 0x48, 0x08, 0x60, 0x08, 0x49, +0x12, 0x20, 0x08, 0x60, 0x07, 0x49, 0x20, 0x20, 0x08, 0x60, 0x08, 0x49, 0x06, 0x48, 0x08, 0x60, +0x08, 0x49, 0x07, 0x48, 0x08, 0x60, 0x70, 0x47, 0x8c, 0x08, 0x02, 0xc0, 0x34, 0xbb, 0x02, 0x00, +0x38, 0xbb, 0x02, 0x00, 0x3c, 0xbb, 0x02, 0x00, 0xc9, 0x32, 0x01, 0x00, 0x40, 0xbb, 0x02, 0x00, +0xed, 0x32, 0x01, 0x00, 0x44, 0xbb, 0x02, 0x00, 0x04, 0x49, 0x03, 0x48, 0x08, 0x60, 0x05, 0x49, +0x03, 0x48, 0x08, 0x60, 0x70, 0x47, 0x00, 0x00, 0x55, 0x34, 0x01, 0x00, 0x18, 0xbb, 0x02, 0x00, +0xe3, 0x3d, 0x01, 0x00, 0x1c, 0xbb, 0x02, 0x00, 0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0x16, 0x00, +0x02, 0xf0, 0x58, 0xe9, 0xa8, 0x43, 0x30, 0x43, 0x01, 0x00, 0x20, 0x00, 0x02, 0xf0, 0x56, 0xe9, +0x70, 0xbd, 0x08, 0x21, 0x08, 0x00, 0x10, 0xb5, 0x02, 0xf0, 0x50, 0xe9, 0x81, 0x20, 0x80, 0x21, +0x80, 0x00, 0x02, 0xf0, 0x50, 0xe9, 0x02, 0x21, 0xdd, 0x20, 0x02, 0xf0, 0x4c, 0xe9, 0x02, 0x21, +0xdd, 0x20, 0x02, 0xf0, 0x4c, 0xe9, 0x80, 0x21, 0x5a, 0x20, 0x02, 0xf0, 0x48, 0xe9, 0xff, 0x21, +0x7f, 0x20, 0x02, 0xf0, 0x3c, 0xe9, 0xff, 0x48, 0x00, 0x21, 0x02, 0xf0, 0x38, 0xe9, 0xf3, 0x20, +0x00, 0x21, 0x80, 0x00, 0x02, 0xf0, 0x32, 0xe9, 0x04, 0x21, 0x2e, 0x20, 0x02, 0xf0, 0x32, 0xe9, +0x02, 0x20, 0x02, 0xf0, 0xd4, 0xe8, 0x04, 0x21, 0x2e, 0x20, 0x02, 0xf0, 0x30, 0xe9, 0x40, 0x21, +0x2d, 0x20, 0x02, 0xf0, 0x24, 0xe9, 0x10, 0x21, 0x2e, 0x20, 0x02, 0xf0, 0x20, 0xe9, 0x10, 0xbd, +0xf3, 0xb5, 0x93, 0xb0, 0x00, 0x25, 0x2e, 0x00, 0x13, 0x98, 0x0d, 0x95, 0x04, 0x02, 0x20, 0x00, +0xff, 0x30, 0x56, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x07, 0x95, 0x06, 0x95, 0x12, 0x90, 0x02, 0xf0, +0x1a, 0xe9, 0x05, 0x90, 0x20, 0x00, 0xff, 0x30, 0x57, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x11, 0x90, +0x02, 0xf0, 0x10, 0xe9, 0x04, 0x90, 0x20, 0x00, 0xff, 0x30, 0x59, 0x30, 0x00, 0x04, 0x00, 0x0c, +0x10, 0x90, 0x02, 0xf0, 0x08, 0xe9, 0x03, 0x90, 0x20, 0x00, 0xff, 0x30, 0xb2, 0x30, 0x00, 0x04, +0x00, 0x0c, 0x0f, 0x90, 0x02, 0xf0, 0xfe, 0xe8, 0xff, 0x34, 0xd5, 0x34, 0x02, 0x90, 0x20, 0x04, +0x00, 0x0c, 0x0e, 0x90, 0x02, 0xf0, 0xf6, 0xe8, 0x01, 0x90, 0x93, 0x20, 0x20, 0x21, 0xc0, 0x00, +0x02, 0xf0, 0xe4, 0xe8, 0xd3, 0x48, 0x64, 0x21, 0x16, 0x30, 0x02, 0xf0, 0xe0, 0xe8, 0xa1, 0x21, +0x4f, 0x20, 0x02, 0xf0, 0xdc, 0xe8, 0x12, 0x98, 0xff, 0x21, 0x02, 0xf0, 0xe8, 0xe8, 0x11, 0x98, +0x38, 0x21, 0x02, 0xf0, 0xe4, 0xe8, 0x10, 0x98, 0x08, 0x21, 0x02, 0xf0, 0xe0, 0xe8, 0x0f, 0x98, +0x01, 0x21, 0x02, 0xf0, 0xdc, 0xe8, 0x0e, 0x98, 0x01, 0x21, 0x02, 0xf0, 0xdc, 0xe8, 0x0e, 0x98, +0x04, 0x21, 0x02, 0xf0, 0xdc, 0xe8, 0xff, 0x20, 0x00, 0x21, 0x7c, 0x30, 0x02, 0xf0, 0xbe, 0xe8, +0xff, 0x20, 0xe0, 0x21, 0x7a, 0x30, 0x02, 0xf0, 0xba, 0xe8, 0xbe, 0x4f, 0x04, 0x21, 0x3f, 0x1d, +0x38, 0x00, 0x02, 0xf0, 0xb8, 0xe8, 0x0a, 0x20, 0x02, 0xf0, 0x58, 0xe8, 0x00, 0x24, 0x7f, 0x20, +0x1d, 0x4f, 0x45, 0x1e, 0x01, 0x00, 0x00, 0x00, 0xec, 0x93, 0x02, 0xc0, 0x00, 0x04, 0x00, 0x00, +0x01, 0x9b, 0xff, 0x63, 0x00, 0x2c, 0x09, 0x90, 0x02, 0xd1, 0x7f, 0x22, 0x4a, 0x21, 0x01, 0xe0, +0x7f, 0x22, 0xa2, 0x21, 0x13, 0x98, 0x02, 0xf0, 0xc0, 0xe8, 0xb3, 0x48, 0x00, 0x21, 0x02, 0xf0, +0xa0, 0xe8, 0xb1, 0x48, 0x1a, 0x21, 0x40, 0x1c, 0x02, 0xf0, 0x9a, 0xe8, 0x77, 0x27, 0xff, 0x00, +0x18, 0x21, 0x38, 0x00, 0x02, 0xf0, 0x94, 0xe8, 0x02, 0x20, 0x02, 0xf0, 0x3a, 0xe8, 0xff, 0x20, +0x80, 0x21, 0x0c, 0x30, 0x02, 0xf0, 0x94, 0xe8, 0x01, 0x2c, 0x03, 0xdb, 0x04, 0x21, 0x78, 0x1c, +0x02, 0xf0, 0x8e, 0xe8, 0xa1, 0x21, 0x4f, 0x20, 0x02, 0xf0, 0x82, 0xe8, 0x12, 0x98, 0xff, 0x21, +0x02, 0xf0, 0x8e, 0xe8, 0x11, 0x98, 0x30, 0x21, 0x02, 0xf0, 0x8a, 0xe8, 0x10, 0x98, 0x00, 0x21, +0x02, 0xf0, 0x86, 0xe8, 0x0f, 0x98, 0x01, 0x21, 0x02, 0xf0, 0x82, 0xe8, 0xff, 0x20, 0x80, 0x21, +0x0c, 0x30, 0x02, 0xf0, 0x76, 0xe8, 0x98, 0x48, 0x1a, 0x21, 0x40, 0x1c, 0x02, 0xf0, 0x68, 0xe8, +0x95, 0x48, 0x04, 0x21, 0x18, 0x30, 0x02, 0xf0, 0x64, 0xe8, 0x77, 0x20, 0x38, 0x21, 0xc0, 0x00, +0x02, 0xf0, 0x5e, 0xe8, 0x00, 0x2c, 0x05, 0xd1, 0x8f, 0x48, 0x04, 0x21, 0x00, 0x1d, 0x02, 0xf0, +0x5c, 0xe8, 0x04, 0xe0, 0x8c, 0x48, 0x04, 0x21, 0x00, 0x1d, 0x02, 0xf0, 0x5a, 0xe8, 0x8a, 0x4f, +0x40, 0x21, 0x3f, 0x1d, 0x38, 0x00, 0x02, 0xf0, 0x50, 0xe8, 0x80, 0x21, 0x38, 0x00, 0x02, 0xf0, +0x50, 0xe8, 0x28, 0x20, 0x01, 0xf0, 0xec, 0xef, 0x80, 0x21, 0xb8, 0x1e, 0x02, 0xf0, 0x40, 0xe8, +0x02, 0x20, 0x01, 0xf0, 0xe6, 0xef, 0x7f, 0x1e, 0x02, 0xe0, 0x0a, 0x20, 0x01, 0xf0, 0xe0, 0xef, +0x38, 0x00, 0x02, 0xf0, 0x32, 0xe8, 0x00, 0x06, 0xf7, 0xd5, 0x13, 0x98, 0x00, 0x28, 0x0e, 0xd1, +0x79, 0x20, 0xc0, 0x00, 0x02, 0xf0, 0x28, 0xe8, 0x05, 0x00, 0x77, 0x48, 0x14, 0x30, 0x02, 0xf0, +0x24, 0xe8, 0x06, 0x00, 0x74, 0x48, 0x15, 0x30, 0x02, 0xf0, 0x1e, 0xe8, 0x0d, 0x90, 0x0d, 0x98, +0x36, 0x07, 0x00, 0x06, 0x00, 0x0e, 0x0d, 0x90, 0x0d, 0x99, 0x36, 0x0f, 0x30, 0x02, 0x40, 0x18, +0x0b, 0x90, 0x6d, 0x48, 0xad, 0x06, 0xad, 0x0e, 0x00, 0x21, 0x80, 0x1c, 0x0c, 0x95, 0x02, 0xf0, +0x10, 0xe8, 0x69, 0x48, 0x80, 0x21, 0x00, 0x1d, 0x02, 0xf0, 0x0e, 0xe8, 0xff, 0x20, 0x80, 0x21, +0x0c, 0x30, 0x02, 0xf0, 0x0a, 0xe8, 0x64, 0x48, 0x80, 0x21, 0x80, 0x1c, 0x02, 0xf0, 0x00, 0xe8, +0x0a, 0x20, 0x01, 0xf0, 0xa6, 0xef, 0x62, 0xe0, 0x0a, 0x20, 0x01, 0xf0, 0xa2, 0xef, 0x38, 0x00, +0x01, 0xf0, 0xf2, 0xef, 0x00, 0x06, 0x05, 0xd4, 0x5b, 0x48, 0x00, 0x1d, 0x01, 0xf0, 0xec, 0xef, +0xc0, 0x06, 0xf1, 0xd5, 0x58, 0x48, 0xe2, 0x30, 0x01, 0xf0, 0xe6, 0xef, 0x08, 0x90, 0x13, 0x98, +0x00, 0x28, 0x0e, 0xd1, 0x79, 0x20, 0xc0, 0x00, 0x01, 0xf0, 0xde, 0xef, 0x05, 0x00, 0x52, 0x48, +0x14, 0x30, 0x01, 0xf0, 0xda, 0xef, 0x06, 0x00, 0x4f, 0x48, 0x15, 0x30, 0x01, 0xf0, 0xd4, 0xef, +0x0d, 0x90, 0x0d, 0x98, 0x36, 0x07, 0x00, 0x06, 0x00, 0x0e, 0x0d, 0x90, 0x0d, 0x99, 0x36, 0x0f, +0x30, 0x02, 0x40, 0x18, 0x0c, 0x99, 0xad, 0x06, 0xad, 0x0e, 0x69, 0x1a, 0x88, 0x40, 0x0b, 0x99, +0x40, 0x1a, 0x0a, 0x90, 0x09, 0x98, 0x7f, 0x28, 0x03, 0xd1, 0x0a, 0x98, 0x06, 0x90, 0x09, 0x98, +0x07, 0x90, 0x0a, 0x98, 0x01, 0xf0, 0xd1, 0xfa, 0x07, 0x00, 0x06, 0x98, 0x01, 0xf0, 0xcd, 0xfa, +0x87, 0x42, 0x03, 0xd8, 0x0a, 0x98, 0x06, 0x90, 0x09, 0x98, 0x07, 0x90, 0x08, 0x98, 0x09, 0x90, +0x08, 0x98, 0x00, 0x2c, 0x03, 0xd1, 0x02, 0x06, 0x12, 0x0e, 0x4a, 0x21, 0x02, 0xe0, 0x02, 0x06, +0x12, 0x0e, 0xa2, 0x21, 0x13, 0x98, 0x01, 0xf0, 0xc0, 0xef, 0x33, 0x4f, 0x08, 0x21, 0x3f, 0x1d, +0x38, 0x00, 0x01, 0xf0, 0xa6, 0xef, 0x08, 0x21, 0x38, 0x00, 0x01, 0xf0, 0x9e, 0xef, 0x77, 0x27, +0xff, 0x00, 0x38, 0x00, 0x01, 0xf0, 0x90, 0xef, 0x00, 0x06, 0x98, 0xd5, 0x07, 0x98, 0x02, 0x06, +0x14, 0x98, 0x12, 0x0e, 0x00, 0x2c, 0x02, 0x55, 0x01, 0xd1, 0x4a, 0x21, 0x00, 0xe0, 0xa2, 0x21, +0x13, 0x98, 0x01, 0xf0, 0xa2, 0xef, 0x24, 0x48, 0x00, 0x21, 0x80, 0x1c, 0x01, 0xf0, 0x80, 0xef, +0xff, 0x20, 0x80, 0x21, 0x0c, 0x30, 0x01, 0xf0, 0x80, 0xef, 0x64, 0x1c, 0x02, 0x2c, 0x00, 0xda, +0xc7, 0xe6, 0x05, 0x99, 0x12, 0x98, 0x01, 0xf0, 0x84, 0xef, 0x04, 0x99, 0x11, 0x98, 0x01, 0xf0, +0x80, 0xef, 0x03, 0x99, 0x10, 0x98, 0x01, 0xf0, 0x7c, 0xef, 0x02, 0x99, 0x0f, 0x98, 0x01, 0xf0, +0x78, 0xef, 0x01, 0x99, 0x0e, 0x98, 0x01, 0xf0, 0x74, 0xef, 0x15, 0xb0, 0xf0, 0xbd, 0xf8, 0xb5, +0x23, 0x22, 0x11, 0x21, 0x00, 0x20, 0x01, 0xf0, 0x78, 0xef, 0x00, 0x25, 0x28, 0x20, 0x68, 0x43, +0x0e, 0x49, 0x00, 0x24, 0x47, 0x18, 0xae, 0x00, 0x0b, 0xe0, 0x0d, 0x48, 0x80, 0x59, 0x00, 0x19, +0x00, 0x04, 0x00, 0x0c, 0x01, 0xf0, 0x58, 0xef, 0xa1, 0x00, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, +0x78, 0x50, 0x07, 0x48, 0x0c, 0x30, 0x80, 0x59, 0xa0, 0x42, 0xee, 0xdc, 0x6d, 0x1c, 0x2d, 0x06, +0x2d, 0x0e, 0x03, 0x2d, 0xe2, 0xd3, 0xf8, 0xbd, 0xb5, 0x03, 0x00, 0x00, 0x70, 0x3e, 0x01, 0xc0, +0xc0, 0xf2, 0x00, 0xc0, 0xf8, 0xb5, 0x23, 0x22, 0x11, 0x21, 0x00, 0x20, 0x01, 0xf0, 0x4c, 0xef, +0x00, 0x25, 0x00, 0x24, 0x28, 0x20, 0x68, 0x43, 0xff, 0x49, 0x47, 0x18, 0xae, 0x00, 0x0d, 0xe0, +0xa0, 0x00, 0x38, 0x58, 0x01, 0x06, 0xfd, 0x48, 0x09, 0x0e, 0x80, 0x59, 0x00, 0x19, 0x00, 0x04, +0x00, 0x0c, 0x01, 0xf0, 0x2e, 0xef, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0xf7, 0x48, 0x0c, 0x30, +0x80, 0x59, 0xa0, 0x42, 0xec, 0xdc, 0x6d, 0x1c, 0x2d, 0x06, 0x2d, 0x0e, 0x03, 0x2d, 0xe0, 0xd3, +0x03, 0x22, 0x11, 0x21, 0x00, 0x20, 0x01, 0xf0, 0x28, 0xef, 0xcc, 0xe7, 0x10, 0xb5, 0x04, 0x02, +0x20, 0x00, 0xff, 0x30, 0x51, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x38, 0x21, 0x01, 0xf0, 0x10, 0xef, +0x20, 0x00, 0xff, 0x30, 0x56, 0x30, 0x00, 0x04, 0x00, 0x0c, 0xff, 0x21, 0x01, 0xf0, 0x08, 0xef, +0x20, 0x00, 0xff, 0x30, 0x57, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x3a, 0x21, 0x01, 0xf0, 0x00, 0xef, +0x20, 0x00, 0xff, 0x30, 0x58, 0x30, 0x00, 0x04, 0x00, 0x0c, 0xd9, 0x21, 0x01, 0xf0, 0xf8, 0xee, +0x20, 0x00, 0xff, 0x30, 0x59, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x16, 0x21, 0x01, 0xf0, 0xf0, 0xee, +0x20, 0x00, 0xff, 0x30, 0xb0, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x1f, 0x21, 0x01, 0xf0, 0xe8, 0xee, +0x20, 0x00, 0xff, 0x30, 0xb1, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x23, 0x21, 0x01, 0xf0, 0xe0, 0xee, +0x20, 0x00, 0xff, 0x30, 0xb3, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x10, 0x21, 0x01, 0xf0, 0xd8, 0xee, +0x20, 0x00, 0xff, 0x30, 0xc6, 0x30, 0x00, 0x04, 0x00, 0x0c, 0xc9, 0x21, 0x01, 0xf0, 0xd0, 0xee, +0x20, 0x00, 0xff, 0x30, 0xac, 0x30, 0x00, 0x04, 0x00, 0x0c, 0xf6, 0x21, 0x01, 0xf0, 0xc8, 0xee, +0x20, 0x00, 0xff, 0x30, 0xe3, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x21, 0x01, 0xf0, 0xc0, 0xee, +0x80, 0xaf, 0x6a, 0x80, 0x01, 0x00, 0x00, 0x00, 0xe8, 0x97, 0x02, 0xc0, 0x00, 0x04, 0x00, 0x00, +0x52, 0x41, 0x2c, 0x0f, 0x20, 0x00, 0xff, 0x30, 0xe4, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x21, +0x01, 0xf0, 0xb8, 0xee, 0x20, 0x00, 0xff, 0x30, 0xa2, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x03, 0x21, +0x01, 0xf0, 0xb0, 0xee, 0x20, 0x00, 0xff, 0x30, 0xa3, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x12, 0x21, +0x01, 0xf0, 0xa8, 0xee, 0x20, 0x00, 0xff, 0x30, 0xa7, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x0e, 0x21, +0x01, 0xf0, 0xa0, 0xee, 0x20, 0x00, 0xff, 0x30, 0xa8, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x3a, 0x21, +0x01, 0xf0, 0x98, 0xee, 0x20, 0x00, 0xff, 0x30, 0xa9, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x64, 0x21, +0x01, 0xf0, 0x90, 0xee, 0x20, 0x00, 0xff, 0x30, 0x48, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x40, 0x21, +0x01, 0xf0, 0x88, 0xee, 0x20, 0x00, 0xff, 0x30, 0xa5, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x44, 0x21, +0x01, 0xf0, 0x80, 0xee, 0xff, 0x34, 0x24, 0x1d, 0x20, 0x04, 0x00, 0x0c, 0x80, 0x21, 0x01, 0xf0, +0x7a, 0xee, 0x10, 0xbd, 0xfe, 0xb5, 0x38, 0x21, 0x04, 0x02, 0x20, 0x00, 0xff, 0x30, 0x51, 0x30, +0x00, 0x04, 0x00, 0x0c, 0x01, 0xf0, 0x6e, 0xee, 0x20, 0x00, 0xff, 0x30, 0x56, 0x30, 0x00, 0x04, +0x00, 0x0c, 0xff, 0x21, 0x01, 0xf0, 0x66, 0xee, 0x20, 0x00, 0xff, 0x30, 0x57, 0x30, 0x00, 0x04, +0x00, 0x0c, 0x38, 0x21, 0x01, 0xf0, 0x5e, 0xee, 0x20, 0x00, 0xff, 0x30, 0x58, 0x30, 0x00, 0x04, +0x00, 0x0c, 0xd9, 0x21, 0x01, 0xf0, 0x56, 0xee, 0x20, 0x00, 0xff, 0x30, 0x59, 0x30, 0x00, 0x04, +0x00, 0x0c, 0x16, 0x21, 0x01, 0xf0, 0x4e, 0xee, 0x20, 0x00, 0xff, 0x30, 0xb0, 0x30, 0x00, 0x04, +0x00, 0x0c, 0x1f, 0x21, 0x01, 0xf0, 0x46, 0xee, 0x20, 0x00, 0xff, 0x30, 0xb1, 0x30, 0x00, 0x04, +0x00, 0x0c, 0x22, 0x21, 0x01, 0xf0, 0x3e, 0xee, 0x20, 0x00, 0xff, 0x30, 0xb3, 0x30, 0x00, 0x04, +0x00, 0x0c, 0x10, 0x21, 0x01, 0xf0, 0x36, 0xee, 0x20, 0x00, 0xff, 0x30, 0xc6, 0x30, 0x00, 0x04, +0x00, 0x0c, 0xc9, 0x21, 0x02, 0x90, 0x01, 0xf0, 0x2e, 0xee, 0x20, 0x00, 0xff, 0x30, 0xac, 0x30, +0x00, 0x04, 0x00, 0x0c, 0xf6, 0x21, 0x01, 0xf0, 0x26, 0xee, 0x20, 0x00, 0xff, 0x30, 0xe3, 0x30, +0x00, 0x04, 0x00, 0x0c, 0x00, 0x21, 0x01, 0xf0, 0x1e, 0xee, 0x20, 0x00, 0xff, 0x30, 0xe4, 0x30, +0x00, 0x04, 0x00, 0x0c, 0x00, 0x21, 0x01, 0xf0, 0x16, 0xee, 0x20, 0x00, 0xff, 0x30, 0xa2, 0x30, +0x05, 0x04, 0x2d, 0x0c, 0x03, 0x21, 0x28, 0x00, 0x01, 0xf0, 0x0c, 0xee, 0x20, 0x00, 0xff, 0x30, +0xa3, 0x30, 0x06, 0x04, 0x36, 0x0c, 0x12, 0x21, 0x30, 0x00, 0x01, 0xf0, 0x04, 0xee, 0x20, 0x00, +0xff, 0x30, 0xa7, 0x30, 0x07, 0x04, 0x3f, 0x0c, 0x0e, 0x21, 0x38, 0x00, 0x01, 0xf0, 0xfa, 0xed, +0x20, 0x00, 0xff, 0x30, 0xa8, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x3a, 0x21, 0x01, 0x90, 0x01, 0xf0, +0xf2, 0xed, 0x20, 0x00, 0xff, 0x30, 0x48, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x40, 0x21, 0x01, 0xf0, +0xea, 0xed, 0x20, 0x00, 0xff, 0x30, 0xa5, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x44, 0x21, 0x00, 0x90, +0x01, 0xf0, 0xe0, 0xed, 0xe0, 0x1d, 0xfc, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x10, 0x21, 0x01, 0xf0, +0xda, 0xed, 0xff, 0xf7, 0x66, 0xfe, 0x20, 0x00, 0xff, 0x30, 0xed, 0x30, 0x00, 0x04, 0x00, 0x0c, +0xff, 0x21, 0x01, 0xf0, 0xd0, 0xed, 0x20, 0x00, 0xff, 0x30, 0xee, 0x30, 0x00, 0x04, 0x00, 0x0c, +0xff, 0x21, 0x01, 0xf0, 0xc8, 0xed, 0x20, 0x00, 0xff, 0x30, 0xef, 0x30, 0x00, 0x04, 0x00, 0x0c, +0xff, 0x21, 0x01, 0xf0, 0xc0, 0xed, 0x20, 0x00, 0xff, 0x30, 0xf0, 0x30, 0x00, 0x04, 0x00, 0x0c, +0xff, 0x21, 0x01, 0xf0, 0xb8, 0xed, 0x20, 0x00, 0xff, 0x30, 0xa1, 0x30, 0x00, 0x04, 0x00, 0x0c, +0xd3, 0x21, 0x01, 0xf0, 0xb0, 0xed, 0xd3, 0x21, 0x28, 0x00, 0x01, 0xf0, 0xac, 0xed, 0xd3, 0x21, +0x30, 0x00, 0x01, 0xf0, 0xa8, 0xed, 0x20, 0x00, 0xff, 0x30, 0xa4, 0x30, 0x00, 0x04, 0x00, 0x0c, +0xd3, 0x21, 0x01, 0xf0, 0xa0, 0xed, 0x00, 0x98, 0xd3, 0x21, 0x01, 0xf0, 0x9c, 0xed, 0x20, 0x00, +0xff, 0x30, 0xa6, 0x30, 0x00, 0x04, 0x00, 0x0c, 0xd3, 0x21, 0x01, 0xf0, 0x94, 0xed, 0xd3, 0x21, +0x38, 0x00, 0x01, 0xf0, 0x90, 0xed, 0x01, 0x98, 0xd3, 0x21, 0x01, 0xf0, 0x8c, 0xed, 0x20, 0x00, +0xff, 0x30, 0xa9, 0x30, 0x00, 0x04, 0x00, 0x0c, 0xd3, 0x21, 0x01, 0xf0, 0x84, 0xed, 0x20, 0x00, +0xff, 0x30, 0xaa, 0x30, 0x00, 0x04, 0x00, 0x0c, 0xd3, 0x21, 0x01, 0xf0, 0x7c, 0xed, 0x20, 0x00, +0xff, 0x30, 0xc1, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x4e, 0x21, 0x01, 0xf0, 0x74, 0xed, 0x20, 0x00, +0xff, 0x30, 0xc2, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x4e, 0x21, 0x01, 0xf0, 0x6c, 0xed, 0x20, 0x00, +0xff, 0x30, 0xc3, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x4e, 0x21, 0x01, 0xf0, 0x64, 0xed, 0x20, 0x00, +0xff, 0x30, 0xc4, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x4e, 0x21, 0x01, 0xf0, 0x5c, 0xed, 0x20, 0x00, +0xff, 0x30, 0xc5, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x4e, 0x21, 0x01, 0xf0, 0x54, 0xed, 0x02, 0x98, +0x4e, 0x21, 0x01, 0xf0, 0x50, 0xed, 0x20, 0x00, 0xff, 0x30, 0xc7, 0x30, 0x00, 0x04, 0x00, 0x0c, +0x4e, 0x21, 0x01, 0xf0, 0x48, 0xed, 0x20, 0x00, 0xff, 0x30, 0xc8, 0x30, 0x00, 0x04, 0x00, 0x0c, +0x4e, 0x21, 0x01, 0xf0, 0x40, 0xed, 0x20, 0x00, 0xff, 0x30, 0x03, 0xe0, 0x70, 0x3e, 0x01, 0xc0, +0xc0, 0xf2, 0x00, 0xc0, 0xc9, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x4e, 0x21, 0x01, 0xf0, 0x32, 0xed, +0xff, 0x34, 0xca, 0x34, 0x20, 0x04, 0x00, 0x0c, 0x4e, 0x21, 0x01, 0xf0, 0x2c, 0xed, 0x03, 0x22, +0x11, 0x21, 0x00, 0x20, 0x01, 0xf0, 0x32, 0xed, 0xfe, 0xbd, 0x10, 0xb5, 0x04, 0x02, 0x20, 0x00, +0xff, 0x30, 0x51, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x38, 0x21, 0x01, 0xf0, 0x1c, 0xed, 0x20, 0x00, +0xff, 0x30, 0x56, 0x30, 0x00, 0x04, 0x00, 0x0c, 0xff, 0x21, 0x01, 0xf0, 0x14, 0xed, 0x20, 0x00, +0xff, 0x30, 0x57, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x3a, 0x21, 0x01, 0xf0, 0x0c, 0xed, 0x20, 0x00, +0xff, 0x30, 0x58, 0x30, 0x00, 0x04, 0x00, 0x0c, 0xd9, 0x21, 0x01, 0xf0, 0x04, 0xed, 0x20, 0x00, +0xff, 0x30, 0x59, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x16, 0x21, 0x01, 0xf0, 0xfc, 0xec, 0x20, 0x00, +0xff, 0x30, 0xb0, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x1f, 0x21, 0x01, 0xf0, 0xf4, 0xec, 0x20, 0x00, +0xff, 0x30, 0xb1, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x23, 0x21, 0x01, 0xf0, 0xec, 0xec, 0x20, 0x00, +0xff, 0x30, 0xb3, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x10, 0x21, 0x01, 0xf0, 0xe4, 0xec, 0x20, 0x00, +0xff, 0x30, 0xc6, 0x30, 0x00, 0x04, 0x00, 0x0c, 0xc9, 0x21, 0x01, 0xf0, 0xdc, 0xec, 0x20, 0x00, +0xff, 0x30, 0xac, 0x30, 0x00, 0x04, 0x00, 0x0c, 0xf6, 0x21, 0x01, 0xf0, 0xd4, 0xec, 0x20, 0x00, +0xff, 0x30, 0xe3, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x21, 0x01, 0xf0, 0xcc, 0xec, 0x20, 0x00, +0xff, 0x30, 0xe4, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x21, 0x01, 0xf0, 0xc4, 0xec, 0x20, 0x00, +0xb9, 0x6b, 0x80, 0x50, 0x01, 0x00, 0x00, 0x00, 0xe4, 0x9b, 0x02, 0xc0, 0x00, 0x04, 0x00, 0x00, +0xa6, 0x2e, 0x59, 0xbb, 0xff, 0x30, 0xa2, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x03, 0x21, 0x01, 0xf0, +0xbc, 0xec, 0x20, 0x00, 0xff, 0x30, 0xa3, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x12, 0x21, 0x01, 0xf0, +0xb4, 0xec, 0x20, 0x00, 0xff, 0x30, 0xa7, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x0e, 0x21, 0x01, 0xf0, +0xac, 0xec, 0x20, 0x00, 0xff, 0x30, 0xa8, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x3a, 0x21, 0x01, 0xf0, +0xa4, 0xec, 0x20, 0x00, 0xff, 0x30, 0xa9, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x64, 0x21, 0x01, 0xf0, +0x9c, 0xec, 0x20, 0x00, 0xff, 0x30, 0x48, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x40, 0x21, 0x01, 0xf0, +0x94, 0xec, 0x20, 0x00, 0xff, 0x30, 0xa5, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x44, 0x21, 0x01, 0xf0, +0x8c, 0xec, 0xff, 0x34, 0x24, 0x1d, 0x20, 0x04, 0x00, 0x0c, 0x80, 0x21, 0x01, 0xf0, 0x84, 0xec, +0x10, 0xbd, 0xf0, 0xb5, 0x04, 0x02, 0x20, 0x00, 0xff, 0x30, 0x51, 0x30, 0x00, 0x04, 0x00, 0x0c, +0x38, 0x21, 0x85, 0xb0, 0x01, 0xf0, 0x78, 0xec, 0x20, 0x00, 0xff, 0x30, 0x56, 0x30, 0x00, 0x04, +0x00, 0x0c, 0xff, 0x21, 0x01, 0xf0, 0x70, 0xec, 0x20, 0x00, 0xff, 0x30, 0x57, 0x30, 0x00, 0x04, +0x00, 0x0c, 0x38, 0x21, 0x01, 0xf0, 0x68, 0xec, 0x20, 0x00, 0xff, 0x30, 0x58, 0x30, 0x00, 0x04, +0x00, 0x0c, 0xd9, 0x21, 0x01, 0xf0, 0x60, 0xec, 0x20, 0x00, 0xff, 0x30, 0x59, 0x30, 0x00, 0x04, +0x00, 0x0c, 0x16, 0x21, 0x01, 0xf0, 0x58, 0xec, 0x20, 0x00, 0xff, 0x30, 0xb0, 0x30, 0x00, 0x04, +0x00, 0x0c, 0x1f, 0x21, 0x01, 0xf0, 0x50, 0xec, 0x20, 0x00, 0xff, 0x30, 0xb1, 0x30, 0x00, 0x04, +0x00, 0x0c, 0x22, 0x21, 0x01, 0xf0, 0x48, 0xec, 0x20, 0x00, 0xff, 0x30, 0xb3, 0x30, 0x00, 0x04, +0x00, 0x0c, 0x10, 0x21, 0x01, 0xf0, 0x40, 0xec, 0x20, 0x00, 0xff, 0x30, 0xc6, 0x30, 0x00, 0x04, +0x00, 0x0c, 0xc9, 0x21, 0x03, 0x90, 0x01, 0xf0, 0x38, 0xec, 0x20, 0x00, 0xff, 0x30, 0xac, 0x30, +0x00, 0x04, 0x00, 0x0c, 0xf6, 0x21, 0x01, 0xf0, 0x30, 0xec, 0x20, 0x00, 0xff, 0x30, 0xe3, 0x30, +0x00, 0x04, 0x00, 0x0c, 0x00, 0x21, 0x01, 0xf0, 0x28, 0xec, 0x20, 0x00, 0xff, 0x30, 0xe4, 0x30, +0x00, 0x04, 0x00, 0x0c, 0x00, 0x21, 0x01, 0xf0, 0x20, 0xec, 0x20, 0x00, 0xff, 0x30, 0xa2, 0x30, +0x05, 0x04, 0x2d, 0x0c, 0x03, 0x21, 0x28, 0x00, 0x01, 0xf0, 0x16, 0xec, 0x20, 0x00, 0xff, 0x30, +0xa3, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x12, 0x21, 0x02, 0x90, 0x01, 0xf0, 0x0e, 0xec, 0x20, 0x00, +0xff, 0x30, 0xa7, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x0e, 0x21, 0x01, 0x90, 0x01, 0xf0, 0x04, 0xec, +0x20, 0x00, 0xff, 0x30, 0xa8, 0x30, 0x06, 0x04, 0x36, 0x0c, 0x3a, 0x21, 0x30, 0x00, 0x01, 0xf0, +0xfc, 0xeb, 0x20, 0x00, 0xff, 0x30, 0xa9, 0x30, 0x07, 0x04, 0x3f, 0x0c, 0x64, 0x21, 0x38, 0x00, +0x01, 0xf0, 0xf2, 0xeb, 0x20, 0x00, 0xff, 0x30, 0x48, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x40, 0x21, +0x01, 0xf0, 0xea, 0xeb, 0x20, 0x00, 0xff, 0x30, 0xa5, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x44, 0x21, +0x00, 0x90, 0x01, 0xf0, 0xe2, 0xeb, 0xe0, 0x1d, 0xfc, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x10, 0x21, +0x01, 0xf0, 0xda, 0xeb, 0xff, 0xf7, 0x67, 0xfc, 0x20, 0x00, 0xff, 0x30, 0xed, 0x30, 0x00, 0x04, +0x00, 0x0c, 0xff, 0x21, 0x01, 0xf0, 0xd0, 0xeb, 0x20, 0x00, 0xff, 0x30, 0xee, 0x30, 0x00, 0x04, +0x00, 0x0c, 0xff, 0x21, 0x01, 0xf0, 0xc8, 0xeb, 0x20, 0x00, 0xff, 0x30, 0xef, 0x30, 0x00, 0x04, +0x00, 0x0c, 0xff, 0x21, 0x01, 0xf0, 0xc0, 0xeb, 0x20, 0x00, 0xff, 0x30, 0xf0, 0x30, 0x00, 0x04, +0x00, 0x0c, 0xff, 0x21, 0x01, 0xf0, 0xb8, 0xeb, 0x20, 0x00, 0xff, 0x30, 0xa1, 0x30, 0x00, 0x04, +0x00, 0x0c, 0xd3, 0x21, 0x01, 0xf0, 0xb0, 0xeb, 0xd3, 0x21, 0x28, 0x00, 0x01, 0xf0, 0xac, 0xeb, +0x02, 0x98, 0xd3, 0x21, 0x01, 0xf0, 0xa8, 0xeb, 0x20, 0x00, 0xff, 0x30, 0xa4, 0x30, 0x00, 0x04, +0x00, 0x0c, 0xd3, 0x21, 0x01, 0xf0, 0xa0, 0xeb, 0x00, 0x98, 0xd3, 0x21, 0x01, 0xf0, 0x9c, 0xeb, +0x20, 0x00, 0xff, 0x30, 0xa6, 0x30, 0x00, 0x04, 0x00, 0x0c, 0xd3, 0x21, 0x01, 0xf0, 0x94, 0xeb, +0x01, 0x98, 0xd3, 0x21, 0x01, 0xf0, 0x90, 0xeb, 0xd3, 0x21, 0x30, 0x00, 0x01, 0xf0, 0x8c, 0xeb, +0xd3, 0x21, 0x38, 0x00, 0x01, 0xf0, 0x88, 0xeb, 0x20, 0x00, 0xff, 0x30, 0xaa, 0x30, 0x00, 0x04, +0x00, 0x0c, 0xd3, 0x21, 0x01, 0xf0, 0x80, 0xeb, 0x20, 0x00, 0xff, 0x30, 0xc1, 0x30, 0x00, 0x04, +0x00, 0x0c, 0x4e, 0x21, 0x01, 0xf0, 0x78, 0xeb, 0x20, 0x00, 0xff, 0x30, 0xc2, 0x30, 0x00, 0x04, +0x00, 0x0c, 0x4e, 0x21, 0x01, 0xf0, 0x70, 0xeb, 0x20, 0x00, 0xff, 0x30, 0xc3, 0x30, 0x00, 0x04, +0x00, 0x0c, 0x4e, 0x21, 0x01, 0xf0, 0x68, 0xeb, 0x20, 0x00, 0xff, 0x30, 0xc4, 0x30, 0x00, 0x04, +0x00, 0x0c, 0x4e, 0x21, 0x01, 0xf0, 0x60, 0xeb, 0x20, 0x00, 0xff, 0x30, 0xc5, 0x30, 0x00, 0x04, +0x00, 0x0c, 0x4e, 0x21, 0x01, 0xf0, 0x58, 0xeb, 0x03, 0x98, 0x4e, 0x21, 0x01, 0xf0, 0x54, 0xeb, +0x20, 0x00, 0xff, 0x30, 0xc7, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x4e, 0x21, 0x01, 0xf0, 0x4c, 0xeb, +0x20, 0x00, 0xff, 0x30, 0xc8, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x4e, 0x21, 0x01, 0xf0, 0x44, 0xeb, +0x20, 0x00, 0xff, 0x30, 0xc9, 0x30, 0x00, 0x04, 0x00, 0x0c, 0x4e, 0x21, 0x01, 0xf0, 0x3c, 0xeb, +0xff, 0x34, 0xca, 0x34, 0x20, 0x04, 0x00, 0x0c, 0x4e, 0x21, 0x01, 0xf0, 0x36, 0xeb, 0x03, 0x22, +0x11, 0x21, 0x00, 0x20, 0x01, 0xf0, 0x3c, 0xeb, 0x05, 0xb0, 0xf0, 0xbd, 0xff, 0xb5, 0x08, 0x00, +0x00, 0x24, 0x16, 0x00, 0x25, 0x00, 0x81, 0xb0, 0xff, 0xf7, 0x0c, 0xfc, 0xa1, 0x21, 0x4f, 0x20, +0x01, 0xf0, 0x12, 0xeb, 0xff, 0x20, 0x00, 0x21, 0x7c, 0x30, 0x01, 0xf0, 0x0e, 0xeb, 0xff, 0x20, +0xe0, 0x21, 0x7a, 0x30, 0x01, 0xf0, 0x08, 0xeb, 0x40, 0x21, 0x2d, 0x20, 0x01, 0xf0, 0x04, 0xeb, +0xff, 0x48, 0x00, 0x21, 0x01, 0xf0, 0x00, 0xeb, 0xfd, 0x48, 0x2a, 0x21, 0x40, 0x1c, 0x01, 0xf0, +0xfc, 0xea, 0xfb, 0x48, 0x80, 0x21, 0xdc, 0x38, 0x01, 0xf0, 0xfe, 0xea, 0x77, 0x27, 0xff, 0x00, +0x10, 0x21, 0x38, 0x00, 0x01, 0xf0, 0xf8, 0xea, 0xf6, 0x48, 0x02, 0x21, 0x01, 0xf0, 0xf4, 0xea, +0x80, 0x21, 0x78, 0x1e, 0x01, 0xf0, 0xe8, 0xea, 0x02, 0xe0, 0x02, 0x20, 0x01, 0xf0, 0x8c, 0xea, +0x38, 0x00, 0x01, 0xf0, 0xde, 0xea, 0x00, 0x06, 0xf7, 0xd5, 0xed, 0x48, 0x0d, 0x30, 0x01, 0xf0, +0xd8, 0xea, 0x07, 0x00, 0xea, 0x48, 0x0e, 0x30, 0x01, 0xf0, 0xd2, 0xea, 0xe1, 0x19, 0x31, 0x70, +0x04, 0x99, 0x28, 0x18, 0x08, 0x70, 0xe6, 0x48, 0x00, 0x21, 0x01, 0xf0, 0xce, 0xea, 0xe4, 0x48, +0x00, 0x21, 0x40, 0x1c, 0x01, 0xf0, 0xc8, 0xea, 0xe1, 0x48, 0x00, 0x21, 0x80, 0x1c, 0x01, 0xf0, +0xc4, 0xea, 0xa1, 0xe7, 0xff, 0xb5, 0x08, 0x00, 0x00, 0x24, 0x16, 0x00, 0x25, 0x00, 0x81, 0xb0, +0xff, 0xf7, 0x52, 0xfc, 0xa1, 0x21, 0x4f, 0x20, 0x01, 0xf0, 0xb6, 0xea, 0xff, 0x20, 0x00, 0x21, +0x65, 0x4e, 0x78, 0x7f, 0x01, 0x00, 0x00, 0x00, 0xe0, 0x9f, 0x02, 0xc0, 0x00, 0x04, 0x00, 0x00, +0xf5, 0xf4, 0x8a, 0xd7, 0x7c, 0x30, 0x01, 0xf0, 0xb2, 0xea, 0xff, 0x20, 0xe0, 0x21, 0x7a, 0x30, +0x01, 0xf0, 0xac, 0xea, 0x40, 0x21, 0x2d, 0x20, 0x01, 0xf0, 0xa8, 0xea, 0xd1, 0x48, 0x00, 0x21, +0x01, 0xf0, 0xa4, 0xea, 0xcf, 0x48, 0x2a, 0x21, 0x40, 0x1c, 0x01, 0xf0, 0xa0, 0xea, 0xcd, 0x48, +0x80, 0x21, 0xdc, 0x38, 0x01, 0xf0, 0xa2, 0xea, 0x77, 0x27, 0xff, 0x00, 0x10, 0x21, 0x38, 0x00, +0x01, 0xf0, 0x9c, 0xea, 0xc8, 0x48, 0x02, 0x21, 0x01, 0xf0, 0x98, 0xea, 0x80, 0x21, 0x78, 0x1e, +0x01, 0xf0, 0x8c, 0xea, 0x02, 0xe0, 0x02, 0x20, 0x01, 0xf0, 0x30, 0xea, 0x38, 0x00, 0x01, 0xf0, +0x82, 0xea, 0x00, 0x06, 0xf7, 0xd5, 0xbf, 0x48, 0x0d, 0x30, 0x01, 0xf0, 0x7c, 0xea, 0x07, 0x00, +0xbc, 0x48, 0x0e, 0x30, 0x01, 0xf0, 0x76, 0xea, 0xe1, 0x19, 0x31, 0x70, 0x04, 0x99, 0x28, 0x18, +0x08, 0x70, 0xb8, 0x48, 0x00, 0x21, 0x01, 0xf0, 0x72, 0xea, 0xb6, 0x48, 0x00, 0x21, 0x40, 0x1c, +0x01, 0xf0, 0x6c, 0xea, 0xb3, 0x48, 0x00, 0x21, 0x80, 0x1c, 0x01, 0xf0, 0x68, 0xea, 0xff, 0xf7, +0x2f, 0xfb, 0x43, 0xe7, 0xff, 0xb5, 0x81, 0xb0, 0x00, 0x24, 0x16, 0x00, 0x0f, 0x00, 0x25, 0x00, +0xff, 0xf7, 0x07, 0xf9, 0x38, 0x00, 0xff, 0xf7, 0xe6, 0xfd, 0xa1, 0x21, 0x4f, 0x20, 0x01, 0xf0, +0x56, 0xea, 0xff, 0x20, 0x00, 0x21, 0x7c, 0x30, 0x01, 0xf0, 0x50, 0xea, 0xff, 0x20, 0xe0, 0x21, +0x7a, 0x30, 0x01, 0xf0, 0x4c, 0xea, 0x40, 0x21, 0x2d, 0x20, 0x01, 0xf0, 0x48, 0xea, 0xa1, 0x48, +0x08, 0x21, 0x01, 0xf0, 0x44, 0xea, 0x9f, 0x48, 0x0a, 0x21, 0x40, 0x1c, 0x01, 0xf0, 0x3e, 0xea, +0x9c, 0x48, 0x80, 0x21, 0xdc, 0x38, 0x01, 0xf0, 0x42, 0xea, 0x77, 0x27, 0xff, 0x00, 0x10, 0x21, +0x38, 0x00, 0x01, 0xf0, 0x3c, 0xea, 0x98, 0x48, 0x02, 0x21, 0x01, 0xf0, 0x38, 0xea, 0x80, 0x21, +0x78, 0x1e, 0x01, 0xf0, 0x2c, 0xea, 0x02, 0xe0, 0x02, 0x20, 0x01, 0xf0, 0xd0, 0xe9, 0x38, 0x00, +0x01, 0xf0, 0x20, 0xea, 0x00, 0x06, 0xf7, 0xd5, 0x8e, 0x48, 0x40, 0x1d, 0x01, 0xf0, 0x1a, 0xea, +0x07, 0x00, 0x8c, 0x48, 0x80, 0x1d, 0x01, 0xf0, 0x16, 0xea, 0xe1, 0x19, 0x31, 0x70, 0x04, 0x99, +0x28, 0x18, 0x08, 0x70, 0x87, 0x48, 0x00, 0x21, 0x01, 0xf0, 0x10, 0xea, 0x85, 0x48, 0x00, 0x21, +0x40, 0x1c, 0x01, 0xf0, 0x0c, 0xea, 0x83, 0x48, 0x00, 0x21, 0x80, 0x1c, 0x01, 0xf0, 0x06, 0xea, +0xff, 0xf7, 0xce, 0xfa, 0xe2, 0xe6, 0xff, 0xb5, 0x08, 0x00, 0x00, 0x24, 0x16, 0x00, 0x25, 0x00, +0x81, 0xb0, 0xff, 0xf7, 0xe6, 0xfc, 0xa1, 0x21, 0x4f, 0x20, 0x01, 0xf0, 0xf8, 0xe9, 0xff, 0x20, +0x00, 0x21, 0x7c, 0x30, 0x01, 0xf0, 0xf2, 0xe9, 0xff, 0x20, 0xe0, 0x21, 0x7a, 0x30, 0x01, 0xf0, +0xee, 0xe9, 0x40, 0x21, 0x2d, 0x20, 0x01, 0xf0, 0xea, 0xe9, 0x72, 0x48, 0x08, 0x21, 0x01, 0xf0, +0xe6, 0xe9, 0x70, 0x48, 0x0a, 0x21, 0x40, 0x1c, 0x01, 0xf0, 0xe0, 0xe9, 0x6d, 0x48, 0x80, 0x21, +0xdc, 0x38, 0x01, 0xf0, 0xe4, 0xe9, 0x77, 0x27, 0xff, 0x00, 0x10, 0x21, 0x38, 0x00, 0x01, 0xf0, +0xde, 0xe9, 0x69, 0x48, 0x02, 0x21, 0x01, 0xf0, 0xda, 0xe9, 0x80, 0x21, 0x78, 0x1e, 0x01, 0xf0, +0xce, 0xe9, 0x02, 0xe0, 0x02, 0x20, 0x01, 0xf0, 0x72, 0xe9, 0x38, 0x00, 0x01, 0xf0, 0xc2, 0xe9, +0x00, 0x06, 0xf7, 0xd5, 0x5f, 0x48, 0x40, 0x1d, 0x01, 0xf0, 0xbc, 0xe9, 0x07, 0x00, 0x5d, 0x48, +0x80, 0x1d, 0x01, 0xf0, 0xb8, 0xe9, 0xe1, 0x19, 0x31, 0x70, 0x04, 0x99, 0x28, 0x18, 0x08, 0x70, +0x58, 0x48, 0x00, 0x21, 0x01, 0xf0, 0xb2, 0xe9, 0x56, 0x48, 0x00, 0x21, 0x40, 0x1c, 0x01, 0xf0, +0xae, 0xe9, 0x54, 0x48, 0x00, 0x21, 0x80, 0x1c, 0x01, 0xf0, 0xa8, 0xe9, 0x86, 0xe6, 0xff, 0xb5, +0x8b, 0xb0, 0x0c, 0x00, 0xff, 0xf7, 0x4d, 0xf8, 0x24, 0x02, 0x20, 0x00, 0xff, 0x30, 0x56, 0x30, +0x00, 0x04, 0x00, 0x0c, 0xff, 0x21, 0x01, 0xf0, 0xaa, 0xe9, 0x20, 0x00, 0xff, 0x30, 0x57, 0x30, +0x00, 0x04, 0x00, 0x0c, 0x0a, 0x90, 0x01, 0xf0, 0x9e, 0xe9, 0xc7, 0x21, 0x08, 0x40, 0x38, 0x21, +0x01, 0x43, 0x0a, 0x98, 0x01, 0xf0, 0x9a, 0xe9, 0x20, 0x00, 0xff, 0x30, 0x59, 0x30, 0x00, 0x04, +0x00, 0x0c, 0xff, 0x34, 0x58, 0x34, 0x09, 0x90, 0x06, 0x26, 0x00, 0x25, 0x20, 0x04, 0x00, 0x0c, +0x08, 0x90, 0x00, 0x20, 0xac, 0x00, 0x04, 0xa9, 0x08, 0x51, 0x69, 0x46, 0x08, 0x51, 0x08, 0x98, +0x01, 0xf0, 0x80, 0xe9, 0xe3, 0x21, 0x08, 0x40, 0xb1, 0x00, 0x01, 0x43, 0x09, 0x06, 0x08, 0x98, +0x09, 0x0e, 0x01, 0xf0, 0x7c, 0xe9, 0x00, 0x2d, 0x4c, 0xd0, 0x01, 0x2d, 0x05, 0xd0, 0x02, 0x2d, +0x46, 0xd0, 0x03, 0x2d, 0x46, 0xd1, 0x22, 0x21, 0x00, 0xe0, 0x12, 0x21, 0x09, 0x98, 0x01, 0xf0, +0x6e, 0xe9, 0x0a, 0x98, 0x02, 0x27, 0x01, 0xf0, 0x66, 0xe9, 0xf8, 0x21, 0x08, 0x40, 0x38, 0x43, +0x01, 0x00, 0x0a, 0x98, 0x01, 0xf0, 0x62, 0xe9, 0x08, 0x98, 0x01, 0x27, 0x01, 0xf0, 0x5a, 0xe9, +0xfc, 0x21, 0x08, 0x40, 0x38, 0x43, 0x01, 0x00, 0x08, 0x98, 0x01, 0xf0, 0x58, 0xe9, 0x40, 0x21, +0x2d, 0x20, 0x01, 0xf0, 0x44, 0xe9, 0x1f, 0x48, 0x01, 0x21, 0x01, 0xf0, 0x40, 0xe9, 0x1d, 0x48, +0x8f, 0x21, 0x40, 0x1c, 0x01, 0xf0, 0x3a, 0xe9, 0x1a, 0x48, 0x02, 0x21, 0x00, 0x1d, 0x01, 0xf0, +0x36, 0xe9, 0x18, 0x48, 0x80, 0x21, 0xdc, 0x38, 0x01, 0xf0, 0x38, 0xe9, 0x77, 0x27, 0xff, 0x00, +0x10, 0x21, 0x38, 0x00, 0x01, 0xf0, 0x32, 0xe9, 0x13, 0x48, 0x02, 0x21, 0x01, 0xf0, 0x2e, 0xe9, +0x02, 0x20, 0x01, 0xf0, 0xcc, 0xe8, 0x80, 0x21, 0x78, 0x1e, 0x01, 0xf0, 0x20, 0xe9, 0x06, 0xe0, +0x1c, 0x21, 0xbb, 0xe7, 0x0a, 0x21, 0xb9, 0xe7, 0x02, 0x20, 0x01, 0xf0, 0xc0, 0xe8, 0x38, 0x00, +0x01, 0xf0, 0x10, 0xe9, 0x00, 0x06, 0xf7, 0xd5, 0xef, 0x20, 0x80, 0x00, 0x01, 0xf0, 0x0a, 0xe9, +0x07, 0x00, 0x04, 0x48, 0x08, 0x30, 0x01, 0xf0, 0x06, 0xe9, 0x3b, 0x06, 0x04, 0xaa, 0x11, 0x59, +0x1b, 0x16, 0x03, 0xe0, 0xb5, 0x03, 0x00, 0x00, 0x7e, 0x06, 0x00, 0x00, 0xcb, 0x18, 0x69, 0x46, +0x13, 0x51, 0x0f, 0x59, 0x00, 0x06, 0x00, 0x16, 0x38, 0x18, 0x08, 0x51, 0x0d, 0x98, 0x03, 0x70, +0x0e, 0x9b, 0x08, 0x59, 0x18, 0x70, 0x10, 0x59, 0x02, 0x06, 0x12, 0x0e, 0xff, 0x48, 0x02, 0x51, +0x09, 0x59, 0x07, 0x00, 0x09, 0x06, 0x09, 0x0e, 0x10, 0x37, 0x00, 0x2d, 0x39, 0x51, 0x20, 0xd0, +0x01, 0x2d, 0x2b, 0xd0, 0x02, 0x2d, 0x48, 0xd0, 0x03, 0x2d, 0x63, 0xd1, 0xc0, 0x68, 0x01, 0x06, +0xf7, 0x48, 0x09, 0x0e, 0x01, 0xf0, 0xda, 0xe8, 0xf8, 0x68, 0x01, 0x06, 0xf4, 0x48, 0x09, 0x0e, +0x08, 0x30, 0x01, 0xf0, 0xd4, 0xe8, 0xf1, 0x48, 0xc0, 0x68, 0x01, 0x06, 0xf0, 0x48, 0x09, 0x0e, +0xc0, 0x1e, 0x01, 0xf0, 0xcc, 0xe8, 0xf8, 0x68, 0x01, 0x06, 0xed, 0x48, 0x09, 0x0e, 0x40, 0x1d, +0x28, 0xe0, 0x00, 0x68, 0x01, 0x06, 0xea, 0x48, 0x09, 0x0e, 0xc0, 0x1c, 0x01, 0xf0, 0xbe, 0xe8, +0x38, 0x68, 0x01, 0x06, 0xe6, 0x48, 0x09, 0x0e, 0x0b, 0x30, 0x1b, 0xe0, 0xe3, 0x48, 0x40, 0x68, +0x82, 0xc8, 0xa3, 0xac, 0x01, 0x00, 0x00, 0x00, 0xdc, 0xa3, 0x02, 0xc0, 0x00, 0x04, 0x00, 0x00, +0xdd, 0x65, 0x0f, 0x6a, 0x01, 0x06, 0xe3, 0x48, 0x09, 0x0e, 0x80, 0x1c, 0x01, 0xf0, 0xb0, 0xe8, +0x78, 0x68, 0x01, 0x06, 0xdf, 0x48, 0x09, 0x0e, 0x0a, 0x30, 0x01, 0xf0, 0xaa, 0xe8, 0xdc, 0x48, +0x40, 0x68, 0x01, 0x06, 0xdb, 0x48, 0x09, 0x0e, 0x40, 0x1e, 0x01, 0xf0, 0xa2, 0xe8, 0x78, 0x68, +0x01, 0x06, 0xd8, 0x48, 0x09, 0x0e, 0xc0, 0x1d, 0x01, 0xf0, 0x9a, 0xe8, 0x1c, 0xe0, 0xd4, 0x48, +0x80, 0x68, 0x01, 0x06, 0xd3, 0x48, 0x09, 0x0e, 0x40, 0x1c, 0x01, 0xf0, 0x92, 0xe8, 0xb8, 0x68, +0x01, 0x06, 0xd0, 0x48, 0x09, 0x0e, 0x09, 0x30, 0x01, 0xf0, 0x8a, 0xe8, 0xcc, 0x48, 0x80, 0x68, +0x01, 0x06, 0x0d, 0x20, 0x09, 0x0e, 0xc0, 0x01, 0x01, 0xf0, 0x82, 0xe8, 0xb8, 0x68, 0x01, 0x06, +0x09, 0x0e, 0xd1, 0x20, 0xc0, 0x00, 0xdf, 0xe7, 0xc7, 0x48, 0x00, 0x21, 0x01, 0xf0, 0x78, 0xe8, +0xc5, 0x48, 0x00, 0x21, 0x40, 0x1c, 0x01, 0xf0, 0x74, 0xe8, 0xc3, 0x48, 0x00, 0x21, 0x80, 0x1c, +0x01, 0xf0, 0x6e, 0xe8, 0x04, 0xa8, 0x00, 0x59, 0x01, 0x06, 0x0f, 0x20, 0x09, 0x0e, 0x80, 0x01, +0x01, 0xf0, 0x66, 0xe8, 0x68, 0x46, 0x00, 0x59, 0x01, 0x06, 0xbb, 0x48, 0x09, 0x0e, 0x0c, 0x30, +0x01, 0xf0, 0x5e, 0xe8, 0x76, 0x1e, 0x6d, 0x1c, 0x04, 0x2d, 0x00, 0xda, 0xdb, 0xe6, 0x0f, 0xb0, +0xf0, 0xbd, 0xf8, 0xb5, 0x01, 0xf0, 0x10, 0xe8, 0x04, 0x21, 0x0b, 0x20, 0x00, 0xf0, 0xf4, 0xef, +0x40, 0x21, 0x03, 0x20, 0x00, 0xf0, 0xf0, 0xef, 0x03, 0x21, 0x02, 0x20, 0x00, 0xf0, 0xec, 0xef, +0x01, 0xf0, 0x06, 0xe8, 0xad, 0x49, 0x08, 0x68, 0x01, 0x22, 0x10, 0x43, 0x08, 0x60, 0x00, 0x25, +0xab, 0x49, 0xa8, 0x00, 0xca, 0x1c, 0x86, 0x18, 0x68, 0x00, 0x00, 0x24, 0x47, 0x18, 0x00, 0x90, +0xa5, 0x20, 0x01, 0x21, 0x80, 0x00, 0x01, 0xf0, 0x34, 0xe8, 0x00, 0x98, 0x00, 0x19, 0x40, 0x1c, +0x01, 0x06, 0xff, 0x20, 0x09, 0x0e, 0x41, 0x30, 0x01, 0xf0, 0x2a, 0xe8, 0xa1, 0x48, 0x01, 0xf0, +0x24, 0xe8, 0x01, 0x00, 0x38, 0x55, 0x60, 0x00, 0x30, 0x5a, 0x01, 0xf0, 0x22, 0xe8, 0x64, 0x1c, +0x02, 0x2c, 0xe5, 0xdb, 0xff, 0x20, 0x00, 0x21, 0x41, 0x30, 0x01, 0xf0, 0x1a, 0xe8, 0xa5, 0x20, +0x00, 0x21, 0x80, 0x00, 0x01, 0xf0, 0x14, 0xe8, 0x6d, 0x1c, 0x01, 0x2d, 0xd0, 0xdb, 0x00, 0xf0, +0xcc, 0xef, 0x04, 0x21, 0x0b, 0x20, 0x00, 0xf0, 0xbc, 0xef, 0x40, 0x21, 0x03, 0x20, 0x00, 0xf0, +0xb8, 0xef, 0x03, 0x21, 0x02, 0x20, 0x00, 0xf0, 0xb4, 0xef, 0x00, 0xf0, 0xc2, 0xef, 0xf8, 0xbd, +0x8d, 0x4a, 0x13, 0x7f, 0xdb, 0x07, 0xfc, 0xd1, 0x8b, 0x4a, 0x20, 0x32, 0x10, 0x81, 0x91, 0x80, +0x70, 0x47, 0x70, 0xb5, 0x00, 0x24, 0x80, 0x07, 0x05, 0x0e, 0x07, 0x21, 0x20, 0x00, 0x01, 0xf0, +0x10, 0xe8, 0x80, 0x06, 0x80, 0x0e, 0x2a, 0x00, 0x02, 0x43, 0x07, 0x21, 0x20, 0x00, 0x01, 0xf0, +0x04, 0xe8, 0x64, 0x1c, 0x24, 0x06, 0x24, 0x0e, 0x01, 0x2c, 0xee, 0xd3, 0x70, 0xbd, 0x70, 0xb5, +0x04, 0x00, 0x0d, 0x00, 0x02, 0xe0, 0x0a, 0x20, 0x00, 0xf0, 0x82, 0xef, 0x29, 0x00, 0x20, 0x00, +0x00, 0xf0, 0xfa, 0xef, 0x01, 0x28, 0xf6, 0xd1, 0x00, 0x20, 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, +0x01, 0x00, 0xb2, 0x20, 0xff, 0xf7, 0xeb, 0xff, 0x04, 0x00, 0x07, 0xd1, 0x29, 0x00, 0xb2, 0x20, +0x00, 0xf0, 0xee, 0xef, 0x29, 0x00, 0xb2, 0x20, 0x00, 0xf0, 0xe6, 0xef, 0x20, 0x00, 0x70, 0xbd, +0xf8, 0xb5, 0x05, 0x00, 0x00, 0x20, 0x00, 0x90, 0x00, 0xf0, 0x7e, 0xef, 0x68, 0x78, 0x06, 0x02, +0x28, 0x78, 0x06, 0x43, 0x69, 0x48, 0xad, 0x1c, 0x01, 0x68, 0x41, 0x22, 0x12, 0x03, 0x11, 0x43, +0x01, 0x60, 0x01, 0x23, 0x09, 0x20, 0x00, 0x07, 0x03, 0x80, 0x00, 0x22, 0x82, 0x80, 0x62, 0x48, +0x81, 0x88, 0x9c, 0x02, 0x21, 0x40, 0x6b, 0x24, 0xe4, 0x00, 0x09, 0x19, 0x81, 0x80, 0x03, 0x80, +0x5d, 0x4f, 0x20, 0x37, 0x3a, 0x82, 0x14, 0x00, 0xb0, 0x21, 0x20, 0x00, 0x00, 0xf0, 0xb8, 0xef, +0x1f, 0x21, 0x08, 0x43, 0x02, 0x00, 0xb0, 0x21, 0x20, 0x00, 0x00, 0xf0, 0xae, 0xef, 0x64, 0x1c, +0x24, 0x06, 0x24, 0x0e, 0x01, 0x2c, 0xef, 0xd3, 0x00, 0x21, 0x40, 0x20, 0x00, 0xf0, 0xb0, 0xef, +0x00, 0x21, 0x41, 0x20, 0x00, 0xf0, 0xac, 0xef, 0x02, 0x20, 0xff, 0xf7, 0x8a, 0xff, 0x00, 0x21, +0xb3, 0x20, 0x00, 0xf0, 0xa6, 0xef, 0x10, 0x21, 0xb1, 0x20, 0x00, 0xf0, 0xa6, 0xef, 0x4a, 0x48, +0x01, 0x7f, 0xc9, 0x07, 0xfc, 0xd1, 0x48, 0x49, 0x88, 0x88, 0x01, 0x22, 0x92, 0x03, 0x10, 0x43, +0x88, 0x80, 0x03, 0x20, 0x38, 0x82, 0x31, 0x04, 0x09, 0x0c, 0x50, 0x00, 0xff, 0xf7, 0x68, 0xff, +0x00, 0x24, 0x0c, 0xe0, 0x28, 0x19, 0x40, 0x78, 0x01, 0x02, 0x28, 0x5d, 0x01, 0x43, 0x01, 0x20, +0xc0, 0x03, 0x20, 0x18, 0x00, 0x04, 0x00, 0x0c, 0xff, 0xf7, 0x5a, 0xff, 0xa4, 0x1c, 0xb4, 0x42, +0xf0, 0xdb, 0x28, 0x19, 0x40, 0x78, 0x01, 0x02, 0x28, 0x5d, 0x01, 0x43, 0x01, 0x20, 0xc0, 0x03, +0xff, 0xf7, 0x4e, 0xff, 0x34, 0x48, 0x01, 0x7f, 0xc9, 0x07, 0xfc, 0xd1, 0x81, 0x88, 0x01, 0x22, +0x92, 0x03, 0x91, 0x43, 0x81, 0x80, 0x00, 0x20, 0x38, 0x82, 0x02, 0xe0, 0x02, 0x20, 0x00, 0xf0, +0xe8, 0xee, 0x20, 0x21, 0xb2, 0x20, 0x00, 0xf0, 0x60, 0xef, 0x01, 0x28, 0xf6, 0xd1, 0x02, 0x21, +0x19, 0x20, 0x00, 0xf0, 0x5a, 0xef, 0x00, 0x28, 0x00, 0xd0, 0xfe, 0xe7, 0x1f, 0x21, 0x40, 0x20, +0x00, 0xf0, 0x56, 0xef, 0xf8, 0x21, 0x41, 0x20, 0x00, 0xf0, 0x52, 0xef, 0x00, 0xf0, 0xf8, 0xee, +0x00, 0x98, 0xf8, 0xbd, 0x70, 0xb5, 0x00, 0x24, 0x1d, 0x4e, 0x19, 0x4d, 0x23, 0x36, 0x98, 0x35, +0x60, 0x00, 0x31, 0x5a, 0x00, 0x20, 0x00, 0xf0, 0x3c, 0xef, 0xe1, 0x00, 0x64, 0x1c, 0x03, 0x2c, +0x68, 0x50, 0xf5, 0xdb, 0x16, 0x4e, 0x00, 0x24, 0x53, 0x36, 0x60, 0x00, 0x30, 0x5a, 0x00, 0xf0, +0x1c, 0xef, 0xe1, 0x00, 0x49, 0x19, 0x64, 0x1c, 0x10, 0x2c, 0x88, 0x61, 0xf5, 0xdb, 0x10, 0x4e, +0x00, 0x24, 0x73, 0x36, 0x60, 0x00, 0x30, 0x5a, 0x00, 0xf0, 0xfe, 0xee, 0xa1, 0x00, 0x49, 0x19, +0x80, 0x31, 0x64, 0x1c, 0x29, 0x2c, 0x88, 0x61, 0xf4, 0xdb, 0x00, 0xf0, 0xca, 0xee, 0x00, 0xf0, +0x90, 0xee, 0x3a, 0x20, 0x00, 0xf0, 0x90, 0xee, 0x09, 0x49, 0xc8, 0x63, 0x12, 0xe0, 0x00, 0x00, +0x50, 0x3e, 0x01, 0xc0, 0x82, 0x06, 0x00, 0x00, 0xb5, 0x03, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x80, +0x85, 0xf2, 0x00, 0xc0, 0x92, 0x02, 0x00, 0x00, 0x00, 0x08, 0x00, 0x90, 0x00, 0x21, 0x00, 0x80, +0xe8, 0x3f, 0x01, 0xc0, 0x00, 0xf0, 0x7c, 0xee, 0x00, 0xf0, 0x9e, 0xee, 0xf9, 0x48, 0x01, 0x6a, +0xf9, 0x48, 0x01, 0x60, 0xf9, 0x49, 0x49, 0x6a, 0x41, 0x60, 0x70, 0xbd, 0x70, 0xb5, 0x00, 0x24, +0xf7, 0x4e, 0xf8, 0x4d, 0xe0, 0x00, 0x28, 0x58, 0x02, 0x06, 0x60, 0x00, 0x31, 0x5a, 0x12, 0x0e, +0x00, 0x20, 0x00, 0xf0, 0xe2, 0xee, 0x64, 0x1c, 0x03, 0x2c, 0xf3, 0xdb, 0xf0, 0x4e, 0x00, 0x24, +0x30, 0x36, 0xe0, 0x00, 0x40, 0x19, 0x80, 0x69, 0x01, 0x06, 0x60, 0x00, 0x30, 0x5a, 0x09, 0x0e, +0xab, 0xd5, 0x18, 0xa6, 0x01, 0x00, 0x00, 0x00, 0xd8, 0xa7, 0x02, 0xc0, 0x00, 0x04, 0x00, 0x00, +0x8e, 0xbf, 0xdc, 0x06, 0x00, 0xf0, 0xc6, 0xee, 0x64, 0x1c, 0x10, 0x2c, 0xf3, 0xdb, 0xe9, 0x4e, +0x00, 0x24, 0x50, 0x36, 0xa0, 0x00, 0x40, 0x19, 0x80, 0x30, 0x80, 0x69, 0x01, 0x06, 0x60, 0x00, +0x30, 0x5a, 0x09, 0x0e, 0x00, 0xf0, 0xa6, 0xee, 0x64, 0x1c, 0x29, 0x2c, 0xf2, 0xdb, 0x00, 0xf0, +0x72, 0xee, 0x00, 0xf0, 0x38, 0xee, 0xdd, 0x48, 0x40, 0x38, 0xc0, 0x6b, 0x01, 0x06, 0x09, 0x0e, +0x3a, 0x20, 0x00, 0xf0, 0x44, 0xee, 0x00, 0xf0, 0x36, 0xee, 0x00, 0xf0, 0x58, 0xee, 0xd7, 0x48, +0xd5, 0x4a, 0x01, 0x68, 0x11, 0x62, 0xd6, 0x49, 0x40, 0x68, 0x48, 0x62, 0x04, 0x21, 0x40, 0x20, +0x00, 0xf0, 0xb8, 0xee, 0x70, 0xbd, 0xd2, 0x48, 0x10, 0xb5, 0x41, 0x6a, 0xc2, 0x0c, 0x91, 0x43, +0x41, 0x62, 0x41, 0x6a, 0x12, 0x04, 0x11, 0x43, 0x41, 0x62, 0xd0, 0x48, 0x01, 0x6a, 0x03, 0x22, +0x12, 0x03, 0x11, 0x43, 0x01, 0x62, 0x51, 0x20, 0x00, 0x21, 0xc0, 0x00, 0x00, 0xf0, 0x72, 0xee, +0xcb, 0x48, 0x00, 0x21, 0x00, 0xf0, 0x6e, 0xee, 0xa3, 0x20, 0xc0, 0x21, 0x80, 0x00, 0x00, 0xf0, +0x6a, 0xee, 0x0b, 0x20, 0x01, 0x21, 0xc0, 0x01, 0x00, 0xf0, 0x64, 0xee, 0xff, 0x20, 0x02, 0x21, +0xc0, 0x1c, 0x00, 0xf0, 0x70, 0xee, 0x10, 0x22, 0x02, 0x21, 0x00, 0x20, 0x00, 0xf0, 0x8e, 0xee, +0x02, 0x22, 0x11, 0x00, 0x00, 0x20, 0x00, 0xf0, 0x8a, 0xee, 0x10, 0xbd, 0x10, 0xb5, 0xff, 0xf7, +0x2b, 0xff, 0xff, 0xf7, 0xc8, 0xff, 0x3b, 0x22, 0x06, 0x21, 0x00, 0x20, 0x00, 0xf0, 0x66, 0xee, +0x10, 0xbd, 0x00, 0x21, 0x06, 0x20, 0x10, 0xb5, 0x00, 0xf0, 0x6c, 0xee, 0xb1, 0x48, 0xb0, 0x49, +0x24, 0x38, 0x00, 0x6a, 0x48, 0x62, 0xff, 0xf7, 0x6b, 0xff, 0x10, 0xbd, 0xf3, 0xb5, 0x0c, 0x00, +0x08, 0x21, 0x20, 0x00, 0x85, 0xb0, 0x00, 0xf0, 0x0e, 0xee, 0x05, 0x98, 0xff, 0xf7, 0xde, 0xff, +0xac, 0x4f, 0x38, 0x00, 0x00, 0xf0, 0x2a, 0xee, 0xa6, 0x4d, 0x38, 0x26, 0x30, 0x43, 0x24, 0x3d, +0x01, 0x00, 0x28, 0x70, 0x38, 0x00, 0x00, 0xf0, 0x26, 0xee, 0x38, 0x00, 0x00, 0xf0, 0x1e, 0xee, +0x30, 0x43, 0x01, 0x00, 0x28, 0x70, 0x38, 0x00, 0x00, 0xf0, 0x1c, 0xee, 0xdd, 0x20, 0x00, 0xf0, +0x16, 0xee, 0x02, 0x21, 0x08, 0x43, 0x01, 0x00, 0x28, 0x70, 0xdd, 0x20, 0x00, 0xf0, 0x12, 0xee, +0x97, 0x49, 0x9d, 0x48, 0x48, 0x62, 0x01, 0x21, 0xc4, 0x20, 0xff, 0xf7, 0x2a, 0xfe, 0xfe, 0xf7, +0xb4, 0xfc, 0x10, 0x22, 0x47, 0x21, 0x00, 0x20, 0x00, 0xf0, 0x38, 0xee, 0x05, 0x98, 0x00, 0x78, +0x00, 0x28, 0x0f, 0xd1, 0x01, 0x20, 0x00, 0xf0, 0x2f, 0xf9, 0x0a, 0x20, 0x00, 0xf0, 0xa2, 0xed, +0x00, 0x20, 0x00, 0xf0, 0x29, 0xf9, 0x0a, 0x20, 0x00, 0xf0, 0x9c, 0xed, 0x21, 0x00, 0x00, 0x20, +0xfe, 0xf7, 0xd2, 0xfc, 0x10, 0x22, 0x47, 0x21, 0x00, 0x20, 0x00, 0xf0, 0x24, 0xee, 0x02, 0x21, +0xc4, 0x20, 0xff, 0xf7, 0x06, 0xfe, 0xfe, 0xf7, 0x90, 0xfc, 0x08, 0x22, 0x47, 0x21, 0x00, 0x20, +0x00, 0xf0, 0x14, 0xee, 0x05, 0x98, 0xe3, 0x1c, 0xa2, 0x1c, 0x00, 0x21, 0xff, 0xf7, 0x18, 0xfb, +0x7c, 0x4d, 0xa1, 0x78, 0x1c, 0x3d, 0x28, 0x88, 0x00, 0xf0, 0xd4, 0xed, 0x2e, 0x1d, 0xe1, 0x78, +0x30, 0x88, 0x00, 0xf0, 0xd0, 0xed, 0x08, 0x22, 0x47, 0x21, 0x00, 0x20, 0x00, 0xf0, 0x02, 0xee, +0x80, 0x21, 0xb2, 0x20, 0xff, 0xf7, 0xe5, 0xfd, 0x01, 0x22, 0x47, 0x21, 0x00, 0x20, 0x00, 0xf0, +0xf6, 0xed, 0x40, 0x22, 0x05, 0x21, 0x00, 0x20, 0x00, 0xf0, 0xf0, 0xed, 0x01, 0x22, 0x47, 0x21, +0x00, 0x20, 0x00, 0xf0, 0xf0, 0xed, 0x02, 0x21, 0xb2, 0x20, 0xff, 0xf7, 0xd2, 0xfd, 0x08, 0x22, +0x47, 0x21, 0x00, 0x20, 0x00, 0xf0, 0xe2, 0xed, 0x05, 0x98, 0x63, 0x1d, 0x22, 0x1d, 0x00, 0x21, +0xff, 0xf7, 0x44, 0xfb, 0x30, 0x1d, 0x21, 0x79, 0x00, 0x88, 0x00, 0xf0, 0xa4, 0xed, 0x2f, 0x00, +0x0c, 0x37, 0x61, 0x79, 0x38, 0x88, 0x00, 0xf0, 0x9e, 0xed, 0x04, 0x22, 0x47, 0x21, 0x00, 0x20, +0x00, 0xf0, 0xcc, 0xed, 0x08, 0x22, 0x47, 0x21, 0x00, 0x20, 0x00, 0xf0, 0xcc, 0xed, 0x05, 0x98, +0x00, 0x21, 0x04, 0xaa, 0x03, 0xab, 0xff, 0xf7, 0x6f, 0xfa, 0x6b, 0x46, 0x28, 0x88, 0x19, 0x7c, +0x00, 0xf0, 0x88, 0xed, 0x6b, 0x46, 0x30, 0x88, 0x19, 0x7b, 0x00, 0xf0, 0x84, 0xed, 0x05, 0x98, +0x00, 0x21, 0x02, 0xaa, 0x01, 0xab, 0xff, 0xf7, 0x7a, 0xfb, 0x30, 0x1d, 0x6b, 0x46, 0x00, 0x88, +0x19, 0x7a, 0x00, 0xf0, 0x78, 0xed, 0x6b, 0x46, 0x38, 0x88, 0x19, 0x79, 0x00, 0xf0, 0x72, 0xed, +0x02, 0x22, 0x47, 0x21, 0x00, 0x20, 0x00, 0xf0, 0xa2, 0xed, 0x04, 0x22, 0x47, 0x21, 0x00, 0x20, +0x00, 0xf0, 0xa0, 0xed, 0x05, 0x98, 0xe3, 0x1d, 0xa2, 0x1d, 0x00, 0x21, 0xff, 0xf7, 0xbb, 0xfb, +0x38, 0x1d, 0xa1, 0x79, 0x00, 0x88, 0x00, 0xf0, 0x5e, 0xed, 0x28, 0x00, 0x14, 0x30, 0xe1, 0x79, +0x00, 0x88, 0x00, 0xf0, 0x58, 0xed, 0x02, 0x22, 0x47, 0x21, 0x00, 0x20, 0x00, 0xf0, 0x8a, 0xed, +0x40, 0x22, 0x05, 0x21, 0x00, 0x20, 0x00, 0xf0, 0x86, 0xed, 0x01, 0x20, 0xff, 0xf7, 0x78, 0xfd, +0xff, 0xf7, 0xff, 0xfe, 0x00, 0x20, 0x07, 0xb0, 0xf0, 0xbd, 0x10, 0xb5, 0x31, 0x4c, 0x01, 0x21, +0xa4, 0x1d, 0x60, 0x88, 0x02, 0x06, 0x20, 0x78, 0x12, 0x0e, 0x00, 0xf0, 0x78, 0xed, 0x00, 0xf0, +0xfe, 0xec, 0x00, 0xf0, 0x78, 0xed, 0xfc, 0x21, 0x41, 0x20, 0x00, 0xf0, 0x5c, 0xed, 0x2f, 0x48, +0x00, 0xf0, 0x74, 0xed, 0x62, 0x88, 0x20, 0x78, 0x01, 0x21, 0x00, 0xf0, 0x74, 0xed, 0x00, 0xf0, +0xfa, 0xec, 0x20, 0x78, 0x00, 0xf0, 0x72, 0xed, 0x00, 0xf0, 0xe8, 0xec, 0x02, 0x21, 0x07, 0x20, +0x00, 0xf0, 0x4c, 0xed, 0x60, 0x88, 0x01, 0x06, 0x20, 0x78, 0x09, 0x0e, 0x00, 0xf0, 0x6a, 0xed, +0x00, 0xf0, 0x6c, 0xed, 0x10, 0x21, 0x02, 0x20, 0x00, 0xf0, 0x40, 0xed, 0x03, 0x20, 0xff, 0xf7, +0x1a, 0xfd, 0x80, 0x21, 0x12, 0x20, 0x00, 0xf0, 0x26, 0xed, 0x10, 0x21, 0x02, 0x20, 0x00, 0xf0, +0x22, 0xed, 0x40, 0x20, 0xff, 0xf7, 0x34, 0xfd, 0x02, 0x21, 0x08, 0x00, 0x00, 0xf0, 0x1a, 0xed, +0x17, 0x48, 0x01, 0x68, 0x01, 0x22, 0x12, 0x07, 0x91, 0x43, 0x01, 0x60, 0x01, 0x68, 0x15, 0x4a, +0x11, 0x43, 0x01, 0x60, 0x21, 0x00, 0x08, 0x31, 0x20, 0x00, 0xff, 0xf7, 0xb7, 0xfe, 0x01, 0x20, +0xff, 0xf7, 0xf9, 0xfc, 0x00, 0xf0, 0x46, 0xed, 0x00, 0xf0, 0xbc, 0xec, 0x10, 0xbd, 0x00, 0x28, +0x00, 0xda, 0x40, 0x42, 0x70, 0x47, 0x00, 0x00, 0x00, 0x20, 0x00, 0x90, 0x28, 0x40, 0x01, 0xc0, +0x00, 0xa9, 0x00, 0x80, 0xa8, 0xf2, 0x00, 0xc0, 0xe8, 0x3e, 0x01, 0xc0, 0x40, 0x20, 0x00, 0x80, +0x8b, 0x02, 0x00, 0x00, 0x51, 0x04, 0x00, 0x00, 0x31, 0x00, 0x31, 0x00, 0xa4, 0xf6, 0x00, 0xc0, +0x00, 0x28, 0x00, 0x80, 0x00, 0x30, 0x00, 0x20, 0x00, 0x28, 0x10, 0xb5, 0x04, 0xd0, 0x08, 0x21, +0x2a, 0x20, 0x00, 0xf0, 0xd0, 0xec, 0x10, 0xbd, 0x08, 0x21, 0x2a, 0x20, 0x00, 0xf0, 0xc6, 0xec, +0x10, 0xbd, 0x00, 0x00, 0x3e, 0xb5, 0x0c, 0x22, 0x12, 0x23, 0x27, 0x4c, 0x25, 0x48, 0x60, 0x61, +0xcf, 0xfd, 0xf6, 0x67, 0x01, 0x00, 0x00, 0x00, 0xd4, 0xab, 0x02, 0xc0, 0x00, 0x04, 0x00, 0x00, +0x7a, 0xd0, 0xa9, 0xb2, 0x26, 0x4d, 0x00, 0x92, 0xe8, 0x68, 0x04, 0x22, 0x25, 0xa1, 0x00, 0xf0, +0xe4, 0xeb, 0x21, 0x48, 0x0c, 0x22, 0x3c, 0x38, 0x20, 0x61, 0x00, 0x92, 0x68, 0x68, 0x04, 0x22, +0x06, 0x23, 0x23, 0xa1, 0x00, 0xf0, 0xd8, 0xeb, 0x28, 0x00, 0x18, 0x22, 0xf0, 0x38, 0x03, 0x00, +0x00, 0x92, 0x01, 0x22, 0x00, 0x21, 0x3c, 0x33, 0x00, 0xf0, 0xfa, 0xec, 0x28, 0x00, 0x18, 0x22, +0x78, 0x38, 0x03, 0x00, 0x00, 0x92, 0x01, 0x22, 0x00, 0x21, 0x3c, 0x33, 0x00, 0xf0, 0xf0, 0xec, +0x11, 0x48, 0x64, 0x38, 0xe0, 0x60, 0x28, 0x68, 0xfd, 0xf7, 0x7e, 0xfb, 0x18, 0x4d, 0x19, 0x48, +0xa1, 0x22, 0x29, 0x00, 0x00, 0xf0, 0xa0, 0xeb, 0x17, 0x48, 0x18, 0x49, 0xa0, 0x60, 0x00, 0x22, +0x17, 0xa0, 0x6b, 0x46, 0x07, 0xc3, 0x20, 0x00, 0x12, 0x49, 0x2a, 0x00, 0x08, 0x30, 0x0c, 0x23, +0x00, 0xf0, 0xa6, 0xeb, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x20, 0x3e, 0xbd, 0x03, 0x48, 0x10, 0xb5, +0x80, 0x68, 0x00, 0xf0, 0x9a, 0xeb, 0x10, 0xbd, 0x6c, 0x41, 0x01, 0xc0, 0x60, 0xf4, 0x00, 0xc0, +0x98, 0x42, 0x01, 0xc0, 0x54, 0x69, 0x6d, 0x65, 0x72, 0x43, 0x62, 0x4d, 0x73, 0x67, 0x51, 0x00, +0x4d, 0x61, 0x63, 0x4d, 0x67, 0x6d, 0x74, 0x53, 0x4d, 0x45, 0x4d, 0x73, 0x67, 0x51, 0x00, 0x00, +0xa4, 0x06, 0x00, 0x00, 0x0c, 0x9d, 0x02, 0x00, 0x60, 0x40, 0x01, 0xc0, 0x7f, 0x54, 0x01, 0x00, +0x4d, 0x41, 0x43, 0x20, 0x4d, 0x67, 0x6d, 0x74, 0x00, 0x00, 0x00, 0x00, 0x09, 0x49, 0x01, 0x20, +0x80, 0x02, 0x10, 0xb5, 0x08, 0x80, 0x08, 0x49, 0x08, 0x80, 0x09, 0x49, 0x07, 0x48, 0x08, 0x60, +0x09, 0x49, 0x08, 0x48, 0x08, 0x60, 0x0a, 0x49, 0x08, 0x48, 0x08, 0x60, 0x00, 0xf0, 0x22, 0xf8, +0x10, 0xbd, 0x00, 0x00, 0xa8, 0xbb, 0x02, 0x00, 0xaa, 0xbb, 0x02, 0x00, 0x45, 0x8f, 0x30, 0x00, +0xac, 0xbb, 0x02, 0x00, 0xa7, 0x8f, 0x30, 0x00, 0xb0, 0xbb, 0x02, 0x00, 0x0b, 0x79, 0x00, 0xc0, +0x9c, 0xbb, 0x02, 0x00, 0x04, 0x49, 0x03, 0x48, 0x08, 0x60, 0x05, 0x49, 0x03, 0x48, 0x08, 0x60, +0x70, 0x47, 0x00, 0x00, 0x99, 0x6e, 0x02, 0x00, 0xd4, 0xbb, 0x02, 0x00, 0xa5, 0x9a, 0x01, 0x00, +0xd8, 0xbb, 0x02, 0x00, 0x02, 0x49, 0x01, 0x48, 0x08, 0x60, 0x70, 0x47, 0x05, 0x86, 0x00, 0xc0, +0xc4, 0xbb, 0x02, 0x00, 0xff, 0x21, 0x0d, 0x48, 0x49, 0x1c, 0x10, 0xb5, 0x00, 0xf0, 0x0c, 0xeb, +0x0a, 0x48, 0xff, 0x21, 0x4b, 0x31, 0x01, 0x61, 0x7d, 0x21, 0xc9, 0x00, 0x41, 0x61, 0x6e, 0x21, +0x81, 0x61, 0x7d, 0x21, 0x09, 0x01, 0xc1, 0x61, 0x05, 0x49, 0x01, 0x62, 0x00, 0xf0, 0x5c, 0xec, +0x02, 0x4a, 0x80, 0x32, 0xd1, 0x62, 0x90, 0x62, 0x10, 0xbd, 0x00, 0x00, 0xa0, 0x60, 0x02, 0xc0, +0x30, 0x75, 0x00, 0x00, 0x06, 0x48, 0x14, 0x21, 0x10, 0xb5, 0x00, 0xf0, 0xee, 0xea, 0x04, 0x49, +0x04, 0x48, 0x08, 0x60, 0x02, 0x48, 0x0c, 0x22, 0x01, 0x21, 0x00, 0xf0, 0x1a, 0xeb, 0x10, 0xbd, +0xf4, 0x61, 0x02, 0xc0, 0x74, 0x43, 0x01, 0xc0, 0x10, 0xb5, 0x00, 0xf0, 0x42, 0xec, 0x10, 0xbd, +0x05, 0x49, 0x04, 0x48, 0x08, 0x60, 0x06, 0x49, 0x04, 0x48, 0x08, 0x60, 0x06, 0x49, 0x05, 0x48, +0x08, 0x60, 0x70, 0x47, 0x8f, 0x70, 0x01, 0x00, 0xa4, 0xbc, 0x02, 0x00, 0xdd, 0x6f, 0x01, 0x00, +0xa4, 0xbb, 0x02, 0x00, 0x69, 0x70, 0x01, 0x00, 0xe4, 0xbb, 0x02, 0x00, 0x04, 0x48, 0x54, 0x21, +0x10, 0xb5, 0x00, 0xf0, 0xc2, 0xea, 0x03, 0x49, 0x00, 0x20, 0x08, 0x60, 0x10, 0xbd, 0x00, 0x00, +0x6c, 0x4c, 0x01, 0xc0, 0xa0, 0xf4, 0x00, 0xc0, 0x04, 0x49, 0x03, 0x48, 0x08, 0x60, 0x05, 0x49, +0x03, 0x48, 0x08, 0x60, 0x70, 0x47, 0x00, 0x00, 0x34, 0x15, 0x32, 0x00, 0xb0, 0xbc, 0x02, 0x00, +0x60, 0x55, 0x00, 0x04, 0xb4, 0xbc, 0x02, 0x00, 0xf0, 0xb5, 0x20, 0x20, 0x00, 0x21, 0x1e, 0x4a, +0x10, 0x60, 0x10, 0x00, 0xc0, 0x30, 0x87, 0x6b, 0x00, 0x68, 0x84, 0x46, 0x1b, 0x4b, 0x4a, 0x01, +0xd5, 0x18, 0xff, 0x33, 0x00, 0x20, 0x81, 0x33, 0xd6, 0x18, 0x82, 0x00, 0x3c, 0x68, 0xab, 0x18, +0x1c, 0x60, 0xb3, 0x18, 0x40, 0x1c, 0x00, 0x06, 0x62, 0x46, 0x12, 0x68, 0x00, 0x0e, 0x08, 0x28, +0x1a, 0x60, 0xf2, 0xd3, 0x49, 0x1c, 0x09, 0x06, 0x09, 0x0e, 0x0c, 0x29, 0xe6, 0xd3, 0x0f, 0x4c, +0x0f, 0x4d, 0x10, 0x4e, 0x00, 0x20, 0x07, 0x00, 0x0c, 0x22, 0x42, 0x43, 0x41, 0x01, 0x0b, 0x19, +0xb7, 0x50, 0x92, 0x19, 0x40, 0x1c, 0x49, 0x19, 0x00, 0x06, 0x00, 0x0e, 0x53, 0x60, 0x0c, 0x28, +0x91, 0x60, 0xf1, 0xd3, 0xf0, 0xbd, 0x04, 0x48, 0x07, 0x49, 0xc0, 0x30, 0x08, 0x60, 0x08, 0x49, +0x06, 0x48, 0x08, 0x60, 0x70, 0x47, 0x00, 0x00, 0x00, 0x1a, 0x01, 0xc0, 0xa0, 0x00, 0x02, 0xc0, +0x20, 0x02, 0x02, 0xc0, 0xa0, 0x03, 0x02, 0xc0, 0xec, 0xbb, 0x02, 0x00, 0xdd, 0xf2, 0x01, 0x00, +0xf0, 0xbb, 0x02, 0x00, 0x04, 0x49, 0x03, 0x48, 0x08, 0x60, 0x05, 0x49, 0x03, 0x48, 0x08, 0x60, +0x70, 0x47, 0x00, 0x00, 0xe5, 0x99, 0x01, 0x00, 0xa0, 0xbf, 0x02, 0x00, 0xd3, 0x98, 0x01, 0x00, +0xa4, 0xbf, 0x02, 0x00, 0x02, 0x49, 0x01, 0x48, 0x08, 0x60, 0x70, 0x47, 0x99, 0xa4, 0x01, 0x00, +0x14, 0xbc, 0x02, 0x00, 0x70, 0x47, 0x00, 0x00, 0x10, 0xb5, 0x90, 0x4c, 0x8e, 0x48, 0x60, 0x61, +0x20, 0x00, 0x14, 0x30, 0xfd, 0xf7, 0x28, 0xfa, 0xe0, 0xf7, 0xc0, 0xfb, 0xfd, 0xf7, 0x68, 0xfb, +0xff, 0xf7, 0x6c, 0xff, 0xff, 0xf7, 0x3e, 0xff, 0xff, 0xf7, 0x1c, 0xff, 0xff, 0xf7, 0x4c, 0xff, +0x87, 0x48, 0x00, 0x21, 0xfe, 0xf7, 0x79, 0xf8, 0x86, 0x49, 0x00, 0x28, 0x48, 0x60, 0x04, 0xd0, +0x01, 0x22, 0x40, 0x68, 0x11, 0x00, 0xfe, 0xf7, 0x95, 0xf8, 0x7f, 0x48, 0x0c, 0x22, 0x20, 0x38, +0x20, 0x61, 0x7e, 0x48, 0x01, 0x21, 0x10, 0x30, 0x00, 0xf0, 0x4a, 0xea, 0xfd, 0xf7, 0x70, 0xf8, +0x7d, 0x48, 0x00, 0xf0, 0x7a, 0xeb, 0xff, 0xf7, 0x67, 0xff, 0xfe, 0xf7, 0x3b, 0xf9, 0x79, 0x49, +0x7a, 0x48, 0x08, 0x31, 0x48, 0x60, 0x08, 0x00, 0xd6, 0xf7, 0x31, 0xf9, 0x00, 0xf0, 0x70, 0xeb, +0x00, 0x20, 0x10, 0xbd, 0x10, 0xb5, 0xfd, 0xf7, 0x8d, 0xfa, 0x00, 0x28, 0x0b, 0xd1, 0xfe, 0xf7, +0xf1, 0xf8, 0x00, 0x28, 0x07, 0xd1, 0xff, 0xf7, 0x37, 0xfe, 0x00, 0x28, 0x03, 0xd1, 0xfd, 0xf7, +0x97, 0xfc, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x20, 0x10, 0xbd, 0x10, 0xb5, 0xff, 0xf7, 0x76, 0xfe, +0xfd, 0xf7, 0xc8, 0xfc, 0xfd, 0xf7, 0x70, 0xfa, 0xfe, 0xf7, 0xfe, 0xf8, 0x00, 0x20, 0x10, 0xbd, +0xf8, 0xb5, 0x00, 0x25, 0x66, 0x48, 0xff, 0xf7, 0x1f, 0xfb, 0x66, 0x4c, 0x67, 0x49, 0x22, 0x68, +0x00, 0x92, 0x65, 0x4a, 0x66, 0x48, 0x62, 0x4b, 0x00, 0xf0, 0x46, 0xeb, 0x22, 0x68, 0x00, 0x92, +0x64, 0x4a, 0x65, 0x49, 0x65, 0x48, 0x66, 0x4b, 0x00, 0xf0, 0x3e, 0xeb, 0x22, 0x68, 0x00, 0x92, +0x64, 0x4a, 0x65, 0x49, 0x65, 0x48, 0x66, 0x4b, 0x00, 0xf0, 0x36, 0xeb, 0x22, 0x68, 0x00, 0x92, +0x64, 0x4a, 0x65, 0x49, 0x65, 0x48, 0x66, 0x4b, 0x00, 0xf0, 0x2e, 0xeb, 0x22, 0x68, 0x00, 0x92, +0x63, 0x88, 0xcf, 0x2b, 0x01, 0x00, 0x00, 0x00, 0xd0, 0xaf, 0x02, 0xc0, 0x00, 0x04, 0x00, 0x00, +0x29, 0x0a, 0x7a, 0xde, 0x64, 0x4a, 0x65, 0x49, 0x65, 0x48, 0x66, 0x4b, 0x00, 0xf0, 0x26, 0xeb, +0x22, 0x68, 0x00, 0x92, 0x64, 0x4a, 0x65, 0x49, 0x65, 0x48, 0x66, 0x4b, 0x00, 0xf0, 0x1e, 0xeb, +0x22, 0x68, 0x00, 0x92, 0x64, 0x4a, 0x65, 0x49, 0x65, 0x48, 0x66, 0x4b, 0x00, 0xf0, 0x16, 0xeb, +0x22, 0x68, 0x00, 0x92, 0x64, 0x4a, 0x65, 0x49, 0x65, 0x48, 0x66, 0x4b, 0x00, 0xf0, 0x0e, 0xeb, +0x22, 0x68, 0x00, 0x92, 0x64, 0x4a, 0x65, 0x49, 0x65, 0x48, 0x66, 0x4b, 0x00, 0xf0, 0x06, 0xeb, +0x22, 0x68, 0x00, 0x92, 0x64, 0x4a, 0x65, 0x49, 0x65, 0x48, 0x66, 0x4b, 0x00, 0xf0, 0xfe, 0xea, +0x22, 0x68, 0x00, 0x92, 0x64, 0x4a, 0x65, 0x49, 0x65, 0x48, 0x66, 0x4b, 0x00, 0xf0, 0xf6, 0xea, +0x00, 0x28, 0x04, 0xd0, 0x64, 0x48, 0x00, 0xf0, 0xf6, 0xea, 0xd6, 0xf7, 0x5b, 0xf8, 0x00, 0xf0, +0xf6, 0xea, 0x00, 0x28, 0x05, 0xd0, 0x60, 0x48, 0x40, 0x1c, 0x00, 0xf0, 0xec, 0xea, 0xd6, 0xf7, +0x51, 0xf8, 0xfd, 0xf7, 0xbd, 0xfa, 0x5d, 0x4e, 0x00, 0x24, 0xa0, 0x00, 0x30, 0x58, 0x80, 0x47, +0x00, 0x28, 0x00, 0xd0, 0x01, 0x25, 0x64, 0x1c, 0x05, 0x2c, 0xf6, 0xd3, 0x28, 0x00, 0xf8, 0xbd, +0x57, 0x49, 0x3f, 0x48, 0x10, 0xb5, 0x08, 0x60, 0x00, 0xf0, 0x48, 0xf9, 0x00, 0xf0, 0xd2, 0xf8, +0xfe, 0xf7, 0x4e, 0xf8, 0xfd, 0xf7, 0x80, 0xf9, 0xfd, 0xf7, 0x3e, 0xfa, 0xfd, 0xf7, 0xd4, 0xff, +0x00, 0xf0, 0x1a, 0xf9, 0xff, 0xf7, 0x10, 0xff, 0x00, 0xf0, 0xc2, 0xf8, 0xfe, 0xf7, 0x00, 0xf8, +0xff, 0xf7, 0xfe, 0xfd, 0x00, 0xf0, 0xe2, 0xf8, 0xfd, 0xf7, 0xca, 0xfa, 0xfe, 0xf7, 0xb4, 0xf8, +0x00, 0xf0, 0x90, 0xf8, 0xfd, 0xf7, 0x54, 0xfa, 0xfd, 0xf7, 0x2d, 0xfc, 0xff, 0xf7, 0xcd, 0xfe, +0x00, 0xf0, 0xfa, 0xf8, 0xfe, 0xf7, 0xc8, 0xf8, 0xff, 0xf7, 0x80, 0xfe, 0x00, 0xf0, 0xdc, 0xf8, +0xff, 0xf7, 0x58, 0xfe, 0x00, 0xf0, 0xe0, 0xf8, 0xfd, 0xf7, 0xbe, 0xfa, 0xfc, 0xf7, 0xf4, 0xff, +0xff, 0xf7, 0xe2, 0xfe, 0xfe, 0xf7, 0x92, 0xf8, 0xfd, 0xf7, 0xa0, 0xfa, 0x00, 0xf0, 0xa2, 0xea, +0x00, 0xf0, 0xba, 0xf8, 0xff, 0xf7, 0xf8, 0xfd, 0x00, 0x20, 0x10, 0xbd, 0xe4, 0x50, 0x01, 0xc0, +0xe8, 0x1c, 0x01, 0xc0, 0xbb, 0xa7, 0x31, 0x00, 0x34, 0xf6, 0x00, 0xc0, 0xf4, 0x76, 0x02, 0x00, +0x45, 0xb5, 0x00, 0xc0, 0x40, 0xfa, 0x00, 0xc0, 0x0c, 0xf1, 0x00, 0xc0, 0xf8, 0x48, 0x00, 0x04, +0x50, 0x00, 0x00, 0x04, 0x44, 0x00, 0x00, 0x04, 0x4c, 0x49, 0x00, 0x04, 0x08, 0x01, 0x00, 0x04, +0xfc, 0x00, 0x00, 0x04, 0x80, 0xc5, 0x01, 0xc0, 0x68, 0x01, 0x00, 0x04, 0xe0, 0x00, 0x00, 0x04, +0xd4, 0x00, 0x00, 0x04, 0x88, 0xbd, 0x01, 0xc0, 0x08, 0x49, 0x00, 0x04, 0x64, 0x00, 0x00, 0x04, +0x58, 0x00, 0x00, 0x04, 0x00, 0x7b, 0x01, 0xc0, 0x18, 0x49, 0x00, 0x04, 0x78, 0x00, 0x00, 0x04, +0x6c, 0x00, 0x00, 0x04, 0x00, 0x88, 0x01, 0xc0, 0x6c, 0x01, 0x00, 0x04, 0xf4, 0x00, 0x00, 0x04, +0xe8, 0x00, 0x00, 0x04, 0x50, 0x66, 0x01, 0xc0, 0x60, 0x01, 0x00, 0x04, 0x94, 0x00, 0x00, 0x04, +0x88, 0x00, 0x00, 0x04, 0x0c, 0x9d, 0x01, 0xc0, 0x64, 0x01, 0x00, 0x04, 0xa8, 0x00, 0x00, 0x04, +0x9c, 0x00, 0x00, 0x04, 0xfc, 0xa4, 0x01, 0xc0, 0x34, 0x49, 0x00, 0x04, 0xbc, 0x00, 0x00, 0x04, +0xb0, 0x00, 0x00, 0x04, 0x00, 0xad, 0x01, 0xc0, 0x98, 0x49, 0x00, 0x04, 0x58, 0x01, 0x00, 0x04, +0x4c, 0x01, 0x00, 0x04, 0xa0, 0xf8, 0x01, 0xc0, 0x58, 0x49, 0x00, 0x04, 0x1c, 0x01, 0x00, 0x04, +0x10, 0x01, 0x00, 0x04, 0x50, 0xdd, 0x01, 0xc0, 0x23, 0x00, 0x01, 0x00, 0x7c, 0xb6, 0x02, 0xc0, +0x64, 0xba, 0x02, 0x00, 0x02, 0x49, 0x01, 0x48, 0x08, 0x60, 0x70, 0x47, 0xff, 0xff, 0x00, 0x00, +0x48, 0xbc, 0x02, 0x00, 0x0a, 0x48, 0x00, 0x21, 0xc9, 0x43, 0x00, 0xb5, 0x41, 0x60, 0x00, 0x21, +0x01, 0x60, 0x08, 0x48, 0x01, 0x68, 0x01, 0x22, 0x92, 0x05, 0x11, 0x43, 0x01, 0x60, 0x07, 0x49, +0x05, 0x48, 0x08, 0x80, 0x09, 0x1f, 0x08, 0x80, 0x00, 0xf0, 0x18, 0xea, 0x00, 0xbd, 0x00, 0x00, +0x90, 0xf6, 0x00, 0xc0, 0x00, 0x21, 0x00, 0x80, 0xff, 0xff, 0x00, 0x00, 0x50, 0x06, 0x00, 0x90, +0x70, 0x47, 0x00, 0x00, 0x08, 0x49, 0x07, 0x48, 0x08, 0x60, 0x09, 0x49, 0x07, 0x48, 0x08, 0x60, +0x09, 0x49, 0x08, 0x48, 0x08, 0x60, 0x0a, 0x49, 0x08, 0x48, 0x08, 0x60, 0x09, 0x49, 0x1e, 0x20, +0x08, 0x60, 0x70, 0x47, 0x7d, 0xf5, 0x01, 0x00, 0x20, 0xbb, 0x02, 0x00, 0xa3, 0xf5, 0x01, 0x00, +0x24, 0xbb, 0x02, 0x00, 0xb3, 0xf5, 0x01, 0x00, 0x28, 0xbb, 0x02, 0x00, 0xcf, 0xf5, 0x01, 0x00, +0x2c, 0xbb, 0x02, 0x00, 0x30, 0xbb, 0x02, 0x00, 0x70, 0x47, 0x00, 0x00, 0x04, 0x49, 0x03, 0x48, +0x08, 0x60, 0x04, 0x49, 0x7d, 0x20, 0x00, 0x01, 0x08, 0x60, 0x70, 0x47, 0x44, 0x00, 0x00, 0x04, +0xc8, 0xbb, 0x02, 0x00, 0xcc, 0xbb, 0x02, 0x00, 0x02, 0x49, 0x01, 0x48, 0x08, 0x60, 0x70, 0x47, +0x01, 0xca, 0x00, 0xc0, 0xdc, 0xbb, 0x02, 0x00, 0x04, 0x49, 0x03, 0x48, 0x08, 0x60, 0x05, 0x49, +0x03, 0x48, 0x08, 0x60, 0x70, 0x47, 0x00, 0x00, 0xa7, 0x0d, 0x02, 0x00, 0xa8, 0xbc, 0x02, 0x00, +0xbf, 0x0d, 0x02, 0x00, 0xac, 0xbc, 0x02, 0x00, 0x02, 0x49, 0x01, 0x48, 0x08, 0x60, 0x70, 0x47, +0x38, 0x12, 0x32, 0x00, 0x78, 0xbb, 0x02, 0x00, 0x07, 0x49, 0x0a, 0x20, 0x08, 0x60, 0x08, 0x49, +0x06, 0x48, 0x08, 0x60, 0x08, 0x49, 0x07, 0x48, 0x08, 0x60, 0x09, 0x49, 0x07, 0x48, 0x08, 0x60, +0x09, 0x49, 0x08, 0x48, 0x08, 0x60, 0x70, 0x47, 0xf8, 0xbb, 0x02, 0x00, 0x78, 0x84, 0x02, 0x00, +0xfc, 0xbb, 0x02, 0x00, 0x0c, 0x87, 0x02, 0x00, 0x08, 0xbc, 0x02, 0x00, 0x81, 0xf8, 0x00, 0x00, +0x00, 0xbc, 0x02, 0x00, 0xa7, 0xd1, 0x00, 0x00, 0x04, 0xbc, 0x02, 0x00, 0x02, 0x49, 0x01, 0x48, +0x08, 0x60, 0x70, 0x47, 0xb9, 0x0f, 0x02, 0x00, 0x10, 0xbc, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x8f, 0xb3, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc5, 0x00, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xc1, 0x00, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x27, 0xb4, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x94, 0xcb, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xb9, 0x01, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x35, 0xec, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x01, 0x88, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x45, 0xf9, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc5, 0xfa, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x1c, 0x12, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xad, 0xfc, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xb3, 0xfb, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x7d, 0x70, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xb9, 0x10, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x81, 0x10, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x31, 0x11, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x5f, 0x11, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0xf9, 0xb2, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xad, 0x86, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, +0x79, 0x3d, 0x9d, 0xc2, 0x01, 0x00, 0x00, 0x00, 0xcc, 0xb3, 0x02, 0xc0, 0xc8, 0x02, 0x00, 0x00, +0x1c, 0x03, 0x81, 0x3d, 0x0d, 0x86, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x71, 0x77, 0x30, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x0b, 0xb7, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x13, 0xb7, 0x30, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x43, 0xa8, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xa7, 0xf5, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x23, 0xe0, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x50, 0x13, 0x02, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x18, 0xc6, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xeb, 0xf8, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xfc, 0xd4, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc7, 0x0e, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xbd, 0xdf, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xfb, 0x0e, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x11, 0xe0, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x59, 0xe0, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xd3, 0xe1, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x39, 0xf3, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x27, 0xf6, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xc7, 0xf5, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xdd, 0xf7, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x97, 0xf7, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x2d, 0xf7, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x65, 0xf5, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xd7, 0xf6, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x7b, 0xf5, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x05, 0xf3, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x49, 0xf5, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x91, 0xf5, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xbb, 0xf9, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x9f, 0xf9, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xcf, 0xf8, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xdb, 0xf8, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xad, 0xf3, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xb1, 0xfa, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x2d, 0xf5, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x23, 0xf4, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xd7, 0xf9, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xe8, 0xcb, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x9f, 0xe7, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x11, 0x24, 0x02, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x1f, 0x24, 0x02, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xe7, 0x01, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x23, 0x02, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x23, 0xb8, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x85, 0xb8, 0x30, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xa1, 0x44, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xbd, 0x3e, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xf7, 0x3e, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x4f, 0x3f, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x35, 0x3f, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xf9, 0x15, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x31, 0x16, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x81, 0x16, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x6b, 0x16, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x41, 0x2d, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x37, 0x2d, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x4d, 0x2d, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x79, 0x2d, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xdd, 0x2d, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xc1, 0x2d, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x91, 0x2d, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xa9, 0x2d, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x65, 0x41, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x8b, 0x2e, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x4b, 0x16, 0x31, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x49, 0x32, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x81, 0xf9, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xa1, 0x32, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x05, 0x42, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x29, 0x42, 0x01, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x4d, 0x66, 0x30, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xf5, 0x1b, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0xe5, 0x6b, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xcd, 0x00, 0x31, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x8d, 0xbd, 0x01, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x01, 0x89, 0x30, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x09, 0x01, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0xad, 0xc7, 0x00, 0x00, 0x04, 0xf0, 0x1f, 0xe5, 0x0d, 0x4f, 0x00, 0x00, +0x04, 0xf0, 0x1f, 0xe5, 0x79, 0xee, 0x01, 0x00, 0x73, 0x82, 0x02, 0xc0, 0x4b, 0x80, 0x02, 0xc0, +0x7d, 0xb0, 0x02, 0xc0, 0x91, 0x8f, 0x02, 0xc0, 0xbd, 0x81, 0x02, 0xc0, 0xf3, 0x81, 0x02, 0xc0, +0x79, 0x80, 0x02, 0xc0, 0x45, 0x82, 0x02, 0xc0, 0x81, 0xaf, 0x02, 0xc0, 0x19, 0x82, 0x02, 0xc0, +0x00, 0x00, 0x00, 0x00, 0xaf, 0xb5, 0x00, 0xc0, 0xc7, 0xb5, 0x00, 0xc0, 0xc9, 0xae, 0x02, 0xc0, +0x45, 0xaf, 0x02, 0xc0, 0x6b, 0xaf, 0x02, 0xc0, 0x4a, 0xdc, 0xb1, 0x0c, 0x04, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0xdb, 0x8c, 0x18, }; +#endif + + +uint32_t platform_get_wifi_image_size(void) +{ + return sizeof(wifi_firmware_image); +} + +uint32_t platform_get_wifi_image(unsigned char* buffer, uint32_t size, uint32_t offset) +{ + uint32_t buffer_size; + buffer_size = MIN(size, (sizeof(wifi_firmware_image) - offset)); + + memcpy(buffer, &wifi_firmware_image[offset], buffer_size); + + return buffer_size; +} + +#else + +const uint8_t *wifi_firmware_image2 = (uint8_t *)DRIVER_START_ADDRESS; + +static uint32_t image_size = DRIVER_FLASH_SIZE; + +uint32_t platform_get_wifi_image_size(void) +{ + uint32_t FlashAddress = DRIVER_START_ADDRESS + DRIVER_FLASH_SIZE - 0x4; + uint32_t imageTail; + + MicoFlashRead(MICO_FLASH_FOR_DRIVER, &FlashAddress, (uint8_t *)&imageTail, 4); + while(imageTail == 0xFFFFFFFF) { + image_size-= 4; + FlashAddress -=8; + MicoFlashRead(MICO_FLASH_FOR_DRIVER, &FlashAddress, (uint8_t *)&imageTail, 4); + } + + return image_size; +} + +uint32_t platform_get_wifi_image(unsigned char* buffer, uint32_t size, uint32_t offset) +{ + uint32_t buffer_size; + uint32_t FlashAddress = DRIVER_START_ADDRESS; + + buffer_size = MIN(size, (image_size - offset)); + FlashAddress += offset; + + MicoFlashRead(MICO_FLASH_FOR_DRIVER, &FlashAddress, buffer, buffer_size); + return buffer_size; +} +#endif diff --git a/Platform/Common/Cortex-M4/STM32F4xx/EMW1088_Driver/wlan_bus.c b/Platform/Common/Cortex-M4/STM32F4xx/EMW1088_Driver/wlan_bus.c new file mode 100644 index 00000000..a109b704 --- /dev/null +++ b/Platform/Common/Cortex-M4/STM32F4xx/EMW1088_Driver/wlan_bus.c @@ -0,0 +1,711 @@ +/** +****************************************************************************** +* @file wlan_bus.h +* @author William Xu +* @version V1.0.0 +* @date 16-Sep-2014 +* @brief This file provides bus communication functions with Wi-Fi RF chip. +****************************************************************************** +* +* The MIT License +* Copyright (c) 2014 MXCHIP Inc. +* +* Permission is hereby granted, free of charge, to any person obtaining a copy +* of this software and associated documentation files (the "Software"), to deal +* in the Software without restriction, including without limitation the rights +* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +* copies of the Software, and to permit persons to whom the Software is furnished +* to do so, subject to the following conditions: +* +* The above copyright notice and this permission notice shall be included in +* all copies or substantial portions of the Software. +* +* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +* IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +****************************************************************************** +*/ + +#include "MicoRtos.h" +#include "misc.h" +#include "string.h" /* For memcpy */ +#include "gpio_irq.h" +#include "platform_common_config.h" +#include "stm32f4xx_platform.h" +#include "PlatformLogging.h" + +/* Powersave functionality */ +extern void MCU_CLOCKS_NEEDED( void ); +extern void MCU_CLOCKS_NOT_NEEDED( void ); + +#ifndef MICO_DISABLE_MCU_POWERSAVE +extern void wake_up_interrupt_notify( void ); +#define MCU_NOTIFY_WAKE_UP() wake_up_interrupt_notify() +#else +#define MCU_NOTIFY_WAKE_UP() +#endif /* ifndef MICO_DISABLE_MCU_POWERSAVE */ + +/****************************************************** + * Constants + ******************************************************/ + +#define COMMAND_FINISHED_CMD52_TIMEOUT_LOOPS (100000) +#define COMMAND_FINISHED_CMD53_TIMEOUT_LOOPS (100000) +#define SDIO_TX_RX_COMPLETE_TIMEOUT_LOOPS (100000) +#define SDIO_DMA_TIMEOUT_LOOPS (1000000) +#define MAX_TIMEOUTS (30) + +#define SDIO_ERROR_MASK ( SDIO_STA_CCRCFAIL | SDIO_STA_DCRCFAIL | SDIO_STA_CTIMEOUT | SDIO_STA_DTIMEOUT | SDIO_STA_TXUNDERR | SDIO_STA_RXOVERR | SDIO_STA_STBITERR ) + +/** + * Transfer direction for the mico platform bus interface + */ +typedef enum +{ + /* If updating this enum, the bus_direction_mapping variable will also need to be updated */ + BUS_READ, + BUS_WRITE +} bus_transfer_direction_t; + + +static const uint32_t bus_direction_mapping[] = +{ + [BUS_READ] = SDIO_TransferDir_ToSDIO, + [BUS_WRITE] = SDIO_TransferDir_ToCard +}; + +#define SDIO_IRQ_CHANNEL ((u8)0x31) +#define DMA2_3_IRQ_CHANNEL ((u8)DMA2_Stream3_IRQn) + +#define WL_GPIO_INTR_PIN_NUM EXTI_PinSource0 +#define WL_GPIO_INTR_PORT_SRC EXTI_PortSourceGPIOB +#define WL_GPIO_INTR_ILINE EXTI_Line0 +#define WL_GPIO_INTR_CHAN 0x06 + +#define BUS_LEVEL_MAX_RETRIES 5 + +#define SDIO_ENUMERATION_TIMEOUT_MS (500) + + +/****************************************************** + * Enumerations + ******************************************************/ + +/* + * SDIO specific constants + */ +typedef enum +{ + SDIO_CMD_0 = 0, + SDIO_CMD_3 = 3, + SDIO_CMD_5 = 5, + SDIO_CMD_7 = 7, + SDIO_CMD_52 = 52, + SDIO_CMD_53 = 53, + __MAX_VAL = 64 +} sdio_command_t; + +typedef enum +{ + SDIO_BLOCK_MODE = ( 0 << 2 ), /* These are STM32 implementation specific */ + SDIO_BYTE_MODE = ( 1 << 2 ) /* These are STM32 implementation specific */ +} sdio_transfer_mode_t; + +typedef enum +{ + SDIO_1B_BLOCK = 1, + SDIO_2B_BLOCK = 2, + SDIO_4B_BLOCK = 4, + SDIO_8B_BLOCK = 8, + SDIO_16B_BLOCK = 16, + SDIO_32B_BLOCK = 32, + SDIO_64B_BLOCK = 64, + SDIO_128B_BLOCK = 128, + SDIO_256B_BLOCK = 256, + SDIO_512B_BLOCK = 512, + SDIO_1024B_BLOCK = 1024, + SDIO_2048B_BLOCK = 2048 +} sdio_block_size_t; + +typedef enum +{ + RESPONSE_NEEDED, + NO_RESPONSE +} sdio_response_needed_t; + +/****************************************************** + * Structures + ******************************************************/ + +typedef struct +{ + /*@shared@*/ /*@null@*/ uint8_t* data; + uint16_t length; +} sdio_dma_segment_t; + +/****************************************************** + * Variables + ******************************************************/ + +//static uint8_t temp_dma_buffer[2*1024]; +//static uint8_t* user_data; +//static uint32_t user_data_size; +static uint8_t* dma_data_source; +static uint32_t dma_transfer_size; + +static mico_semaphore_t sdio_transfer_finished_semaphore; + +static bool sdio_transfer_failed; +static bus_transfer_direction_t current_transfer_direction; +static uint32_t current_command; + +/****************************************************** + * Function declarations + ******************************************************/ + +static uint32_t sdio_get_blocksize_dctrl ( sdio_block_size_t block_size ); +static sdio_block_size_t find_optimal_block_size ( uint32_t data_size ); +static void sdio_prepare_data_transfer ( bus_transfer_direction_t direction, sdio_block_size_t block_size, /*@unique@*/ uint8_t* data, uint16_t data_size ) /*@modifies dma_data_source, user_data, user_data_size, dma_transfer_size@*/; + +void dma_irq ( void ); +OSStatus host_platform_sdio_transfer( bus_transfer_direction_t direction, sdio_command_t command, sdio_transfer_mode_t mode, sdio_block_size_t block_size, uint32_t argument, /*@null@*/ uint32_t* data, uint16_t data_size, sdio_response_needed_t response_expected, /*@out@*/ /*@null@*/ uint32_t* response ); +extern void wiced_platform_notify_irq( void ); +void sdio_enable_it_irq(void); +void sdio_disable_it_irq(void); + + +/****************************************************** + * Function definitions + ******************************************************/ + +static void sdio_oob_irq_handler( void* arg ) +{ + UNUSED_PARAMETER(arg); + MCU_NOTIFY_WAKE_UP( ); + wiced_platform_notify_irq( ); +} + +void sdio_irq( void ) +{ + uint32_t intstatus = SDIO->STA; + + if ( ( intstatus & ( SDIO_STA_CCRCFAIL | SDIO_STA_DCRCFAIL | SDIO_STA_TXUNDERR | SDIO_STA_RXOVERR | SDIO_STA_STBITERR )) != 0 ) + { + sdio_transfer_failed = true; + SDIO->ICR = (uint32_t) 0xffffffff; + mico_rtos_set_semaphore( &sdio_transfer_finished_semaphore ); + } + else + { + if ((intstatus & (SDIO_STA_CMDREND | SDIO_STA_CMDSENT)) != 0) + { + if ( ( SDIO->RESP1 & 0x800 ) != 0 ) + { + sdio_transfer_failed = true; + mico_rtos_set_semaphore( &sdio_transfer_finished_semaphore ); + } + else if (current_command == SDIO_CMD_53) + { + if (current_transfer_direction == BUS_WRITE) + { + DMA2_Stream3->CR = DMA_DIR_MemoryToPeripheral | + DMA_Channel_4 | DMA_PeripheralInc_Disable | DMA_MemoryInc_Enable | + DMA_PeripheralDataSize_Word | DMA_MemoryDataSize_Word | + DMA_Mode_Normal | DMA_Priority_VeryHigh | + DMA_MemoryBurst_INC4 | DMA_PeripheralBurst_INC4 | DMA_SxCR_PFCTRL | DMA_SxCR_EN | DMA_SxCR_TCIE; + } + else + { + DMA2_Stream3->CR = DMA_DIR_PeripheralToMemory | + DMA_Channel_4 | DMA_PeripheralInc_Disable | DMA_MemoryInc_Enable | + DMA_PeripheralDataSize_Word | DMA_MemoryDataSize_Word | + DMA_Mode_Normal | DMA_Priority_VeryHigh | + DMA_MemoryBurst_INC4 | DMA_PeripheralBurst_INC4 | DMA_SxCR_PFCTRL | DMA_SxCR_EN | DMA_SxCR_TCIE; + } + } + + /* Clear all command/response interrupts */ + SDIO->ICR = (SDIO_STA_CMDREND | SDIO_STA_CMDSENT); + } + } + /* Check whether the external interrupt was triggered */ + if ( ( intstatus & SDIO_STA_SDIOIT ) != 0 ) + { + /* Clear the interrupt and then inform WICED thread */ + SDIO->ICR = SDIO_ICR_SDIOITC; + sdio_disable_it_irq(); + wiced_platform_notify_irq( ); + } +} + +/*@-exportheader@*/ /* Function picked up by linker script */ +void dma_irq( void ) +{ + OSStatus result; + + /* Clear interrupt */ + DMA2->LIFCR = (uint32_t) (0x3F << 22); + + result = mico_rtos_set_semaphore( &sdio_transfer_finished_semaphore ); + + /* check result if in debug mode */ + check_string(result == kNoErr, "failed to set dma semaphore" ); + + /*@-noeffect@*/ + (void) result; /* ignore result if in release mode */ + /*@+noeffect@*/ +} +/*@+exportheader@*/ + +static void sdio_enable_bus_irq( void ) +{ + SDIO->MASK = SDIO_MASK_SDIOITIE | SDIO_MASK_CMDRENDIE | SDIO_MASK_CMDSENTIE; +} + +static void sdio_disable_bus_irq( void ) +{ + SDIO->MASK = 0; +} + +void sdio_enable_it_irq(void) +{ + SDIO->MASK |= SDIO_MASK_SDIOITIE; +} + +void sdio_disable_it_irq(void) +{ + SDIO->MASK &= ~SDIO_MASK_SDIOITIE; +} + +OSStatus host_enable_oob_interrupt( void ) +{ + MicoGpioInitialize( (mico_gpio_t)WL_GPIO1, INPUT_PULL_UP ); + MicoGpioEnableIRQ( (mico_gpio_t)WL_GPIO1, IRQ_TRIGGER_FALLING_EDGE, sdio_oob_irq_handler, 0 ); + + return kNoErr; +} + +bool host_platform_is_sdio_int_asserted(void) +{ + if (MicoGpioInputGet((mico_gpio_t)WL_GPIO1) == true)//SDIO D1 is high + return false; + else + return true; // SDIO D1 is low, data need read +} + + +uint8_t host_platform_get_oob_interrupt_pin( void ) +{ + if ( ( gpio_mapping[ WL_GPIO1 ].bank == SDIO_OOB_IRQ_BANK ) && ( gpio_mapping[ WL_GPIO1 ].number == SDIO_OOB_IRQ_PIN ) ) + { + /* WLAN GPIO1 */ + return 1; + } + else + { + /* WLAN GPIO0 */ + return 0; + } +} + +static void sdio_gpio_deinit(void) +{ + /* Clear GPIO pins for SDIO data & clock */ + SDIO_CMD_BANK->MODER &= ((uint32_t) ~(3 << (2*SDIO_CMD_PIN))); + SDIO_CLK_BANK->MODER &= ((uint32_t) ~(3 << (2*SDIO_CLK_PIN))); + SDIO_D0_BANK->MODER &= ((uint32_t) ~(3 << (2*SDIO_D0_PIN ))); + SDIO_D1_BANK->MODER &= ((uint32_t) ~(3 << (2*SDIO_D1_PIN ))); + SDIO_D2_BANK->MODER &= ((uint32_t) ~(3 << (2*SDIO_D2_PIN ))); + SDIO_D3_BANK->MODER &= ((uint32_t) ~(3 << (2*SDIO_D3_PIN ))); + SDIO_CMD_BANK->OTYPER &= ((uint32_t) ~(GPIO_OType_OD << SDIO_CMD_PIN)); + SDIO_CLK_BANK->OTYPER &= ((uint32_t) ~(GPIO_OType_OD << SDIO_CLK_PIN)); + SDIO_D0_BANK->OTYPER &= ((uint32_t) ~(GPIO_OType_OD << SDIO_D0_PIN )); + SDIO_D1_BANK->OTYPER &= ((uint32_t) ~(GPIO_OType_OD << SDIO_D1_PIN )); + SDIO_D2_BANK->OTYPER &= ((uint32_t) ~(GPIO_OType_OD << SDIO_D2_PIN )); + SDIO_D3_BANK->OTYPER &= ((uint32_t) ~(GPIO_OType_OD << SDIO_D3_PIN )); +} + +OSStatus host_platform_bus_init( void ) +{ + SDIO_InitTypeDef sdio_init_structure; + NVIC_InitTypeDef nvic_init_structure; + OSStatus result; + + MCU_CLOCKS_NEEDED(); + + result = mico_rtos_init_semaphore( &sdio_transfer_finished_semaphore, 1 ); + if ( result != kNoErr ) + { + return result; + } + + /* Turn on SDIO IRQ */ + SDIO->ICR = (uint32_t) 0xffffffff; + nvic_init_structure.NVIC_IRQChannel = SDIO_IRQ_CHANNEL; + /* Must be lower priority than the value of configMAX_SYSCALL_INTERRUPT_PRIORITY */ + /* otherwise FreeRTOS will not be able to mask the interrupt */ + /* keep in mind that ARMCM3 interrupt priority logic is inverted, the highest value */ + /* is the lowest priority */ + nvic_init_structure.NVIC_IRQChannelPreemptionPriority = (uint8_t) 0x2; + nvic_init_structure.NVIC_IRQChannelSubPriority = 0x0; + nvic_init_structure.NVIC_IRQChannelCmd = ENABLE; + NVIC_Init( &nvic_init_structure ); + + nvic_init_structure.NVIC_IRQChannel = DMA2_3_IRQ_CHANNEL; + nvic_init_structure.NVIC_IRQChannelPreemptionPriority = (uint8_t) 0x3; + nvic_init_structure.NVIC_IRQChannelSubPriority = 0x0; + nvic_init_structure.NVIC_IRQChannelCmd = ENABLE; + NVIC_Init( &nvic_init_structure ); + + RCC_AHB1PeriphClockCmd( SDIO_CMD_BANK_CLK | SDIO_CLK_BANK_CLK | SDIO_D0_BANK_CLK | SDIO_D1_BANK_CLK | SDIO_D2_BANK_CLK | SDIO_D3_BANK_CLK, ENABLE ); + + /* Set GPIO_B[1:0] to 00 to put WLAN module into SDIO mode */ + + MicoGpioInitialize( (mico_gpio_t)WL_GPIO0, OUTPUT_PUSH_PULL ); + MicoGpioOutputLow( (mico_gpio_t)WL_GPIO0 ); + + MicoGpioInitialize( (mico_gpio_t)WL_GPIO1, OUTPUT_PUSH_PULL ); + MicoGpioOutputLow( (mico_gpio_t)WL_GPIO1 ); + + sdio_gpio_deinit(); + + /* Setup GPIO pins for SDIO data & clock */ + SDIO_CMD_BANK->MODER |= (GPIO_Mode_AF << (2*SDIO_CMD_PIN)); + SDIO_CLK_BANK->MODER |= (GPIO_Mode_AF << (2*SDIO_CLK_PIN)); + SDIO_D0_BANK->MODER |= (GPIO_Mode_AF << (2*SDIO_D0_PIN)); +#ifndef SDIO_1_BIT + SDIO_D1_BANK->MODER |= (GPIO_Mode_AF << (2*SDIO_D1_PIN)); + SDIO_D2_BANK->MODER |= (GPIO_Mode_AF << (2*SDIO_D2_PIN)); + SDIO_D3_BANK->MODER |= (GPIO_Mode_AF << (2*SDIO_D3_PIN)); +#endif + + SDIO_CMD_BANK->OSPEEDR |= (GPIO_Speed_50MHz << (2*SDIO_CMD_PIN)); + SDIO_CLK_BANK->OSPEEDR |= (GPIO_Speed_50MHz << (2*SDIO_CLK_PIN)); + SDIO_D0_BANK->OSPEEDR |= (GPIO_Speed_50MHz << (2*SDIO_D0_PIN)); +#ifndef SDIO_1_BIT + + SDIO_D1_BANK->OSPEEDR |= (GPIO_Speed_50MHz << (2*SDIO_D1_PIN)); + SDIO_D2_BANK->OSPEEDR |= (GPIO_Speed_50MHz << (2*SDIO_D2_PIN)); + SDIO_D3_BANK->OSPEEDR |= (GPIO_Speed_50MHz << (2*SDIO_D3_PIN)); +#endif + SDIO_CMD_BANK->PUPDR |= (GPIO_PuPd_UP << (2*SDIO_CMD_PIN)); + SDIO_CLK_BANK->PUPDR |= (GPIO_PuPd_UP << (2*SDIO_CLK_PIN)); + SDIO_D0_BANK->PUPDR |= (GPIO_PuPd_UP << (2*SDIO_D0_PIN)); + SDIO_D1_BANK->PUPDR |= (GPIO_PuPd_UP << (2*SDIO_D1_PIN)); + SDIO_D2_BANK->PUPDR |= (GPIO_PuPd_UP << (2*SDIO_D2_PIN)); + SDIO_D3_BANK->PUPDR |= (GPIO_PuPd_UP << (2*SDIO_D3_PIN)); + + SDIO_CMD_BANK->AFR[SDIO_CMD_PIN >> 0x03] |= (GPIO_AF_SDIO << (4*(SDIO_CMD_PIN & 0x07))); + SDIO_CLK_BANK->AFR[SDIO_CLK_PIN >> 0x03] |= (GPIO_AF_SDIO << (4*(SDIO_CLK_PIN & 0x07))); + SDIO_D0_BANK->AFR[SDIO_D0_PIN >> 0x03] |= (GPIO_AF_SDIO << (4*(SDIO_D0_PIN & 0x07))); +#ifndef SDIO_1_BIT + + SDIO_D1_BANK->AFR[SDIO_D1_PIN >> 0x03] |= (GPIO_AF_SDIO << (4*(SDIO_D1_PIN & 0x07))); + SDIO_D2_BANK->AFR[SDIO_D2_PIN >> 0x03] |= (GPIO_AF_SDIO << (4*(SDIO_D2_PIN & 0x07))); + SDIO_D3_BANK->AFR[SDIO_D3_PIN >> 0x03] |= (GPIO_AF_SDIO << (4*(SDIO_D3_PIN & 0x07))); +#endif + /*!< Enable the SDIO AHB Clock and the DMA2 Clock */ + RCC_AHB1PeriphClockCmd( RCC_AHB1Periph_DMA2, ENABLE ); + RCC_APB2PeriphClockCmd( RCC_APB2Periph_SDIO, ENABLE ); + + SDIO_DeInit( ); + sdio_init_structure.SDIO_ClockDiv = (uint8_t) 120; /* 0x78, clock is taken from the high speed APB bus ; */ /* About 400KHz */ + sdio_init_structure.SDIO_ClockEdge = SDIO_ClockEdge_Rising; + sdio_init_structure.SDIO_ClockBypass = SDIO_ClockBypass_Disable; + sdio_init_structure.SDIO_ClockPowerSave = SDIO_ClockPowerSave_Enable; + sdio_init_structure.SDIO_BusWide = SDIO_BusWide_1b; + sdio_init_structure.SDIO_HardwareFlowControl = SDIO_HardwareFlowControl_Disable; + SDIO_Init( &sdio_init_structure ); + SDIO_SetPowerState( SDIO_PowerState_ON ); + SDIO_SetSDIOReadWaitMode( SDIO_ReadWaitMode_CLK ); + SDIO_ClockCmd( ENABLE ); + + MCU_CLOCKS_NOT_NEEDED(); + + return kNoErr; +} + +OSStatus host_platform_sdio_enumerate( void ) +{ + OSStatus result; + uint32_t loop_count; + uint32_t data = 0; + + loop_count = 0; + do + { + /* Send CMD0 to set it to idle state */ + host_platform_sdio_transfer( BUS_WRITE, SDIO_CMD_0, SDIO_BYTE_MODE, SDIO_1B_BLOCK, 0, 0, 0, NO_RESPONSE, NULL ); + + /* CMD5. */ + host_platform_sdio_transfer( BUS_READ, SDIO_CMD_5, SDIO_BYTE_MODE, SDIO_1B_BLOCK, 0, 0, 0, NO_RESPONSE, NULL ); + + /* Send CMD3 to get RCA. */ + result = host_platform_sdio_transfer( BUS_READ, SDIO_CMD_3, SDIO_BYTE_MODE, SDIO_1B_BLOCK, 0, 0, 0, RESPONSE_NEEDED, &data ); + loop_count++; + if ( loop_count >= (uint32_t) SDIO_ENUMERATION_TIMEOUT_MS ) + { + return kTimeoutErr; + } + } while ( ( result != kNoErr ) && ( mico_thread_msleep( (uint32_t) 1 ), ( 1 == 1 ) ) ); + /* If you're stuck here, check the platform matches your hardware */ + + /* Send CMD7 with the returned RCA to select the card */ + host_platform_sdio_transfer( BUS_WRITE, SDIO_CMD_7, SDIO_BYTE_MODE, SDIO_1B_BLOCK, data, 0, 0, RESPONSE_NEEDED, NULL ); + + return kNoErr; +} + +OSStatus host_platform_bus_deinit( void ) +{ + NVIC_InitTypeDef nvic_init_structure; + OSStatus result; + + result = mico_rtos_deinit_semaphore( &sdio_transfer_finished_semaphore ); + + MCU_CLOCKS_NEEDED(); + + /* Disable SPI and SPI DMA */ + sdio_disable_bus_irq( ); + SDIO_ClockCmd( DISABLE ); + SDIO_SetPowerState( SDIO_PowerState_OFF ); + SDIO_DeInit( ); +// RCC_AHB1PeriphClockCmd( RCC_AHB1Periph_DMA2, DISABLE ); + RCC_APB2PeriphClockCmd( RCC_APB2Periph_SDIO, DISABLE ); + + sdio_gpio_deinit(); + /* Clear GPIO_B[1:0] */ + MicoGpioFinalize( (mico_gpio_t)WL_GPIO0 ); + MicoGpioFinalize( (mico_gpio_t)WL_GPIO1 ); + /* Turn off SDIO IRQ */ + nvic_init_structure.NVIC_IRQChannel = SDIO_IRQ_CHANNEL; + nvic_init_structure.NVIC_IRQChannelCmd = DISABLE; + nvic_init_structure.NVIC_IRQChannelPreemptionPriority = 0x0; + nvic_init_structure.NVIC_IRQChannelSubPriority = 0; + NVIC_Init( &nvic_init_structure ); + + MCU_CLOCKS_NOT_NEEDED(); + + return result; +} + +OSStatus host_platform_sdio_transfer( bus_transfer_direction_t direction, sdio_command_t command, sdio_transfer_mode_t mode, sdio_block_size_t block_size, uint32_t argument, /*@null@*/ uint32_t* data, uint16_t data_size, sdio_response_needed_t response_expected, /*@out@*/ /*@null@*/ uint32_t* response ) +{ + uint32_t loop_count = 0; + OSStatus result; + uint16_t attempts = 0; + + check_string(!((command == SDIO_CMD_53) && (data == NULL)), "Bad args" ); + + if ( response != NULL ) + { + *response = 0; + } + + MCU_CLOCKS_NEEDED(); + + /* Ensure the bus isn't stuck half way through transfer */ + DMA2_Stream3->CR = 0; + +restart: + SDIO->ICR = (uint32_t) 0xFFFFFFFF; + sdio_transfer_failed = false; + ++attempts; + + /* Check if we've tried too many times */ + if (attempts >= (uint16_t) BUS_LEVEL_MAX_RETRIES) + { + result = kGeneralErr; + goto exit; + } + + /* Prepare the data transfer register */ + current_command = command; + if ( command == SDIO_CMD_53 ) + { + sdio_enable_bus_irq(); + + /* Dodgy STM32 hack to set the CMD53 byte mode size to be the same as the block size */ + if ( mode == SDIO_BYTE_MODE ) + { + block_size = find_optimal_block_size( data_size ); + if ( block_size < SDIO_512B_BLOCK ) + { + argument = ( argument & (uint32_t) ( ~0x1FF ) ) | block_size; + } + else + { + argument = ( argument & (uint32_t) ( ~0x1FF ) ); + } + } + + /* Prepare the SDIO for a data transfer */ + current_transfer_direction = direction; + sdio_prepare_data_transfer( direction, block_size, (uint8_t*) data, data_size ); + + /* Send the command */ + SDIO->ARG = argument; + SDIO->CMD = (uint32_t) ( command | SDIO_Response_Short | SDIO_Wait_No | SDIO_CPSM_Enable ); + + /* Wait for the whole transfer to complete */ + result = mico_rtos_get_semaphore( &sdio_transfer_finished_semaphore, (uint32_t) 50 ); + if ( result != kNoErr ) + { + goto exit; + } + + if ( sdio_transfer_failed == true ) + { + goto restart; + } + + /* Check if there were any SDIO errors */ + require(( SDIO->STA & ( SDIO_STA_DTIMEOUT | SDIO_STA_CTIMEOUT ) ) == 0, restart); + require_string(( SDIO->STA & ( SDIO_STA_CCRCFAIL | SDIO_STA_DCRCFAIL | SDIO_STA_TXUNDERR | SDIO_STA_RXOVERR ) ) == 0, restart, "SDIO communication failure"); + + /* Wait till complete */ + loop_count = (uint32_t) SDIO_TX_RX_COMPLETE_TIMEOUT_LOOPS; + do + { + loop_count--; + if ( loop_count == 0 || ( ( SDIO->STA & SDIO_ERROR_MASK ) != 0 ) ) + { + goto restart; + } + } while ( ( SDIO->STA & ( SDIO_STA_TXACT | SDIO_STA_RXACT ) ) != 0 ); + + } + else + { + uint32_t temp_sta; + + /* Send the command */ + SDIO->ARG = argument; + SDIO->CMD = (uint32_t) ( command | SDIO_Response_Short | SDIO_Wait_No | SDIO_CPSM_Enable ); + + loop_count = (uint32_t) COMMAND_FINISHED_CMD52_TIMEOUT_LOOPS; + do + { + temp_sta = SDIO->STA; + loop_count--; + if ( loop_count == 0 || ( ( response_expected == RESPONSE_NEEDED ) && ( ( temp_sta & SDIO_ERROR_MASK ) != 0 ) ) ) + { + goto restart; + } + } while ( ( temp_sta & SDIO_FLAG_CMDACT ) != 0 ); + } + + if ( response != NULL ) + { + *response = SDIO->RESP1; + } + result = kNoErr; + +exit: + MCU_CLOCKS_NOT_NEEDED(); + SDIO->MASK = SDIO_MASK_SDIOITIE; + return result; +} + + +static void sdio_prepare_data_transfer( bus_transfer_direction_t direction, sdio_block_size_t block_size, /*@unique@*/ uint8_t* data, uint16_t data_size ) /*@modifies dma_data_source, user_data, user_data_size, dma_transfer_size@*/ +{ + /* Setup a single transfer using the temp buffer */ + //user_data = data; + //user_data_size = data_size; + dma_transfer_size = (uint32_t) ( ( ( data_size + (uint16_t) block_size - 1 ) / (uint16_t) block_size ) * (uint16_t) block_size ); + dma_data_source = data; + + + SDIO->DTIMER = (uint32_t) 0xFFFFFFFF; + SDIO->DLEN = dma_transfer_size; + SDIO->DCTRL = (uint32_t)sdio_get_blocksize_dctrl(block_size) | bus_direction_mapping[(int)direction] | SDIO_TransferMode_Block | SDIO_DPSM_Enable | (1 << 3) | (1 << 11); + + /* DMA2 Stream3 */ + DMA2_Stream3->CR = 0; + DMA2->LIFCR = (uint32_t) ( 0x3F << 22 ); + DMA2_Stream3->FCR = (uint32_t) ( 0x00000021 | DMA_FIFOMode_Enable | DMA_FIFOThreshold_Full ); + DMA2_Stream3->PAR = (uint32_t) &SDIO->FIFO; + DMA2_Stream3->M0AR = (uint32_t) dma_data_source; + DMA2_Stream3->NDTR = dma_transfer_size/4; +} + + + +void host_platform_enable_high_speed_sdio( void ) +{ + SDIO_InitTypeDef sdio_init_structure; + + sdio_init_structure.SDIO_ClockDiv = (uint8_t) 0; /* 0 = 24MHz if SDIO clock = 48MHz */ + sdio_init_structure.SDIO_ClockEdge = SDIO_ClockEdge_Rising; + sdio_init_structure.SDIO_ClockBypass = SDIO_ClockBypass_Disable; + sdio_init_structure.SDIO_ClockPowerSave = SDIO_ClockPowerSave_Disable; +#ifndef SDIO_1_BIT + sdio_init_structure.SDIO_BusWide = SDIO_BusWide_4b; +#else + sdio_init_structure.SDIO_BusWide = SDIO_BusWide_1b; +#endif + sdio_init_structure.SDIO_HardwareFlowControl = SDIO_HardwareFlowControl_Disable; + + SDIO_DeInit( ); + SDIO_Init( &sdio_init_structure ); + SDIO_SetPowerState( SDIO_PowerState_ON ); + SDIO_ClockCmd( ENABLE ); + sdio_enable_bus_irq( ); +} + +static sdio_block_size_t find_optimal_block_size( uint32_t data_size ) +{ + if ( data_size > (uint32_t) 256 ) + return SDIO_512B_BLOCK; + if ( data_size > (uint32_t) 128 ) + return SDIO_256B_BLOCK; + if ( data_size > (uint32_t) 64 ) + return SDIO_128B_BLOCK; + if ( data_size > (uint32_t) 32 ) + return SDIO_64B_BLOCK; + if ( data_size > (uint32_t) 16 ) + return SDIO_32B_BLOCK; + if ( data_size > (uint32_t) 8 ) + return SDIO_16B_BLOCK; + if ( data_size > (uint32_t) 4 ) + return SDIO_8B_BLOCK; + if ( data_size > (uint32_t) 2 ) + return SDIO_4B_BLOCK; + + return SDIO_4B_BLOCK; +} + +static uint32_t sdio_get_blocksize_dctrl(sdio_block_size_t block_size) +{ + switch (block_size) + { + case SDIO_1B_BLOCK: return SDIO_DataBlockSize_1b; + case SDIO_2B_BLOCK: return SDIO_DataBlockSize_2b; + case SDIO_4B_BLOCK: return SDIO_DataBlockSize_4b; + case SDIO_8B_BLOCK: return SDIO_DataBlockSize_8b; + case SDIO_16B_BLOCK: return SDIO_DataBlockSize_16b; + case SDIO_32B_BLOCK: return SDIO_DataBlockSize_32b; + case SDIO_64B_BLOCK: return SDIO_DataBlockSize_64b; + case SDIO_128B_BLOCK: return SDIO_DataBlockSize_128b; + case SDIO_256B_BLOCK: return SDIO_DataBlockSize_256b; + case SDIO_512B_BLOCK: return SDIO_DataBlockSize_512b; + case SDIO_1024B_BLOCK: return SDIO_DataBlockSize_1024b; + case SDIO_2048B_BLOCK: return SDIO_DataBlockSize_2048b; + default: return 0; + } +} + +void SDIO_IRQHandler(void) +{ + /* Process All SDIO Interrupt Sources */ + sdio_irq(); +} + +void DMA2_Stream3_IRQHandler(void) +{ + dma_irq(); +} diff --git a/Platform/Common/Cortex-M4/STM32F4xx/EMW1088_Driver/wlan_platform.c b/Platform/Common/Cortex-M4/STM32F4xx/EMW1088_Driver/wlan_platform.c new file mode 100644 index 00000000..7e26e0d0 --- /dev/null +++ b/Platform/Common/Cortex-M4/STM32F4xx/EMW1088_Driver/wlan_platform.c @@ -0,0 +1,184 @@ +/** +****************************************************************************** +* @file wlan_platform.c +* @author William Xu +* @version V1.0.0 +* @date 05-May-2014 +* @brief This file provide functions called by MICO to wlan RF module +****************************************************************************** +* +* The MIT License +* Copyright (c) 2014 MXCHIP Inc. +* +* Permission is hereby granted, free of charge, to any person obtaining a copy +* of this software and associated documentation files (the "Software"), to deal +* in the Software without restriction, including without limitation the rights +* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +* copies of the Software, and to permit persons to whom the Software is furnished +* to do so, subject to the following conditions: +* +* The above copyright notice and this permission notice shall be included in +* all copies or substantial portions of the Software. +* +* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +* IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +****************************************************************************** +*/ + +#include +#include "stm32f4xx.h" +#include "gpio_irq.h" +#include "platform.h" +#include "platform_common_config.h" +#include "MICOPlatform.h" + +/****************************************************** + * Macros + ******************************************************/ +#ifdef __GNUC__ +#define TRIGGER_BREAKPOINT() __asm__("bkpt") +#elif defined ( __IAR_SYSTEMS_ICC__ ) +#define TRIGGER_BREAKPOINT() __asm("bkpt 0") +#endif + +/****************************************************** + * Constants + ******************************************************/ + +/****************************************************** + * Enumerations + ******************************************************/ + +/****************************************************** + * Type Definitions + ******************************************************/ + +/****************************************************** + * Structures + ******************************************************/ + +/****************************************************** + * Function Declarations + ******************************************************/ + +static OSStatus platform_reset_wlan_powersave_clock( void ); + +extern void host_platform_reset_wifi( bool reset_asserted ); + +extern void host_platform_power_wifi( bool power_enabled ); + +/****************************************************** + * Variables Definitions + ******************************************************/ + +/****************************************************** + * Function Definitions + ******************************************************/ + +OSStatus host_platform_init( void ) +{ + platform_reset_wlan_powersave_clock( ); + + MicoGpioInitialize((mico_gpio_t)WL_RESET, OUTPUT_PUSH_PULL); + host_platform_reset_wifi( true ); /* Start wifi chip in reset */ + + MicoGpioInitialize((mico_gpio_t)WL_REG, OUTPUT_PUSH_PULL); + host_platform_power_wifi( false ); /* Start wifi chip with regulators off */ + + return kNoErr; +} + +OSStatus host_platform_deinit( void ) +{ + MicoGpioInitialize((mico_gpio_t)WL_RESET, OUTPUT_PUSH_PULL); + host_platform_reset_wifi( true ); /* Stop wifi chip in reset */ + + MicoGpioInitialize((mico_gpio_t)WL_REG, OUTPUT_PUSH_PULL); + host_platform_power_wifi( false ); /* Stop wifi chip with regulators off */ + + platform_reset_wlan_powersave_clock( ); + + return kNoErr; +} + +bool host_platform_is_in_interrupt_context( void ) +{ + /* From the ARM Cortex-M3 Techinical Reference Manual + * 0xE000ED04 ICSR RW [a] Privileged 0x00000000 Interrupt Control and State Register */ + uint32_t active_interrupt_vector = (uint32_t)( SCB ->ICSR & 0x3fU ); + + if ( active_interrupt_vector != 0 ) + { + return true; + } + else + { + return false; + } +} + + +OSStatus host_platform_init_wlan_powersave_clock( void ) +{ +#if ( MICO_WLAN_POWERSAVE_CLOCK_SOURCE == MICO_WLAN_POWERSAVE_CLOCK_IS_PWM ) + + MicoPwmInitialize( (mico_pwm_t) MICO_PWM_WLAN_POWERSAVE_CLOCK, WLAN_POWERSAVE_CLOCK_FREQUENCY, WLAN_POWERSAVE_CLOCK_DUTY_CYCLE ); + MicoPwmStart( (mico_pwm_t) MICO_PWM_WLAN_POWERSAVE_CLOCK ); + return kNoErr; + +#elif ( MICO_WLAN_POWERSAVE_CLOCK_SOURCE == MICO_WLAN_POWERSAVE_CLOCK_IS_MCO ) + + GPIO_InitTypeDef gpio_init_structure; + + /* Enable the GPIO peripherals related to the 32kHz clock pin */ + RCC_AHB1PeriphClockCmd( WL_32K_OUT_BANK_CLK, ENABLE ); + + /* Setup the 32k clock pin to 0 */ + gpio_init_structure.GPIO_Speed = GPIO_Speed_100MHz; + gpio_init_structure.GPIO_Mode = GPIO_Mode_AF; + gpio_init_structure.GPIO_OType = GPIO_OType_PP; + gpio_init_structure.GPIO_PuPd = GPIO_PuPd_NOPULL; + + /* configure PA8 in alternate function mode */ + gpio_init_structure.GPIO_Pin = 1 << WL_32K_OUT_PIN; + GPIO_Init( WL_32K_OUT_BANK, &gpio_init_structure ); + GPIO_PinAFConfig( WL_32K_OUT_BANK, WL_32K_OUT_PIN, GPIO_AF_MCO ); + + /* enable LSE output on MCO1 */ + RCC_MCO1Config( RCC_MCO1Source_LSE, RCC_MCO1Div_1 ); + + return kNoErr; + +#else + + return platform_reset_wlan_powersave_clock( ); + +#endif +} + +OSStatus host_platform_deinit_wlan_powersave_clock( void ) +{ +#if ( MICO_WLAN_POWERSAVE_CLOCK_SOURCE == MICO_WLAN_POWERSAVE_CLOCK_IS_PWM ) + + MicoPwmStop( (mico_pwm_t) MICO_PWM_WLAN_POWERSAVE_CLOCK ); + platform_reset_wlan_powersave_clock( ); + return kNoErr; + +#else + + return platform_reset_wlan_powersave_clock( ); + +#endif +} + +static OSStatus platform_reset_wlan_powersave_clock( void ) +{ + /* Tie the pin to ground */ + MicoGpioInitialize( (mico_gpio_t) MICO_GPIO_WLAN_POWERSAVE_CLOCK, OUTPUT_PUSH_PULL ); + MicoGpioOutputLow( (mico_gpio_t) MICO_GPIO_WLAN_POWERSAVE_CLOCK ); + return kNoErr; +} diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/Release_Notes.html b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/Release_Notes.html index cfdbb9e9..82e09cfb 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/Release_Notes.html +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/Release_Notes.html @@ -898,9 +898,9 @@

Release Notes for STM32F4xx Standard - Peripherals Library Drivers

+ Peripherals  Drivers

Copyright - 2012 STMicroelectronics

+ 2014 STMicroelectronics

@@ -916,7 +916,157 @@

License

STM32F4xx - Standard Peripherals Library Drivers  update History

V1.0.2 / 05-March-2012

+ Standard Peripherals Library Drivers  update History

V1.4.0 / 04-August-2014

Main +Changes

+ + + +
  • Add support of STM32F411xExx devices
    • stm32f4xx_rcc.c/.h:
      •  Update RCC_PLLI2SConfig() function to configure the new I2S parameter: PLLI2SM
      •  Add new defines for LSE mode: RCC_LSE_LOWPOWER_MODE and RCC_LSE_HIGHDRIVE_MODE
      •  Add new function to configure LSE mode: RCC_LSEModeConfig()
    • +stm32f4xx_flash.c/.h:
      • Update IS_FLASH_ADDRESS() macro
      +
    • stm32f4xx_gpio.c/.h: +
      •  Add new defines for the new alternate functions
      +
    • stm32f4xx_flash_ramfunc.c/.h: +
      • Add +new driver for ram functions
      +
    • stm32f4xx_pwr.c/.h: +
      • Fix PWR_EnterSTANDBYMode() to not +clear Wakeup flag (WUF): this flag need to be cleared at application level +before to call this function.
      •  Add new function to ENABLE/DISABLE the main regulator low voltage: PWR_MainRegulatorLowVoltageCmd()
      •  Add new function to ENABLE/DISABLE the low regulator low voltage: PWR_LowRegulatorLowVoltageCmd()
  • Limitation Fix:
    • stm32f4xx_spi.c/h
      • Update I2S_Init() to support HSI oscillator as PLL source.
    • stm32f4xx_gpio.c/h
      • Update assert macro IS_GPIO_AF() macro to work as expected
    • stm32f4xx_fmc.c/h and stm32f4xx_fsmc.c/h
      • Update the FSMC_NORSRAMStructInit() function to point the FSMC_DefaultTimingStruct and FSMC_DefaultTimingStruct parameters on a default const structure.

V1.3.0 / 08-November-2013

Main +Changes

+ + + +
  • Add support of STM32F401xExx devices
  • stm32f4xx_gpio.c/h
    • Update + GPIOSpeed_TypeDef structure’s fields name to be in line with GPIO out + speed definition in the product Reference Manual
    • Add + a legacy defines to keep compatibility with previous version
  • stm32f4xx_flash.c/h
    • File’s header comments: update + description of the maximum AHB frequency vs. voltage scaling + configuration
+

V1.2.1 / 19-September-2013

+

Main +Changes

+ +
  • + +

    stm32f4xx_pwr.c/.h 

    • + +

      Add +new function to configure the Under-Drive STOP Mode : PWR_EnterUnderDriveSTOPMode(uint32_t +PWR_Regulator, uint8_t PWR_STOPEntry) only used in case of STM32F427/437/429/439xx devices.

      +

V1.2.0 / 11-September-2013

+

Main +Changes

+ +
  • + +

    Add +support of STM32F429/439xx and STM32F401xCxx devices

  • Update definition of STM32F427/437xx devices : extension +of the features to include system clock up to 180MHz, dual bank Flash, reduced +STOP Mode current, SAI, PCROP, SDRAM and DMA2D
  • Add drivers for new +peripherals of STM32F4xx STM32F427/437xx and STM32F429/439xx devices: +
    • stm32f4xx_dma2d.h/.c +
    • stm32f4xx_fmc.h/.c +
    • stm32f4xx_ltdc.h/.c +
    • stm32f4xx_sai.h/.c
  • + +

    stm32f4xx_adc.c/.h 

    • Update +the Temperature sensor channel for STM32F427/STM32F437x/STM32F429x/STM32F439x +devices from Channel 16 to Channel 18
    • + + + +

      Add +a note in ADC_VBATCmd() header function to inform that the Voltage measured is +VBAT/2 in case of STM3240xxx/41xxx and VBAT/4 in case of STM32F42xxx/43xxx.

    • In +ADC_GetSoftwareStartConvStatus() function, replace "ADC_CR2_JSWSTART" +by "ADC_CR2_SWSTART"

  • stm32f4xx_flash.c/.h
    • Update +the header file descriptioon, add the table of number of wait states +according to system frequency selected for all STM32F4xx family devices
    • Update FLASH_EraseAllSectors() function to support the erase for all sectors within Bank1 and Bank2 in case of STM32F42/43xxx devices
    • Add new FLASH Latency values: FLASH_Latency_8, FLASH_Latency_9, FLASH_Latency_10, FLASH_Latency_11, FLASH_Latency_12, FLASH_Latency_13, FLASH_Latency_14, FLASH_Latency_15.
    • Add new flag error in FLASH_Status structure: " FLASH_ERROR_RD"
    • Add new functions: 
      • FLASH_EraseAllBank1Sectors(): mass erase in bank 1 (Half mass erase)
      • FLASH_EraseAllBank2Sectors(): mass erase in Bank 2 (Half mass erase)
      • FLASH_OB_BootConfig(): configure Dual bank boot mode
      • FLASH_OB_PCROPSelectionConfig(): select PCROP feature
      • FLASH_OB_WRP1Config(): configure write protection from Sector 12 to sector 23
      • FLASH_OB_PCROPConfig(): configure PC read/write protection from Sector 0 to sector 11
      • FLASH_OB_PCROP1Config(): configure PC read/write protection from Sector12 to sector23
      • FLASH_OB_GetWRP1(): Read the write protected sectors from 12 to 23
      • FLASH_OB_GetPCROP(): Read the PC read/write protected sectors from 0 to 11
      • FLASH_OB_GetPCROP1(): Read the PC read/write protected sectors from 12 to 23
  • stm32f4xx_gpio.c/.h
    • Update GPIO_DeInit() function : Add GPIOJ, GPIOK clock reset/enable
    • Add a new alternate function for I2C2 and I2C3 :
      • #define +GPIO_AF9_I2C2          +((uint8_t)0x09)  /* I2C2 Alternate Function mapping */
      • #define +GPIO_AF9_I2C3          +((uint8_t)0x09)  /* I2C3 Alternate Function mapping */
    • Update all functions header +comments.
  • stm32f4xx_rcc.c/.h
    • Add new definitions for new +peripherals: SAI1, LTDC, FMC
    • Add a new parameter in RCC_PLLI2SConfig() function : PLLI2SQ to specifies the division factor for SAI1 clock
    • Add new functions: 
      • RCC_PLLSAIConfig(), RCC_PLLSAICmd()PLL SAI Clock configuration
      • Add new function RCC_SAICLKConfig()SAI clock division factors configuration
      • RCC_LCDCLKConfig(): LCD clock division factors configuration
  • stm32l1xx_syscfg.c/.h
    • Add new SYSCFG port sources configurations : EXTI_PortSourceGPIOJ, EXTI_PortSourceGPIOK +
    • Add new function SYSCFG_MemorySwappingBank(): swap between bank 1 and Bank 2
  • + +

    stm32f4xx_pwr.c/.h + 

    • + + + +

      Add +more details and update comments in functions and groups description

    • + +

      Add the following functions to +configure the Over-drive and Under-drive Modes :

      • PWR_OverDriveCmd()

      • + +

        PWR_OverDriveSWCmd()

      • PWR_UnderDriveCmd()

V1.1.0 / +11-Janury-2013

+

Main +Changes

+
  • Official release for STM32F427x/437x devices. +
  • stm32f4xx_cryp.c/.h +
    • Update CRYP_Init() function : add the support +for new algorithms (GCM/CCM). +
    • Add new function : CRYP_PhaseConfig() used for new AES-GCM and +AES-CCM algorithms. +
    • CRYP_InitTypeDef structure : update all +structure fields from uint16_t to uint32_t and update all driver functions  +parameters and the correpondant define to be declared with uint32_t type. +
    • Replace the "CRYP_ContextSave->CR_bits9to2" by +"CRYP_ContextSave->CurrentConfig".
+
  • stm32f4xx_flash.c/.h +
    • Update FLASH sectors numbers "FLASH_Sector_x" with x = +0..23. +
    • Update +FLASH_EraseAllSectors() function to support mass erase +for STM32F427x/437x +devices.
+
  • stm32f4xx_gpio.c/.h +
    • Add Alternate functions for new peripherals: SPI4, SPI5, SPI6, UART7, +UART8.
    +
    • Update all functions header +comment.
    +
  • stm32f4xx_hash.c/.h +
    • Update HASH_GetDigest() function : add the +HASH_DIGEST structure. +
    • Add new function HASH_AutoStartDigest(). +
    • Update HASH_MsgDigest structure: to support SHA-224 +and SHA-256 modes. +
    •  Update HASH_Context structure. +
    • Update some define using bit definitions already +declared in stm32f4xx.h.
    +
  • stm32f4xx_i2c.c/.h +
    • Add new functions:
    +
      • I2C_AnalogFilterCmd(): enable/disable the +analog I2C filters.
      • I2C_DigitalFilterConfig(): configure the +digital I2C filters.
    +
  • stm32f4xx_pwr.c/.h + +
    • Add new argument +"PWR_Regulator_Voltage_Scale3"  to PWR_MainRegulatorModeConfig() +function to be in line with Reference Manual +description.
+
  • stm32f4xx_rcc.c/.h +
    • Add new definitions for new +peripherals: SPI4, SPI5, +SPI6, SAI1, UART7, UART8. +
    • Add a new parameter in RCC_PLLI2SConfig() function : PLLI2SQ to specifies the division factor for +SAI1 clock. +
    • Add RCC_TIMCLKPresConfig() function +: TIMER Prescaler +selection. 
    +
  • stm32l1xx_spi.c/.h +
    • Update to support SPI4, SPI5, +SPI6.
    +
    • Update all functions header +comment.
    +
  • stm32l1xx_usart.c/.h +
    • Update to support UART7 and +UART8. +
    • Update all functions header +comment.

V1.0.2 / 05-March-2012

Main Changes

diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/misc.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/misc.h index 04396df6..6c2fa6a5 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/misc.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/misc.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file misc.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the miscellaneous * firmware library functions (add-on to CMSIS functions). ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_adc.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_adc.h index 49e02352..ce79d8e6 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_adc.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_adc.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_adc.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the ADC firmware * library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -325,7 +325,14 @@ typedef struct #define ADC_Channel_17 ((uint8_t)0x11) #define ADC_Channel_18 ((uint8_t)0x12) +#if defined (STM32F40_41xxx) #define ADC_Channel_TempSensor ((uint8_t)ADC_Channel_16) +#endif /* STM32F40_41xxx */ + +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) || defined (STM32F401xx) || defined (STM32F411xE) +#define ADC_Channel_TempSensor ((uint8_t)ADC_Channel_18) +#endif /* STM32F427_437xx || STM32F429_439xx || STM32F401xx || STM32F411xE */ + #define ADC_Channel_Vrefint ((uint8_t)ADC_Channel_17) #define ADC_Channel_Vbat ((uint8_t)ADC_Channel_18) diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_can.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_can.h index 9e6975c8..790e5002 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_can.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_can.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_can.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the CAN firmware * library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_crc.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_crc.h index 8cf1153b..9fb34f9e 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_crc.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_crc.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_crc.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the CRC firmware * library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_cryp.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_cryp.h index b687b2b4..2d70d8b2 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_cryp.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_cryp.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_cryp.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the Cryptographic * processor(CRYP) firmware library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -52,14 +52,14 @@ */ typedef struct { - uint16_t CRYP_AlgoDir; /*!< Encrypt or Decrypt. This parameter can be a + uint32_t CRYP_AlgoDir; /*!< Encrypt or Decrypt. This parameter can be a value of @ref CRYP_Algorithm_Direction */ - uint16_t CRYP_AlgoMode; /*!< TDES-ECB, TDES-CBC, DES-ECB, DES-CBC, AES-ECB, - AES-CBC, AES-CTR, AES-Key. This parameter can be - a value of @ref CRYP_Algorithm_Mode */ - uint16_t CRYP_DataType; /*!< 32-bit data, 16-bit data, bit data or bit-string. + uint32_t CRYP_AlgoMode; /*!< TDES-ECB, TDES-CBC, DES-ECB, DES-CBC, AES-ECB, + AES-CBC, AES-CTR, AES-Key, AES-GCM and AES-CCM. + This parameter can be a value of @ref CRYP_Algorithm_Mode */ + uint32_t CRYP_DataType; /*!< 32-bit data, 16-bit data, bit data or bit string. This parameter can be a value of @ref CRYP_Data_Type */ - uint16_t CRYP_KeySize; /*!< Used only in AES mode only : 128, 192 or 256 bit + uint32_t CRYP_KeySize; /*!< Used only in AES mode only : 128, 192 or 256 bit key length. This parameter can be a value of @ref CRYP_Key_Size_for_AES_only */ }CRYP_InitTypeDef; @@ -94,14 +94,14 @@ typedef struct */ typedef struct { - /*!< Configuration */ - uint32_t CR_bits9to2; - /*!< KEY */ + /*!< Current Configuration */ + uint32_t CR_CurrentConfig; + /*!< IV */ uint32_t CRYP_IV0LR; uint32_t CRYP_IV0RR; uint32_t CRYP_IV1LR; uint32_t CRYP_IV1RR; - /*!< IV */ + /*!< KEY */ uint32_t CRYP_K0LR; uint32_t CRYP_K0RR; uint32_t CRYP_K1LR; @@ -110,6 +110,8 @@ typedef struct uint32_t CRYP_K2RR; uint32_t CRYP_K3LR; uint32_t CRYP_K3RR; + uint32_t CRYP_CSGCMCCMR[8]; + uint32_t CRYP_CSGCMR[8]; }CRYP_Context; @@ -136,31 +138,54 @@ typedef struct */ /*!< TDES Modes */ -#define CRYP_AlgoMode_TDES_ECB ((uint16_t)0x0000) -#define CRYP_AlgoMode_TDES_CBC ((uint16_t)0x0008) +#define CRYP_AlgoMode_TDES_ECB ((uint32_t)0x00000000) +#define CRYP_AlgoMode_TDES_CBC ((uint32_t)0x00000008) /*!< DES Modes */ -#define CRYP_AlgoMode_DES_ECB ((uint16_t)0x0010) -#define CRYP_AlgoMode_DES_CBC ((uint16_t)0x0018) +#define CRYP_AlgoMode_DES_ECB ((uint32_t)0x00000010) +#define CRYP_AlgoMode_DES_CBC ((uint32_t)0x00000018) /*!< AES Modes */ -#define CRYP_AlgoMode_AES_ECB ((uint16_t)0x0020) -#define CRYP_AlgoMode_AES_CBC ((uint16_t)0x0028) -#define CRYP_AlgoMode_AES_CTR ((uint16_t)0x0030) -#define CRYP_AlgoMode_AES_Key ((uint16_t)0x0038) +#define CRYP_AlgoMode_AES_ECB ((uint32_t)0x00000020) +#define CRYP_AlgoMode_AES_CBC ((uint32_t)0x00000028) +#define CRYP_AlgoMode_AES_CTR ((uint32_t)0x00000030) +#define CRYP_AlgoMode_AES_Key ((uint32_t)0x00000038) +#define CRYP_AlgoMode_AES_GCM ((uint32_t)0x00080000) +#define CRYP_AlgoMode_AES_CCM ((uint32_t)0x00080008) #define IS_CRYP_ALGOMODE(ALGOMODE) (((ALGOMODE) == CRYP_AlgoMode_TDES_ECB) || \ ((ALGOMODE) == CRYP_AlgoMode_TDES_CBC)|| \ - ((ALGOMODE) == CRYP_AlgoMode_DES_ECB)|| \ + ((ALGOMODE) == CRYP_AlgoMode_DES_ECB) || \ ((ALGOMODE) == CRYP_AlgoMode_DES_CBC) || \ ((ALGOMODE) == CRYP_AlgoMode_AES_ECB) || \ ((ALGOMODE) == CRYP_AlgoMode_AES_CBC) || \ ((ALGOMODE) == CRYP_AlgoMode_AES_CTR) || \ - ((ALGOMODE) == CRYP_AlgoMode_AES_Key)) + ((ALGOMODE) == CRYP_AlgoMode_AES_Key) || \ + ((ALGOMODE) == CRYP_AlgoMode_AES_GCM) || \ + ((ALGOMODE) == CRYP_AlgoMode_AES_CCM)) /** * @} */ - + +/** @defgroup CRYP_Phase + * @{ + */ + +/*!< The phases are valid only for AES-GCM and AES-CCM modes */ +#define CRYP_Phase_Init ((uint32_t)0x00000000) +#define CRYP_Phase_Header CRYP_CR_GCM_CCMPH_0 +#define CRYP_Phase_Payload CRYP_CR_GCM_CCMPH_1 +#define CRYP_Phase_Final CRYP_CR_GCM_CCMPH + +#define IS_CRYP_PHASE(PHASE) (((PHASE) == CRYP_Phase_Init) || \ + ((PHASE) == CRYP_Phase_Header) || \ + ((PHASE) == CRYP_Phase_Payload) || \ + ((PHASE) == CRYP_Phase_Final)) + +/** + * @} + */ + /** @defgroup CRYP_Data_Type * @{ */ @@ -266,23 +291,24 @@ void CRYP_KeyStructInit(CRYP_KeyInitTypeDef* CRYP_KeyInitStruct); void CRYP_IVInit(CRYP_IVInitTypeDef* CRYP_IVInitStruct); void CRYP_IVStructInit(CRYP_IVInitTypeDef* CRYP_IVInitStruct); void CRYP_Cmd(FunctionalState NewState); - +void CRYP_PhaseConfig(uint32_t CRYP_Phase); +void CRYP_FIFOFlush(void); /* CRYP Data processing functions *********************************************/ void CRYP_DataIn(uint32_t Data); uint32_t CRYP_DataOut(void); -void CRYP_FIFOFlush(void); /* CRYP Context swapping functions ********************************************/ ErrorStatus CRYP_SaveContext(CRYP_Context* CRYP_ContextSave, CRYP_KeyInitTypeDef* CRYP_KeyInitStruct); void CRYP_RestoreContext(CRYP_Context* CRYP_ContextRestore); -/* CRYP's DMA interface function **********************************************/ +/* CRYP DMA interface function ************************************************/ void CRYP_DMACmd(uint8_t CRYP_DMAReq, FunctionalState NewState); /* Interrupts and flags management functions **********************************/ void CRYP_ITConfig(uint8_t CRYP_IT, FunctionalState NewState); ITStatus CRYP_GetITStatus(uint8_t CRYP_IT); +FunctionalState CRYP_GetCmdStatus(void); FlagStatus CRYP_GetFlagStatus(uint8_t CRYP_FLAG); /* High Level AES functions **************************************************/ @@ -303,6 +329,20 @@ ErrorStatus CRYP_AES_CTR(uint8_t Mode, uint8_t *Input, uint32_t Ilength, uint8_t *Output); +ErrorStatus CRYP_AES_GCM(uint8_t Mode, uint8_t InitVectors[16], + uint8_t *Key, uint16_t Keysize, + uint8_t *Input, uint32_t ILength, + uint8_t *Header, uint32_t HLength, + uint8_t *Output, uint8_t *AuthTAG); + +ErrorStatus CRYP_AES_CCM(uint8_t Mode, + uint8_t* Nonce, uint32_t NonceSize, + uint8_t* Key, uint16_t Keysize, + uint8_t* Input, uint32_t ILength, + uint8_t* Header, uint32_t HLength, uint8_t *HBuffer, + uint8_t* Output, + uint8_t* AuthTAG, uint32_t TAGSize); + /* High Level TDES functions **************************************************/ ErrorStatus CRYP_TDES_ECB(uint8_t Mode, uint8_t Key[24], diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dac.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dac.h index 2886b205..13ce2e80 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dac.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dac.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_dac.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the DAC firmware * library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dbgmcu.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dbgmcu.h index a2a033f2..5e70ffd6 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dbgmcu.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dbgmcu.h @@ -2,13 +2,13 @@ ****************************************************************************** * @file stm32f4xx_dbgmcu.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the DBGMCU firmware library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dcmi.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dcmi.h index f218c595..fa715009 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dcmi.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dcmi.h @@ -2,13 +2,13 @@ ****************************************************************************** * @file stm32f4xx_dcmi.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the DCMI firmware library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dma.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dma.h index 58374e4e..b7c68eb6 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dma.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dma.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_dma.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the DMA firmware * library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -23,7 +23,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - ****************************************************************************** + ****************************************************************************** */ /* Define to prevent recursive inclusion -------------------------------------*/ @@ -399,7 +399,7 @@ typedef struct #define DMA_FLAG_TCIF7 ((uint32_t)0x28000000) #define IS_DMA_CLEAR_FLAG(FLAG) ((((FLAG) & 0x30000000) != 0x30000000) && (((FLAG) & 0x30000000) != 0) && \ - (((FLAG) & 0xC082F082) == 0x00) && ((FLAG) != 0x00)) + (((FLAG) & 0xC002F082) == 0x00) && ((FLAG) != 0x00)) #define IS_DMA_GET_FLAG(FLAG) (((FLAG) == DMA_FLAG_TCIF0) || ((FLAG) == DMA_FLAG_HTIF0) || \ ((FLAG) == DMA_FLAG_TEIF0) || ((FLAG) == DMA_FLAG_DMEIF0) || \ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dma2d.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dma2d.h new file mode 100644 index 00000000..fd4d18b0 --- /dev/null +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_dma2d.h @@ -0,0 +1,475 @@ +/** + ****************************************************************************** + * @file stm32f4xx_dma2d.h + * @author MCD Application Team + * @version V1.4.0 + * @date 04-August-2014 + * @brief This file contains all the functions prototypes for the DMA2D firmware + * library. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT 2014 STMicroelectronics

+ * + * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); + * You may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.st.com/software_license_agreement_liberty_v2 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32F4xx_DMA2D_H +#define __STM32F4xx_DMA2D_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32f4xx.h" + +/** @addtogroup STM32F4xx_StdPeriph_Driver + * @{ + */ + +/** @addtogroup DMA2D + * @{ + */ + +/* Exported types ------------------------------------------------------------*/ + +/** + * @brief DMA2D Init structure definition + */ + +typedef struct +{ + uint32_t DMA2D_Mode; /*!< configures the DMA2D transfer mode. + This parameter can be one value of @ref DMA2D_MODE */ + + uint32_t DMA2D_CMode; /*!< configures the color format of the output image. + This parameter can be one value of @ref DMA2D_CMODE */ + + uint32_t DMA2D_OutputBlue; /*!< configures the blue value of the output image. + This parameter must range: + - from 0x00 to 0xFF if ARGB8888 color mode is slected + - from 0x00 to 0xFF if RGB888 color mode is slected + - from 0x00 to 0x1F if RGB565 color mode is slected + - from 0x00 to 0x1F if ARGB1555 color mode is slected + - from 0x00 to 0x0F if ARGB4444 color mode is slected */ + + uint32_t DMA2D_OutputGreen; /*!< configures the green value of the output image. + This parameter must range: + - from 0x00 to 0xFF if ARGB8888 color mode is slected + - from 0x00 to 0xFF if RGB888 color mode is slected + - from 0x00 to 0x2F if RGB565 color mode is slected + - from 0x00 to 0x1F if ARGB1555 color mode is slected + - from 0x00 to 0x0F if ARGB4444 color mode is slected */ + + uint32_t DMA2D_OutputRed; /*!< configures the red value of the output image. + This parameter must range: + - from 0x00 to 0xFF if ARGB8888 color mode is slected + - from 0x00 to 0xFF if RGB888 color mode is slected + - from 0x00 to 0x1F if RGB565 color mode is slected + - from 0x00 to 0x1F if ARGB1555 color mode is slected + - from 0x00 to 0x0F if ARGB4444 color mode is slected */ + + uint32_t DMA2D_OutputAlpha; /*!< configures the alpha channel of the output color. + This parameter must range: + - from 0x00 to 0xFF if ARGB8888 color mode is slected + - from 0x00 to 0x01 if ARGB1555 color mode is slected + - from 0x00 to 0x0F if ARGB4444 color mode is slected */ + + uint32_t DMA2D_OutputMemoryAdd; /*!< Specifies the memory address. This parameter + must be range from 0x00000000 to 0xFFFFFFFF. */ + + uint32_t DMA2D_OutputOffset; /*!< Specifies the Offset value. This parameter must be range from + 0x0000 to 0x3FFF. */ + + uint32_t DMA2D_NumberOfLine; /*!< Configures the number of line of the area to be transfered. + This parameter must range from 0x0000 to 0xFFFF */ + + uint32_t DMA2D_PixelPerLine; /*!< Configures the number pixel per line of the area to be transfered. + This parameter must range from 0x0000 to 0x3FFF */ +} DMA2D_InitTypeDef; + + + +typedef struct +{ + uint32_t DMA2D_FGMA; /*!< configures the DMA2D foreground memory address. + This parameter must be range from 0x00000000 to 0xFFFFFFFF. */ + + uint32_t DMA2D_FGO; /*!< configures the DMA2D foreground offset. + This parameter must be range from 0x0000 to 0x3FFF. */ + + uint32_t DMA2D_FGCM; /*!< configures the DMA2D foreground color mode . + This parameter can be one value of @ref DMA2D_FGCM */ + + uint32_t DMA2D_FG_CLUT_CM; /*!< configures the DMA2D foreground CLUT color mode. + This parameter can be one value of @ref DMA2D_FG_CLUT_CM */ + + uint32_t DMA2D_FG_CLUT_SIZE; /*!< configures the DMA2D foreground CLUT size. + This parameter must range from 0x00 to 0xFF. */ + + uint32_t DMA2D_FGPFC_ALPHA_MODE; /*!< configures the DMA2D foreground alpha mode. + This parameter can be one value of @ref DMA2D_FGPFC_ALPHA_MODE */ + + uint32_t DMA2D_FGPFC_ALPHA_VALUE; /*!< Specifies the DMA2D foreground alpha value + must be range from 0x00 to 0xFF. */ + + uint32_t DMA2D_FGC_BLUE; /*!< Specifies the DMA2D foreground blue value + must be range from 0x00 to 0xFF. */ + + uint32_t DMA2D_FGC_GREEN; /*!< Specifies the DMA2D foreground green value + must be range from 0x00 to 0xFF. */ + + uint32_t DMA2D_FGC_RED; /*!< Specifies the DMA2D foreground red value + must be range from 0x00 to 0xFF. */ + + uint32_t DMA2D_FGCMAR; /*!< Configures the DMA2D foreground CLUT memory address. + This parameter must range from 0x00000000 to 0xFFFFFFFF. */ +} DMA2D_FG_InitTypeDef; + + +typedef struct +{ + uint32_t DMA2D_BGMA; /*!< configures the DMA2D background memory address. + This parameter must be range from 0x00000000 to 0xFFFFFFFF. */ + + uint32_t DMA2D_BGO; /*!< configures the DMA2D background offset. + This parameter must be range from 0x0000 to 0x3FFF. */ + + uint32_t DMA2D_BGCM; /*!< configures the DMA2D background color mode . + This parameter can be one value of @ref DMA2D_FGCM */ + + uint32_t DMA2D_BG_CLUT_CM; /*!< configures the DMA2D background CLUT color mode. + This parameter can be one value of @ref DMA2D_FG_CLUT_CM */ + + uint32_t DMA2D_BG_CLUT_SIZE; /*!< configures the DMA2D background CLUT size. + This parameter must range from 0x00 to 0xFF. */ + + uint32_t DMA2D_BGPFC_ALPHA_MODE; /*!< configures the DMA2D background alpha mode. + This parameter can be one value of @ref DMA2D_FGPFC_ALPHA_MODE */ + + uint32_t DMA2D_BGPFC_ALPHA_VALUE; /*!< Specifies the DMA2D background alpha value + must be range from 0x00 to 0xFF. */ + + uint32_t DMA2D_BGC_BLUE; /*!< Specifies the DMA2D background blue value + must be range from 0x00 to 0xFF. */ + + uint32_t DMA2D_BGC_GREEN; /*!< Specifies the DMA2D background green value + must be range from 0x00 to 0xFF. */ + + uint32_t DMA2D_BGC_RED; /*!< Specifies the DMA2D background red value + must be range from 0x00 to 0xFF. */ + + uint32_t DMA2D_BGCMAR; /*!< Configures the DMA2D background CLUT memory address. + This parameter must range from 0x00000000 to 0xFFFFFFFF. */ +} DMA2D_BG_InitTypeDef; + + + +/* Exported constants --------------------------------------------------------*/ + +/** @defgroup DMA2D_Exported_Constants + * @{ + */ + +/** @defgroup DMA2D_MODE + * @{ + */ + + +#define DMA2D_M2M ((uint32_t)0x00000000) +#define DMA2D_M2M_PFC ((uint32_t)0x00010000) +#define DMA2D_M2M_BLEND ((uint32_t)0x00020000) +#define DMA2D_R2M ((uint32_t)0x00030000) + +#define IS_DMA2D_MODE(MODE) (((MODE) == DMA2D_M2M) || ((MODE) == DMA2D_M2M_PFC) || \ + ((MODE) == DMA2D_M2M_BLEND) || ((MODE) == DMA2D_R2M)) + + +/** + * @} + */ + +/** @defgroup DMA2D_CMODE + * @{ + */ +#define DMA2D_ARGB8888 ((uint32_t)0x00000000) +#define DMA2D_RGB888 ((uint32_t)0x00000001) +#define DMA2D_RGB565 ((uint32_t)0x00000002) +#define DMA2D_ARGB1555 ((uint32_t)0x00000003) +#define DMA2D_ARGB4444 ((uint32_t)0x00000004) + +#define IS_DMA2D_CMODE(MODE_ARGB) (((MODE_ARGB) == DMA2D_ARGB8888) || ((MODE_ARGB) == DMA2D_RGB888) || \ + ((MODE_ARGB) == DMA2D_RGB565) || ((MODE_ARGB) == DMA2D_ARGB1555) || \ + ((MODE_ARGB) == DMA2D_ARGB4444)) + + +/** + * @} + */ + +/** @defgroup DMA2D_OUTPUT_COLOR + * @{ + */ +#define DMA2D_Output_Color ((uint32_t)0x000000FF) + +#define IS_DMA2D_OGREEN(OGREEN) ((OGREEN) <= DMA2D_Output_Color) +#define IS_DMA2D_ORED(ORED) ((ORED) <= DMA2D_Output_Color) +#define IS_DMA2D_OBLUE(OBLUE) ((OBLUE) <= DMA2D_Output_Color) +#define IS_DMA2D_OALPHA(OALPHA) ((OALPHA) <= DMA2D_Output_Color) + +/** + * @} + */ + +/** @defgroup DMA2D_OUTPUT_OFFSET + * @{ + */ +#define DMA2D_OUTPUT_OFFSET ((uint32_t)0x00003FFF) + +#define IS_DMA2D_OUTPUT_OFFSET(OOFFSET) ((OOFFSET) <= DMA2D_OUTPUT_OFFSET) + + +/** + * @} + */ + +/** @defgroup DMA2D_SIZE + * @{ + */ + +#define DMA2D_pixel ((uint32_t)0x00003FFF) +#define DMA2D_Line ((uint32_t)0x0000FFFF) + +#define IS_DMA2D_LINE(LINE) ((LINE) <= DMA2D_Line) +#define IS_DMA2D_PIXEL(PIXEL) ((PIXEL) <= DMA2D_pixel) + + +/** + * @} + */ + +/** @defgroup DMA2D_OFFSET + * @{ + */ +#define OFFSET ((uint32_t)0x00003FFF) + +#define IS_DMA2D_FGO(FGO) ((FGO) <= OFFSET) + +#define IS_DMA2D_BGO(BGO) ((BGO) <= OFFSET) + +/** + * @} + */ + + +/** @defgroup DMA2D_FGCM + * @{ + */ + +#define CM_ARGB8888 ((uint32_t)0x00000000) +#define CM_RGB888 ((uint32_t)0x00000001) +#define CM_RGB565 ((uint32_t)0x00000002) +#define CM_ARGB1555 ((uint32_t)0x00000003) +#define CM_ARGB4444 ((uint32_t)0x00000004) +#define CM_L8 ((uint32_t)0x00000005) +#define CM_AL44 ((uint32_t)0x00000006) +#define CM_AL88 ((uint32_t)0x00000007) +#define CM_L4 ((uint32_t)0x00000008) +#define CM_A8 ((uint32_t)0x00000009) +#define CM_A4 ((uint32_t)0x0000000A) + +#define IS_DMA2D_FGCM(FGCM) (((FGCM) == CM_ARGB8888) || ((FGCM) == CM_RGB888) || \ + ((FGCM) == CM_RGB565) || ((FGCM) == CM_ARGB1555) || \ + ((FGCM) == CM_ARGB4444) || ((FGCM) == CM_L8) || \ + ((FGCM) == CM_AL44) || ((FGCM) == CM_AL88) || \ + ((FGCM) == CM_L4) || ((FGCM) == CM_A8) || \ + ((FGCM) == CM_A4)) + +#define IS_DMA2D_BGCM(BGCM) (((BGCM) == CM_ARGB8888) || ((BGCM) == CM_RGB888) || \ + ((BGCM) == CM_RGB565) || ((BGCM) == CM_ARGB1555) || \ + ((BGCM) == CM_ARGB4444) || ((BGCM) == CM_L8) || \ + ((BGCM) == CM_AL44) || ((BGCM) == CM_AL88) || \ + ((BGCM) == CM_L4) || ((BGCM) == CM_A8) || \ + ((BGCM) == CM_A4)) + +/** + * @} + */ + +/** @defgroup DMA2D_FG_CLUT_CM + * @{ + */ + +#define CLUT_CM_ARGB8888 ((uint32_t)0x00000000) +#define CLUT_CM_RGB888 ((uint32_t)0x00000001) + +#define IS_DMA2D_FG_CLUT_CM(FG_CLUT_CM) (((FG_CLUT_CM) == CLUT_CM_ARGB8888) || ((FG_CLUT_CM) == CLUT_CM_RGB888)) + +#define IS_DMA2D_BG_CLUT_CM(BG_CLUT_CM) (((BG_CLUT_CM) == CLUT_CM_ARGB8888) || ((BG_CLUT_CM) == CLUT_CM_RGB888)) + +/** + * @} + */ + +/** @defgroup DMA2D_FG_COLOR_VALUE + * @{ + */ + +#define COLOR_VALUE ((uint32_t)0x000000FF) + +#define IS_DMA2D_FG_CLUT_SIZE(FG_CLUT_SIZE) ((FG_CLUT_SIZE) <= COLOR_VALUE) + +#define IS_DMA2D_FG_ALPHA_VALUE(FG_ALPHA_VALUE) ((FG_ALPHA_VALUE) <= COLOR_VALUE) +#define IS_DMA2D_FGC_BLUE(FGC_BLUE) ((FGC_BLUE) <= COLOR_VALUE) +#define IS_DMA2D_FGC_GREEN(FGC_GREEN) ((FGC_GREEN) <= COLOR_VALUE) +#define IS_DMA2D_FGC_RED(FGC_RED) ((FGC_RED) <= COLOR_VALUE) + +#define IS_DMA2D_BG_CLUT_SIZE(BG_CLUT_SIZE) ((BG_CLUT_SIZE) <= COLOR_VALUE) + +#define IS_DMA2D_BG_ALPHA_VALUE(BG_ALPHA_VALUE) ((BG_ALPHA_VALUE) <= COLOR_VALUE) +#define IS_DMA2D_BGC_BLUE(BGC_BLUE) ((BGC_BLUE) <= COLOR_VALUE) +#define IS_DMA2D_BGC_GREEN(BGC_GREEN) ((BGC_GREEN) <= COLOR_VALUE) +#define IS_DMA2D_BGC_RED(BGC_RED) ((BGC_RED) <= COLOR_VALUE) + +/** + * @} + */ + +/** DMA2D_FGPFC_ALPHA_MODE + * @{ + */ + +#define NO_MODIF_ALPHA_VALUE ((uint32_t)0x00000000) +#define REPLACE_ALPHA_VALUE ((uint32_t)0x00000001) +#define COMBINE_ALPHA_VALUE ((uint32_t)0x00000002) + +#define IS_DMA2D_FG_ALPHA_MODE(FG_ALPHA_MODE) (((FG_ALPHA_MODE) == NO_MODIF_ALPHA_VALUE) || \ + ((FG_ALPHA_MODE) == REPLACE_ALPHA_VALUE) || \ + ((FG_ALPHA_MODE) == COMBINE_ALPHA_VALUE)) + +#define IS_DMA2D_BG_ALPHA_MODE(BG_ALPHA_MODE) (((BG_ALPHA_MODE) == NO_MODIF_ALPHA_VALUE) || \ + ((BG_ALPHA_MODE) == REPLACE_ALPHA_VALUE) || \ + ((BG_ALPHA_MODE) == COMBINE_ALPHA_VALUE)) + +/** + * @} + */ + +/** @defgroup DMA2D_Interrupts + * @{ + */ + +#define DMA2D_IT_CE DMA2D_CR_CEIE +#define DMA2D_IT_CTC DMA2D_CR_CTCIE +#define DMA2D_IT_CAE DMA2D_CR_CAEIE +#define DMA2D_IT_TW DMA2D_CR_TWIE +#define DMA2D_IT_TC DMA2D_CR_TCIE +#define DMA2D_IT_TE DMA2D_CR_TEIE + +#define IS_DMA2D_IT(IT) (((IT) == DMA2D_IT_CTC) || ((IT) == DMA2D_IT_CAE) || \ + ((IT) == DMA2D_IT_TW) || ((IT) == DMA2D_IT_TC) || \ + ((IT) == DMA2D_IT_TE) || ((IT) == DMA2D_IT_CE)) + +/** + * @} + */ + +/** @defgroup DMA2D_Flag + * @{ + */ + +#define DMA2D_FLAG_CE DMA2D_ISR_CEIF +#define DMA2D_FLAG_CTC DMA2D_ISR_CTCIF +#define DMA2D_FLAG_CAE DMA2D_ISR_CAEIF +#define DMA2D_FLAG_TW DMA2D_ISR_TWIF +#define DMA2D_FLAG_TC DMA2D_ISR_TCIF +#define DMA2D_FLAG_TE DMA2D_ISR_TEIF + + +#define IS_DMA2D_GET_FLAG(FLAG) (((FLAG) == DMA2D_FLAG_CTC) || ((FLAG) == DMA2D_FLAG_CAE) || \ + ((FLAG) == DMA2D_FLAG_TW) || ((FLAG) == DMA2D_FLAG_TC) || \ + ((FLAG) == DMA2D_FLAG_TE) || ((FLAG) == DMA2D_FLAG_CE)) + + +/** + * @} + */ + +/** @defgroup DMA2D_DeadTime + * @{ + */ + +#define DEADTIME ((uint32_t)0x000000FF) + +#define IS_DMA2D_DEAD_TIME(DEAD_TIME) ((DEAD_TIME) <= DEADTIME) + + +#define LINE_WATERMARK DMA2D_LWR_LW + +#define IS_DMA2D_LineWatermark(LineWatermark) ((LineWatermark) <= LINE_WATERMARK) + +/** + * @} + */ + +/** + * @} + */ + +/* Exported macro ------------------------------------------------------------*/ +/* Exported functions ------------------------------------------------------- */ + +/* Function used to set the DMA2D configuration to the default reset state *****/ +void DMA2D_DeInit(void); + +/* Initialization and Configuration functions *********************************/ +void DMA2D_Init(DMA2D_InitTypeDef* DMA2D_InitStruct); +void DMA2D_StructInit(DMA2D_InitTypeDef* DMA2D_InitStruct); +void DMA2D_StartTransfer(void); +void DMA2D_AbortTransfer(void); +void DMA2D_Suspend(FunctionalState NewState); +void DMA2D_FGConfig(DMA2D_FG_InitTypeDef* DMA2D_FG_InitStruct); +void DMA2D_FG_StructInit(DMA2D_FG_InitTypeDef* DMA2D_FG_InitStruct); +void DMA2D_BGConfig(DMA2D_BG_InitTypeDef* DMA2D_BG_InitStruct); +void DMA2D_BG_StructInit(DMA2D_BG_InitTypeDef* DMA2D_BG_InitStruct); +void DMA2D_FGStart(FunctionalState NewState); +void DMA2D_BGStart(FunctionalState NewState); +void DMA2D_DeadTimeConfig(uint32_t DMA2D_DeadTime, FunctionalState NewState); +void DMA2D_LineWatermarkConfig(uint32_t DMA2D_LWatermarkConfig); + +/* Interrupts and flags management functions **********************************/ +void DMA2D_ITConfig(uint32_t DMA2D_IT, FunctionalState NewState); +FlagStatus DMA2D_GetFlagStatus(uint32_t DMA2D_FLAG); +void DMA2D_ClearFlag(uint32_t DMA2D_FLAG); +ITStatus DMA2D_GetITStatus(uint32_t DMA2D_IT); +void DMA2D_ClearITPendingBit(uint32_t DMA2D_IT); + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32F4xx_DMA2D_H */ + +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_exti.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_exti.h index 883716bd..15eea488 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_exti.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_exti.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_exti.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the EXTI firmware * library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_flash.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_flash.h index 40a1d5b8..1ddf7a0e 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_flash.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_flash.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_flash.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the FLASH * firmware library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -52,6 +52,7 @@ typedef enum { FLASH_BUSY = 1, + FLASH_ERROR_RD, FLASH_ERROR_PGS, FLASH_ERROR_PGP, FLASH_ERROR_PGA, @@ -70,23 +71,40 @@ typedef enum /** @defgroup Flash_Latency * @{ */ -#define FLASH_Latency_0 ((uint8_t)0x0000) /*!< FLASH Zero Latency cycle */ -#define FLASH_Latency_1 ((uint8_t)0x0001) /*!< FLASH One Latency cycle */ -#define FLASH_Latency_2 ((uint8_t)0x0002) /*!< FLASH Two Latency cycles */ -#define FLASH_Latency_3 ((uint8_t)0x0003) /*!< FLASH Three Latency cycles */ -#define FLASH_Latency_4 ((uint8_t)0x0004) /*!< FLASH Four Latency cycles */ -#define FLASH_Latency_5 ((uint8_t)0x0005) /*!< FLASH Five Latency cycles */ -#define FLASH_Latency_6 ((uint8_t)0x0006) /*!< FLASH Six Latency cycles */ -#define FLASH_Latency_7 ((uint8_t)0x0007) /*!< FLASH Seven Latency cycles */ - -#define IS_FLASH_LATENCY(LATENCY) (((LATENCY) == FLASH_Latency_0) || \ - ((LATENCY) == FLASH_Latency_1) || \ - ((LATENCY) == FLASH_Latency_2) || \ - ((LATENCY) == FLASH_Latency_3) || \ - ((LATENCY) == FLASH_Latency_4) || \ - ((LATENCY) == FLASH_Latency_5) || \ - ((LATENCY) == FLASH_Latency_6) || \ - ((LATENCY) == FLASH_Latency_7)) +#define FLASH_Latency_0 ((uint8_t)0x0000) /*!< FLASH Zero Latency cycle */ +#define FLASH_Latency_1 ((uint8_t)0x0001) /*!< FLASH One Latency cycle */ +#define FLASH_Latency_2 ((uint8_t)0x0002) /*!< FLASH Two Latency cycles */ +#define FLASH_Latency_3 ((uint8_t)0x0003) /*!< FLASH Three Latency cycles */ +#define FLASH_Latency_4 ((uint8_t)0x0004) /*!< FLASH Four Latency cycles */ +#define FLASH_Latency_5 ((uint8_t)0x0005) /*!< FLASH Five Latency cycles */ +#define FLASH_Latency_6 ((uint8_t)0x0006) /*!< FLASH Six Latency cycles */ +#define FLASH_Latency_7 ((uint8_t)0x0007) /*!< FLASH Seven Latency cycles */ +#define FLASH_Latency_8 ((uint8_t)0x0008) /*!< FLASH Eight Latency cycles */ +#define FLASH_Latency_9 ((uint8_t)0x0009) /*!< FLASH Nine Latency cycles */ +#define FLASH_Latency_10 ((uint8_t)0x000A) /*!< FLASH Ten Latency cycles */ +#define FLASH_Latency_11 ((uint8_t)0x000B) /*!< FLASH Eleven Latency cycles */ +#define FLASH_Latency_12 ((uint8_t)0x000C) /*!< FLASH Twelve Latency cycles */ +#define FLASH_Latency_13 ((uint8_t)0x000D) /*!< FLASH Thirteen Latency cycles */ +#define FLASH_Latency_14 ((uint8_t)0x000E) /*!< FLASH Fourteen Latency cycles */ +#define FLASH_Latency_15 ((uint8_t)0x000F) /*!< FLASH Fifteen Latency cycles */ + + +#define IS_FLASH_LATENCY(LATENCY) (((LATENCY) == FLASH_Latency_0) || \ + ((LATENCY) == FLASH_Latency_1) || \ + ((LATENCY) == FLASH_Latency_2) || \ + ((LATENCY) == FLASH_Latency_3) || \ + ((LATENCY) == FLASH_Latency_4) || \ + ((LATENCY) == FLASH_Latency_5) || \ + ((LATENCY) == FLASH_Latency_6) || \ + ((LATENCY) == FLASH_Latency_7) || \ + ((LATENCY) == FLASH_Latency_8) || \ + ((LATENCY) == FLASH_Latency_9) || \ + ((LATENCY) == FLASH_Latency_10) || \ + ((LATENCY) == FLASH_Latency_11) || \ + ((LATENCY) == FLASH_Latency_12) || \ + ((LATENCY) == FLASH_Latency_13) || \ + ((LATENCY) == FLASH_Latency_14) || \ + ((LATENCY) == FLASH_Latency_15)) /** * @} */ @@ -102,34 +120,72 @@ typedef enum #define IS_VOLTAGERANGE(RANGE)(((RANGE) == VoltageRange_1) || \ ((RANGE) == VoltageRange_2) || \ ((RANGE) == VoltageRange_3) || \ - ((RANGE) == VoltageRange_4)) + ((RANGE) == VoltageRange_4)) /** * @} */ /** @defgroup FLASH_Sectors * @{ - */ -#define FLASH_Sector_0 ((uint16_t)0x0000) /*!< Sector Number 0 */ -#define FLASH_Sector_1 ((uint16_t)0x0008) /*!< Sector Number 1 */ -#define FLASH_Sector_2 ((uint16_t)0x0010) /*!< Sector Number 2 */ -#define FLASH_Sector_3 ((uint16_t)0x0018) /*!< Sector Number 3 */ -#define FLASH_Sector_4 ((uint16_t)0x0020) /*!< Sector Number 4 */ -#define FLASH_Sector_5 ((uint16_t)0x0028) /*!< Sector Number 5 */ -#define FLASH_Sector_6 ((uint16_t)0x0030) /*!< Sector Number 6 */ -#define FLASH_Sector_7 ((uint16_t)0x0038) /*!< Sector Number 7 */ -#define FLASH_Sector_8 ((uint16_t)0x0040) /*!< Sector Number 8 */ -#define FLASH_Sector_9 ((uint16_t)0x0048) /*!< Sector Number 9 */ -#define FLASH_Sector_10 ((uint16_t)0x0050) /*!< Sector Number 10 */ -#define FLASH_Sector_11 ((uint16_t)0x0058) /*!< Sector Number 11 */ -#define IS_FLASH_SECTOR(SECTOR) (((SECTOR) == FLASH_Sector_0) || ((SECTOR) == FLASH_Sector_1) ||\ - ((SECTOR) == FLASH_Sector_2) || ((SECTOR) == FLASH_Sector_3) ||\ - ((SECTOR) == FLASH_Sector_4) || ((SECTOR) == FLASH_Sector_5) ||\ - ((SECTOR) == FLASH_Sector_6) || ((SECTOR) == FLASH_Sector_7) ||\ - ((SECTOR) == FLASH_Sector_8) || ((SECTOR) == FLASH_Sector_9) ||\ - ((SECTOR) == FLASH_Sector_10) || ((SECTOR) == FLASH_Sector_11)) -#define IS_FLASH_ADDRESS(ADDRESS) ((((ADDRESS) >= 0x08000000) && ((ADDRESS) < 0x080FFFFF)) ||\ - (((ADDRESS) >= 0x1FFF7800) && ((ADDRESS) < 0x1FFF7A0F))) + */ +#define FLASH_Sector_0 ((uint16_t)0x0000) /*!< Sector Number 0 */ +#define FLASH_Sector_1 ((uint16_t)0x0008) /*!< Sector Number 1 */ +#define FLASH_Sector_2 ((uint16_t)0x0010) /*!< Sector Number 2 */ +#define FLASH_Sector_3 ((uint16_t)0x0018) /*!< Sector Number 3 */ +#define FLASH_Sector_4 ((uint16_t)0x0020) /*!< Sector Number 4 */ +#define FLASH_Sector_5 ((uint16_t)0x0028) /*!< Sector Number 5 */ +#define FLASH_Sector_6 ((uint16_t)0x0030) /*!< Sector Number 6 */ +#define FLASH_Sector_7 ((uint16_t)0x0038) /*!< Sector Number 7 */ +#define FLASH_Sector_8 ((uint16_t)0x0040) /*!< Sector Number 8 */ +#define FLASH_Sector_9 ((uint16_t)0x0048) /*!< Sector Number 9 */ +#define FLASH_Sector_10 ((uint16_t)0x0050) /*!< Sector Number 10 */ +#define FLASH_Sector_11 ((uint16_t)0x0058) /*!< Sector Number 11 */ +#define FLASH_Sector_12 ((uint16_t)0x0080) /*!< Sector Number 12 */ +#define FLASH_Sector_13 ((uint16_t)0x0088) /*!< Sector Number 13 */ +#define FLASH_Sector_14 ((uint16_t)0x0090) /*!< Sector Number 14 */ +#define FLASH_Sector_15 ((uint16_t)0x0098) /*!< Sector Number 15 */ +#define FLASH_Sector_16 ((uint16_t)0x00A0) /*!< Sector Number 16 */ +#define FLASH_Sector_17 ((uint16_t)0x00A8) /*!< Sector Number 17 */ +#define FLASH_Sector_18 ((uint16_t)0x00B0) /*!< Sector Number 18 */ +#define FLASH_Sector_19 ((uint16_t)0x00B8) /*!< Sector Number 19 */ +#define FLASH_Sector_20 ((uint16_t)0x00C0) /*!< Sector Number 20 */ +#define FLASH_Sector_21 ((uint16_t)0x00C8) /*!< Sector Number 21 */ +#define FLASH_Sector_22 ((uint16_t)0x00D0) /*!< Sector Number 22 */ +#define FLASH_Sector_23 ((uint16_t)0x00D8) /*!< Sector Number 23 */ + +#define IS_FLASH_SECTOR(SECTOR) (((SECTOR) == FLASH_Sector_0) || ((SECTOR) == FLASH_Sector_1) ||\ + ((SECTOR) == FLASH_Sector_2) || ((SECTOR) == FLASH_Sector_3) ||\ + ((SECTOR) == FLASH_Sector_4) || ((SECTOR) == FLASH_Sector_5) ||\ + ((SECTOR) == FLASH_Sector_6) || ((SECTOR) == FLASH_Sector_7) ||\ + ((SECTOR) == FLASH_Sector_8) || ((SECTOR) == FLASH_Sector_9) ||\ + ((SECTOR) == FLASH_Sector_10) || ((SECTOR) == FLASH_Sector_11) ||\ + ((SECTOR) == FLASH_Sector_12) || ((SECTOR) == FLASH_Sector_13) ||\ + ((SECTOR) == FLASH_Sector_14) || ((SECTOR) == FLASH_Sector_15) ||\ + ((SECTOR) == FLASH_Sector_16) || ((SECTOR) == FLASH_Sector_17) ||\ + ((SECTOR) == FLASH_Sector_18) || ((SECTOR) == FLASH_Sector_19) ||\ + ((SECTOR) == FLASH_Sector_20) || ((SECTOR) == FLASH_Sector_21) ||\ + ((SECTOR) == FLASH_Sector_22) || ((SECTOR) == FLASH_Sector_23)) + +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) +#define IS_FLASH_ADDRESS(ADDRESS) ((((ADDRESS) >= 0x08000000) && ((ADDRESS) <= 0x081FFFFF)) ||\ + (((ADDRESS) >= 0x1FFF7800) && ((ADDRESS) <= 0x1FFF7A0F))) +#endif /* STM32F427_437xx || STM32F429_439xx */ + +#if defined (STM32F40_41xxx) +#define IS_FLASH_ADDRESS(ADDRESS) ((((ADDRESS) >= 0x08000000) && ((ADDRESS) <= 0x080FFFFF)) ||\ + (((ADDRESS) >= 0x1FFF7800) && ((ADDRESS) <= 0x1FFF7A0F))) +#endif /* STM32F40_41xxx */ + +#if defined (STM32F401xx) +#define IS_FLASH_ADDRESS(ADDRESS) ((((ADDRESS) >= 0x08000000) && ((ADDRESS) <= 0x0803FFFF)) ||\ + (((ADDRESS) >= 0x1FFF7800) && ((ADDRESS) <= 0x1FFF7A0F))) +#endif /* STM32F401xx */ + +#if defined (STM32F411xE) +#define IS_FLASH_ADDRESS(ADDRESS) ((((ADDRESS) >= 0x08000000) && ((ADDRESS) <= 0x0807FFFF)) ||\ + (((ADDRESS) >= 0x1FFF7800) && ((ADDRESS) <= 0x1FFF7A0F))) +#endif /* STM32F411xE */ + /** * @} */ @@ -137,18 +193,30 @@ typedef enum /** @defgroup Option_Bytes_Write_Protection * @{ */ -#define OB_WRP_Sector_0 ((uint32_t)0x00000001) /*!< Write protection of Sector0 */ -#define OB_WRP_Sector_1 ((uint32_t)0x00000002) /*!< Write protection of Sector1 */ -#define OB_WRP_Sector_2 ((uint32_t)0x00000004) /*!< Write protection of Sector2 */ -#define OB_WRP_Sector_3 ((uint32_t)0x00000008) /*!< Write protection of Sector3 */ -#define OB_WRP_Sector_4 ((uint32_t)0x00000010) /*!< Write protection of Sector4 */ -#define OB_WRP_Sector_5 ((uint32_t)0x00000020) /*!< Write protection of Sector5 */ -#define OB_WRP_Sector_6 ((uint32_t)0x00000040) /*!< Write protection of Sector6 */ -#define OB_WRP_Sector_7 ((uint32_t)0x00000080) /*!< Write protection of Sector7 */ -#define OB_WRP_Sector_8 ((uint32_t)0x00000100) /*!< Write protection of Sector8 */ -#define OB_WRP_Sector_9 ((uint32_t)0x00000200) /*!< Write protection of Sector9 */ -#define OB_WRP_Sector_10 ((uint32_t)0x00000400) /*!< Write protection of Sector10 */ -#define OB_WRP_Sector_11 ((uint32_t)0x00000800) /*!< Write protection of Sector11 */ +#define OB_WRP_Sector_0 ((uint32_t)0x00000001) /*!< Write protection of Sector0 */ +#define OB_WRP_Sector_1 ((uint32_t)0x00000002) /*!< Write protection of Sector1 */ +#define OB_WRP_Sector_2 ((uint32_t)0x00000004) /*!< Write protection of Sector2 */ +#define OB_WRP_Sector_3 ((uint32_t)0x00000008) /*!< Write protection of Sector3 */ +#define OB_WRP_Sector_4 ((uint32_t)0x00000010) /*!< Write protection of Sector4 */ +#define OB_WRP_Sector_5 ((uint32_t)0x00000020) /*!< Write protection of Sector5 */ +#define OB_WRP_Sector_6 ((uint32_t)0x00000040) /*!< Write protection of Sector6 */ +#define OB_WRP_Sector_7 ((uint32_t)0x00000080) /*!< Write protection of Sector7 */ +#define OB_WRP_Sector_8 ((uint32_t)0x00000100) /*!< Write protection of Sector8 */ +#define OB_WRP_Sector_9 ((uint32_t)0x00000200) /*!< Write protection of Sector9 */ +#define OB_WRP_Sector_10 ((uint32_t)0x00000400) /*!< Write protection of Sector10 */ +#define OB_WRP_Sector_11 ((uint32_t)0x00000800) /*!< Write protection of Sector11 */ +#define OB_WRP_Sector_12 ((uint32_t)0x00000001) /*!< Write protection of Sector12 */ +#define OB_WRP_Sector_13 ((uint32_t)0x00000002) /*!< Write protection of Sector13 */ +#define OB_WRP_Sector_14 ((uint32_t)0x00000004) /*!< Write protection of Sector14 */ +#define OB_WRP_Sector_15 ((uint32_t)0x00000008) /*!< Write protection of Sector15 */ +#define OB_WRP_Sector_16 ((uint32_t)0x00000010) /*!< Write protection of Sector16 */ +#define OB_WRP_Sector_17 ((uint32_t)0x00000020) /*!< Write protection of Sector17 */ +#define OB_WRP_Sector_18 ((uint32_t)0x00000040) /*!< Write protection of Sector18 */ +#define OB_WRP_Sector_19 ((uint32_t)0x00000080) /*!< Write protection of Sector19 */ +#define OB_WRP_Sector_20 ((uint32_t)0x00000100) /*!< Write protection of Sector20 */ +#define OB_WRP_Sector_21 ((uint32_t)0x00000200) /*!< Write protection of Sector21 */ +#define OB_WRP_Sector_22 ((uint32_t)0x00000400) /*!< Write protection of Sector22 */ +#define OB_WRP_Sector_23 ((uint32_t)0x00000800) /*!< Write protection of Sector23 */ #define OB_WRP_Sector_All ((uint32_t)0x00000FFF) /*!< Write protection of all Sectors */ #define IS_OB_WRP(SECTOR)((((SECTOR) & (uint32_t)0xFFFFF000) == 0x00000000) && ((SECTOR) != 0x00000000)) @@ -156,6 +224,50 @@ typedef enum * @} */ +/** @defgroup Selection_Protection_Mode + * @{ + */ +#define OB_PcROP_Disable ((uint8_t)0x00) /*!< Disabled PcROP, nWPRi bits used for Write Protection on sector i */ +#define OB_PcROP_Enable ((uint8_t)0x80) /*!< Enable PcROP, nWPRi bits used for PCRoP Protection on sector i */ +#define IS_OB_PCROP_SELECT(PCROP) (((PCROP) == OB_PcROP_Disable) || ((PCROP) == OB_PcROP_Enable)) +/** + * @} + */ + +/** @defgroup Option_Bytes_PC_ReadWrite_Protection + * @{ + */ +#define OB_PCROP_Sector_0 ((uint32_t)0x00000001) /*!< PC Read/Write protection of Sector0 */ +#define OB_PCROP_Sector_1 ((uint32_t)0x00000002) /*!< PC Read/Write protection of Sector1 */ +#define OB_PCROP_Sector_2 ((uint32_t)0x00000004) /*!< PC Read/Write protection of Sector2 */ +#define OB_PCROP_Sector_3 ((uint32_t)0x00000008) /*!< PC Read/Write protection of Sector3 */ +#define OB_PCROP_Sector_4 ((uint32_t)0x00000010) /*!< PC Read/Write protection of Sector4 */ +#define OB_PCROP_Sector_5 ((uint32_t)0x00000020) /*!< PC Read/Write protection of Sector5 */ +#define OB_PCROP_Sector_6 ((uint32_t)0x00000040) /*!< PC Read/Write protection of Sector6 */ +#define OB_PCROP_Sector_7 ((uint32_t)0x00000080) /*!< PC Read/Write protection of Sector7 */ +#define OB_PCROP_Sector_8 ((uint32_t)0x00000100) /*!< PC Read/Write protection of Sector8 */ +#define OB_PCROP_Sector_9 ((uint32_t)0x00000200) /*!< PC Read/Write protection of Sector9 */ +#define OB_PCROP_Sector_10 ((uint32_t)0x00000400) /*!< PC Read/Write protection of Sector10 */ +#define OB_PCROP_Sector_11 ((uint32_t)0x00000800) /*!< PC Read/Write protection of Sector11 */ +#define OB_PCROP_Sector_12 ((uint32_t)0x00000001) /*!< PC Read/Write protection of Sector12 */ +#define OB_PCROP_Sector_13 ((uint32_t)0x00000002) /*!< PC Read/Write protection of Sector13 */ +#define OB_PCROP_Sector_14 ((uint32_t)0x00000004) /*!< PC Read/Write protection of Sector14 */ +#define OB_PCROP_Sector_15 ((uint32_t)0x00000008) /*!< PC Read/Write protection of Sector15 */ +#define OB_PCROP_Sector_16 ((uint32_t)0x00000010) /*!< PC Read/Write protection of Sector16 */ +#define OB_PCROP_Sector_17 ((uint32_t)0x00000020) /*!< PC Read/Write protection of Sector17 */ +#define OB_PCROP_Sector_18 ((uint32_t)0x00000040) /*!< PC Read/Write protection of Sector18 */ +#define OB_PCROP_Sector_19 ((uint32_t)0x00000080) /*!< PC Read/Write protection of Sector19 */ +#define OB_PCROP_Sector_20 ((uint32_t)0x00000100) /*!< PC Read/Write protection of Sector20 */ +#define OB_PCROP_Sector_21 ((uint32_t)0x00000200) /*!< PC Read/Write protection of Sector21 */ +#define OB_PCROP_Sector_22 ((uint32_t)0x00000400) /*!< PC Read/Write protection of Sector22 */ +#define OB_PCROP_Sector_23 ((uint32_t)0x00000800) /*!< PC Read/Write protection of Sector23 */ +#define OB_PCROP_Sector_All ((uint32_t)0x00000FFF) /*!< PC Read/Write protection of all Sectors */ + +#define IS_OB_PCROP(SECTOR)((((SECTOR) & (uint32_t)0xFFFFF000) == 0x00000000) && ((SECTOR) != 0x00000000)) +/** + * @} + */ + /** @defgroup FLASH_Option_Bytes_Read_Protection * @{ */ @@ -213,6 +325,16 @@ typedef enum /** * @} */ + +/** @defgroup FLASH_Dual_Boot + * @{ + */ +#define OB_Dual_BootEnabled ((uint8_t)0x10) /*!< Dual Bank Boot Enable */ +#define OB_Dual_BootDisabled ((uint8_t)0x00) /*!< Dual Bank Boot Disable, always boot on User Flash */ +#define IS_OB_BOOT(BOOT) (((BOOT) == OB_Dual_BootEnabled) || ((BOOT) == OB_Dual_BootDisabled)) +/** + * @} + */ /** @defgroup FLASH_Interrupts * @{ @@ -227,18 +349,19 @@ typedef enum /** @defgroup FLASH_Flags * @{ */ -#define FLASH_FLAG_EOP ((uint32_t)0x00000001) /*!< FLASH End of Operation flag */ -#define FLASH_FLAG_OPERR ((uint32_t)0x00000002) /*!< FLASH operation Error flag */ -#define FLASH_FLAG_WRPERR ((uint32_t)0x00000010) /*!< FLASH Write protected error flag */ -#define FLASH_FLAG_PGAERR ((uint32_t)0x00000020) /*!< FLASH Programming Alignment error flag */ +#define FLASH_FLAG_EOP ((uint32_t)0x00000001) /*!< FLASH End of Operation flag */ +#define FLASH_FLAG_OPERR ((uint32_t)0x00000002) /*!< FLASH operation Error flag */ +#define FLASH_FLAG_WRPERR ((uint32_t)0x00000010) /*!< FLASH Write protected error flag */ +#define FLASH_FLAG_PGAERR ((uint32_t)0x00000020) /*!< FLASH Programming Alignment error flag */ #define FLASH_FLAG_PGPERR ((uint32_t)0x00000040) /*!< FLASH Programming Parallelism error flag */ -#define FLASH_FLAG_PGSERR ((uint32_t)0x00000080) /*!< FLASH Programming Sequence error flag */ -#define FLASH_FLAG_BSY ((uint32_t)0x00010000) /*!< FLASH Busy flag */ -#define IS_FLASH_CLEAR_FLAG(FLAG) ((((FLAG) & (uint32_t)0xFFFFFF0C) == 0x00000000) && ((FLAG) != 0x00000000)) -#define IS_FLASH_GET_FLAG(FLAG) (((FLAG) == FLASH_FLAG_EOP) || ((FLAG) == FLASH_FLAG_OPERR) || \ +#define FLASH_FLAG_PGSERR ((uint32_t)0x00000080) /*!< FLASH Programming Sequence error flag */ +#define FLASH_FLAG_RDERR ((uint32_t)0x00000100) /*!< Read Protection error flag (PCROP) */ +#define FLASH_FLAG_BSY ((uint32_t)0x00010000) /*!< FLASH Busy flag */ +#define IS_FLASH_CLEAR_FLAG(FLAG) ((((FLAG) & (uint32_t)0xFFFFFE0C) == 0x00000000) && ((FLAG) != 0x00000000)) +#define IS_FLASH_GET_FLAG(FLAG) (((FLAG) == FLASH_FLAG_EOP) || ((FLAG) == FLASH_FLAG_OPERR) || \ ((FLAG) == FLASH_FLAG_WRPERR) || ((FLAG) == FLASH_FLAG_PGAERR) || \ ((FLAG) == FLASH_FLAG_PGPERR) || ((FLAG) == FLASH_FLAG_PGSERR) || \ - ((FLAG) == FLASH_FLAG_BSY)) + ((FLAG) == FLASH_FLAG_BSY) || ((FLAG) == FLASH_FLAG_RDERR)) /** * @} */ @@ -268,15 +391,30 @@ typedef enum */ /** - * @brief ACR register byte 0 (Bits[8:0]) base address + * @brief ACR register byte 0 (Bits[7:0]) base address */ #define ACR_BYTE0_ADDRESS ((uint32_t)0x40023C00) /** - * @brief OPTCR register byte 3 (Bits[24:16]) base address + * @brief OPTCR register byte 0 (Bits[7:0]) base address */ #define OPTCR_BYTE0_ADDRESS ((uint32_t)0x40023C14) +/** + * @brief OPTCR register byte 1 (Bits[15:8]) base address + */ #define OPTCR_BYTE1_ADDRESS ((uint32_t)0x40023C15) +/** + * @brief OPTCR register byte 2 (Bits[23:16]) base address + */ #define OPTCR_BYTE2_ADDRESS ((uint32_t)0x40023C16) +/** + * @brief OPTCR register byte 3 (Bits[31:24]) base address + */ +#define OPTCR_BYTE3_ADDRESS ((uint32_t)0x40023C17) + +/** + * @brief OPTCR1 register byte 0 (Bits[7:0]) base address + */ +#define OPTCR1_BYTE2_ADDRESS ((uint32_t)0x40023C1A) /** * @} @@ -294,32 +432,42 @@ void FLASH_InstructionCacheReset(void); void FLASH_DataCacheReset(void); /* FLASH Memory Programming functions *****************************************/ -void FLASH_Unlock(void); -void FLASH_Lock(void); +void FLASH_Unlock(void); +void FLASH_Lock(void); FLASH_Status FLASH_EraseSector(uint32_t FLASH_Sector, uint8_t VoltageRange); FLASH_Status FLASH_EraseAllSectors(uint8_t VoltageRange); +FLASH_Status FLASH_EraseAllBank1Sectors(uint8_t VoltageRange); +FLASH_Status FLASH_EraseAllBank2Sectors(uint8_t VoltageRange); FLASH_Status FLASH_ProgramDoubleWord(uint32_t Address, uint64_t Data); FLASH_Status FLASH_ProgramWord(uint32_t Address, uint32_t Data); FLASH_Status FLASH_ProgramHalfWord(uint32_t Address, uint16_t Data); FLASH_Status FLASH_ProgramByte(uint32_t Address, uint8_t Data); /* Option Bytes Programming functions *****************************************/ -void FLASH_OB_Unlock(void); -void FLASH_OB_Lock(void); -void FLASH_OB_WRPConfig(uint32_t OB_WRP, FunctionalState NewState); -void FLASH_OB_RDPConfig(uint8_t OB_RDP); -void FLASH_OB_UserConfig(uint8_t OB_IWDG, uint8_t OB_STOP, uint8_t OB_STDBY); -void FLASH_OB_BORConfig(uint8_t OB_BOR); +void FLASH_OB_Unlock(void); +void FLASH_OB_Lock(void); +void FLASH_OB_WRPConfig(uint32_t OB_WRP, FunctionalState NewState); +void FLASH_OB_WRP1Config(uint32_t OB_WRP, FunctionalState NewState); +void FLASH_OB_PCROPSelectionConfig(uint8_t OB_PcROP); +void FLASH_OB_PCROPConfig(uint32_t OB_PCROP, FunctionalState NewState); +void FLASH_OB_PCROP1Config(uint32_t OB_PCROP, FunctionalState NewState); +void FLASH_OB_RDPConfig(uint8_t OB_RDP); +void FLASH_OB_UserConfig(uint8_t OB_IWDG, uint8_t OB_STOP, uint8_t OB_STDBY); +void FLASH_OB_BORConfig(uint8_t OB_BOR); +void FLASH_OB_BootConfig(uint8_t OB_BOOT); FLASH_Status FLASH_OB_Launch(void); -uint8_t FLASH_OB_GetUser(void); -uint16_t FLASH_OB_GetWRP(void); -FlagStatus FLASH_OB_GetRDP(void); -uint8_t FLASH_OB_GetBOR(void); +uint8_t FLASH_OB_GetUser(void); +uint16_t FLASH_OB_GetWRP(void); +uint16_t FLASH_OB_GetWRP1(void); +uint16_t FLASH_OB_GetPCROP(void); +uint16_t FLASH_OB_GetPCROP1(void); +FlagStatus FLASH_OB_GetRDP(void); +uint8_t FLASH_OB_GetBOR(void); /* Interrupts and flags management functions **********************************/ -void FLASH_ITConfig(uint32_t FLASH_IT, FunctionalState NewState); -FlagStatus FLASH_GetFlagStatus(uint32_t FLASH_FLAG); -void FLASH_ClearFlag(uint32_t FLASH_FLAG); +void FLASH_ITConfig(uint32_t FLASH_IT, FunctionalState NewState); +FlagStatus FLASH_GetFlagStatus(uint32_t FLASH_FLAG); +void FLASH_ClearFlag(uint32_t FLASH_FLAG); FLASH_Status FLASH_GetStatus(void); FLASH_Status FLASH_WaitForLastOperation(void); diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_flash_ramfunc.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_flash_ramfunc.h new file mode 100644 index 00000000..8ac175ae --- /dev/null +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_flash_ramfunc.h @@ -0,0 +1,103 @@ +/** + ****************************************************************************** + * @file stm32f4xx_flash_ramfunc.h + * @author MCD Application Team + * @version V1.4.0 + * @date 04-August-2014 + * @brief Header file of FLASH RAMFUNC driver. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT 2014 STMicroelectronics

+ * + * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); + * You may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.st.com/software_license_agreement_liberty_v2 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ****************************************************************************** + */ + + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32F4xx_FLASH_RAMFUNC_H +#define __STM32F4xx_FLASH_RAMFUNC_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32f4xx.h" + +/** @addtogroup STM32F4xx_StdPeriph_Driver + * @{ + */ + +/** @addtogroup FLASH RAMFUNC + * @{ + */ + +/* Exported types ------------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/** + * @brief __RAM_FUNC definition + */ +#if defined ( __CC_ARM ) +/* ARM Compiler + ------------ + RAM functions are defined using the toolchain options. + Functions that are executed in RAM should reside in a separate source module. + Using the 'Options for File' dialog you can simply change the 'Code / Const' + area of a module to a memory space in physical RAM. + Available memory areas are declared in the 'Target' tab of the 'Options for Target' + dialog. +*/ +#define __RAM_FUNC void + +#elif defined ( __ICCARM__ ) +/* ICCARM Compiler + --------------- + RAM functions are defined using a specific toolchain keyword "__ramfunc". +*/ +#define __RAM_FUNC __ramfunc void + +#elif defined ( __GNUC__ ) +/* GNU Compiler + ------------ + RAM functions are defined using a specific toolchain attribute + "__attribute__((section(".RamFunc")))". +*/ +#define __RAM_FUNC void __attribute__((section(".RamFunc"))) + +#endif +/* Exported constants --------------------------------------------------------*/ +/* Exported macro ------------------------------------------------------------*/ +/* Exported functions --------------------------------------------------------*/ +__RAM_FUNC FLASH_FlashInterfaceCmd(FunctionalState NewState); +__RAM_FUNC FLASH_FlashSleepModeCmd(FunctionalState NewState); + + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32F4xx_FLASH_RAMFUNC_H */ + +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ + diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_fmc.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_fmc.h new file mode 100644 index 00000000..6e8fbc9e --- /dev/null +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_fmc.h @@ -0,0 +1,1143 @@ +/** + ****************************************************************************** + * @file stm32f4xx_fmc.h + * @author MCD Application Team + * @version V1.4.0 + * @date 04-August-2014 + * @brief This file contains all the functions prototypes for the FMC firmware + * library. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT 2014 STMicroelectronics

+ * + * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); + * You may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.st.com/software_license_agreement_liberty_v2 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32F4xx_FMC_H +#define __STM32F4xx_FMC_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32f4xx.h" + +/** @addtogroup STM32F4xx_StdPeriph_Driver + * @{ + */ + +/** @addtogroup FMC + * @{ + */ + +/* Exported types ------------------------------------------------------------*/ + +/** + * @brief Timing parameters For NOR/SRAM Banks + */ +typedef struct +{ + uint32_t FMC_AddressSetupTime; /*!< Defines the number of HCLK cycles to configure + the duration of the address setup time. + This parameter can be a value between 0 and 15. + @note This parameter is not used with synchronous NOR Flash memories. */ + + uint32_t FMC_AddressHoldTime; /*!< Defines the number of HCLK cycles to configure + the duration of the address hold time. + This parameter can be a value between 1 and 15. + @note This parameter is not used with synchronous NOR Flash memories.*/ + + uint32_t FMC_DataSetupTime; /*!< Defines the number of HCLK cycles to configure + the duration of the data setup time. + This parameter can be a value between 1 and 255. + @note This parameter is used for SRAMs, ROMs and asynchronous multiplexed NOR Flash memories. */ + + uint32_t FMC_BusTurnAroundDuration; /*!< Defines the number of HCLK cycles to configure + the duration of the bus turnaround. + This parameter can be a value between 0 and 15. + @note This parameter is only used for multiplexed NOR Flash memories. */ + + uint32_t FMC_CLKDivision; /*!< Defines the period of CLK clock output signal, expressed in number of HCLK cycles. + This parameter can be a value between 1 and 15. + @note This parameter is not used for asynchronous NOR Flash, SRAM or ROM accesses. */ + + uint32_t FMC_DataLatency; /*!< Defines the number of memory clock cycles to issue + to the memory before getting the first data. + The parameter value depends on the memory type as shown below: + - It must be set to 0 in case of a CRAM + - It is don't care in asynchronous NOR, SRAM or ROM accesses + - It may assume a value between 0 and 15 in NOR Flash memories + with synchronous burst mode enable */ + + uint32_t FMC_AccessMode; /*!< Specifies the asynchronous access mode. + This parameter can be a value of @ref FMC_Access_Mode */ +}FMC_NORSRAMTimingInitTypeDef; + +/** + * @brief FMC NOR/SRAM Init structure definition + */ +typedef struct +{ + uint32_t FMC_Bank; /*!< Specifies the NOR/SRAM memory bank that will be used. + This parameter can be a value of @ref FMC_NORSRAM_Bank */ + + uint32_t FMC_DataAddressMux; /*!< Specifies whether the address and data values are + multiplexed on the databus or not. + This parameter can be a value of @ref FMC_Data_Address_Bus_Multiplexing */ + + uint32_t FMC_MemoryType; /*!< Specifies the type of external memory attached to + the corresponding memory bank. + This parameter can be a value of @ref FMC_Memory_Type */ + + uint32_t FMC_MemoryDataWidth; /*!< Specifies the external memory device width. + This parameter can be a value of @ref FMC_NORSRAM_Data_Width */ + + uint32_t FMC_BurstAccessMode; /*!< Enables or disables the burst access mode for Flash memory, + valid only with synchronous burst Flash memories. + This parameter can be a value of @ref FMC_Burst_Access_Mode */ + + uint32_t FMC_WaitSignalPolarity; /*!< Specifies the wait signal polarity, valid only when accessing + the Flash memory in burst mode. + This parameter can be a value of @ref FMC_Wait_Signal_Polarity */ + + uint32_t FMC_WrapMode; /*!< Enables or disables the Wrapped burst access mode for Flash + memory, valid only when accessing Flash memories in burst mode. + This parameter can be a value of @ref FMC_Wrap_Mode */ + + uint32_t FMC_WaitSignalActive; /*!< Specifies if the wait signal is asserted by the memory one + clock cycle before the wait state or during the wait state, + valid only when accessing memories in burst mode. + This parameter can be a value of @ref FMC_Wait_Timing */ + + uint32_t FMC_WriteOperation; /*!< Enables or disables the write operation in the selected bank by the FMC. + This parameter can be a value of @ref FMC_Write_Operation */ + + uint32_t FMC_WaitSignal; /*!< Enables or disables the wait state insertion via wait + signal, valid for Flash memory access in burst mode. + This parameter can be a value of @ref FMC_Wait_Signal */ + + uint32_t FMC_ExtendedMode; /*!< Enables or disables the extended mode. + This parameter can be a value of @ref FMC_Extended_Mode */ + + uint32_t FMC_AsynchronousWait; /*!< Enables or disables wait signal during asynchronous transfers, + valid only with asynchronous Flash memories. + This parameter can be a value of @ref FMC_AsynchronousWait */ + + uint32_t FMC_WriteBurst; /*!< Enables or disables the write burst operation. + This parameter can be a value of @ref FMC_Write_Burst */ + + uint32_t FMC_ContinousClock; /*!< Enables or disables the FMC clock output to external memory devices. + This parameter is only enabled through the FMC_BCR1 register, and don't care + through FMC_BCR2..4 registers. + This parameter can be a value of @ref FMC_Continous_Clock */ + + + FMC_NORSRAMTimingInitTypeDef* FMC_ReadWriteTimingStruct; /*!< Timing Parameters for write and read access if the Extended Mode is not used*/ + + FMC_NORSRAMTimingInitTypeDef* FMC_WriteTimingStruct; /*!< Timing Parameters for write access if the Extended Mode is used*/ +}FMC_NORSRAMInitTypeDef; + +/** + * @brief Timing parameters For FMC NAND and PCCARD Banks + */ +typedef struct +{ + uint32_t FMC_SetupTime; /*!< Defines the number of HCLK cycles to setup address before + the command assertion for NAND-Flash read or write access + to common/Attribute or I/O memory space (depending on + the memory space timing to be configured). + This parameter can be a value between 0 and 255.*/ + + uint32_t FMC_WaitSetupTime; /*!< Defines the minimum number of HCLK cycles to assert the + command for NAND-Flash read or write access to + common/Attribute or I/O memory space (depending on the + memory space timing to be configured). + This parameter can be a number between 0 and 255 */ + + uint32_t FMC_HoldSetupTime; /*!< Defines the number of HCLK clock cycles to hold address + (and data for write access) after the command de-assertion + for NAND-Flash read or write access to common/Attribute + or I/O memory space (depending on the memory space timing + to be configured). + This parameter can be a number between 0 and 255 */ + + uint32_t FMC_HiZSetupTime; /*!< Defines the number of HCLK clock cycles during which the + databus is kept in HiZ after the start of a NAND-Flash + write access to common/Attribute or I/O memory space (depending + on the memory space timing to be configured). + This parameter can be a number between 0 and 255 */ +}FMC_NAND_PCCARDTimingInitTypeDef; + +/** + * @brief FMC NAND Init structure definition + */ +typedef struct +{ + uint32_t FMC_Bank; /*!< Specifies the NAND memory bank that will be used. + This parameter can be a value of @ref FMC_NAND_Bank */ + + uint32_t FMC_Waitfeature; /*!< Enables or disables the Wait feature for the NAND Memory Bank. + This parameter can be any value of @ref FMC_Wait_feature */ + + uint32_t FMC_MemoryDataWidth; /*!< Specifies the external memory device width. + This parameter can be any value of @ref FMC_NAND_Data_Width */ + + uint32_t FMC_ECC; /*!< Enables or disables the ECC computation. + This parameter can be any value of @ref FMC_ECC */ + + uint32_t FMC_ECCPageSize; /*!< Defines the page size for the extended ECC. + This parameter can be any value of @ref FMC_ECC_Page_Size */ + + uint32_t FMC_TCLRSetupTime; /*!< Defines the number of HCLK cycles to configure the + delay between CLE low and RE low. + This parameter can be a value between 0 and 255. */ + + uint32_t FMC_TARSetupTime; /*!< Defines the number of HCLK cycles to configure the + delay between ALE low and RE low. + This parameter can be a number between 0 and 255 */ + + FMC_NAND_PCCARDTimingInitTypeDef* FMC_CommonSpaceTimingStruct; /*!< FMC Common Space Timing */ + + FMC_NAND_PCCARDTimingInitTypeDef* FMC_AttributeSpaceTimingStruct; /*!< FMC Attribute Space Timing */ +}FMC_NANDInitTypeDef; + +/** + * @brief FMC PCCARD Init structure definition + */ + +typedef struct +{ + uint32_t FMC_Waitfeature; /*!< Enables or disables the Wait feature for the Memory Bank. + This parameter can be any value of @ref FMC_Wait_feature */ + + uint32_t FMC_TCLRSetupTime; /*!< Defines the number of HCLK cycles to configure the + delay between CLE low and RE low. + This parameter can be a value between 0 and 255. */ + + uint32_t FMC_TARSetupTime; /*!< Defines the number of HCLK cycles to configure the + delay between ALE low and RE low. + This parameter can be a number between 0 and 255 */ + + + FMC_NAND_PCCARDTimingInitTypeDef* FMC_CommonSpaceTimingStruct; /*!< FMC Common Space Timing */ + + FMC_NAND_PCCARDTimingInitTypeDef* FMC_AttributeSpaceTimingStruct; /*!< FMC Attribute Space Timing */ + + FMC_NAND_PCCARDTimingInitTypeDef* FMC_IOSpaceTimingStruct; /*!< FMC IO Space Timing */ +}FMC_PCCARDInitTypeDef; + +/** + * @brief Timing parameters for FMC SDRAM Banks + */ + +typedef struct +{ + uint32_t FMC_LoadToActiveDelay; /*!< Defines the delay between a Load Mode Register command and + an active or Refresh command in number of memory clock cycles. + This parameter can be a value between 1 and 16. */ + + uint32_t FMC_ExitSelfRefreshDelay; /*!< Defines the delay from releasing the self refresh command to + issuing the Activate command in number of memory clock cycles. + This parameter can be a value between 1 and 16. */ + + uint32_t FMC_SelfRefreshTime; /*!< Defines the minimum Self Refresh period in number of memory clock + cycles. + This parameter can be a value between 1 and 16. */ + + uint32_t FMC_RowCycleDelay; /*!< Defines the delay between the Refresh command and the Activate command + and the delay between two consecutive Refresh commands in number of + memory clock cycles. + This parameter can be a value between 1 and 16. */ + + uint32_t FMC_WriteRecoveryTime; /*!< Defines the Write recovery Time in number of memory clock cycles. + This parameter can be a value between 1 and 16. */ + + uint32_t FMC_RPDelay; /*!< Defines the delay between a Precharge Command and an other command + in number of memory clock cycles. + This parameter can be a value between 1 and 16. */ + + uint32_t FMC_RCDDelay; /*!< Defines the delay between the Activate Command and a Read/Write command + in number of memory clock cycles. + This parameter can be a value between 1 and 16. */ + +}FMC_SDRAMTimingInitTypeDef; + +/** + * @brief Command parameters for FMC SDRAM Banks + */ + + +typedef struct +{ + uint32_t FMC_CommandMode; /*!< Defines the command issued to the SDRAM device. + This parameter can be a value of @ref FMC_Command_Mode. */ + + uint32_t FMC_CommandTarget; /*!< Defines which bank (1 or 2) the command will be issued to. + This parameter can be a value of @ref FMC_Command_Target. */ + + uint32_t FMC_AutoRefreshNumber; /*!< Defines the number of consecutive auto refresh command issued + in auto refresh mode. + This parameter can be a value between 1 and 16. */ + + uint32_t FMC_ModeRegisterDefinition; /*!< Defines the SDRAM Mode register content */ + +}FMC_SDRAMCommandTypeDef; + +/** + * @brief FMC SDRAM Init structure definition + */ + +typedef struct +{ + uint32_t FMC_Bank; /*!< Specifies the SDRAM memory bank that will be used. + This parameter can be a value of @ref FMC_SDRAM_Bank */ + + uint32_t FMC_ColumnBitsNumber; /*!< Defines the number of bits of column address. + This parameter can be a value of @ref FMC_ColumnBits_Number. */ + + uint32_t FMC_RowBitsNumber; /*!< Defines the number of bits of column address.. + This parameter can be a value of @ref FMC_RowBits_Number. */ + + uint32_t FMC_SDMemoryDataWidth; /*!< Defines the memory device width. + This parameter can be a value of @ref FMC_SDMemory_Data_Width. */ + + uint32_t FMC_InternalBankNumber; /*!< Defines the number of bits of column address. + This parameter can be of @ref FMC_InternalBank_Number. */ + + uint32_t FMC_CASLatency; /*!< Defines the SDRAM CAS latency in number of memory clock cycles. + This parameter can be a value of @ref FMC_CAS_Latency. */ + + uint32_t FMC_WriteProtection; /*!< Enables the SDRAM bank to be accessed in write mode. + This parameter can be a value of @ref FMC_Write_Protection. */ + + uint32_t FMC_SDClockPeriod; /*!< Define the SDRAM Clock Period for both SDRAM Banks and they allow to disable + the clock before changing frequency. + This parameter can be a value of @ref FMC_SDClock_Period. */ + + uint32_t FMC_ReadBurst; /*!< This bit enable the SDRAM controller to anticipate the next read commands + during the CAS latency and stores data in the Read FIFO. + This parameter can be a value of @ref FMC_Read_Burst. */ + + uint32_t FMC_ReadPipeDelay; /*!< Define the delay in system clock cycles on read data path. + This parameter can be a value of @ref FMC_ReadPipe_Delay. */ + + FMC_SDRAMTimingInitTypeDef* FMC_SDRAMTimingStruct; /*!< Timing Parameters for write and read access*/ + +}FMC_SDRAMInitTypeDef; + + +/* Exported constants --------------------------------------------------------*/ + +/** @defgroup FMC_Exported_Constants + * @{ + */ + +/** @defgroup FMC_NORSRAM_Bank + * @{ + */ +#define FMC_Bank1_NORSRAM1 ((uint32_t)0x00000000) +#define FMC_Bank1_NORSRAM2 ((uint32_t)0x00000002) +#define FMC_Bank1_NORSRAM3 ((uint32_t)0x00000004) +#define FMC_Bank1_NORSRAM4 ((uint32_t)0x00000006) + +#define IS_FMC_NORSRAM_BANK(BANK) (((BANK) == FMC_Bank1_NORSRAM1) || \ + ((BANK) == FMC_Bank1_NORSRAM2) || \ + ((BANK) == FMC_Bank1_NORSRAM3) || \ + ((BANK) == FMC_Bank1_NORSRAM4)) +/** + * @} + */ + +/** @defgroup FMC_NAND_Bank + * @{ + */ +#define FMC_Bank2_NAND ((uint32_t)0x00000010) +#define FMC_Bank3_NAND ((uint32_t)0x00000100) + +#define IS_FMC_NAND_BANK(BANK) (((BANK) == FMC_Bank2_NAND) || \ + ((BANK) == FMC_Bank3_NAND)) +/** + * @} + */ + +/** @defgroup FMC_PCCARD_Bank + * @{ + */ +#define FMC_Bank4_PCCARD ((uint32_t)0x00001000) +/** + * @} + */ + +/** @defgroup FMC_SDRAM_Bank + * @{ + */ +#define FMC_Bank1_SDRAM ((uint32_t)0x00000000) +#define FMC_Bank2_SDRAM ((uint32_t)0x00000001) + +#define IS_FMC_SDRAM_BANK(BANK) (((BANK) == FMC_Bank1_SDRAM) || \ + ((BANK) == FMC_Bank2_SDRAM)) + +/** + * @} + */ + + +/** @defgroup FMC_NOR_SRAM_Controller + * @{ + */ + +/** @defgroup FMC_Data_Address_Bus_Multiplexing + * @{ + */ + +#define FMC_DataAddressMux_Disable ((uint32_t)0x00000000) +#define FMC_DataAddressMux_Enable ((uint32_t)0x00000002) + +#define IS_FMC_MUX(MUX) (((MUX) == FMC_DataAddressMux_Disable) || \ + ((MUX) == FMC_DataAddressMux_Enable)) +/** + * @} + */ + +/** @defgroup FMC_Memory_Type + * @{ + */ + +#define FMC_MemoryType_SRAM ((uint32_t)0x00000000) +#define FMC_MemoryType_PSRAM ((uint32_t)0x00000004) +#define FMC_MemoryType_NOR ((uint32_t)0x00000008) + +#define IS_FMC_MEMORY(MEMORY) (((MEMORY) == FMC_MemoryType_SRAM) || \ + ((MEMORY) == FMC_MemoryType_PSRAM)|| \ + ((MEMORY) == FMC_MemoryType_NOR)) +/** + * @} + */ + +/** @defgroup FMC_NORSRAM_Data_Width + * @{ + */ + +#define FMC_NORSRAM_MemoryDataWidth_8b ((uint32_t)0x00000000) +#define FMC_NORSRAM_MemoryDataWidth_16b ((uint32_t)0x00000010) +#define FMC_NORSRAM_MemoryDataWidth_32b ((uint32_t)0x00000020) + +#define IS_FMC_NORSRAM_MEMORY_WIDTH(WIDTH) (((WIDTH) == FMC_NORSRAM_MemoryDataWidth_8b) || \ + ((WIDTH) == FMC_NORSRAM_MemoryDataWidth_16b) || \ + ((WIDTH) == FMC_NORSRAM_MemoryDataWidth_32b)) +/** + * @} + */ + +/** @defgroup FMC_Burst_Access_Mode + * @{ + */ + +#define FMC_BurstAccessMode_Disable ((uint32_t)0x00000000) +#define FMC_BurstAccessMode_Enable ((uint32_t)0x00000100) + +#define IS_FMC_BURSTMODE(STATE) (((STATE) == FMC_BurstAccessMode_Disable) || \ + ((STATE) == FMC_BurstAccessMode_Enable)) +/** + * @} + */ + +/** @defgroup FMC_AsynchronousWait + * @{ + */ +#define FMC_AsynchronousWait_Disable ((uint32_t)0x00000000) +#define FMC_AsynchronousWait_Enable ((uint32_t)0x00008000) + +#define IS_FMC_ASYNWAIT(STATE) (((STATE) == FMC_AsynchronousWait_Disable) || \ + ((STATE) == FMC_AsynchronousWait_Enable)) +/** + * @} + */ + +/** @defgroup FMC_Wait_Signal_Polarity + * @{ + */ +#define FMC_WaitSignalPolarity_Low ((uint32_t)0x00000000) +#define FMC_WaitSignalPolarity_High ((uint32_t)0x00000200) + +#define IS_FMC_WAIT_POLARITY(POLARITY) (((POLARITY) == FMC_WaitSignalPolarity_Low) || \ + ((POLARITY) == FMC_WaitSignalPolarity_High)) +/** + * @} + */ + +/** @defgroup FMC_Wrap_Mode + * @{ + */ +#define FMC_WrapMode_Disable ((uint32_t)0x00000000) +#define FMC_WrapMode_Enable ((uint32_t)0x00000400) + +#define IS_FMC_WRAP_MODE(MODE) (((MODE) == FMC_WrapMode_Disable) || \ + ((MODE) == FMC_WrapMode_Enable)) +/** + * @} + */ + +/** @defgroup FMC_Wait_Timing + * @{ + */ +#define FMC_WaitSignalActive_BeforeWaitState ((uint32_t)0x00000000) +#define FMC_WaitSignalActive_DuringWaitState ((uint32_t)0x00000800) + +#define IS_FMC_WAIT_SIGNAL_ACTIVE(ACTIVE) (((ACTIVE) == FMC_WaitSignalActive_BeforeWaitState) || \ + ((ACTIVE) == FMC_WaitSignalActive_DuringWaitState)) +/** + * @} + */ + +/** @defgroup FMC_Write_Operation + * @{ + */ +#define FMC_WriteOperation_Disable ((uint32_t)0x00000000) +#define FMC_WriteOperation_Enable ((uint32_t)0x00001000) + +#define IS_FMC_WRITE_OPERATION(OPERATION) (((OPERATION) == FMC_WriteOperation_Disable) || \ + ((OPERATION) == FMC_WriteOperation_Enable)) +/** + * @} + */ + +/** @defgroup FMC_Wait_Signal + * @{ + */ +#define FMC_WaitSignal_Disable ((uint32_t)0x00000000) +#define FMC_WaitSignal_Enable ((uint32_t)0x00002000) + +#define IS_FMC_WAITE_SIGNAL(SIGNAL) (((SIGNAL) == FMC_WaitSignal_Disable) || \ + ((SIGNAL) == FMC_WaitSignal_Enable)) +/** + * @} + */ + +/** @defgroup FMC_Extended_Mode + * @{ + */ +#define FMC_ExtendedMode_Disable ((uint32_t)0x00000000) +#define FMC_ExtendedMode_Enable ((uint32_t)0x00004000) + +#define IS_FMC_EXTENDED_MODE(MODE) (((MODE) == FMC_ExtendedMode_Disable) || \ + ((MODE) == FMC_ExtendedMode_Enable)) +/** + * @} + */ + +/** @defgroup FMC_Write_Burst + * @{ + */ + +#define FMC_WriteBurst_Disable ((uint32_t)0x00000000) +#define FMC_WriteBurst_Enable ((uint32_t)0x00080000) + +#define IS_FMC_WRITE_BURST(BURST) (((BURST) == FMC_WriteBurst_Disable) || \ + ((BURST) == FMC_WriteBurst_Enable)) +/** + * @} + */ + +/** @defgroup FMC_Continous_Clock + * @{ + */ + +#define FMC_CClock_SyncOnly ((uint32_t)0x00000000) +#define FMC_CClock_SyncAsync ((uint32_t)0x00100000) + +#define IS_FMC_CONTINOUS_CLOCK(CCLOCK) (((CCLOCK) == FMC_CClock_SyncOnly) || \ + ((CCLOCK) == FMC_CClock_SyncAsync)) +/** + * @} + */ + +/** @defgroup FMC_Address_Setup_Time + * @{ + */ +#define IS_FMC_ADDRESS_SETUP_TIME(TIME) ((TIME) <= 15) +/** + * @} + */ + +/** @defgroup FMC_Address_Hold_Time + * @{ + */ +#define IS_FMC_ADDRESS_HOLD_TIME(TIME) (((TIME) > 0) && ((TIME) <= 15)) +/** + * @} + */ + +/** @defgroup FMC_Data_Setup_Time + * @{ + */ +#define IS_FMC_DATASETUP_TIME(TIME) (((TIME) > 0) && ((TIME) <= 255)) +/** + * @} + */ + +/** @defgroup FMC_Bus_Turn_around_Duration + * @{ + */ +#define IS_FMC_TURNAROUND_TIME(TIME) ((TIME) <= 15) +/** + * @} + */ + +/** @defgroup FMC_CLK_Division + * @{ + */ +#define IS_FMC_CLK_DIV(DIV) (((DIV) > 0) && ((DIV) <= 15)) +/** + * @} + */ + +/** @defgroup FMC_Data_Latency + * @{ + */ +#define IS_FMC_DATA_LATENCY(LATENCY) ((LATENCY) <= 15) +/** + * @} + */ + +/** @defgroup FMC_Access_Mode + * @{ + */ +#define FMC_AccessMode_A ((uint32_t)0x00000000) +#define FMC_AccessMode_B ((uint32_t)0x10000000) +#define FMC_AccessMode_C ((uint32_t)0x20000000) +#define FMC_AccessMode_D ((uint32_t)0x30000000) + +#define IS_FMC_ACCESS_MODE(MODE) (((MODE) == FMC_AccessMode_A) || \ + ((MODE) == FMC_AccessMode_B) || \ + ((MODE) == FMC_AccessMode_C) || \ + ((MODE) == FMC_AccessMode_D)) +/** + * @} + */ + +/** + * @} + */ + +/** @defgroup FMC_NAND_PCCARD_Controller + * @{ + */ + +/** @defgroup FMC_Wait_feature + * @{ + */ +#define FMC_Waitfeature_Disable ((uint32_t)0x00000000) +#define FMC_Waitfeature_Enable ((uint32_t)0x00000002) + +#define IS_FMC_WAIT_FEATURE(FEATURE) (((FEATURE) == FMC_Waitfeature_Disable) || \ + ((FEATURE) == FMC_Waitfeature_Enable)) +/** + * @} + */ + +/** @defgroup FMC_NAND_Data_Width + * @{ + */ +#define FMC_NAND_MemoryDataWidth_8b ((uint32_t)0x00000000) +#define FMC_NAND_MemoryDataWidth_16b ((uint32_t)0x00000010) + +#define IS_FMC_NAND_MEMORY_WIDTH(WIDTH) (((WIDTH) == FMC_NAND_MemoryDataWidth_8b) || \ + ((WIDTH) == FMC_NAND_MemoryDataWidth_16b)) +/** + * @} + */ + +/** @defgroup FMC_ECC + * @{ + */ +#define FMC_ECC_Disable ((uint32_t)0x00000000) +#define FMC_ECC_Enable ((uint32_t)0x00000040) + +#define IS_FMC_ECC_STATE(STATE) (((STATE) == FMC_ECC_Disable) || \ + ((STATE) == FMC_ECC_Enable)) +/** + * @} + */ + +/** @defgroup FMC_ECC_Page_Size + * @{ + */ +#define FMC_ECCPageSize_256Bytes ((uint32_t)0x00000000) +#define FMC_ECCPageSize_512Bytes ((uint32_t)0x00020000) +#define FMC_ECCPageSize_1024Bytes ((uint32_t)0x00040000) +#define FMC_ECCPageSize_2048Bytes ((uint32_t)0x00060000) +#define FMC_ECCPageSize_4096Bytes ((uint32_t)0x00080000) +#define FMC_ECCPageSize_8192Bytes ((uint32_t)0x000A0000) + +#define IS_FMC_ECCPAGE_SIZE(SIZE) (((SIZE) == FMC_ECCPageSize_256Bytes) || \ + ((SIZE) == FMC_ECCPageSize_512Bytes) || \ + ((SIZE) == FMC_ECCPageSize_1024Bytes) || \ + ((SIZE) == FMC_ECCPageSize_2048Bytes) || \ + ((SIZE) == FMC_ECCPageSize_4096Bytes) || \ + ((SIZE) == FMC_ECCPageSize_8192Bytes)) +/** + * @} + */ + +/** @defgroup FMC_TCLR_Setup_Time + * @{ + */ +#define IS_FMC_TCLR_TIME(TIME) ((TIME) <= 255) +/** + * @} + */ + +/** @defgroup FMC_TAR_Setup_Time + * @{ + */ +#define IS_FMC_TAR_TIME(TIME) ((TIME) <= 255) +/** + * @} + */ + +/** @defgroup FMC_Setup_Time + * @{ + */ +#define IS_FMC_SETUP_TIME(TIME) ((TIME) <= 255) +/** + * @} + */ + +/** @defgroup FMC_Wait_Setup_Time + * @{ + */ +#define IS_FMC_WAIT_TIME(TIME) ((TIME) <= 255) +/** + * @} + */ + +/** @defgroup FMC_Hold_Setup_Time + * @{ + */ +#define IS_FMC_HOLD_TIME(TIME) ((TIME) <= 255) +/** + * @} + */ + +/** @defgroup FMC_HiZ_Setup_Time + * @{ + */ +#define IS_FMC_HIZ_TIME(TIME) ((TIME) <= 255) +/** + * @} + */ + +/** + * @} + */ + + +/** @defgroup FMC_NOR_SRAM_Controller + * @{ + */ + +/** @defgroup FMC_ColumnBits_Number + * @{ + */ +#define FMC_ColumnBits_Number_8b ((uint32_t)0x00000000) +#define FMC_ColumnBits_Number_9b ((uint32_t)0x00000001) +#define FMC_ColumnBits_Number_10b ((uint32_t)0x00000002) +#define FMC_ColumnBits_Number_11b ((uint32_t)0x00000003) + +#define IS_FMC_COLUMNBITS_NUMBER(COLUMN) (((COLUMN) == FMC_ColumnBits_Number_8b) || \ + ((COLUMN) == FMC_ColumnBits_Number_9b) || \ + ((COLUMN) == FMC_ColumnBits_Number_10b) || \ + ((COLUMN) == FMC_ColumnBits_Number_11b)) + +/** + * @} + */ + +/** @defgroup FMC_RowBits_Number + * @{ + */ +#define FMC_RowBits_Number_11b ((uint32_t)0x00000000) +#define FMC_RowBits_Number_12b ((uint32_t)0x00000004) +#define FMC_RowBits_Number_13b ((uint32_t)0x00000008) + +#define IS_FMC_ROWBITS_NUMBER(ROW) (((ROW) == FMC_RowBits_Number_11b) || \ + ((ROW) == FMC_RowBits_Number_12b) || \ + ((ROW) == FMC_RowBits_Number_13b)) + +/** + * @} + */ + +/** @defgroup FMC_SDMemory_Data_Width + * @{ + */ +#define FMC_SDMemory_Width_8b ((uint32_t)0x00000000) +#define FMC_SDMemory_Width_16b ((uint32_t)0x00000010) +#define FMC_SDMemory_Width_32b ((uint32_t)0x00000020) + +#define IS_FMC_SDMEMORY_WIDTH(WIDTH) (((WIDTH) == FMC_SDMemory_Width_8b) || \ + ((WIDTH) == FMC_SDMemory_Width_16b) || \ + ((WIDTH) == FMC_SDMemory_Width_32b)) + +/** + * @} + */ + +/** @defgroup FMC_InternalBank_Number + * @{ + */ +#define FMC_InternalBank_Number_2 ((uint32_t)0x00000000) +#define FMC_InternalBank_Number_4 ((uint32_t)0x00000040) + +#define IS_FMC_INTERNALBANK_NUMBER(NUMBER) (((NUMBER) == FMC_InternalBank_Number_2) || \ + ((NUMBER) == FMC_InternalBank_Number_4)) + +/** + * @} + */ + + +/** @defgroup FMC_CAS_Latency + * @{ + */ +#define FMC_CAS_Latency_1 ((uint32_t)0x00000080) +#define FMC_CAS_Latency_2 ((uint32_t)0x00000100) +#define FMC_CAS_Latency_3 ((uint32_t)0x00000180) + +#define IS_FMC_CAS_LATENCY(LATENCY) (((LATENCY) == FMC_CAS_Latency_1) || \ + ((LATENCY) == FMC_CAS_Latency_2) || \ + ((LATENCY) == FMC_CAS_Latency_3)) + +/** + * @} + */ + +/** @defgroup FMC_Write_Protection + * @{ + */ +#define FMC_Write_Protection_Disable ((uint32_t)0x00000000) +#define FMC_Write_Protection_Enable ((uint32_t)0x00000200) + +#define IS_FMC_WRITE_PROTECTION(WRITE) (((WRITE) == FMC_Write_Protection_Disable) || \ + ((WRITE) == FMC_Write_Protection_Enable)) + +/** + * @} + */ + + +/** @defgroup FMC_SDClock_Period + * @{ + */ +#define FMC_SDClock_Disable ((uint32_t)0x00000000) +#define FMC_SDClock_Period_2 ((uint32_t)0x00000800) +#define FMC_SDClock_Period_3 ((uint32_t)0x00000C00) + +#define IS_FMC_SDCLOCK_PERIOD(PERIOD) (((PERIOD) == FMC_SDClock_Disable) || \ + ((PERIOD) == FMC_SDClock_Period_2) || \ + ((PERIOD) == FMC_SDClock_Period_3)) + +/** + * @} + */ + +/** @defgroup FMC_Read_Burst + * @{ + */ +#define FMC_Read_Burst_Disable ((uint32_t)0x00000000) +#define FMC_Read_Burst_Enable ((uint32_t)0x00001000) + +#define IS_FMC_READ_BURST(RBURST) (((RBURST) == FMC_Read_Burst_Disable) || \ + ((RBURST) == FMC_Read_Burst_Enable)) + +/** + * @} + */ + +/** @defgroup FMC_ReadPipe_Delay + * @{ + */ +#define FMC_ReadPipe_Delay_0 ((uint32_t)0x00000000) +#define FMC_ReadPipe_Delay_1 ((uint32_t)0x00002000) +#define FMC_ReadPipe_Delay_2 ((uint32_t)0x00004000) + +#define IS_FMC_READPIPE_DELAY(DELAY) (((DELAY) == FMC_ReadPipe_Delay_0) || \ + ((DELAY) == FMC_ReadPipe_Delay_1) || \ + ((DELAY) == FMC_ReadPipe_Delay_2)) + +/** + * @} + */ + +/** @defgroup FMC_LoadToActive_Delay + * @{ + */ +#define IS_FMC_LOADTOACTIVE_DELAY(DELAY) (((DELAY) > 0) && ((DELAY) <= 16)) +/** + * @} + */ + +/** @defgroup FMC_ExitSelfRefresh_Delay + * @{ + */ +#define IS_FMC_EXITSELFREFRESH_DELAY(DELAY) (((DELAY) > 0) && ((DELAY) <= 16)) +/** + * @} + */ + +/** @defgroup FMC_SelfRefresh_Time + * @{ + */ +#define IS_FMC_SELFREFRESH_TIME(TIME) (((TIME) > 0) && ((TIME) <= 16)) +/** + * @} + */ + +/** @defgroup FMC_RowCycle_Delay + * @{ + */ +#define IS_FMC_ROWCYCLE_DELAY(DELAY) (((DELAY) > 0) && ((DELAY) <= 16)) +/** + * @} + */ + +/** @defgroup FMC_Write_Recovery_Time + * @{ + */ +#define IS_FMC_WRITE_RECOVERY_TIME(TIME) (((TIME) > 0) && ((TIME) <= 16)) +/** + * @} + */ + +/** @defgroup FMC_RP_Delay + * @{ + */ +#define IS_FMC_RP_DELAY(DELAY) (((DELAY) > 0) && ((DELAY) <= 16)) +/** + * @} + */ + +/** @defgroup FMC_RCD_Delay + * @{ + */ +#define IS_FMC_RCD_DELAY(DELAY) (((DELAY) > 0) && ((DELAY) <= 16)) + +/** + * @} + */ + +/** @defgroup FMC_Command_Mode + * @{ + */ +#define FMC_Command_Mode_normal ((uint32_t)0x00000000) +#define FMC_Command_Mode_CLK_Enabled ((uint32_t)0x00000001) +#define FMC_Command_Mode_PALL ((uint32_t)0x00000002) +#define FMC_Command_Mode_AutoRefresh ((uint32_t)0x00000003) +#define FMC_Command_Mode_LoadMode ((uint32_t)0x00000004) +#define FMC_Command_Mode_Selfrefresh ((uint32_t)0x00000005) +#define FMC_Command_Mode_PowerDown ((uint32_t)0x00000006) + +#define IS_FMC_COMMAND_MODE(COMMAND) (((COMMAND) == FMC_Command_Mode_normal) || \ + ((COMMAND) == FMC_Command_Mode_CLK_Enabled) || \ + ((COMMAND) == FMC_Command_Mode_PALL) || \ + ((COMMAND) == FMC_Command_Mode_AutoRefresh) || \ + ((COMMAND) == FMC_Command_Mode_LoadMode) || \ + ((COMMAND) == FMC_Command_Mode_Selfrefresh) || \ + ((COMMAND) == FMC_Command_Mode_PowerDown)) + +/** + * @} + */ + +/** @defgroup FMC_Command_Target + * @{ + */ +#define FMC_Command_Target_bank2 ((uint32_t)0x00000008) +#define FMC_Command_Target_bank1 ((uint32_t)0x00000010) +#define FMC_Command_Target_bank1_2 ((uint32_t)0x00000018) + +#define IS_FMC_COMMAND_TARGET(TARGET) (((TARGET) == FMC_Command_Target_bank1) || \ + ((TARGET) == FMC_Command_Target_bank2) || \ + ((TARGET) == FMC_Command_Target_bank1_2)) + +/** + * @} + */ + +/** @defgroup FMC_AutoRefresh_Number + * @{ + */ +#define IS_FMC_AUTOREFRESH_NUMBER(NUMBER) (((NUMBER) > 0) && ((NUMBER) <= 16)) + +/** + * @} + */ + +/** @defgroup FMC_ModeRegister_Definition + * @{ + */ +#define IS_FMC_MODE_REGISTER(CONTENT) ((CONTENT) <= 8191) + +/** + * @} + */ + + +/** @defgroup FMC_Mode_Status + * @{ + */ +#define FMC_NormalMode_Status ((uint32_t)0x00000000) +#define FMC_SelfRefreshMode_Status FMC_SDSR_MODES1_0 +#define FMC_PowerDownMode_Status FMC_SDSR_MODES1_1 + +#define IS_FMC_MODE_STATUS(STATUS) (((STATUS) == FMC_NormalMode_Status) || \ + ((STATUS) == FMC_SelfRefreshMode_Status) || \ + ((STATUS) == FMC_PowerDownMode_Status)) + + +/** + * @} + */ + +/** + * @} + */ + +/** @defgroup FMC_Interrupt_sources + * @{ + */ +#define FMC_IT_RisingEdge ((uint32_t)0x00000008) +#define FMC_IT_Level ((uint32_t)0x00000010) +#define FMC_IT_FallingEdge ((uint32_t)0x00000020) +#define FMC_IT_Refresh ((uint32_t)0x00004000) + +#define IS_FMC_IT(IT) ((((IT) & (uint32_t)0xFFFFBFC7) == 0x00000000) && ((IT) != 0x00000000)) +#define IS_FMC_GET_IT(IT) (((IT) == FMC_IT_RisingEdge) || \ + ((IT) == FMC_IT_Level) || \ + ((IT) == FMC_IT_FallingEdge) || \ + ((IT) == FMC_IT_Refresh)) + +#define IS_FMC_IT_BANK(BANK) (((BANK) == FMC_Bank2_NAND) || \ + ((BANK) == FMC_Bank3_NAND) || \ + ((BANK) == FMC_Bank4_PCCARD) || \ + ((BANK) == FMC_Bank1_SDRAM) || \ + ((BANK) == FMC_Bank2_SDRAM)) +/** + * @} + */ + +/** @defgroup FMC_Flags + * @{ + */ +#define FMC_FLAG_RisingEdge ((uint32_t)0x00000001) +#define FMC_FLAG_Level ((uint32_t)0x00000002) +#define FMC_FLAG_FallingEdge ((uint32_t)0x00000004) +#define FMC_FLAG_FEMPT ((uint32_t)0x00000040) +#define FMC_FLAG_Refresh FMC_SDSR_RE +#define FMC_FLAG_Busy FMC_SDSR_BUSY + +#define IS_FMC_GET_FLAG(FLAG) (((FLAG) == FMC_FLAG_RisingEdge) || \ + ((FLAG) == FMC_FLAG_Level) || \ + ((FLAG) == FMC_FLAG_FallingEdge) || \ + ((FLAG) == FMC_FLAG_FEMPT) || \ + ((FLAG) == FMC_FLAG_Refresh) || \ + ((FLAG) == FMC_SDSR_BUSY)) + +#define IS_FMC_GETFLAG_BANK(BANK) (((BANK) == FMC_Bank2_NAND) || \ + ((BANK) == FMC_Bank3_NAND) || \ + ((BANK) == FMC_Bank4_PCCARD) || \ + ((BANK) == FMC_Bank1_SDRAM) || \ + ((BANK) == FMC_Bank2_SDRAM) || \ + ((BANK) == (FMC_Bank1_SDRAM | FMC_Bank2_SDRAM))) + +#define IS_FMC_CLEAR_FLAG(FLAG) ((((FLAG) & (uint32_t)0xFFFFFFF8) == 0x00000000) && ((FLAG) != 0x00000000)) + + +/** + * @} + */ + +/** @defgroup FMC_Refresh_count + * @{ + */ +#define IS_FMC_REFRESH_COUNT(COUNT) ((COUNT) <= 8191) + +/** + * @} + */ + +/** + * @} + */ + + +/* Exported macro ------------------------------------------------------------*/ +/* Exported functions --------------------------------------------------------*/ + +/* NOR/SRAM Controller functions **********************************************/ +void FMC_NORSRAMDeInit(uint32_t FMC_Bank); +void FMC_NORSRAMInit(FMC_NORSRAMInitTypeDef* FMC_NORSRAMInitStruct); +void FMC_NORSRAMStructInit(FMC_NORSRAMInitTypeDef* FMC_NORSRAMInitStruct); +void FMC_NORSRAMCmd(uint32_t FMC_Bank, FunctionalState NewState); + +/* NAND Controller functions **************************************************/ +void FMC_NANDDeInit(uint32_t FMC_Bank); +void FMC_NANDInit(FMC_NANDInitTypeDef* FMC_NANDInitStruct); +void FMC_NANDStructInit(FMC_NANDInitTypeDef* FMC_NANDInitStruct); +void FMC_NANDCmd(uint32_t FMC_Bank, FunctionalState NewState); +void FMC_NANDECCCmd(uint32_t FMC_Bank, FunctionalState NewState); +uint32_t FMC_GetECC(uint32_t FMC_Bank); + +/* PCCARD Controller functions ************************************************/ +void FMC_PCCARDDeInit(void); +void FMC_PCCARDInit(FMC_PCCARDInitTypeDef* FMC_PCCARDInitStruct); +void FMC_PCCARDStructInit(FMC_PCCARDInitTypeDef* FMC_PCCARDInitStruct); +void FMC_PCCARDCmd(FunctionalState NewState); + +/* SDRAM Controller functions ************************************************/ +void FMC_SDRAMDeInit(uint32_t FMC_Bank); +void FMC_SDRAMInit(FMC_SDRAMInitTypeDef* FMC_SDRAMInitStruct); +void FMC_SDRAMStructInit(FMC_SDRAMInitTypeDef* FMC_SDRAMInitStruct); +void FMC_SDRAMCmdConfig(FMC_SDRAMCommandTypeDef* FMC_SDRAMCommandStruct); +uint32_t FMC_GetModeStatus(uint32_t SDRAM_Bank); +void FMC_SetRefreshCount(uint32_t FMC_Count); +void FMC_SetAutoRefresh_Number(uint32_t FMC_Number); +void FMC_SDRAMWriteProtectionConfig(uint32_t SDRAM_Bank, FunctionalState NewState); + +/* Interrupts and flags management functions **********************************/ +void FMC_ITConfig(uint32_t FMC_Bank, uint32_t FMC_IT, FunctionalState NewState); +FlagStatus FMC_GetFlagStatus(uint32_t FMC_Bank, uint32_t FMC_FLAG); +void FMC_ClearFlag(uint32_t FMC_Bank, uint32_t FMC_FLAG); +ITStatus FMC_GetITStatus(uint32_t FMC_Bank, uint32_t FMC_IT); +void FMC_ClearITPendingBit(uint32_t FMC_Bank, uint32_t FMC_IT); + +#ifdef __cplusplus +} +#endif + +#endif /*__STM32F4xx_FMC_H */ +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_fsmc.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_fsmc.h index 057ad890..deb0b0d2 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_fsmc.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_fsmc.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_fsmc.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the FSMC firmware * library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -97,7 +97,7 @@ typedef struct This parameter can be a value of @ref FSMC_NORSRAM_Bank */ uint32_t FSMC_DataAddressMux; /*!< Specifies whether the address and data values are - multiplexed on the databus or not. + multiplexed on the data bus or not. This parameter can be a value of @ref FSMC_Data_Address_Bus_Multiplexing */ uint32_t FSMC_MemoryType; /*!< Specifies the type of external memory attached to @@ -131,7 +131,7 @@ typedef struct uint32_t FSMC_WriteOperation; /*!< Enables or disables the write operation in the selected bank by the FSMC. This parameter can be a value of @ref FSMC_Write_Operation */ - uint32_t FSMC_WaitSignal; /*!< Enables or disables the wait-state insertion via wait + uint32_t FSMC_WaitSignal; /*!< Enables or disables the wait state insertion via wait signal, valid for Flash memory access in burst mode. This parameter can be a value of @ref FSMC_Wait_Signal */ @@ -141,9 +141,9 @@ typedef struct uint32_t FSMC_WriteBurst; /*!< Enables or disables the write burst operation. This parameter can be a value of @ref FSMC_Write_Burst */ - FSMC_NORSRAMTimingInitTypeDef* FSMC_ReadWriteTimingStruct; /*!< Timing Parameters for write and read access if the ExtendedMode is not used*/ + FSMC_NORSRAMTimingInitTypeDef* FSMC_ReadWriteTimingStruct; /*!< Timing Parameters for write and read access if the Extended Mode is not used*/ - FSMC_NORSRAMTimingInitTypeDef* FSMC_WriteTimingStruct; /*!< Timing Parameters for write access if the ExtendedMode is used*/ + FSMC_NORSRAMTimingInitTypeDef* FSMC_WriteTimingStruct; /*!< Timing Parameters for write access if the Extended Mode is used*/ }FSMC_NORSRAMInitTypeDef; /** @@ -152,26 +152,26 @@ typedef struct typedef struct { uint32_t FSMC_SetupTime; /*!< Defines the number of HCLK cycles to setup address before - the command assertion for NAND-Flash read or write access + the command assertion for NAND Flash read or write access to common/Attribute or I/O memory space (depending on the memory space timing to be configured). This parameter can be a value between 0 and 0xFF.*/ uint32_t FSMC_WaitSetupTime; /*!< Defines the minimum number of HCLK cycles to assert the - command for NAND-Flash read or write access to + command for NAND Flash read or write access to common/Attribute or I/O memory space (depending on the memory space timing to be configured). This parameter can be a number between 0x00 and 0xFF */ uint32_t FSMC_HoldSetupTime; /*!< Defines the number of HCLK clock cycles to hold address - (and data for write access) after the command deassertion - for NAND-Flash read or write access to common/Attribute + (and data for write access) after the command de-assertion + for NAND Flash read or write access to common/Attribute or I/O memory space (depending on the memory space timing to be configured). This parameter can be a number between 0x00 and 0xFF */ uint32_t FSMC_HiZSetupTime; /*!< Defines the number of HCLK clock cycles during which the - databus is kept in HiZ after the start of a NAND-Flash + data bus is kept in HiZ after the start of a NAND Flash write access to common/Attribute or I/O memory space (depending on the memory space timing to be configured). This parameter can be a number between 0x00 and 0xFF */ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_gpio.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_gpio.h index 24c77dcf..e41bf4e3 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_gpio.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_gpio.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_gpio.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the GPIO firmware - * library. + * library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -55,8 +55,10 @@ ((PERIPH) == GPIOF) || \ ((PERIPH) == GPIOG) || \ ((PERIPH) == GPIOH) || \ - ((PERIPH) == GPIOI)) - + ((PERIPH) == GPIOI) || \ + ((PERIPH) == GPIOJ) || \ + ((PERIPH) == GPIOK)) + /** * @brief GPIO Configuration Mode enumeration */ @@ -86,13 +88,20 @@ typedef enum */ typedef enum { - GPIO_Speed_2MHz = 0x00, /*!< Low speed */ - GPIO_Speed_25MHz = 0x01, /*!< Medium speed */ - GPIO_Speed_50MHz = 0x02, /*!< Fast speed */ - GPIO_Speed_100MHz = 0x03 /*!< High speed on 30 pF (80 MHz Output max speed on 15 pF) */ + GPIO_Low_Speed = 0x00, /*!< Low speed */ + GPIO_Medium_Speed = 0x01, /*!< Medium speed */ + GPIO_Fast_Speed = 0x02, /*!< Fast speed */ + GPIO_High_Speed = 0x03 /*!< High speed */ }GPIOSpeed_TypeDef; -#define IS_GPIO_SPEED(SPEED) (((SPEED) == GPIO_Speed_2MHz) || ((SPEED) == GPIO_Speed_25MHz) || \ - ((SPEED) == GPIO_Speed_50MHz)|| ((SPEED) == GPIO_Speed_100MHz)) + +/* Add legacy definition */ +#define GPIO_Speed_2MHz GPIO_Low_Speed +#define GPIO_Speed_25MHz GPIO_Medium_Speed +#define GPIO_Speed_50MHz GPIO_Fast_Speed +#define GPIO_Speed_100MHz GPIO_High_Speed + +#define IS_GPIO_SPEED(SPEED) (((SPEED) == GPIO_Low_Speed) || ((SPEED) == GPIO_Medium_Speed) || \ + ((SPEED) == GPIO_Fast_Speed)|| ((SPEED) == GPIO_High_Speed)) /** * @brief GPIO Configuration PullUp PullDown enumeration @@ -165,7 +174,8 @@ typedef struct #define GPIO_Pin_15 ((uint16_t)0x8000) /* Pin 15 selected */ #define GPIO_Pin_All ((uint16_t)0xFFFF) /* All pins selected */ -#define IS_GPIO_PIN(PIN) ((((PIN) & (uint16_t)0x00) == 0x00) && ((PIN) != (uint16_t)0x00)) +#define GPIO_PIN_MASK ((uint32_t)0x0000FFFF) /* PIN mask for assert test */ +#define IS_GPIO_PIN(PIN) (((PIN) & GPIO_PIN_MASK ) != (uint32_t)0x00) #define IS_GET_GPIO_PIN(PIN) (((PIN) == GPIO_Pin_0) || \ ((PIN) == GPIO_Pin_1) || \ ((PIN) == GPIO_Pin_2) || \ @@ -270,38 +280,56 @@ typedef struct /** * @brief AF 5 selection */ -#define GPIO_AF_SPI1 ((uint8_t)0x05) /* SPI1 Alternate Function mapping */ +#define GPIO_AF_SPI1 ((uint8_t)0x05) /* SPI1/I2S1 Alternate Function mapping */ #define GPIO_AF_SPI2 ((uint8_t)0x05) /* SPI2/I2S2 Alternate Function mapping */ +#define GPIO_AF5_SPI3 ((uint8_t)0x05) /* SPI3/I2S3 Alternate Function mapping (Only for STM32F411xE Devices) */ +#define GPIO_AF_SPI4 ((uint8_t)0x05) /* SPI4/I2S4 Alternate Function mapping */ +#define GPIO_AF_SPI5 ((uint8_t)0x05) /* SPI5 Alternate Function mapping */ +#define GPIO_AF_SPI6 ((uint8_t)0x05) /* SPI6 Alternate Function mapping */ /** * @brief AF 6 selection */ #define GPIO_AF_SPI3 ((uint8_t)0x06) /* SPI3/I2S3 Alternate Function mapping */ +#define GPIO_AF6_SPI2 ((uint8_t)0x06) /* SPI2 Alternate Function mapping (Only for STM32F411xE Devices) */ +#define GPIO_AF6_SPI4 ((uint8_t)0x06) /* SPI4 Alternate Function mapping (Only for STM32F411xE Devices) */ +#define GPIO_AF6_SPI5 ((uint8_t)0x06) /* SPI5 Alternate Function mapping (Only for STM32F411xE Devices) */ +#define GPIO_AF_SAI1 ((uint8_t)0x06) /* SAI1 Alternate Function mapping */ /** * @brief AF 7 selection */ -#define GPIO_AF_USART1 ((uint8_t)0x07) /* USART1 Alternate Function mapping */ -#define GPIO_AF_USART2 ((uint8_t)0x07) /* USART2 Alternate Function mapping */ -#define GPIO_AF_USART3 ((uint8_t)0x07) /* USART3 Alternate Function mapping */ -#define GPIO_AF_I2S3ext ((uint8_t)0x07) /* I2S3ext Alternate Function mapping */ +#define GPIO_AF_USART1 ((uint8_t)0x07) /* USART1 Alternate Function mapping */ +#define GPIO_AF_USART2 ((uint8_t)0x07) /* USART2 Alternate Function mapping */ +#define GPIO_AF_USART3 ((uint8_t)0x07) /* USART3 Alternate Function mapping */ +#define GPIO_AF7_SPI3 ((uint8_t)0x07) /* SPI3/I2S3ext Alternate Function mapping */ + +/** + * @brief AF 7 selection Legacy + */ +#define GPIO_AF_I2S3ext GPIO_AF7_SPI3 /** * @brief AF 8 selection */ -#define GPIO_AF_UART4 ((uint8_t)0x08) /* UART4 Alternate Function mapping */ -#define GPIO_AF_UART5 ((uint8_t)0x08) /* UART5 Alternate Function mapping */ +#define GPIO_AF_UART4 ((uint8_t)0x08) /* UART4 Alternate Function mapping */ +#define GPIO_AF_UART5 ((uint8_t)0x08) /* UART5 Alternate Function mapping */ #define GPIO_AF_USART6 ((uint8_t)0x08) /* USART6 Alternate Function mapping */ +#define GPIO_AF_UART7 ((uint8_t)0x08) /* UART7 Alternate Function mapping */ +#define GPIO_AF_UART8 ((uint8_t)0x08) /* UART8 Alternate Function mapping */ /** * @brief AF 9 selection */ -#define GPIO_AF_CAN1 ((uint8_t)0x09) /* CAN1 Alternate Function mapping */ -#define GPIO_AF_CAN2 ((uint8_t)0x09) /* CAN2 Alternate Function mapping */ +#define GPIO_AF_CAN1 ((uint8_t)0x09) /* CAN1 Alternate Function mapping */ +#define GPIO_AF_CAN2 ((uint8_t)0x09) /* CAN2 Alternate Function mapping */ #define GPIO_AF_TIM12 ((uint8_t)0x09) /* TIM12 Alternate Function mapping */ #define GPIO_AF_TIM13 ((uint8_t)0x09) /* TIM13 Alternate Function mapping */ #define GPIO_AF_TIM14 ((uint8_t)0x09) /* TIM14 Alternate Function mapping */ +#define GPIO_AF9_I2C2 ((uint8_t)0x09) /* I2C2 Alternate Function mapping (Only for STM32F401xx/STM32F411xE Devices) */ +#define GPIO_AF9_I2C3 ((uint8_t)0x09) /* I2C3 Alternate Function mapping (Only for STM32F401xx/STM32F411xE Devices) */ + /** * @brief AF 10 selection */ @@ -316,38 +344,100 @@ typedef struct /** * @brief AF 12 selection */ -#define GPIO_AF_FSMC ((uint8_t)0xC) /* FSMC Alternate Function mapping */ -#define GPIO_AF_OTG_HS_FS ((uint8_t)0xC) /* OTG HS configured in FS, Alternate Function mapping */ -#define GPIO_AF_SDIO ((uint8_t)0xC) /* SDIO Alternate Function mapping */ +#if defined (STM32F40_41xxx) +#define GPIO_AF_FSMC ((uint8_t)0xC) /* FSMC Alternate Function mapping */ +#endif /* STM32F40_41xxx */ + +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) +#define GPIO_AF_FMC ((uint8_t)0xC) /* FMC Alternate Function mapping */ +#endif /* STM32F427_437xx || STM32F429_439xx */ + +#define GPIO_AF_OTG_HS_FS ((uint8_t)0xC) /* OTG HS configured in FS, Alternate Function mapping */ +#define GPIO_AF_SDIO ((uint8_t)0xC) /* SDIO Alternate Function mapping */ /** * @brief AF 13 selection */ #define GPIO_AF_DCMI ((uint8_t)0x0D) /* DCMI Alternate Function mapping */ +/** + * @brief AF 14 selection + */ + +#define GPIO_AF_LTDC ((uint8_t)0x0E) /* LCD-TFT Alternate Function mapping */ + /** * @brief AF 15 selection */ #define GPIO_AF_EVENTOUT ((uint8_t)0x0F) /* EVENTOUT Alternate Function mapping */ -#define IS_GPIO_AF(AF) (((AF) == GPIO_AF_RTC_50Hz) || ((AF) == GPIO_AF_TIM14) || \ - ((AF) == GPIO_AF_MCO) || ((AF) == GPIO_AF_TAMPER) || \ - ((AF) == GPIO_AF_SWJ) || ((AF) == GPIO_AF_TRACE) || \ - ((AF) == GPIO_AF_TIM1) || ((AF) == GPIO_AF_TIM2) || \ - ((AF) == GPIO_AF_TIM3) || ((AF) == GPIO_AF_TIM4) || \ - ((AF) == GPIO_AF_TIM5) || ((AF) == GPIO_AF_TIM8) || \ - ((AF) == GPIO_AF_I2C1) || ((AF) == GPIO_AF_I2C2) || \ - ((AF) == GPIO_AF_I2C3) || ((AF) == GPIO_AF_SPI1) || \ - ((AF) == GPIO_AF_SPI2) || ((AF) == GPIO_AF_TIM13) || \ - ((AF) == GPIO_AF_SPI3) || ((AF) == GPIO_AF_TIM14) || \ - ((AF) == GPIO_AF_USART1) || ((AF) == GPIO_AF_USART2) || \ - ((AF) == GPIO_AF_USART3) || ((AF) == GPIO_AF_UART4) || \ - ((AF) == GPIO_AF_UART5) || ((AF) == GPIO_AF_USART6) || \ - ((AF) == GPIO_AF_CAN1) || ((AF) == GPIO_AF_CAN2) || \ - ((AF) == GPIO_AF_OTG_FS) || ((AF) == GPIO_AF_OTG_HS) || \ - ((AF) == GPIO_AF_ETH) || ((AF) == GPIO_AF_FSMC) || \ - ((AF) == GPIO_AF_OTG_HS_FS) || ((AF) == GPIO_AF_SDIO) || \ - ((AF) == GPIO_AF_DCMI) || ((AF) == GPIO_AF_EVENTOUT)) +#if defined (STM32F40_41xxx) +#define IS_GPIO_AF(AF) (((AF) == GPIO_AF_RTC_50Hz) || ((AF) == GPIO_AF_TIM14) || \ + ((AF) == GPIO_AF_MCO) || ((AF) == GPIO_AF_TAMPER) || \ + ((AF) == GPIO_AF_SWJ) || ((AF) == GPIO_AF_TRACE) || \ + ((AF) == GPIO_AF_TIM1) || ((AF) == GPIO_AF_TIM2) || \ + ((AF) == GPIO_AF_TIM3) || ((AF) == GPIO_AF_TIM4) || \ + ((AF) == GPIO_AF_TIM5) || ((AF) == GPIO_AF_TIM8) || \ + ((AF) == GPIO_AF_I2C1) || ((AF) == GPIO_AF_I2C2) || \ + ((AF) == GPIO_AF_I2C3) || ((AF) == GPIO_AF_SPI1) || \ + ((AF) == GPIO_AF_SPI2) || ((AF) == GPIO_AF_TIM13) || \ + ((AF) == GPIO_AF_SPI3) || ((AF) == GPIO_AF_TIM14) || \ + ((AF) == GPIO_AF_USART1) || ((AF) == GPIO_AF_USART2) || \ + ((AF) == GPIO_AF_USART3) || ((AF) == GPIO_AF_UART4) || \ + ((AF) == GPIO_AF_UART5) || ((AF) == GPIO_AF_USART6) || \ + ((AF) == GPIO_AF_CAN1) || ((AF) == GPIO_AF_CAN2) || \ + ((AF) == GPIO_AF_OTG_FS) || ((AF) == GPIO_AF_OTG_HS) || \ + ((AF) == GPIO_AF_ETH) || ((AF) == GPIO_AF_OTG_HS_FS) || \ + ((AF) == GPIO_AF_SDIO) || ((AF) == GPIO_AF_DCMI) || \ + ((AF) == GPIO_AF_EVENTOUT) || ((AF) == GPIO_AF_FSMC)) +#endif /* STM32F40_41xxx */ + +#if defined (STM32F401xx) +#define IS_GPIO_AF(AF) (((AF) == GPIO_AF_RTC_50Hz) || ((AF) == GPIO_AF_TIM14) || \ + ((AF) == GPIO_AF_MCO) || ((AF) == GPIO_AF_TAMPER) || \ + ((AF) == GPIO_AF_SWJ) || ((AF) == GPIO_AF_TRACE) || \ + ((AF) == GPIO_AF_TIM1) || ((AF) == GPIO_AF_TIM2) || \ + ((AF) == GPIO_AF_TIM3) || ((AF) == GPIO_AF_TIM4) || \ + ((AF) == GPIO_AF_TIM5) || ((AF) == GPIO_AF_TIM8) || \ + ((AF) == GPIO_AF_I2C1) || ((AF) == GPIO_AF_I2C2) || \ + ((AF) == GPIO_AF_I2C3) || ((AF) == GPIO_AF_SPI1) || \ + ((AF) == GPIO_AF_SPI2) || ((AF) == GPIO_AF_TIM13) || \ + ((AF) == GPIO_AF_SPI3) || ((AF) == GPIO_AF_TIM14) || \ + ((AF) == GPIO_AF_USART1) || ((AF) == GPIO_AF_USART2) || \ + ((AF) == GPIO_AF_SDIO) || ((AF) == GPIO_AF_USART6) || \ + ((AF) == GPIO_AF_OTG_FS) || ((AF) == GPIO_AF_OTG_HS) || \ + ((AF) == GPIO_AF_EVENTOUT) || ((AF) == GPIO_AF_SPI4)) +#endif /* STM32F401xx */ + +#if defined (STM32F411xE) +#define IS_GPIO_AF(AF) (((AF) < 16) && ((AF) != 11) && ((AF) != 13) && ((AF) != 14)) +#endif /* STM32F411xE */ + +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) +#define IS_GPIO_AF(AF) (((AF) == GPIO_AF_RTC_50Hz) || ((AF) == GPIO_AF_TIM14) || \ + ((AF) == GPIO_AF_MCO) || ((AF) == GPIO_AF_TAMPER) || \ + ((AF) == GPIO_AF_SWJ) || ((AF) == GPIO_AF_TRACE) || \ + ((AF) == GPIO_AF_TIM1) || ((AF) == GPIO_AF_TIM2) || \ + ((AF) == GPIO_AF_TIM3) || ((AF) == GPIO_AF_TIM4) || \ + ((AF) == GPIO_AF_TIM5) || ((AF) == GPIO_AF_TIM8) || \ + ((AF) == GPIO_AF_I2C1) || ((AF) == GPIO_AF_I2C2) || \ + ((AF) == GPIO_AF_I2C3) || ((AF) == GPIO_AF_SPI1) || \ + ((AF) == GPIO_AF_SPI2) || ((AF) == GPIO_AF_TIM13) || \ + ((AF) == GPIO_AF_SPI3) || ((AF) == GPIO_AF_TIM14) || \ + ((AF) == GPIO_AF_USART1) || ((AF) == GPIO_AF_USART2) || \ + ((AF) == GPIO_AF_USART3) || ((AF) == GPIO_AF_UART4) || \ + ((AF) == GPIO_AF_UART5) || ((AF) == GPIO_AF_USART6) || \ + ((AF) == GPIO_AF_CAN1) || ((AF) == GPIO_AF_CAN2) || \ + ((AF) == GPIO_AF_OTG_FS) || ((AF) == GPIO_AF_OTG_HS) || \ + ((AF) == GPIO_AF_ETH) || ((AF) == GPIO_AF_OTG_HS_FS) || \ + ((AF) == GPIO_AF_SDIO) || ((AF) == GPIO_AF_DCMI) || \ + ((AF) == GPIO_AF_EVENTOUT) || ((AF) == GPIO_AF_SPI4) || \ + ((AF) == GPIO_AF_SPI5) || ((AF) == GPIO_AF_SPI6) || \ + ((AF) == GPIO_AF_UART7) || ((AF) == GPIO_AF_UART8) || \ + ((AF) == GPIO_AF_FMC) || ((AF) == GPIO_AF_SAI1) || \ + ((AF) == GPIO_AF_LTDC)) +#endif /* STM32F427_437xx || STM32F429_439xx */ + /** * @} */ @@ -371,7 +461,7 @@ typedef struct */ /* Exported macro ------------------------------------------------------------*/ -/* Exported functions --------------------------------------------------------*/ +/* Exported functions --------------------------------------------------------*/ /* Function used to set the GPIO configuration to the default reset state ****/ void GPIO_DeInit(GPIO_TypeDef* GPIOx); diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_hash.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_hash.h index 2ac61a15..6994e1b9 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_hash.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_hash.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_hash.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the HASH * firmware library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -52,12 +52,12 @@ */ typedef struct { - uint32_t HASH_AlgoSelection; /*!< SHA-1 or MD5. This parameter can be a value - of @ref HASH_Algo_Selection */ + uint32_t HASH_AlgoSelection; /*!< SHA-1, SHA-224, SHA-256 or MD5. This parameter + can be a value of @ref HASH_Algo_Selection */ uint32_t HASH_AlgoMode; /*!< HASH or HMAC. This parameter can be a value of @ref HASH_processor_Algorithm_Mode */ uint32_t HASH_DataType; /*!< 32-bit data, 16-bit data, 8-bit data or - bit-string. This parameter can be a value of + bit string. This parameter can be a value of @ref HASH_Data_Type */ uint32_t HASH_HMACKeyType; /*!< HMAC Short key or HMAC Long Key. This parameter can be a value of @ref HASH_HMAC_Long_key_only_for_HMAC_mode */ @@ -68,7 +68,9 @@ typedef struct */ typedef struct { - uint32_t Data[5]; /*!< Message digest result : 5x 32bit words for SHA1 or + uint32_t Data[8]; /*!< Message digest result : 8x 32bit wors for SHA-256, + 7x 32bit wors for SHA-224, + 5x 32bit words for SHA-1 or 4x 32bit words for MD5 */ } HASH_MsgDigest; @@ -80,7 +82,7 @@ typedef struct uint32_t HASH_IMR; uint32_t HASH_STR; uint32_t HASH_CR; - uint32_t HASH_CSR[51]; + uint32_t HASH_CSR[54]; }HASH_Context; /* Exported constants --------------------------------------------------------*/ @@ -92,10 +94,14 @@ typedef struct /** @defgroup HASH_Algo_Selection * @{ */ -#define HASH_AlgoSelection_SHA1 ((uint16_t)0x0000) /*!< HASH function is SHA1 */ -#define HASH_AlgoSelection_MD5 ((uint16_t)0x0080) /*!< HASH function is MD5 */ +#define HASH_AlgoSelection_SHA1 ((uint32_t)0x0000) /*!< HASH function is SHA1 */ +#define HASH_AlgoSelection_SHA224 HASH_CR_ALGO_1 /*!< HASH function is SHA224 */ +#define HASH_AlgoSelection_SHA256 HASH_CR_ALGO /*!< HASH function is SHA256 */ +#define HASH_AlgoSelection_MD5 HASH_CR_ALGO_0 /*!< HASH function is MD5 */ #define IS_HASH_ALGOSELECTION(ALGOSELECTION) (((ALGOSELECTION) == HASH_AlgoSelection_SHA1) || \ + ((ALGOSELECTION) == HASH_AlgoSelection_SHA224) || \ + ((ALGOSELECTION) == HASH_AlgoSelection_SHA256) || \ ((ALGOSELECTION) == HASH_AlgoSelection_MD5)) /** * @} @@ -104,8 +110,8 @@ typedef struct /** @defgroup HASH_processor_Algorithm_Mode * @{ */ -#define HASH_AlgoMode_HASH ((uint16_t)0x0000) /*!< Algorithm is HASH */ -#define HASH_AlgoMode_HMAC ((uint16_t)0x0040) /*!< Algorithm is HMAC */ +#define HASH_AlgoMode_HASH ((uint32_t)0x00000000) /*!< Algorithm is HASH */ +#define HASH_AlgoMode_HMAC HASH_CR_MODE /*!< Algorithm is HMAC */ #define IS_HASH_ALGOMODE(ALGOMODE) (((ALGOMODE) == HASH_AlgoMode_HASH) || \ ((ALGOMODE) == HASH_AlgoMode_HMAC)) @@ -116,14 +122,14 @@ typedef struct /** @defgroup HASH_Data_Type * @{ */ -#define HASH_DataType_32b ((uint16_t)0x0000) -#define HASH_DataType_16b ((uint16_t)0x0010) -#define HASH_DataType_8b ((uint16_t)0x0020) -#define HASH_DataType_1b ((uint16_t)0x0030) +#define HASH_DataType_32b ((uint32_t)0x0000) /*!< 32-bit data. No swapping */ +#define HASH_DataType_16b HASH_CR_DATATYPE_0 /*!< 16-bit data. Each half word is swapped */ +#define HASH_DataType_8b HASH_CR_DATATYPE_1 /*!< 8-bit data. All bytes are swapped */ +#define HASH_DataType_1b HASH_CR_DATATYPE /*!< 1-bit data. In the word all bits are swapped */ #define IS_HASH_DATATYPE(DATATYPE) (((DATATYPE) == HASH_DataType_32b)|| \ ((DATATYPE) == HASH_DataType_16b)|| \ - ((DATATYPE) == HASH_DataType_8b)|| \ + ((DATATYPE) == HASH_DataType_8b) || \ ((DATATYPE) == HASH_DataType_1b)) /** * @} @@ -133,10 +139,10 @@ typedef struct * @{ */ #define HASH_HMACKeyType_ShortKey ((uint32_t)0x00000000) /*!< HMAC Key is <= 64 bytes */ -#define HASH_HMACKeyType_LongKey ((uint32_t)0x00010000) /*!< HMAC Key is > 64 bytes */ +#define HASH_HMACKeyType_LongKey HASH_CR_LKEY /*!< HMAC Key is > 64 bytes */ #define IS_HASH_HMAC_KEYTYPE(KEYTYPE) (((KEYTYPE) == HASH_HMACKeyType_ShortKey) || \ - ((KEYTYPE) == HASH_HMACKeyType_LongKey)) + ((KEYTYPE) == HASH_HMACKeyType_LongKey)) /** * @} */ @@ -153,10 +159,10 @@ typedef struct /** @defgroup HASH_interrupts_definition * @{ */ -#define HASH_IT_DINI ((uint8_t)0x01) /*!< A new block can be entered into the input buffer (DIN)*/ -#define HASH_IT_DCI ((uint8_t)0x02) /*!< Digest calculation complete */ +#define HASH_IT_DINI HASH_IMR_DINIM /*!< A new block can be entered into the input buffer (DIN) */ +#define HASH_IT_DCI HASH_IMR_DCIM /*!< Digest calculation complete */ -#define IS_HASH_IT(IT) ((((IT) & (uint8_t)0xFC) == 0x00) && ((IT) != 0x00)) +#define IS_HASH_IT(IT) ((((IT) & (uint32_t)0xFFFFFFFC) == 0x00000000) && ((IT) != 0x00000000)) #define IS_HASH_GET_IT(IT) (((IT) == HASH_IT_DINI) || ((IT) == HASH_IT_DCI)) /** @@ -166,11 +172,11 @@ typedef struct /** @defgroup HASH_flags_definition * @{ */ -#define HASH_FLAG_DINIS ((uint16_t)0x0001) /*!< 16 locations are free in the DIN : A new block can be entered into the input buffer.*/ -#define HASH_FLAG_DCIS ((uint16_t)0x0002) /*!< Digest calculation complete */ -#define HASH_FLAG_DMAS ((uint16_t)0x0004) /*!< DMA interface is enabled (DMAE=1) or a transfer is ongoing */ -#define HASH_FLAG_BUSY ((uint16_t)0x0008) /*!< The hash core is Busy : processing a block of data */ -#define HASH_FLAG_DINNE ((uint16_t)0x1000) /*!< DIN not empty : The input buffer contains at least one word of data */ +#define HASH_FLAG_DINIS HASH_SR_DINIS /*!< 16 locations are free in the DIN : A new block can be entered into the input buffer */ +#define HASH_FLAG_DCIS HASH_SR_DCIS /*!< Digest calculation complete */ +#define HASH_FLAG_DMAS HASH_SR_DMAS /*!< DMA interface is enabled (DMAE=1) or a transfer is ongoing */ +#define HASH_FLAG_BUSY HASH_SR_BUSY /*!< The hash core is Busy : processing a block of data */ +#define HASH_FLAG_DINNE HASH_CR_DINNE /*!< DIN not empty : The input buffer contains at least one word of data */ #define IS_HASH_GET_FLAG(FLAG) (((FLAG) == HASH_FLAG_DINIS) || \ ((FLAG) == HASH_FLAG_DCIS) || \ @@ -205,21 +211,22 @@ void HASH_DataIn(uint32_t Data); uint8_t HASH_GetInFIFOWordsNbr(void); void HASH_SetLastWordValidBitsNbr(uint16_t ValidNumber); void HASH_StartDigest(void); +void HASH_AutoStartDigest(FunctionalState NewState); void HASH_GetDigest(HASH_MsgDigest* HASH_MessageDigest); /* HASH Context swapping functions ********************************************/ void HASH_SaveContext(HASH_Context* HASH_ContextSave); void HASH_RestoreContext(HASH_Context* HASH_ContextRestore); -/* HASH's DMA interface function **********************************************/ +/* HASH DMA interface function ************************************************/ void HASH_DMACmd(FunctionalState NewState); /* HASH Interrupts and flags management functions *****************************/ -void HASH_ITConfig(uint8_t HASH_IT, FunctionalState NewState); -FlagStatus HASH_GetFlagStatus(uint16_t HASH_FLAG); -void HASH_ClearFlag(uint16_t HASH_FLAG); -ITStatus HASH_GetITStatus(uint8_t HASH_IT); -void HASH_ClearITPendingBit(uint8_t HASH_IT); +void HASH_ITConfig(uint32_t HASH_IT, FunctionalState NewState); +FlagStatus HASH_GetFlagStatus(uint32_t HASH_FLAG); +void HASH_ClearFlag(uint32_t HASH_FLAG); +ITStatus HASH_GetITStatus(uint32_t HASH_IT); +void HASH_ClearITPendingBit(uint32_t HASH_IT); /* High Level SHA1 functions **************************************************/ ErrorStatus HASH_SHA1(uint8_t *Input, uint32_t Ilen, uint8_t Output[20]); diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_i2c.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_i2c.h index 07d2ba57..8a2211d8 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_i2c.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_i2c.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_i2c.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the I2C firmware * library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -23,7 +23,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - ****************************************************************************** + ****************************************************************************** */ /* Define to prevent recursive inclusion -------------------------------------*/ @@ -82,6 +82,17 @@ typedef struct #define IS_I2C_ALL_PERIPH(PERIPH) (((PERIPH) == I2C1) || \ ((PERIPH) == I2C2) || \ ((PERIPH) == I2C3)) + +/** @defgroup I2C_Digital_Filter + * @{ + */ + +#define IS_I2C_DIGITAL_FILTER(FILTER) ((FILTER) <= 0x0000000F) +/** + * @} + */ + + /** @defgroup I2C_mode * @{ */ @@ -540,6 +551,8 @@ void I2C_DeInit(I2C_TypeDef* I2Cx); void I2C_Init(I2C_TypeDef* I2Cx, I2C_InitTypeDef* I2C_InitStruct); void I2C_StructInit(I2C_InitTypeDef* I2C_InitStruct); void I2C_Cmd(I2C_TypeDef* I2Cx, FunctionalState NewState); +void I2C_DigitalFilterConfig(I2C_TypeDef* I2Cx, uint16_t I2C_DigitalFilter); +void I2C_AnalogFilterCmd(I2C_TypeDef* I2Cx, FunctionalState NewState); void I2C_GenerateSTART(I2C_TypeDef* I2Cx, FunctionalState NewState); void I2C_GenerateSTOP(I2C_TypeDef* I2Cx, FunctionalState NewState); void I2C_Send7bitAddress(I2C_TypeDef* I2Cx, uint8_t Address, uint8_t I2C_Direction); diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_iwdg.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_iwdg.h index 57bd3e54..44d25432 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_iwdg.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_iwdg.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_iwdg.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the IWDG * firmware library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_ltdc.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_ltdc.h new file mode 100644 index 00000000..d461c6d4 --- /dev/null +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_ltdc.h @@ -0,0 +1,531 @@ +/** + ****************************************************************************** + * @file stm32f4xx_ltdc.h + * @author MCD Application Team + * @version V1.4.0 + * @date 04-August-2014 + * @brief This file contains all the functions prototypes for the LTDC firmware + * library. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT 2014 STMicroelectronics

+ * + * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); + * You may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.st.com/software_license_agreement_liberty_v2 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32F4xx_LTDC_H +#define __STM32F4xx_LTDC_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32f4xx.h" + +/** @addtogroup STM32F4xx_StdPeriph_Driver + * @{ + */ + +/** @addtogroup LTDC + * @{ + */ + +/* Exported types ------------------------------------------------------------*/ + +/** + * @brief LTDC Init structure definition + */ + +typedef struct +{ + uint32_t LTDC_HSPolarity; /*!< configures the horizontal synchronization polarity. + This parameter can be one value of @ref LTDC_HSPolarity */ + + uint32_t LTDC_VSPolarity; /*!< configures the vertical synchronization polarity. + This parameter can be one value of @ref LTDC_VSPolarity */ + + uint32_t LTDC_DEPolarity; /*!< configures the data enable polarity. This parameter can + be one of value of @ref LTDC_DEPolarity */ + + uint32_t LTDC_PCPolarity; /*!< configures the pixel clock polarity. This parameter can + be one of value of @ref LTDC_PCPolarity */ + + uint32_t LTDC_HorizontalSync; /*!< configures the number of Horizontal synchronization + width. This parameter must range from 0x000 to 0xFFF. */ + + uint32_t LTDC_VerticalSync; /*!< configures the number of Vertical synchronization + heigh. This parameter must range from 0x000 to 0x7FF. */ + + uint32_t LTDC_AccumulatedHBP; /*!< configures the accumulated horizontal back porch width. + This parameter must range from LTDC_HorizontalSync to 0xFFF. */ + + uint32_t LTDC_AccumulatedVBP; /*!< configures the accumulated vertical back porch heigh. + This parameter must range from LTDC_VerticalSync to 0x7FF. */ + + uint32_t LTDC_AccumulatedActiveW; /*!< configures the accumulated active width. This parameter + must range from LTDC_AccumulatedHBP to 0xFFF. */ + + uint32_t LTDC_AccumulatedActiveH; /*!< configures the accumulated active heigh. This parameter + must range from LTDC_AccumulatedVBP to 0x7FF. */ + + uint32_t LTDC_TotalWidth; /*!< configures the total width. This parameter + must range from LTDC_AccumulatedActiveW to 0xFFF. */ + + uint32_t LTDC_TotalHeigh; /*!< configures the total heigh. This parameter + must range from LTDC_AccumulatedActiveH to 0x7FF. */ + + uint32_t LTDC_BackgroundRedValue; /*!< configures the background red value. + This parameter must range from 0x00 to 0xFF. */ + + uint32_t LTDC_BackgroundGreenValue; /*!< configures the background green value. + This parameter must range from 0x00 to 0xFF. */ + + uint32_t LTDC_BackgroundBlueValue; /*!< configures the background blue value. + This parameter must range from 0x00 to 0xFF. */ +} LTDC_InitTypeDef; + +/** + * @brief LTDC Layer structure definition + */ + +typedef struct +{ + uint32_t LTDC_HorizontalStart; /*!< Configures the Window Horizontal Start Position. + This parameter must range from 0x000 to 0xFFF. */ + + uint32_t LTDC_HorizontalStop; /*!< Configures the Window Horizontal Stop Position. + This parameter must range from 0x0000 to 0xFFFF. */ + + uint32_t LTDC_VerticalStart; /*!< Configures the Window vertical Start Position. + This parameter must range from 0x000 to 0xFFF. */ + + uint32_t LTDC_VerticalStop; /*!< Configures the Window vaertical Stop Position. + This parameter must range from 0x0000 to 0xFFFF. */ + + uint32_t LTDC_PixelFormat; /*!< Specifies the pixel format. This parameter can be + one of value of @ref LTDC_Pixelformat */ + + uint32_t LTDC_ConstantAlpha; /*!< Specifies the constant alpha used for blending. + This parameter must range from 0x00 to 0xFF. */ + + uint32_t LTDC_DefaultColorBlue; /*!< Configures the default blue value. + This parameter must range from 0x00 to 0xFF. */ + + uint32_t LTDC_DefaultColorGreen; /*!< Configures the default green value. + This parameter must range from 0x00 to 0xFF. */ + + uint32_t LTDC_DefaultColorRed; /*!< Configures the default red value. + This parameter must range from 0x00 to 0xFF. */ + + uint32_t LTDC_DefaultColorAlpha; /*!< Configures the default alpha value. + This parameter must range from 0x00 to 0xFF. */ + + uint32_t LTDC_BlendingFactor_1; /*!< Select the blending factor 1. This parameter + can be one of value of @ref LTDC_BlendingFactor1 */ + + uint32_t LTDC_BlendingFactor_2; /*!< Select the blending factor 2. This parameter + can be one of value of @ref LTDC_BlendingFactor2 */ + + uint32_t LTDC_CFBStartAdress; /*!< Configures the color frame buffer address */ + + uint32_t LTDC_CFBLineLength; /*!< Configures the color frame buffer line length. + This parameter must range from 0x0000 to 0x1FFF. */ + + uint32_t LTDC_CFBPitch; /*!< Configures the color frame buffer pitch in bytes. + This parameter must range from 0x0000 to 0x1FFF. */ + + uint32_t LTDC_CFBLineNumber; /*!< Specifies the number of line in frame buffer. + This parameter must range from 0x000 to 0x7FF. */ +} LTDC_Layer_InitTypeDef; + +/** + * @brief LTDC Position structure definition + */ + +typedef struct +{ + uint32_t LTDC_POSX; /*!< Current X Position */ + uint32_t LTDC_POSY; /*!< Current Y Position */ +} LTDC_PosTypeDef; + +typedef struct +{ + uint32_t LTDC_BlueWidth; /*!< Blue width */ + uint32_t LTDC_GreenWidth; /*!< Green width */ + uint32_t LTDC_RedWidth; /*!< Red width */ +} LTDC_RGBTypeDef; + +typedef struct +{ + uint32_t LTDC_ColorKeyBlue; /*!< Configures the color key blue value. + This parameter must range from 0x00 to 0xFF. */ + + uint32_t LTDC_ColorKeyGreen; /*!< Configures the color key green value. + This parameter must range from 0x00 to 0xFF. */ + + uint32_t LTDC_ColorKeyRed; /*!< Configures the color key red value. + This parameter must range from 0x00 to 0xFF. */ +} LTDC_ColorKeying_InitTypeDef; + +typedef struct +{ + uint32_t LTDC_CLUTAdress; /*!< Configures the CLUT address. + This parameter must range from 0x00 to 0xFF. */ + + uint32_t LTDC_BlueValue; /*!< Configures the blue value. + This parameter must range from 0x00 to 0xFF. */ + + uint32_t LTDC_GreenValue; /*!< Configures the green value. + This parameter must range from 0x00 to 0xFF. */ + + uint32_t LTDC_RedValue; /*!< Configures the red value. + This parameter must range from 0x00 to 0xFF. */ +} LTDC_CLUT_InitTypeDef; + +/* Exported constants --------------------------------------------------------*/ + +/** @defgroup LTDC_Exported_Constants + * @} + */ + +/** @defgroup LTDC_SYNC + * @{ + */ + +#define LTDC_HorizontalSYNC ((uint32_t)0x00000FFF) +#define LTDC_VerticalSYNC ((uint32_t)0x000007FF) + +#define IS_LTDC_HSYNC(HSYNC) ((HSYNC) <= LTDC_HorizontalSYNC) +#define IS_LTDC_VSYNC(VSYNC) ((VSYNC) <= LTDC_VerticalSYNC) +#define IS_LTDC_AHBP(AHBP) ((AHBP) <= LTDC_HorizontalSYNC) +#define IS_LTDC_AVBP(AVBP) ((AVBP) <= LTDC_VerticalSYNC) +#define IS_LTDC_AAW(AAW) ((AAW) <= LTDC_HorizontalSYNC) +#define IS_LTDC_AAH(AAH) ((AAH) <= LTDC_VerticalSYNC) +#define IS_LTDC_TOTALW(TOTALW) ((TOTALW) <= LTDC_HorizontalSYNC) +#define IS_LTDC_TOTALH(TOTALH) ((TOTALH) <= LTDC_VerticalSYNC) + +/** + * @} + */ + +/** @defgroup LTDC_HSPolarity + * @{ + */ +#define LTDC_HSPolarity_AL ((uint32_t)0x00000000) /*!< Horizontal Synchronization is active low. */ +#define LTDC_HSPolarity_AH LTDC_GCR_HSPOL /*!< Horizontal Synchronization is active high. */ + +#define IS_LTDC_HSPOL(HSPOL) (((HSPOL) == LTDC_HSPolarity_AL) || \ + ((HSPOL) == LTDC_HSPolarity_AH)) + +/** + * @} + */ + +/** @defgroup LTDC_VSPolarity + * @{ + */ +#define LTDC_VSPolarity_AL ((uint32_t)0x00000000) /*!< Vertical Synchronization is active low. */ +#define LTDC_VSPolarity_AH LTDC_GCR_VSPOL /*!< Vertical Synchronization is active high. */ + +#define IS_LTDC_VSPOL(VSPOL) (((VSPOL) == LTDC_VSPolarity_AL) || \ + ((VSPOL) == LTDC_VSPolarity_AH)) + +/** + * @} + */ + +/** @defgroup LTDC_DEPolarity + * @{ + */ +#define LTDC_DEPolarity_AL ((uint32_t)0x00000000) /*!< Data Enable, is active low. */ +#define LTDC_DEPolarity_AH LTDC_GCR_DEPOL /*!< Data Enable, is active high. */ + +#define IS_LTDC_DEPOL(DEPOL) (((DEPOL) == LTDC_VSPolarity_AL) || \ + ((DEPOL) == LTDC_DEPolarity_AH)) + +/** + * @} + */ + +/** @defgroup LTDC_PCPolarity + * @{ + */ +#define LTDC_PCPolarity_IPC ((uint32_t)0x00000000) /*!< input pixel clock. */ +#define LTDC_PCPolarity_IIPC LTDC_GCR_PCPOL /*!< inverted input pixel clock. */ + +#define IS_LTDC_PCPOL(PCPOL) (((PCPOL) == LTDC_PCPolarity_IPC) || \ + ((PCPOL) == LTDC_PCPolarity_IIPC)) + +/** + * @} + */ + +/** @defgroup LTDC_Reload + * @{ + */ +#define LTDC_IMReload LTDC_SRCR_IMR /*!< Immediately Reload. */ +#define LTDC_VBReload LTDC_SRCR_VBR /*!< Vertical Blanking Reload. */ + +#define IS_LTDC_RELOAD(RELOAD) (((RELOAD) == LTDC_IMReload) || \ + ((RELOAD) == LTDC_VBReload)) + +/** + * @} + */ + +/** @defgroup LTDC_Back_Color + * @{ + */ + +#define LTDC_Back_Color ((uint32_t)0x000000FF) + +#define IS_LTDC_BackBlueValue(BBLUE) ((BBLUE) <= LTDC_Back_Color) +#define IS_LTDC_BackGreenValue(BGREEN) ((BGREEN) <= LTDC_Back_Color) +#define IS_LTDC_BackRedValue(BRED) ((BRED) <= LTDC_Back_Color) + +/** + * @} + */ + +/** @defgroup LTDC_Position + * @{ + */ + +#define LTDC_POS_CY LTDC_CPSR_CYPOS +#define LTDC_POS_CX LTDC_CPSR_CXPOS + +#define IS_LTDC_GET_POS(POS) (((POS) <= LTDC_POS_CY)) + + +/** + * @} + */ + +/** @defgroup LTDC_LIPosition + * @{ + */ + +#define IS_LTDC_LIPOS(LIPOS) ((LIPOS) <= 0x7FF) + +/** + * @} + */ + +/** @defgroup LTDC_CurrentStatus + * @{ + */ + +#define LTDC_CD_VDES LTDC_CDSR_VDES +#define LTDC_CD_HDES LTDC_CDSR_HDES +#define LTDC_CD_VSYNC LTDC_CDSR_VSYNCS +#define LTDC_CD_HSYNC LTDC_CDSR_HSYNCS + + +#define IS_LTDC_GET_CD(CD) (((CD) == LTDC_CD_VDES) || ((CD) == LTDC_CD_HDES) || \ + ((CD) == LTDC_CD_VSYNC) || ((CD) == LTDC_CD_HSYNC)) + + +/** + * @} + */ + +/** @defgroup LTDC_Interrupts + * @{ + */ + +#define LTDC_IT_LI LTDC_IER_LIE +#define LTDC_IT_FU LTDC_IER_FUIE +#define LTDC_IT_TERR LTDC_IER_TERRIE +#define LTDC_IT_RR LTDC_IER_RRIE + +#define IS_LTDC_IT(IT) ((((IT) & (uint32_t)0xFFFFFFF0) == 0x00) && ((IT) != 0x00)) + +/** + * @} + */ + +/** @defgroup LTDC_Flag + * @{ + */ + +#define LTDC_FLAG_LI LTDC_ISR_LIF +#define LTDC_FLAG_FU LTDC_ISR_FUIF +#define LTDC_FLAG_TERR LTDC_ISR_TERRIF +#define LTDC_FLAG_RR LTDC_ISR_RRIF + + +#define IS_LTDC_FLAG(FLAG) (((FLAG) == LTDC_FLAG_LI) || ((FLAG) == LTDC_FLAG_FU) || \ + ((FLAG) == LTDC_FLAG_TERR) || ((FLAG) == LTDC_FLAG_RR)) + +/** + * @} + */ + +/** @defgroup LTDC_Pixelformat + * @{ + */ +#define LTDC_Pixelformat_ARGB8888 ((uint32_t)0x00000000) +#define LTDC_Pixelformat_RGB888 ((uint32_t)0x00000001) +#define LTDC_Pixelformat_RGB565 ((uint32_t)0x00000002) +#define LTDC_Pixelformat_ARGB1555 ((uint32_t)0x00000003) +#define LTDC_Pixelformat_ARGB4444 ((uint32_t)0x00000004) +#define LTDC_Pixelformat_L8 ((uint32_t)0x00000005) +#define LTDC_Pixelformat_AL44 ((uint32_t)0x00000006) +#define LTDC_Pixelformat_AL88 ((uint32_t)0x00000007) + +#define IS_LTDC_Pixelformat(Pixelformat) (((Pixelformat) == LTDC_Pixelformat_ARGB8888) || ((Pixelformat) == LTDC_Pixelformat_RGB888) || \ + ((Pixelformat) == LTDC_Pixelformat_RGB565) || ((Pixelformat) == LTDC_Pixelformat_ARGB1555) || \ + ((Pixelformat) == LTDC_Pixelformat_ARGB4444) || ((Pixelformat) == LTDC_Pixelformat_L8) || \ + ((Pixelformat) == LTDC_Pixelformat_AL44) || ((Pixelformat) == LTDC_Pixelformat_AL88)) + +/** + * @} + */ + +/** @defgroup LTDC_BlendingFactor1 + * @{ + */ + +#define LTDC_BlendingFactor1_CA ((uint32_t)0x00000400) +#define LTDC_BlendingFactor1_PAxCA ((uint32_t)0x00000600) + +#define IS_LTDC_BlendingFactor1(BlendingFactor1) (((BlendingFactor1) == LTDC_BlendingFactor1_CA) || ((BlendingFactor1) == LTDC_BlendingFactor1_PAxCA)) + +/** + * @} + */ + +/** @defgroup LTDC_BlendingFactor2 + * @{ + */ + +#define LTDC_BlendingFactor2_CA ((uint32_t)0x00000005) +#define LTDC_BlendingFactor2_PAxCA ((uint32_t)0x00000007) + +#define IS_LTDC_BlendingFactor2(BlendingFactor2) (((BlendingFactor2) == LTDC_BlendingFactor2_CA) || ((BlendingFactor2) == LTDC_BlendingFactor2_PAxCA)) + + +/** + * @} + */ + + +/** @defgroup LTDC_LAYER_Config + * @{ + */ + +#define LTDC_STOPPosition ((uint32_t)0x0000FFFF) +#define LTDC_STARTPosition ((uint32_t)0x00000FFF) + +#define LTDC_DefaultColorConfig ((uint32_t)0x000000FF) +#define LTDC_ColorFrameBuffer ((uint32_t)0x00001FFF) +#define LTDC_LineNumber ((uint32_t)0x000007FF) + +#define IS_LTDC_HCONFIGST(HCONFIGST) ((HCONFIGST) <= LTDC_STARTPosition) +#define IS_LTDC_HCONFIGSP(HCONFIGSP) ((HCONFIGSP) <= LTDC_STOPPosition) +#define IS_LTDC_VCONFIGST(VCONFIGST) ((VCONFIGST) <= LTDC_STARTPosition) +#define IS_LTDC_VCONFIGSP(VCONFIGSP) ((VCONFIGSP) <= LTDC_STOPPosition) + +#define IS_LTDC_DEFAULTCOLOR(DEFAULTCOLOR) ((DEFAULTCOLOR) <= LTDC_DefaultColorConfig) + +#define IS_LTDC_CFBP(CFBP) ((CFBP) <= LTDC_ColorFrameBuffer) +#define IS_LTDC_CFBLL(CFBLL) ((CFBLL) <= LTDC_ColorFrameBuffer) + +#define IS_LTDC_CFBLNBR(CFBLNBR) ((CFBLNBR) <= LTDC_LineNumber) + + + +/** + * @} + */ + +/** @defgroup LTDC_colorkeying_Config + * @{ + */ + +#define LTDC_colorkeyingConfig ((uint32_t)0x000000FF) + +#define IS_LTDC_CKEYING(CKEYING) ((CKEYING) <= LTDC_colorkeyingConfig) + + +/** + * @} + */ + +/** @defgroup LTDC_CLUT_Config + * @{ + */ + +#define LTDC_CLUTWR ((uint32_t)0x000000FF) + +#define IS_LTDC_CLUTWR(CLUTWR) ((CLUTWR) <= LTDC_CLUTWR) + +/* Exported macro ------------------------------------------------------------*/ +/* Exported functions ------------------------------------------------------- */ + +/* Function used to set the LTDC configuration to the default reset state *****/ +void LTDC_DeInit(void); + +/* Initialization and Configuration functions *********************************/ +void LTDC_Init(LTDC_InitTypeDef* LTDC_InitStruct); +void LTDC_StructInit(LTDC_InitTypeDef* LTDC_InitStruct); +void LTDC_Cmd(FunctionalState NewState); +void LTDC_DitherCmd(FunctionalState NewState); +LTDC_RGBTypeDef LTDC_GetRGBWidth(void); +void LTDC_RGBStructInit(LTDC_RGBTypeDef* LTDC_RGB_InitStruct); +void LTDC_LIPConfig(uint32_t LTDC_LIPositionConfig); +void LTDC_ReloadConfig(uint32_t LTDC_Reload); +void LTDC_LayerInit(LTDC_Layer_TypeDef* LTDC_Layerx, LTDC_Layer_InitTypeDef* LTDC_Layer_InitStruct); +void LTDC_LayerStructInit(LTDC_Layer_InitTypeDef * LTDC_Layer_InitStruct); +void LTDC_LayerCmd(LTDC_Layer_TypeDef* LTDC_Layerx, FunctionalState NewState); +LTDC_PosTypeDef LTDC_GetPosStatus(void); +void LTDC_PosStructInit(LTDC_PosTypeDef* LTDC_Pos_InitStruct); +FlagStatus LTDC_GetCDStatus(uint32_t LTDC_CD); +void LTDC_ColorKeyingConfig(LTDC_Layer_TypeDef* LTDC_Layerx, LTDC_ColorKeying_InitTypeDef* LTDC_colorkeying_InitStruct, FunctionalState NewState); +void LTDC_ColorKeyingStructInit(LTDC_ColorKeying_InitTypeDef* LTDC_colorkeying_InitStruct); +void LTDC_CLUTCmd(LTDC_Layer_TypeDef* LTDC_Layerx, FunctionalState NewState); +void LTDC_CLUTInit(LTDC_Layer_TypeDef* LTDC_Layerx, LTDC_CLUT_InitTypeDef* LTDC_CLUT_InitStruct); +void LTDC_CLUTStructInit(LTDC_CLUT_InitTypeDef* LTDC_CLUT_InitStruct); +void LTDC_LayerPosition(LTDC_Layer_TypeDef* LTDC_Layerx, uint16_t OffsetX, uint16_t OffsetY); +void LTDC_LayerAlpha(LTDC_Layer_TypeDef* LTDC_Layerx, uint8_t ConstantAlpha); +void LTDC_LayerAddress(LTDC_Layer_TypeDef* LTDC_Layerx, uint32_t Address); +void LTDC_LayerSize(LTDC_Layer_TypeDef* LTDC_Layerx, uint32_t Width, uint32_t Height); +void LTDC_LayerPixelFormat(LTDC_Layer_TypeDef* LTDC_Layerx, uint32_t PixelFormat); + +/* Interrupts and flags management functions **********************************/ +void LTDC_ITConfig(uint32_t LTDC_IT, FunctionalState NewState); +FlagStatus LTDC_GetFlagStatus(uint32_t LTDC_FLAG); +void LTDC_ClearFlag(uint32_t LTDC_FLAG); +ITStatus LTDC_GetITStatus(uint32_t LTDC_IT); +void LTDC_ClearITPendingBit(uint32_t LTDC_IT); + +#ifdef __cplusplus +} +#endif + +#endif /* __STM32F4xx_LTDC_H */ + +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_pwr.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_pwr.h index ee841b18..20b1fe9f 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_pwr.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_pwr.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_pwr.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the PWR firmware * library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -55,7 +55,6 @@ /** @defgroup PWR_PVD_detection_level * @{ */ - #define PWR_PVDLevel_0 PWR_CR_PLS_LEV0 #define PWR_PVDLevel_1 PWR_CR_PLS_LEV1 #define PWR_PVDLevel_2 PWR_CR_PLS_LEV2 @@ -77,31 +76,52 @@ /** @defgroup PWR_Regulator_state_in_STOP_mode * @{ */ +#define PWR_MainRegulator_ON ((uint32_t)0x00000000) +#define PWR_LowPowerRegulator_ON PWR_CR_LPDS + +/* --- PWR_Legacy ---*/ +#define PWR_Regulator_ON PWR_MainRegulator_ON +#define PWR_Regulator_LowPower PWR_LowPowerRegulator_ON + +#define IS_PWR_REGULATOR(REGULATOR) (((REGULATOR) == PWR_MainRegulator_ON) || \ + ((REGULATOR) == PWR_LowPowerRegulator_ON)) -#define PWR_Regulator_ON ((uint32_t)0x00000000) -#define PWR_Regulator_LowPower PWR_CR_LPDS -#define IS_PWR_REGULATOR(REGULATOR) (((REGULATOR) == PWR_Regulator_ON) || \ - ((REGULATOR) == PWR_Regulator_LowPower)) /** * @} */ -/** @defgroup PWR_STOP_mode_entry +/** @defgroup PWR_Regulator_state_in_UnderDrive_mode * @{ */ +#define PWR_MainRegulator_UnderDrive_ON PWR_CR_MRUDS +#define PWR_LowPowerRegulator_UnderDrive_ON ((uint32_t)(PWR_CR_LPDS | PWR_CR_LPUDS)) + +#define IS_PWR_REGULATOR_UNDERDRIVE(REGULATOR) (((REGULATOR) == PWR_MainRegulator_UnderDrive_ON) || \ + ((REGULATOR) == PWR_LowPowerRegulator_UnderDrive_ON)) + +/** + * @} + */ +/** @defgroup PWR_STOP_mode_entry + * @{ + */ #define PWR_STOPEntry_WFI ((uint8_t)0x01) #define PWR_STOPEntry_WFE ((uint8_t)0x02) #define IS_PWR_STOP_ENTRY(ENTRY) (((ENTRY) == PWR_STOPEntry_WFI) || ((ENTRY) == PWR_STOPEntry_WFE)) +/** + * @} + */ /** @defgroup PWR_Regulator_Voltage_Scale * @{ */ - -#define PWR_Regulator_Voltage_Scale1 ((uint32_t)0x00004000) -#define PWR_Regulator_Voltage_Scale2 ((uint32_t)0x00000000) -#define IS_PWR_REGULATOR_VOLTAGE(VOLTAGE) (((VOLTAGE) == PWR_Regulator_Voltage_Scale1) || ((VOLTAGE) == PWR_Regulator_Voltage_Scale2)) - +#define PWR_Regulator_Voltage_Scale1 ((uint32_t)0x0000C000) +#define PWR_Regulator_Voltage_Scale2 ((uint32_t)0x00008000) +#define PWR_Regulator_Voltage_Scale3 ((uint32_t)0x00004000) +#define IS_PWR_REGULATOR_VOLTAGE(VOLTAGE) (((VOLTAGE) == PWR_Regulator_Voltage_Scale1) || \ + ((VOLTAGE) == PWR_Regulator_Voltage_Scale2) || \ + ((VOLTAGE) == PWR_Regulator_Voltage_Scale3)) /** * @} */ @@ -109,26 +129,27 @@ /** @defgroup PWR_Flag * @{ */ - #define PWR_FLAG_WU PWR_CSR_WUF #define PWR_FLAG_SB PWR_CSR_SBF #define PWR_FLAG_PVDO PWR_CSR_PVDO #define PWR_FLAG_BRR PWR_CSR_BRR #define PWR_FLAG_VOSRDY PWR_CSR_VOSRDY +#define PWR_FLAG_ODRDY PWR_CSR_ODRDY +#define PWR_FLAG_ODSWRDY PWR_CSR_ODSWRDY +#define PWR_FLAG_UDRDY PWR_CSR_UDSWRDY -/** @defgroup PWR_Flag_Legacy - * @{ - */ +/* --- FLAG Legacy ---*/ #define PWR_FLAG_REGRDY PWR_FLAG_VOSRDY -/** - * @} - */ #define IS_PWR_GET_FLAG(FLAG) (((FLAG) == PWR_FLAG_WU) || ((FLAG) == PWR_FLAG_SB) || \ ((FLAG) == PWR_FLAG_PVDO) || ((FLAG) == PWR_FLAG_BRR) || \ - ((FLAG) == PWR_FLAG_VOSRDY)) + ((FLAG) == PWR_FLAG_VOSRDY) || ((FLAG) == PWR_FLAG_ODRDY) || \ + ((FLAG) == PWR_FLAG_ODSWRDY) || ((FLAG) == PWR_FLAG_UDRDY)) + + +#define IS_PWR_CLEAR_FLAG(FLAG) (((FLAG) == PWR_FLAG_WU) || ((FLAG) == PWR_FLAG_SB) || \ + ((FLAG) == PWR_FLAG_UDRDY)) -#define IS_PWR_CLEAR_FLAG(FLAG) (((FLAG) == PWR_FLAG_WU) || ((FLAG) == PWR_FLAG_SB)) /** * @} */ @@ -156,12 +177,18 @@ void PWR_WakeUpPinCmd(FunctionalState NewState); /* Main and Backup Regulators configuration functions *************************/ void PWR_BackupRegulatorCmd(FunctionalState NewState); void PWR_MainRegulatorModeConfig(uint32_t PWR_Regulator_Voltage); +void PWR_OverDriveCmd(FunctionalState NewState); +void PWR_OverDriveSWCmd(FunctionalState NewState); +void PWR_UnderDriveCmd(FunctionalState NewState); +void PWR_MainRegulatorLowVoltageCmd(FunctionalState NewState); +void PWR_LowRegulatorLowVoltageCmd(FunctionalState NewState); /* FLASH Power Down configuration functions ***********************************/ void PWR_FlashPowerDownCmd(FunctionalState NewState); /* Low Power modes configuration functions ************************************/ void PWR_EnterSTOPMode(uint32_t PWR_Regulator, uint8_t PWR_STOPEntry); +void PWR_EnterUnderDriveSTOPMode(uint32_t PWR_Regulator, uint8_t PWR_STOPEntry); void PWR_EnterSTANDBYMode(void); /* Flags management functions *************************************************/ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rcc.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rcc.h index 5743bef3..2a77e333 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rcc.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rcc.h @@ -2,13 +2,13 @@ ****************************************************************************** * @file stm32f4xx_rcc.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 - * @brief This file contains all the functions prototypes for the RCC firmware library. + * @version V1.4.0 + * @date 04-August-2014 + * @brief This file contains all the functions prototypes for the RCC firmware library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -48,9 +48,9 @@ typedef struct { uint32_t SYSCLK_Frequency; /*!< SYSCLK clock frequency expressed in Hz */ - uint32_t HCLK_Frequency; /*!< HCLK clock frequency expressed in Hz */ - uint32_t PCLK1_Frequency; /*!< PCLK1 clock frequency expressed in Hz */ - uint32_t PCLK2_Frequency; /*!< PCLK2 clock frequency expressed in Hz */ + uint32_t HCLK_Frequency; /*!< HCLK clock frequency expressed in Hz */ + uint32_t PCLK1_Frequency; /*!< PCLK1 clock frequency expressed in Hz */ + uint32_t PCLK2_Frequency; /*!< PCLK2 clock frequency expressed in Hz */ }RCC_ClocksTypeDef; /* Exported constants --------------------------------------------------------*/ @@ -70,7 +70,18 @@ typedef struct /** * @} */ - + +/** @defgroup RCC_LSE_Dual_Mode_Selection + * @{ + */ +#define RCC_LSE_LOWPOWER_MODE ((uint8_t)0x00) +#define RCC_LSE_HIGHDRIVE_MODE ((uint8_t)0x01) +#define IS_RCC_LSE_MODE(MODE) (((MODE) == RCC_LSE_LOWPOWER_MODE) || \ + ((MODE) == RCC_LSE_HIGHDRIVE_MODE)) +/** + * @} + */ + /** @defgroup RCC_PLL_Clock_Source * @{ */ @@ -84,7 +95,26 @@ typedef struct #define IS_RCC_PLLQ_VALUE(VALUE) ((4 <= (VALUE)) && ((VALUE) <= 15)) #define IS_RCC_PLLI2SN_VALUE(VALUE) ((192 <= (VALUE)) && ((VALUE) <= 432)) -#define IS_RCC_PLLI2SR_VALUE(VALUE) ((2 <= (VALUE)) && ((VALUE) <= 7)) +#define IS_RCC_PLLI2SR_VALUE(VALUE) ((2 <= (VALUE)) && ((VALUE) <= 7)) +#define IS_RCC_PLLI2SM_VALUE(VALUE) ((VALUE) <= 63) + +#define IS_RCC_PLLI2SQ_VALUE(VALUE) ((2 <= (VALUE)) && ((VALUE) <= 15)) +#define IS_RCC_PLLSAIN_VALUE(VALUE) ((192 <= (VALUE)) && ((VALUE) <= 432)) +#define IS_RCC_PLLSAIQ_VALUE(VALUE) ((2 <= (VALUE)) && ((VALUE) <= 15)) +#define IS_RCC_PLLSAIR_VALUE(VALUE) ((2 <= (VALUE)) && ((VALUE) <= 7)) + +#define IS_RCC_PLLSAI_DIVQ_VALUE(VALUE) ((1 <= (VALUE)) && ((VALUE) <= 32)) +#define IS_RCC_PLLI2S_DIVQ_VALUE(VALUE) ((1 <= (VALUE)) && ((VALUE) <= 32)) + +#define RCC_PLLSAIDivR_Div2 ((uint32_t)0x00000000) +#define RCC_PLLSAIDivR_Div4 ((uint32_t)0x00010000) +#define RCC_PLLSAIDivR_Div8 ((uint32_t)0x00020000) +#define RCC_PLLSAIDivR_Div16 ((uint32_t)0x00030000) +#define IS_RCC_PLLSAI_DIVR_VALUE(VALUE) (((VALUE) == RCC_PLLSAIDivR_Div2) ||\ + ((VALUE) == RCC_PLLSAIDivR_Div4) ||\ + ((VALUE) == RCC_PLLSAIDivR_Div8) ||\ + ((VALUE) == RCC_PLLSAIDivR_Div16)) + /** * @} */ @@ -146,14 +176,17 @@ typedef struct #define RCC_IT_HSIRDY ((uint8_t)0x04) #define RCC_IT_HSERDY ((uint8_t)0x08) #define RCC_IT_PLLRDY ((uint8_t)0x10) -#define RCC_IT_PLLI2SRDY ((uint8_t)0x20) +#define RCC_IT_PLLI2SRDY ((uint8_t)0x20) +#define RCC_IT_PLLSAIRDY ((uint8_t)0x40) #define RCC_IT_CSS ((uint8_t)0x80) -#define IS_RCC_IT(IT) ((((IT) & (uint8_t)0xC0) == 0x00) && ((IT) != 0x00)) + +#define IS_RCC_IT(IT) ((((IT) & (uint8_t)0x80) == 0x00) && ((IT) != 0x00)) #define IS_RCC_GET_IT(IT) (((IT) == RCC_IT_LSIRDY) || ((IT) == RCC_IT_LSERDY) || \ ((IT) == RCC_IT_HSIRDY) || ((IT) == RCC_IT_HSERDY) || \ ((IT) == RCC_IT_PLLRDY) || ((IT) == RCC_IT_CSS) || \ - ((IT) == RCC_IT_PLLI2SRDY)) -#define IS_RCC_CLEAR_IT(IT) ((((IT) & (uint8_t)0x40) == 0x00) && ((IT) != 0x00)) + ((IT) == RCC_IT_PLLSAIRDY) || ((IT) == RCC_IT_PLLI2SRDY)) +#define IS_RCC_CLEAR_IT(IT)((IT) != 0x00) + /** * @} */ @@ -251,6 +284,45 @@ typedef struct /** * @} */ + +/** @defgroup RCC_SAI_BlockA_Clock_Source + * @{ + */ +#define RCC_SAIACLKSource_PLLSAI ((uint32_t)0x00000000) +#define RCC_SAIACLKSource_PLLI2S ((uint32_t)0x00100000) +#define RCC_SAIACLKSource_Ext ((uint32_t)0x00200000) + +#define IS_RCC_SAIACLK_SOURCE(SOURCE) (((SOURCE) == RCC_SAIACLKSource_PLLI2S) ||\ + ((SOURCE) == RCC_SAIACLKSource_PLLSAI) ||\ + ((SOURCE) == RCC_SAIACLKSource_Ext)) +/** + * @} + */ + +/** @defgroup RCC_SAI_BlockB_Clock_Source + * @{ + */ +#define RCC_SAIBCLKSource_PLLSAI ((uint32_t)0x00000000) +#define RCC_SAIBCLKSource_PLLI2S ((uint32_t)0x00400000) +#define RCC_SAIBCLKSource_Ext ((uint32_t)0x00800000) + +#define IS_RCC_SAIBCLK_SOURCE(SOURCE) (((SOURCE) == RCC_SAIBCLKSource_PLLI2S) ||\ + ((SOURCE) == RCC_SAIBCLKSource_PLLSAI) ||\ + ((SOURCE) == RCC_SAIBCLKSource_Ext)) +/** + * @} + */ + +/** @defgroup RCC_TIM_PRescaler_Selection + * @{ + */ +#define RCC_TIMPrescDesactivated ((uint8_t)0x00) +#define RCC_TIMPrescActivated ((uint8_t)0x01) + +#define IS_RCC_TIMCLK_PRESCALER(VALUE) (((VALUE) == RCC_TIMPrescDesactivated) || ((VALUE) == RCC_TIMPrescActivated)) +/** + * @} + */ /** @defgroup RCC_AHB1_Peripherals * @{ @@ -263,24 +335,30 @@ typedef struct #define RCC_AHB1Periph_GPIOF ((uint32_t)0x00000020) #define RCC_AHB1Periph_GPIOG ((uint32_t)0x00000040) #define RCC_AHB1Periph_GPIOH ((uint32_t)0x00000080) -#define RCC_AHB1Periph_GPIOI ((uint32_t)0x00000100) +#define RCC_AHB1Periph_GPIOI ((uint32_t)0x00000100) +#define RCC_AHB1Periph_GPIOJ ((uint32_t)0x00000200) +#define RCC_AHB1Periph_GPIOK ((uint32_t)0x00000400) #define RCC_AHB1Periph_CRC ((uint32_t)0x00001000) #define RCC_AHB1Periph_FLITF ((uint32_t)0x00008000) #define RCC_AHB1Periph_SRAM1 ((uint32_t)0x00010000) #define RCC_AHB1Periph_SRAM2 ((uint32_t)0x00020000) #define RCC_AHB1Periph_BKPSRAM ((uint32_t)0x00040000) +#define RCC_AHB1Periph_SRAM3 ((uint32_t)0x00080000) #define RCC_AHB1Periph_CCMDATARAMEN ((uint32_t)0x00100000) #define RCC_AHB1Periph_DMA1 ((uint32_t)0x00200000) #define RCC_AHB1Periph_DMA2 ((uint32_t)0x00400000) +#define RCC_AHB1Periph_DMA2D ((uint32_t)0x00800000) #define RCC_AHB1Periph_ETH_MAC ((uint32_t)0x02000000) #define RCC_AHB1Periph_ETH_MAC_Tx ((uint32_t)0x04000000) #define RCC_AHB1Periph_ETH_MAC_Rx ((uint32_t)0x08000000) #define RCC_AHB1Periph_ETH_MAC_PTP ((uint32_t)0x10000000) #define RCC_AHB1Periph_OTG_HS ((uint32_t)0x20000000) #define RCC_AHB1Periph_OTG_HS_ULPI ((uint32_t)0x40000000) -#define IS_RCC_AHB1_CLOCK_PERIPH(PERIPH) ((((PERIPH) & 0x818BEE00) == 0x00) && ((PERIPH) != 0x00)) -#define IS_RCC_AHB1_RESET_PERIPH(PERIPH) ((((PERIPH) & 0xDD9FEE00) == 0x00) && ((PERIPH) != 0x00)) -#define IS_RCC_AHB1_LPMODE_PERIPH(PERIPH) ((((PERIPH) & 0x81986E00) == 0x00) && ((PERIPH) != 0x00)) + +#define IS_RCC_AHB1_CLOCK_PERIPH(PERIPH) ((((PERIPH) & 0x810BE800) == 0x00) && ((PERIPH) != 0x00)) +#define IS_RCC_AHB1_RESET_PERIPH(PERIPH) ((((PERIPH) & 0xDD1FE800) == 0x00) && ((PERIPH) != 0x00)) +#define IS_RCC_AHB1_LPMODE_PERIPH(PERIPH) ((((PERIPH) & 0x81106800) == 0x00) && ((PERIPH) != 0x00)) + /** * @} */ @@ -301,7 +379,14 @@ typedef struct /** @defgroup RCC_AHB3_Peripherals * @{ */ -#define RCC_AHB3Periph_FSMC ((uint32_t)0x00000001) +#if defined (STM32F40_41xxx) +#define RCC_AHB3Periph_FSMC ((uint32_t)0x00000001) +#endif /* STM32F40_41xxx */ + +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) +#define RCC_AHB3Periph_FMC ((uint32_t)0x00000001) +#endif /* STM32F427_437xx || STM32F429_439xx */ + #define IS_RCC_AHB3_PERIPH(PERIPH) ((((PERIPH) & 0xFFFFFFFE) == 0x00) && ((PERIPH) != 0x00)) /** * @} @@ -333,7 +418,9 @@ typedef struct #define RCC_APB1Periph_CAN2 ((uint32_t)0x04000000) #define RCC_APB1Periph_PWR ((uint32_t)0x10000000) #define RCC_APB1Periph_DAC ((uint32_t)0x20000000) -#define IS_RCC_APB1_PERIPH(PERIPH) ((((PERIPH) & 0xC9013600) == 0x00) && ((PERIPH) != 0x00)) +#define RCC_APB1Periph_UART7 ((uint32_t)0x40000000) +#define RCC_APB1Periph_UART8 ((uint32_t)0x80000000) +#define IS_RCC_APB1_PERIPH(PERIPH) ((((PERIPH) & 0x09013600) == 0x00) && ((PERIPH) != 0x00)) /** * @} */ @@ -351,12 +438,19 @@ typedef struct #define RCC_APB2Periph_ADC3 ((uint32_t)0x00000400) #define RCC_APB2Periph_SDIO ((uint32_t)0x00000800) #define RCC_APB2Periph_SPI1 ((uint32_t)0x00001000) +#define RCC_APB2Periph_SPI4 ((uint32_t)0x00002000) #define RCC_APB2Periph_SYSCFG ((uint32_t)0x00004000) #define RCC_APB2Periph_TIM9 ((uint32_t)0x00010000) #define RCC_APB2Periph_TIM10 ((uint32_t)0x00020000) #define RCC_APB2Periph_TIM11 ((uint32_t)0x00040000) -#define IS_RCC_APB2_PERIPH(PERIPH) ((((PERIPH) & 0xFFF8A0CC) == 0x00) && ((PERIPH) != 0x00)) -#define IS_RCC_APB2_RESET_PERIPH(PERIPH) ((((PERIPH) & 0xFFF8A6CC) == 0x00) && ((PERIPH) != 0x00)) +#define RCC_APB2Periph_SPI5 ((uint32_t)0x00100000) +#define RCC_APB2Periph_SPI6 ((uint32_t)0x00200000) +#define RCC_APB2Periph_SAI1 ((uint32_t)0x00400000) +#define RCC_APB2Periph_LTDC ((uint32_t)0x04000000) + +#define IS_RCC_APB2_PERIPH(PERIPH) ((((PERIPH) & 0xFB8880CC) == 0x00) && ((PERIPH) != 0x00)) +#define IS_RCC_APB2_RESET_PERIPH(PERIPH) ((((PERIPH) & 0xFB8886CC) == 0x00) && ((PERIPH) != 0x00)) + /** * @} */ @@ -412,6 +506,7 @@ typedef struct #define RCC_FLAG_HSERDY ((uint8_t)0x31) #define RCC_FLAG_PLLRDY ((uint8_t)0x39) #define RCC_FLAG_PLLI2SRDY ((uint8_t)0x3B) +#define RCC_FLAG_PLLSAIRDY ((uint8_t)0x3D) #define RCC_FLAG_LSERDY ((uint8_t)0x41) #define RCC_FLAG_LSIRDY ((uint8_t)0x61) #define RCC_FLAG_BORRST ((uint8_t)0x79) @@ -421,13 +516,15 @@ typedef struct #define RCC_FLAG_IWDGRST ((uint8_t)0x7D) #define RCC_FLAG_WWDGRST ((uint8_t)0x7E) #define RCC_FLAG_LPWRRST ((uint8_t)0x7F) -#define IS_RCC_FLAG(FLAG) (((FLAG) == RCC_FLAG_HSIRDY) || ((FLAG) == RCC_FLAG_HSERDY) || \ - ((FLAG) == RCC_FLAG_PLLRDY) || ((FLAG) == RCC_FLAG_LSERDY) || \ - ((FLAG) == RCC_FLAG_LSIRDY) || ((FLAG) == RCC_FLAG_BORRST) || \ - ((FLAG) == RCC_FLAG_PINRST) || ((FLAG) == RCC_FLAG_PORRST) || \ - ((FLAG) == RCC_FLAG_SFTRST) || ((FLAG) == RCC_FLAG_IWDGRST)|| \ - ((FLAG) == RCC_FLAG_WWDGRST)|| ((FLAG) == RCC_FLAG_LPWRRST)|| \ - ((FLAG) == RCC_FLAG_PLLI2SRDY)) + +#define IS_RCC_FLAG(FLAG) (((FLAG) == RCC_FLAG_HSIRDY) || ((FLAG) == RCC_FLAG_HSERDY) || \ + ((FLAG) == RCC_FLAG_PLLRDY) || ((FLAG) == RCC_FLAG_LSERDY) || \ + ((FLAG) == RCC_FLAG_LSIRDY) || ((FLAG) == RCC_FLAG_BORRST) || \ + ((FLAG) == RCC_FLAG_PINRST) || ((FLAG) == RCC_FLAG_PORRST) || \ + ((FLAG) == RCC_FLAG_SFTRST) || ((FLAG) == RCC_FLAG_IWDGRST)|| \ + ((FLAG) == RCC_FLAG_WWDGRST) || ((FLAG) == RCC_FLAG_LPWRRST)|| \ + ((FLAG) == RCC_FLAG_PLLI2SRDY)|| ((FLAG) == RCC_FLAG_PLLSAIRDY)) + #define IS_RCC_CALIBRATION_VALUE(VALUE) ((VALUE) <= 0x1F) /** * @} @@ -444,60 +541,77 @@ typedef struct void RCC_DeInit(void); /* Internal/external clocks, PLL, CSS and MCO configuration functions *********/ -void RCC_HSEConfig(uint8_t RCC_HSE); +void RCC_HSEConfig(uint8_t RCC_HSE); ErrorStatus RCC_WaitForHSEStartUp(void); -void RCC_AdjustHSICalibrationValue(uint8_t HSICalibrationValue); -void RCC_HSICmd(FunctionalState NewState); -void RCC_LSEConfig(uint8_t RCC_LSE); -void RCC_LSICmd(FunctionalState NewState); +void RCC_AdjustHSICalibrationValue(uint8_t HSICalibrationValue); +void RCC_HSICmd(FunctionalState NewState); +void RCC_LSEConfig(uint8_t RCC_LSE); +void RCC_LSICmd(FunctionalState NewState); +void RCC_PLLConfig(uint32_t RCC_PLLSource, uint32_t PLLM, uint32_t PLLN, uint32_t PLLP, uint32_t PLLQ); +void RCC_PLLCmd(FunctionalState NewState); -void RCC_PLLConfig(uint32_t RCC_PLLSource, uint32_t PLLM, uint32_t PLLN, uint32_t PLLP, uint32_t PLLQ); -void RCC_PLLCmd(FunctionalState NewState); -void RCC_PLLI2SConfig(uint32_t PLLI2SN, uint32_t PLLI2SR); -void RCC_PLLI2SCmd(FunctionalState NewState); +#if defined (STM32F40_41xxx) || defined (STM32F401xx) +void RCC_PLLI2SConfig(uint32_t PLLI2SN, uint32_t PLLI2SR); +#elif defined (STM32F411xE) +void RCC_PLLI2SConfig(uint32_t PLLI2SN, uint32_t PLLI2SR, uint32_t PLLI2SM); +#elif defined (STM32F427_437xx) || defined (STM32F429_439xx) +void RCC_PLLI2SConfig(uint32_t PLLI2SN, uint32_t PLLI2SQ, uint32_t PLLI2SR); +#else +#endif /* STM32F40_41xxx || STM32F401xx */ -void RCC_ClockSecuritySystemCmd(FunctionalState NewState); -void RCC_MCO1Config(uint32_t RCC_MCO1Source, uint32_t RCC_MCO1Div); -void RCC_MCO2Config(uint32_t RCC_MCO2Source, uint32_t RCC_MCO2Div); +void RCC_PLLI2SCmd(FunctionalState NewState); +void RCC_PLLSAIConfig(uint32_t PLLSAIN, uint32_t PLLSAIQ, uint32_t PLLSAIR); +void RCC_PLLSAICmd(FunctionalState NewState); +void RCC_ClockSecuritySystemCmd(FunctionalState NewState); +void RCC_MCO1Config(uint32_t RCC_MCO1Source, uint32_t RCC_MCO1Div); +void RCC_MCO2Config(uint32_t RCC_MCO2Source, uint32_t RCC_MCO2Div); /* System, AHB and APB busses clocks configuration functions ******************/ -void RCC_SYSCLKConfig(uint32_t RCC_SYSCLKSource); -uint8_t RCC_GetSYSCLKSource(void); -void RCC_HCLKConfig(uint32_t RCC_SYSCLK); -void RCC_PCLK1Config(uint32_t RCC_HCLK); -void RCC_PCLK2Config(uint32_t RCC_HCLK); -void RCC_GetClocksFreq(RCC_ClocksTypeDef* RCC_Clocks); +void RCC_SYSCLKConfig(uint32_t RCC_SYSCLKSource); +uint8_t RCC_GetSYSCLKSource(void); +void RCC_HCLKConfig(uint32_t RCC_SYSCLK); +void RCC_PCLK1Config(uint32_t RCC_HCLK); +void RCC_PCLK2Config(uint32_t RCC_HCLK); +void RCC_GetClocksFreq(RCC_ClocksTypeDef* RCC_Clocks); /* Peripheral clocks configuration functions **********************************/ -void RCC_RTCCLKConfig(uint32_t RCC_RTCCLKSource); -void RCC_RTCCLKCmd(FunctionalState NewState); -void RCC_BackupResetCmd(FunctionalState NewState); -void RCC_I2SCLKConfig(uint32_t RCC_I2SCLKSource); - -void RCC_AHB1PeriphClockCmd(uint32_t RCC_AHB1Periph, FunctionalState NewState); -void RCC_AHB2PeriphClockCmd(uint32_t RCC_AHB2Periph, FunctionalState NewState); -void RCC_AHB3PeriphClockCmd(uint32_t RCC_AHB3Periph, FunctionalState NewState); -void RCC_APB1PeriphClockCmd(uint32_t RCC_APB1Periph, FunctionalState NewState); -void RCC_APB2PeriphClockCmd(uint32_t RCC_APB2Periph, FunctionalState NewState); - -void RCC_AHB1PeriphResetCmd(uint32_t RCC_AHB1Periph, FunctionalState NewState); -void RCC_AHB2PeriphResetCmd(uint32_t RCC_AHB2Periph, FunctionalState NewState); -void RCC_AHB3PeriphResetCmd(uint32_t RCC_AHB3Periph, FunctionalState NewState); -void RCC_APB1PeriphResetCmd(uint32_t RCC_APB1Periph, FunctionalState NewState); -void RCC_APB2PeriphResetCmd(uint32_t RCC_APB2Periph, FunctionalState NewState); - -void RCC_AHB1PeriphClockLPModeCmd(uint32_t RCC_AHB1Periph, FunctionalState NewState); -void RCC_AHB2PeriphClockLPModeCmd(uint32_t RCC_AHB2Periph, FunctionalState NewState); -void RCC_AHB3PeriphClockLPModeCmd(uint32_t RCC_AHB3Periph, FunctionalState NewState); -void RCC_APB1PeriphClockLPModeCmd(uint32_t RCC_APB1Periph, FunctionalState NewState); -void RCC_APB2PeriphClockLPModeCmd(uint32_t RCC_APB2Periph, FunctionalState NewState); +void RCC_RTCCLKConfig(uint32_t RCC_RTCCLKSource); +void RCC_RTCCLKCmd(FunctionalState NewState); +void RCC_BackupResetCmd(FunctionalState NewState); +void RCC_I2SCLKConfig(uint32_t RCC_I2SCLKSource); +void RCC_SAIPLLI2SClkDivConfig(uint32_t RCC_PLLI2SDivQ); +void RCC_SAIPLLSAIClkDivConfig(uint32_t RCC_PLLSAIDivQ); +void RCC_SAIBlockACLKConfig(uint32_t RCC_SAIBlockACLKSource); +void RCC_SAIBlockBCLKConfig(uint32_t RCC_SAIBlockBCLKSource); +void RCC_LTDCCLKDivConfig(uint32_t RCC_PLLSAIDivR); +void RCC_TIMCLKPresConfig(uint32_t RCC_TIMCLKPrescaler); + +void RCC_AHB1PeriphClockCmd(uint32_t RCC_AHB1Periph, FunctionalState NewState); +void RCC_AHB2PeriphClockCmd(uint32_t RCC_AHB2Periph, FunctionalState NewState); +void RCC_AHB3PeriphClockCmd(uint32_t RCC_AHB3Periph, FunctionalState NewState); +void RCC_APB1PeriphClockCmd(uint32_t RCC_APB1Periph, FunctionalState NewState); +void RCC_APB2PeriphClockCmd(uint32_t RCC_APB2Periph, FunctionalState NewState); + +void RCC_AHB1PeriphResetCmd(uint32_t RCC_AHB1Periph, FunctionalState NewState); +void RCC_AHB2PeriphResetCmd(uint32_t RCC_AHB2Periph, FunctionalState NewState); +void RCC_AHB3PeriphResetCmd(uint32_t RCC_AHB3Periph, FunctionalState NewState); +void RCC_APB1PeriphResetCmd(uint32_t RCC_APB1Periph, FunctionalState NewState); +void RCC_APB2PeriphResetCmd(uint32_t RCC_APB2Periph, FunctionalState NewState); + +void RCC_AHB1PeriphClockLPModeCmd(uint32_t RCC_AHB1Periph, FunctionalState NewState); +void RCC_AHB2PeriphClockLPModeCmd(uint32_t RCC_AHB2Periph, FunctionalState NewState); +void RCC_AHB3PeriphClockLPModeCmd(uint32_t RCC_AHB3Periph, FunctionalState NewState); +void RCC_APB1PeriphClockLPModeCmd(uint32_t RCC_APB1Periph, FunctionalState NewState); +void RCC_APB2PeriphClockLPModeCmd(uint32_t RCC_APB2Periph, FunctionalState NewState); + +void RCC_LSEModeConfig(uint8_t Mode); /* Interrupts and flags management functions **********************************/ -void RCC_ITConfig(uint8_t RCC_IT, FunctionalState NewState); -FlagStatus RCC_GetFlagStatus(uint8_t RCC_FLAG); -void RCC_ClearFlag(void); -ITStatus RCC_GetITStatus(uint8_t RCC_IT); -void RCC_ClearITPendingBit(uint8_t RCC_IT); +void RCC_ITConfig(uint8_t RCC_IT, FunctionalState NewState); +FlagStatus RCC_GetFlagStatus(uint8_t RCC_FLAG); +void RCC_ClearFlag(void); +ITStatus RCC_GetITStatus(uint8_t RCC_IT); +void RCC_ClearITPendingBit(uint8_t RCC_IT); #ifdef __cplusplus } diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rng.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rng.h index 9069fb9a..58b468d9 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rng.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rng.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_rng.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the Random * Number Generator(RNG) firmware library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rtc.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rtc.h index 56dcba25..1c3e6fc5 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rtc.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_rtc.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_rtc.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the RTC firmware * library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -23,7 +23,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - ****************************************************************************** + ****************************************************************************** */ /* Define to prevent recursive inclusion -------------------------------------*/ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_sai.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_sai.h new file mode 100644 index 00000000..a7805d57 --- /dev/null +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_sai.h @@ -0,0 +1,611 @@ +/** + ****************************************************************************** + * @file stm32f4xx_sai.h + * @author MCD Application Team + * @version V1.4.0 + * @date 04-August-2014 + * @brief This file contains all the functions prototypes for the SAI + * firmware library. + ****************************************************************************** + * @attention + * + *

© COPYRIGHT 2014 STMicroelectronics

+ * + * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); + * You may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.st.com/software_license_agreement_liberty_v2 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __STM32F4xx_SAI_H +#define __STM32F4xx_SAI_H + +#ifdef __cplusplus + extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "stm32f4xx.h" + +/** @addtogroup STM32F4xx_StdPeriph_Driver + * @{ + */ + +/** @addtogroup SAI + * @{ + */ + +/* Exported types ------------------------------------------------------------*/ + +/** + * @brief SAI Block Init structure definition + */ + +typedef struct +{ + uint32_t SAI_AudioMode; /*!< Specifies the SAI Block Audio Mode. + This parameter can be a value of @ref SAI_Block_Mode */ + + uint32_t SAI_Protocol; /*!< Specifies the SAI Block Protocol. + This parameter can be a value of @ref SAI_Block_Protocol */ + + uint32_t SAI_DataSize; /*!< Specifies the SAI Block data size. + This parameter can be a value of @ref SAI_Block_Data_Size + @note this value is ignored when AC'97 or SPDIF protocols are selected.*/ + + uint32_t SAI_FirstBit; /*!< Specifies whether data transfers start from MSB or LSB bit. + This parameter can be a value of @ref SAI_Block_MSB_LSB_transmission + @note this value has no meaning when AC'97 or SPDIF protocols are selected.*/ + + uint32_t SAI_ClockStrobing; /*!< Specifies the SAI Block clock strobing edge sensitivity. + This parameter can be a value of @ref SAI_Block_Clock_Strobing */ + + uint32_t SAI_Synchro; /*!< Specifies SAI Block synchronization + This parameter can be a value of @ref SAI_Block_Synchronization */ + + uint32_t SAI_OUTDRIV; /*!< Specifies when SAI Block outputs are driven. + This parameter can be a value of @ref SAI_Block_Output_Drive + @note this value has to be set before enabling the audio block + but after the audio block configuration. */ + + uint32_t SAI_NoDivider; /*!< Specifies whether Master Clock will be divided or not. + This parameter can be a value of @ref SAI_Block_NoDivider */ + + uint32_t SAI_MasterDivider; /*!< Specifies SAI Block Master Clock Divider. + @note the Master Clock Frequency is calculated accordingly to the + following formula : MCLK_x = SAI_CK_x/(MCKDIV[3:0]*2)*/ + + uint32_t SAI_FIFOThreshold; /*!< Specifies SAI Block FIFO Threshold. + This parameter can be a value of @ref SAI_Block_Fifo_Threshold */ +}SAI_InitTypeDef; + +/** + * @brief SAI Block Frame Init structure definition + */ + +typedef struct +{ + + uint32_t SAI_FrameLength; /*!< Specifies the Frame Length, the number of SCK clocks + for each audio frame. + This parameter must be a number between 8 and 256. + @note If master Clock MCLK_x pin is declared as an output, the frame length + should be Aligned to a number equal to power of 2 in order to keep + in an audio frame, an integer number of MCLK pulses by bit Clock. + @note this value is ignored when AC'97 or SPDIF protocols are selected.*/ + + uint32_t SAI_ActiveFrameLength; /*!< Specifies the Frame synchronization active level length. + This Parameter specifies the length in number of bit clock (SCK + 1) + of the active level of FS signal in audio frame. + This parameter must be a number between 1 and 128. + @note this value is ignored when AC'97 or SPDIF protocols are selected.*/ + + uint32_t SAI_FSDefinition; /*!< Specifies the Frame Synchronization definition. + This parameter can be a value of @ref SAI_Block_FS_Definition + @note this value is ignored when AC'97 or SPDIF protocols are selected.*/ + + uint32_t SAI_FSPolarity; /*!< Specifies the Frame Synchronization Polarity. + This parameter can be a value of @ref SAI_Block_FS_Polarity + @note this value is ignored when AC'97 or SPDIF protocols are selected.*/ + + uint32_t SAI_FSOffset; /*!< Specifies the Frame Synchronization Offset. + This parameter can be a value of @ref SAI_Block_FS_Offset + @note this value is ignored when AC'97 or SPDIF protocols are selected.*/ + +}SAI_FrameInitTypeDef; + +/** + * @brief SAI Block Slot Init Structure definition + */ + +typedef struct +{ + uint32_t SAI_FirstBitOffset; /*!< Specifies the position of first data transfer bit in the slot. + This parameter must be a number between 0 and 24. + @note this value is ignored when AC'97 or SPDIF protocols are selected.*/ + + uint32_t SAI_SlotSize; /*!< Specifies the Slot Size. + This parameter can be a value of @ref SAI_Block_Slot_Size + @note this value is ignored when AC'97 or SPDIF protocols are selected.*/ + + uint32_t SAI_SlotNumber; /*!< Specifies the number of slot in the audio frame. + This parameter must be a number between 1 and 16. + @note this value is ignored when AC'97 or SPDIF protocols are selected.*/ + + uint32_t SAI_SlotActive; /*!< Specifies the slots in audio frame that will be activated. + This parameter can be a value of @ ref SAI_Block_Slot_Active + @note this value is ignored when AC'97 or SPDIF protocols are selected.*/ +}SAI_SlotInitTypeDef; + +/* Exported constants --------------------------------------------------------*/ + +/** @defgroup SAI_Exported_Constants + * @{ + */ + +#define IS_SAI_PERIPH(PERIPH) ((PERIPH) == SAI1) + +#define IS_SAI_BLOCK_PERIPH(PERIPH) (((PERIPH) == SAI1_Block_A) || \ + ((PERIPH) == SAI1_Block_B)) + + +/** @defgroup SAI_Block_Mode + * @{ + */ +#define SAI_Mode_MasterTx ((uint32_t)0x00000000) +#define SAI_Mode_MasterRx ((uint32_t)0x00000001) +#define SAI_Mode_SlaveTx ((uint32_t)0x00000002) +#define SAI_Mode_SlaveRx ((uint32_t)0x00000003) +#define IS_SAI_BLOCK_MODE(MODE) (((MODE) == SAI_Mode_MasterTx) || \ + ((MODE) == SAI_Mode_MasterRx) || \ + ((MODE) == SAI_Mode_SlaveTx) || \ + ((MODE) == SAI_Mode_SlaveRx)) +/** + * @} + */ + +/** @defgroup SAI_Block_Protocol + * @{ + */ + +#define SAI_Free_Protocol ((uint32_t)0x00000000) +#define SAI_SPDIF_Protocol ((uint32_t)SAI_xCR1_PRTCFG_0) +#define SAI_AC97_Protocol ((uint32_t)SAI_xCR1_PRTCFG_1) +#define IS_SAI_BLOCK_PROTOCOL(PROTOCOL) (((PROTOCOL) == SAI_Free_Protocol) || \ + ((PROTOCOL) == SAI_SPDIF_Protocol) || \ + ((PROTOCOL) == SAI_AC97_Protocol)) +/** + * @} + */ + +/** @defgroup SAI_Block_Data_Size + * @{ + */ + +#define SAI_DataSize_8b ((uint32_t)0x00000040) +#define SAI_DataSize_10b ((uint32_t)0x00000060) +#define SAI_DataSize_16b ((uint32_t)0x00000080) +#define SAI_DataSize_20b ((uint32_t)0x000000A0) +#define SAI_DataSize_24b ((uint32_t)0x000000C0) +#define SAI_DataSize_32b ((uint32_t)0x000000E0) +#define IS_SAI_BLOCK_DATASIZE(DATASIZE) (((DATASIZE) == SAI_DataSize_8b) || \ + ((DATASIZE) == SAI_DataSize_10b) || \ + ((DATASIZE) == SAI_DataSize_16b) || \ + ((DATASIZE) == SAI_DataSize_20b) || \ + ((DATASIZE) == SAI_DataSize_24b) || \ + ((DATASIZE) == SAI_DataSize_32b)) +/** + * @} + */ + +/** @defgroup SAI_Block_MSB_LSB_transmission + * @{ + */ + +#define SAI_FirstBit_MSB ((uint32_t)0x00000000) +#define SAI_FirstBit_LSB ((uint32_t)SAI_xCR1_LSBFIRST) +#define IS_SAI_BLOCK_FIRST_BIT(BIT) (((BIT) == SAI_FirstBit_MSB) || \ + ((BIT) == SAI_FirstBit_LSB)) +/** + * @} + */ + +/** @defgroup SAI_Block_Clock_Strobing + * @{ + */ + +#define SAI_ClockStrobing_FallingEdge ((uint32_t)0x00000000) +#define SAI_ClockStrobing_RisingEdge ((uint32_t)SAI_xCR1_CKSTR) +#define IS_SAI_BLOCK_CLOCK_STROBING(CLOCK) (((CLOCK) == SAI_ClockStrobing_FallingEdge) || \ + ((CLOCK) == SAI_ClockStrobing_RisingEdge)) +/** + * @} + */ + +/** @defgroup SAI_Block_Synchronization + * @{ + */ + +#define SAI_Asynchronous ((uint32_t)0x00000000) +#define SAI_Synchronous ((uint32_t)SAI_xCR1_SYNCEN_0) +#define IS_SAI_BLOCK_SYNCHRO(SYNCHRO) (((SYNCHRO) == SAI_Synchronous) || \ + ((SYNCHRO) == SAI_Asynchronous)) +/** + * @} + */ + +/** @defgroup SAI_Block_Output_Drive + * @{ + */ + +#define SAI_OutputDrive_Disabled ((uint32_t)0x00000000) +#define SAI_OutputDrive_Enabled ((uint32_t)SAI_xCR1_OUTDRIV) +#define IS_SAI_BLOCK_OUTPUT_DRIVE(DRIVE) (((DRIVE) == SAI_OutputDrive_Disabled) || \ + ((DRIVE) == SAI_OutputDrive_Enabled)) +/** + * @} + */ + + + +/** @defgroup SAI_Block_NoDivider + * @{ + */ + +#define SAI_MasterDivider_Enabled ((uint32_t)0x00000000) +#define SAI_MasterDivider_Disabled ((uint32_t)SAI_xCR1_NODIV) +#define IS_SAI_BLOCK_NODIVIDER(NODIVIDER) (((NODIVIDER) == SAI_MasterDivider_Enabled) || \ + ((NODIVIDER) == SAI_MasterDivider_Disabled)) +/** + * @} + */ + + +/** @defgroup SAI_Block_Master_Divider + * @{ + */ +#define IS_SAI_BLOCK_MASTER_DIVIDER(DIVIDER) ((DIVIDER) <= 15) + +/** + * @} + */ + +/** @defgroup SAI_Block_Frame_Length + * @{ + */ +#define IS_SAI_BLOCK_FRAME_LENGTH(LENGTH) ((8 <= (LENGTH)) && ((LENGTH) <= 256)) + +/** + * @} + */ + +/** @defgroup SAI_Block_Active_FrameLength + * @{ + */ +#define IS_SAI_BLOCK_ACTIVE_FRAME(LENGTH) ((1 <= (LENGTH)) && ((LENGTH) <= 128)) + +/** + * @} + */ + +/** @defgroup SAI_Block_FS_Definition + * @{ + */ + +#define SAI_FS_StartFrame ((uint32_t)0x00000000) +#define I2S_FS_ChannelIdentification ((uint32_t)SAI_xFRCR_FSDEF) +#define IS_SAI_BLOCK_FS_DEFINITION(DEFINITION) (((DEFINITION) == SAI_FS_StartFrame) || \ + ((DEFINITION) == I2S_FS_ChannelIdentification)) +/** + * @} + */ + +/** @defgroup SAI_Block_FS_Polarity + * @{ + */ + +#define SAI_FS_ActiveLow ((uint32_t)0x00000000) +#define SAI_FS_ActiveHigh ((uint32_t)SAI_xFRCR_FSPO) +#define IS_SAI_BLOCK_FS_POLARITY(POLARITY) (((POLARITY) == SAI_FS_ActiveLow) || \ + ((POLARITY) == SAI_FS_ActiveHigh)) +/** + * @} + */ + +/** @defgroup SAI_Block_FS_Offset + * @{ + */ + +#define SAI_FS_FirstBit ((uint32_t)0x00000000) +#define SAI_FS_BeforeFirstBit ((uint32_t)SAI_xFRCR_FSOFF) +#define IS_SAI_BLOCK_FS_OFFSET(OFFSET) (((OFFSET) == SAI_FS_FirstBit) || \ + ((OFFSET) == SAI_FS_BeforeFirstBit)) +/** + * @} + */ + +/** @defgroup SAI_Block_Slot_FirstBit_Offset + * @{ + */ +#define IS_SAI_BLOCK_FIRSTBIT_OFFSET(OFFSET) ((OFFSET) <= 24) + +/** + * @} + */ + + /** @defgroup SAI_Block_Slot_Size + * @{ + */ +#define SAI_SlotSize_DataSize ((uint32_t)0x00000000) +#define SAI_SlotSize_16b ((uint32_t)SAI_xSLOTR_SLOTSZ_0) +#define SAI_SlotSize_32b ((uint32_t)SAI_xSLOTR_SLOTSZ_1) +#define IS_SAI_BLOCK_SLOT_SIZE(SIZE) (((SIZE) == SAI_SlotSize_DataSize) || \ + ((SIZE) == SAI_SlotSize_16b) || \ + ((SIZE) == SAI_SlotSize_32b)) + +/** + * @} + */ + +/** @defgroup SAI_Block_Slot_Number + * @{ + */ +#define IS_SAI_BLOCK_SLOT_NUMBER(NUMBER) ((1 <= (NUMBER)) && ((NUMBER) <= 16)) + +/** + * @} + */ + +/** @defgroup SAI_Block_Slot_Active + * @{ + */ +#define SAI_Slot_NotActive ((uint32_t)0x00000000) +#define SAI_SlotActive_0 ((uint32_t)0x00010000) +#define SAI_SlotActive_1 ((uint32_t)0x00020000) +#define SAI_SlotActive_2 ((uint32_t)0x00040000) +#define SAI_SlotActive_3 ((uint32_t)0x00080000) +#define SAI_SlotActive_4 ((uint32_t)0x00100000) +#define SAI_SlotActive_5 ((uint32_t)0x00200000) +#define SAI_SlotActive_6 ((uint32_t)0x00400000) +#define SAI_SlotActive_7 ((uint32_t)0x00800000) +#define SAI_SlotActive_8 ((uint32_t)0x01000000) +#define SAI_SlotActive_9 ((uint32_t)0x02000000) +#define SAI_SlotActive_10 ((uint32_t)0x04000000) +#define SAI_SlotActive_11 ((uint32_t)0x08000000) +#define SAI_SlotActive_12 ((uint32_t)0x10000000) +#define SAI_SlotActive_13 ((uint32_t)0x20000000) +#define SAI_SlotActive_14 ((uint32_t)0x40000000) +#define SAI_SlotActive_15 ((uint32_t)0x80000000) +#define SAI_SlotActive_ALL ((uint32_t)0xFFFF0000) + +#define IS_SAI_SLOT_ACTIVE(ACTIVE) ((ACTIVE) != 0) + +/** + * @} + */ + +/** @defgroup SAI_Mono_Streo_Mode + * @{ + */ + +#define SAI_MonoMode ((uint32_t)SAI_xCR1_MONO) +#define SAI_StreoMode ((uint32_t)0x00000000) +#define IS_SAI_BLOCK_MONO_STREO_MODE(MODE) (((MODE) == SAI_MonoMode) ||\ + ((MODE) == SAI_StreoMode)) +/** + * @} + */ + +/** @defgroup SAI_TRIState_Management + * @{ + */ + +#define SAI_Output_NotReleased ((uint32_t)0x00000000) +#define SAI_Output_Released ((uint32_t)SAI_xCR2_TRIS) +#define IS_SAI_BLOCK_TRISTATE_MANAGEMENT(STATE) (((STATE) == SAI_Output_NotReleased) ||\ + ((STATE) == SAI_Output_Released)) +/** + * @} + */ + +/** @defgroup SAI_Block_Fifo_Threshold + * @{ + */ + +#define SAI_Threshold_FIFOEmpty ((uint32_t)0x00000000) +#define SAI_FIFOThreshold_1QuarterFull ((uint32_t)0x00000001) +#define SAI_FIFOThreshold_HalfFull ((uint32_t)0x00000002) +#define SAI_FIFOThreshold_3QuartersFull ((uint32_t)0x00000003) +#define SAI_FIFOThreshold_Full ((uint32_t)0x00000004) +#define IS_SAI_BLOCK_FIFO_THRESHOLD(THRESHOLD) (((THRESHOLD) == SAI_Threshold_FIFOEmpty) || \ + ((THRESHOLD) == SAI_FIFOThreshold_1QuarterFull) || \ + ((THRESHOLD) == SAI_FIFOThreshold_HalfFull) || \ + ((THRESHOLD) == SAI_FIFOThreshold_3QuartersFull) || \ + ((THRESHOLD) == SAI_FIFOThreshold_Full)) +/** + * @} + */ + +/** @defgroup SAI_Block_Companding_Mode + * @{ + */ + +#define SAI_NoCompanding ((uint32_t)0x00000000) +#define SAI_ULaw_1CPL_Companding ((uint32_t)0x00008000) +#define SAI_ALaw_1CPL_Companding ((uint32_t)0x0000C000) +#define SAI_ULaw_2CPL_Companding ((uint32_t)0x0000A000) +#define SAI_ALaw_2CPL_Companding ((uint32_t)0x0000E000) +#define IS_SAI_BLOCK_COMPANDING_MODE(MODE) (((MODE) == SAI_NoCompanding) || \ + ((MODE) == SAI_ULaw_1CPL_Companding) || \ + ((MODE) == SAI_ALaw_1CPL_Companding) || \ + ((MODE) == SAI_ULaw_2CPL_Companding) || \ + ((MODE) == SAI_ALaw_2CPL_Companding)) +/** + * @} + */ + +/** @defgroup SAI_Block_Mute_Value + * @{ + */ + +#define SAI_ZeroValue ((uint32_t)0x00000000) +#define SAI_LastSentValue ((uint32_t)SAI_xCR2_MUTEVAL) +#define IS_SAI_BLOCK_MUTE_VALUE(VALUE) (((VALUE) == SAI_ZeroValue) || \ + ((VALUE) == SAI_LastSentValue)) +/** + * @} + */ + +/** @defgroup SAI_Block_Mute_Frame_Counter + * @{ + */ + +#define IS_SAI_BLOCK_MUTE_COUNTER(COUNTER) ((COUNTER) <= 63) + +/** + * @} + */ + +/** @defgroup SAI_Block_Interrupts_Definition + * @{ + */ + +#define SAI_IT_OVRUDR ((uint32_t)SAI_xIMR_OVRUDRIE) +#define SAI_IT_MUTEDET ((uint32_t)SAI_xIMR_MUTEDETIE) +#define SAI_IT_WCKCFG ((uint32_t)SAI_xIMR_WCKCFGIE) +#define SAI_IT_FREQ ((uint32_t)SAI_xIMR_FREQIE) +#define SAI_IT_CNRDY ((uint32_t)SAI_xIMR_CNRDYIE) +#define SAI_IT_AFSDET ((uint32_t)SAI_xIMR_AFSDETIE) +#define SAI_IT_LFSDET ((uint32_t)SAI_xIMR_LFSDETIE) + +#define IS_SAI_BLOCK_CONFIG_IT(IT) (((IT) == SAI_IT_OVRUDR) || \ + ((IT) == SAI_IT_MUTEDET) || \ + ((IT) == SAI_IT_WCKCFG) || \ + ((IT) == SAI_IT_FREQ) || \ + ((IT) == SAI_IT_CNRDY) || \ + ((IT) == SAI_IT_AFSDET) || \ + ((IT) == SAI_IT_LFSDET)) +/** + * @} + */ + +/** @defgroup SAI_Block_Flags_Definition + * @{ + */ + +#define SAI_FLAG_OVRUDR ((uint32_t)SAI_xSR_OVRUDR) +#define SAI_FLAG_MUTEDET ((uint32_t)SAI_xSR_MUTEDET) +#define SAI_FLAG_WCKCFG ((uint32_t)SAI_xSR_WCKCFG) +#define SAI_FLAG_FREQ ((uint32_t)SAI_xSR_FREQ) +#define SAI_FLAG_CNRDY ((uint32_t)SAI_xSR_CNRDY) +#define SAI_FLAG_AFSDET ((uint32_t)SAI_xSR_AFSDET) +#define SAI_FLAG_LFSDET ((uint32_t)SAI_xSR_LFSDET) + +#define IS_SAI_BLOCK_GET_FLAG(FLAG) (((FLAG) == SAI_FLAG_OVRUDR) || \ + ((FLAG) == SAI_FLAG_MUTEDET) || \ + ((FLAG) == SAI_FLAG_WCKCFG) || \ + ((FLAG) == SAI_FLAG_FREQ) || \ + ((FLAG) == SAI_FLAG_CNRDY) || \ + ((FLAG) == SAI_FLAG_AFSDET) || \ + ((FLAG) == SAI_FLAG_LFSDET)) + +#define IS_SAI_BLOCK_CLEAR_FLAG(FLAG) (((FLAG) == SAI_FLAG_OVRUDR) || \ + ((FLAG) == SAI_FLAG_MUTEDET) || \ + ((FLAG) == SAI_FLAG_WCKCFG) || \ + ((FLAG) == SAI_FLAG_FREQ) || \ + ((FLAG) == SAI_FLAG_CNRDY) || \ + ((FLAG) == SAI_FLAG_AFSDET) || \ + ((FLAG) == SAI_FLAG_LFSDET)) +/** + * @} + */ + +/** @defgroup SAI_Block_Fifo_Status_Level + * @{ + */ +#define SAI_FIFOStatus_Empty ((uint32_t)0x00000000) +#define SAI_FIFOStatus_Less1QuarterFull ((uint32_t)0x00010000) +#define SAI_FIFOStatus_1QuarterFull ((uint32_t)0x00020000) +#define SAI_FIFOStatus_HalfFull ((uint32_t)0x00030000) +#define SAI_FIFOStatus_3QuartersFull ((uint32_t)0x00040000) +#define SAI_FIFOStatus_Full ((uint32_t)0x00050000) + +#define IS_SAI_BLOCK_FIFO_STATUS(STATUS) (((STATUS) == SAI_FIFOStatus_Less1QuarterFull ) || \ + ((STATUS) == SAI_FIFOStatus_HalfFull) || \ + ((STATUS) == SAI_FIFOStatus_1QuarterFull) || \ + ((STATUS) == SAI_FIFOStatus_3QuartersFull) || \ + ((STATUS) == SAI_FIFOStatus_Full) || \ + ((STATUS) == SAI_FIFOStatus_Empty)) +/** + * @} + */ + + +/** + * @} + */ + +/* Exported macro ------------------------------------------------------------*/ +/* Exported functions --------------------------------------------------------*/ + +/* Function used to set the SAI configuration to the default reset state *****/ +void SAI_DeInit(SAI_TypeDef* SAIx); + +/* Initialization and Configuration functions *********************************/ +void SAI_Init(SAI_Block_TypeDef* SAI_Block_x, SAI_InitTypeDef* SAI_InitStruct); +void SAI_FrameInit(SAI_Block_TypeDef* SAI_Block_x, SAI_FrameInitTypeDef* SAI_FrameInitStruct); +void SAI_SlotInit(SAI_Block_TypeDef* SAI_Block_x, SAI_SlotInitTypeDef* SAI_SlotInitStruct); +void SAI_StructInit(SAI_InitTypeDef* SAI_InitStruct); +void SAI_FrameStructInit(SAI_FrameInitTypeDef* SAI_FrameInitStruct); +void SAI_SlotStructInit(SAI_SlotInitTypeDef* SAI_SlotInitStruct); + +void SAI_Cmd(SAI_Block_TypeDef* SAI_Block_x, FunctionalState NewState); +void SAI_MonoModeConfig(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_Mono_StreoMode); +void SAI_TRIStateConfig(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_TRIState); +void SAI_CompandingModeConfig(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_CompandingMode); +void SAI_MuteModeCmd(SAI_Block_TypeDef* SAI_Block_x, FunctionalState NewState); +void SAI_MuteValueConfig(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_MuteValue); +void SAI_MuteFrameCounterConfig(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_MuteCounter); +void SAI_FlushFIFO(SAI_Block_TypeDef* SAI_Block_x); + +/* Data transfers functions ***************************************************/ +void SAI_SendData(SAI_Block_TypeDef* SAI_Block_x, uint32_t Data); +uint32_t SAI_ReceiveData(SAI_Block_TypeDef* SAI_Block_x); + +/* DMA transfers management functions *****************************************/ +void SAI_DMACmd(SAI_Block_TypeDef* SAI_Block_x, FunctionalState NewState); + +/* Interrupts and flags management functions **********************************/ +void SAI_ITConfig(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_IT, FunctionalState NewState); +FlagStatus SAI_GetFlagStatus(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_FLAG); +void SAI_ClearFlag(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_FLAG); +ITStatus SAI_GetITStatus(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_IT); +void SAI_ClearITPendingBit(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_IT); +FunctionalState SAI_GetCmdStatus(SAI_Block_TypeDef* SAI_Block_x); +uint32_t SAI_GetFIFOStatus(SAI_Block_TypeDef* SAI_Block_x); + +#ifdef __cplusplus +} +#endif + +#endif /*__STM32F4xx_SAI_H */ + +/** + * @} + */ + +/** + * @} + */ + +/******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_sdio.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_sdio.h index b97f813d..6b1b2bb9 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_sdio.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_sdio.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_sdio.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the SDIO firmware * library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -83,7 +83,7 @@ typedef struct uint32_t SDIO_Response; /*!< Specifies the SDIO response type. This parameter can be a value of @ref SDIO_Response_Type */ - uint32_t SDIO_Wait; /*!< Specifies whether SDIO wait-for-interrupt request is enabled or disabled. + uint32_t SDIO_Wait; /*!< Specifies whether SDIO wait for interrupt request is enabled or disabled. This parameter can be a value of @ref SDIO_Wait_Interrupt_State */ uint32_t SDIO_CPSM; /*!< Specifies whether SDIO Command path state machine (CPSM) @@ -459,8 +459,8 @@ typedef struct * @{ */ -#define SDIO_ReadWaitMode_CLK ((uint32_t)0x00000000) -#define SDIO_ReadWaitMode_DATA2 ((uint32_t)0x00000001) +#define SDIO_ReadWaitMode_DATA2 ((uint32_t)0x00000000) +#define SDIO_ReadWaitMode_CLK ((uint32_t)0x00000001) #define IS_SDIO_READWAIT_MODE(MODE) (((MODE) == SDIO_ReadWaitMode_CLK) || \ ((MODE) == SDIO_ReadWaitMode_DATA2)) /** diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_spi.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_spi.h index 0123775b..41e8e229 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_spi.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_spi.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_spi.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the SPI - * firmware library. + * firmware library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -23,7 +23,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - ****************************************************************************** + ****************************************************************************** */ /* Define to prevent recursive inclusion -------------------------------------*/ @@ -118,19 +118,25 @@ typedef struct #define IS_SPI_ALL_PERIPH(PERIPH) (((PERIPH) == SPI1) || \ ((PERIPH) == SPI2) || \ - ((PERIPH) == SPI3)) - -#define IS_SPI_ALL_PERIPH_EXT(PERIPH) (((PERIPH) == SPI1) || \ - ((PERIPH) == SPI2) || \ - ((PERIPH) == SPI3) || \ + ((PERIPH) == SPI3) || \ + ((PERIPH) == SPI4) || \ + ((PERIPH) == SPI5) || \ + ((PERIPH) == SPI6)) + +#define IS_SPI_ALL_PERIPH_EXT(PERIPH) (((PERIPH) == SPI1) || \ + ((PERIPH) == SPI2) || \ + ((PERIPH) == SPI3) || \ + ((PERIPH) == SPI4) || \ + ((PERIPH) == SPI5) || \ + ((PERIPH) == SPI6) || \ ((PERIPH) == I2S2ext) || \ ((PERIPH) == I2S3ext)) #define IS_SPI_23_PERIPH(PERIPH) (((PERIPH) == SPI2) || \ ((PERIPH) == SPI3)) -#define IS_SPI_23_PERIPH_EXT(PERIPH) (((PERIPH) == SPI2) || \ - ((PERIPH) == SPI3) || \ +#define IS_SPI_23_PERIPH_EXT(PERIPH) (((PERIPH) == SPI2) || \ + ((PERIPH) == SPI3) || \ ((PERIPH) == I2S2ext) || \ ((PERIPH) == I2S3ext)) diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_syscfg.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_syscfg.h index 83774f5f..efbf5b2b 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_syscfg.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_syscfg.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_syscfg.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the SYSCFG firmware - * library. + * library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -64,16 +64,21 @@ #define EXTI_PortSourceGPIOG ((uint8_t)0x06) #define EXTI_PortSourceGPIOH ((uint8_t)0x07) #define EXTI_PortSourceGPIOI ((uint8_t)0x08) - +#define EXTI_PortSourceGPIOJ ((uint8_t)0x09) +#define EXTI_PortSourceGPIOK ((uint8_t)0x0A) + #define IS_EXTI_PORT_SOURCE(PORTSOURCE) (((PORTSOURCE) == EXTI_PortSourceGPIOA) || \ - ((PORTSOURCE) == EXTI_PortSourceGPIOB) || \ - ((PORTSOURCE) == EXTI_PortSourceGPIOC) || \ - ((PORTSOURCE) == EXTI_PortSourceGPIOD) || \ - ((PORTSOURCE) == EXTI_PortSourceGPIOE) || \ - ((PORTSOURCE) == EXTI_PortSourceGPIOF) || \ - ((PORTSOURCE) == EXTI_PortSourceGPIOG) || \ - ((PORTSOURCE) == EXTI_PortSourceGPIOH) || \ - ((PORTSOURCE) == EXTI_PortSourceGPIOI)) + ((PORTSOURCE) == EXTI_PortSourceGPIOB) || \ + ((PORTSOURCE) == EXTI_PortSourceGPIOC) || \ + ((PORTSOURCE) == EXTI_PortSourceGPIOD) || \ + ((PORTSOURCE) == EXTI_PortSourceGPIOE) || \ + ((PORTSOURCE) == EXTI_PortSourceGPIOF) || \ + ((PORTSOURCE) == EXTI_PortSourceGPIOG) || \ + ((PORTSOURCE) == EXTI_PortSourceGPIOH) || \ + ((PORTSOURCE) == EXTI_PortSourceGPIOI) || \ + ((PORTSOURCE) == EXTI_PortSourceGPIOJ) || \ + ((PORTSOURCE) == EXTI_PortSourceGPIOK)) + /** * @} */ @@ -98,16 +103,16 @@ #define EXTI_PinSource13 ((uint8_t)0x0D) #define EXTI_PinSource14 ((uint8_t)0x0E) #define EXTI_PinSource15 ((uint8_t)0x0F) -#define IS_EXTI_PIN_SOURCE(PINSOURCE) (((PINSOURCE) == EXTI_PinSource0) || \ - ((PINSOURCE) == EXTI_PinSource1) || \ - ((PINSOURCE) == EXTI_PinSource2) || \ - ((PINSOURCE) == EXTI_PinSource3) || \ - ((PINSOURCE) == EXTI_PinSource4) || \ - ((PINSOURCE) == EXTI_PinSource5) || \ - ((PINSOURCE) == EXTI_PinSource6) || \ - ((PINSOURCE) == EXTI_PinSource7) || \ - ((PINSOURCE) == EXTI_PinSource8) || \ - ((PINSOURCE) == EXTI_PinSource9) || \ +#define IS_EXTI_PIN_SOURCE(PINSOURCE) (((PINSOURCE) == EXTI_PinSource0) || \ + ((PINSOURCE) == EXTI_PinSource1) || \ + ((PINSOURCE) == EXTI_PinSource2) || \ + ((PINSOURCE) == EXTI_PinSource3) || \ + ((PINSOURCE) == EXTI_PinSource4) || \ + ((PINSOURCE) == EXTI_PinSource5) || \ + ((PINSOURCE) == EXTI_PinSource6) || \ + ((PINSOURCE) == EXTI_PinSource7) || \ + ((PINSOURCE) == EXTI_PinSource8) || \ + ((PINSOURCE) == EXTI_PinSource9) || \ ((PINSOURCE) == EXTI_PinSource10) || \ ((PINSOURCE) == EXTI_PinSource11) || \ ((PINSOURCE) == EXTI_PinSource12) || \ @@ -124,13 +129,38 @@ */ #define SYSCFG_MemoryRemap_Flash ((uint8_t)0x00) #define SYSCFG_MemoryRemap_SystemFlash ((uint8_t)0x01) -#define SYSCFG_MemoryRemap_FSMC ((uint8_t)0x02) #define SYSCFG_MemoryRemap_SRAM ((uint8_t)0x03) - -#define IS_SYSCFG_MEMORY_REMAP_CONFING(REMAP) (((REMAP) == SYSCFG_MemoryRemap_Flash) || \ - ((REMAP) == SYSCFG_MemoryRemap_SystemFlash) || \ - ((REMAP) == SYSCFG_MemoryRemap_SRAM) || \ - ((REMAP) == SYSCFG_MemoryRemap_FSMC)) +#define SYSCFG_MemoryRemap_SDRAM ((uint8_t)0x04) + +#if defined (STM32F40_41xxx) +#define SYSCFG_MemoryRemap_FSMC ((uint8_t)0x02) +#endif /* STM32F40_41xxx */ + +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) +#define SYSCFG_MemoryRemap_FMC ((uint8_t)0x02) +#endif /* STM32F427_437xx || STM32F429_439xx */ + +#if defined (STM32F40_41xxx) +#define IS_SYSCFG_MEMORY_REMAP_CONFING(REMAP) (((REMAP) == SYSCFG_MemoryRemap_Flash) || \ + ((REMAP) == SYSCFG_MemoryRemap_SystemFlash) || \ + ((REMAP) == SYSCFG_MemoryRemap_SRAM) || \ + ((REMAP) == SYSCFG_MemoryRemap_FSMC)) +#endif /* STM32F40_41xxx */ + +#if defined (STM32F401xx) || defined (STM32F411xE) +#define IS_SYSCFG_MEMORY_REMAP_CONFING(REMAP) (((REMAP) == SYSCFG_MemoryRemap_Flash) || \ + ((REMAP) == SYSCFG_MemoryRemap_SystemFlash) || \ + ((REMAP) == SYSCFG_MemoryRemap_SRAM)) +#endif /* STM32F401xx || STM32F411xE */ + +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) +#define IS_SYSCFG_MEMORY_REMAP_CONFING(REMAP) (((REMAP) == SYSCFG_MemoryRemap_Flash) || \ + ((REMAP) == SYSCFG_MemoryRemap_SystemFlash) || \ + ((REMAP) == SYSCFG_MemoryRemap_SRAM) || \ + ((REMAP) == SYSCFG_MemoryRemap_SDRAM) || \ + ((REMAP) == SYSCFG_MemoryRemap_FMC)) +#endif /* STM32F427_437xx || STM32F429_439xx */ + /** * @} */ @@ -139,11 +169,11 @@ /** @defgroup SYSCFG_ETHERNET_Media_Interface * @{ */ -#define SYSCFG_ETH_MediaInterface_MII ((uint32_t)0x00000000) -#define SYSCFG_ETH_MediaInterface_RMII ((uint32_t)0x00000001) +#define SYSCFG_ETH_MediaInterface_MII ((uint32_t)0x00000000) +#define SYSCFG_ETH_MediaInterface_RMII ((uint32_t)0x00000001) #define IS_SYSCFG_ETH_MEDIA_INTERFACE(INTERFACE) (((INTERFACE) == SYSCFG_ETH_MediaInterface_MII) || \ - ((INTERFACE) == SYSCFG_ETH_MediaInterface_RMII)) + ((INTERFACE) == SYSCFG_ETH_MediaInterface_RMII)) /** * @} */ @@ -156,10 +186,11 @@ /* Exported functions --------------------------------------------------------*/ void SYSCFG_DeInit(void); -void SYSCFG_MemoryRemapConfig(uint8_t SYSCFG_MemoryRemap); -void SYSCFG_EXTILineConfig(uint8_t EXTI_PortSourceGPIOx, uint8_t EXTI_PinSourcex); -void SYSCFG_ETH_MediaInterfaceConfig(uint32_t SYSCFG_ETH_MediaInterface); -void SYSCFG_CompensationCellCmd(FunctionalState NewState); +void SYSCFG_MemoryRemapConfig(uint8_t SYSCFG_MemoryRemap); +void SYSCFG_MemorySwappingBank(FunctionalState NewState); +void SYSCFG_EXTILineConfig(uint8_t EXTI_PortSourceGPIOx, uint8_t EXTI_PinSourcex); +void SYSCFG_ETH_MediaInterfaceConfig(uint32_t SYSCFG_ETH_MediaInterface); +void SYSCFG_CompensationCellCmd(FunctionalState NewState); FlagStatus SYSCFG_GetCompensationCellStatus(void); #ifdef __cplusplus diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_tim.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_tim.h index 34eaf2a3..a7b1db6a 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_tim.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_tim.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_tim.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the TIM firmware * library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_usart.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_usart.h index 633c747e..c4f44333 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_usart.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_usart.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_usart.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the USART - * firmware library. + * firmware library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -23,7 +23,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - ****************************************************************************** + ****************************************************************************** */ /* Define to prevent recursive inclusion -------------------------------------*/ @@ -112,7 +112,9 @@ typedef struct ((PERIPH) == USART3) || \ ((PERIPH) == UART4) || \ ((PERIPH) == UART5) || \ - ((PERIPH) == USART6)) + ((PERIPH) == USART6) || \ + ((PERIPH) == UART7) || \ + ((PERIPH) == UART8)) #define IS_USART_1236_PERIPH(PERIPH) (((PERIPH) == USART1) || \ ((PERIPH) == USART2) || \ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_wwdg.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_wwdg.h index 6b51935e..acd7850e 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_wwdg.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/inc/stm32f4xx_wwdg.h @@ -2,14 +2,14 @@ ****************************************************************************** * @file stm32f4xx_wwdg.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file contains all the functions prototypes for the WWDG firmware * library. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/misc.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/misc.c index 16d5b40e..dc7d808c 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/misc.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/misc.c @@ -2,8 +2,8 @@ ****************************************************************************** * @file misc.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides all the miscellaneous firmware functions (add-on * to CMSIS functions). * @@ -55,7 +55,7 @@ ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_adc.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_adc.c index 7ccdb4f8..50d0248a 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_adc.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_adc.c @@ -2,88 +2,90 @@ ****************************************************************************** * @file stm32f4xx_adc.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the Analog to Digital Convertor (ADC) peripheral: - * - Initialization and Configuration (in addition to ADC multi mode + * + Initialization and Configuration (in addition to ADC multi mode * selection) - * - Analog Watchdog configuration - * - Temperature Sensor & Vrefint (Voltage Reference internal) & VBAT + * + Analog Watchdog configuration + * + Temperature Sensor & Vrefint (Voltage Reference internal) & VBAT * management - * - Regular Channels Configuration - * - Regular Channels DMA Configuration - * - Injected channels Configuration - * - Interrupts and flags management + * + Regular Channels Configuration + * + Regular Channels DMA Configuration + * + Injected channels Configuration + * + Interrupts and flags management * - * @verbatim - * - * =================================================================== - * How to use this driver - * =================================================================== - - * 1. Enable the ADC interface clock using - * RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADCx, ENABLE); - * - * 2. ADC pins configuration - * - Enable the clock for the ADC GPIOs using the following function: - * RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOx, ENABLE); - * - Configure these ADC pins in analog mode using GPIO_Init(); - * - * 3. Configure the ADC Prescaler, conversion resolution and data - * alignment using the ADC_Init() function. - * 4. Activate the ADC peripheral using ADC_Cmd() function. - * - * Regular channels group configuration - * ==================================== - * - To configure the ADC regular channels group features, use - * ADC_Init() and ADC_RegularChannelConfig() functions. - * - To activate the continuous mode, use the ADC_continuousModeCmd() - * function. - * - To configurate and activate the Discontinuous mode, use the - * ADC_DiscModeChannelCountConfig() and ADC_DiscModeCmd() functions. - * - To read the ADC converted values, use the ADC_GetConversionValue() - * function. - * - * Multi mode ADCs Regular channels configuration - * =============================================== - * - Refer to "Regular channels group configuration" description to - * configure the ADC1, ADC2 and ADC3 regular channels. - * - Select the Multi mode ADC regular channels features (dual or - * triple mode) using ADC_CommonInit() function and configure - * the DMA mode using ADC_MultiModeDMARequestAfterLastTransferCmd() - * functions. - * - Read the ADCs converted values using the - * ADC_GetMultiModeConversionValue() function. - * - * DMA for Regular channels group features configuration - * ====================================================== - * - To enable the DMA mode for regular channels group, use the - * ADC_DMACmd() function. - * - To enable the generation of DMA requests continuously at the end - * of the last DMA transfer, use the ADC_DMARequestAfterLastTransferCmd() - * function. - * - * Injected channels group configuration - * ===================================== - * - To configure the ADC Injected channels group features, use - * ADC_InjectedChannelConfig() and ADC_InjectedSequencerLengthConfig() - * functions. - * - To activate the continuous mode, use the ADC_continuousModeCmd() - * function. - * - To activate the Injected Discontinuous mode, use the - * ADC_InjectedDiscModeCmd() function. - * - To activate the AutoInjected mode, use the ADC_AutoInjectedConvCmd() - * function. - * - To read the ADC converted values, use the ADC_GetInjectedConversionValue() - * function. - * - * @endverbatim - * + @verbatim + =============================================================================== + ##### How to use this driver ##### + =============================================================================== + [..] + (#) Enable the ADC interface clock using + RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADCx, ENABLE); + + (#) ADC pins configuration + (++) Enable the clock for the ADC GPIOs using the following function: + RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOx, ENABLE); + (++) Configure these ADC pins in analog mode using GPIO_Init(); + + (#) Configure the ADC Prescaler, conversion resolution and data + alignment using the ADC_Init() function. + (#) Activate the ADC peripheral using ADC_Cmd() function. + + *** Regular channels group configuration *** + ============================================ + [..] + (+) To configure the ADC regular channels group features, use + ADC_Init() and ADC_RegularChannelConfig() functions. + (+) To activate the continuous mode, use the ADC_continuousModeCmd() + function. + (+) To configurate and activate the Discontinuous mode, use the + ADC_DiscModeChannelCountConfig() and ADC_DiscModeCmd() functions. + (+) To read the ADC converted values, use the ADC_GetConversionValue() + function. + + *** Multi mode ADCs Regular channels configuration *** + ====================================================== + [..] + (+) Refer to "Regular channels group configuration" description to + configure the ADC1, ADC2 and ADC3 regular channels. + (+) Select the Multi mode ADC regular channels features (dual or + triple mode) using ADC_CommonInit() function and configure + the DMA mode using ADC_MultiModeDMARequestAfterLastTransferCmd() + functions. + (+) Read the ADCs converted values using the + ADC_GetMultiModeConversionValue() function. + + *** DMA for Regular channels group features configuration *** + ============================================================= + [..] + (+) To enable the DMA mode for regular channels group, use the + ADC_DMACmd() function. + (+) To enable the generation of DMA requests continuously at the end + of the last DMA transfer, use the ADC_DMARequestAfterLastTransferCmd() + function. + + *** Injected channels group configuration *** + ============================================= + [..] + (+) To configure the ADC Injected channels group features, use + ADC_InjectedChannelConfig() and ADC_InjectedSequencerLengthConfig() + functions. + (+) To activate the continuous mode, use the ADC_continuousModeCmd() + function. + (+) To activate the Injected Discontinuous mode, use the + ADC_InjectedDiscModeCmd() function. + (+) To activate the AutoInjected mode, use the ADC_AutoInjectedConvCmd() + function. + (+) To read the ADC converted values, use the ADC_GetInjectedConversionValue() + function. + + @endverbatim ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -182,23 +184,22 @@ * @verbatim =============================================================================== - Initialization and Configuration functions - =============================================================================== - This section provides functions allowing to: - - Initialize and configure the ADC Prescaler - - ADC Conversion Resolution (12bit..6bit) - - Scan Conversion Mode (multichannels or one channel) for regular group - - ADC Continuous Conversion Mode (Continuous or Single conversion) for - regular group - - External trigger Edge and source of regular group, - - Converted data alignment (left or right) - - The number of ADC conversions that will be done using the sequencer for - regular channel group - - Multi ADC mode selection - - Direct memory access mode selection for multi ADC mode - - Delay between 2 sampling phases (used in dual or triple interleaved modes) - - Enable or disable the ADC peripheral - + ##### Initialization and Configuration functions ##### + =============================================================================== + [..] This section provides functions allowing to: + (+) Initialize and configure the ADC Prescaler + (+) ADC Conversion Resolution (12bit..6bit) + (+) Scan Conversion Mode (multichannel or one channel) for regular group + (+) ADC Continuous Conversion Mode (Continuous or Single conversion) for + regular group + (+) External trigger Edge and source of regular group, + (+) Converted data alignment (left or right) + (+) The number of ADC conversions that will be done using the sequencer for + regular channel group + (+) Multi ADC mode selection + (+) Direct memory access mode selection for multi ADC mode + (+) Delay between 2 sampling phases (used in dual or triple interleaved modes) + (+) Enable or disable the ADC peripheral @endverbatim * @{ */ @@ -420,20 +421,18 @@ void ADC_Cmd(ADC_TypeDef* ADCx, FunctionalState NewState) * @verbatim =============================================================================== - Analog Watchdog configuration functions + ##### Analog Watchdog configuration functions ##### =============================================================================== - - This section provides functions allowing to configure the Analog Watchdog - (AWD) feature in the ADC. + [..] This section provides functions allowing to configure the Analog Watchdog + (AWD) feature in the ADC. - A typical configuration Analog Watchdog is done following these steps : - 1. the ADC guarded channel(s) is (are) selected using the - ADC_AnalogWatchdogSingleChannelConfig() function. - 2. The Analog watchdog lower and higher threshold are configured using the - ADC_AnalogWatchdogThresholdsConfig() function. - 3. The Analog watchdog is enabled and configured to enable the check, on one - or more channels, using the ADC_AnalogWatchdogCmd() function. - + [..] A typical configuration Analog Watchdog is done following these steps : + (#) the ADC guarded channel(s) is (are) selected using the + ADC_AnalogWatchdogSingleChannelConfig() function. + (#) The Analog watchdog lower and higher threshold are configured using the + ADC_AnalogWatchdogThresholdsConfig() function. + (#) The Analog watchdog is enabled and configured to enable the check, on one + or more channels, using the ADC_AnalogWatchdogCmd() function. @endverbatim * @{ */ @@ -552,30 +551,29 @@ void ADC_AnalogWatchdogSingleChannelConfig(ADC_TypeDef* ADCx, uint8_t ADC_Channe * @verbatim =============================================================================== - Temperature Sensor, Vrefint and VBAT management functions + ##### Temperature Sensor, Vrefint and VBAT management functions ##### =============================================================================== - - This section provides functions allowing to enable/ disable the internal - connections between the ADC and the Temperature Sensor, the Vrefint and the - Vbat sources. + [..] This section provides functions allowing to enable/ disable the internal + connections between the ADC and the Temperature Sensor, the Vrefint and + the Vbat sources. - A typical configuration to get the Temperature sensor and Vrefint channels - voltages is done following these steps : - 1. Enable the internal connection of Temperature sensor and Vrefint sources - with the ADC channels using ADC_TempSensorVrefintCmd() function. - 2. Select the ADC_Channel_TempSensor and/or ADC_Channel_Vrefint using - ADC_RegularChannelConfig() or ADC_InjectedChannelConfig() functions - 3. Get the voltage values, using ADC_GetConversionValue() or - ADC_GetInjectedConversionValue(). - - A typical configuration to get the VBAT channel voltage is done following - these steps : - 1. Enable the internal connection of VBAT source with the ADC channel using - ADC_VBATCmd() function. - 2. Select the ADC_Channel_Vbat using ADC_RegularChannelConfig() or - ADC_InjectedChannelConfig() functions - 3. Get the voltage value, using ADC_GetConversionValue() or - ADC_GetInjectedConversionValue(). + [..] A typical configuration to get the Temperature sensor and Vrefint channels + voltages is done following these steps : + (#) Enable the internal connection of Temperature sensor and Vrefint sources + with the ADC channels using ADC_TempSensorVrefintCmd() function. + (#) Select the ADC_Channel_TempSensor and/or ADC_Channel_Vrefint using + ADC_RegularChannelConfig() or ADC_InjectedChannelConfig() functions + (#) Get the voltage values, using ADC_GetConversionValue() or + ADC_GetInjectedConversionValue(). + + [..] A typical configuration to get the VBAT channel voltage is done following + these steps : + (#) Enable the internal connection of VBAT source with the ADC channel using + ADC_VBATCmd() function. + (#) Select the ADC_Channel_Vbat using ADC_RegularChannelConfig() or + ADC_InjectedChannelConfig() functions + (#) Get the voltage value, using ADC_GetConversionValue() or + ADC_GetInjectedConversionValue(). @endverbatim * @{ @@ -606,6 +604,10 @@ void ADC_TempSensorVrefintCmd(FunctionalState NewState) /** * @brief Enables or disables the VBAT (Voltage Battery) channel. + * + * @note the Battery voltage measured is equal to VBAT/2 on STM32F40xx and + * STM32F41xx devices and equal to VBAT/4 on STM32F42xx and STM32F43xx devices + * * @param NewState: new state of the VBAT channel. * This parameter can be: ENABLE or DISABLE. * @retval None @@ -635,40 +637,39 @@ void ADC_VBATCmd(FunctionalState NewState) * @verbatim =============================================================================== - Regular Channels Configuration functions + ##### Regular Channels Configuration functions ##### =============================================================================== - This section provides functions allowing to manage the ADC's regular channels, - it is composed of 2 sub sections : - - 1. Configuration and management functions for regular channels: This subsection - provides functions allowing to configure the ADC regular channels : - - Configure the rank in the regular group sequencer for each channel - - Configure the sampling time for each channel - - select the conversion Trigger for regular channels - - select the desired EOC event behavior configuration - - Activate the continuous Mode (*) - - Activate the Discontinuous Mode - Please Note that the following features for regular channels are configurated - using the ADC_Init() function : - - scan mode activation - - continuous mode activation (**) - - External trigger source - - External trigger edge - - number of conversion in the regular channels group sequencer. + [..] This section provides functions allowing to manage the ADC's regular channels, + it is composed of 2 sub sections : + + (#) Configuration and management functions for regular channels: This subsection + provides functions allowing to configure the ADC regular channels : + (++) Configure the rank in the regular group sequencer for each channel + (++) Configure the sampling time for each channel + (++) select the conversion Trigger for regular channels + (++) select the desired EOC event behavior configuration + (++) Activate the continuous Mode (*) + (++) Activate the Discontinuous Mode + -@@- Please Note that the following features for regular channels + are configurated using the ADC_Init() function : + (+@@) scan mode activation + (+@@) continuous mode activation (**) + (+@@) External trigger source + (+@@) External trigger edge + (+@@) number of conversion in the regular channels group sequencer. - @note (*) and (**) are performing the same configuration + -@@- (*) and (**) are performing the same configuration - 2. Get the conversion data: This subsection provides an important function in - the ADC peripheral since it returns the converted data of the current - regular channel. When the Conversion value is read, the EOC Flag is - automatically cleared. + (#) Get the conversion data: This subsection provides an important function in + the ADC peripheral since it returns the converted data of the current + regular channel. When the Conversion value is read, the EOC Flag is + automatically cleared. - @note For multi ADC mode, the last ADC1, ADC2 and ADC3 regular conversions - results data (in the selected multi mode) can be returned in the same - time using ADC_GetMultiModeConversionValue() function. - - + -@- For multi ADC mode, the last ADC1, ADC2 and ADC3 regular conversions + results data (in the selected multi mode) can be returned in the same + time using ADC_GetMultiModeConversionValue() function. + @endverbatim * @{ */ @@ -852,7 +853,7 @@ FlagStatus ADC_GetSoftwareStartConvStatus(ADC_TypeDef* ADCx) assert_param(IS_ADC_ALL_PERIPH(ADCx)); /* Check the status of SWSTART bit */ - if ((ADCx->CR2 & ADC_CR2_JSWSTART) != (uint32_t)RESET) + if ((ADCx->CR2 & ADC_CR2_SWSTART) != (uint32_t)RESET) { /* SWSTART bit is set */ bitstatus = SET; @@ -1016,29 +1017,26 @@ uint32_t ADC_GetMultiModeConversionValue(void) * @verbatim =============================================================================== - Regular Channels DMA Configuration functions + ##### Regular Channels DMA Configuration functions ##### =============================================================================== - - This section provides functions allowing to configure the DMA for ADC regular - channels. - Since converted regular channel values are stored into a unique data register, - it is useful to use DMA for conversion of more than one regular channel. This - avoids the loss of the data already stored in the ADC Data register. - - When the DMA mode is enabled (using the ADC_DMACmd() function), after each - conversion of a regular channel, a DMA request is generated. - - Depending on the "DMA disable selection for Independent ADC mode" - configuration (using the ADC_DMARequestAfterLastTransferCmd() function), - at the end of the last DMA transfer, two possibilities are allowed: - - No new DMA request is issued to the DMA controller (feature DISABLED) - - Requests can continue to be generated (feature ENABLED). - - Depending on the "DMA disable selection for multi ADC mode" configuration - (using the void ADC_MultiModeDMARequestAfterLastTransferCmd() function), - at the end of the last DMA transfer, two possibilities are allowed: - - No new DMA request is issued to the DMA controller (feature DISABLED) - - Requests can continue to be generated (feature ENABLED). + [..] This section provides functions allowing to configure the DMA for ADC + regular channels. + Since converted regular channel values are stored into a unique data + register, it is useful to use DMA for conversion of more than one regular + channel. This avoids the loss of the data already stored in the ADC + Data register. + When the DMA mode is enabled (using the ADC_DMACmd() function), after each + conversion of a regular channel, a DMA request is generated. + [..] Depending on the "DMA disable selection for Independent ADC mode" + configuration (using the ADC_DMARequestAfterLastTransferCmd() function), + at the end of the last DMA transfer, two possibilities are allowed: + (+) No new DMA request is issued to the DMA controller (feature DISABLED) + (+) Requests can continue to be generated (feature ENABLED). + [..] Depending on the "DMA disable selection for multi ADC mode" configuration + (using the void ADC_MultiModeDMARequestAfterLastTransferCmd() function), + at the end of the last DMA transfer, two possibilities are allowed: + (+) No new DMA request is issued to the DMA controller (feature DISABLED) + (+) Requests can continue to be generated (feature ENABLED). @endverbatim * @{ @@ -1126,26 +1124,26 @@ void ADC_MultiModeDMARequestAfterLastTransferCmd(FunctionalState NewState) * @verbatim =============================================================================== - Injected channels Configuration functions + ##### Injected channels Configuration functions ##### =============================================================================== - This section provide functions allowing to configure the ADC Injected channels, - it is composed of 2 sub sections : + [..] This section provide functions allowing to configure the ADC Injected channels, + it is composed of 2 sub sections : - 1. Configuration functions for Injected channels: This subsection provides - functions allowing to configure the ADC injected channels : - - Configure the rank in the injected group sequencer for each channel - - Configure the sampling time for each channel - - Activate the Auto injected Mode - - Activate the Discontinuous Mode - - scan mode activation - - External/software trigger source - - External trigger edge - - injected channels sequencer. + (#) Configuration functions for Injected channels: This subsection provides + functions allowing to configure the ADC injected channels : + (++) Configure the rank in the injected group sequencer for each channel + (++) Configure the sampling time for each channel + (++) Activate the Auto injected Mode + (++) Activate the Discontinuous Mode + (++) scan mode activation + (++) External/software trigger source + (++) External trigger edge + (++) injected channels sequencer. - 2. Get the Specified Injected channel conversion data: This subsection - provides an important function in the ADC peripheral since it returns the - converted data of the specific injected channel. + (#) Get the Specified Injected channel conversion data: This subsection + provides an important function in the ADC peripheral since it returns the + converted data of the specific injected channel. @endverbatim * @{ @@ -1499,75 +1497,74 @@ uint16_t ADC_GetInjectedConversionValue(ADC_TypeDef* ADCx, uint8_t ADC_InjectedC * @verbatim =============================================================================== - Interrupts and flags management functions + ##### Interrupts and flags management functions ##### =============================================================================== - This section provides functions allowing to configure the ADC Interrupts and - to get the status and clear flags and Interrupts pending bits. + [..] This section provides functions allowing to configure the ADC Interrupts + and to get the status and clear flags and Interrupts pending bits. - Each ADC provides 4 Interrupts sources and 6 Flags which can be divided into - 3 groups: + [..] Each ADC provides 4 Interrupts sources and 6 Flags which can be divided + into 3 groups: - I. Flags and Interrupts for ADC regular channels - ================================================= - Flags : - ---------- - 1. ADC_FLAG_OVR : Overrun detection when regular converted data are lost - - 2. ADC_FLAG_EOC : Regular channel end of conversion ==> to indicate (depending - on EOCS bit, managed by ADC_EOCOnEachRegularChannelCmd() ) the end of: - ==> a regular CHANNEL conversion - ==> sequence of regular GROUP conversions . - - 3. ADC_FLAG_STRT: Regular channel start ==> to indicate when regular CHANNEL - conversion starts. - - Interrupts : - ------------ - 1. ADC_IT_OVR : specifies the interrupt source for Overrun detection event. - 2. ADC_IT_EOC : specifies the interrupt source for Regular channel end of - conversion event. + *** Flags and Interrupts for ADC regular channels *** + ===================================================== + [..] + (+) Flags : + (##) ADC_FLAG_OVR : Overrun detection when regular converted data are lost + + (##) ADC_FLAG_EOC : Regular channel end of conversion ==> to indicate + (depending on EOCS bit, managed by ADC_EOCOnEachRegularChannelCmd() ) + the end of: + (+++) a regular CHANNEL conversion + (+++) sequence of regular GROUP conversions . + + (##) ADC_FLAG_STRT: Regular channel start ==> to indicate when regular + CHANNEL conversion starts. + [..] + (+) Interrupts : + (##) ADC_IT_OVR : specifies the interrupt source for Overrun detection + event. + (##) ADC_IT_EOC : specifies the interrupt source for Regular channel end + of conversion event. - II. Flags and Interrupts for ADC Injected channels - ================================================= - Flags : - ---------- - 1. ADC_FLAG_JEOC : Injected channel end of conversion ==> to indicate at - the end of injected GROUP conversion - - 2. ADC_FLAG_JSTRT: Injected channel start ==> to indicate hardware when - injected GROUP conversion starts. - - Interrupts : - ------------ - 1. ADC_IT_JEOC : specifies the interrupt source for Injected channel end of - conversion event. - - III. General Flags and Interrupts for the ADC - ================================================= - Flags : - ---------- - 1. ADC_FLAG_AWD: Analog watchdog ==> to indicate if the converted voltage - crosses the programmed thresholds values. + *** Flags and Interrupts for ADC Injected channels *** + ====================================================== + [..] + (+) Flags : + (##) ADC_FLAG_JEOC : Injected channel end of conversion ==> to indicate + at the end of injected GROUP conversion - Interrupts : - ------------ - 1. ADC_IT_AWD : specifies the interrupt source for Analog watchdog event. + (##) ADC_FLAG_JSTRT: Injected channel start ==> to indicate hardware when + injected GROUP conversion starts. + [..] + (+) Interrupts : + (##) ADC_IT_JEOC : specifies the interrupt source for Injected channel + end of conversion event. + + *** General Flags and Interrupts for the ADC *** + ================================================ + [..] + (+)Flags : + (##) ADC_FLAG_AWD: Analog watchdog ==> to indicate if the converted voltage + crosses the programmed thresholds values. + [..] + (+) Interrupts : + (##) ADC_IT_AWD : specifies the interrupt source for Analog watchdog event. - The user should identify which mode will be used in his application to manage - the ADC controller events: Polling mode or Interrupt mode. + [..] The user should identify which mode will be used in his application to + manage the ADC controller events: Polling mode or Interrupt mode. - In the Polling Mode it is advised to use the following functions: - - ADC_GetFlagStatus() : to check if flags events occur. - - ADC_ClearFlag() : to clear the flags events. + [..] In the Polling Mode it is advised to use the following functions: + (+) ADC_GetFlagStatus() : to check if flags events occur. + (+) ADC_ClearFlag() : to clear the flags events. - In the Interrupt Mode it is advised to use the following functions: - - ADC_ITConfig() : to enable or disable the interrupt source. - - ADC_GetITStatus() : to check if Interrupt occurs. - - ADC_ClearITPendingBit() : to clear the Interrupt pending Bit - (corresponding Flag). + [..] In the Interrupt Mode it is advised to use the following functions: + (+) ADC_ITConfig() : to enable or disable the interrupt source. + (+) ADC_GetITStatus() : to check if Interrupt occurs. + (+) ADC_ClearITPendingBit() : to clear the Interrupt pending Bit + (corresponding Flag). @endverbatim * @{ */ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_can.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_can.c index 457d9596..5a82b4ab 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_can.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_can.c @@ -2,70 +2,68 @@ ****************************************************************************** * @file stm32f4xx_can.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following - * functionalities of the Controller area network (CAN) peripheral: - * - Initialization and Configuration - * - CAN Frames Transmission - * - CAN Frames Reception - * - Operation modes switch - * - Error management - * - Interrupts and flags - * - * @verbatim - * - * =================================================================== - * How to use this driver - * =================================================================== - - * 1. Enable the CAN controller interface clock using - * RCC_APB1PeriphClockCmd(RCC_APB1Periph_CAN1, ENABLE); for CAN1 - * and RCC_APB1PeriphClockCmd(RCC_APB1Periph_CAN2, ENABLE); for CAN2 - * @note In case you are using CAN2 only, you have to enable the CAN1 clock. - * - * 2. CAN pins configuration - * - Enable the clock for the CAN GPIOs using the following function: - * RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOx, ENABLE); - * - Connect the involved CAN pins to AF9 using the following function - * GPIO_PinAFConfig(GPIOx, GPIO_PinSourcex, GPIO_AF_CANx); - * - Configure these CAN pins in alternate function mode by calling - * the function GPIO_Init(); - * - * 3. Initialise and configure the CAN using CAN_Init() and - * CAN_FilterInit() functions. - * - * 4. Transmit the desired CAN frame using CAN_Transmit() function. - * - * 5. Check the transmission of a CAN frame using CAN_TransmitStatus() - * function. - * - * 6. Cancel the transmission of a CAN frame using CAN_CancelTransmit() - * function. - * - * 7. Receive a CAN frame using CAN_Recieve() function. - * - * 8. Release the receive FIFOs using CAN_FIFORelease() function. - * - * 9. Return the number of pending received frames using - * CAN_MessagePending() function. - * - * 10. To control CAN events you can use one of the following two methods: - * - Check on CAN flags using the CAN_GetFlagStatus() function. - * - Use CAN interrupts through the function CAN_ITConfig() at - * initialization phase and CAN_GetITStatus() function into - * interrupt routines to check if the event has occurred or not. - * After checking on a flag you should clear it using CAN_ClearFlag() - * function. And after checking on an interrupt event you should - * clear it using CAN_ClearITPendingBit() function. - * - * - * @endverbatim - * + * functionalities of the Controller area network (CAN) peripheral: + * + Initialization and Configuration + * + CAN Frames Transmission + * + CAN Frames Reception + * + Operation modes switch + * + Error management + * + Interrupts and flags + * +@verbatim + =============================================================================== + ##### How to use this driver ##### + =============================================================================== + [..] + (#) Enable the CAN controller interface clock using + RCC_APB1PeriphClockCmd(RCC_APB1Periph_CAN1, ENABLE); for CAN1 + and RCC_APB1PeriphClockCmd(RCC_APB1Periph_CAN2, ENABLE); for CAN2 + -@- In case you are using CAN2 only, you have to enable the CAN1 clock. + + (#) CAN pins configuration + (++) Enable the clock for the CAN GPIOs using the following function: + RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOx, ENABLE); + (++) Connect the involved CAN pins to AF9 using the following function + GPIO_PinAFConfig(GPIOx, GPIO_PinSourcex, GPIO_AF_CANx); + (++) Configure these CAN pins in alternate function mode by calling + the function GPIO_Init(); + + (#) Initialise and configure the CAN using CAN_Init() and + CAN_FilterInit() functions. + + (#) Transmit the desired CAN frame using CAN_Transmit() function. + + (#) Check the transmission of a CAN frame using CAN_TransmitStatus() + function. + + (#) Cancel the transmission of a CAN frame using CAN_CancelTransmit() + function. + + (#) Receive a CAN frame using CAN_Recieve() function. + + (#) Release the receive FIFOs using CAN_FIFORelease() function. + + (#) Return the number of pending received frames using + CAN_MessagePending() function. + + (#) To control CAN events you can use one of the following two methods: + (++) Check on CAN flags using the CAN_GetFlagStatus() function. + (++) Use CAN interrupts through the function CAN_ITConfig() at + initialization phase and CAN_GetITStatus() function into + interrupt routines to check if the event has occurred or not. + After checking on a flag you should clear it using CAN_ClearFlag() + function. And after checking on an interrupt event you should + clear it using CAN_ClearITPendingBit() function. + +@endverbatim + ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -79,7 +77,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - ****************************************************************************** + ****************************************************************************** */ /* Includes ------------------------------------------------------------------*/ @@ -144,17 +142,17 @@ static ITStatus CheckITStatus(uint32_t CAN_Reg, uint32_t It_Bit); * @verbatim =============================================================================== - Initialization and Configuration functions + ##### Initialization and Configuration functions ##### =============================================================================== - This section provides functions allowing to - - Initialize the CAN peripherals : Prescaler, operating mode, the maximum number - of time quanta to perform resynchronization, the number of time quanta in - Bit Segment 1 and 2 and many other modes. - Refer to @ref CAN_InitTypeDef for more details. - - Configures the CAN reception filter. - - Select the start bank filter for slave CAN. - - Enables or disables the Debug Freeze mode for CAN - - Enables or disables the CAN Time Trigger Operation communication mode + [..] This section provides functions allowing to + (+) Initialize the CAN peripherals : Prescaler, operating mode, the maximum + number of time quanta to perform resynchronization, the number of time + quanta in Bit Segment 1 and 2 and many other modes. + Refer to @ref CAN_InitTypeDef for more details. + (+) Configures the CAN reception filter. + (+) Select the start bank filter for slave CAN. + (+) Enables or disables the Debug Freeze mode for CAN + (+)Enables or disables the CAN Time Trigger Operation communication mode @endverbatim * @{ @@ -557,12 +555,12 @@ void CAN_TTComModeCmd(CAN_TypeDef* CANx, FunctionalState NewState) * @verbatim =============================================================================== - CAN Frames Transmission functions + ##### CAN Frames Transmission functions ##### =============================================================================== - This section provides functions allowing to - - Initiate and transmit a CAN frame message (if there is an empty mailbox). - - Check the transmission status of a CAN Frame - - Cancel a transmit request + [..] This section provides functions allowing to + (+) Initiate and transmit a CAN frame message (if there is an empty mailbox). + (+) Check the transmission status of a CAN Frame + (+) Cancel a transmit request @endverbatim * @{ @@ -729,12 +727,12 @@ void CAN_CancelTransmit(CAN_TypeDef* CANx, uint8_t Mailbox) * @verbatim =============================================================================== - CAN Frames Reception functions + ##### CAN Frames Reception functions ##### =============================================================================== - This section provides functions allowing to - - Receive a correct CAN frame - - Release a specified receive FIFO (2 FIFOs are available) - - Return the number of the pending received CAN frames + [..] This section provides functions allowing to + (+) Receive a correct CAN frame + (+) Release a specified receive FIFO (2 FIFOs are available) + (+) Return the number of the pending received CAN frames @endverbatim * @{ @@ -850,12 +848,12 @@ uint8_t CAN_MessagePending(CAN_TypeDef* CANx, uint8_t FIFONumber) * @verbatim =============================================================================== - CAN Operation modes functions + ##### CAN Operation modes functions ##### =============================================================================== - This section provides functions allowing to select the CAN Operation modes - - sleep mode - - normal mode - - initialization mode + [..] This section provides functions allowing to select the CAN Operation modes + (+) sleep mode + (+) normal mode + (+) initialization mode @endverbatim * @{ @@ -1010,16 +1008,16 @@ uint8_t CAN_WakeUp(CAN_TypeDef* CANx) * @verbatim =============================================================================== - CAN Bus Error management functions + ##### CAN Bus Error management functions ##### =============================================================================== - This section provides functions allowing to - - Return the CANx's last error code (LEC) - - Return the CANx Receive Error Counter (REC) - - Return the LSB of the 9-bit CANx Transmit Error Counter(TEC). + [..] This section provides functions allowing to + (+) Return the CANx's last error code (LEC) + (+) Return the CANx Receive Error Counter (REC) + (+) Return the LSB of the 9-bit CANx Transmit Error Counter(TEC). - @note If TEC is greater than 255, The CAN is in bus-off state. - @note if REC or TEC are greater than 96, an Error warning flag occurs. - @note if REC or TEC are greater than 127, an Error Passive Flag occurs. + -@- If TEC is greater than 255, The CAN is in bus-off state. + -@- if REC or TEC are greater than 96, an Error warning flag occurs. + -@- if REC or TEC are greater than 127, an Error Passive Flag occurs. @endverbatim * @{ @@ -1105,163 +1103,161 @@ uint8_t CAN_GetLSBTransmitErrorCounter(CAN_TypeDef* CANx) * @verbatim =============================================================================== - Interrupts and flags management functions + ##### Interrupts and flags management functions ##### =============================================================================== - This section provides functions allowing to configure the CAN Interrupts and - to get the status and clear flags and Interrupts pending bits. + [..] This section provides functions allowing to configure the CAN Interrupts + and to get the status and clear flags and Interrupts pending bits. - The CAN provides 14 Interrupts sources and 15 Flags: - - =============== - Flags : - =============== - The 15 flags can be divided on 4 groups: - - A. Transmit Flags - ----------------------- - CAN_FLAG_RQCP0, - CAN_FLAG_RQCP1, - CAN_FLAG_RQCP2 : Request completed MailBoxes 0, 1 and 2 Flags - Set when when the last request (transmit or abort) has - been performed. - - B. Receive Flags - ----------------------- - - CAN_FLAG_FMP0, - CAN_FLAG_FMP1 : FIFO 0 and 1 Message Pending Flags - set to signal that messages are pending in the receive - FIFO. - These Flags are cleared only by hardware. - - CAN_FLAG_FF0, - CAN_FLAG_FF1 : FIFO 0 and 1 Full Flags - set when three messages are stored in the selected - FIFO. - - CAN_FLAG_FOV0 - CAN_FLAG_FOV1 : FIFO 0 and 1 Overrun Flags - set when a new message has been received and passed - the filter while the FIFO was full. - - C. Operating Mode Flags - ----------------------- - CAN_FLAG_WKU : Wake up Flag - set to signal that a SOF bit has been detected while - the CAN hardware was in Sleep mode. + The CAN provides 14 Interrupts sources and 15 Flags: + + + *** Flags *** + ============= + [..] The 15 flags can be divided on 4 groups: + + (+) Transmit Flags + (++) CAN_FLAG_RQCP0, + (++) CAN_FLAG_RQCP1, + (++) CAN_FLAG_RQCP2 : Request completed MailBoxes 0, 1 and 2 Flags + Set when when the last request (transmit or abort) + has been performed. + + (+) Receive Flags + + + (++) CAN_FLAG_FMP0, + (++) CAN_FLAG_FMP1 : FIFO 0 and 1 Message Pending Flags + set to signal that messages are pending in the receive + FIFO. + These Flags are cleared only by hardware. + + (++) CAN_FLAG_FF0, + (++) CAN_FLAG_FF1 : FIFO 0 and 1 Full Flags + set when three messages are stored in the selected + FIFO. + + (++) CAN_FLAG_FOV0 + (++) CAN_FLAG_FOV1 : FIFO 0 and 1 Overrun Flags + set when a new message has been received and passed + the filter while the FIFO was full. + + (+) Operating Mode Flags + + (++) CAN_FLAG_WKU : Wake up Flag + set to signal that a SOF bit has been detected while + the CAN hardware was in Sleep mode. - CAN_FLAG_SLAK : Sleep acknowledge Flag - Set to signal that the CAN has entered Sleep Mode. + (++) CAN_FLAG_SLAK : Sleep acknowledge Flag + Set to signal that the CAN has entered Sleep Mode. - D. Error Flags - ----------------------- - CAN_FLAG_EWG : Error Warning Flag - Set when the warning limit has been reached (Receive - Error Counter or Transmit Error Counter greater than 96). - This Flag is cleared only by hardware. + (+) Error Flags + + (++) CAN_FLAG_EWG : Error Warning Flag + Set when the warning limit has been reached (Receive + Error Counter or Transmit Error Counter greater than 96). + This Flag is cleared only by hardware. - CAN_FLAG_EPV : Error Passive Flag - Set when the Error Passive limit has been reached - (Receive Error Counter or Transmit Error Counter - greater than 127). - This Flag is cleared only by hardware. + (++) CAN_FLAG_EPV : Error Passive Flag + Set when the Error Passive limit has been reached + (Receive Error Counter or Transmit Error Counter + greater than 127). + This Flag is cleared only by hardware. - CAN_FLAG_BOF : Bus-Off Flag - set when CAN enters the bus-off state. The bus-off - state is entered on TEC overflow, greater than 255. - This Flag is cleared only by hardware. + (++) CAN_FLAG_BOF : Bus-Off Flag + set when CAN enters the bus-off state. The bus-off + state is entered on TEC overflow, greater than 255. + This Flag is cleared only by hardware. - CAN_FLAG_LEC : Last error code Flag - set If a message has been transferred (reception or - transmission) with error, and the error code is hold. - - =============== - Interrupts : - =============== - The 14 interrupts can be divided on 4 groups: + (++) CAN_FLAG_LEC : Last error code Flag + set If a message has been transferred (reception or + transmission) with error, and the error code is hold. + + *** Interrupts *** + ================== + [..] The 14 interrupts can be divided on 4 groups: + + (+) Transmit interrupt - A. Transmit interrupt - ----------------------- - CAN_IT_TME : Transmit mailbox empty Interrupt - if enabled, this interrupt source is pending when - no transmit request are pending for Tx mailboxes. - - B. Receive Interrupts - ----------------------- - CAN_IT_FMP0, - CAN_IT_FMP1 : FIFO 0 and FIFO1 message pending Interrupts - if enabled, these interrupt sources are pending when - messages are pending in the receive FIFO. - The corresponding interrupt pending bits are cleared - only by hardware. + (++) CAN_IT_TME : Transmit mailbox empty Interrupt + if enabled, this interrupt source is pending when + no transmit request are pending for Tx mailboxes. + + (+) Receive Interrupts + + (++) CAN_IT_FMP0, + (++) CAN_IT_FMP1 : FIFO 0 and FIFO1 message pending Interrupts + if enabled, these interrupt sources are pending + when messages are pending in the receive FIFO. + The corresponding interrupt pending bits are cleared + only by hardware. - CAN_IT_FF0, - CAN_IT_FF1 : FIFO 0 and FIFO1 full Interrupts - if enabled, these interrupt sources are pending when - three messages are stored in the selected FIFO. + (++) CAN_IT_FF0, + (++) CAN_IT_FF1 : FIFO 0 and FIFO1 full Interrupts + if enabled, these interrupt sources are pending + when three messages are stored in the selected FIFO. - CAN_IT_FOV0, - CAN_IT_FOV1 : FIFO 0 and FIFO1 overrun Interrupts - if enabled, these interrupt sources are pending when - a new message has been received and passed the filter - while the FIFO was full. - - C. Operating Mode Interrupts - ------------------------------- - CAN_IT_WKU : Wake-up Interrupt - if enabled, this interrupt source is pending when - a SOF bit has been detected while the CAN hardware was - in Sleep mode. + (++) CAN_IT_FOV0, + (++) CAN_IT_FOV1 : FIFO 0 and FIFO1 overrun Interrupts + if enabled, these interrupt sources are pending + when a new message has been received and passed + the filter while the FIFO was full. + + (+) Operating Mode Interrupts + + (++) CAN_IT_WKU : Wake-up Interrupt + if enabled, this interrupt source is pending when + a SOF bit has been detected while the CAN hardware + was in Sleep mode. - CAN_IT_SLK : Sleep acknowledge Interrupt - if enabled, this interrupt source is pending when - the CAN has entered Sleep Mode. - - D. Error Interrupts - ----------------------- - CAN_IT_EWG : Error warning Interrupt - if enabled, this interrupt source is pending when - the warning limit has been reached (Receive Error - Counter or Transmit Error Counter=96). + (++) CAN_IT_SLK : Sleep acknowledge Interrupt + if enabled, this interrupt source is pending when + the CAN has entered Sleep Mode. + + (+) Error Interrupts + + (++) CAN_IT_EWG : Error warning Interrupt + if enabled, this interrupt source is pending when + the warning limit has been reached (Receive Error + Counter or Transmit Error Counter=96). - CAN_IT_EPV : Error passive Interrupt - if enabled, this interrupt source is pending when - the Error Passive limit has been reached (Receive - Error Counter or Transmit Error Counter>127). + (++) CAN_IT_EPV : Error passive Interrupt + if enabled, this interrupt source is pending when + the Error Passive limit has been reached (Receive + Error Counter or Transmit Error Counter>127). - CAN_IT_BOF : Bus-off Interrupt - if enabled, this interrupt source is pending when - CAN enters the bus-off state. The bus-off state is - entered on TEC overflow, greater than 255. - This Flag is cleared only by hardware. + (++) CAN_IT_BOF : Bus-off Interrupt + if enabled, this interrupt source is pending when + CAN enters the bus-off state. The bus-off state is + entered on TEC overflow, greater than 255. + This Flag is cleared only by hardware. - CAN_IT_LEC : Last error code Interrupt - if enabled, this interrupt source is pending when - a message has been transferred (reception or - transmission) with error, and the error code is hold. + (++) CAN_IT_LEC : Last error code Interrupt + if enabled, this interrupt source is pending when + a message has been transferred (reception or + transmission) with error, and the error code is hold. - CAN_IT_ERR : Error Interrupt - if enabled, this interrupt source is pending when - an error condition is pending. + (++) CAN_IT_ERR : Error Interrupt + if enabled, this interrupt source is pending when + an error condition is pending. - - Managing the CAN controller events : - ------------------------------------ - The user should identify which mode will be used in his application to manage - the CAN controller events: Polling mode or Interrupt mode. + [..] Managing the CAN controller events : + + The user should identify which mode will be used in his application to + manage the CAN controller events: Polling mode or Interrupt mode. - 1. In the Polling Mode it is advised to use the following functions: - - CAN_GetFlagStatus() : to check if flags events occur. - - CAN_ClearFlag() : to clear the flags events. + (#) In the Polling Mode it is advised to use the following functions: + (++) CAN_GetFlagStatus() : to check if flags events occur. + (++) CAN_ClearFlag() : to clear the flags events. - 2. In the Interrupt Mode it is advised to use the following functions: - - CAN_ITConfig() : to enable or disable the interrupt source. - - CAN_GetITStatus() : to check if Interrupt occurs. - - CAN_ClearITPendingBit() : to clear the Interrupt pending Bit (corresponding Flag). - @note This function has no impact on CAN_IT_FMP0 and CAN_IT_FMP1 Interrupts + (#) In the Interrupt Mode it is advised to use the following functions: + (++) CAN_ITConfig() : to enable or disable the interrupt source. + (++) CAN_GetITStatus() : to check if Interrupt occurs. + (++) CAN_ClearITPendingBit() : to clear the Interrupt pending Bit + (corresponding Flag). + -@@- This function has no impact on CAN_IT_FMP0 and CAN_IT_FMP1 Interrupts pending bits since there are cleared only by hardware. @endverbatim diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_crc.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_crc.c index a83e399f..ac420ece 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_crc.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_crc.c @@ -2,13 +2,13 @@ ****************************************************************************** * @file stm32f4xx_crc.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides all the CRC firmware functions. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp.c index 68265219..548caec8 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp.c @@ -2,149 +2,148 @@ ****************************************************************************** * @file stm32f4xx_cryp.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following - * functionalities of the Cryptographic processor (CRYP) peripheral: - * - Initialization and Configuration functions - * - Data treatment functions - * - Context swapping functions - * - DMA interface function - * - Interrupts and flags management - * - * @verbatim - * - * =================================================================== - * How to use this driver - * =================================================================== - * 1. Enable the CRYP controller clock using - * RCC_AHB2PeriphClockCmd(RCC_AHB2Periph_CRYP, ENABLE); function. - * - * 2. Initialise the CRYP using CRYP_Init(), CRYP_KeyInit() and if - * needed CRYP_IVInit(). - * - * 3. Flush the IN and OUT FIFOs by using CRYP_FIFOFlush() function. - * - * 4. Enable the CRYP controller using the CRYP_Cmd() function. - * - * 5. If using DMA for Data input and output transfer, - * Activate the needed DMA Requests using CRYP_DMACmd() function + * functionalities of the Cryptographic processor (CRYP) peripheral: + * + Initialization and Configuration functions + * + Data treatment functions + * + Context swapping functions + * + DMA interface function + * + Interrupts and flags management + * +@verbatim + =================================================================== + ##### How to use this driver ##### + =================================================================== + [..] + (#) Enable the CRYP controller clock using + RCC_AHB2PeriphClockCmd(RCC_AHB2Periph_CRYP, ENABLE); function. - * 6. If DMA is not used for data transfer, use CRYP_DataIn() and - * CRYP_DataOut() functions to enter data to IN FIFO and get result - * from OUT FIFO. - * - * 7. To control CRYP events you can use one of the following - * two methods: - * - Check on CRYP flags using the CRYP_GetFlagStatus() function. - * - Use CRYP interrupts through the function CRYP_ITConfig() at - * initialization phase and CRYP_GetITStatus() function into - * interrupt routines in processing phase. - * - * 8. Save and restore Cryptographic processor context using - * CRYP_SaveContext() and CRYP_RestoreContext() functions. - * - * - * =================================================================== - * Procedure to perform an encryption or a decryption - * =================================================================== - * - * Initialization - * =============== - * 1. Initialize the peripheral using CRYP_Init(), CRYP_KeyInit() and - * CRYP_IVInit functions: - * - Configure the key size (128-, 192- or 256-bit, in the AES only) - * - Enter the symmetric key - * - Configure the data type - * - In case of decryption in AES-ECB or AES-CBC, you must prepare - * the key: configure the key preparation mode. Then Enable the CRYP - * peripheral using CRYP_Cmd() function: the BUSY flag is set. - * Wait until BUSY flag is reset : the key is prepared for decryption - * - Configure the algorithm and chaining (the DES/TDES in ECB/CBC, the - * AES in ECB/CBC/CTR) - * - Configure the direction (encryption/decryption). - * - Write the initialization vectors (in CBC or CTR modes only) - * - * 2. Flush the IN and OUT FIFOs using the CRYP_FIFOFlush() function - * - * - * Basic Processing mode (polling mode) - * ==================================== - * 1. Enable the cryptographic processor using CRYP_Cmd() function. - * - * 2. Write the first blocks in the input FIFO (2 to 8 words) using - * CRYP_DataIn() function. - * - * 3. Repeat the following sequence until the complete message has been - * processed: - * - * a) Wait for flag CRYP_FLAG_OFNE occurs (using CRYP_GetFlagStatus() - * function), then read the OUT-FIFO using CRYP_DataOut() function - * (1 block or until the FIFO is empty) - * - * b) Wait for flag CRYP_FLAG_IFNF occurs, (using CRYP_GetFlagStatus() - * function then write the IN FIFO using CRYP_DataIn() function - * (1 block or until the FIFO is full) - * - * 4. At the end of the processing, CRYP_FLAG_BUSY flag will be reset and - * both FIFOs are empty (CRYP_FLAG_IFEM is set and CRYP_FLAG_OFNE is - * reset). You can disable the peripheral using CRYP_Cmd() function. - * - * Interrupts Processing mode - * =========================== - * In this mode, Processing is done when the data are transferred by the - * CPU during interrupts. - * - * 1. Enable the interrupts CRYP_IT_INI and CRYP_IT_OUTI using - * CRYP_ITConfig() function. - * - * 2. Enable the cryptographic processor using CRYP_Cmd() function. - * - * 3. In the CRYP_IT_INI interrupt handler : load the input message into the - * IN FIFO using CRYP_DataIn() function . You can load 2 or 4 words at a - * time, or load data until the IN FIFO is full. When the last word of - * the message has been entered into the IN FIFO, disable the CRYP_IT_INI - * interrupt (using CRYP_ITConfig() function). - * - * 4. In the CRYP_IT_OUTI interrupt handler : read the output message from - * the OUT FIFO using CRYP_DataOut() function. You can read 1 block (2 or - * 4 words) at a time or read data until the FIFO is empty. - * When the last word has been read, INIM=0, BUSY=0 and both FIFOs are - * empty (CRYP_FLAG_IFEM is set and CRYP_FLAG_OFNE is reset). - * You can disable the CRYP_IT_OUTI interrupt (using CRYP_ITConfig() - * function) and you can disable the peripheral using CRYP_Cmd() function. - * - * DMA Processing mode - * ==================== - * In this mode, Processing is done when the DMA is used to transfer the - * data from/to the memory. - * - * 1. Configure the DMA controller to transfer the input data from the - * memory using DMA_Init() function. - * The transfer length is the length of the message. - * As message padding is not managed by the peripheral, the message - * length must be an entire number of blocks. The data are transferred - * in burst mode. The burst length is 4 words in the AES and 2 or 4 - * words in the DES/TDES. The DMA should be configured to set an - * interrupt on transfer completion of the output data to indicate that - * the processing is finished. - * Refer to DMA peripheral driver for more details. - * - * 2. Enable the cryptographic processor using CRYP_Cmd() function. - * Enable the DMA requests CRYP_DMAReq_DataIN and CRYP_DMAReq_DataOUT - * using CRYP_DMACmd() function. - * - * 3. All the transfers and processing are managed by the DMA and the - * cryptographic processor. The DMA transfer complete interrupt indicates - * that the processing is complete. Both FIFOs are normally empty and - * CRYP_FLAG_BUSY flag is reset. - * - * @endverbatim + (#) Initialise the CRYP using CRYP_Init(), CRYP_KeyInit() and if needed + CRYP_IVInit(). + + (#) Flush the IN and OUT FIFOs by using CRYP_FIFOFlush() function. + + (#) Enable the CRYP controller using the CRYP_Cmd() function. + + (#) If using DMA for Data input and output transfer, activate the needed DMA + Requests using CRYP_DMACmd() function + + (#) If DMA is not used for data transfer, use CRYP_DataIn() and CRYP_DataOut() + functions to enter data to IN FIFO and get result from OUT FIFO. + + (#) To control CRYP events you can use one of the following two methods: + (++) Check on CRYP flags using the CRYP_GetFlagStatus() function. + (++) Use CRYP interrupts through the function CRYP_ITConfig() at + initialization phase and CRYP_GetITStatus() function into interrupt + routines in processing phase. + + (#) Save and restore Cryptographic processor context using CRYP_SaveContext() + and CRYP_RestoreContext() functions. + + + *** Procedure to perform an encryption or a decryption *** + ========================================================== + + *** Initialization *** + ====================== + [..] + (#) Initialize the peripheral using CRYP_Init(), CRYP_KeyInit() and CRYP_IVInit + functions: + (++) Configure the key size (128-, 192- or 256-bit, in the AES only) + (++) Enter the symmetric key + (++) Configure the data type + (++) In case of decryption in AES-ECB or AES-CBC, you must prepare + the key: configure the key preparation mode. Then Enable the CRYP + peripheral using CRYP_Cmd() function: the BUSY flag is set. + Wait until BUSY flag is reset : the key is prepared for decryption + (++) Configure the algorithm and chaining (the DES/TDES in ECB/CBC, the + AES in ECB/CBC/CTR) + (++) Configure the direction (encryption/decryption). + (++) Write the initialization vectors (in CBC or CTR modes only) + + (#) Flush the IN and OUT FIFOs using the CRYP_FIFOFlush() function + + + *** Basic Processing mode (polling mode) *** + ============================================ + [..] + (#) Enable the cryptographic processor using CRYP_Cmd() function. + + (#) Write the first blocks in the input FIFO (2 to 8 words) using + CRYP_DataIn() function. + + (#) Repeat the following sequence until the complete message has been + processed: + + (++) Wait for flag CRYP_FLAG_OFNE occurs (using CRYP_GetFlagStatus() + function), then read the OUT-FIFO using CRYP_DataOut() function + (1 block or until the FIFO is empty) + + (++) Wait for flag CRYP_FLAG_IFNF occurs, (using CRYP_GetFlagStatus() + function then write the IN FIFO using CRYP_DataIn() function + (1 block or until the FIFO is full) + + (#) At the end of the processing, CRYP_FLAG_BUSY flag will be reset and + both FIFOs are empty (CRYP_FLAG_IFEM is set and CRYP_FLAG_OFNE is + reset). You can disable the peripheral using CRYP_Cmd() function. + + *** Interrupts Processing mode *** + ================================== + [..] In this mode, Processing is done when the data are transferred by the + CPU during interrupts. + + (#) Enable the interrupts CRYP_IT_INI and CRYP_IT_OUTI using CRYP_ITConfig() + function. + + (#) Enable the cryptographic processor using CRYP_Cmd() function. + + (#) In the CRYP_IT_INI interrupt handler : load the input message into the + IN FIFO using CRYP_DataIn() function . You can load 2 or 4 words at a + time, or load data until the IN FIFO is full. When the last word of + the message has been entered into the IN FIFO, disable the CRYP_IT_INI + interrupt (using CRYP_ITConfig() function). + + (#) In the CRYP_IT_OUTI interrupt handler : read the output message from + the OUT FIFO using CRYP_DataOut() function. You can read 1 block (2 or + 4 words) at a time or read data until the FIFO is empty. + When the last word has been read, INIM=0, BUSY=0 and both FIFOs are + empty (CRYP_FLAG_IFEM is set and CRYP_FLAG_OFNE is reset). + You can disable the CRYP_IT_OUTI interrupt (using CRYP_ITConfig() + function) and you can disable the peripheral using CRYP_Cmd() function. + + *** DMA Processing mode *** + =========================== + [..] In this mode, Processing is done when the DMA is used to transfer the + data from/to the memory. + + (#) Configure the DMA controller to transfer the input data from the + memory using DMA_Init() function. + The transfer length is the length of the message. + As message padding is not managed by the peripheral, the message + length must be an entire number of blocks. The data are transferred + in burst mode. The burst length is 4 words in the AES and 2 or 4 + words in the DES/TDES. The DMA should be configured to set an + interrupt on transfer completion of the output data to indicate that + the processing is finished. + Refer to DMA peripheral driver for more details. + + (#) Enable the cryptographic processor using CRYP_Cmd() function. + Enable the DMA requests CRYP_DMAReq_DataIN and CRYP_DMAReq_DataOUT + using CRYP_DMACmd() function. + + (#) All the transfers and processing are managed by the DMA and the + cryptographic processor. The DMA transfer complete interrupt indicates + that the processing is complete. Both FIFOs are normally empty and + CRYP_FLAG_BUSY flag is reset. + + @endverbatim * ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -158,7 +157,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - ****************************************************************************** + ****************************************************************************** */ /* Includes ------------------------------------------------------------------*/ @@ -193,23 +192,22 @@ * @verbatim =============================================================================== - Initialization and Configuration functions + ##### Initialization and Configuration functions ##### =============================================================================== - This section provides functions allowing to - - Initialize the cryptographic Processor using CRYP_Init() function - - Encrypt or Decrypt - - mode : TDES-ECB, TDES-CBC, - DES-ECB, DES-CBC, - AES-ECB, AES-CBC, AES-CTR, AES-Key - - DataType : 32-bit data, 16-bit data, bit data or bit-string - - Key Size (only in AES modes) - - Configure the Encrypt or Decrypt Key using CRYP_KeyInit() function - - Configure the Initialization Vectors(IV) for CBC and CTR modes using - CRYP_IVInit() function. - - Flushes the IN and OUT FIFOs : using CRYP_FIFOFlush() function. - - Enable or disable the CRYP Processor using CRYP_Cmd() function - - + [..] This section provides functions allowing to + (+) Initialize the cryptographic Processor using CRYP_Init() function + (++) Encrypt or Decrypt + (++) mode : TDES-ECB, TDES-CBC, + DES-ECB, DES-CBC, + AES-ECB, AES-CBC, AES-CTR, AES-Key, AES-GCM, AES-CCM + (++) DataType : 32-bit data, 16-bit data, bit data or bit-string + (++) Key Size (only in AES modes) + (+) Configure the Encrypt or Decrypt Key using CRYP_KeyInit() function + (+) Configure the Initialization Vectors(IV) for CBC and CTR modes using + CRYP_IVInit() function. + (+) Flushes the IN and OUT FIFOs : using CRYP_FIFOFlush() function. + (+) Enable or disable the CRYP Processor using CRYP_Cmd() function + @endverbatim * @{ */ @@ -250,10 +248,10 @@ void CRYP_Init(CRYP_InitTypeDef* CRYP_InitStruct) CRYP->CR |= CRYP_InitStruct->CRYP_DataType; /* select Key size (used only with AES algorithm) */ - if ((CRYP_InitStruct->CRYP_AlgoMode == CRYP_AlgoMode_AES_ECB) || - (CRYP_InitStruct->CRYP_AlgoMode == CRYP_AlgoMode_AES_CBC) || - (CRYP_InitStruct->CRYP_AlgoMode == CRYP_AlgoMode_AES_CTR) || - (CRYP_InitStruct->CRYP_AlgoMode == CRYP_AlgoMode_AES_Key)) + if ((CRYP_InitStruct->CRYP_AlgoMode != CRYP_AlgoMode_TDES_ECB) && + (CRYP_InitStruct->CRYP_AlgoMode != CRYP_AlgoMode_TDES_CBC) && + (CRYP_InitStruct->CRYP_AlgoMode != CRYP_AlgoMode_DES_ECB) && + (CRYP_InitStruct->CRYP_AlgoMode != CRYP_AlgoMode_DES_CBC)) { assert_param(IS_CRYP_KEYSIZE(CRYP_InitStruct->CRYP_KeySize)); CRYP->CR &= ~CRYP_CR_KEYSIZE; @@ -354,6 +352,35 @@ void CRYP_IVStructInit(CRYP_IVInitTypeDef* CRYP_IVInitStruct) CRYP_IVInitStruct->CRYP_IV1Right = 0; } +/** + * @brief Configures the AES-CCM and AES-GCM phases + * @note This function is used only with AES-CCM or AES-GCM Algorithms + * @param CRYP_Phase: specifies the CRYP AES-CCM and AES-GCM phase to be configured. + * This parameter can be one of the following values: + * @arg CRYP_Phase_Init: Initialization phase + * @arg CRYP_Phase_Header: Header phase + * @arg CRYP_Phase_Payload: Payload phase + * @arg CRYP_Phase_Final: Final phase + * @retval None + */ +void CRYP_PhaseConfig(uint32_t CRYP_Phase) +{ uint32_t tempcr = 0; + + /* Check the parameter */ + assert_param(IS_CRYP_PHASE(CRYP_Phase)); + + /* Get the CR register */ + tempcr = CRYP->CR; + + /* Reset the phase configuration bits: GCMP_CCMPH */ + tempcr &= (uint32_t)(~CRYP_CR_GCM_CCMPH); + /* Set the selected phase */ + tempcr |= (uint32_t)CRYP_Phase; + + /* Set the CR register */ + CRYP->CR = tempcr; +} + /** * @brief Flushes the IN and OUT FIFOs (that is read and write pointers of the * FIFOs are reset) @@ -398,12 +425,12 @@ void CRYP_Cmd(FunctionalState NewState) * @verbatim =============================================================================== - CRYP Data processing functions + ##### CRYP Data processing functions ##### =============================================================================== - This section provides functions allowing the encryption and decryption - operations: - - Enter data to be treated in the IN FIFO : using CRYP_DataIn() function. - - Get the data result from the OUT FIFO : using CRYP_DataOut() function. + [..] This section provides functions allowing the encryption and decryption + operations: + (+) Enter data to be treated in the IN FIFO : using CRYP_DataIn() function. + (+) Get the data result from the OUT FIFO : using CRYP_DataOut() function. @endverbatim * @{ @@ -439,20 +466,18 @@ uint32_t CRYP_DataOut(void) * @verbatim =============================================================================== - Context swapping functions + ##### Context swapping functions ##### =============================================================================== + [..] This section provides functions allowing to save and store CRYP Context - This section provides functions allowing to save and store CRYP Context - - It is possible to interrupt an encryption/ decryption/ key generation process - to perform another processing with a higher priority, and to complete the - interrupted process later on, when the higher-priority task is complete. To do - so, the context of the interrupted task must be saved from the CRYP registers - to memory, and then be restored from memory to the CRYP registers. + [..] It is possible to interrupt an encryption/ decryption/ key generation process + to perform another processing with a higher priority, and to complete the + interrupted process later on, when the higher-priority task is complete. To do + so, the context of the interrupted task must be saved from the CRYP registers + to memory, and then be restored from memory to the CRYP registers. - 1. To save the current context, use CRYP_SaveContext() function - 2. To restore the saved context, use CRYP_RestoreContext() function - + (#) To save the current context, use CRYP_SaveContext() function + (#) To restore the saved context, use CRYP_RestoreContext() function @endverbatim * @{ @@ -512,11 +537,12 @@ ErrorStatus CRYP_SaveContext(CRYP_Context* CRYP_ContextSave, CRYP->DMACR &= ~(uint32_t)CRYP_DMACR_DOEN; CRYP->CR &= ~(uint32_t)CRYP_CR_CRYPEN; - /* Save the current configuration (bits [9:2] in the CRYP_CR register) */ - CRYP_ContextSave->CR_bits9to2 = CRYP->CR & (CRYP_CR_KEYSIZE | - CRYP_CR_DATATYPE | - CRYP_CR_ALGOMODE | - CRYP_CR_ALGODIR); + /* Save the current configuration (bit 19, bit[17:16] and bits [9:2] in the CRYP_CR register) */ + CRYP_ContextSave->CR_CurrentConfig = CRYP->CR & (CRYP_CR_GCM_CCMPH | + CRYP_CR_KEYSIZE | + CRYP_CR_DATATYPE | + CRYP_CR_ALGOMODE | + CRYP_CR_ALGODIR); /* and, if not in ECB mode, the initialization vectors. */ CRYP_ContextSave->CRYP_IV0LR = CRYP->IV0LR; @@ -534,6 +560,25 @@ ErrorStatus CRYP_SaveContext(CRYP_Context* CRYP_ContextSave, CRYP_ContextSave->CRYP_K3LR = CRYP_KeyInitStruct->CRYP_Key3Left; CRYP_ContextSave->CRYP_K3RR = CRYP_KeyInitStruct->CRYP_Key3Right; + /* Save the content of context swap registers */ + CRYP_ContextSave->CRYP_CSGCMCCMR[0] = CRYP->CSGCMCCM0R; + CRYP_ContextSave->CRYP_CSGCMCCMR[1] = CRYP->CSGCMCCM1R; + CRYP_ContextSave->CRYP_CSGCMCCMR[2] = CRYP->CSGCMCCM2R; + CRYP_ContextSave->CRYP_CSGCMCCMR[3] = CRYP->CSGCMCCM3R; + CRYP_ContextSave->CRYP_CSGCMCCMR[4] = CRYP->CSGCMCCM4R; + CRYP_ContextSave->CRYP_CSGCMCCMR[5] = CRYP->CSGCMCCM5R; + CRYP_ContextSave->CRYP_CSGCMCCMR[6] = CRYP->CSGCMCCM6R; + CRYP_ContextSave->CRYP_CSGCMCCMR[7] = CRYP->CSGCMCCM7R; + + CRYP_ContextSave->CRYP_CSGCMR[0] = CRYP->CSGCM0R; + CRYP_ContextSave->CRYP_CSGCMR[1] = CRYP->CSGCM1R; + CRYP_ContextSave->CRYP_CSGCMR[2] = CRYP->CSGCM2R; + CRYP_ContextSave->CRYP_CSGCMR[3] = CRYP->CSGCM3R; + CRYP_ContextSave->CRYP_CSGCMR[4] = CRYP->CSGCM4R; + CRYP_ContextSave->CRYP_CSGCMR[5] = CRYP->CSGCM5R; + CRYP_ContextSave->CRYP_CSGCMR[6] = CRYP->CSGCM6R; + CRYP_ContextSave->CRYP_CSGCMR[7] = CRYP->CSGCM7R; + /* When needed, save the DMA status (pointers for IN and OUT messages, number of remaining bytes, etc.) */ @@ -558,7 +603,7 @@ void CRYP_RestoreContext(CRYP_Context* CRYP_ContextRestore) { /* Configure the processor with the saved configuration */ - CRYP->CR = CRYP_ContextRestore->CR_bits9to2; + CRYP->CR = CRYP_ContextRestore->CR_CurrentConfig; /* restore The key value */ CRYP->K0LR = CRYP_ContextRestore->CRYP_K0LR; @@ -576,6 +621,25 @@ void CRYP_RestoreContext(CRYP_Context* CRYP_ContextRestore) CRYP->IV1LR = CRYP_ContextRestore->CRYP_IV1LR; CRYP->IV1RR = CRYP_ContextRestore->CRYP_IV1RR; + /* Restore the content of context swap registers */ + CRYP->CSGCMCCM0R = CRYP_ContextRestore->CRYP_CSGCMCCMR[0]; + CRYP->CSGCMCCM1R = CRYP_ContextRestore->CRYP_CSGCMCCMR[1]; + CRYP->CSGCMCCM2R = CRYP_ContextRestore->CRYP_CSGCMCCMR[2]; + CRYP->CSGCMCCM3R = CRYP_ContextRestore->CRYP_CSGCMCCMR[3]; + CRYP->CSGCMCCM4R = CRYP_ContextRestore->CRYP_CSGCMCCMR[4]; + CRYP->CSGCMCCM5R = CRYP_ContextRestore->CRYP_CSGCMCCMR[5]; + CRYP->CSGCMCCM6R = CRYP_ContextRestore->CRYP_CSGCMCCMR[6]; + CRYP->CSGCMCCM7R = CRYP_ContextRestore->CRYP_CSGCMCCMR[7]; + + CRYP->CSGCM0R = CRYP_ContextRestore->CRYP_CSGCMR[0]; + CRYP->CSGCM1R = CRYP_ContextRestore->CRYP_CSGCMR[1]; + CRYP->CSGCM2R = CRYP_ContextRestore->CRYP_CSGCMR[2]; + CRYP->CSGCM3R = CRYP_ContextRestore->CRYP_CSGCMR[3]; + CRYP->CSGCM4R = CRYP_ContextRestore->CRYP_CSGCMR[4]; + CRYP->CSGCM5R = CRYP_ContextRestore->CRYP_CSGCMR[5]; + CRYP->CSGCM6R = CRYP_ContextRestore->CRYP_CSGCMR[6]; + CRYP->CSGCM7R = CRYP_ContextRestore->CRYP_CSGCMR[7]; + /* Enable the cryptographic processor */ CRYP->CR |= CRYP_CR_CRYPEN; } @@ -588,18 +652,17 @@ void CRYP_RestoreContext(CRYP_Context* CRYP_ContextRestore) * @verbatim =============================================================================== - CRYP's DMA interface Configuration function + ##### CRYP's DMA interface Configuration function ##### =============================================================================== - - This section provides functions allowing to configure the DMA interface for - CRYP data input and output transfer. + [..] This section provides functions allowing to configure the DMA interface for + CRYP data input and output transfer. - When the DMA mode is enabled (using the CRYP_DMACmd() function), data can be - transferred: - - From memory to the CRYP IN FIFO using the DMA peripheral by enabling - the CRYP_DMAReq_DataIN request. - - From the CRYP OUT FIFO to the memory using the DMA peripheral by enabling - the CRYP_DMAReq_DataOUT request. + [..] When the DMA mode is enabled (using the CRYP_DMACmd() function), data can be + transferred: + (+) From memory to the CRYP IN FIFO using the DMA peripheral by enabling + the CRYP_DMAReq_DataIN request. + (+) From the CRYP OUT FIFO to the memory using the DMA peripheral by enabling + the CRYP_DMAReq_DataOUT request. @endverbatim * @{ @@ -641,90 +704,83 @@ void CRYP_DMACmd(uint8_t CRYP_DMAReq, FunctionalState NewState) * @verbatim =============================================================================== - Interrupts and flags management functions + ##### Interrupts and flags management functions ##### =============================================================================== + + [..] This section provides functions allowing to configure the CRYP Interrupts and + to get the status and Interrupts pending bits. - This section provides functions allowing to configure the CRYP Interrupts and - to get the status and Interrupts pending bits. - - The CRYP provides 2 Interrupts sources and 7 Flags: + [..] The CRYP provides 2 Interrupts sources and 7 Flags: - Flags : - ------- - - 1. CRYP_FLAG_IFEM : Set when Input FIFO is empty. - This Flag is cleared only by hardware. + *** Flags : *** + =============== + [..] + (#) CRYP_FLAG_IFEM : Set when Input FIFO is empty. This Flag is cleared only + by hardware. - 2. CRYP_FLAG_IFNF : Set when Input FIFO is not full. - This Flag is cleared only by hardware. + (#) CRYP_FLAG_IFNF : Set when Input FIFO is not full. This Flag is cleared + only by hardware. - 3. CRYP_FLAG_INRIS : Set when Input FIFO Raw interrupt is pending - it gives the raw interrupt state prior to masking - of the input FIFO service interrupt. - This Flag is cleared only by hardware. + (#) CRYP_FLAG_INRIS : Set when Input FIFO Raw interrupt is pending it gives + the raw interrupt state prior to masking of the input FIFO service interrupt. + This Flag is cleared only by hardware. - 4. CRYP_FLAG_OFNE : Set when Output FIFO not empty. - This Flag is cleared only by hardware. + (#) CRYP_FLAG_OFNE : Set when Output FIFO not empty. This Flag is cleared + only by hardware. - 5. CRYP_FLAG_OFFU : Set when Output FIFO is full. - This Flag is cleared only by hardware. + (#) CRYP_FLAG_OFFU : Set when Output FIFO is full. This Flag is cleared only + by hardware. - 6. CRYP_FLAG_OUTRIS : Set when Output FIFO Raw interrupt is pending - it gives the raw interrupt state prior to masking - of the output FIFO service interrupt. - This Flag is cleared only by hardware. + (#) CRYP_FLAG_OUTRIS : Set when Output FIFO Raw interrupt is pending it gives + the raw interrupt state prior to masking of the output FIFO service interrupt. + This Flag is cleared only by hardware. - 7. CRYP_FLAG_BUSY : Set when the CRYP core is currently processing a - block of data or a key preparation (for AES - decryption). - This Flag is cleared only by hardware. - To clear it, the CRYP core must be disabled and the - last processing has completed. - - Interrupts : - ------------ + (#) CRYP_FLAG_BUSY : Set when the CRYP core is currently processing a block + of data or a key preparation (for AES decryption). This Flag is cleared + only by hardware. To clear it, the CRYP core must be disabled and the last + processing has completed. - 1. CRYP_IT_INI : The input FIFO service interrupt is asserted when there - are less than 4 words in the input FIFO. - This interrupt is associated to CRYP_FLAG_INRIS flag. + *** Interrupts : *** + ==================== + [..] + (#) CRYP_IT_INI : The input FIFO service interrupt is asserted when there + are less than 4 words in the input FIFO. This interrupt is associated to + CRYP_FLAG_INRIS flag. - @note This interrupt is cleared by performing write operations - to the input FIFO until it holds 4 or more words. The - input FIFO service interrupt INMIS is enabled with the - CRYP enable bit. Consequently, when CRYP is disabled, the - INMIS signal is low even if the input FIFO is empty. + -@- This interrupt is cleared by performing write operations to the input FIFO + until it holds 4 or more words. The input FIFO service interrupt INMIS is + enabled with the CRYP enable bit. Consequently, when CRYP is disabled, the + INMIS signal is low even if the input FIFO is empty. - 2. CRYP_IT_OUTI : The output FIFO service interrupt is asserted when there - is one or more (32-bit word) data items in the output FIFO. - This interrupt is associated to CRYP_FLAG_OUTRIS flag. + (#) CRYP_IT_OUTI : The output FIFO service interrupt is asserted when there + is one or more (32-bit word) data items in the output FIFO. This interrupt + is associated to CRYP_FLAG_OUTRIS flag. - @note This interrupt is cleared by reading data from the output - FIFO until there is no valid (32-bit) word left (that is, - the interrupt follows the state of the OFNE (output FIFO - not empty) flag). + -@- This interrupt is cleared by reading data from the output FIFO until there + is no valid (32-bit) word left (that is, the interrupt follows the state + of the OFNE (output FIFO not empty) flag). + *** Managing the CRYP controller events : *** + ============================================= + [..] The user should identify which mode will be used in his application to manage + the CRYP controller events: Polling mode or Interrupt mode. - Managing the CRYP controller events : - ------------------------------------ - The user should identify which mode will be used in his application to manage - the CRYP controller events: Polling mode or Interrupt mode. + (#) In the Polling Mode it is advised to use the following functions: + (++) CRYP_GetFlagStatus() : to check if flags events occur. - 1. In the Polling Mode it is advised to use the following functions: - - CRYP_GetFlagStatus() : to check if flags events occur. + -@@- The CRYPT flags do not need to be cleared since they are cleared as + soon as the associated event are reset. - @note The CRYPT flags do not need to be cleared since they are cleared as - soon as the associated event are reset. + (#) In the Interrupt Mode it is advised to use the following functions: + (++) CRYP_ITConfig() : to enable or disable the interrupt source. + (++) CRYP_GetITStatus() : to check if Interrupt occurs. - 2. In the Interrupt Mode it is advised to use the following functions: - - CRYP_ITConfig() : to enable or disable the interrupt source. - - CRYP_GetITStatus() : to check if Interrupt occurs. - - @note The CRYPT interrupts have no pending bits, the interrupt is cleared as - soon as the associated event is reset. + -@@- The CRYPT interrupts have no pending bits, the interrupt is cleared as + soon as the associated event is reset. @endverbatim * @{ @@ -789,6 +845,28 @@ ITStatus CRYP_GetITStatus(uint8_t CRYP_IT) return bitstatus; } +/** + * @brief Returns whether CRYP peripheral is enabled or disabled. + * @param none. + * @retval Current state of the CRYP peripheral (ENABLE or DISABLE). + */ +FunctionalState CRYP_GetCmdStatus(void) +{ + FunctionalState state = DISABLE; + + if ((CRYP->CR & CRYP_CR_CRYPEN) != 0) + { + /* CRYPEN bit is set */ + state = ENABLE; + } + else + { + /* CRYPEN bit is reset */ + state = DISABLE; + } + return state; +} + /** * @brief Checks whether the specified CRYP flag is set or not. * @param CRYP_FLAG: specifies the CRYP flag to check. diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp_aes.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp_aes.c index 35cef202..af8d7d1e 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp_aes.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp_aes.c @@ -2,36 +2,39 @@ ****************************************************************************** * @file stm32f4xx_cryp_aes.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides high level functions to encrypt and decrypt an - * input message using AES in ECB/CBC/CTR modes. + * input message using AES in ECB/CBC/CTR/GCM/CCM modes. * It uses the stm32f4xx_cryp.c/.h drivers to access the STM32F4xx CRYP * peripheral. + * AES-ECB/CBC/CTR/GCM/CCM modes are available on STM32F437x Devices. + * For STM32F41xx Devices, only AES-ECB/CBC/CTR modes are available. * - * @verbatim - * - * =================================================================== - * How to use this driver - * =================================================================== - * 1. Enable The CRYP controller clock using - * RCC_AHB2PeriphClockCmd(RCC_AHB2Periph_CRYP, ENABLE); function. - * - * 2. Encrypt and decrypt using AES in ECB Mode using CRYP_AES_ECB() - * function. - * - * 3. Encrypt and decrypt using AES in CBC Mode using CRYP_AES_CBC() - * function. - * - * 4. Encrypt and decrypt using AES in CTR Mode using CRYP_AES_CTR() - * function. - * - * @endverbatim +@verbatim + =================================================================== + ##### How to use this driver ##### + =================================================================== + [..] + (#) Enable The CRYP controller clock using + RCC_AHB2PeriphClockCmd(RCC_AHB2Periph_CRYP, ENABLE); function. + + (#) Encrypt and decrypt using AES in ECB Mode using CRYP_AES_ECB() function. + + (#) Encrypt and decrypt using AES in CBC Mode using CRYP_AES_CBC() function. + + (#) Encrypt and decrypt using AES in CTR Mode using CRYP_AES_CTR() function. + + (#) Encrypt and decrypt using AES in GCM Mode using CRYP_AES_GCM() function. + + (#) Encrypt and decrypt using AES in CCM Mode using CRYP_AES_CCM() function. + +@endverbatim * ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -45,7 +48,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - ****************************************************************************** + ****************************************************************************** */ /* Includes ------------------------------------------------------------------*/ @@ -78,10 +81,9 @@ * @verbatim =============================================================================== - High Level AES functions + ##### High Level AES functions ##### =============================================================================== - @endverbatim * @{ */ @@ -220,6 +222,13 @@ ErrorStatus CRYP_AES_ECB(uint8_t Mode, uint8_t* Key, uint16_t Keysize, /* Enable Crypto processor */ CRYP_Cmd(ENABLE); + if(CRYP_GetCmdStatus() == DISABLE) + { + /* The CRYP peripheral clock is not enabled or the device doesn't embedd + the CRYP peripheral (please check the device sales type. */ + return(ERROR); + } + for(i=0; ((i>32)); + CRYP_DataIn(__REV(headerlength)); + CRYP_DataIn(__REV(inputlength>>32)); + CRYP_DataIn(__REV(inputlength)); + /* Wait until the OFNE flag is reset */ + while(CRYP_GetFlagStatus(CRYP_FLAG_OFNE) == RESET) + { + } + + tagaddr = (uint32_t)AuthTAG; + /* Read the Auth TAG in the IN FIFO */ + *(uint32_t*)(tagaddr) = CRYP_DataOut(); + tagaddr+=4; + *(uint32_t*)(tagaddr) = CRYP_DataOut(); + tagaddr+=4; + *(uint32_t*)(tagaddr) = CRYP_DataOut(); + tagaddr+=4; + *(uint32_t*)(tagaddr) = CRYP_DataOut(); + tagaddr+=4; + } + /*------------------ AES Decryption ------------------*/ + else /* AES decryption */ + { + /* Flush IN/OUT FIFOs */ + CRYP_FIFOFlush(); + + /* Key Initialisation */ + CRYP_KeyInit(&AES_CRYP_KeyInitStructure); + + /* CRYP Initialization Vectors */ + CRYP_IVInit(&AES_CRYP_IVInitStructure); + + /* Crypto Init for Key preparation for decryption process */ + AES_CRYP_InitStructure.CRYP_AlgoDir = CRYP_AlgoDir_Decrypt; + AES_CRYP_InitStructure.CRYP_AlgoMode = CRYP_AlgoMode_AES_GCM; + AES_CRYP_InitStructure.CRYP_DataType = CRYP_DataType_8b; + CRYP_Init(&AES_CRYP_InitStructure); + + /***************************** Init phase *********************************/ + /* Select init phase */ + CRYP_PhaseConfig(CRYP_Phase_Init); + + /* Enable Crypto processor */ + CRYP_Cmd(ENABLE); + + /* Wait for CRYPEN bit to be 0 */ + while(CRYP_GetCmdStatus() == ENABLE) + { + } + + /***************************** header phase *******************************/ + if(HLength != 0) + { + /* Select header phase */ + CRYP_PhaseConfig(CRYP_Phase_Header); + + /* Enable Crypto processor */ + CRYP_Cmd(ENABLE); + + if(CRYP_GetCmdStatus() == DISABLE) + { + /* The CRYP peripheral clock is not enabled or the device doesn't embedd + the CRYP peripheral (please check the device sales type. */ + return(ERROR); + } + + for(loopcounter = 0; (loopcounter < HLength); loopcounter+=16) + { + /* Wait until the IFEM flag is reset */ + while(CRYP_GetFlagStatus(CRYP_FLAG_IFEM) == RESET) + { + } + + /* Write the Input block in the IN FIFO */ + CRYP_DataIn(*(uint32_t*)(headeraddr)); + headeraddr+=4; + CRYP_DataIn(*(uint32_t*)(headeraddr)); + headeraddr+=4; + CRYP_DataIn(*(uint32_t*)(headeraddr)); + headeraddr+=4; + CRYP_DataIn(*(uint32_t*)(headeraddr)); + headeraddr+=4; + } + + /* Wait until the complete message has been processed */ + counter = 0; + do + { + busystatus = CRYP_GetFlagStatus(CRYP_FLAG_BUSY); + counter++; + }while ((counter != AESBUSY_TIMEOUT) && (busystatus != RESET)); + + if (busystatus != RESET) + { + status = ERROR; + } + } + + /**************************** payload phase *******************************/ + if(ILength != 0) + { + /* Select payload phase */ + CRYP_PhaseConfig(CRYP_Phase_Payload); + + /* Enable Crypto processor */ + CRYP_Cmd(ENABLE); + + if(CRYP_GetCmdStatus() == DISABLE) + { + /* The CRYP peripheral clock is not enabled or the device doesn't embedd + the CRYP peripheral (please check the device sales type. */ + return(ERROR); + } + + for(loopcounter = 0; ((loopcounter < ILength) && (status != ERROR)); loopcounter+=16) + { + /* Wait until the IFEM flag is reset */ + while(CRYP_GetFlagStatus(CRYP_FLAG_IFEM) == RESET) + { + } + /* Write the Input block in the IN FIFO */ + CRYP_DataIn(*(uint32_t*)(inputaddr)); + inputaddr+=4; + CRYP_DataIn(*(uint32_t*)(inputaddr)); + inputaddr+=4; + CRYP_DataIn(*(uint32_t*)(inputaddr)); + inputaddr+=4; + CRYP_DataIn(*(uint32_t*)(inputaddr)); + inputaddr+=4; + + /* Wait until the complete message has been processed */ + counter = 0; + do + { + busystatus = CRYP_GetFlagStatus(CRYP_FLAG_BUSY); + counter++; + }while ((counter != AESBUSY_TIMEOUT) && (busystatus != RESET)); + + if (busystatus != RESET) + { + status = ERROR; + } + else + { + /* Wait until the OFNE flag is reset */ + while(CRYP_GetFlagStatus(CRYP_FLAG_OFNE) == RESET) + { + } + + /* Read the Output block from the Output FIFO */ + *(uint32_t*)(outputaddr) = CRYP_DataOut(); + outputaddr+=4; + *(uint32_t*)(outputaddr) = CRYP_DataOut(); + outputaddr+=4; + *(uint32_t*)(outputaddr) = CRYP_DataOut(); + outputaddr+=4; + *(uint32_t*)(outputaddr) = CRYP_DataOut(); + outputaddr+=4; + } + } + } + + /***************************** final phase ********************************/ + /* Select final phase */ + CRYP_PhaseConfig(CRYP_Phase_Final); + + /* Enable Crypto processor */ + CRYP_Cmd(ENABLE); + + if(CRYP_GetCmdStatus() == DISABLE) + { + /* The CRYP peripheral clock is not enabled or the device doesn't embedd + the CRYP peripheral (please check the device sales type. */ + return(ERROR); + } + + /* Write number of bits concatenated with header in the IN FIFO */ + CRYP_DataIn(__REV(headerlength>>32)); + CRYP_DataIn(__REV(headerlength)); + CRYP_DataIn(__REV(inputlength>>32)); + CRYP_DataIn(__REV(inputlength)); + /* Wait until the OFNE flag is reset */ + while(CRYP_GetFlagStatus(CRYP_FLAG_OFNE) == RESET) + { + } + + tagaddr = (uint32_t)AuthTAG; + /* Read the Auth TAG in the IN FIFO */ + *(uint32_t*)(tagaddr) = CRYP_DataOut(); + tagaddr+=4; + *(uint32_t*)(tagaddr) = CRYP_DataOut(); + tagaddr+=4; + *(uint32_t*)(tagaddr) = CRYP_DataOut(); + tagaddr+=4; + *(uint32_t*)(tagaddr) = CRYP_DataOut(); + tagaddr+=4; + } + /* Disable Crypto */ + CRYP_Cmd(DISABLE); + + return status; +} + +/** + * @brief Encrypt and decrypt using AES in CCM Mode. The GCM and CCM modes + * are available only on STM32F437x Devices. + * @param Mode: encryption or decryption Mode. + * This parameter can be one of the following values: + * @arg MODE_ENCRYPT: Encryption + * @arg MODE_DECRYPT: Decryption + * @param Nonce: the nounce used for AES algorithm. It shall be unique for each processing. + * @param Key: Key used for AES algorithm. + * @param Keysize: length of the Key, must be a 128, 192 or 256. + * @param Input: pointer to the Input buffer. + * @param Ilength: length of the Input buffer in bytes, must be a multiple of 16. + * @param Header: pointer to the header buffer. + * @param Hlength: length of the header buffer in bytes. + * @param HBuffer: pointer to temporary buffer used to append the header + * HBuffer size must be equal to Hlength + 21 + * @param Output: pointer to the returned buffer. + * @param AuthTAG: pointer to the authentication TAG buffer. + * @param TAGSize: the size of the TAG (called also MAC). + * @retval An ErrorStatus enumeration value: + * - SUCCESS: Operation done + * - ERROR: Operation failed + */ +ErrorStatus CRYP_AES_CCM(uint8_t Mode, + uint8_t* Nonce, uint32_t NonceSize, + uint8_t *Key, uint16_t Keysize, + uint8_t *Input, uint32_t ILength, + uint8_t *Header, uint32_t HLength, uint8_t *HBuffer, + uint8_t *Output, + uint8_t *AuthTAG, uint32_t TAGSize) +{ + CRYP_InitTypeDef AES_CRYP_InitStructure; + CRYP_KeyInitTypeDef AES_CRYP_KeyInitStructure; + CRYP_IVInitTypeDef AES_CRYP_IVInitStructure; + __IO uint32_t counter = 0; + uint32_t busystatus = 0; + ErrorStatus status = SUCCESS; + uint32_t keyaddr = (uint32_t)Key; + uint32_t inputaddr = (uint32_t)Input; + uint32_t outputaddr = (uint32_t)Output; + uint32_t headeraddr = (uint32_t)Header; + uint32_t tagaddr = (uint32_t)AuthTAG; + uint32_t headersize = HLength; + uint32_t loopcounter = 0; + uint32_t bufferidx = 0; + uint8_t blockb0[16] = {0};/* Block B0 */ + uint8_t ctr[16] = {0}; /* Counter */ + uint32_t temptag[4] = {0}; /* temporary TAG (MAC) */ + uint32_t ctraddr = (uint32_t)ctr; + uint32_t b0addr = (uint32_t)blockb0; + + /************************ Formatting the header block ***********************/ + if(headersize != 0) + { + /* Check that the associated data (or header) length is lower than 2^16 - 2^8 = 65536 - 256 = 65280 */ + if(headersize < 65280) + { + HBuffer[bufferidx++] = (uint8_t) ((headersize >> 8) & 0xFF); + HBuffer[bufferidx++] = (uint8_t) ((headersize) & 0xFF); + headersize += 2; + } + else + { + /* header is encoded as 0xff || 0xfe || [headersize]32, i.e., six octets */ + HBuffer[bufferidx++] = 0xFF; + HBuffer[bufferidx++] = 0xFE; + HBuffer[bufferidx++] = headersize & 0xff000000; + HBuffer[bufferidx++] = headersize & 0x00ff0000; + HBuffer[bufferidx++] = headersize & 0x0000ff00; + HBuffer[bufferidx++] = headersize & 0x000000ff; + headersize += 6; + } + /* Copy the header buffer in internal buffer "HBuffer" */ + for(loopcounter = 0; loopcounter < headersize; loopcounter++) + { + HBuffer[bufferidx++] = Header[loopcounter]; + } + /* Check if the header size is modulo 16 */ + if ((headersize % 16) != 0) + { + /* Padd the header buffer with 0s till the HBuffer length is modulo 16 */ + for(loopcounter = headersize; loopcounter <= ((headersize/16) + 1) * 16; loopcounter++) + { + HBuffer[loopcounter] = 0; + } + /* Set the header size to modulo 16 */ + headersize = ((headersize/16) + 1) * 16; + } + /* set the pointer headeraddr to HBuffer */ + headeraddr = (uint32_t)HBuffer; + } + /************************* Formatting the block B0 **************************/ + if(headersize != 0) + { + blockb0[0] = 0x40; + } + /* Flags byte */ + blockb0[0] |= 0u | (((( (uint8_t) TAGSize - 2) / 2) & 0x07 ) << 3 ) | ( ( (uint8_t) (15 - NonceSize) - 1) & 0x07); + + for (loopcounter = 0; loopcounter < NonceSize; loopcounter++) + { + blockb0[loopcounter+1] = Nonce[loopcounter]; + } + for ( ; loopcounter < 13; loopcounter++) + { + blockb0[loopcounter+1] = 0; + } + + blockb0[14] = ((ILength >> 8) & 0xFF); + blockb0[15] = (ILength & 0xFF); + + /************************* Formatting the initial counter *******************/ + /* Byte 0: + Bits 7 and 6 are reserved and shall be set to 0 + Bits 3, 4, and 5 shall also be set to 0, to ensure that all the counter blocks + are distinct from B0 + Bits 0, 1, and 2 contain the same encoding of q as in B0 + */ + ctr[0] = blockb0[0] & 0x07; + /* byte 1 to NonceSize is the IV (Nonce) */ + for(loopcounter = 1; loopcounter < NonceSize + 1; loopcounter++) + { + ctr[loopcounter] = blockb0[loopcounter]; + } + /* Set the LSB to 1 */ + ctr[15] |= 0x01; + + /* Crypto structures initialisation*/ + CRYP_KeyStructInit(&AES_CRYP_KeyInitStructure); + + switch(Keysize) + { + case 128: + AES_CRYP_InitStructure.CRYP_KeySize = CRYP_KeySize_128b; + AES_CRYP_KeyInitStructure.CRYP_Key2Left = __REV(*(uint32_t*)(keyaddr)); + keyaddr+=4; + AES_CRYP_KeyInitStructure.CRYP_Key2Right= __REV(*(uint32_t*)(keyaddr)); + keyaddr+=4; + AES_CRYP_KeyInitStructure.CRYP_Key3Left = __REV(*(uint32_t*)(keyaddr)); + keyaddr+=4; + AES_CRYP_KeyInitStructure.CRYP_Key3Right= __REV(*(uint32_t*)(keyaddr)); + break; + case 192: + AES_CRYP_InitStructure.CRYP_KeySize = CRYP_KeySize_192b; + AES_CRYP_KeyInitStructure.CRYP_Key1Left = __REV(*(uint32_t*)(keyaddr)); + keyaddr+=4; + AES_CRYP_KeyInitStructure.CRYP_Key1Right= __REV(*(uint32_t*)(keyaddr)); + keyaddr+=4; + AES_CRYP_KeyInitStructure.CRYP_Key2Left = __REV(*(uint32_t*)(keyaddr)); + keyaddr+=4; + AES_CRYP_KeyInitStructure.CRYP_Key2Right= __REV(*(uint32_t*)(keyaddr)); + keyaddr+=4; + AES_CRYP_KeyInitStructure.CRYP_Key3Left = __REV(*(uint32_t*)(keyaddr)); + keyaddr+=4; + AES_CRYP_KeyInitStructure.CRYP_Key3Right= __REV(*(uint32_t*)(keyaddr)); + break; + case 256: + AES_CRYP_InitStructure.CRYP_KeySize = CRYP_KeySize_256b; + AES_CRYP_KeyInitStructure.CRYP_Key0Left = __REV(*(uint32_t*)(keyaddr)); + keyaddr+=4; + AES_CRYP_KeyInitStructure.CRYP_Key0Right= __REV(*(uint32_t*)(keyaddr)); + keyaddr+=4; + AES_CRYP_KeyInitStructure.CRYP_Key1Left = __REV(*(uint32_t*)(keyaddr)); + keyaddr+=4; + AES_CRYP_KeyInitStructure.CRYP_Key1Right= __REV(*(uint32_t*)(keyaddr)); + keyaddr+=4; + AES_CRYP_KeyInitStructure.CRYP_Key2Left = __REV(*(uint32_t*)(keyaddr)); + keyaddr+=4; + AES_CRYP_KeyInitStructure.CRYP_Key2Right= __REV(*(uint32_t*)(keyaddr)); + keyaddr+=4; + AES_CRYP_KeyInitStructure.CRYP_Key3Left = __REV(*(uint32_t*)(keyaddr)); + keyaddr+=4; + AES_CRYP_KeyInitStructure.CRYP_Key3Right= __REV(*(uint32_t*)(keyaddr)); + break; + default: + break; + } + + /* CRYP Initialization Vectors */ + AES_CRYP_IVInitStructure.CRYP_IV0Left = (__REV(*(uint32_t*)(ctraddr))); + ctraddr+=4; + AES_CRYP_IVInitStructure.CRYP_IV0Right= (__REV(*(uint32_t*)(ctraddr))); + ctraddr+=4; + AES_CRYP_IVInitStructure.CRYP_IV1Left = (__REV(*(uint32_t*)(ctraddr))); + ctraddr+=4; + AES_CRYP_IVInitStructure.CRYP_IV1Right= (__REV(*(uint32_t*)(ctraddr))); + + /*------------------ AES Encryption ------------------*/ + if(Mode == MODE_ENCRYPT) /* AES encryption */ + { + /* Flush IN/OUT FIFOs */ + CRYP_FIFOFlush(); + + /* Key Initialisation */ + CRYP_KeyInit(&AES_CRYP_KeyInitStructure); + + /* CRYP Initialization Vectors */ + CRYP_IVInit(&AES_CRYP_IVInitStructure); + + /* Crypto Init for Key preparation for decryption process */ + AES_CRYP_InitStructure.CRYP_AlgoDir = CRYP_AlgoDir_Encrypt; + AES_CRYP_InitStructure.CRYP_AlgoMode = CRYP_AlgoMode_AES_CCM; + AES_CRYP_InitStructure.CRYP_DataType = CRYP_DataType_8b; + CRYP_Init(&AES_CRYP_InitStructure); + + /***************************** Init phase *********************************/ + /* Select init phase */ + CRYP_PhaseConfig(CRYP_Phase_Init); + + b0addr = (uint32_t)blockb0; + /* Write the blockb0 block in the IN FIFO */ + CRYP_DataIn((*(uint32_t*)(b0addr))); + b0addr+=4; + CRYP_DataIn((*(uint32_t*)(b0addr))); + b0addr+=4; + CRYP_DataIn((*(uint32_t*)(b0addr))); + b0addr+=4; + CRYP_DataIn((*(uint32_t*)(b0addr))); + + /* Enable Crypto processor */ + CRYP_Cmd(ENABLE); + + /* Wait for CRYPEN bit to be 0 */ + while(CRYP_GetCmdStatus() == ENABLE) + { + } + /***************************** header phase *******************************/ + if(headersize != 0) + { + /* Select header phase */ + CRYP_PhaseConfig(CRYP_Phase_Header); + + /* Enable Crypto processor */ + CRYP_Cmd(ENABLE); + + if(CRYP_GetCmdStatus() == DISABLE) + { + /* The CRYP peripheral clock is not enabled or the device doesn't embedd + the CRYP peripheral (please check the device sales type. */ + return(ERROR); + } + + for(loopcounter = 0; (loopcounter < headersize); loopcounter+=16) + { + /* Wait until the IFEM flag is reset */ + while(CRYP_GetFlagStatus(CRYP_FLAG_IFEM) == RESET) + { + } + + /* Write the Input block in the IN FIFO */ + CRYP_DataIn(*(uint32_t*)(headeraddr)); + headeraddr+=4; + CRYP_DataIn(*(uint32_t*)(headeraddr)); + headeraddr+=4; + CRYP_DataIn(*(uint32_t*)(headeraddr)); + headeraddr+=4; + CRYP_DataIn(*(uint32_t*)(headeraddr)); + headeraddr+=4; + } + + /* Wait until the complete message has been processed */ + counter = 0; + do + { + busystatus = CRYP_GetFlagStatus(CRYP_FLAG_BUSY); + counter++; + }while ((counter != AESBUSY_TIMEOUT) && (busystatus != RESET)); + + if (busystatus != RESET) + { + status = ERROR; + } + } + + /**************************** payload phase *******************************/ + if(ILength != 0) + { + /* Select payload phase */ + CRYP_PhaseConfig(CRYP_Phase_Payload); + + /* Enable Crypto processor */ + CRYP_Cmd(ENABLE); + + if(CRYP_GetCmdStatus() == DISABLE) + { + /* The CRYP peripheral clock is not enabled or the device doesn't embedd + the CRYP peripheral (please check the device sales type. */ + return(ERROR); + } + + for(loopcounter = 0; ((loopcounter < ILength) && (status != ERROR)); loopcounter+=16) + { + /* Wait until the IFEM flag is reset */ + while(CRYP_GetFlagStatus(CRYP_FLAG_IFEM) == RESET) + { + } + + /* Write the Input block in the IN FIFO */ + CRYP_DataIn(*(uint32_t*)(inputaddr)); + inputaddr+=4; + CRYP_DataIn(*(uint32_t*)(inputaddr)); + inputaddr+=4; + CRYP_DataIn(*(uint32_t*)(inputaddr)); + inputaddr+=4; + CRYP_DataIn(*(uint32_t*)(inputaddr)); + inputaddr+=4; + + /* Wait until the complete message has been processed */ + counter = 0; + do + { + busystatus = CRYP_GetFlagStatus(CRYP_FLAG_BUSY); + counter++; + }while ((counter != AESBUSY_TIMEOUT) && (busystatus != RESET)); + + if (busystatus != RESET) + { + status = ERROR; + } + else + { + /* Wait until the OFNE flag is reset */ + while(CRYP_GetFlagStatus(CRYP_FLAG_OFNE) == RESET) + { + } + + /* Read the Output block from the Output FIFO */ + *(uint32_t*)(outputaddr) = CRYP_DataOut(); + outputaddr+=4; + *(uint32_t*)(outputaddr) = CRYP_DataOut(); + outputaddr+=4; + *(uint32_t*)(outputaddr) = CRYP_DataOut(); + outputaddr+=4; + *(uint32_t*)(outputaddr) = CRYP_DataOut(); + outputaddr+=4; + } + } + } + + /***************************** final phase ********************************/ + /* Select final phase */ + CRYP_PhaseConfig(CRYP_Phase_Final); + + /* Enable Crypto processor */ + CRYP_Cmd(ENABLE); + + if(CRYP_GetCmdStatus() == DISABLE) + { + /* The CRYP peripheral clock is not enabled or the device doesn't embedd + the CRYP peripheral (please check the device sales type. */ + return(ERROR); + } + + ctraddr = (uint32_t)ctr; + /* Write the counter block in the IN FIFO */ + CRYP_DataIn(*(uint32_t*)(ctraddr)); + ctraddr+=4; + CRYP_DataIn(*(uint32_t*)(ctraddr)); + ctraddr+=4; + CRYP_DataIn(*(uint32_t*)(ctraddr)); + ctraddr+=4; + /* Reset bit 0 (after 8-bit swap) is equivalent to reset bit 24 (before 8-bit swap) */ + CRYP_DataIn(*(uint32_t*)(ctraddr) & 0xfeffffff); + + /* Wait until the OFNE flag is reset */ + while(CRYP_GetFlagStatus(CRYP_FLAG_OFNE) == RESET) + { + } + + /* Read the Auth TAG in the IN FIFO */ + temptag[0] = CRYP_DataOut(); + temptag[1] = CRYP_DataOut(); + temptag[2] = CRYP_DataOut(); + temptag[3] = CRYP_DataOut(); + } + /*------------------ AES Decryption ------------------*/ + else /* AES decryption */ + { + /* Flush IN/OUT FIFOs */ + CRYP_FIFOFlush(); + + /* Key Initialisation */ + CRYP_KeyInit(&AES_CRYP_KeyInitStructure); + + /* CRYP Initialization Vectors */ + CRYP_IVInit(&AES_CRYP_IVInitStructure); + + /* Crypto Init for Key preparation for decryption process */ + AES_CRYP_InitStructure.CRYP_AlgoDir = CRYP_AlgoDir_Decrypt; + AES_CRYP_InitStructure.CRYP_AlgoMode = CRYP_AlgoMode_AES_CCM; + AES_CRYP_InitStructure.CRYP_DataType = CRYP_DataType_8b; + CRYP_Init(&AES_CRYP_InitStructure); + + /***************************** Init phase *********************************/ + /* Select init phase */ + CRYP_PhaseConfig(CRYP_Phase_Init); + + b0addr = (uint32_t)blockb0; + /* Write the blockb0 block in the IN FIFO */ + CRYP_DataIn((*(uint32_t*)(b0addr))); + b0addr+=4; + CRYP_DataIn((*(uint32_t*)(b0addr))); + b0addr+=4; + CRYP_DataIn((*(uint32_t*)(b0addr))); + b0addr+=4; + CRYP_DataIn((*(uint32_t*)(b0addr))); + + /* Enable Crypto processor */ + CRYP_Cmd(ENABLE); + + /* Wait for CRYPEN bit to be 0 */ + while(CRYP_GetCmdStatus() == ENABLE) + { + } + + /***************************** header phase *******************************/ + if(headersize != 0) + { + /* Select header phase */ + CRYP_PhaseConfig(CRYP_Phase_Header); + + /* Enable Crypto processor */ + CRYP_Cmd(ENABLE); + + if(CRYP_GetCmdStatus() == DISABLE) + { + /* The CRYP peripheral clock is not enabled or the device doesn't embedd + the CRYP peripheral (please check the device sales type. */ + return(ERROR); + } + + for(loopcounter = 0; (loopcounter < headersize); loopcounter+=16) + { + /* Wait until the IFEM flag is reset */ + while(CRYP_GetFlagStatus(CRYP_FLAG_IFEM) == RESET) + { + } + + /* Write the Input block in the IN FIFO */ + CRYP_DataIn(*(uint32_t*)(headeraddr)); + headeraddr+=4; + CRYP_DataIn(*(uint32_t*)(headeraddr)); + headeraddr+=4; + CRYP_DataIn(*(uint32_t*)(headeraddr)); + headeraddr+=4; + CRYP_DataIn(*(uint32_t*)(headeraddr)); + headeraddr+=4; + } + + /* Wait until the complete message has been processed */ + counter = 0; + do + { + busystatus = CRYP_GetFlagStatus(CRYP_FLAG_BUSY); + counter++; + }while ((counter != AESBUSY_TIMEOUT) && (busystatus != RESET)); + + if (busystatus != RESET) + { + status = ERROR; + } + } + + /**************************** payload phase *******************************/ + if(ILength != 0) + { + /* Select payload phase */ + CRYP_PhaseConfig(CRYP_Phase_Payload); + + /* Enable Crypto processor */ + CRYP_Cmd(ENABLE); + + if(CRYP_GetCmdStatus() == DISABLE) + { + /* The CRYP peripheral clock is not enabled or the device doesn't embedd + the CRYP peripheral (please check the device sales type. */ + return(ERROR); + } + + for(loopcounter = 0; ((loopcounter < ILength) && (status != ERROR)); loopcounter+=16) + { + /* Wait until the IFEM flag is reset */ + while(CRYP_GetFlagStatus(CRYP_FLAG_IFEM) == RESET) + { + } + + /* Write the Input block in the IN FIFO */ + CRYP_DataIn(*(uint32_t*)(inputaddr)); + inputaddr+=4; + CRYP_DataIn(*(uint32_t*)(inputaddr)); + inputaddr+=4; + CRYP_DataIn(*(uint32_t*)(inputaddr)); + inputaddr+=4; + CRYP_DataIn(*(uint32_t*)(inputaddr)); + inputaddr+=4; + + /* Wait until the complete message has been processed */ + counter = 0; + do + { + busystatus = CRYP_GetFlagStatus(CRYP_FLAG_BUSY); + counter++; + }while ((counter != AESBUSY_TIMEOUT) && (busystatus != RESET)); + + if (busystatus != RESET) + { + status = ERROR; + } + else + { + /* Wait until the OFNE flag is reset */ + while(CRYP_GetFlagStatus(CRYP_FLAG_OFNE) == RESET) + { + } + + /* Read the Output block from the Output FIFO */ + *(uint32_t*)(outputaddr) = CRYP_DataOut(); + outputaddr+=4; + *(uint32_t*)(outputaddr) = CRYP_DataOut(); + outputaddr+=4; + *(uint32_t*)(outputaddr) = CRYP_DataOut(); + outputaddr+=4; + *(uint32_t*)(outputaddr) = CRYP_DataOut(); + outputaddr+=4; + } + } + } + + /***************************** final phase ********************************/ + /* Select final phase */ + CRYP_PhaseConfig(CRYP_Phase_Final); + + /* Enable Crypto processor */ + CRYP_Cmd(ENABLE); + + if(CRYP_GetCmdStatus() == DISABLE) + { + /* The CRYP peripheral clock is not enabled or the device doesn't embedd + the CRYP peripheral (please check the device sales type. */ + return(ERROR); + } + + ctraddr = (uint32_t)ctr; + /* Write the counter block in the IN FIFO */ + CRYP_DataIn(*(uint32_t*)(ctraddr)); + ctraddr+=4; + CRYP_DataIn(*(uint32_t*)(ctraddr)); + ctraddr+=4; + CRYP_DataIn(*(uint32_t*)(ctraddr)); + ctraddr+=4; + /* Reset bit 0 (after 8-bit swap) is equivalent to reset bit 24 (before 8-bit swap) */ + CRYP_DataIn(*(uint32_t*)(ctraddr) & 0xfeffffff); + + /* Wait until the OFNE flag is reset */ + while(CRYP_GetFlagStatus(CRYP_FLAG_OFNE) == RESET) + { + } + + /* Read the Authentaication TAG (MAC) in the IN FIFO */ + temptag[0] = CRYP_DataOut(); + temptag[1] = CRYP_DataOut(); + temptag[2] = CRYP_DataOut(); + temptag[3] = CRYP_DataOut(); + } + + /* Copy temporary authentication TAG in user TAG buffer */ + for(loopcounter = 0; (loopcounter < TAGSize); loopcounter++) + { + /* Set the authentication TAG buffer */ + *((uint8_t*)tagaddr+loopcounter) = *((uint8_t*)temptag+loopcounter); + } + + /* Disable Crypto */ + CRYP_Cmd(DISABLE); + + return status; +} + /** * @} */ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp_des.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp_des.c index ba46597b..04d5e95a 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp_des.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_cryp_des.c @@ -2,33 +2,32 @@ ****************************************************************************** * @file stm32f4xx_cryp_des.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides high level functions to encrypt and decrypt an * input message using DES in ECB/CBC modes. * It uses the stm32f4xx_cryp.c/.h drivers to access the STM32F4xx CRYP * peripheral. * - * @verbatim - * - * =================================================================== - * How to use this driver - * =================================================================== - * 1. Enable The CRYP controller clock using - * RCC_AHB2PeriphClockCmd(RCC_AHB2Periph_CRYP, ENABLE); function. - * - * 2. Encrypt and decrypt using DES in ECB Mode using CRYP_DES_ECB() - * function. - * - * 3. Encrypt and decrypt using DES in CBC Mode using CRYP_DES_CBC() - * function. - * - * @endverbatim +@verbatim + + =================================================================== + ##### How to use this driver ##### + =================================================================== + [..] + (#) Enable The CRYP controller clock using + RCC_AHB2PeriphClockCmd(RCC_AHB2Periph_CRYP, ENABLE); function. + + (#) Encrypt and decrypt using DES in ECB Mode using CRYP_DES_ECB() function. + + (#) Encrypt and decrypt using DES in CBC Mode using CRYP_DES_CBC() function. + +@endverbatim * ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -77,7 +76,7 @@ * @verbatim =============================================================================== - High Level DES functions + ##### High Level DES functions ##### =============================================================================== @endverbatim * @{ @@ -139,6 +138,12 @@ ErrorStatus CRYP_DES_ECB(uint8_t Mode, uint8_t Key[8], uint8_t *Input, /* Enable Crypto processor */ CRYP_Cmd(ENABLE); + if(CRYP_GetCmdStatus() == DISABLE) + { + /* The CRYP peripheral clock is not enabled or the device doesn't embedd + the CRYP peripheral (please check the device sales type. */ + return(ERROR); + } for(i=0; ((i
© COPYRIGHT 2012 STMicroelectronics
+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -77,10 +76,9 @@ * @verbatim =============================================================================== - High Level TDES functions + ##### High Level TDES functions ##### =============================================================================== - @endverbatim * @{ */ @@ -149,6 +147,12 @@ ErrorStatus CRYP_TDES_ECB(uint8_t Mode, uint8_t Key[24], uint8_t *Input, /* Enable Crypto processor */ CRYP_Cmd(ENABLE); + if(CRYP_GetCmdStatus() == DISABLE) + { + /* The CRYP peripheral clock is not enabled or the device doesn't embedd + the CRYP peripheral (please check the device sales type. */ + return(ERROR); + } for(i=0; ((i
© COPYRIGHT 2012 STMicroelectronics
+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -116,7 +123,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - ****************************************************************************** + ****************************************************************************** */ @@ -165,7 +172,7 @@ * @verbatim =============================================================================== - DAC channels configuration: trigger, output buffer, data format + ##### DAC channels configuration: trigger, output buffer, data format ##### =============================================================================== @endverbatim @@ -477,7 +484,7 @@ uint16_t DAC_GetDataOutputValue(uint32_t DAC_Channel) * @verbatim =============================================================================== - DMA management functions + ##### DMA management functions ##### =============================================================================== @endverbatim @@ -526,7 +533,7 @@ void DAC_DMACmd(uint32_t DAC_Channel, FunctionalState NewState) * @verbatim =============================================================================== - Interrupts and flags management functions + ##### Interrupts and flags management functions ##### =============================================================================== @endverbatim diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dbgmcu.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dbgmcu.c index 907886ab..4cc691f4 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dbgmcu.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dbgmcu.c @@ -2,13 +2,13 @@ ****************************************************************************** * @file stm32f4xx_dbgmcu.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides all the DBGMCU firmware functions. ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dcmi.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dcmi.c index e43c6662..0993dd6a 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dcmi.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dcmi.c @@ -2,72 +2,70 @@ ****************************************************************************** * @file stm32f4xx_dcmi.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the DCMI peripheral: - * - Initialization and Configuration - * - Image capture functions - * - Interrupts and flags management + * + Initialization and Configuration + * + Image capture functions + * + Interrupts and flags management * - * @verbatim - * - * - * =================================================================== - * How to use this driver - * =================================================================== - * - * The sequence below describes how to use this driver to capture image - * from a camera module connected to the DCMI Interface. - * This sequence does not take into account the configuration of the - * camera module, which should be made before to configure and enable - * the DCMI to capture images. - * - * 1. Enable the clock for the DCMI and associated GPIOs using the following functions: - * RCC_AHB2PeriphClockCmd(RCC_AHB2Periph_DCMI, ENABLE); - * RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOx, ENABLE); - * - * 2. DCMI pins configuration - * - Connect the involved DCMI pins to AF13 using the following function - * GPIO_PinAFConfig(GPIOx, GPIO_PinSourcex, GPIO_AF_DCMI); - * - Configure these DCMI pins in alternate function mode by calling the function - * GPIO_Init(); - * - * 3. Declare a DCMI_InitTypeDef structure, for example: - * DCMI_InitTypeDef DCMI_InitStructure; - * and fill the DCMI_InitStructure variable with the allowed values - * of the structure member. - * - * 4. Initialize the DCMI interface by calling the function - * DCMI_Init(&DCMI_InitStructure); - * - * 5. Configure the DMA2_Stream1 channel1 to transfer Data from DCMI DR - * register to the destination memory buffer. - * - * 6. Enable DCMI interface using the function - * DCMI_Cmd(ENABLE); - * - * 7. Start the image capture using the function - * DCMI_CaptureCmd(ENABLE); - * - * 8. At this stage the DCMI interface waits for the first start of frame, - * then a DMA request is generated continuously/once (depending on the - * mode used, Continuous/Snapshot) to transfer the received data into - * the destination memory. - * - * @note If you need to capture only a rectangular window from the received - * image, you have to use the DCMI_CROPConfig() function to configure - * the coordinates and size of the window to be captured, then enable - * the Crop feature using DCMI_CROPCmd(ENABLE); - * In this case, the Crop configuration should be made before to enable - * and start the DCMI interface. - * - * @endverbatim - * + @verbatim + =============================================================================== + ##### How to use this driver ##### + =============================================================================== + [..] + The sequence below describes how to use this driver to capture image + from a camera module connected to the DCMI Interface. + This sequence does not take into account the configuration of the + camera module, which should be made before to configure and enable + the DCMI to capture images. + + (#) Enable the clock for the DCMI and associated GPIOs using the following + functions: + RCC_AHB2PeriphClockCmd(RCC_AHB2Periph_DCMI, ENABLE); + RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOx, ENABLE); + + (#) DCMI pins configuration + (++) Connect the involved DCMI pins to AF13 using the following function + GPIO_PinAFConfig(GPIOx, GPIO_PinSourcex, GPIO_AF_DCMI); + (++) Configure these DCMI pins in alternate function mode by calling + the function GPIO_Init(); + + (#) Declare a DCMI_InitTypeDef structure, for example: + DCMI_InitTypeDef DCMI_InitStructure; + and fill the DCMI_InitStructure variable with the allowed values + of the structure member. + + (#) Initialize the DCMI interface by calling the function + DCMI_Init(&DCMI_InitStructure); + + (#) Configure the DMA2_Stream1 channel1 to transfer Data from DCMI DR + register to the destination memory buffer. + + (#) Enable DCMI interface using the function + DCMI_Cmd(ENABLE); + + (#) Start the image capture using the function + DCMI_CaptureCmd(ENABLE); + + (#) At this stage the DCMI interface waits for the first start of frame, + then a DMA request is generated continuously/once (depending on the + mode used, Continuous/Snapshot) to transfer the received data into + the destination memory. + + -@- If you need to capture only a rectangular window from the received + image, you have to use the DCMI_CROPConfig() function to configure + the coordinates and size of the window to be captured, then enable + the Crop feature using DCMI_CROPCmd(ENABLE); + In this case, the Crop configuration should be made before to enable + and start the DCMI interface. + + @endverbatim ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -113,7 +111,7 @@ * @verbatim =============================================================================== - Initialization and Configuration functions + ##### Initialization and Configuration functions ##### =============================================================================== @endverbatim @@ -285,7 +283,7 @@ void DCMI_JPEGCmd(FunctionalState NewState) * @verbatim =============================================================================== - Image capture functions + ##### Image capture functions ##### =============================================================================== @endverbatim @@ -356,7 +354,7 @@ uint32_t DCMI_ReadData(void) * @verbatim =============================================================================== - Interrupts and flags management functions + ##### Interrupts and flags management functions ##### =============================================================================== @endverbatim diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dma.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dma.c index 3392b12d..046f7950 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dma.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dma.c @@ -2,106 +2,108 @@ ****************************************************************************** * @file stm32f4xx_dma.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the Direct Memory Access controller (DMA): - * - Initialization and Configuration - * - Data Counter - * - Double Buffer mode configuration and command - * - Interrupts and flags management + * + Initialization and Configuration + * + Data Counter + * + Double Buffer mode configuration and command + * + Interrupts and flags management * - * @verbatim - * - * =================================================================== - * How to use this driver - * =================================================================== - * 1. Enable The DMA controller clock using RCC_AHB1PeriphResetCmd(RCC_AHB1Periph_DMA1, ENABLE) - * function for DMA1 or using RCC_AHB1PeriphResetCmd(RCC_AHB1Periph_DMA2, ENABLE) - * function for DMA2. - * - * 2. Enable and configure the peripheral to be connected to the DMA Stream - * (except for internal SRAM / FLASH memories: no initialization is - * necessary). - * - * 3. For a given Stream, program the required configuration through following parameters: - * Source and Destination addresses, Transfer Direction, Transfer size, Source and Destination - * data formats, Circular or Normal mode, Stream Priority level, Source and Destination - * Incrementation mode, FIFO mode and its Threshold (if needed), Burst mode for Source and/or - * Destination (if needed) using the DMA_Init() function. - * To avoid filling un-nesecessary fields, you can call DMA_StructInit() function - * to initialize a given structure with default values (reset values), the modify - * only necessary fields (ie. Source and Destination addresses, Transfer size and Data Formats). - * - * 4. Enable the NVIC and the corresponding interrupt(s) using the function - * DMA_ITConfig() if you need to use DMA interrupts. - * - * 5. Optionally, if the Circular mode is enabled, you can use the Double buffer mode by configuring - * the second Memory address and the first Memory to be used through the function - * DMA_DoubleBufferModeConfig(). Then enable the Double buffer mode through the function - * DMA_DoubleBufferModeCmd(). These operations must be done before step 6. - * - * 6. Enable the DMA stream using the DMA_Cmd() function. - * - * 7. Activate the needed Stream Request using PPP_DMACmd() function for - * any PPP peripheral except internal SRAM and FLASH (ie. SPI, USART ...) - * The function allowing this operation is provided in each PPP peripheral - * driver (ie. SPI_DMACmd for SPI peripheral). - * Once the Stream is enabled, it is not possible to modify its configuration - * unless the stream is stopped and disabled. - * After enabling the Stream, it is advised to monitor the EN bit status using - * the function DMA_GetCmdStatus(). In case of configuration errors or bus errors - * this bit will remain reset and all transfers on this Stream will remain on hold. - * - * 8. Optionally, you can configure the number of data to be transferred - * when the Stream is disabled (ie. after each Transfer Complete event - * or when a Transfer Error occurs) using the function DMA_SetCurrDataCounter(). - * And you can get the number of remaining data to be transferred using - * the function DMA_GetCurrDataCounter() at run time (when the DMA Stream is - * enabled and running). - * - * 9. To control DMA events you can use one of the following - * two methods: - * a- Check on DMA Stream flags using the function DMA_GetFlagStatus(). - * b- Use DMA interrupts through the function DMA_ITConfig() at initialization - * phase and DMA_GetITStatus() function into interrupt routines in - * communication phase. - * After checking on a flag you should clear it using DMA_ClearFlag() - * function. And after checking on an interrupt event you should - * clear it using DMA_ClearITPendingBit() function. - * - * 10. Optionally, if Circular mode and Double Buffer mode are enabled, you can modify - * the Memory Addresses using the function DMA_MemoryTargetConfig(). Make sure that - * the Memory Address to be modified is not the one currently in use by DMA Stream. - * This condition can be monitored using the function DMA_GetCurrentMemoryTarget(). - * - * 11. Optionally, Pause-Resume operations may be performed: - * The DMA_Cmd() function may be used to perform Pause-Resume operation. When a - * transfer is ongoing, calling this function to disable the Stream will cause the - * transfer to be paused. All configuration registers and the number of remaining - * data will be preserved. When calling again this function to re-enable the Stream, - * the transfer will be resumed from the point where it was paused. - * - * @note Memory-to-Memory transfer is possible by setting the address of the memory into - * the Peripheral registers. In this mode, Circular mode and Double Buffer mode - * are not allowed. - * - * @note The FIFO is used mainly to reduce bus usage and to allow data packing/unpacking: it is - * possible to set different Data Sizes for the Peripheral and the Memory (ie. you can set - * Half-Word data size for the peripheral to access its data register and set Word data size - * for the Memory to gain in access time. Each two Half-words will be packed and written in - * a single access to a Word in the Memory). - * - * @note When FIFO is disabled, it is not allowed to configure different Data Sizes for Source - * and Destination. In this case the Peripheral Data Size will be applied to both Source - * and Destination. - * - * @endverbatim - * + @verbatim + =============================================================================== + ##### How to use this driver ##### + =============================================================================== + [..] + (#) Enable The DMA controller clock using RCC_AHB1PeriphResetCmd(RCC_AHB1Periph_DMA1, ENABLE) + function for DMA1 or using RCC_AHB1PeriphResetCmd(RCC_AHB1Periph_DMA2, ENABLE) + function for DMA2. + + (#) Enable and configure the peripheral to be connected to the DMA Stream + (except for internal SRAM / FLASH memories: no initialization is + necessary). + + (#) For a given Stream, program the required configuration through following parameters: + Source and Destination addresses, Transfer Direction, Transfer size, Source and Destination + data formats, Circular or Normal mode, Stream Priority level, Source and Destination + Incrementation mode, FIFO mode and its Threshold (if needed), Burst + mode for Source and/or Destination (if needed) using the DMA_Init() function. + To avoid filling unneccessary fields, you can call DMA_StructInit() function + to initialize a given structure with default values (reset values), the modify + only necessary fields + (ie. Source and Destination addresses, Transfer size and Data Formats). + + (#) Enable the NVIC and the corresponding interrupt(s) using the function + DMA_ITConfig() if you need to use DMA interrupts. + + (#) Optionally, if the Circular mode is enabled, you can use the Double buffer mode by configuring + the second Memory address and the first Memory to be used through the function + DMA_DoubleBufferModeConfig(). Then enable the Double buffer mode through the function + DMA_DoubleBufferModeCmd(). These operations must be done before step 6. + + (#) Enable the DMA stream using the DMA_Cmd() function. + + (#) Activate the needed Stream Request using PPP_DMACmd() function for + any PPP peripheral except internal SRAM and FLASH (ie. SPI, USART ...) + The function allowing this operation is provided in each PPP peripheral + driver (ie. SPI_DMACmd for SPI peripheral). + Once the Stream is enabled, it is not possible to modify its configuration + unless the stream is stopped and disabled. + After enabling the Stream, it is advised to monitor the EN bit status using + the function DMA_GetCmdStatus(). In case of configuration errors or bus errors + this bit will remain reset and all transfers on this Stream will remain on hold. + + (#) Optionally, you can configure the number of data to be transferred + when the Stream is disabled (ie. after each Transfer Complete event + or when a Transfer Error occurs) using the function DMA_SetCurrDataCounter(). + And you can get the number of remaining data to be transferred using + the function DMA_GetCurrDataCounter() at run time (when the DMA Stream is + enabled and running). + + (#) To control DMA events you can use one of the following two methods: + (##) Check on DMA Stream flags using the function DMA_GetFlagStatus(). + (##) Use DMA interrupts through the function DMA_ITConfig() at initialization + phase and DMA_GetITStatus() function into interrupt routines in + communication phase. + [..] + After checking on a flag you should clear it using DMA_ClearFlag() + function. And after checking on an interrupt event you should + clear it using DMA_ClearITPendingBit() function. + + (#) Optionally, if Circular mode and Double Buffer mode are enabled, you can modify + the Memory Addresses using the function DMA_MemoryTargetConfig(). Make sure that + the Memory Address to be modified is not the one currently in use by DMA Stream. + This condition can be monitored using the function DMA_GetCurrentMemoryTarget(). + + (#) Optionally, Pause-Resume operations may be performed: + The DMA_Cmd() function may be used to perform Pause-Resume operation. + When a transfer is ongoing, calling this function to disable the + Stream will cause the transfer to be paused. All configuration registers + and the number of remaining data will be preserved. When calling again + this function to re-enable the Stream, the transfer will be resumed from + the point where it was paused. + + -@- Memory-to-Memory transfer is possible by setting the address of the memory into + the Peripheral registers. In this mode, Circular mode and Double Buffer mode + are not allowed. + + -@- The FIFO is used mainly to reduce bus usage and to allow data + packing/unpacking: it is possible to set different Data Sizes for + the Peripheral and the Memory (ie. you can set Half-Word data size + for the peripheral to access its data register and set Word data size + for the Memory to gain in access time. Each two Half-words will be + packed and written in a single access to a Word in the Memory). + + -@- When FIFO is disabled, it is not allowed to configure different + Data Sizes for Source and Destination. In this case the Peripheral + Data Size will be applied to both Source and Destination. + + @endverbatim ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -115,7 +117,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - ****************************************************************************** + ****************************************************************************** */ /* Includes ------------------------------------------------------------------*/ @@ -168,18 +170,18 @@ * @verbatim =============================================================================== - Initialization and Configuration functions + ##### Initialization and Configuration functions ##### =============================================================================== - - This subsection provides functions allowing to initialize the DMA Stream source - and destination addresses, incrementation and data sizes, transfer direction, - buffer size, circular/normal mode selection, memory-to-memory mode selection - and Stream priority value. - - The DMA_Init() function follows the DMA configuration procedures as described in - reference manual (RM0090) except the first point: waiting on EN bit to be reset. - This condition should be checked by user application using the function DMA_GetCmdStatus() - before calling the DMA_Init() function. + [..] + This subsection provides functions allowing to initialize the DMA Stream source + and destination addresses, incrementation and data sizes, transfer direction, + buffer size, circular/normal mode selection, memory-to-memory mode selection + and Stream priority value. + [..] + The DMA_Init() function follows the DMA configuration procedures as described in + reference manual (RM0090) except the first point: waiting on EN bit to be reset. + This condition should be checked by user application using the function DMA_GetCmdStatus() + before calling the DMA_Init() function. @endverbatim * @{ @@ -572,37 +574,35 @@ void DMA_FlowControllerConfig(DMA_Stream_TypeDef* DMAy_Streamx, uint32_t DMA_Flo * @verbatim =============================================================================== - Data Counter functions + ##### Data Counter functions ##### =============================================================================== - - This subsection provides function allowing to configure and read the buffer size - (number of data to be transferred). - - The DMA data counter can be written only when the DMA Stream is disabled - (ie. after transfer complete event). - - The following function can be used to write the Stream data counter value: - - void DMA_SetCurrDataCounter(DMA_Stream_TypeDef* DMAy_Streamx, uint16_t Counter); - -@note It is advised to use this function rather than DMA_Init() in situations where - only the Data buffer needs to be reloaded. - -@note If the Source and Destination Data Sizes are different, then the value written in - data counter, expressing the number of transfers, is relative to the number of - transfers from the Peripheral point of view. - ie. If Memory data size is Word, Peripheral data size is Half-Words, then the value - to be configured in the data counter is the number of Half-Words to be transferred - from/to the peripheral. - - The DMA data counter can be read to indicate the number of remaining transfers for - the relative DMA Stream. This counter is decremented at the end of each data - transfer and when the transfer is complete: - - If Normal mode is selected: the counter is set to 0. - - If Circular mode is selected: the counter is reloaded with the initial value - (configured before enabling the DMA Stream) - - The following function can be used to read the Stream data counter value: - - uint16_t DMA_GetCurrDataCounter(DMA_Stream_TypeDef* DMAy_Streamx); + [..] + This subsection provides function allowing to configure and read the buffer size + (number of data to be transferred). + [..] + The DMA data counter can be written only when the DMA Stream is disabled + (ie. after transfer complete event). + [..] + The following function can be used to write the Stream data counter value: + (+) void DMA_SetCurrDataCounter(DMA_Stream_TypeDef* DMAy_Streamx, uint16_t Counter); + -@- It is advised to use this function rather than DMA_Init() in situations + where only the Data buffer needs to be reloaded. + -@- If the Source and Destination Data Sizes are different, then the value + written in data counter, expressing the number of transfers, is relative + to the number of transfers from the Peripheral point of view. + ie. If Memory data size is Word, Peripheral data size is Half-Words, + then the value to be configured in the data counter is the number + of Half-Words to be transferred from/to the peripheral. + [..] + The DMA data counter can be read to indicate the number of remaining transfers for + the relative DMA Stream. This counter is decremented at the end of each data + transfer and when the transfer is complete: + (+) If Normal mode is selected: the counter is set to 0. + (+) If Circular mode is selected: the counter is reloaded with the initial value + (configured before enabling the DMA Stream) + [..] + The following function can be used to read the Stream data counter value: + (+) uint16_t DMA_GetCurrDataCounter(DMA_Stream_TypeDef* DMAy_Streamx); @endverbatim * @{ @@ -661,45 +661,51 @@ uint16_t DMA_GetCurrDataCounter(DMA_Stream_TypeDef* DMAy_Streamx) * @verbatim =============================================================================== - Double Buffer mode functions + ##### Double Buffer mode functions ##### =============================================================================== - - This subsection provides function allowing to configure and control the double - buffer mode parameters. - - The Double Buffer mode can be used only when Circular mode is enabled. - The Double Buffer mode cannot be used when transferring data from Memory to Memory. - - The Double Buffer mode allows to set two different Memory addresses from/to which - the DMA controller will access alternatively (after completing transfer to/from target - memory 0, it will start transfer to/from target memory 1). - This allows to reduce software overhead for double buffering and reduce the CPU - access time. - - Two functions must be called before calling the DMA_Init() function: - - void DMA_DoubleBufferModeConfig(DMA_Stream_TypeDef* DMAy_Streamx, uint32_t Memory1BaseAddr, - uint32_t DMA_CurrentMemory); - - void DMA_DoubleBufferModeCmd(DMA_Stream_TypeDef* DMAy_Streamx, FunctionalState NewState); - - DMA_DoubleBufferModeConfig() is called to configure the Memory 1 base address and the first - Memory target from/to which the transfer will start after enabling the DMA Stream. - Then DMA_DoubleBufferModeCmd() must be called to enable the Double Buffer mode (or disable - it when it should not be used). + [..] + This subsection provides function allowing to configure and control the double + buffer mode parameters. + + [..] + The Double Buffer mode can be used only when Circular mode is enabled. + The Double Buffer mode cannot be used when transferring data from Memory to Memory. + + [..] + The Double Buffer mode allows to set two different Memory addresses from/to which + the DMA controller will access alternatively (after completing transfer to/from + target memory 0, it will start transfer to/from target memory 1). + This allows to reduce software overhead for double buffering and reduce the CPU + access time. + + [..] + Two functions must be called before calling the DMA_Init() function: + (+) void DMA_DoubleBufferModeConfig(DMA_Stream_TypeDef* DMAy_Streamx, + uint32_t Memory1BaseAddr, uint32_t DMA_CurrentMemory); + (+) void DMA_DoubleBufferModeCmd(DMA_Stream_TypeDef* DMAy_Streamx, FunctionalState NewState); + + [..] + DMA_DoubleBufferModeConfig() is called to configure the Memory 1 base address + and the first Memory target from/to which the transfer will start after + enabling the DMA Stream. Then DMA_DoubleBufferModeCmd() must be called + to enable the Double Buffer mode (or disable it when it should not be used). - - Two functions can be called dynamically when the transfer is ongoing (or when the DMA Stream is - stopped) to modify on of the target Memories addresses or to check wich Memory target is currently - used: - - void DMA_MemoryTargetConfig(DMA_Stream_TypeDef* DMAy_Streamx, uint32_t MemoryBaseAddr, - uint32_t DMA_MemoryTarget); - - uint32_t DMA_GetCurrentMemoryTarget(DMA_Stream_TypeDef* DMAy_Streamx); - - DMA_MemoryTargetConfig() can be called to modify the base address of one of the two target Memories. - The Memory of which the base address will be modified must not be currently be used by the DMA Stream - (ie. if the DMA Stream is currently transferring from Memory 1 then you can only modify base address - of target Memory 0 and vice versa). - To check this condition, it is recommended to use the function DMA_GetCurrentMemoryTarget() which - returns the index of the Memory target currently in use by the DMA Stream. + [..] + Two functions can be called dynamically when the transfer is ongoing (or when the DMA Stream is + stopped) to modify on of the target Memories addresses or to check wich Memory target is currently + used: + (+) void DMA_MemoryTargetConfig(DMA_Stream_TypeDef* DMAy_Streamx, + uint32_t MemoryBaseAddr, uint32_t DMA_MemoryTarget); + (+) uint32_t DMA_GetCurrentMemoryTarget(DMA_Stream_TypeDef* DMAy_Streamx); + + [..] + DMA_MemoryTargetConfig() can be called to modify the base address of one of + the two target Memories. + The Memory of which the base address will be modified must not be currently + be used by the DMA Stream (ie. if the DMA Stream is currently transferring + from Memory 1 then you can only modify base address of target Memory 0 and vice versa). + To check this condition, it is recommended to use the function DMA_GetCurrentMemoryTarget() which + returns the index of the Memory target currently in use by the DMA Stream. @endverbatim * @{ @@ -848,64 +854,70 @@ uint32_t DMA_GetCurrentMemoryTarget(DMA_Stream_TypeDef* DMAy_Streamx) * @verbatim =============================================================================== - Interrupts and flags management functions + ##### Interrupts and flags management functions ##### =============================================================================== - - This subsection provides functions allowing to - - Check the DMA enable status - - Check the FIFO status - - Configure the DMA Interrupts sources and check or clear the flags or pending bits status. - - 1. DMA Enable status: - After configuring the DMA Stream (DMA_Init() function) and enabling the stream, - it is recommended to check (or wait until) the DMA Stream is effectively enabled. - A Stream may remain disabled if a configuration parameter is wrong. - After disabling a DMA Stream, it is also recommended to check (or wait until) the DMA - Stream is effectively disabled. If a Stream is disabled while a data transfer is ongoing, - the current data will be transferred and the Stream will be effectively disabled only after - this data transfer completion. - To monitor this state it is possible to use the following function: - - FunctionalState DMA_GetCmdStatus(DMA_Stream_TypeDef* DMAy_Streamx); + [..] + This subsection provides functions allowing to + (+) Check the DMA enable status + (+) Check the FIFO status + (+) Configure the DMA Interrupts sources and check or clear the flags or + pending bits status. + + [..] + (#) DMA Enable status: + After configuring the DMA Stream (DMA_Init() function) and enabling + the stream, it is recommended to check (or wait until) the DMA Stream + is effectively enabled. A Stream may remain disabled if a configuration + parameter is wrong. After disabling a DMA Stream, it is also recommended + to check (or wait until) the DMA Stream is effectively disabled. + If a Stream is disabled while a data transfer is ongoing, the current + data will be transferred and the Stream will be effectively disabled + only after this data transfer completion. + To monitor this state it is possible to use the following function: + (++) FunctionalState DMA_GetCmdStatus(DMA_Stream_TypeDef* DMAy_Streamx); - 2. FIFO Status: - It is possible to monitor the FIFO status when a transfer is ongoing using the following - function: - - uint32_t DMA_GetFIFOStatus(DMA_Stream_TypeDef* DMAy_Streamx); + (#) FIFO Status: + It is possible to monitor the FIFO status when a transfer is ongoing + using the following function: + (++) uint32_t DMA_GetFIFOStatus(DMA_Stream_TypeDef* DMAy_Streamx); - 3. DMA Interrupts and Flags: - The user should identify which mode will be used in his application to manage the - DMA controller events: Polling mode or Interrupt mode. + (#) DMA Interrupts and Flags: + The user should identify which mode will be used in his application + to manage the DMA controller events: Polling mode or Interrupt mode. - Polling Mode - ============= + *** Polling Mode *** + ==================== + [..] Each DMA stream can be managed through 4 event Flags: (x : DMA Stream number ) - 1. DMA_FLAG_FEIFx : to indicate that a FIFO Mode Transfer Error event occurred. - 2. DMA_FLAG_DMEIFx : to indicate that a Direct Mode Transfer Error event occurred. - 3. DMA_FLAG_TEIFx : to indicate that a Transfer Error event occurred. - 4. DMA_FLAG_HTIFx : to indicate that a Half-Transfer Complete event occurred. - 5. DMA_FLAG_TCIFx : to indicate that a Transfer Complete event occurred . - - In this Mode it is advised to use the following functions: - - FlagStatus DMA_GetFlagStatus(DMA_Stream_TypeDef* DMAy_Streamx, uint32_t DMA_FLAG); - - void DMA_ClearFlag(DMA_Stream_TypeDef* DMAy_Streamx, uint32_t DMA_FLAG); - - Interrupt Mode - =============== + (#) DMA_FLAG_FEIFx : to indicate that a FIFO Mode Transfer Error event occurred. + (#) DMA_FLAG_DMEIFx : to indicate that a Direct Mode Transfer Error event occurred. + (#) DMA_FLAG_TEIFx : to indicate that a Transfer Error event occurred. + (#) DMA_FLAG_HTIFx : to indicate that a Half-Transfer Complete event occurred. + (#) DMA_FLAG_TCIFx : to indicate that a Transfer Complete event occurred . + [..] + In this Mode it is advised to use the following functions: + (+) FlagStatus DMA_GetFlagStatus(DMA_Stream_TypeDef* DMAy_Streamx, uint32_t DMA_FLAG); + (+) void DMA_ClearFlag(DMA_Stream_TypeDef* DMAy_Streamx, uint32_t DMA_FLAG); + + *** Interrupt Mode *** + ====================== + [..] Each DMA Stream can be managed through 4 Interrupts: - Interrupt Source - ---------------- - 1. DMA_IT_FEIFx : specifies the interrupt source for the FIFO Mode Transfer Error event. - 2. DMA_IT_DMEIFx : specifies the interrupt source for the Direct Mode Transfer Error event. - 3. DMA_IT_TEIFx : specifies the interrupt source for the Transfer Error event. - 4. DMA_IT_HTIFx : specifies the interrupt source for the Half-Transfer Complete event. - 5. DMA_IT_TCIFx : specifies the interrupt source for the a Transfer Complete event. - - In this Mode it is advised to use the following functions: - - void DMA_ITConfig(DMA_Stream_TypeDef* DMAy_Streamx, uint32_t DMA_IT, FunctionalState NewState); - - ITStatus DMA_GetITStatus(DMA_Stream_TypeDef* DMAy_Streamx, uint32_t DMA_IT); - - void DMA_ClearITPendingBit(DMA_Stream_TypeDef* DMAy_Streamx, uint32_t DMA_IT); + *** Interrupt Source *** + ======================== + [..] + (#) DMA_IT_FEIFx : specifies the interrupt source for the FIFO Mode Transfer Error event. + (#) DMA_IT_DMEIFx : specifies the interrupt source for the Direct Mode Transfer Error event. + (#) DMA_IT_TEIFx : specifies the interrupt source for the Transfer Error event. + (#) DMA_IT_HTIFx : specifies the interrupt source for the Half-Transfer Complete event. + (#) DMA_IT_TCIFx : specifies the interrupt source for the a Transfer Complete event. + [..] + In this Mode it is advised to use the following functions: + (+) void DMA_ITConfig(DMA_Stream_TypeDef* DMAy_Streamx, uint32_t DMA_IT, FunctionalState NewState); + (+) ITStatus DMA_GetITStatus(DMA_Stream_TypeDef* DMAy_Streamx, uint32_t DMA_IT); + (+) void DMA_ClearITPendingBit(DMA_Stream_TypeDef* DMAy_Streamx, uint32_t DMA_IT); @endverbatim * @{ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dma2d.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dma2d.c new file mode 100644 index 00000000..6869aab8 --- /dev/null +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_dma2d.c @@ -0,0 +1,784 @@ +/** + ****************************************************************************** + * @file stm32f4xx_dma2d.c + * @author MCD Application Team + * @version V1.4.0 + * @date 04-August-2014 + * @brief This file provides firmware functions to manage the following + * functionalities of the DMA2D controller (DMA2D) peripheral: + * + Initialization and configuration + * + Interrupts and flags management + * + @verbatim + =============================================================================== + ##### How to use this driver ##### + =============================================================================== + [..] + (#) Enable DMA2D clock using + RCC_APB2PeriphResetCmd(RCC_APB2Periph_DMA2D, ENABLE) function. + + (#) Configures DMA2D + (++) transfer mode + (++) pixel format, line_number, pixel_per_line + (++) output memory address + (++) alpha value + (++) output offset + (++) Default color (RGB) + + (#) Configures Foreground or/and background + (++) memory address + (++) alpha value + (++) offset and default color + + (#) Call the DMA2D_Start() to enable the DMA2D controller. + + @endverbatim + + ****************************************************************************** + * @attention + * + *

© COPYRIGHT 2014 STMicroelectronics

+ * + * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); + * You may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.st.com/software_license_agreement_liberty_v2 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32f4xx_dma2d.h" +#include "stm32f4xx_rcc.h" + +/** @addtogroup STM32F4xx_StdPeriph_Driver + * @{ + */ + +/** @defgroup DMA2D + * @brief DMA2D driver modules + * @{ + */ + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/* Private macro -------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private function prototypes -----------------------------------------------*/ +/* Private functions ---------------------------------------------------------*/ + +#define CR_MASK ((uint32_t)0xFFFCE0FC) /* DMA2D CR Mask */ +#define PFCCR_MASK ((uint32_t)0x00FC00C0) /* DMA2D FGPFCCR Mask */ +#define DEAD_MASK ((uint32_t)0xFFFF00FE) /* DMA2D DEAD Mask */ + +/** @defgroup DMA2D_Private_Functions + * @{ + */ + +/** @defgroup DMA2D_Group1 Initialization and Configuration functions + * @brief Initialization and Configuration functions + * +@verbatim + =============================================================================== + ##### Initialization and Configuration functions ##### + =============================================================================== + [..] This section provides functions allowing to: + (+) Initialize and configure the DMA2D + (+) Start/Abort/Suspend Transfer + (+) Initialize, configure and set Foreground and background + (+) configure and enable DeadTime + (+) configure lineWatermark + + +@endverbatim + * @{ + */ + +/** + * @brief Deinitializes the DMA2D peripheral registers to their default reset + * values. + * @param None + * @retval None + */ + +void DMA2D_DeInit(void) +{ + /* Enable DMA2D reset state */ + RCC_AHB1PeriphResetCmd(RCC_AHB1Periph_DMA2D, ENABLE); + /* Release DMA2D from reset state */ + RCC_AHB1PeriphResetCmd(RCC_AHB1Periph_DMA2D, DISABLE); +} + + +/** + * @brief Initializes the DMA2D peripheral according to the specified parameters + * in the DMA2D_InitStruct. + * @note This function can be used only when the DMA2D is disabled. + * @param DMA2D_InitStruct: pointer to a DMA2D_InitTypeDef structure that contains + * the configuration information for the specified DMA2D peripheral. + * @retval None + */ +void DMA2D_Init(DMA2D_InitTypeDef* DMA2D_InitStruct) +{ + + uint32_t outgreen = 0; + uint32_t outred = 0; + uint32_t outalpha = 0; + uint32_t pixline = 0; + + /* Check the parameters */ + assert_param(IS_DMA2D_MODE(DMA2D_InitStruct->DMA2D_Mode)); + assert_param(IS_DMA2D_CMODE(DMA2D_InitStruct->DMA2D_CMode)); + assert_param(IS_DMA2D_OGREEN(DMA2D_InitStruct->DMA2D_OutputGreen)); + assert_param(IS_DMA2D_ORED(DMA2D_InitStruct->DMA2D_OutputRed)); + assert_param(IS_DMA2D_OBLUE(DMA2D_InitStruct->DMA2D_OutputBlue)); + assert_param(IS_DMA2D_OALPHA(DMA2D_InitStruct->DMA2D_OutputAlpha)); + assert_param(IS_DMA2D_OUTPUT_OFFSET(DMA2D_InitStruct->DMA2D_OutputOffset)); + assert_param(IS_DMA2D_LINE(DMA2D_InitStruct->DMA2D_NumberOfLine)); + assert_param(IS_DMA2D_PIXEL(DMA2D_InitStruct->DMA2D_PixelPerLine)); + + /* Configures the DMA2D operation mode */ + DMA2D->CR &= (uint32_t)CR_MASK; + DMA2D->CR |= (DMA2D_InitStruct->DMA2D_Mode); + + /* Configures the color mode of the output image */ + DMA2D->OPFCCR &= ~(uint32_t)DMA2D_OPFCCR_CM; + DMA2D->OPFCCR |= (DMA2D_InitStruct->DMA2D_CMode); + + /* Configures the output color */ + + if (DMA2D_InitStruct->DMA2D_CMode == DMA2D_ARGB8888) + { + outgreen = DMA2D_InitStruct->DMA2D_OutputGreen << 8; + outred = DMA2D_InitStruct->DMA2D_OutputRed << 16; + outalpha = DMA2D_InitStruct->DMA2D_OutputAlpha << 24; + } + else + + if (DMA2D_InitStruct->DMA2D_CMode == DMA2D_RGB888) + { + outgreen = DMA2D_InitStruct->DMA2D_OutputGreen << 8; + outred = DMA2D_InitStruct->DMA2D_OutputRed << 16; + outalpha = (uint32_t)0x00000000; + } + + else + + if (DMA2D_InitStruct->DMA2D_CMode == DMA2D_RGB565) + { + outgreen = DMA2D_InitStruct->DMA2D_OutputGreen << 5; + outred = DMA2D_InitStruct->DMA2D_OutputRed << 11; + outalpha = (uint32_t)0x00000000; + } + + else + + if (DMA2D_InitStruct->DMA2D_CMode == DMA2D_ARGB1555) + { + outgreen = DMA2D_InitStruct->DMA2D_OutputGreen << 5; + outred = DMA2D_InitStruct->DMA2D_OutputRed << 10; + outalpha = DMA2D_InitStruct->DMA2D_OutputAlpha << 15; + } + + else /* DMA2D_CMode = DMA2D_ARGB4444 */ + { + outgreen = DMA2D_InitStruct->DMA2D_OutputGreen << 4; + outred = DMA2D_InitStruct->DMA2D_OutputRed << 8; + outalpha = DMA2D_InitStruct->DMA2D_OutputAlpha << 12; + } + DMA2D->OCOLR |= ((outgreen) | (outred) | (DMA2D_InitStruct->DMA2D_OutputBlue) | (outalpha)); + + /* Configures the output memory address */ + DMA2D->OMAR = (DMA2D_InitStruct->DMA2D_OutputMemoryAdd); + + /* Configure the line Offset */ + DMA2D->OOR &= ~(uint32_t)DMA2D_OOR_LO; + DMA2D->OOR |= (DMA2D_InitStruct->DMA2D_OutputOffset); + + /* Configure the number of line and pixel per line */ + pixline = DMA2D_InitStruct->DMA2D_PixelPerLine << 16; + DMA2D->NLR &= ~(DMA2D_NLR_NL | DMA2D_NLR_PL); + DMA2D->NLR |= ((DMA2D_InitStruct->DMA2D_NumberOfLine) | (pixline)); + +/** + * @brief Fills each DMA2D_InitStruct member with its default value. + * @param DMA2D_InitStruct: pointer to a DMA2D_InitTypeDef structure which will + * be initialized. + * @retval None + */ +} +void DMA2D_StructInit(DMA2D_InitTypeDef* DMA2D_InitStruct) +{ + /* Initialize the transfer mode member */ + DMA2D_InitStruct->DMA2D_Mode = DMA2D_M2M; + + /* Initialize the output color mode members */ + DMA2D_InitStruct->DMA2D_CMode = DMA2D_ARGB8888; + + /* Initialize the alpha and RGB values */ + DMA2D_InitStruct->DMA2D_OutputGreen = 0x00; + DMA2D_InitStruct->DMA2D_OutputBlue = 0x00; + DMA2D_InitStruct->DMA2D_OutputRed = 0x00; + DMA2D_InitStruct->DMA2D_OutputAlpha = 0x00; + + /* Initialize the output memory address */ + DMA2D_InitStruct->DMA2D_OutputMemoryAdd = 0x00; + + /* Initialize the output offset */ + DMA2D_InitStruct->DMA2D_OutputOffset = 0x00; + + /* Initialize the number of line and the number of pixel per line */ + DMA2D_InitStruct->DMA2D_NumberOfLine = 0x00; + DMA2D_InitStruct->DMA2D_PixelPerLine = 0x00; +} + +/** + * @brief Start the DMA2D transfer. + * @param + * @retval None + */ + +void DMA2D_StartTransfer(void) +{ + /* Start DMA2D transfer by setting START bit */ + DMA2D->CR |= (uint32_t)DMA2D_CR_START; +} + +/** + * @brief Aboart the DMA2D transfer. + * @param + * @retval None + */ + +void DMA2D_AbortTransfer(void) +{ + /* Start DMA2D transfer by setting START bit */ + DMA2D->CR |= (uint32_t)DMA2D_CR_ABORT; + +} + +/** + * @brief Stop or continue the DMA2D transfer. + * @param NewState: new state of the DMA2D peripheral. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void DMA2D_Suspend(FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + /* Suspend DMA2D transfer by setting STOP bit */ + DMA2D->CR |= (uint32_t)DMA2D_CR_SUSP; + } + else + { + /* Continue DMA2D transfer by clearing STOP bit */ + DMA2D->CR &= ~(uint32_t)DMA2D_CR_SUSP; + } +} + +/** + * @brief Configures the Foreground according to the specified parameters + * in the DMA2D_FGStruct. + * @note This function can be used only when the transfer is disabled. + * @param DMA2D_FGStruct: pointer to a DMA2D_FGTypeDef structure that contains + * the configuration information for the specified Background. + * @retval None + */ +void DMA2D_FGConfig(DMA2D_FG_InitTypeDef* DMA2D_FG_InitStruct) +{ + + uint32_t fg_clutcolormode = 0; + uint32_t fg_clutsize = 0; + uint32_t fg_alpha_mode = 0; + uint32_t fg_alphavalue = 0; + uint32_t fg_colorgreen = 0; + uint32_t fg_colorred = 0; + + assert_param(IS_DMA2D_FGO(DMA2D_FG_InitStruct->DMA2D_FGO)); + assert_param(IS_DMA2D_FGCM(DMA2D_FG_InitStruct->DMA2D_FGCM)); + assert_param(IS_DMA2D_FG_CLUT_CM(DMA2D_FG_InitStruct->DMA2D_FG_CLUT_CM)); + assert_param(IS_DMA2D_FG_CLUT_SIZE(DMA2D_FG_InitStruct->DMA2D_FG_CLUT_SIZE)); + assert_param(IS_DMA2D_FG_ALPHA_MODE(DMA2D_FG_InitStruct->DMA2D_FGPFC_ALPHA_MODE)); + assert_param(IS_DMA2D_FG_ALPHA_VALUE(DMA2D_FG_InitStruct->DMA2D_FGPFC_ALPHA_VALUE)); + assert_param(IS_DMA2D_FGC_BLUE(DMA2D_FG_InitStruct->DMA2D_FGC_BLUE)); + assert_param(IS_DMA2D_FGC_GREEN(DMA2D_FG_InitStruct->DMA2D_FGC_GREEN)); + assert_param(IS_DMA2D_FGC_RED(DMA2D_FG_InitStruct->DMA2D_FGC_RED)); + + /* Configures the FG memory address */ + DMA2D->FGMAR = (DMA2D_FG_InitStruct->DMA2D_FGMA); + + /* Configures the FG offset */ + DMA2D->FGOR &= ~(uint32_t)DMA2D_FGOR_LO; + DMA2D->FGOR |= (DMA2D_FG_InitStruct->DMA2D_FGO); + + /* Configures foreground Pixel Format Convertor */ + DMA2D->FGPFCCR &= (uint32_t)PFCCR_MASK; + fg_clutcolormode = DMA2D_FG_InitStruct->DMA2D_FG_CLUT_CM << 4; + fg_clutsize = DMA2D_FG_InitStruct->DMA2D_FG_CLUT_SIZE << 8; + fg_alpha_mode = DMA2D_FG_InitStruct->DMA2D_FGPFC_ALPHA_MODE << 16; + fg_alphavalue = DMA2D_FG_InitStruct->DMA2D_FGPFC_ALPHA_VALUE << 24; + DMA2D->FGPFCCR |= (DMA2D_FG_InitStruct->DMA2D_FGCM | fg_clutcolormode | fg_clutsize | \ + fg_alpha_mode | fg_alphavalue); + + /* Configures foreground color */ + DMA2D->FGCOLR &= ~(DMA2D_FGCOLR_BLUE | DMA2D_FGCOLR_GREEN | DMA2D_FGCOLR_RED); + fg_colorgreen = DMA2D_FG_InitStruct->DMA2D_FGC_GREEN << 8; + fg_colorred = DMA2D_FG_InitStruct->DMA2D_FGC_RED << 16; + DMA2D->FGCOLR |= (DMA2D_FG_InitStruct->DMA2D_FGC_BLUE | fg_colorgreen | fg_colorred); + + /* Configures foreground CLUT memory address */ + DMA2D->FGCMAR = DMA2D_FG_InitStruct->DMA2D_FGCMAR; +} + +/** + * @brief Fills each DMA2D_FGStruct member with its default value. + * @param DMA2D_FGStruct: pointer to a DMA2D_FGTypeDef structure which will + * be initialized. + * @retval None + */ +void DMA2D_FG_StructInit(DMA2D_FG_InitTypeDef* DMA2D_FG_InitStruct) +{ + /*!< Initialize the DMA2D foreground memory address */ + DMA2D_FG_InitStruct->DMA2D_FGMA = 0x00; + + /*!< Initialize the DMA2D foreground offset */ + DMA2D_FG_InitStruct->DMA2D_FGO = 0x00; + + /*!< Initialize the DMA2D foreground color mode */ + DMA2D_FG_InitStruct->DMA2D_FGCM = CM_ARGB8888; + + /*!< Initialize the DMA2D foreground CLUT color mode */ + DMA2D_FG_InitStruct->DMA2D_FG_CLUT_CM = CLUT_CM_ARGB8888; + + /*!< Initialize the DMA2D foreground CLUT size */ + DMA2D_FG_InitStruct->DMA2D_FG_CLUT_SIZE = 0x00; + + /*!< Initialize the DMA2D foreground alpha mode */ + DMA2D_FG_InitStruct->DMA2D_FGPFC_ALPHA_MODE = NO_MODIF_ALPHA_VALUE; + + /*!< Initialize the DMA2D foreground alpha value */ + DMA2D_FG_InitStruct->DMA2D_FGPFC_ALPHA_VALUE = 0x00; + + /*!< Initialize the DMA2D foreground blue value */ + DMA2D_FG_InitStruct->DMA2D_FGC_BLUE = 0x00; + + /*!< Initialize the DMA2D foreground green value */ + DMA2D_FG_InitStruct->DMA2D_FGC_GREEN = 0x00; + + /*!< Initialize the DMA2D foreground red value */ + DMA2D_FG_InitStruct->DMA2D_FGC_RED = 0x00; + + /*!< Initialize the DMA2D foreground CLUT memory address */ + DMA2D_FG_InitStruct->DMA2D_FGCMAR = 0x00; +} + + +/** + * @brief Configures the Background according to the specified parameters + * in the DMA2D_BGStruct. + * @note This function can be used only when the transfer is disabled. + * @param DMA2D_BGStruct: pointer to a DMA2D_BGTypeDef structure that contains + * the configuration information for the specified Background. + * @retval None + */ +void DMA2D_BGConfig(DMA2D_BG_InitTypeDef* DMA2D_BG_InitStruct) +{ + + uint32_t bg_clutcolormode = 0; + uint32_t bg_clutsize = 0; + uint32_t bg_alpha_mode = 0; + uint32_t bg_alphavalue = 0; + uint32_t bg_colorgreen = 0; + uint32_t bg_colorred = 0; + + assert_param(IS_DMA2D_BGO(DMA2D_BG_InitStruct->DMA2D_BGO)); + assert_param(IS_DMA2D_BGCM(DMA2D_BG_InitStruct->DMA2D_BGCM)); + assert_param(IS_DMA2D_BG_CLUT_CM(DMA2D_BG_InitStruct->DMA2D_BG_CLUT_CM)); + assert_param(IS_DMA2D_BG_CLUT_SIZE(DMA2D_BG_InitStruct->DMA2D_BG_CLUT_SIZE)); + assert_param(IS_DMA2D_BG_ALPHA_MODE(DMA2D_BG_InitStruct->DMA2D_BGPFC_ALPHA_MODE)); + assert_param(IS_DMA2D_BG_ALPHA_VALUE(DMA2D_BG_InitStruct->DMA2D_BGPFC_ALPHA_VALUE)); + assert_param(IS_DMA2D_BGC_BLUE(DMA2D_BG_InitStruct->DMA2D_BGC_BLUE)); + assert_param(IS_DMA2D_BGC_GREEN(DMA2D_BG_InitStruct->DMA2D_BGC_GREEN)); + assert_param(IS_DMA2D_BGC_RED(DMA2D_BG_InitStruct->DMA2D_BGC_RED)); + + /* Configures the BG memory address */ + DMA2D->BGMAR = (DMA2D_BG_InitStruct->DMA2D_BGMA); + + /* Configures the BG offset */ + DMA2D->BGOR &= ~(uint32_t)DMA2D_BGOR_LO; + DMA2D->BGOR |= (DMA2D_BG_InitStruct->DMA2D_BGO); + + /* Configures background Pixel Format Convertor */ + DMA2D->BGPFCCR &= (uint32_t)PFCCR_MASK; + bg_clutcolormode = DMA2D_BG_InitStruct->DMA2D_BG_CLUT_CM << 4; + bg_clutsize = DMA2D_BG_InitStruct->DMA2D_BG_CLUT_SIZE << 8; + bg_alpha_mode = DMA2D_BG_InitStruct->DMA2D_BGPFC_ALPHA_MODE << 16; + bg_alphavalue = DMA2D_BG_InitStruct->DMA2D_BGPFC_ALPHA_VALUE << 24; + DMA2D->BGPFCCR |= (DMA2D_BG_InitStruct->DMA2D_BGCM | bg_clutcolormode | bg_clutsize | \ + bg_alpha_mode | bg_alphavalue); + + /* Configures background color */ + DMA2D->BGCOLR &= ~(DMA2D_BGCOLR_BLUE | DMA2D_BGCOLR_GREEN | DMA2D_BGCOLR_RED); + bg_colorgreen = DMA2D_BG_InitStruct->DMA2D_BGC_GREEN << 8; + bg_colorred = DMA2D_BG_InitStruct->DMA2D_BGC_RED << 16; + DMA2D->BGCOLR |= (DMA2D_BG_InitStruct->DMA2D_BGC_BLUE | bg_colorgreen | bg_colorred); + + /* Configures background CLUT memory address */ + DMA2D->BGCMAR = DMA2D_BG_InitStruct->DMA2D_BGCMAR; + +} + +/** + * @brief Fills each DMA2D_BGStruct member with its default value. + * @param DMA2D_BGStruct: pointer to a DMA2D_BGTypeDef structure which will + * be initialized. + * @retval None + */ +void DMA2D_BG_StructInit(DMA2D_BG_InitTypeDef* DMA2D_BG_InitStruct) +{ + /*!< Initialize the DMA2D background memory address */ + DMA2D_BG_InitStruct->DMA2D_BGMA = 0x00; + + /*!< Initialize the DMA2D background offset */ + DMA2D_BG_InitStruct->DMA2D_BGO = 0x00; + + /*!< Initialize the DMA2D background color mode */ + DMA2D_BG_InitStruct->DMA2D_BGCM = CM_ARGB8888; + + /*!< Initialize the DMA2D background CLUT color mode */ + DMA2D_BG_InitStruct->DMA2D_BG_CLUT_CM = CLUT_CM_ARGB8888; + + /*!< Initialize the DMA2D background CLUT size */ + DMA2D_BG_InitStruct->DMA2D_BG_CLUT_SIZE = 0x00; + + /*!< Initialize the DMA2D background alpha mode */ + DMA2D_BG_InitStruct->DMA2D_BGPFC_ALPHA_MODE = NO_MODIF_ALPHA_VALUE; + + /*!< Initialize the DMA2D background alpha value */ + DMA2D_BG_InitStruct->DMA2D_BGPFC_ALPHA_VALUE = 0x00; + + /*!< Initialize the DMA2D background blue value */ + DMA2D_BG_InitStruct->DMA2D_BGC_BLUE = 0x00; + + /*!< Initialize the DMA2D background green value */ + DMA2D_BG_InitStruct->DMA2D_BGC_GREEN = 0x00; + + /*!< Initialize the DMA2D background red value */ + DMA2D_BG_InitStruct->DMA2D_BGC_RED = 0x00; + + /*!< Initialize the DMA2D background CLUT memory address */ + DMA2D_BG_InitStruct->DMA2D_BGCMAR = 0x00; +} + +/** + * @brief Start the automatic loading of the CLUT or abort the transfer. + * @param NewState: new state of the DMA2D peripheral. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ + +void DMA2D_FGStart(FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + /* Start the automatic loading of the CLUT */ + DMA2D->FGPFCCR |= DMA2D_FGPFCCR_START; + } + else + { + /* abort the transfer */ + DMA2D->FGPFCCR &= (uint32_t)~DMA2D_FGPFCCR_START; + } +} + +/** + * @brief Start the automatic loading of the CLUT or abort the transfer. + * @param NewState: new state of the DMA2D peripheral. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ + +void DMA2D_BGStart(FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + /* Start the automatic loading of the CLUT */ + DMA2D->BGPFCCR |= DMA2D_BGPFCCR_START; + } + else + { + /* abort the transfer */ + DMA2D->BGPFCCR &= (uint32_t)~DMA2D_BGPFCCR_START; + } +} + +/** + * @brief Configures the DMA2D dead time. + * @param DMA2D_DeadTime: specifies the DMA2D dead time. + * This parameter can be one of the following values: + * @retval None + */ +void DMA2D_DeadTimeConfig(uint32_t DMA2D_DeadTime, FunctionalState NewState) +{ + uint32_t DeadTime; + + /* Check the parameters */ + assert_param(IS_DMA2D_DEAD_TIME(DMA2D_DeadTime)); + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + /* Enable and Configures the dead time */ + DMA2D->AMTCR &= (uint32_t)DEAD_MASK; + DeadTime = DMA2D_DeadTime << 8; + DMA2D->AMTCR |= (DeadTime | DMA2D_AMTCR_EN); + } + else + { + DMA2D->AMTCR &= ~(uint32_t)DMA2D_AMTCR_EN; + } +} + +/** + * @brief Define the configuration of the line watermark . + * @param DMA2D_LWatermarkConfig: Line Watermark configuration. + * @retval None + */ + +void DMA2D_LineWatermarkConfig(uint32_t DMA2D_LWatermarkConfig) +{ + /* Check the parameters */ + assert_param(IS_DMA2D_LineWatermark(DMA2D_LWatermarkConfig)); + + /* Sets the Line watermark configuration */ + DMA2D->LWR = (uint32_t)DMA2D_LWatermarkConfig; +} + +/** + * @} + */ + +/** @defgroup DMA2D_Group2 Interrupts and flags management functions + * @brief Interrupts and flags management functions + * +@verbatim + =============================================================================== + ##### Interrupts and flags management functions ##### + =============================================================================== + + [..] This section provides functions allowing to configure the DMA2D + Interrupts and to get the status and clear flags and Interrupts + pending bits. + [..] The DMA2D provides 6 Interrupts sources and 6 Flags + + *** Flags *** + ============= + [..] + (+) DMA2D_FLAG_CE : Configuration Error Interrupt flag + (+) DMA2D_FLAG_CAE: CLUT Access Error Interrupt flag + (+) DMA2D_FLAG_TW: Transfer Watermark Interrupt flag + (+) DMA2D_FLAG_TC: Transfer Complete interrupt flag + (+) DMA2D_FLAG_TE: Transfer Error interrupt flag + (+) DMA2D_FLAG_CTC: CLUT Transfer Complete Interrupt flag + + *** Interrupts *** + ================== + [..] + (+) DMA2D_IT_CE: Configuration Error Interrupt is generated when a wrong + configuration is detected + (+) DMA2D_IT_CAE: CLUT Access Error Interrupt + (+) DMA2D_IT_TW: Transfer Watermark Interrupt is generated when + the programmed watermark is reached + (+) DMA2D_IT_TE: Transfer Error interrupt is generated when the CPU trying + to access the CLUT while a CLUT loading or a DMA2D1 transfer + is on going + (+) DMA2D_IT_CTC: CLUT Transfer Complete Interrupt + (+) DMA2D_IT_TC: Transfer Complete interrupt +@endverbatim + * @{ + */ +/** + * @brief Enables or disables the specified DMA2D's interrupts. + * @param DMA2D_IT: specifies the DMA2D interrupts sources to be enabled or disabled. + * This parameter can be any combination of the following values: + * @arg DMA2D_IT_CE: Configuration Error Interrupt Enable. + * @arg DMA2D_IT_CTC: CLUT Transfer Complete Interrupt Enable. + * @arg DMA2D_IT_CAE: CLUT Access Error Interrupt Enable. + * @arg DMA2D_IT_TW: Transfer Watermark Interrupt Enable. + * @arg DMA2D_IT_TC: Transfer Complete interrupt enable. + * @arg DMA2D_IT_TE: Transfer Error interrupt enable. + * @param NewState: new state of the specified DMA2D interrupts. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ + +void DMA2D_ITConfig(uint32_t DMA2D_IT, FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_DMA2D_IT(DMA2D_IT)); + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + /* Enable the selected DMA2D interrupts */ + DMA2D->CR |= DMA2D_IT; + } + else + { + /* Disable the selected DMA2D interrupts */ + DMA2D->CR &= (uint32_t)~DMA2D_IT; + } +} + +/** + * @brief Checks whether the specified DMA2D's flag is set or not. + * @param DMA2D_FLAG: specifies the flag to check. + * This parameter can be one of the following values: + * @arg DMA2D_FLAG_CE: Configuration Error Interrupt flag. + * @arg DMA2D_FLAG_CTC: CLUT Transfer Complete Interrupt flag. + * @arg DMA2D_FLAG_CAE: CLUT Access Error Interrupt flag. + * @arg DMA2D_FLAG_TW: Transfer Watermark Interrupt flag. + * @arg DMA2D_FLAG_TC: Transfer Complete interrupt flag. + * @arg DMA2D_FLAG_TE: Transfer Error interrupt flag. + * @retval The new state of DMA2D_FLAG (SET or RESET). + */ + +FlagStatus DMA2D_GetFlagStatus(uint32_t DMA2D_FLAG) +{ + FlagStatus bitstatus = RESET; + + /* Check the parameters */ + assert_param(IS_DMA2D_GET_FLAG(DMA2D_FLAG)); + + /* Check the status of the specified DMA2D flag */ + if (((DMA2D->ISR) & DMA2D_FLAG) != (uint32_t)RESET) + { + /* DMA2D_FLAG is set */ + bitstatus = SET; + } + else + { + /* DMA2D_FLAG is reset */ + bitstatus = RESET; + } + /* Return the DMA2D_FLAG status */ + return bitstatus; +} + +/** + * @brief Clears the DMA2D's pending flags. + * @param DMA2D_FLAG: specifies the flag to clear. + * This parameter can be any combination of the following values: + * @arg DMA2D_FLAG_CE: Configuration Error Interrupt flag. + * @arg DMA2D_FLAG_CTC: CLUT Transfer Complete Interrupt flag. + * @arg DMA2D_FLAG_CAE: CLUT Access Error Interrupt flag. + * @arg DMA2D_FLAG_TW: Transfer Watermark Interrupt flag. + * @arg DMA2D_FLAG_TC: Transfer Complete interrupt flag. + * @arg DMA2D_FLAG_TE: Transfer Error interrupt flag. + * @retval None + */ +void DMA2D_ClearFlag(uint32_t DMA2D_FLAG) +{ + /* Check the parameters */ + assert_param(IS_DMA2D_GET_FLAG(DMA2D_FLAG)); + + /* Clear the corresponding DMA2D flag */ + DMA2D->IFCR = (uint32_t)DMA2D_FLAG; +} + +/** + * @brief Checks whether the specified DMA2D's interrupt has occurred or not. + * @param DMA2D_IT: specifies the DMA2D interrupts sources to check. + * This parameter can be one of the following values: + * @arg DMA2D_IT_CE: Configuration Error Interrupt Enable. + * @arg DMA2D_IT_CTC: CLUT Transfer Complete Interrupt Enable. + * @arg DMA2D_IT_CAE: CLUT Access Error Interrupt Enable. + * @arg DMA2D_IT_TW: Transfer Watermark Interrupt Enable. + * @arg DMA2D_IT_TC: Transfer Complete interrupt enable. + * @arg DMA2D_IT_TE: Transfer Error interrupt enable. + * @retval The new state of the DMA2D_IT (SET or RESET). + */ +ITStatus DMA2D_GetITStatus(uint32_t DMA2D_IT) +{ + ITStatus bitstatus = RESET; + uint32_t DMA2D_IT_FLAG = DMA2D_IT >> 8; + + /* Check the parameters */ + assert_param(IS_DMA2D_IT(DMA2D_IT)); + + if ((DMA2D->ISR & DMA2D_IT_FLAG) != (uint32_t)RESET) + { + bitstatus = SET; + } + else + { + bitstatus = RESET; + } + + if (((DMA2D->CR & DMA2D_IT) != (uint32_t)RESET) && (bitstatus != (uint32_t)RESET)) + { + bitstatus = SET; + } + else + { + bitstatus = RESET; + } + return bitstatus; +} + +/** + * @brief Clears the DMA2D's interrupt pending bits. + * @param DMA2D_IT: specifies the interrupt pending bit to clear. + * This parameter can be any combination of the following values: + * @arg DMA2D_IT_CE: Configuration Error Interrupt. + * @arg DMA2D_IT_CTC: CLUT Transfer Complete Interrupt. + * @arg DMA2D_IT_CAE: CLUT Access Error Interrupt. + * @arg DMA2D_IT_TW: Transfer Watermark Interrupt. + * @arg DMA2D_IT_TC: Transfer Complete interrupt. + * @arg DMA2D_IT_TE: Transfer Error interrupt. + * @retval None + */ +void DMA2D_ClearITPendingBit(uint32_t DMA2D_IT) +{ + /* Check the parameters */ + assert_param(IS_DMA2D_IT(DMA2D_IT)); + DMA2D_IT = DMA2D_IT >> 8; + + /* Clear the corresponding DMA2D Interrupt */ + DMA2D->IFCR = (uint32_t)DMA2D_IT; +} + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_exti.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_exti.c index b3494f52..433a8bf3 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_exti.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_exti.c @@ -2,51 +2,51 @@ ****************************************************************************** * @file stm32f4xx_exti.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the EXTI peripheral: - * - Initialization and Configuration - * - Interrupts and flags management + * + Initialization and Configuration + * + Interrupts and flags management * - * @verbatim - * - * =================================================================== - * EXTI features - * =================================================================== - * - * External interrupt/event lines are mapped as following: - * 1- All available GPIO pins are connected to the 16 external - * interrupt/event lines from EXTI0 to EXTI15. - * 2- EXTI line 16 is connected to the PVD Output - * 3- EXTI line 17 is connected to the RTC Alarm event - * 4- EXTI line 18 is connected to the USB OTG FS Wakeup from suspend event - * 5- EXTI line 19 is connected to the Ethernet Wakeup event - * 6- EXTI line 20 is connected to the USB OTG HS (configured in FS) Wakeup event - * 7- EXTI line 21 is connected to the RTC Tamper and Time Stamp events - * 8- EXTI line 22 is connected to the RTC Wakeup event - * - * =================================================================== - * How to use this driver - * =================================================================== - * - * In order to use an I/O pin as an external interrupt source, follow - * steps below: - * 1- Configure the I/O in input mode using GPIO_Init() - * 2- Select the input source pin for the EXTI line using SYSCFG_EXTILineConfig() - * 3- Select the mode(interrupt, event) and configure the trigger - * selection (Rising, falling or both) using EXTI_Init() - * 4- Configure NVIC IRQ channel mapped to the EXTI line using NVIC_Init() - * - * @note SYSCFG APB clock must be enabled to get write access to SYSCFG_EXTICRx - * registers using RCC_APB2PeriphClockCmd(RCC_APB2Periph_SYSCFG, ENABLE); - * - * @endverbatim +@verbatim + + =============================================================================== + ##### EXTI features ##### + =============================================================================== + + [..] External interrupt/event lines are mapped as following: + (#) All available GPIO pins are connected to the 16 external + interrupt/event lines from EXTI0 to EXTI15. + (#) EXTI line 16 is connected to the PVD Output + (#) EXTI line 17 is connected to the RTC Alarm event + (#) EXTI line 18 is connected to the USB OTG FS Wakeup from suspend event + (#) EXTI line 19 is connected to the Ethernet Wakeup event + (#) EXTI line 20 is connected to the USB OTG HS (configured in FS) Wakeup event + (#) EXTI line 21 is connected to the RTC Tamper and Time Stamp events + (#) EXTI line 22 is connected to the RTC Wakeup event + + ##### How to use this driver ##### + =============================================================================== + + [..] In order to use an I/O pin as an external interrupt source, follow steps + below: + (#) Configure the I/O in input mode using GPIO_Init() + (#) Select the input source pin for the EXTI line using SYSCFG_EXTILineConfig() + (#) Select the mode(interrupt, event) and configure the trigger + selection (Rising, falling or both) using EXTI_Init() + (#) Configure NVIC IRQ channel mapped to the EXTI line using NVIC_Init() + + [..] + (@) SYSCFG APB clock must be enabled to get write access to SYSCFG_EXTICRx + registers using RCC_APB2PeriphClockCmd(RCC_APB2Periph_SYSCFG, ENABLE); + +@endverbatim * ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -94,8 +94,8 @@ * @verbatim =============================================================================== - Initialization and Configuration functions - =============================================================================== + ##### Initialization and Configuration functions ##### + =============================================================================== @endverbatim * @{ @@ -210,8 +210,8 @@ void EXTI_GenerateSWInterrupt(uint32_t EXTI_Line) * @verbatim =============================================================================== - Interrupts and flags management functions - =============================================================================== + ##### Interrupts and flags management functions ##### + =============================================================================== @endverbatim * @{ @@ -262,13 +262,11 @@ void EXTI_ClearFlag(uint32_t EXTI_Line) */ ITStatus EXTI_GetITStatus(uint32_t EXTI_Line) { - ITStatus bitstatus = RESET; - uint32_t enablestatus = 0; + FlagStatus bitstatus = RESET; /* Check the parameters */ assert_param(IS_GET_EXTI_LINE(EXTI_Line)); - enablestatus = EXTI->IMR & EXTI_Line; - if (((EXTI->PR & EXTI_Line) != (uint32_t)RESET) && (enablestatus != (uint32_t)RESET)) + if ((EXTI->PR & EXTI_Line) != (uint32_t)RESET) { bitstatus = SET; } @@ -277,6 +275,7 @@ ITStatus EXTI_GetITStatus(uint32_t EXTI_Line) bitstatus = RESET; } return bitstatus; + } /** diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_flash.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_flash.c index 8b37e7fe..c077b6bc 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_flash.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_flash.c @@ -2,60 +2,56 @@ ****************************************************************************** * @file stm32f4xx_flash.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the FLASH peripheral: - * - FLASH Interface configuration - * - FLASH Memory Programming - * - Option Bytes Programming - * - Interrupts and flags management + * + FLASH Interface configuration + * + FLASH Memory Programming + * + Option Bytes Programming + * + Interrupts and flags management * - * @verbatim - * - * =================================================================== - * How to use this driver - * =================================================================== - * - * This driver provides functions to configure and program the FLASH - * memory of all STM32F4xx devices. - * These functions are split in 4 groups: - * - * 1. FLASH Interface configuration functions: this group includes the - * management of the following features: - * - Set the latency - * - Enable/Disable the prefetch buffer - * - Enable/Disable the Instruction cache and the Data cache - * - Reset the Instruction cache and the Data cache - * - * 2. FLASH Memory Programming functions: this group includes all needed - * functions to erase and program the main memory: - * - Lock and Unlock the FLASH interface - * - Erase function: Erase sector, erase all sectors - * - Program functions: byte, half word, word and double word - * - * 3. Option Bytes Programming functions: this group includes all needed - * functions to manage the Option Bytes: - * - Set/Reset the write protection - * - Set the Read protection Level - * - Set the BOR level - * - Program the user Option Bytes - * - Launch the Option Bytes loader - * - * 4. Interrupts and flags management functions: this group - * includes all needed functions to: - * - Enable/Disable the FLASH interrupt sources - * - Get flags status - * - Clear flags - * - Get FLASH operation status - * - Wait for last FLASH operation - * - * @endverbatim - * + @verbatim + =============================================================================== + ##### How to use this driver ##### + =============================================================================== + [..] + This driver provides functions to configure and program the FLASH memory + of all STM32F4xx devices. These functions are split in 4 groups: + + (#) FLASH Interface configuration functions: this group includes the + management of the following features: + (++) Set the latency + (++) Enable/Disable the prefetch buffer + (++) Enable/Disable the Instruction cache and the Data cache + (++) Reset the Instruction cache and the Data cache + + (#) FLASH Memory Programming functions: this group includes all needed + functions to erase and program the main memory: + (++) Lock and Unlock the FLASH interface + (++) Erase function: Erase sector, erase all sectors + (++) Program functions: byte, half word, word and double word + + (#) Option Bytes Programming functions: this group includes all needed + functions to manage the Option Bytes: + (++) Set/Reset the write protection + (++) Set the Read protection Level + (++) Set the BOR level + (++) Program the user Option Bytes + (++) Launch the Option Bytes loader + + (#) Interrupts and flags management functions: this group + includes all needed functions to: + (++) Enable/Disable the FLASH interrupt sources + (++) Get flags status + (++) Clear flags + (++) Get FLASH operation status + (++) Wait for last FLASH operation + @endverbatim ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -103,60 +99,154 @@ @verbatim =============================================================================== - FLASH Interface configuration functions + ##### FLASH Interface configuration functions ##### =============================================================================== - - This group includes the following functions: - - void FLASH_SetLatency(uint32_t FLASH_Latency) - To correctly read data from FLASH memory, the number of wait states (LATENCY) - must be correctly programmed according to the frequency of the CPU clock - (HCLK) and the supply voltage of the device. - +-------------------------------------------------------------------------------------+ + [..] + This group includes the following functions: + (+) void FLASH_SetLatency(uint32_t FLASH_Latency) + To correctly read data from FLASH memory, the number of wait states (LATENCY) + must be correctly programmed according to the frequency of the CPU clock + (HCLK) and the supply voltage of the device. + [..] + For STM32F405xx/07xx and STM32F415xx/17xx devices + +-------------------------------------------------------------------------------------+ + | Latency | HCLK clock frequency (MHz) | + | |---------------------------------------------------------------------| + | | voltage range | voltage range | voltage range | voltage range | + | | 2.7 V - 3.6 V | 2.4 V - 2.7 V | 2.1 V - 2.4 V | 1.8 V - 2.1 V | + |---------------|----------------|----------------|-----------------|-----------------| + |0WS(1CPU cycle)|0 < HCLK <= 30 |0 < HCLK <= 24 |0 < HCLK <= 22 |0 < HCLK <= 20 | + |---------------|----------------|----------------|-----------------|-----------------| + |1WS(2CPU cycle)|30 < HCLK <= 60 |24 < HCLK <= 48 |22 < HCLK <= 44 |20 < HCLK <= 40 | + |---------------|----------------|----------------|-----------------|-----------------| + |2WS(3CPU cycle)|60 < HCLK <= 90 |48 < HCLK <= 72 |44 < HCLK <= 66 |40 < HCLK <= 60 | + |---------------|----------------|----------------|-----------------|-----------------| + |3WS(4CPU cycle)|90 < HCLK <= 120|72 < HCLK <= 96 |66 < HCLK <= 88 |60 < HCLK <= 80 | + |---------------|----------------|----------------|-----------------|-----------------| + |4WS(5CPU cycle)|120< HCLK <= 150|96 < HCLK <= 120|88 < HCLK <= 110 |80 < HCLK <= 100 | + |---------------|----------------|----------------|-----------------|-----------------| + |5WS(6CPU cycle)|150< HCLK <= 168|120< HCLK <= 144|110 < HCLK <= 132|100 < HCLK <= 120| + |---------------|----------------|----------------|-----------------|-----------------| + |6WS(7CPU cycle)| NA |144< HCLK <= 168|132 < HCLK <= 154|120 < HCLK <= 140| + |---------------|----------------|----------------|-----------------|-----------------| + |7WS(8CPU cycle)| NA | NA |154 < HCLK <= 168|140 < HCLK <= 160| + +---------------|----------------|----------------|-----------------|-----------------+ + + [..] + For STM32F42xxx/43xxx devices + +-------------------------------------------------------------------------------------+ | Latency | HCLK clock frequency (MHz) | - | |---------------------------------------------------------------------| + | |---------------------------------------------------------------------| | | voltage range | voltage range | voltage range | voltage range | | | 2.7 V - 3.6 V | 2.4 V - 2.7 V | 2.1 V - 2.4 V | 1.8 V - 2.1 V | - |---------------|----------------|----------------|-----------------|-----------------| + |---------------|----------------|----------------|-----------------|-----------------| + |0WS(1CPU cycle)|0 < HCLK <= 30 |0 < HCLK <= 24 |0 < HCLK <= 22 |0 < HCLK <= 20 | + |---------------|----------------|----------------|-----------------|-----------------| + |1WS(2CPU cycle)|30 < HCLK <= 60 |24 < HCLK <= 48 |22 < HCLK <= 44 |20 < HCLK <= 40 | + |---------------|----------------|----------------|-----------------|-----------------| + |2WS(3CPU cycle)|60 < HCLK <= 90 |48 < HCLK <= 72 |44 < HCLK <= 66 |40 < HCLK <= 60 | + |---------------|----------------|----------------|-----------------|-----------------| + |3WS(4CPU cycle)|90 < HCLK <= 120|72 < HCLK <= 96 |66 < HCLK <= 88 |60 < HCLK <= 80 | + |---------------|----------------|----------------|-----------------|-----------------| + |4WS(5CPU cycle)|120< HCLK <= 150|96 < HCLK <= 120|88 < HCLK <= 110 |80 < HCLK <= 100 | + |---------------|----------------|----------------|-----------------|-----------------| + |5WS(6CPU cycle)|120< HCLK <= 180|120< HCLK <= 144|110 < HCLK <= 132|100 < HCLK <= 120| + |---------------|----------------|----------------|-----------------|-----------------| + |6WS(7CPU cycle)| NA |144< HCLK <= 168|132 < HCLK <= 154|120 < HCLK <= 140| + |---------------|----------------|----------------|-----------------|-----------------| + |7WS(8CPU cycle)| NA |168< HCLK <= 180|154 < HCLK <= 176|140 < HCLK <= 160| + |---------------|----------------|----------------|-----------------|-----------------| + |8WS(9CPU cycle)| NA | NA |176 < HCLK <= 180|160 < HCLK <= 168| + +-------------------------------------------------------------------------------------+ + + [..] + For STM32F401x devices + +-------------------------------------------------------------------------------------+ + | Latency | HCLK clock frequency (MHz) | + | |---------------------------------------------------------------------| + | | voltage range | voltage range | voltage range | voltage range | + | | 2.7 V - 3.6 V | 2.4 V - 2.7 V | 2.1 V - 2.4 V | 1.8 V - 2.1 V | + |---------------|----------------|----------------|-----------------|-----------------| + |0WS(1CPU cycle)|0 < HCLK <= 30 |0 < HCLK <= 24 |0 < HCLK <= 22 |0 < HCLK <= 20 | + |---------------|----------------|----------------|-----------------|-----------------| + |1WS(2CPU cycle)|30 < HCLK <= 60 |24 < HCLK <= 48 |22 < HCLK <= 44 |20 < HCLK <= 40 | + |---------------|----------------|----------------|-----------------|-----------------| + |2WS(3CPU cycle)|60 < HCLK <= 84 |48 < HCLK <= 72 |44 < HCLK <= 66 |40 < HCLK <= 60 | + |---------------|----------------|----------------|-----------------|-----------------| + |3WS(4CPU cycle)| NA |72 < HCLK <= 84 |66 < HCLK <= 84 |60 < HCLK <= 80 | + |---------------|----------------|----------------|-----------------|-----------------| + |4WS(5CPU cycle)| NA | NA | NA |80 < HCLK <= 84 | + +-------------------------------------------------------------------------------------+ + + [..] + For STM32F411xE devices + +-------------------------------------------------------------------------------------+ + | Latency | HCLK clock frequency (MHz) | + | |---------------------------------------------------------------------| + | | voltage range | voltage range | voltage range | voltage range | + | | 2.7 V - 3.6 V | 2.4 V - 2.7 V | 2.1 V - 2.4 V | 1.8 V - 2.1 V | + |---------------|----------------|----------------|-----------------|-----------------| |0WS(1CPU cycle)|0 < HCLK <= 30 |0 < HCLK <= 24 |0 < HCLK <= 18 |0 < HCLK <= 16 | - |---------------|----------------|----------------|-----------------|-----------------| - |1WS(2CPU cycle)|30 < HCLK <= 60 |24 < HCLK <= 48 |18 < HCLK <= 36 |16 < HCLK <= 32 | - |---------------|----------------|----------------|-----------------|-----------------| - |2WS(3CPU cycle)|60 < HCLK <= 90 |48 < HCLK <= 72 |36 < HCLK <= 54 |32 < HCLK <= 48 | - |---------------|----------------|----------------|-----------------|-----------------| - |3WS(4CPU cycle)|90 < HCLK <= 120|72 < HCLK <= 96 |54 < HCLK <= 72 |48 < HCLK <= 64 | - |---------------|----------------|----------------|-----------------|-----------------| - |4WS(5CPU cycle)|120< HCLK <= 150|96 < HCLK <= 120|72 < HCLK <= 90 |64 < HCLK <= 80 | - |---------------|----------------|----------------|-----------------|-----------------| - |5WS(6CPU cycle)|120< HCLK <= 168|120< HCLK <= 144|90 < HCLK <= 108 |80 < HCLK <= 96 | - |---------------|----------------|----------------|-----------------|-----------------| - |6WS(7CPU cycle)| NA |144< HCLK <= 168|108 < HCLK <= 120|96 < HCLK <= 112 | - |---------------|----------------|----------------|-----------------|-----------------| - |7WS(8CPU cycle)| NA | NA |120 < HCLK <= 138|112 < HCLK <= 120| - |***************|****************|****************|*****************|*****************|*****************************+ + |---------------|----------------|----------------|-----------------|-----------------| + |1WS(2CPU cycle)|30 < HCLK <= 64 |24 < HCLK <= 48 |18 < HCLK <= 36 |16 < HCLK <= 32 | + |---------------|----------------|----------------|-----------------|-----------------| + |2WS(3CPU cycle)|64 < HCLK <= 90 |48 < HCLK <= 72 |36 < HCLK <= 54 |32 < HCLK <= 48 | + |---------------|----------------|----------------|-----------------|-----------------| + |3WS(4CPU cycle)|90 < HCLK <= 100|72 < HCLK <= 96 |54 < HCLK <= 72 |48 < HCLK <= 64 | + |---------------|----------------|----------------|-----------------|-----------------| + |4WS(5CPU cycle)| NA |96 < HCLK <= 100|72 < HCLK <= 90 |64 < HCLK <= 80 | + |---------------|----------------|----------------|-----------------|-----------------| + |5WS(6CPU cycle)| NA | NA |90 < HCLK <= 100 |80 < HCLK <= 96 | + |---------------|----------------|----------------|-----------------|-----------------| + |6WS(7CPU cycle)| NA | NA | NA |96 < HCLK <= 100 | + +-------------------------------------------------------------------------------------+ + + [..] + +-------------------------------------------------------------------------------------------------------------------+ | | voltage range | voltage range | voltage range | voltage range | voltage range 2.7 V - 3.6 V | | | 2.7 V - 3.6 V | 2.4 V - 2.7 V | 2.1 V - 2.4 V | 1.8 V - 2.1 V | with External Vpp = 9V | - |---------------|----------------|----------------|-----------------|-----------------|-----------------------------| - |Max Parallelism| x32 | x16 | x8 | x64 | - |---------------|----------------|----------------|-----------------|-----------------|-----------------------------| + |---------------|----------------|----------------|-----------------|-----------------|-----------------------------| + |Max Parallelism| x32 | x16 | x8 | x64 | + |---------------|----------------|----------------|-----------------|-----------------|-----------------------------| |PSIZE[1:0] | 10 | 01 | 00 | 11 | - +-------------------------------------------------------------------------------------------------------------------+ - @note When VOS bit (in PWR_CR register) is reset to '0’, the maximum value of HCLK is 144 MHz. - You can use PWR_MainRegulatorModeConfig() function to set or reset this bit. - - - void FLASH_PrefetchBufferCmd(FunctionalState NewState) - - void FLASH_InstructionCacheCmd(FunctionalState NewState) - - void FLASH_DataCacheCmd(FunctionalState NewState) - - void FLASH_InstructionCacheReset(void) - - void FLASH_DataCacheReset(void) - - The unlock sequence is not needed for these functions. + +-------------------------------------------------------------------------------------------------------------------+ + + -@- On STM32F405xx/407xx and STM32F415xx/417xx devices: + (++) when VOS = '0' Scale 2 mode, the maximum value of fHCLK = 144MHz. + (++) when VOS = '1' Scale 1 mode, the maximum value of fHCLK = 168MHz. + [..] + On STM32F42xxx/43xxx devices: + (++) when VOS[1:0] = '0x01' Scale 3 mode, the maximum value of fHCLK is 120MHz. + (++) when VOS[1:0] = '0x10' Scale 2 mode, the maximum value of fHCLK is 144MHz if OverDrive OFF and 168MHz if OverDrive ON. + (++) when VOS[1:0] = '0x11' Scale 1 mode, the maximum value of fHCLK is 168MHz if OverDrive OFF and 180MHz if OverDrive ON. + [..] + On STM32F401x devices: + (++) when VOS[1:0] = '0x01' Scale 3 mode, the maximum value of fHCLK is 60MHz. + (++) when VOS[1:0] = '0x10' Scale 2 mode, the maximum value of fHCLK is 84MHz. + [..] + On STM32F411xE devices: + (++) when VOS[1:0] = '0x01' Scale 3 mode, the maximum value of fHCLK is 64MHz. + (++) when VOS[1:0] = '0x10' Scale 2 mode, the maximum value of fHCLK is 84MHz. + (++) when VOS[1:0] = '0x11' Scale 1 mode, the maximum value of fHCLK is 100MHz. + + For more details please refer product DataSheet + You can use PWR_MainRegulatorModeConfig() function to control VOS bits. + + (+) void FLASH_PrefetchBufferCmd(FunctionalState NewState) + (+) void FLASH_InstructionCacheCmd(FunctionalState NewState) + (+) void FLASH_DataCacheCmd(FunctionalState NewState) + (+) void FLASH_InstructionCacheReset(void) + (+) void FLASH_DataCacheReset(void) + + [..] + The unlock sequence is not needed for these functions. @endverbatim * @{ */ /** - * @brief Sets the code latency value. + * @brief Sets the code latency value. * @param FLASH_Latency: specifies the FLASH Latency value. * This parameter can be one of the following values: * @arg FLASH_Latency_0: FLASH Zero Latency cycle @@ -166,7 +256,22 @@ * @arg FLASH_Latency_4: FLASH Four Latency cycles * @arg FLASH_Latency_5: FLASH Five Latency cycles * @arg FLASH_Latency_6: FLASH Six Latency cycles - * @arg FLASH_Latency_7: FLASH Seven Latency cycles + * @arg FLASH_Latency_7: FLASH Seven Latency cycles + * @arg FLASH_Latency_8: FLASH Eight Latency cycles + * @arg FLASH_Latency_9: FLASH Nine Latency cycles + * @arg FLASH_Latency_10: FLASH Teen Latency cycles + * @arg FLASH_Latency_11: FLASH Eleven Latency cycles + * @arg FLASH_Latency_12: FLASH Twelve Latency cycles + * @arg FLASH_Latency_13: FLASH Thirteen Latency cycles + * @arg FLASH_Latency_14: FLASH Fourteen Latency cycles + * @arg FLASH_Latency_15: FLASH Fifteen Latency cycles + * + * @note For STM32F405xx/407xx, STM32F415xx/417xx and STM32F401xx/411xE devices this parameter + * can be a value between FLASH_Latency_0 and FLASH_Latency_7. + * + * @note For STM32F42xxx/43xxx devices this parameter can be a value between + * FLASH_Latency_0 and FLASH_Latency_15. + * * @retval None */ void FLASH_SetLatency(uint32_t FLASH_Latency) @@ -273,26 +378,29 @@ void FLASH_DataCacheReset(void) * @verbatim =============================================================================== - FLASH Memory Programming functions + ##### FLASH Memory Programming functions ##### =============================================================================== - - This group includes the following functions: - - void FLASH_Unlock(void) - - void FLASH_Lock(void) - - FLASH_Status FLASH_EraseSector(uint32_t FLASH_Sector, uint8_t VoltageRange) - - FLASH_Status FLASH_EraseAllSectors(uint8_t VoltageRange) - - FLASH_Status FLASH_ProgramDoubleWord(uint32_t Address, uint64_t Data) - - FLASH_Status FLASH_ProgramWord(uint32_t Address, uint32_t Data) - - FLASH_Status FLASH_ProgramHalfWord(uint32_t Address, uint16_t Data) - - FLASH_Status FLASH_ProgramByte(uint32_t Address, uint8_t Data) - - Any operation of erase or program should follow these steps: - 1. Call the FLASH_Unlock() function to enable the FLASH control register access - - 2. Call the desired function to erase sector(s) or program data - - 3. Call the FLASH_Lock() function to disable the FLASH control register access - (recommended to protect the FLASH memory against possible unwanted operation) + [..] + This group includes the following functions: + (+) void FLASH_Unlock(void) + (+) void FLASH_Lock(void) + (+) FLASH_Status FLASH_EraseSector(uint32_t FLASH_Sector, uint8_t VoltageRange) + (+) FLASH_Status FLASH_EraseAllSectors(uint8_t VoltageRange) + (+) FLASH_Status FLASH_ProgramDoubleWord(uint32_t Address, uint64_t Data) + (+) FLASH_Status FLASH_ProgramWord(uint32_t Address, uint32_t Data) + (+) FLASH_Status FLASH_ProgramHalfWord(uint32_t Address, uint16_t Data) + (+) FLASH_Status FLASH_ProgramByte(uint32_t Address, uint8_t Data) + The following functions can be used only for STM32F42xxx/43xxx devices. + (+) FLASH_Status FLASH_EraseAllBank1Sectors(uint8_t VoltageRange) + (+) FLASH_Status FLASH_EraseAllBank2Sectors(uint8_t VoltageRange) + [..] + Any operation of erase or program should follow these steps: + (#) Call the FLASH_Unlock() function to enable the FLASH control register access + + (#) Call the desired function to erase sector(s) or program data + + (#) Call the FLASH_Lock() function to disable the FLASH control register access + (recommended to protect the FLASH memory against possible unwanted operation) @endverbatim * @{ @@ -326,10 +434,24 @@ void FLASH_Lock(void) /** * @brief Erases a specified FLASH Sector. - * + * + * @note If an erase and a program operations are requested simustaneously, + * the erase operation is performed before the program one. + * * @param FLASH_Sector: The Sector number to be erased. - * This parameter can be a value between FLASH_Sector_0 and FLASH_Sector_11 - * + * + * @note For STM32F405xx/407xx and STM32F415xx/417xx devices this parameter can + * be a value between FLASH_Sector_0 and FLASH_Sector_11. + * + * For STM32F42xxx/43xxx devices this parameter can be a value between + * FLASH_Sector_0 and FLASH_Sector_23. + * + * For STM32F401xx devices this parameter can be a value between + * FLASH_Sector_0 and FLASH_Sector_5. + * + * For STM32F411xE devices this parameter can be a value between + * FLASH_Sector_0 and FLASH_Sector_7. + * * @param VoltageRange: The device voltage range which defines the erase parallelism. * This parameter can be one of the following values: * @arg VoltageRange_1: when the device voltage range is 1.8V to 2.1V, @@ -394,7 +516,10 @@ FLASH_Status FLASH_EraseSector(uint32_t FLASH_Sector, uint8_t VoltageRange) /** * @brief Erases all FLASH Sectors. - * + * + * @note If an erase and a program operations are requested simustaneously, + * the erase operation is performed before the program one. + * * @param VoltageRange: The device voltage range which defines the erase parallelism. * This parameter can be one of the following values: * @arg VoltageRange_1: when the device voltage range is 1.8V to 2.1V, @@ -418,6 +543,87 @@ FLASH_Status FLASH_EraseAllSectors(uint8_t VoltageRange) status = FLASH_WaitForLastOperation(); assert_param(IS_VOLTAGERANGE(VoltageRange)); + if(VoltageRange == VoltageRange_1) + { + tmp_psize = FLASH_PSIZE_BYTE; + } + else if(VoltageRange == VoltageRange_2) + { + tmp_psize = FLASH_PSIZE_HALF_WORD; + } + else if(VoltageRange == VoltageRange_3) + { + tmp_psize = FLASH_PSIZE_WORD; + } + else + { + tmp_psize = FLASH_PSIZE_DOUBLE_WORD; + } + if(status == FLASH_COMPLETE) + { + /* if the previous operation is completed, proceed to erase all sectors */ +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) + FLASH->CR &= CR_PSIZE_MASK; + FLASH->CR |= tmp_psize; + FLASH->CR |= (FLASH_CR_MER1 | FLASH_CR_MER2); + FLASH->CR |= FLASH_CR_STRT; + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(); + + /* if the erase operation is completed, disable the MER Bit */ + FLASH->CR &= ~(FLASH_CR_MER1 | FLASH_CR_MER2); +#endif /* STM32F427_437xx || STM32F429_439xx */ + +#if defined (STM32F40_41xxx) || defined (STM32F401xx) || defined (STM32F411xE) + FLASH->CR &= CR_PSIZE_MASK; + FLASH->CR |= tmp_psize; + FLASH->CR |= FLASH_CR_MER; + FLASH->CR |= FLASH_CR_STRT; + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(); + + /* if the erase operation is completed, disable the MER Bit */ + FLASH->CR &= (~FLASH_CR_MER); +#endif /* STM32F40_41xxx || STM32F401xx || STM32F411xE */ + + } + /* Return the Erase Status */ + return status; +} + +/** + * @brief Erases all FLASH Sectors in Bank 1. + * + * @note This function can be used only for STM32F42xxx/43xxx devices. + * + * @note If an erase and a program operations are requested simultaneously, + * the erase operation is performed before the program one. + * + * @param VoltageRange: The device voltage range which defines the erase parallelism. + * This parameter can be one of the following values: + * @arg VoltageRange_1: when the device voltage range is 1.8V to 2.1V, + * the operation will be done by byte (8-bit) + * @arg VoltageRange_2: when the device voltage range is 2.1V to 2.7V, + * the operation will be done by half word (16-bit) + * @arg VoltageRange_3: when the device voltage range is 2.7V to 3.6V, + * the operation will be done by word (32-bit) + * @arg VoltageRange_4: when the device voltage range is 2.7V to 3.6V + External Vpp, + * the operation will be done by double word (64-bit) + * + * @retval FLASH Status: The returned value can be: FLASH_BUSY, FLASH_ERROR_PROGRAM, + * FLASH_ERROR_WRP, FLASH_ERROR_OPERATION or FLASH_COMPLETE. + */ +FLASH_Status FLASH_EraseAllBank1Sectors(uint8_t VoltageRange) +{ + uint32_t tmp_psize = 0x0; + FLASH_Status status = FLASH_COMPLETE; + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(); + assert_param(IS_VOLTAGERANGE(VoltageRange)); + if(VoltageRange == VoltageRange_1) { tmp_psize = FLASH_PSIZE_BYTE; @@ -439,14 +645,81 @@ FLASH_Status FLASH_EraseAllSectors(uint8_t VoltageRange) /* if the previous operation is completed, proceed to erase all sectors */ FLASH->CR &= CR_PSIZE_MASK; FLASH->CR |= tmp_psize; - FLASH->CR |= FLASH_CR_MER; + FLASH->CR |= FLASH_CR_MER1; FLASH->CR |= FLASH_CR_STRT; /* Wait for last operation to be completed */ status = FLASH_WaitForLastOperation(); /* if the erase operation is completed, disable the MER Bit */ - FLASH->CR &= (~FLASH_CR_MER); + FLASH->CR &= (~FLASH_CR_MER1); + + } + /* Return the Erase Status */ + return status; +} + + +/** + * @brief Erases all FLASH Sectors in Bank 2. + * + * @note This function can be used only for STM32F42xxx/43xxx devices. + * + * @note If an erase and a program operations are requested simultaneously, + * the erase operation is performed before the program one. + * + * @param VoltageRange: The device voltage range which defines the erase parallelism. + * This parameter can be one of the following values: + * @arg VoltageRange_1: when the device voltage range is 1.8V to 2.1V, + * the operation will be done by byte (8-bit) + * @arg VoltageRange_2: when the device voltage range is 2.1V to 2.7V, + * the operation will be done by half word (16-bit) + * @arg VoltageRange_3: when the device voltage range is 2.7V to 3.6V, + * the operation will be done by word (32-bit) + * @arg VoltageRange_4: when the device voltage range is 2.7V to 3.6V + External Vpp, + * the operation will be done by double word (64-bit) + * + * @retval FLASH Status: The returned value can be: FLASH_BUSY, FLASH_ERROR_PROGRAM, + * FLASH_ERROR_WRP, FLASH_ERROR_OPERATION or FLASH_COMPLETE. + */ +FLASH_Status FLASH_EraseAllBank2Sectors(uint8_t VoltageRange) +{ + uint32_t tmp_psize = 0x0; + FLASH_Status status = FLASH_COMPLETE; + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(); + assert_param(IS_VOLTAGERANGE(VoltageRange)); + + if(VoltageRange == VoltageRange_1) + { + tmp_psize = FLASH_PSIZE_BYTE; + } + else if(VoltageRange == VoltageRange_2) + { + tmp_psize = FLASH_PSIZE_HALF_WORD; + } + else if(VoltageRange == VoltageRange_3) + { + tmp_psize = FLASH_PSIZE_WORD; + } + else + { + tmp_psize = FLASH_PSIZE_DOUBLE_WORD; + } + if(status == FLASH_COMPLETE) + { + /* if the previous operation is completed, proceed to erase all sectors */ + FLASH->CR &= CR_PSIZE_MASK; + FLASH->CR |= tmp_psize; + FLASH->CR |= FLASH_CR_MER2; + FLASH->CR |= FLASH_CR_STRT; + + /* Wait for last operation to be completed */ + status = FLASH_WaitForLastOperation(); + + /* if the erase operation is completed, disable the MER Bit */ + FLASH->CR &= (~FLASH_CR_MER2); } /* Return the Erase Status */ @@ -456,7 +729,11 @@ FLASH_Status FLASH_EraseAllSectors(uint8_t VoltageRange) /** * @brief Programs a double word (64-bit) at a specified address. * @note This function must be used when the device voltage range is from - * 2.7V to 3.6V and an External Vpp is present. + * 2.7V to 3.6V and an External Vpp is present. + * + * @note If an erase and a program operations are requested simustaneously, + * the erase operation is performed before the program one. + * * @param Address: specifies the address to be programmed. * @param Data: specifies the data to be programmed. * @retval FLASH Status: The returned value can be: FLASH_BUSY, FLASH_ERROR_PROGRAM, @@ -493,9 +770,14 @@ FLASH_Status FLASH_ProgramDoubleWord(uint32_t Address, uint64_t Data) /** * @brief Programs a word (32-bit) at a specified address. + * + * @note This function must be used when the device voltage range is from 2.7V to 3.6V. + * + * @note If an erase and a program operations are requested simustaneously, + * the erase operation is performed before the program one. + * * @param Address: specifies the address to be programmed. * This parameter can be any address in Program memory zone or in OTP zone. - * @note This function must be used when the device voltage range is from 2.7V to 3.6V. * @param Data: specifies the data to be programmed. * @retval FLASH Status: The returned value can be: FLASH_BUSY, FLASH_ERROR_PROGRAM, * FLASH_ERROR_WRP, FLASH_ERROR_OPERATION or FLASH_COMPLETE. @@ -531,7 +813,11 @@ FLASH_Status FLASH_ProgramWord(uint32_t Address, uint32_t Data) /** * @brief Programs a half word (16-bit) at a specified address. - * @note This function must be used when the device voltage range is from 2.1V to 3.6V. + * @note This function must be used when the device voltage range is from 2.1V to 3.6V. + * + * @note If an erase and a program operations are requested simustaneously, + * the erase operation is performed before the program one. + * * @param Address: specifies the address to be programmed. * This parameter can be any address in Program memory zone or in OTP zone. * @param Data: specifies the data to be programmed. @@ -569,7 +855,11 @@ FLASH_Status FLASH_ProgramHalfWord(uint32_t Address, uint16_t Data) /** * @brief Programs a byte (8-bit) at a specified address. - * @note This function can be used within all the device supply voltage ranges. + * @note This function can be used within all the device supply voltage ranges. + * + * @note If an erase and a program operations are requested simustaneously, + * the erase operation is performed before the program one. + * * @param Address: specifies the address to be programmed. * This parameter can be any address in Program memory zone or in OTP zone. * @param Data: specifies the data to be programmed. @@ -615,42 +905,56 @@ FLASH_Status FLASH_ProgramByte(uint32_t Address, uint8_t Data) * @verbatim =============================================================================== - Option Bytes Programming functions + ##### Option Bytes Programming functions ##### =============================================================================== - - This group includes the following functions: - - void FLASH_OB_Unlock(void) - - void FLASH_OB_Lock(void) - - void FLASH_OB_WRPConfig(uint32_t OB_WRP, FunctionalState NewState) - - void FLASH_OB_RDPConfig(uint8_t OB_RDP) - - void FLASH_OB_UserConfig(uint8_t OB_IWDG, uint8_t OB_STOP, uint8_t OB_STDBY) - - void FLASH_OB_BORConfig(uint8_t OB_BOR) - - FLASH_Status FLASH_ProgramOTP(uint32_t Address, uint32_t Data) - - FLASH_Status FLASH_OB_Launch(void) - - uint32_t FLASH_OB_GetUser(void) - - uint8_t FLASH_OB_GetWRP(void) - - uint8_t FLASH_OB_GetRDP(void) - - uint8_t FLASH_OB_GetBOR(void) - - Any operation of erase or program should follow these steps: - 1. Call the FLASH_OB_Unlock() function to enable the FLASH option control register access - - 2. Call one or several functions to program the desired Option Bytes: - - void FLASH_OB_WRPConfig(uint32_t OB_WRP, FunctionalState NewState) => to Enable/Disable - the desired sector write protection - - void FLASH_OB_RDPConfig(uint8_t OB_RDP) => to set the desired read Protection Level - - void FLASH_OB_UserConfig(uint8_t OB_IWDG, uint8_t OB_STOP, uint8_t OB_STDBY) => to configure - the user Option Bytes. - - void FLASH_OB_BORConfig(uint8_t OB_BOR) => to set the BOR Level - - 3. Once all needed Option Bytes to be programmed are correctly written, call the - FLASH_OB_Launch() function to launch the Option Bytes programming process. + [..] + This group includes the following functions: + (+) void FLASH_OB_Unlock(void) + (+) void FLASH_OB_Lock(void) + (+) void FLASH_OB_WRPConfig(uint32_t OB_WRP, FunctionalState NewState) + (+) void FLASH_OB_WRP1Config(uint32_t OB_WRP, FunctionalState NewState) + (+) void FLASH_OB_PCROPSelectionConfig(uint8_t OB_PCROPSelect) + (+) void FLASH_OB_PCROPConfig(uint32_t OB_PCROP, FunctionalState NewState) + (+) void FLASH_OB_PCROP1Config(uint32_t OB_PCROP, FunctionalState NewState) + (+) void FLASH_OB_RDPConfig(uint8_t OB_RDP) + (+) void FLASH_OB_UserConfig(uint8_t OB_IWDG, uint8_t OB_STOP, uint8_t OB_STDBY) + (+) void FLASH_OB_BORConfig(uint8_t OB_BOR) + (+) FLASH_Status FLASH_ProgramOTP(uint32_t Address, uint32_t Data) + (+) FLASH_Status FLASH_OB_Launch(void) + (+) uint32_t FLASH_OB_GetUser(void) + (+) uint8_t FLASH_OB_GetWRP(void) + (+) uint8_t FLASH_OB_GetWRP1(void) + (+) uint8_t FLASH_OB_GetPCROP(void) + (+) uint8_t FLASH_OB_GetPCROP1(void) + (+) uint8_t FLASH_OB_GetRDP(void) + (+) uint8_t FLASH_OB_GetBOR(void) + [..] + The following function can be used only for STM32F42xxx/43xxx devices. + (+) void FLASH_OB_BootConfig(uint8_t OB_BOOT) + [..] + Any operation of erase or program should follow these steps: + (#) Call the FLASH_OB_Unlock() function to enable the FLASH option control + register access + + (#) Call one or several functions to program the desired Option Bytes: + (++) void FLASH_OB_WRPConfig(uint32_t OB_WRP, FunctionalState NewState) + => to Enable/Disable the desired sector write protection + (++) void FLASH_OB_RDPConfig(uint8_t OB_RDP) => to set the desired read + Protection Level + (++) void FLASH_OB_UserConfig(uint8_t OB_IWDG, uint8_t OB_STOP, uint8_t OB_STDBY) + => to configure the user Option Bytes. + (++) void FLASH_OB_BORConfig(uint8_t OB_BOR) => to set the BOR Level + + (#) Once all needed Option Bytes to be programmed are correctly written, + call the FLASH_OB_Launch() function to launch the Option Bytes + programming process. - @note When changing the IWDG mode from HW to SW or from SW to HW, a system - reset is needed to make the change effective. + -@- When changing the IWDG mode from HW to SW or from SW to HW, a system + reset is needed to make the change effective. - 4. Call the FLASH_OB_Lock() function to disable the FLASH option control register - access (recommended to protect the Option Bytes against possible unwanted operations) + (#) Call the FLASH_OB_Lock() function to disable the FLASH option control + register access (recommended to protect the Option Bytes against + possible unwanted operations) @endverbatim * @{ @@ -683,7 +987,14 @@ void FLASH_OB_Lock(void) } /** - * @brief Enables or disables the write protection of the desired sectors + * @brief Enables or disables the write protection of the desired sectors, for the first + * 1 Mb of the Flash + * + * @note When the memory read protection level is selected (RDP level = 1), + * it is not possible to program or erase the flash sector i if CortexM4 + * debug features are connected or boot code is executed in RAM, even if nWRPi = 1 + * @note Active value of nWRPi bits is inverted when PCROP mode is active (SPRMOD =1). + * * @param OB_WRP: specifies the sector(s) to be write protected or unprotected. * This parameter can be one of the following values: * @arg OB_WRP: A value between OB_WRP_Sector0 and OB_WRP_Sector11 @@ -715,6 +1026,166 @@ void FLASH_OB_WRPConfig(uint32_t OB_WRP, FunctionalState NewState) } } +/** + * @brief Enables or disables the write protection of the desired sectors, for the second + * 1 Mb of the Flash + * + * @note This function can be used only for STM32F42xxx/43xxx devices. + * + * @note When the memory read out protection is selected (RDP level = 1), + * it is not possible to program or erase the flash sector i if CortexM4 + * debug features are connected or boot code is executed in RAM, even if nWRPi = 1 + * @note Active value of nWRPi bits is inverted when PCROP mode is active (SPRMOD =1). + * + * @param OB_WRP: specifies the sector(s) to be write protected or unprotected. + * This parameter can be one of the following values: + * @arg OB_WRP: A value between OB_WRP_Sector12 and OB_WRP_Sector23 + * @arg OB_WRP_Sector_All + * @param Newstate: new state of the Write Protection. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void FLASH_OB_WRP1Config(uint32_t OB_WRP, FunctionalState NewState) +{ + FLASH_Status status = FLASH_COMPLETE; + + /* Check the parameters */ + assert_param(IS_OB_WRP(OB_WRP)); + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + status = FLASH_WaitForLastOperation(); + + if(status == FLASH_COMPLETE) + { + if(NewState != DISABLE) + { + *(__IO uint16_t*)OPTCR1_BYTE2_ADDRESS &= (~OB_WRP); + } + else + { + *(__IO uint16_t*)OPTCR1_BYTE2_ADDRESS |= (uint16_t)OB_WRP; + } + } +} + +/** + * @brief Select the Protection Mode (SPRMOD). + * + * @note This function can be used only for STM32F42xxx/43xxx and STM32F401xx/411xE devices. + * + * @note After PCROP activation, Option Byte modification is not possible. + * Exception made for the global Read Out Protection modification level (level1 to level0) + * @note Once SPRMOD bit is active unprotection of a protected sector is not possible + * + * @note Read a protected sector will set RDERR Flag and write a protected sector will set WRPERR Flag + * + * @note Some Precautions should be taken when activating the PCROP feature : + * The active value of nWRPi bits is inverted when PCROP mode is active, this means if SPRMOD = 1 + * and WRPi = 1 (default value), then the user sector i is read/write protected. + * In order to avoid activation of PCROP Mode for undesired sectors, please follow the + * below safety sequence : + * - Disable PCROP for all Sectors using FLASH_OB_PCROPConfig(OB_PCROP_Sector_All, DISABLE) function + * for Bank1 or FLASH_OB_PCROP1Config(OB_PCROP_Sector_All, DISABLE) function for Bank2 + * - Enable PCROP for the desired Sector i using FLASH_OB_PCROPConfig(Sector i, ENABLE) function + * - Activate the PCROP Mode FLASH_OB_PCROPSelectionConfig() function. + * + * @param OB_PCROP: Select the Protection Mode of nWPRi bits + * This parameter can be one of the following values: + * @arg OB_PcROP_Disable: nWRPi control the write protection of respective user sectors. + * @arg OB_PcROP_Enable: nWRPi control the read&write protection (PCROP) of respective user sectors. + * @retval None + */ +void FLASH_OB_PCROPSelectionConfig(uint8_t OB_PcROP) +{ + uint8_t optiontmp = 0xFF; + + /* Check the parameters */ + assert_param(IS_OB_PCROP_SELECT(OB_PcROP)); + + /* Mask SPRMOD bit */ + optiontmp = (uint8_t)((*(__IO uint8_t *)OPTCR_BYTE3_ADDRESS) & (uint8_t)0x7F); + /* Update Option Byte */ + *(__IO uint8_t *)OPTCR_BYTE3_ADDRESS = (uint8_t)(OB_PcROP | optiontmp); + +} + +/** + * @brief Enables or disables the read/write protection (PCROP) of the desired + * sectors, for the first 1 MB of the Flash. + * + * @note This function can be used only for STM32F42xxx/43xxx and STM32F401xx/411xE devices. + * + * @param OB_PCROP: specifies the sector(s) to be read/write protected or unprotected. + * This parameter can be one of the following values: + * @arg OB_PCROP: A value between OB_PCROP_Sector0 and OB_PCROP_Sector11 for + * STM32F42xxx/43xxx devices and between OB_PCROP_Sector0 and + * OB_PCROP_Sector5 for STM32F401xx/411xE devices. + * @arg OB_PCROP_Sector_All + * @param Newstate: new state of the Write Protection. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void FLASH_OB_PCROPConfig(uint32_t OB_PCROP, FunctionalState NewState) +{ + FLASH_Status status = FLASH_COMPLETE; + + /* Check the parameters */ + assert_param(IS_OB_PCROP(OB_PCROP)); + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + status = FLASH_WaitForLastOperation(); + + if(status == FLASH_COMPLETE) + { + if(NewState != DISABLE) + { + *(__IO uint16_t*)OPTCR_BYTE2_ADDRESS |= (uint16_t)OB_PCROP; + } + else + { + *(__IO uint16_t*)OPTCR_BYTE2_ADDRESS &= (~OB_PCROP); + } + } +} + +/** + * @brief Enables or disables the read/write protection (PCROP) of the desired + * sectors + * + * @note This function can be used only for STM32F42xxx/43xxx devices. + * + * @param OB_PCROP: specifies the sector(s) to be read/write protected or unprotected. + * This parameter can be one of the following values: + * @arg OB_PCROP: A value between OB_PCROP_Sector12 and OB_PCROP_Sector23 + * @arg OB_PCROP_Sector_All + * @param Newstate: new state of the Write Protection. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void FLASH_OB_PCROP1Config(uint32_t OB_PCROP, FunctionalState NewState) +{ + FLASH_Status status = FLASH_COMPLETE; + + /* Check the parameters */ + assert_param(IS_OB_PCROP(OB_PCROP)); + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + status = FLASH_WaitForLastOperation(); + + if(status == FLASH_COMPLETE) + { + if(NewState != DISABLE) + { + *(__IO uint16_t*)OPTCR1_BYTE2_ADDRESS |= (uint16_t)OB_PCROP; + } + else + { + *(__IO uint16_t*)OPTCR1_BYTE2_ADDRESS &= (~OB_PCROP); + } + } +} + + /** * @brief Sets the read protection level. * @param OB_RDP: specifies the read protection level. @@ -723,7 +1194,7 @@ void FLASH_OB_WRPConfig(uint32_t OB_WRP, FunctionalState NewState) * @arg OB_RDP_Level_1: Read protection of the memory * @arg OB_RDP_Level_2: Full chip protection * - * !!!Warning!!! When enabling OB_RDP level 2 it's no more possible to go back to level 1 or 0 + * /!\ Warning /!\ When enabling OB_RDP level 2 it's no more possible to go back to level 1 or 0 * * @retval None */ @@ -774,14 +1245,43 @@ void FLASH_OB_UserConfig(uint8_t OB_IWDG, uint8_t OB_STOP, uint8_t OB_STDBY) if(status == FLASH_COMPLETE) { +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) + /* Mask OPTLOCK, OPTSTRT, BOR_LEV and BFB2 bits */ + optiontmp = (uint8_t)((*(__IO uint8_t *)OPTCR_BYTE0_ADDRESS) & (uint8_t)0x1F); +#endif /* STM32F427_437xx || STM32F429_439xx */ + +#if defined (STM32F40_41xxx) || defined (STM32F401xx) || defined (STM32F411xE) /* Mask OPTLOCK, OPTSTRT and BOR_LEV bits */ optiontmp = (uint8_t)((*(__IO uint8_t *)OPTCR_BYTE0_ADDRESS) & (uint8_t)0x0F); +#endif /* STM32F40_41xxx || STM32F401xx || STM32F411xE */ /* Update User Option Byte */ *(__IO uint8_t *)OPTCR_BYTE0_ADDRESS = OB_IWDG | (uint8_t)(OB_STDBY | (uint8_t)(OB_STOP | ((uint8_t)optiontmp))); } } +/** + * @brief Configure the Dual Bank Boot. + * + * @note This function can be used only for STM32F42xxx/43xxx devices. + * + * @param OB_BOOT: specifies the Dual Bank Boot Option byte. + * This parameter can be one of the following values: + * @arg OB_Dual_BootEnabled: Dual Bank Boot Enable + * @arg OB_Dual_BootDisabled: Dual Bank Boot Disabled + * @retval None + */ +void FLASH_OB_BootConfig(uint8_t OB_BOOT) +{ + /* Check the parameters */ + assert_param(IS_OB_BOOT(OB_BOOT)); + + /* Set Dual Bank Boot */ + *(__IO uint8_t *)OPTCR_BYTE0_ADDRESS &= (~FLASH_OPTCR_BFB2); + *(__IO uint8_t *)OPTCR_BYTE0_ADDRESS |= OB_BOOT; + +} + /** * @brief Sets the BOR Level. * @param OB_BOR: specifies the Option Bytes BOR Reset Level. @@ -845,6 +1345,48 @@ uint16_t FLASH_OB_GetWRP(void) return (*(__IO uint16_t *)(OPTCR_BYTE2_ADDRESS)); } +/** + * @brief Returns the FLASH Write Protection Option Bytes value. + * + * @note This function can be used only for STM32F42xxx/43xxx devices. + * + * @param None + * @retval The FLASH Write Protection Option Bytes value + */ +uint16_t FLASH_OB_GetWRP1(void) +{ + /* Return the FLASH write protection Register value */ + return (*(__IO uint16_t *)(OPTCR1_BYTE2_ADDRESS)); +} + +/** + * @brief Returns the FLASH PC Read/Write Protection Option Bytes value. + * + * @note This function can be used only for STM32F42xxx/43xxx devices and STM32F401xx/411xE devices. + * + * @param None + * @retval The FLASH PC Read/Write Protection Option Bytes value + */ +uint16_t FLASH_OB_GetPCROP(void) +{ + /* Return the FLASH PC Read/write protection Register value */ + return (*(__IO uint16_t *)(OPTCR_BYTE2_ADDRESS)); +} + +/** + * @brief Returns the FLASH PC Read/Write Protection Option Bytes value. + * + * @note This function can be used only for STM32F42xxx/43xxx devices. + * + * @param None + * @retval The FLASH PC Read/Write Protection Option Bytes value + */ +uint16_t FLASH_OB_GetPCROP1(void) +{ + /* Return the FLASH write protection Register value */ + return (*(__IO uint16_t *)(OPTCR1_BYTE2_ADDRESS)); +} + /** * @brief Returns the FLASH Read Protection level. * @param None @@ -891,9 +1433,8 @@ uint8_t FLASH_OB_GetBOR(void) * @verbatim =============================================================================== - Interrupts and flags management functions + ##### Interrupts and flags management functions ##### =============================================================================== - @endverbatim * @{ */ @@ -934,6 +1475,7 @@ void FLASH_ITConfig(uint32_t FLASH_IT, FunctionalState NewState) * @arg FLASH_FLAG_PGAERR: FLASH Programming Alignment error flag * @arg FLASH_FLAG_PGPERR: FLASH Programming Parallelism error flag * @arg FLASH_FLAG_PGSERR: FLASH Programming Sequence error flag + * @arg FLASH_FLAG_RDERR: FLASH (PCROP) Read Protection error flag (STM32F42xx/43xxx and STM32F401xx/411xE devices) * @arg FLASH_FLAG_BSY: FLASH Busy flag * @retval The new state of FLASH_FLAG (SET or RESET). */ @@ -965,6 +1507,7 @@ FlagStatus FLASH_GetFlagStatus(uint32_t FLASH_FLAG) * @arg FLASH_FLAG_PGAERR: FLASH Programming Alignment error flag * @arg FLASH_FLAG_PGPERR: FLASH Programming Parallelism error flag * @arg FLASH_FLAG_PGSERR: FLASH Programming Sequence error flag + * @arg FLASH_FLAG_RDERR: FLASH Read Protection error flag (STM32F42xx/43xxx and STM32F401xx/411xE devices) * @retval None */ void FLASH_ClearFlag(uint32_t FLASH_FLAG) @@ -980,7 +1523,7 @@ void FLASH_ClearFlag(uint32_t FLASH_FLAG) * @brief Returns the FLASH Status. * @param None * @retval FLASH Status: The returned value can be: FLASH_BUSY, FLASH_ERROR_PROGRAM, - * FLASH_ERROR_WRP, FLASH_ERROR_OPERATION or FLASH_COMPLETE. + * FLASH_ERROR_WRP, FLASH_ERROR_RD, FLASH_ERROR_OPERATION or FLASH_COMPLETE. */ FLASH_Status FLASH_GetStatus(void) { @@ -996,21 +1539,28 @@ FLASH_Status FLASH_GetStatus(void) { flashstatus = FLASH_ERROR_WRP; } - else + else { - if((FLASH->SR & (uint32_t)0xEF) != (uint32_t)0x00) - { - flashstatus = FLASH_ERROR_PROGRAM; - } - else + if((FLASH->SR & FLASH_FLAG_RDERR) != (uint32_t)0x00) + { + flashstatus = FLASH_ERROR_RD; + } + else { - if((FLASH->SR & FLASH_FLAG_OPERR) != (uint32_t)0x00) + if((FLASH->SR & (uint32_t)0xEF) != (uint32_t)0x00) { - flashstatus = FLASH_ERROR_OPERATION; + flashstatus = FLASH_ERROR_PROGRAM; } else { - flashstatus = FLASH_COMPLETE; + if((FLASH->SR & FLASH_FLAG_OPERR) != (uint32_t)0x00) + { + flashstatus = FLASH_ERROR_OPERATION; + } + else + { + flashstatus = FLASH_COMPLETE; + } } } } diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_flash_ramfunc.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_flash_ramfunc.c new file mode 100644 index 00000000..11e81b64 --- /dev/null +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_flash_ramfunc.c @@ -0,0 +1,158 @@ +/** + ****************************************************************************** + * @file stm32f4xx_flash_ramfunc.c + * @author MCD Application Team + * @version V1.4.0 + * @date 04-August-2014 + * @brief FLASH RAMFUNC module driver. + * This file provides a FLASH firmware functions which should be + * executed from internal SRAM + * + Stop/Start the flash interface while System Run + * + Enable/Disable the flash sleep while System Run + * + @verbatim + ============================================================================== + ##### APIs executed from Internal RAM ##### + ============================================================================== + [..] + *** ARM Compiler *** + -------------------- + [..] RAM functions are defined using the toolchain options. + Functions that are be executed in RAM should reside in a separate + source module. Using the 'Options for File' dialog you can simply change + the 'Code / Const' area of a module to a memory space in physical RAM. + Available memory areas are declared in the 'Target' tab of the + Options for Target' dialog. + + *** ICCARM Compiler *** + ----------------------- + [..] RAM functions are defined using a specific toolchain keyword "__ramfunc". + + *** GNU Compiler *** + -------------------- + [..] RAM functions are defined using a specific toolchain attribute + "__attribute__((section(".RamFunc")))". + + @endverbatim + ****************************************************************************** + * @attention + * + *

© COPYRIGHT 2014 STMicroelectronics

+ * + * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); + * You may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.st.com/software_license_agreement_liberty_v2 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32f4xx_flash_ramfunc.h" + +/** @addtogroup STM32F4xx_StdPeriph_Driver + * @{ + */ + +/** @defgroup FLASH RAMFUNC + * @brief FLASH RAMFUNC driver modules + * @{ + */ + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/* Private macro -------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private function prototypes -----------------------------------------------*/ +/* Private functions ---------------------------------------------------------*/ + +/** @defgroup FLASH_RAMFUNC_Private_Functions + * @{ + */ + +/** @defgroup FLASH_RAMFUNC_Group1 Peripheral features functions executed from internal RAM + * @brief Peripheral Extended features functions + * +@verbatim + + =============================================================================== + ##### ramfunc functions ##### + =============================================================================== + [..] + This subsection provides a set of functions that should be executed from RAM + transfers. + +@endverbatim + * @{ + */ + +/** + * @brief Start/Stop the flash interface while System Run + * @note This mode is only available for STM32F411xx devices. + * @note This mode could n't be set while executing with the flash itself. + * It should be done with specific routine executed from RAM. + * @param NewState: new state of the Smart Card mode. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +__RAM_FUNC FLASH_FlashInterfaceCmd(FunctionalState NewState) +{ + if (NewState != DISABLE) + { + /* Start the flash interface while System Run */ + CLEAR_BIT(PWR->CR, PWR_CR_FISSR); + } + else + { + /* Stop the flash interface while System Run */ + SET_BIT(PWR->CR, PWR_CR_FISSR); + } +} + +/** + * @brief Enable/Disable the flash sleep while System Run + * @note This mode is only available for STM32F411xx devices. + * @note This mode could n't be set while executing with the flash itself. + * It should be done with specific routine executed from RAM. + * @param NewState: new state of the Smart Card mode. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +__RAM_FUNC FLASH_FlashSleepModeCmd(FunctionalState NewState) +{ + if (NewState != DISABLE) + { + /* Enable the flash sleep while System Run */ + SET_BIT(PWR->CR, PWR_CR_FMSSR); + } + else + { + /* Disable the flash sleep while System Run */ + CLEAR_BIT(PWR->CR, PWR_CR_FMSSR); + } +} + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_fmc.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_fmc.c new file mode 100644 index 00000000..fd81167e --- /dev/null +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_fmc.c @@ -0,0 +1,1367 @@ +/** + ****************************************************************************** + * @file stm32f4xx_fmc.c + * @author MCD Application Team + * @version V1.4.0 + * @date 04-August-2014 + * @brief This file provides firmware functions to manage the following + * functionalities of the FMC peripheral: + * + Interface with SRAM, PSRAM, NOR and OneNAND memories + * + Interface with NAND memories + * + Interface with 16-bit PC Card compatible memories + * + Interface with SDRAM memories + * + Interrupts and flags management + * + ****************************************************************************** + * @attention + * + *

© COPYRIGHT 2014 STMicroelectronics

+ * + * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); + * You may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.st.com/software_license_agreement_liberty_v2 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32f4xx_fmc.h" +#include "stm32f4xx_rcc.h" + +/** @addtogroup STM32F4xx_StdPeriph_Driver + * @{ + */ + +/** @defgroup FMC + * @brief FMC driver modules + * @{ + */ + +/* Private typedef -----------------------------------------------------------*/ +const FMC_NORSRAMTimingInitTypeDef FMC_DefaultTimingStruct = {0x0F, /* FMC_AddressSetupTime */ + 0x0F, /* FMC_AddressHoldTime */ + 0xFF, /* FMC_DataSetupTime */ + 0x0F, /* FMC_BusTurnAroundDuration */ + 0x0F, /* FMC_CLKDivision */ + 0x0F, /* FMC_DataLatency */ + FMC_AccessMode_A /* FMC_AccessMode */ + }; +/* --------------------- FMC registers bit mask ---------------------------- */ +/* FMC BCRx Mask */ +#define BCR_MBKEN_SET ((uint32_t)0x00000001) +#define BCR_MBKEN_RESET ((uint32_t)0x000FFFFE) +#define BCR_FACCEN_SET ((uint32_t)0x00000040) + +/* FMC PCRx Mask */ +#define PCR_PBKEN_SET ((uint32_t)0x00000004) +#define PCR_PBKEN_RESET ((uint32_t)0x000FFFFB) +#define PCR_ECCEN_SET ((uint32_t)0x00000040) +#define PCR_ECCEN_RESET ((uint32_t)0x000FFFBF) +#define PCR_MEMORYTYPE_NAND ((uint32_t)0x00000008) + +/* FMC SDCRx write protection Mask*/ +#define SDCR_WriteProtection_RESET ((uint32_t)0x00007DFF) + +/* FMC SDCMR Mask*/ +#define SDCMR_CTB1_RESET ((uint32_t)0x003FFFEF) +#define SDCMR_CTB2_RESET ((uint32_t)0x003FFFF7) +#define SDCMR_CTB1_2_RESET ((uint32_t)0x003FFFE7) + +/* Private macro -------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private function prototypes -----------------------------------------------*/ +/* Private functions ---------------------------------------------------------*/ + +/** @defgroup FMC_Private_Functions + * @{ + */ + +/** @defgroup FMC_Group1 NOR/SRAM Controller functions + * @brief NOR/SRAM Controller functions + * +@verbatim + =============================================================================== + ##### NOR and SRAM Controller functions ##### + =============================================================================== + + [..] The following sequence should be followed to configure the FMC to interface + with SRAM, PSRAM, NOR or OneNAND memory connected to the NOR/SRAM Bank: + + (#) Enable the clock for the FMC and associated GPIOs using the following functions: + RCC_AHB3PeriphClockCmd(RCC_AHB3Periph_FMC, ENABLE); + RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOx, ENABLE); + + (#) FMC pins configuration + (++) Connect the involved FMC pins to AF12 using the following function + GPIO_PinAFConfig(GPIOx, GPIO_PinSourcex, GPIO_AF_FMC); + (++) Configure these FMC pins in alternate function mode by calling the function + GPIO_Init(); + + (#) Declare a FMC_NORSRAMInitTypeDef structure, for example: + FMC_NORSRAMInitTypeDef FMC_NORSRAMInitStructure; + and fill the FMC_NORSRAMInitStructure variable with the allowed values of + the structure member. + + (#) Initialize the NOR/SRAM Controller by calling the function + FMC_NORSRAMInit(&FMC_NORSRAMInitStructure); + + (#) Then enable the NOR/SRAM Bank, for example: + FMC_NORSRAMCmd(FMC_Bank1_NORSRAM2, ENABLE); + + (#) At this stage you can read/write from/to the memory connected to the NOR/SRAM Bank. + +@endverbatim + * @{ + */ + +/** + * @brief De-initializes the FMC NOR/SRAM Banks registers to their default + * reset values. + * @param FMC_Bank: specifies the FMC Bank to be used + * This parameter can be one of the following values: + * @arg FMC_Bank1_NORSRAM1: FMC Bank1 NOR/SRAM1 + * @arg FMC_Bank1_NORSRAM2: FMC Bank1 NOR/SRAM2 + * @arg FMC_Bank1_NORSRAM3: FMC Bank1 NOR/SRAM3 + * @arg FMC_Bank1_NORSRAM4: FMC Bank1 NOR/SRAM4 + * @retval None + */ +void FMC_NORSRAMDeInit(uint32_t FMC_Bank) +{ + /* Check the parameter */ + assert_param(IS_FMC_NORSRAM_BANK(FMC_Bank)); + + /* FMC_Bank1_NORSRAM1 */ + if(FMC_Bank == FMC_Bank1_NORSRAM1) + { + FMC_Bank1->BTCR[FMC_Bank] = 0x000030DB; + } + /* FMC_Bank1_NORSRAM2, FMC_Bank1_NORSRAM3 or FMC_Bank1_NORSRAM4 */ + else + { + FMC_Bank1->BTCR[FMC_Bank] = 0x000030D2; + } + FMC_Bank1->BTCR[FMC_Bank + 1] = 0x0FFFFFFF; + FMC_Bank1E->BWTR[FMC_Bank] = 0x0FFFFFFF; +} + +/** + * @brief Initializes the FMC NOR/SRAM Banks according to the specified + * parameters in the FMC_NORSRAMInitStruct. + * @param FMC_NORSRAMInitStruct : pointer to a FMC_NORSRAMInitTypeDef structure + * that contains the configuration information for the FMC NOR/SRAM + * specified Banks. + * @retval None + */ +void FMC_NORSRAMInit(FMC_NORSRAMInitTypeDef* FMC_NORSRAMInitStruct) +{ + uint32_t tmpr = 0; + + /* Check the parameters */ + assert_param(IS_FMC_NORSRAM_BANK(FMC_NORSRAMInitStruct->FMC_Bank)); + assert_param(IS_FMC_MUX(FMC_NORSRAMInitStruct->FMC_DataAddressMux)); + assert_param(IS_FMC_MEMORY(FMC_NORSRAMInitStruct->FMC_MemoryType)); + assert_param(IS_FMC_NORSRAM_MEMORY_WIDTH(FMC_NORSRAMInitStruct->FMC_MemoryDataWidth)); + assert_param(IS_FMC_BURSTMODE(FMC_NORSRAMInitStruct->FMC_BurstAccessMode)); + assert_param(IS_FMC_WAIT_POLARITY(FMC_NORSRAMInitStruct->FMC_WaitSignalPolarity)); + assert_param(IS_FMC_WRAP_MODE(FMC_NORSRAMInitStruct->FMC_WrapMode)); + assert_param(IS_FMC_WAIT_SIGNAL_ACTIVE(FMC_NORSRAMInitStruct->FMC_WaitSignalActive)); + assert_param(IS_FMC_WRITE_OPERATION(FMC_NORSRAMInitStruct->FMC_WriteOperation)); + assert_param(IS_FMC_WAITE_SIGNAL(FMC_NORSRAMInitStruct->FMC_WaitSignal)); + assert_param(IS_FMC_EXTENDED_MODE(FMC_NORSRAMInitStruct->FMC_ExtendedMode)); + assert_param(IS_FMC_ASYNWAIT(FMC_NORSRAMInitStruct->FMC_AsynchronousWait)); + assert_param(IS_FMC_WRITE_BURST(FMC_NORSRAMInitStruct->FMC_WriteBurst)); + assert_param(IS_FMC_CONTINOUS_CLOCK(FMC_NORSRAMInitStruct->FMC_ContinousClock)); + assert_param(IS_FMC_ADDRESS_SETUP_TIME(FMC_NORSRAMInitStruct->FMC_ReadWriteTimingStruct->FMC_AddressSetupTime)); + assert_param(IS_FMC_ADDRESS_HOLD_TIME(FMC_NORSRAMInitStruct->FMC_ReadWriteTimingStruct->FMC_AddressHoldTime)); + assert_param(IS_FMC_DATASETUP_TIME(FMC_NORSRAMInitStruct->FMC_ReadWriteTimingStruct->FMC_DataSetupTime)); + assert_param(IS_FMC_TURNAROUND_TIME(FMC_NORSRAMInitStruct->FMC_ReadWriteTimingStruct->FMC_BusTurnAroundDuration)); + assert_param(IS_FMC_CLK_DIV(FMC_NORSRAMInitStruct->FMC_ReadWriteTimingStruct->FMC_CLKDivision)); + assert_param(IS_FMC_DATA_LATENCY(FMC_NORSRAMInitStruct->FMC_ReadWriteTimingStruct->FMC_DataLatency)); + assert_param(IS_FMC_ACCESS_MODE(FMC_NORSRAMInitStruct->FMC_ReadWriteTimingStruct->FMC_AccessMode)); + + /* NOR/SRAM Bank control register configuration */ + FMC_Bank1->BTCR[FMC_NORSRAMInitStruct->FMC_Bank] = + (uint32_t)FMC_NORSRAMInitStruct->FMC_DataAddressMux | + FMC_NORSRAMInitStruct->FMC_MemoryType | + FMC_NORSRAMInitStruct->FMC_MemoryDataWidth | + FMC_NORSRAMInitStruct->FMC_BurstAccessMode | + FMC_NORSRAMInitStruct->FMC_WaitSignalPolarity | + FMC_NORSRAMInitStruct->FMC_WrapMode | + FMC_NORSRAMInitStruct->FMC_WaitSignalActive | + FMC_NORSRAMInitStruct->FMC_WriteOperation | + FMC_NORSRAMInitStruct->FMC_WaitSignal | + FMC_NORSRAMInitStruct->FMC_ExtendedMode | + FMC_NORSRAMInitStruct->FMC_AsynchronousWait | + FMC_NORSRAMInitStruct->FMC_WriteBurst | + FMC_NORSRAMInitStruct->FMC_ContinousClock; + + + if(FMC_NORSRAMInitStruct->FMC_MemoryType == FMC_MemoryType_NOR) + { + FMC_Bank1->BTCR[FMC_NORSRAMInitStruct->FMC_Bank] |= (uint32_t)BCR_FACCEN_SET; + } + + /* Configure Continuous clock feature when bank2..4 is used */ + if((FMC_NORSRAMInitStruct->FMC_ContinousClock == FMC_CClock_SyncAsync) && (FMC_NORSRAMInitStruct->FMC_Bank != FMC_Bank1_NORSRAM1)) + { + tmpr = (uint32_t)((FMC_Bank1->BTCR[FMC_Bank1_NORSRAM1+1]) & ~(((uint32_t)0x0F) << 20)); + + FMC_Bank1->BTCR[FMC_Bank1_NORSRAM1] |= FMC_NORSRAMInitStruct->FMC_ContinousClock; + FMC_Bank1->BTCR[FMC_Bank1_NORSRAM1] |= FMC_BurstAccessMode_Enable; + FMC_Bank1->BTCR[FMC_Bank1_NORSRAM1+1] = (uint32_t)(tmpr | (((FMC_NORSRAMInitStruct->FMC_ReadWriteTimingStruct->FMC_CLKDivision)-1) << 20)); + } + + /* NOR/SRAM Bank timing register configuration */ + FMC_Bank1->BTCR[FMC_NORSRAMInitStruct->FMC_Bank+1] = + (uint32_t)FMC_NORSRAMInitStruct->FMC_ReadWriteTimingStruct->FMC_AddressSetupTime | + (FMC_NORSRAMInitStruct->FMC_ReadWriteTimingStruct->FMC_AddressHoldTime << 4) | + (FMC_NORSRAMInitStruct->FMC_ReadWriteTimingStruct->FMC_DataSetupTime << 8) | + (FMC_NORSRAMInitStruct->FMC_ReadWriteTimingStruct->FMC_BusTurnAroundDuration << 16) | + ((FMC_NORSRAMInitStruct->FMC_ReadWriteTimingStruct->FMC_CLKDivision) << 20) | + ((FMC_NORSRAMInitStruct->FMC_ReadWriteTimingStruct->FMC_DataLatency) << 24) | + FMC_NORSRAMInitStruct->FMC_ReadWriteTimingStruct->FMC_AccessMode; + + /* NOR/SRAM Bank timing register for write configuration, if extended mode is used */ + if(FMC_NORSRAMInitStruct->FMC_ExtendedMode == FMC_ExtendedMode_Enable) + { + assert_param(IS_FMC_ADDRESS_SETUP_TIME(FMC_NORSRAMInitStruct->FMC_WriteTimingStruct->FMC_AddressSetupTime)); + assert_param(IS_FMC_ADDRESS_HOLD_TIME(FMC_NORSRAMInitStruct->FMC_WriteTimingStruct->FMC_AddressHoldTime)); + assert_param(IS_FMC_DATASETUP_TIME(FMC_NORSRAMInitStruct->FMC_WriteTimingStruct->FMC_DataSetupTime)); + assert_param(IS_FMC_CLK_DIV(FMC_NORSRAMInitStruct->FMC_WriteTimingStruct->FMC_CLKDivision)); + assert_param(IS_FMC_DATA_LATENCY(FMC_NORSRAMInitStruct->FMC_WriteTimingStruct->FMC_DataLatency)); + assert_param(IS_FMC_ACCESS_MODE(FMC_NORSRAMInitStruct->FMC_WriteTimingStruct->FMC_AccessMode)); + + FMC_Bank1E->BWTR[FMC_NORSRAMInitStruct->FMC_Bank] = + (uint32_t)FMC_NORSRAMInitStruct->FMC_WriteTimingStruct->FMC_AddressSetupTime | + (FMC_NORSRAMInitStruct->FMC_WriteTimingStruct->FMC_AddressHoldTime << 4 )| + (FMC_NORSRAMInitStruct->FMC_WriteTimingStruct->FMC_DataSetupTime << 8) | + ((FMC_NORSRAMInitStruct->FMC_WriteTimingStruct->FMC_CLKDivision) << 20) | + ((FMC_NORSRAMInitStruct->FMC_WriteTimingStruct->FMC_DataLatency) << 24) | + FMC_NORSRAMInitStruct->FMC_WriteTimingStruct->FMC_AccessMode; + } + else + { + FMC_Bank1E->BWTR[FMC_NORSRAMInitStruct->FMC_Bank] = 0x0FFFFFFF; + } + +} + +/** + * @brief Fills each FMC_NORSRAMInitStruct member with its default value. + * @param FMC_NORSRAMInitStruct: pointer to a FMC_NORSRAMInitTypeDef structure + * which will be initialized. + * @retval None + */ +void FMC_NORSRAMStructInit(FMC_NORSRAMInitTypeDef* FMC_NORSRAMInitStruct) +{ + /* Reset NOR/SRAM Init structure parameters values */ + FMC_NORSRAMInitStruct->FMC_Bank = FMC_Bank1_NORSRAM1; + FMC_NORSRAMInitStruct->FMC_DataAddressMux = FMC_DataAddressMux_Enable; + FMC_NORSRAMInitStruct->FMC_MemoryType = FMC_MemoryType_SRAM; + FMC_NORSRAMInitStruct->FMC_MemoryDataWidth = FMC_NORSRAM_MemoryDataWidth_16b; + FMC_NORSRAMInitStruct->FMC_BurstAccessMode = FMC_BurstAccessMode_Disable; + FMC_NORSRAMInitStruct->FMC_AsynchronousWait = FMC_AsynchronousWait_Disable; + FMC_NORSRAMInitStruct->FMC_WaitSignalPolarity = FMC_WaitSignalPolarity_Low; + FMC_NORSRAMInitStruct->FMC_WrapMode = FMC_WrapMode_Disable; + FMC_NORSRAMInitStruct->FMC_WaitSignalActive = FMC_WaitSignalActive_BeforeWaitState; + FMC_NORSRAMInitStruct->FMC_WriteOperation = FMC_WriteOperation_Enable; + FMC_NORSRAMInitStruct->FMC_WaitSignal = FMC_WaitSignal_Enable; + FMC_NORSRAMInitStruct->FMC_ExtendedMode = FMC_ExtendedMode_Disable; + FMC_NORSRAMInitStruct->FMC_WriteBurst = FMC_WriteBurst_Disable; + FMC_NORSRAMInitStruct->FMC_ContinousClock = FMC_CClock_SyncOnly; + + FMC_NORSRAMInitStruct->FMC_ReadWriteTimingStruct = (FMC_NORSRAMTimingInitTypeDef*)&FMC_DefaultTimingStruct; + FMC_NORSRAMInitStruct->FMC_WriteTimingStruct = (FMC_NORSRAMTimingInitTypeDef*)&FMC_DefaultTimingStruct; +} + +/** + * @brief Enables or disables the specified NOR/SRAM Memory Bank. + * @param FMC_Bank: specifies the FMC Bank to be used + * This parameter can be one of the following values: + * @arg FMC_Bank1_NORSRAM1: FMC Bank1 NOR/SRAM1 + * @arg FMC_Bank1_NORSRAM2: FMC Bank1 NOR/SRAM2 + * @arg FMC_Bank1_NORSRAM3: FMC Bank1 NOR/SRAM3 + * @arg FMC_Bank1_NORSRAM4: FMC Bank1 NOR/SRAM4 + * @param NewState: new state of the FMC_Bank. This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void FMC_NORSRAMCmd(uint32_t FMC_Bank, FunctionalState NewState) +{ + assert_param(IS_FMC_NORSRAM_BANK(FMC_Bank)); + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + /* Enable the selected NOR/SRAM Bank by setting the PBKEN bit in the BCRx register */ + FMC_Bank1->BTCR[FMC_Bank] |= BCR_MBKEN_SET; + } + else + { + /* Disable the selected NOR/SRAM Bank by clearing the PBKEN bit in the BCRx register */ + FMC_Bank1->BTCR[FMC_Bank] &= BCR_MBKEN_RESET; + } +} +/** + * @} + */ + +/** @defgroup FMC_Group2 NAND Controller functions + * @brief NAND Controller functions + * +@verbatim + =============================================================================== + ##### NAND Controller functions ##### + =============================================================================== + + [..] The following sequence should be followed to configure the FMC to interface + with 8-bit or 16-bit NAND memory connected to the NAND Bank: + + (#) Enable the clock for the FMC and associated GPIOs using the following functions: + (++) RCC_AHB3PeriphClockCmd(RCC_AHB3Periph_FMC, ENABLE); + (++) RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOx, ENABLE); + + (#) FMC pins configuration + (++) Connect the involved FMC pins to AF12 using the following function + GPIO_PinAFConfig(GPIOx, GPIO_PinSourcex, GPIO_AF_FMC); + (++) Configure these FMC pins in alternate function mode by calling the function + GPIO_Init(); + + (#) Declare a FMC_NANDInitTypeDef structure, for example: + FMC_NANDInitTypeDef FMC_NANDInitStructure; + and fill the FMC_NANDInitStructure variable with the allowed values of + the structure member. + + (#) Initialize the NAND Controller by calling the function + FMC_NANDInit(&FMC_NANDInitStructure); + + (#) Then enable the NAND Bank, for example: + FMC_NANDCmd(FMC_Bank3_NAND, ENABLE); + + (#) At this stage you can read/write from/to the memory connected to the NAND Bank. + + [..] + (@) To enable the Error Correction Code (ECC), you have to use the function + FMC_NANDECCCmd(FMC_Bank3_NAND, ENABLE); + [..] + (@) and to get the current ECC value you have to use the function + ECCval = FMC_GetECC(FMC_Bank3_NAND); + +@endverbatim + * @{ + */ + +/** + * @brief De-initializes the FMC NAND Banks registers to their default reset values. + * @param FMC_Bank: specifies the FMC Bank to be used + * This parameter can be one of the following values: + * @arg FMC_Bank2_NAND: FMC Bank2 NAND + * @arg FMC_Bank3_NAND: FMC Bank3 NAND + * @retval None + */ +void FMC_NANDDeInit(uint32_t FMC_Bank) +{ + /* Check the parameter */ + assert_param(IS_FMC_NAND_BANK(FMC_Bank)); + + if(FMC_Bank == FMC_Bank2_NAND) + { + /* Set the FMC_Bank2 registers to their reset values */ + FMC_Bank2->PCR2 = 0x00000018; + FMC_Bank2->SR2 = 0x00000040; + FMC_Bank2->PMEM2 = 0xFCFCFCFC; + FMC_Bank2->PATT2 = 0xFCFCFCFC; + } + /* FMC_Bank3_NAND */ + else + { + /* Set the FMC_Bank3 registers to their reset values */ + FMC_Bank3->PCR3 = 0x00000018; + FMC_Bank3->SR3 = 0x00000040; + FMC_Bank3->PMEM3 = 0xFCFCFCFC; + FMC_Bank3->PATT3 = 0xFCFCFCFC; + } +} + +/** + * @brief Initializes the FMC NAND Banks according to the specified parameters + * in the FMC_NANDInitStruct. + * @param FMC_NANDInitStruct : pointer to a FMC_NANDInitTypeDef structure that + * contains the configuration information for the FMC NAND specified Banks. + * @retval None + */ +void FMC_NANDInit(FMC_NANDInitTypeDef* FMC_NANDInitStruct) +{ + uint32_t tmppcr = 0x00000000, tmppmem = 0x00000000, tmppatt = 0x00000000; + + /* Check the parameters */ + assert_param(IS_FMC_NAND_BANK(FMC_NANDInitStruct->FMC_Bank)); + assert_param(IS_FMC_WAIT_FEATURE(FMC_NANDInitStruct->FMC_Waitfeature)); + assert_param(IS_FMC_NAND_MEMORY_WIDTH(FMC_NANDInitStruct->FMC_MemoryDataWidth)); + assert_param(IS_FMC_ECC_STATE(FMC_NANDInitStruct->FMC_ECC)); + assert_param(IS_FMC_ECCPAGE_SIZE(FMC_NANDInitStruct->FMC_ECCPageSize)); + assert_param(IS_FMC_TCLR_TIME(FMC_NANDInitStruct->FMC_TCLRSetupTime)); + assert_param(IS_FMC_TAR_TIME(FMC_NANDInitStruct->FMC_TARSetupTime)); + assert_param(IS_FMC_SETUP_TIME(FMC_NANDInitStruct->FMC_CommonSpaceTimingStruct->FMC_SetupTime)); + assert_param(IS_FMC_WAIT_TIME(FMC_NANDInitStruct->FMC_CommonSpaceTimingStruct->FMC_WaitSetupTime)); + assert_param(IS_FMC_HOLD_TIME(FMC_NANDInitStruct->FMC_CommonSpaceTimingStruct->FMC_HoldSetupTime)); + assert_param(IS_FMC_HIZ_TIME(FMC_NANDInitStruct->FMC_CommonSpaceTimingStruct->FMC_HiZSetupTime)); + assert_param(IS_FMC_SETUP_TIME(FMC_NANDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_SetupTime)); + assert_param(IS_FMC_WAIT_TIME(FMC_NANDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_WaitSetupTime)); + assert_param(IS_FMC_HOLD_TIME(FMC_NANDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_HoldSetupTime)); + assert_param(IS_FMC_HIZ_TIME(FMC_NANDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_HiZSetupTime)); + + /* Set the tmppcr value according to FMC_NANDInitStruct parameters */ + tmppcr = (uint32_t)FMC_NANDInitStruct->FMC_Waitfeature | + PCR_MEMORYTYPE_NAND | + FMC_NANDInitStruct->FMC_MemoryDataWidth | + FMC_NANDInitStruct->FMC_ECC | + FMC_NANDInitStruct->FMC_ECCPageSize | + (FMC_NANDInitStruct->FMC_TCLRSetupTime << 9 )| + (FMC_NANDInitStruct->FMC_TARSetupTime << 13); + + /* Set tmppmem value according to FMC_CommonSpaceTimingStructure parameters */ + tmppmem = (uint32_t)FMC_NANDInitStruct->FMC_CommonSpaceTimingStruct->FMC_SetupTime | + (FMC_NANDInitStruct->FMC_CommonSpaceTimingStruct->FMC_WaitSetupTime << 8) | + (FMC_NANDInitStruct->FMC_CommonSpaceTimingStruct->FMC_HoldSetupTime << 16)| + (FMC_NANDInitStruct->FMC_CommonSpaceTimingStruct->FMC_HiZSetupTime << 24); + + /* Set tmppatt value according to FMC_AttributeSpaceTimingStructure parameters */ + tmppatt = (uint32_t)FMC_NANDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_SetupTime | + (FMC_NANDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_WaitSetupTime << 8) | + (FMC_NANDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_HoldSetupTime << 16)| + (FMC_NANDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_HiZSetupTime << 24); + + if(FMC_NANDInitStruct->FMC_Bank == FMC_Bank2_NAND) + { + /* FMC_Bank2_NAND registers configuration */ + FMC_Bank2->PCR2 = tmppcr; + FMC_Bank2->PMEM2 = tmppmem; + FMC_Bank2->PATT2 = tmppatt; + } + else + { + /* FMC_Bank3_NAND registers configuration */ + FMC_Bank3->PCR3 = tmppcr; + FMC_Bank3->PMEM3 = tmppmem; + FMC_Bank3->PATT3 = tmppatt; + } +} + + +/** + * @brief Fills each FMC_NANDInitStruct member with its default value. + * @param FMC_NANDInitStruct: pointer to a FMC_NANDInitTypeDef structure which + * will be initialized. + * @retval None + */ +void FMC_NANDStructInit(FMC_NANDInitTypeDef* FMC_NANDInitStruct) +{ + /* Reset NAND Init structure parameters values */ + FMC_NANDInitStruct->FMC_Bank = FMC_Bank2_NAND; + FMC_NANDInitStruct->FMC_Waitfeature = FMC_Waitfeature_Disable; + FMC_NANDInitStruct->FMC_MemoryDataWidth = FMC_NAND_MemoryDataWidth_16b; + FMC_NANDInitStruct->FMC_ECC = FMC_ECC_Disable; + FMC_NANDInitStruct->FMC_ECCPageSize = FMC_ECCPageSize_256Bytes; + FMC_NANDInitStruct->FMC_TCLRSetupTime = 0x0; + FMC_NANDInitStruct->FMC_TARSetupTime = 0x0; + FMC_NANDInitStruct->FMC_CommonSpaceTimingStruct->FMC_SetupTime = 252; + FMC_NANDInitStruct->FMC_CommonSpaceTimingStruct->FMC_WaitSetupTime = 252; + FMC_NANDInitStruct->FMC_CommonSpaceTimingStruct->FMC_HoldSetupTime = 252; + FMC_NANDInitStruct->FMC_CommonSpaceTimingStruct->FMC_HiZSetupTime = 252; + FMC_NANDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_SetupTime = 252; + FMC_NANDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_WaitSetupTime = 252; + FMC_NANDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_HoldSetupTime = 252; + FMC_NANDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_HiZSetupTime = 252; +} + +/** + * @brief Enables or disables the specified NAND Memory Bank. + * @param FMC_Bank: specifies the FMC Bank to be used + * This parameter can be one of the following values: + * @arg FMC_Bank2_NAND: FMC Bank2 NAND + * @arg FMC_Bank3_NAND: FMC Bank3 NAND + * @param NewState: new state of the FMC_Bank. This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void FMC_NANDCmd(uint32_t FMC_Bank, FunctionalState NewState) +{ + assert_param(IS_FMC_NAND_BANK(FMC_Bank)); + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + /* Enable the selected NAND Bank by setting the PBKEN bit in the PCRx register */ + if(FMC_Bank == FMC_Bank2_NAND) + { + FMC_Bank2->PCR2 |= PCR_PBKEN_SET; + } + else + { + FMC_Bank3->PCR3 |= PCR_PBKEN_SET; + } + } + else + { + /* Disable the selected NAND Bank by clearing the PBKEN bit in the PCRx register */ + if(FMC_Bank == FMC_Bank2_NAND) + { + FMC_Bank2->PCR2 &= PCR_PBKEN_RESET; + } + else + { + FMC_Bank3->PCR3 &= PCR_PBKEN_RESET; + } + } +} +/** + * @brief Enables or disables the FMC NAND ECC feature. + * @param FMC_Bank: specifies the FMC Bank to be used + * This parameter can be one of the following values: + * @arg FMC_Bank2_NAND: FMC Bank2 NAND + * @arg FMC_Bank3_NAND: FMC Bank3 NAND + * @param NewState: new state of the FMC NAND ECC feature. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void FMC_NANDECCCmd(uint32_t FMC_Bank, FunctionalState NewState) +{ + assert_param(IS_FMC_NAND_BANK(FMC_Bank)); + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + /* Enable the selected NAND Bank ECC function by setting the ECCEN bit in the PCRx register */ + if(FMC_Bank == FMC_Bank2_NAND) + { + FMC_Bank2->PCR2 |= PCR_ECCEN_SET; + } + else + { + FMC_Bank3->PCR3 |= PCR_ECCEN_SET; + } + } + else + { + /* Disable the selected NAND Bank ECC function by clearing the ECCEN bit in the PCRx register */ + if(FMC_Bank == FMC_Bank2_NAND) + { + FMC_Bank2->PCR2 &= PCR_ECCEN_RESET; + } + else + { + FMC_Bank3->PCR3 &= PCR_ECCEN_RESET; + } + } +} + +/** + * @brief Returns the error correction code register value. + * @param FMC_Bank: specifies the FMC Bank to be used + * This parameter can be one of the following values: + * @arg FMC_Bank2_NAND: FMC Bank2 NAND + * @arg FMC_Bank3_NAND: FMC Bank3 NAND + * @retval The Error Correction Code (ECC) value. + */ +uint32_t FMC_GetECC(uint32_t FMC_Bank) +{ + uint32_t eccval = 0x00000000; + + if(FMC_Bank == FMC_Bank2_NAND) + { + /* Get the ECCR2 register value */ + eccval = FMC_Bank2->ECCR2; + } + else + { + /* Get the ECCR3 register value */ + eccval = FMC_Bank3->ECCR3; + } + /* Return the error correction code value */ + return(eccval); +} +/** + * @} + */ + +/** @defgroup FMC_Group3 PCCARD Controller functions + * @brief PCCARD Controller functions + * +@verbatim + =============================================================================== + ##### PCCARD Controller functions ##### + =============================================================================== + + [..] he following sequence should be followed to configure the FMC to interface + with 16-bit PC Card compatible memory connected to the PCCARD Bank: + + (#) Enable the clock for the FMC and associated GPIOs using the following functions: + (++) RCC_AHB3PeriphClockCmd(RCC_AHB3Periph_FMC, ENABLE); + (++) RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOx, ENABLE); + + (#) FMC pins configuration + (++) Connect the involved FMC pins to AF12 using the following function + GPIO_PinAFConfig(GPIOx, GPIO_PinSourcex, GPIO_AF_FMC); + (++) Configure these FMC pins in alternate function mode by calling the function + GPIO_Init(); + + (#) Declare a FMC_PCCARDInitTypeDef structure, for example: + FMC_PCCARDInitTypeDef FMC_PCCARDInitStructure; + and fill the FMC_PCCARDInitStructure variable with the allowed values of + the structure member. + + (#) Initialize the PCCARD Controller by calling the function + FMC_PCCARDInit(&FMC_PCCARDInitStructure); + + (#) Then enable the PCCARD Bank: + FMC_PCCARDCmd(ENABLE); + + (#) At this stage you can read/write from/to the memory connected to the PCCARD Bank. + +@endverbatim + * @{ + */ + +/** + * @brief De-initializes the FMC PCCARD Bank registers to their default reset values. + * @param None + * @retval None + */ +void FMC_PCCARDDeInit(void) +{ + /* Set the FMC_Bank4 registers to their reset values */ + FMC_Bank4->PCR4 = 0x00000018; + FMC_Bank4->SR4 = 0x00000000; + FMC_Bank4->PMEM4 = 0xFCFCFCFC; + FMC_Bank4->PATT4 = 0xFCFCFCFC; + FMC_Bank4->PIO4 = 0xFCFCFCFC; +} + +/** + * @brief Initializes the FMC PCCARD Bank according to the specified parameters + * in the FMC_PCCARDInitStruct. + * @param FMC_PCCARDInitStruct : pointer to a FMC_PCCARDInitTypeDef structure + * that contains the configuration information for the FMC PCCARD Bank. + * @retval None + */ +void FMC_PCCARDInit(FMC_PCCARDInitTypeDef* FMC_PCCARDInitStruct) +{ + /* Check the parameters */ + assert_param(IS_FMC_WAIT_FEATURE(FMC_PCCARDInitStruct->FMC_Waitfeature)); + assert_param(IS_FMC_TCLR_TIME(FMC_PCCARDInitStruct->FMC_TCLRSetupTime)); + assert_param(IS_FMC_TAR_TIME(FMC_PCCARDInitStruct->FMC_TARSetupTime)); + + assert_param(IS_FMC_SETUP_TIME(FMC_PCCARDInitStruct->FMC_CommonSpaceTimingStruct->FMC_SetupTime)); + assert_param(IS_FMC_WAIT_TIME(FMC_PCCARDInitStruct->FMC_CommonSpaceTimingStruct->FMC_WaitSetupTime)); + assert_param(IS_FMC_HOLD_TIME(FMC_PCCARDInitStruct->FMC_CommonSpaceTimingStruct->FMC_HoldSetupTime)); + assert_param(IS_FMC_HIZ_TIME(FMC_PCCARDInitStruct->FMC_CommonSpaceTimingStruct->FMC_HiZSetupTime)); + + assert_param(IS_FMC_SETUP_TIME(FMC_PCCARDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_SetupTime)); + assert_param(IS_FMC_WAIT_TIME(FMC_PCCARDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_WaitSetupTime)); + assert_param(IS_FMC_HOLD_TIME(FMC_PCCARDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_HoldSetupTime)); + assert_param(IS_FMC_HIZ_TIME(FMC_PCCARDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_HiZSetupTime)); + assert_param(IS_FMC_SETUP_TIME(FMC_PCCARDInitStruct->FMC_IOSpaceTimingStruct->FMC_SetupTime)); + assert_param(IS_FMC_WAIT_TIME(FMC_PCCARDInitStruct->FMC_IOSpaceTimingStruct->FMC_WaitSetupTime)); + assert_param(IS_FMC_HOLD_TIME(FMC_PCCARDInitStruct->FMC_IOSpaceTimingStruct->FMC_HoldSetupTime)); + assert_param(IS_FMC_HIZ_TIME(FMC_PCCARDInitStruct->FMC_IOSpaceTimingStruct->FMC_HiZSetupTime)); + + /* Set the PCR4 register value according to FMC_PCCARDInitStruct parameters */ + FMC_Bank4->PCR4 = (uint32_t)FMC_PCCARDInitStruct->FMC_Waitfeature | + FMC_NAND_MemoryDataWidth_16b | + (FMC_PCCARDInitStruct->FMC_TCLRSetupTime << 9) | + (FMC_PCCARDInitStruct->FMC_TARSetupTime << 13); + + /* Set PMEM4 register value according to FMC_CommonSpaceTimingStructure parameters */ + FMC_Bank4->PMEM4 = (uint32_t)FMC_PCCARDInitStruct->FMC_CommonSpaceTimingStruct->FMC_SetupTime | + (FMC_PCCARDInitStruct->FMC_CommonSpaceTimingStruct->FMC_WaitSetupTime << 8) | + (FMC_PCCARDInitStruct->FMC_CommonSpaceTimingStruct->FMC_HoldSetupTime << 16)| + (FMC_PCCARDInitStruct->FMC_CommonSpaceTimingStruct->FMC_HiZSetupTime << 24); + + /* Set PATT4 register value according to FMC_AttributeSpaceTimingStructure parameters */ + FMC_Bank4->PATT4 = (uint32_t)FMC_PCCARDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_SetupTime | + (FMC_PCCARDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_WaitSetupTime << 8) | + (FMC_PCCARDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_HoldSetupTime << 16)| + (FMC_PCCARDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_HiZSetupTime << 24); + + /* Set PIO4 register value according to FMC_IOSpaceTimingStructure parameters */ + FMC_Bank4->PIO4 = (uint32_t)FMC_PCCARDInitStruct->FMC_IOSpaceTimingStruct->FMC_SetupTime | + (FMC_PCCARDInitStruct->FMC_IOSpaceTimingStruct->FMC_WaitSetupTime << 8) | + (FMC_PCCARDInitStruct->FMC_IOSpaceTimingStruct->FMC_HoldSetupTime << 16)| + (FMC_PCCARDInitStruct->FMC_IOSpaceTimingStruct->FMC_HiZSetupTime << 24); +} + +/** + * @brief Fills each FMC_PCCARDInitStruct member with its default value. + * @param FMC_PCCARDInitStruct: pointer to a FMC_PCCARDInitTypeDef structure + * which will be initialized. + * @retval None + */ +void FMC_PCCARDStructInit(FMC_PCCARDInitTypeDef* FMC_PCCARDInitStruct) +{ + /* Reset PCCARD Init structure parameters values */ + FMC_PCCARDInitStruct->FMC_Waitfeature = FMC_Waitfeature_Disable; + FMC_PCCARDInitStruct->FMC_TCLRSetupTime = 0; + FMC_PCCARDInitStruct->FMC_TARSetupTime = 0; + FMC_PCCARDInitStruct->FMC_CommonSpaceTimingStruct->FMC_SetupTime = 252; + FMC_PCCARDInitStruct->FMC_CommonSpaceTimingStruct->FMC_WaitSetupTime = 252; + FMC_PCCARDInitStruct->FMC_CommonSpaceTimingStruct->FMC_HoldSetupTime = 252; + FMC_PCCARDInitStruct->FMC_CommonSpaceTimingStruct->FMC_HiZSetupTime = 252; + FMC_PCCARDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_SetupTime = 252; + FMC_PCCARDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_WaitSetupTime = 252; + FMC_PCCARDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_HoldSetupTime = 252; + FMC_PCCARDInitStruct->FMC_AttributeSpaceTimingStruct->FMC_HiZSetupTime = 252; + FMC_PCCARDInitStruct->FMC_IOSpaceTimingStruct->FMC_SetupTime = 252; + FMC_PCCARDInitStruct->FMC_IOSpaceTimingStruct->FMC_WaitSetupTime = 252; + FMC_PCCARDInitStruct->FMC_IOSpaceTimingStruct->FMC_HoldSetupTime = 252; + FMC_PCCARDInitStruct->FMC_IOSpaceTimingStruct->FMC_HiZSetupTime = 252; +} + +/** + * @brief Enables or disables the PCCARD Memory Bank. + * @param NewState: new state of the PCCARD Memory Bank. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void FMC_PCCARDCmd(FunctionalState NewState) +{ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + /* Enable the PCCARD Bank by setting the PBKEN bit in the PCR4 register */ + FMC_Bank4->PCR4 |= PCR_PBKEN_SET; + } + else + { + /* Disable the PCCARD Bank by clearing the PBKEN bit in the PCR4 register */ + FMC_Bank4->PCR4 &= PCR_PBKEN_RESET; + } +} + +/** + * @} + */ + +/** @defgroup FMC_Group4 SDRAM Controller functions + * @brief SDRAM Controller functions + * +@verbatim + =============================================================================== + ##### SDRAM Controller functions ##### + =============================================================================== + + [..] The following sequence should be followed to configure the FMC to interface + with SDRAM memory connected to the SDRAM Bank 1 or SDRAM bank 2: + + (#) Enable the clock for the FMC and associated GPIOs using the following functions: + (++) RCC_AHB3PeriphClockCmd(RCC_AHB3Periph_FMC, ENABLE); + (++) RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOx, ENABLE); + + (#) FMC pins configuration + (++) Connect the involved FMC pins to AF12 using the following function + GPIO_PinAFConfig(GPIOx, GPIO_PinSourcex, GPIO_AF_FMC); + (++) Configure these FMC pins in alternate function mode by calling the function + GPIO_Init(); + + (#) Declare a FMC_SDRAMInitTypeDef structure, for example: + FMC_SDRAMInitTypeDef FMC_SDRAMInitStructure; + and fill the FMC_SDRAMInitStructure variable with the allowed values of + the structure member. + + (#) Initialize the SDRAM Controller by calling the function + FMC_SDRAMInit(&FMC_SDRAMInitStructure); + + (#) Declare a FMC_SDRAMCommandTypeDef structure, for example: + FMC_SDRAMCommandTypeDef FMC_SDRAMCommandStructure; + and fill the FMC_SDRAMCommandStructure variable with the allowed values of + the structure member. + + (#) Configure the SDCMR register with the desired command parameters by calling + the function FMC_SDRAMCmdConfig(&FMC_SDRAMCommandStructure); + + (#) At this stage, the SDRAM memory is ready for any valid command. + +@endverbatim + * @{ + */ + +/** + * @brief De-initializes the FMC SDRAM Banks registers to their default + * reset values. + * @param FMC_Bank: specifies the FMC Bank to be used + * This parameter can be one of the following values: + * @arg FMC_Bank1_SDRAM: FMC Bank1 SDRAM + * @arg FMC_Bank2_SDRAM: FMC Bank2 SDRAM + * @retval None + */ +void FMC_SDRAMDeInit(uint32_t FMC_Bank) +{ + /* Check the parameter */ + assert_param(IS_FMC_SDRAM_BANK(FMC_Bank)); + + FMC_Bank5_6->SDCR[FMC_Bank] = 0x000002D0; + FMC_Bank5_6->SDTR[FMC_Bank] = 0x0FFFFFFF; + FMC_Bank5_6->SDCMR = 0x00000000; + FMC_Bank5_6->SDRTR = 0x00000000; + FMC_Bank5_6->SDSR = 0x00000000; +} + +/** + * @brief Initializes the FMC SDRAM Banks according to the specified + * parameters in the FMC_SDRAMInitStruct. + * @param FMC_SDRAMInitStruct : pointer to a FMC_SDRAMInitTypeDef structure + * that contains the configuration information for the FMC SDRAM + * specified Banks. + * @retval None + */ +void FMC_SDRAMInit(FMC_SDRAMInitTypeDef* FMC_SDRAMInitStruct) +{ + /* temporary registers */ + uint32_t tmpr1 = 0; + uint32_t tmpr2 = 0; + uint32_t tmpr3 = 0; + uint32_t tmpr4 = 0; + + /* Check the parameters */ + + /* Control parameters */ + assert_param(IS_FMC_SDRAM_BANK(FMC_SDRAMInitStruct->FMC_Bank)); + assert_param(IS_FMC_COLUMNBITS_NUMBER(FMC_SDRAMInitStruct->FMC_ColumnBitsNumber)); + assert_param(IS_FMC_ROWBITS_NUMBER(FMC_SDRAMInitStruct->FMC_RowBitsNumber)); + assert_param(IS_FMC_SDMEMORY_WIDTH(FMC_SDRAMInitStruct->FMC_SDMemoryDataWidth)); + assert_param(IS_FMC_INTERNALBANK_NUMBER(FMC_SDRAMInitStruct->FMC_InternalBankNumber)); + assert_param(IS_FMC_CAS_LATENCY(FMC_SDRAMInitStruct->FMC_CASLatency)); + assert_param(IS_FMC_WRITE_PROTECTION(FMC_SDRAMInitStruct->FMC_WriteProtection)); + assert_param(IS_FMC_SDCLOCK_PERIOD(FMC_SDRAMInitStruct->FMC_SDClockPeriod)); + assert_param(IS_FMC_READ_BURST(FMC_SDRAMInitStruct->FMC_ReadBurst)); + assert_param(IS_FMC_READPIPE_DELAY(FMC_SDRAMInitStruct->FMC_ReadPipeDelay)); + + /* Timing parameters */ + assert_param(IS_FMC_LOADTOACTIVE_DELAY(FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_LoadToActiveDelay)); + assert_param(IS_FMC_EXITSELFREFRESH_DELAY(FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_ExitSelfRefreshDelay)); + assert_param(IS_FMC_SELFREFRESH_TIME(FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_SelfRefreshTime)); + assert_param(IS_FMC_ROWCYCLE_DELAY(FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_RowCycleDelay)); + assert_param(IS_FMC_WRITE_RECOVERY_TIME(FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_WriteRecoveryTime)); + assert_param(IS_FMC_RP_DELAY(FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_RPDelay)); + assert_param(IS_FMC_RCD_DELAY(FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_RCDDelay)); + + /* SDRAM bank control register configuration */ + tmpr1 = (uint32_t)FMC_SDRAMInitStruct->FMC_ColumnBitsNumber | + FMC_SDRAMInitStruct->FMC_RowBitsNumber | + FMC_SDRAMInitStruct->FMC_SDMemoryDataWidth | + FMC_SDRAMInitStruct->FMC_InternalBankNumber | + FMC_SDRAMInitStruct->FMC_CASLatency | + FMC_SDRAMInitStruct->FMC_WriteProtection | + FMC_SDRAMInitStruct->FMC_SDClockPeriod | + FMC_SDRAMInitStruct->FMC_ReadBurst | + FMC_SDRAMInitStruct->FMC_ReadPipeDelay; + + if(FMC_SDRAMInitStruct->FMC_Bank == FMC_Bank1_SDRAM ) + { + FMC_Bank5_6->SDCR[FMC_SDRAMInitStruct->FMC_Bank] = tmpr1; + } + else /* SDCR2 "don't care" bits configuration */ + { + tmpr3 = (uint32_t)FMC_SDRAMInitStruct->FMC_SDClockPeriod | + FMC_SDRAMInitStruct->FMC_ReadBurst | + FMC_SDRAMInitStruct->FMC_ReadPipeDelay; + + FMC_Bank5_6->SDCR[FMC_Bank1_SDRAM] = tmpr3; + FMC_Bank5_6->SDCR[FMC_SDRAMInitStruct->FMC_Bank] = tmpr1; + } + /* SDRAM bank timing register configuration */ + if(FMC_SDRAMInitStruct->FMC_Bank == FMC_Bank1_SDRAM ) + { + tmpr2 = (uint32_t)((FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_LoadToActiveDelay)-1) | + (((FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_ExitSelfRefreshDelay)-1) << 4) | + (((FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_SelfRefreshTime)-1) << 8) | + (((FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_RowCycleDelay)-1) << 12) | + (((FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_WriteRecoveryTime)-1) << 16) | + (((FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_RPDelay)-1) << 20) | + (((FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_RCDDelay)-1) << 24); + + FMC_Bank5_6->SDTR[FMC_SDRAMInitStruct->FMC_Bank] = tmpr2; + } + else /* SDTR "don't care bits configuration */ + { + tmpr2 = (uint32_t)((FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_LoadToActiveDelay)-1) | + (((FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_ExitSelfRefreshDelay)-1) << 4) | + (((FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_SelfRefreshTime)-1) << 8) | + (((FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_WriteRecoveryTime)-1) << 16); + + tmpr4 = (uint32_t)(((FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_RowCycleDelay)-1) << 12) | + (((FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_RPDelay)-1) << 20); + + FMC_Bank5_6->SDTR[FMC_Bank1_SDRAM] = tmpr4; + FMC_Bank5_6->SDTR[FMC_SDRAMInitStruct->FMC_Bank] = tmpr2; + } + +} + +/** + * @brief Fills each FMC_SDRAMInitStruct member with its default value. + * @param FMC_SDRAMInitStruct: pointer to a FMC_SDRAMInitTypeDef structure + * which will be initialized. + * @retval None + */ +void FMC_SDRAMStructInit(FMC_SDRAMInitTypeDef* FMC_SDRAMInitStruct) +{ + /* Reset SDRAM Init structure parameters values */ + FMC_SDRAMInitStruct->FMC_Bank = FMC_Bank1_SDRAM; + FMC_SDRAMInitStruct->FMC_ColumnBitsNumber = FMC_ColumnBits_Number_8b; + FMC_SDRAMInitStruct->FMC_RowBitsNumber = FMC_RowBits_Number_11b; + FMC_SDRAMInitStruct->FMC_SDMemoryDataWidth = FMC_SDMemory_Width_16b; + FMC_SDRAMInitStruct->FMC_InternalBankNumber = FMC_InternalBank_Number_4; + FMC_SDRAMInitStruct->FMC_CASLatency = FMC_CAS_Latency_1; + FMC_SDRAMInitStruct->FMC_WriteProtection = FMC_Write_Protection_Enable; + FMC_SDRAMInitStruct->FMC_SDClockPeriod = FMC_SDClock_Disable; + FMC_SDRAMInitStruct->FMC_ReadBurst = FMC_Read_Burst_Disable; + FMC_SDRAMInitStruct->FMC_ReadPipeDelay = FMC_ReadPipe_Delay_0; + + FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_LoadToActiveDelay = 16; + FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_ExitSelfRefreshDelay = 16; + FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_SelfRefreshTime = 16; + FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_RowCycleDelay = 16; + FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_WriteRecoveryTime = 16; + FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_RPDelay = 16; + FMC_SDRAMInitStruct->FMC_SDRAMTimingStruct->FMC_RCDDelay = 16; + +} + +/** + * @brief Configures the SDRAM memory command issued when the device is accessed. + * @param FMC_SDRAMCommandStruct: pointer to a FMC_SDRAMCommandTypeDef structure + * which will be configured. + * @retval None + */ +void FMC_SDRAMCmdConfig(FMC_SDRAMCommandTypeDef* FMC_SDRAMCommandStruct) +{ + uint32_t tmpr = 0x0; + + /* check parameters */ + assert_param(IS_FMC_COMMAND_MODE(FMC_SDRAMCommandStruct->FMC_CommandMode)); + assert_param(IS_FMC_COMMAND_TARGET(FMC_SDRAMCommandStruct->FMC_CommandTarget)); + assert_param(IS_FMC_AUTOREFRESH_NUMBER(FMC_SDRAMCommandStruct->FMC_AutoRefreshNumber)); + assert_param(IS_FMC_MODE_REGISTER(FMC_SDRAMCommandStruct->FMC_ModeRegisterDefinition)); + + tmpr = (uint32_t)(FMC_SDRAMCommandStruct->FMC_CommandMode | + FMC_SDRAMCommandStruct->FMC_CommandTarget | + (((FMC_SDRAMCommandStruct->FMC_AutoRefreshNumber)-1)<<5) | + ((FMC_SDRAMCommandStruct->FMC_ModeRegisterDefinition)<<9)); + + FMC_Bank5_6->SDCMR = tmpr; + +} + + +/** + * @brief Returns the indicated FMC SDRAM bank mode status. + * @param SDRAM_Bank: Defines the FMC SDRAM bank. This parameter can be + * FMC_Bank1_SDRAM or FMC_Bank2_SDRAM. + * @retval The FMC SDRAM bank mode status + */ +uint32_t FMC_GetModeStatus(uint32_t SDRAM_Bank) +{ + uint32_t tmpreg = 0; + + /* Check the parameter */ + assert_param(IS_FMC_SDRAM_BANK(SDRAM_Bank)); + + /* Get the busy flag status */ + if(SDRAM_Bank == FMC_Bank1_SDRAM) + { + tmpreg = (uint32_t)(FMC_Bank5_6->SDSR & FMC_SDSR_MODES1); + } + else + { + tmpreg = ((uint32_t)(FMC_Bank5_6->SDSR & FMC_SDSR_MODES2) >> 2); + } + + /* Return the mode status */ + return tmpreg; +} + +/** + * @brief defines the SDRAM Memory Refresh rate. + * @param FMC_Count: specifies the Refresh timer count. + * @retval None + */ +void FMC_SetRefreshCount(uint32_t FMC_Count) +{ + /* check the parameters */ + assert_param(IS_FMC_REFRESH_COUNT(FMC_Count)); + + FMC_Bank5_6->SDRTR |= (FMC_Count<<1); + +} + +/** + * @brief Sets the Number of consecutive SDRAM Memory auto Refresh commands. + * @param FMC_Number: specifies the auto Refresh number. + * @retval None + */ +void FMC_SetAutoRefresh_Number(uint32_t FMC_Number) +{ + /* check the parameters */ + assert_param(IS_FMC_AUTOREFRESH_NUMBER(FMC_Number)); + + FMC_Bank5_6->SDCMR |= (FMC_Number << 5); +} + +/** + * @brief Enables or disables write protection to the specified FMC SDRAM Bank. + * @param SDRAM_Bank: Defines the FMC SDRAM bank. This parameter can be + * FMC_Bank1_SDRAM or FMC_Bank2_SDRAM. + * @param NewState: new state of the write protection flag. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void FMC_SDRAMWriteProtectionConfig(uint32_t SDRAM_Bank, FunctionalState NewState) +{ + /* Check the parameter */ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + assert_param(IS_FMC_SDRAM_BANK(SDRAM_Bank)); + + if (NewState != DISABLE) + { + FMC_Bank5_6->SDCR[SDRAM_Bank] |= FMC_Write_Protection_Enable; + } + else + { + FMC_Bank5_6->SDCR[SDRAM_Bank] &= SDCR_WriteProtection_RESET; + } + +} + +/** + * @} + */ + +/** @defgroup FMC_Group5 Interrupts and flags management functions + * @brief Interrupts and flags management functions + * +@verbatim + =============================================================================== + ##### Interrupts and flags management functions ##### + =============================================================================== + +@endverbatim + * @{ + */ + +/** + * @brief Enables or disables the specified FMC interrupts. + * @param FMC_Bank: specifies the FMC Bank to be used + * This parameter can be one of the following values: + * @arg FMC_Bank2_NAND: FMC Bank2 NAND + * @arg FMC_Bank3_NAND: FMC Bank3 NAND + * @arg FMC_Bank4_PCCARD: FMC Bank4 PCCARD + * @arg FMC_Bank1_SDRAM: FMC Bank1 SDRAM + * @arg FMC_Bank2_SDRAM: FMC Bank2 SDRAM + * @param FMC_IT: specifies the FMC interrupt sources to be enabled or disabled. + * This parameter can be any combination of the following values: + * @arg FMC_IT_RisingEdge: Rising edge detection interrupt. + * @arg FMC_IT_Level: Level edge detection interrupt. + * @arg FMC_IT_FallingEdge: Falling edge detection interrupt. + * @arg FMC_IT_Refresh: Refresh error detection interrupt. + * @param NewState: new state of the specified FMC interrupts. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void FMC_ITConfig(uint32_t FMC_Bank, uint32_t FMC_IT, FunctionalState NewState) +{ + assert_param(IS_FMC_IT_BANK(FMC_Bank)); + assert_param(IS_FMC_IT(FMC_IT)); + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + /* Enable the selected FMC_Bank2 interrupts */ + if(FMC_Bank == FMC_Bank2_NAND) + { + FMC_Bank2->SR2 |= FMC_IT; + } + /* Enable the selected FMC_Bank3 interrupts */ + else if (FMC_Bank == FMC_Bank3_NAND) + { + FMC_Bank3->SR3 |= FMC_IT; + } + /* Enable the selected FMC_Bank4 interrupts */ + else if (FMC_Bank == FMC_Bank4_PCCARD) + { + FMC_Bank4->SR4 |= FMC_IT; + } + /* Enable the selected FMC_Bank5_6 interrupt */ + else + { + /* Enables the interrupt if the refresh error flag is set */ + FMC_Bank5_6->SDRTR |= FMC_IT; + } + } + else + { + /* Disable the selected FMC_Bank2 interrupts */ + if(FMC_Bank == FMC_Bank2_NAND) + { + + FMC_Bank2->SR2 &= (uint32_t)~FMC_IT; + } + /* Disable the selected FMC_Bank3 interrupts */ + else if (FMC_Bank == FMC_Bank3_NAND) + { + FMC_Bank3->SR3 &= (uint32_t)~FMC_IT; + } + /* Disable the selected FMC_Bank4 interrupts */ + else if(FMC_Bank == FMC_Bank4_PCCARD) + { + FMC_Bank4->SR4 &= (uint32_t)~FMC_IT; + } + /* Disable the selected FMC_Bank5_6 interrupt */ + else + { + /* Disables the interrupt if the refresh error flag is not set */ + FMC_Bank5_6->SDRTR &= (uint32_t)~FMC_IT; + } + } +} + +/** + * @brief Checks whether the specified FMC flag is set or not. + * @param FMC_Bank: specifies the FMC Bank to be used + * This parameter can be one of the following values: + * @arg FMC_Bank2_NAND: FMC Bank2 NAND + * @arg FMC_Bank3_NAND: FMC Bank3 NAND + * @arg FMC_Bank4_PCCARD: FMC Bank4 PCCARD + * @arg FMC_Bank1_SDRAM: FMC Bank1 SDRAM + * @arg FMC_Bank2_SDRAM: FMC Bank2 SDRAM + * @arg FMC_Bank1_SDRAM | FMC_Bank2_SDRAM: FMC Bank1 or Bank2 SDRAM + * @param FMC_FLAG: specifies the flag to check. + * This parameter can be one of the following values: + * @arg FMC_FLAG_RisingEdge: Rising edge detection Flag. + * @arg FMC_FLAG_Level: Level detection Flag. + * @arg FMC_FLAG_FallingEdge: Falling edge detection Flag. + * @arg FMC_FLAG_FEMPT: Fifo empty Flag. + * @arg FMC_FLAG_Refresh: Refresh error Flag. + * @arg FMC_FLAG_Busy: Busy status Flag. + * @retval The new state of FMC_FLAG (SET or RESET). + */ +FlagStatus FMC_GetFlagStatus(uint32_t FMC_Bank, uint32_t FMC_FLAG) +{ + FlagStatus bitstatus = RESET; + uint32_t tmpsr = 0x00000000; + + /* Check the parameters */ + assert_param(IS_FMC_GETFLAG_BANK(FMC_Bank)); + assert_param(IS_FMC_GET_FLAG(FMC_FLAG)); + + if(FMC_Bank == FMC_Bank2_NAND) + { + tmpsr = FMC_Bank2->SR2; + } + else if(FMC_Bank == FMC_Bank3_NAND) + { + tmpsr = FMC_Bank3->SR3; + } + else if(FMC_Bank == FMC_Bank4_PCCARD) + { + tmpsr = FMC_Bank4->SR4; + } + else + { + tmpsr = FMC_Bank5_6->SDSR; + } + + /* Get the flag status */ + if ((tmpsr & FMC_FLAG) != FMC_FLAG ) + { + bitstatus = RESET; + } + else + { + bitstatus = SET; + } + /* Return the flag status */ + return bitstatus; +} + +/** + * @brief Clears the FMC's pending flags. + * @param FMC_Bank: specifies the FMC Bank to be used + * This parameter can be one of the following values: + * @arg FMC_Bank2_NAND: FMC Bank2 NAND + * @arg FMC_Bank3_NAND: FMC Bank3 NAND + * @arg FMC_Bank4_PCCARD: FMC Bank4 PCCARD + * @arg FMC_Bank1_SDRAM: FMC Bank1 SDRAM + * @arg FMC_Bank2_SDRAM: FMC Bank2 SDRAM + * @param FMC_FLAG: specifies the flag to clear. + * This parameter can be any combination of the following values: + * @arg FMC_FLAG_RisingEdge: Rising edge detection Flag. + * @arg FMC_FLAG_Level: Level detection Flag. + * @arg FMC_FLAG_FallingEdge: Falling edge detection Flag. + * @arg FMC_FLAG_Refresh: Refresh error Flag. + * @retval None + */ +void FMC_ClearFlag(uint32_t FMC_Bank, uint32_t FMC_FLAG) +{ + /* Check the parameters */ + assert_param(IS_FMC_GETFLAG_BANK(FMC_Bank)); + assert_param(IS_FMC_CLEAR_FLAG(FMC_FLAG)) ; + + if(FMC_Bank == FMC_Bank2_NAND) + { + FMC_Bank2->SR2 &= (~FMC_FLAG); + } + else if(FMC_Bank == FMC_Bank3_NAND) + { + FMC_Bank3->SR3 &= (~FMC_FLAG); + } + else if(FMC_Bank == FMC_Bank4_PCCARD) + { + FMC_Bank4->SR4 &= (~FMC_FLAG); + } + /* FMC_Bank5_6 SDRAM*/ + else + { + FMC_Bank5_6->SDRTR &= (~FMC_FLAG); + } + +} + +/** + * @brief Checks whether the specified FMC interrupt has occurred or not. + * @param FMC_Bank: specifies the FMC Bank to be used + * This parameter can be one of the following values: + * @arg FMC_Bank2_NAND: FMC Bank2 NAND + * @arg FMC_Bank3_NAND: FMC Bank3 NAND + * @arg FMC_Bank4_PCCARD: FMC Bank4 PCCARD + * @arg FMC_Bank1_SDRAM: FMC Bank1 SDRAM + * @arg FMC_Bank2_SDRAM: FMC Bank2 SDRAM + * @param FMC_IT: specifies the FMC interrupt source to check. + * This parameter can be one of the following values: + * @arg FMC_IT_RisingEdge: Rising edge detection interrupt. + * @arg FMC_IT_Level: Level edge detection interrupt. + * @arg FMC_IT_FallingEdge: Falling edge detection interrupt. + * @arg FMC_IT_Refresh: Refresh error detection interrupt. + * @retval The new state of FMC_IT (SET or RESET). + */ +ITStatus FMC_GetITStatus(uint32_t FMC_Bank, uint32_t FMC_IT) +{ + ITStatus bitstatus = RESET; + uint32_t tmpsr = 0x0; + uint32_t tmpsr2 = 0x0; + uint32_t itstatus = 0x0; + uint32_t itenable = 0x0; + + /* Check the parameters */ + assert_param(IS_FMC_IT_BANK(FMC_Bank)); + assert_param(IS_FMC_GET_IT(FMC_IT)); + + if(FMC_Bank == FMC_Bank2_NAND) + { + tmpsr = FMC_Bank2->SR2; + } + else if(FMC_Bank == FMC_Bank3_NAND) + { + tmpsr = FMC_Bank3->SR3; + } + else if(FMC_Bank == FMC_Bank4_PCCARD) + { + tmpsr = FMC_Bank4->SR4; + } + /* FMC_Bank5_6 SDRAM*/ + else + { + tmpsr = FMC_Bank5_6->SDRTR; + tmpsr2 = FMC_Bank5_6->SDSR; + } + + /* get the IT enable bit status*/ + itenable = tmpsr & FMC_IT; + + /* get the corresponding IT Flag status*/ + if((FMC_Bank == FMC_Bank1_SDRAM) || (FMC_Bank == FMC_Bank2_SDRAM)) + { + itstatus = tmpsr2 & FMC_SDSR_RE; + } + else + { + itstatus = tmpsr & (FMC_IT >> 3); + } + + if ((itstatus != (uint32_t)RESET) && (itenable != (uint32_t)RESET)) + { + bitstatus = SET; + } + else + { + bitstatus = RESET; + } + return bitstatus; +} + +/** + * @brief Clears the FMC's interrupt pending bits. + * @param FMC_Bank: specifies the FMC Bank to be used + * This parameter can be one of the following values: + * @arg FMC_Bank2_NAND: FMC Bank2 NAND + * @arg FMC_Bank3_NAND: FMC Bank3 NAND + * @arg FMC_Bank4_PCCARD: FMC Bank4 PCCARD + * @arg FMC_Bank1_SDRAM: FMC Bank1 SDRAM + * @arg FMC_Bank2_SDRAM: FMC Bank2 SDRAM + * @param FMC_IT: specifies the interrupt pending bit to clear. + * This parameter can be any combination of the following values: + * @arg FMC_IT_RisingEdge: Rising edge detection interrupt. + * @arg FMC_IT_Level: Level edge detection interrupt. + * @arg FMC_IT_FallingEdge: Falling edge detection interrupt. + * @arg FMC_IT_Refresh: Refresh error detection interrupt. + * @retval None + */ +void FMC_ClearITPendingBit(uint32_t FMC_Bank, uint32_t FMC_IT) +{ + /* Check the parameters */ + assert_param(IS_FMC_IT_BANK(FMC_Bank)); + assert_param(IS_FMC_IT(FMC_IT)); + + if(FMC_Bank == FMC_Bank2_NAND) + { + FMC_Bank2->SR2 &= ~(FMC_IT >> 3); + } + else if(FMC_Bank == FMC_Bank3_NAND) + { + FMC_Bank3->SR3 &= ~(FMC_IT >> 3); + } + else if(FMC_Bank == FMC_Bank4_PCCARD) + { + FMC_Bank4->SR4 &= ~(FMC_IT >> 3); + } + /* FMC_Bank5_6 SDRAM*/ + else + { + FMC_Bank5_6->SDRTR |= FMC_SDRTR_CRE; + } +} + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_fsmc.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_fsmc.c index 7103e2e4..38c23a58 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_fsmc.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_fsmc.c @@ -2,19 +2,19 @@ ****************************************************************************** * @file stm32f4xx_fsmc.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the FSMC peripheral: - * - Interface with SRAM, PSRAM, NOR and OneNAND memories - * - Interface with NAND memories - * - Interface with 16-bit PC Card compatible memories - * - Interrupts and flags management + * + Interface with SRAM, PSRAM, NOR and OneNAND memories + * + Interface with NAND memories + * + Interface with 16-bit PC Card compatible memories + * + Interrupts and flags management * ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -45,6 +45,14 @@ */ /* Private typedef -----------------------------------------------------------*/ +const FSMC_NORSRAMTimingInitTypeDef FSMC_DefaultTimingStruct = {0x0F, /* FSMC_AddressSetupTime */ + 0x0F, /* FSMC_AddressHoldTime */ + 0xFF, /* FSMC_DataSetupTime */ + 0x0F, /* FSMC_BusTurnAroundDuration */ + 0x0F, /* FSMC_CLKDivision */ + 0x0F, /* FSMC_DataLatency */ + FSMC_AccessMode_A /* FSMC_AccessMode */ + }; /* Private define ------------------------------------------------------------*/ /* --------------------- FSMC registers bit mask ---------------------------- */ @@ -74,41 +82,41 @@ * @verbatim =============================================================================== - NOR/SRAM Controller functions + ##### NOR and SRAM Controller functions ##### =============================================================================== - The following sequence should be followed to configure the FSMC to interface with - SRAM, PSRAM, NOR or OneNAND memory connected to the NOR/SRAM Bank: + [..] The following sequence should be followed to configure the FSMC to interface + with SRAM, PSRAM, NOR or OneNAND memory connected to the NOR/SRAM Bank: - 1. Enable the clock for the FSMC and associated GPIOs using the following functions: + (#) Enable the clock for the FSMC and associated GPIOs using the following functions: RCC_AHB3PeriphClockCmd(RCC_AHB3Periph_FSMC, ENABLE); RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOx, ENABLE); - 2. FSMC pins configuration - - Connect the involved FSMC pins to AF12 using the following function - GPIO_PinAFConfig(GPIOx, GPIO_PinSourcex, GPIO_AF_FSMC); - - Configure these FSMC pins in alternate function mode by calling the function - GPIO_Init(); + (#) FSMC pins configuration + (++) Connect the involved FSMC pins to AF12 using the following function + GPIO_PinAFConfig(GPIOx, GPIO_PinSourcex, GPIO_AF_FSMC); + (++) Configure these FSMC pins in alternate function mode by calling the function + GPIO_Init(); - 3. Declare a FSMC_NORSRAMInitTypeDef structure, for example: + (#) Declare a FSMC_NORSRAMInitTypeDef structure, for example: FSMC_NORSRAMInitTypeDef FSMC_NORSRAMInitStructure; and fill the FSMC_NORSRAMInitStructure variable with the allowed values of the structure member. - 4. Initialize the NOR/SRAM Controller by calling the function + (#) Initialize the NOR/SRAM Controller by calling the function FSMC_NORSRAMInit(&FSMC_NORSRAMInitStructure); - 5. Then enable the NOR/SRAM Bank, for example: + (#) Then enable the NOR/SRAM Bank, for example: FSMC_NORSRAMCmd(FSMC_Bank1_NORSRAM2, ENABLE); - 6. At this stage you can read/write from/to the memory connected to the NOR/SRAM Bank. + (#) At this stage you can read/write from/to the memory connected to the NOR/SRAM Bank. @endverbatim * @{ */ /** - * @brief Deinitializes the FSMC NOR/SRAM Banks registers to their default + * @brief De-initializes the FSMC NOR/SRAM Banks registers to their default * reset values. * @param FSMC_Bank: specifies the FSMC Bank to be used * This parameter can be one of the following values: @@ -243,20 +251,8 @@ void FSMC_NORSRAMStructInit(FSMC_NORSRAMInitTypeDef* FSMC_NORSRAMInitStruct) FSMC_NORSRAMInitStruct->FSMC_WaitSignal = FSMC_WaitSignal_Enable; FSMC_NORSRAMInitStruct->FSMC_ExtendedMode = FSMC_ExtendedMode_Disable; FSMC_NORSRAMInitStruct->FSMC_WriteBurst = FSMC_WriteBurst_Disable; - FSMC_NORSRAMInitStruct->FSMC_ReadWriteTimingStruct->FSMC_AddressSetupTime = 0xF; - FSMC_NORSRAMInitStruct->FSMC_ReadWriteTimingStruct->FSMC_AddressHoldTime = 0xF; - FSMC_NORSRAMInitStruct->FSMC_ReadWriteTimingStruct->FSMC_DataSetupTime = 0xFF; - FSMC_NORSRAMInitStruct->FSMC_ReadWriteTimingStruct->FSMC_BusTurnAroundDuration = 0xF; - FSMC_NORSRAMInitStruct->FSMC_ReadWriteTimingStruct->FSMC_CLKDivision = 0xF; - FSMC_NORSRAMInitStruct->FSMC_ReadWriteTimingStruct->FSMC_DataLatency = 0xF; - FSMC_NORSRAMInitStruct->FSMC_ReadWriteTimingStruct->FSMC_AccessMode = FSMC_AccessMode_A; - FSMC_NORSRAMInitStruct->FSMC_WriteTimingStruct->FSMC_AddressSetupTime = 0xF; - FSMC_NORSRAMInitStruct->FSMC_WriteTimingStruct->FSMC_AddressHoldTime = 0xF; - FSMC_NORSRAMInitStruct->FSMC_WriteTimingStruct->FSMC_DataSetupTime = 0xFF; - FSMC_NORSRAMInitStruct->FSMC_WriteTimingStruct->FSMC_BusTurnAroundDuration = 0xF; - FSMC_NORSRAMInitStruct->FSMC_WriteTimingStruct->FSMC_CLKDivision = 0xF; - FSMC_NORSRAMInitStruct->FSMC_WriteTimingStruct->FSMC_DataLatency = 0xF; - FSMC_NORSRAMInitStruct->FSMC_WriteTimingStruct->FSMC_AccessMode = FSMC_AccessMode_A; + FSMC_NORSRAMInitStruct->FSMC_ReadWriteTimingStruct = (FSMC_NORSRAMTimingInitTypeDef*)&FSMC_DefaultTimingStruct; + FSMC_NORSRAMInitStruct->FSMC_WriteTimingStruct = (FSMC_NORSRAMTimingInitTypeDef*)&FSMC_DefaultTimingStruct; } /** @@ -295,46 +291,48 @@ void FSMC_NORSRAMCmd(uint32_t FSMC_Bank, FunctionalState NewState) * @verbatim =============================================================================== - NAND Controller functions + ##### NAND Controller functions ##### =============================================================================== - The following sequence should be followed to configure the FSMC to interface with - 8-bit or 16-bit NAND memory connected to the NAND Bank: + [..] The following sequence should be followed to configure the FSMC to interface + with 8-bit or 16-bit NAND memory connected to the NAND Bank: - 1. Enable the clock for the FSMC and associated GPIOs using the following functions: - RCC_AHB3PeriphClockCmd(RCC_AHB3Periph_FSMC, ENABLE); - RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOx, ENABLE); - - 2. FSMC pins configuration - - Connect the involved FSMC pins to AF12 using the following function - GPIO_PinAFConfig(GPIOx, GPIO_PinSourcex, GPIO_AF_FSMC); - - Configure these FSMC pins in alternate function mode by calling the function - GPIO_Init(); + (#) Enable the clock for the FSMC and associated GPIOs using the following functions: + (++) RCC_AHB3PeriphClockCmd(RCC_AHB3Periph_FSMC, ENABLE); + (++) RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOx, ENABLE); + + (#) FSMC pins configuration + (++) Connect the involved FSMC pins to AF12 using the following function + GPIO_PinAFConfig(GPIOx, GPIO_PinSourcex, GPIO_AF_FSMC); + (++) Configure these FSMC pins in alternate function mode by calling the function + GPIO_Init(); - 3. Declare a FSMC_NANDInitTypeDef structure, for example: - FSMC_NANDInitTypeDef FSMC_NANDInitStructure; + (#) Declare a FSMC_NANDInitTypeDef structure, for example: + FSMC_NANDInitTypeDef FSMC_NANDInitStructure; and fill the FSMC_NANDInitStructure variable with the allowed values of the structure member. - 4. Initialize the NAND Controller by calling the function - FSMC_NANDInit(&FSMC_NANDInitStructure); + (#) Initialize the NAND Controller by calling the function + FSMC_NANDInit(&FSMC_NANDInitStructure); - 5. Then enable the NAND Bank, for example: - FSMC_NANDCmd(FSMC_Bank3_NAND, ENABLE); + (#) Then enable the NAND Bank, for example: + FSMC_NANDCmd(FSMC_Bank3_NAND, ENABLE); - 6. At this stage you can read/write from/to the memory connected to the NAND Bank. + (#) At this stage you can read/write from/to the memory connected to the NAND Bank. -@note To enable the Error Correction Code (ECC), you have to use the function - FSMC_NANDECCCmd(FSMC_Bank3_NAND, ENABLE); - and to get the current ECC value you have to use the function - ECCval = FSMC_GetECC(FSMC_Bank3_NAND); + [..] + (@) To enable the Error Correction Code (ECC), you have to use the function + FSMC_NANDECCCmd(FSMC_Bank3_NAND, ENABLE); + [..] + (@) and to get the current ECC value you have to use the function + ECCval = FSMC_GetECC(FSMC_Bank3_NAND); @endverbatim * @{ */ /** - * @brief Deinitializes the FSMC NAND Banks registers to their default reset values. + * @brief De-initializes the FSMC NAND Banks registers to their default reset values. * @param FSMC_Bank: specifies the FSMC Bank to be used * This parameter can be one of the following values: * @arg FSMC_Bank2_NAND: FSMC Bank2 NAND @@ -571,41 +569,41 @@ uint32_t FSMC_GetECC(uint32_t FSMC_Bank) * @verbatim =============================================================================== - PCCARD Controller functions + ##### PCCARD Controller functions ##### =============================================================================== - The following sequence should be followed to configure the FSMC to interface with - 16-bit PC Card compatible memory connected to the PCCARD Bank: + [..] he following sequence should be followed to configure the FSMC to interface + with 16-bit PC Card compatible memory connected to the PCCARD Bank: - 1. Enable the clock for the FSMC and associated GPIOs using the following functions: - RCC_AHB3PeriphClockCmd(RCC_AHB3Periph_FSMC, ENABLE); - RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOx, ENABLE); - - 2. FSMC pins configuration - - Connect the involved FSMC pins to AF12 using the following function - GPIO_PinAFConfig(GPIOx, GPIO_PinSourcex, GPIO_AF_FSMC); - - Configure these FSMC pins in alternate function mode by calling the function - GPIO_Init(); + (#) Enable the clock for the FSMC and associated GPIOs using the following functions: + (++) RCC_AHB3PeriphClockCmd(RCC_AHB3Periph_FSMC, ENABLE); + (++) RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOx, ENABLE); + + (#) FSMC pins configuration + (++) Connect the involved FSMC pins to AF12 using the following function + GPIO_PinAFConfig(GPIOx, GPIO_PinSourcex, GPIO_AF_FSMC); + (++) Configure these FSMC pins in alternate function mode by calling the function + GPIO_Init(); - 3. Declare a FSMC_PCCARDInitTypeDef structure, for example: - FSMC_PCCARDInitTypeDef FSMC_PCCARDInitStructure; + (#) Declare a FSMC_PCCARDInitTypeDef structure, for example: + FSMC_PCCARDInitTypeDef FSMC_PCCARDInitStructure; and fill the FSMC_PCCARDInitStructure variable with the allowed values of the structure member. - 4. Initialize the PCCARD Controller by calling the function - FSMC_PCCARDInit(&FSMC_PCCARDInitStructure); + (#) Initialize the PCCARD Controller by calling the function + FSMC_PCCARDInit(&FSMC_PCCARDInitStructure); - 5. Then enable the PCCARD Bank: - FSMC_PCCARDCmd(ENABLE); + (#) Then enable the PCCARD Bank: + FSMC_PCCARDCmd(ENABLE); - 6. At this stage you can read/write from/to the memory connected to the PCCARD Bank. + (#) At this stage you can read/write from/to the memory connected to the PCCARD Bank. @endverbatim * @{ */ /** - * @brief Deinitializes the FSMC PCCARD Bank registers to their default reset values. + * @brief De-initializes the FSMC PCCARD Bank registers to their default reset values. * @param None * @retval None */ @@ -728,8 +726,8 @@ void FSMC_PCCARDCmd(FunctionalState NewState) * @verbatim =============================================================================== - Interrupts and flags management functions - =============================================================================== + ##### Interrupts and flags management functions ##### + =============================================================================== @endverbatim * @{ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_gpio.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_gpio.c index ea02c5d5..0523e505 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_gpio.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_gpio.c @@ -2,69 +2,68 @@ ****************************************************************************** * @file stm32f4xx_gpio.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the GPIO peripheral: - * - Initialization and Configuration - * - GPIO Read and Write - * - GPIO Alternate functions configuration + * + Initialization and Configuration + * + GPIO Read and Write + * + GPIO Alternate functions configuration * - * @verbatim - * - * =================================================================== - * How to use this driver - * =================================================================== - * 1. Enable the GPIO AHB clock using the following function - * RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOx, ENABLE); - * - * 2. Configure the GPIO pin(s) using GPIO_Init() - * Four possible configuration are available for each pin: - * - Input: Floating, Pull-up, Pull-down. - * - Output: Push-Pull (Pull-up, Pull-down or no Pull) - * Open Drain (Pull-up, Pull-down or no Pull). - * In output mode, the speed is configurable: 2 MHz, 25 MHz, - * 50 MHz or 100 MHz. - * - Alternate Function: Push-Pull (Pull-up, Pull-down or no Pull) - * Open Drain (Pull-up, Pull-down or no Pull). - * - Analog: required mode when a pin is to be used as ADC channel - * or DAC output. - * - * 3- Peripherals alternate function: - * - For ADC and DAC, configure the desired pin in analog mode using - * GPIO_InitStruct->GPIO_Mode = GPIO_Mode_AN; - * - For other peripherals (TIM, USART...): - * - Connect the pin to the desired peripherals' Alternate - * Function (AF) using GPIO_PinAFConfig() function - * - Configure the desired pin in alternate function mode using - * GPIO_InitStruct->GPIO_Mode = GPIO_Mode_AF - * - Select the type, pull-up/pull-down and output speed via - * GPIO_PuPd, GPIO_OType and GPIO_Speed members - * - Call GPIO_Init() function - * - * 4. To get the level of a pin configured in input mode use GPIO_ReadInputDataBit() - * - * 5. To set/reset the level of a pin configured in output mode use - * GPIO_SetBits()/GPIO_ResetBits() - * - * 6. During and just after reset, the alternate functions are not - * active and the GPIO pins are configured in input floating mode - * (except JTAG pins). - * - * 7. The LSE oscillator pins OSC32_IN and OSC32_OUT can be used as - * general-purpose (PC14 and PC15, respectively) when the LSE - * oscillator is off. The LSE has priority over the GPIO function. - * - * 8. The HSE oscillator pins OSC_IN/OSC_OUT can be used as - * general-purpose PH0 and PH1, respectively, when the HSE - * oscillator is off. The HSE has priority over the GPIO function. - * - * @endverbatim +@verbatim + =============================================================================== + ##### How to use this driver ##### + =============================================================================== + [..] + (#) Enable the GPIO AHB clock using the following function + RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOx, ENABLE); + + (#) Configure the GPIO pin(s) using GPIO_Init() + Four possible configuration are available for each pin: + (++) Input: Floating, Pull-up, Pull-down. + (++) Output: Push-Pull (Pull-up, Pull-down or no Pull) + Open Drain (Pull-up, Pull-down or no Pull). In output mode, the speed + is configurable: 2 MHz, 25 MHz, 50 MHz or 100 MHz. + (++) Alternate Function: Push-Pull (Pull-up, Pull-down or no Pull) Open + Drain (Pull-up, Pull-down or no Pull). + (++) Analog: required mode when a pin is to be used as ADC channel or DAC + output. + + (#) Peripherals alternate function: + (++) For ADC and DAC, configure the desired pin in analog mode using + GPIO_InitStruct->GPIO_Mode = GPIO_Mode_AN; + (+++) For other peripherals (TIM, USART...): + (+++) Connect the pin to the desired peripherals' Alternate + Function (AF) using GPIO_PinAFConfig() function + (+++) Configure the desired pin in alternate function mode using + GPIO_InitStruct->GPIO_Mode = GPIO_Mode_AF + (+++) Select the type, pull-up/pull-down and output speed via + GPIO_PuPd, GPIO_OType and GPIO_Speed members + (+++) Call GPIO_Init() function + + (#) To get the level of a pin configured in input mode use GPIO_ReadInputDataBit() + + (#) To set/reset the level of a pin configured in output mode use + GPIO_SetBits()/GPIO_ResetBits() + + (#) During and just after reset, the alternate functions are not + active and the GPIO pins are configured in input floating mode (except JTAG + pins). + + (#) The LSE oscillator pins OSC32_IN and OSC32_OUT can be used as general purpose + (PC14 and PC15, respectively) when the LSE oscillator is off. The LSE has + priority over the GPIO function. + + (#) The HSE oscillator pins OSC_IN/OSC_OUT can be used as + general purpose PH0 and PH1, respectively, when the HSE oscillator is off. + The HSE has priority over the GPIO function. + +@endverbatim * ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -110,7 +109,7 @@ * @verbatim =============================================================================== - Initialization and Configuration + ##### Initialization and Configuration ##### =============================================================================== @endverbatim @@ -118,9 +117,11 @@ */ /** - * @brief Deinitializes the GPIOx peripheral registers to their default reset values. + * @brief De-initializes the GPIOx peripheral registers to their default reset values. * @note By default, The GPIO pins are configured in input floating mode (except JTAG pins). - * @param GPIOx: where x can be (A..I) to select the GPIO peripheral. + * @param GPIOx: where x can be (A..K) to select the GPIO peripheral for STM32F405xx/407xx and STM32F415xx/417xx devices + * x can be (A..I) to select the GPIO peripheral for STM32F42xxx/43xxx devices. + * x can be (A, B, C, D and H) to select the GPIO peripheral for STM32F401xx devices. * @retval None */ void GPIO_DeInit(GPIO_TypeDef* GPIOx) @@ -168,19 +169,32 @@ void GPIO_DeInit(GPIO_TypeDef* GPIOx) RCC_AHB1PeriphResetCmd(RCC_AHB1Periph_GPIOH, ENABLE); RCC_AHB1PeriphResetCmd(RCC_AHB1Periph_GPIOH, DISABLE); } + + else if (GPIOx == GPIOI) + { + RCC_AHB1PeriphResetCmd(RCC_AHB1Periph_GPIOI, ENABLE); + RCC_AHB1PeriphResetCmd(RCC_AHB1Periph_GPIOI, DISABLE); + } + else if (GPIOx == GPIOJ) + { + RCC_AHB1PeriphResetCmd(RCC_AHB1Periph_GPIOJ, ENABLE); + RCC_AHB1PeriphResetCmd(RCC_AHB1Periph_GPIOJ, DISABLE); + } else { - if (GPIOx == GPIOI) + if (GPIOx == GPIOK) { - RCC_AHB1PeriphResetCmd(RCC_AHB1Periph_GPIOI, ENABLE); - RCC_AHB1PeriphResetCmd(RCC_AHB1Periph_GPIOI, DISABLE); + RCC_AHB1PeriphResetCmd(RCC_AHB1Periph_GPIOK, ENABLE); + RCC_AHB1PeriphResetCmd(RCC_AHB1Periph_GPIOK, DISABLE); } } } /** * @brief Initializes the GPIOx peripheral according to the specified parameters in the GPIO_InitStruct. - * @param GPIOx: where x can be (A..I) to select the GPIO peripheral. + * @param GPIOx: where x can be (A..K) to select the GPIO peripheral for STM32F405xx/407xx and STM32F415xx/417xx devices + * x can be (A..I) to select the GPIO peripheral for STM32F42xxx/43xxx devices. + * x can be (A, B, C, D and H) to select the GPIO peripheral for STM32F401xx devices. * @param GPIO_InitStruct: pointer to a GPIO_InitTypeDef structure that contains * the configuration information for the specified GPIO peripheral. * @retval None @@ -195,7 +209,7 @@ void GPIO_Init(GPIO_TypeDef* GPIOx, GPIO_InitTypeDef* GPIO_InitStruct) assert_param(IS_GPIO_MODE(GPIO_InitStruct->GPIO_Mode)); assert_param(IS_GPIO_PUPD(GPIO_InitStruct->GPIO_PuPd)); - /* -------------------------Configure the port pins---------------- */ + /* ------------------------- Configure the port pins ---------------- */ /*-- GPIO Mode Configuration --*/ for (pinpos = 0x00; pinpos < 0x10; pinpos++) { @@ -253,7 +267,9 @@ void GPIO_StructInit(GPIO_InitTypeDef* GPIO_InitStruct) * GPIOx_PUPDR, GPIOx_AFRL and GPIOx_AFRH. * @note The configuration of the locked GPIO pins can no longer be modified * until the next reset. - * @param GPIOx: where x can be (A..I) to select the GPIO peripheral. + * @param GPIOx: where x can be (A..K) to select the GPIO peripheral for STM32F405xx/407xx and STM32F415xx/417xx devices + * x can be (A..I) to select the GPIO peripheral for STM32F42xxx/43xxx devices. + * x can be (A, B, C, D and H) to select the GPIO peripheral for STM32F401xx devices. * @param GPIO_Pin: specifies the port bit to be locked. * This parameter can be any combination of GPIO_Pin_x where x can be (0..15). * @retval None @@ -288,7 +304,7 @@ void GPIO_PinLockConfig(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) * @verbatim =============================================================================== - GPIO Read and Write + ##### GPIO Read and Write ##### =============================================================================== @endverbatim @@ -297,7 +313,9 @@ void GPIO_PinLockConfig(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) /** * @brief Reads the specified input port pin. - * @param GPIOx: where x can be (A..I) to select the GPIO peripheral. + * @param GPIOx: where x can be (A..K) to select the GPIO peripheral for STM32F405xx/407xx and STM32F415xx/417xx devices + * x can be (A..I) to select the GPIO peripheral for STM32F42xxx/43xxx devices. + * x can be (A, B, C, D and H) to select the GPIO peripheral for STM32F401xx devices. * @param GPIO_Pin: specifies the port bit to read. * This parameter can be GPIO_Pin_x where x can be (0..15). * @retval The input port pin value. @@ -323,7 +341,9 @@ uint8_t GPIO_ReadInputDataBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) /** * @brief Reads the specified GPIO input data port. - * @param GPIOx: where x can be (A..I) to select the GPIO peripheral. + * @param GPIOx: where x can be (A..K) to select the GPIO peripheral for STM32F405xx/407xx and STM32F415xx/417xx devices + * x can be (A..I) to select the GPIO peripheral for STM32F42xxx/43xxx devices. + * x can be (A, B, C, D and H) to select the GPIO peripheral for STM32F401xx devices. * @retval GPIO input data port value. */ uint16_t GPIO_ReadInputData(GPIO_TypeDef* GPIOx) @@ -336,7 +356,9 @@ uint16_t GPIO_ReadInputData(GPIO_TypeDef* GPIOx) /** * @brief Reads the specified output data port bit. - * @param GPIOx: where x can be (A..I) to select the GPIO peripheral. + * @param GPIOx: where x can be (A..K) to select the GPIO peripheral for STM32F405xx/407xx and STM32F415xx/417xx devices + * x can be (A..I) to select the GPIO peripheral for STM32F42xxx/43xxx devices. + * x can be (A, B, C, D and H) to select the GPIO peripheral for STM32F401xx devices. * @param GPIO_Pin: specifies the port bit to read. * This parameter can be GPIO_Pin_x where x can be (0..15). * @retval The output port pin value. @@ -349,7 +371,7 @@ uint8_t GPIO_ReadOutputDataBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); assert_param(IS_GET_GPIO_PIN(GPIO_Pin)); - if ((GPIOx->ODR & GPIO_Pin) != (uint32_t)Bit_RESET) + if (((GPIOx->ODR) & GPIO_Pin) != (uint32_t)Bit_RESET) { bitstatus = (uint8_t)Bit_SET; } @@ -362,7 +384,9 @@ uint8_t GPIO_ReadOutputDataBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) /** * @brief Reads the specified GPIO output data port. - * @param GPIOx: where x can be (A..I) to select the GPIO peripheral. + * @param GPIOx: where x can be (A..K) to select the GPIO peripheral for STM32F405xx/407xx and STM32F415xx/417xx devices + * x can be (A..I) to select the GPIO peripheral for STM32F42xxx/43xxx devices. + * x can be (A, B, C, D and H) to select the GPIO peripheral for STM32F401xx devices. * @retval GPIO output data port value. */ uint16_t GPIO_ReadOutputData(GPIO_TypeDef* GPIOx) @@ -378,7 +402,9 @@ uint16_t GPIO_ReadOutputData(GPIO_TypeDef* GPIOx) * @note This functions uses GPIOx_BSRR register to allow atomic read/modify * accesses. In this way, there is no risk of an IRQ occurring between * the read and the modify access. - * @param GPIOx: where x can be (A..I) to select the GPIO peripheral. + * @param GPIOx: where x can be (A..K) to select the GPIO peripheral for STM32F405xx/407xx and STM32F415xx/417xx devices + * x can be (A..I) to select the GPIO peripheral for STM32F42xxx/43xxx devices. + * x can be (A, B, C, D and H) to select the GPIO peripheral for STM32F401xx devices. * @param GPIO_Pin: specifies the port bits to be written. * This parameter can be any combination of GPIO_Pin_x where x can be (0..15). * @retval None @@ -397,7 +423,9 @@ void GPIO_SetBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) * @note This functions uses GPIOx_BSRR register to allow atomic read/modify * accesses. In this way, there is no risk of an IRQ occurring between * the read and the modify access. - * @param GPIOx: where x can be (A..I) to select the GPIO peripheral. + * @param GPIOx: where x can be (A..K) to select the GPIO peripheral for STM32F405xx/407xx and STM32F415xx/417xx devices + * x can be (A..I) to select the GPIO peripheral for STM32F42xxx/43xxx devices. + * x can be (A, B, C, D and H) to select the GPIO peripheral for STM32F401xx devices. * @param GPIO_Pin: specifies the port bits to be written. * This parameter can be any combination of GPIO_Pin_x where x can be (0..15). * @retval None @@ -413,7 +441,9 @@ void GPIO_ResetBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) /** * @brief Sets or clears the selected data port bit. - * @param GPIOx: where x can be (A..I) to select the GPIO peripheral. + * @param GPIOx: where x can be (A..K) to select the GPIO peripheral for STM32F405xx/407xx and STM32F415xx/417xx devices + * x can be (A..I) to select the GPIO peripheral for STM32F42xxx/43xxx devices. + * x can be (A, B, C, D and H) to select the GPIO peripheral for STM32F401xx devices. * @param GPIO_Pin: specifies the port bit to be written. * This parameter can be one of GPIO_Pin_x where x can be (0..15). * @param BitVal: specifies the value to be written to the selected bit. @@ -441,7 +471,9 @@ void GPIO_WriteBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, BitAction BitVal) /** * @brief Writes data to the specified GPIO data port. - * @param GPIOx: where x can be (A..I) to select the GPIO peripheral. + * @param GPIOx: where x can be (A..K) to select the GPIO peripheral for STM32F405xx/407xx and STM32F415xx/417xx devices + * x can be (A..I) to select the GPIO peripheral for STM32F42xxx/43xxx devices. + * x can be (A, B, C, D and H) to select the GPIO peripheral for STM32F401xx devices. * @param PortVal: specifies the value to be written to the port output data register. * @retval None */ @@ -455,7 +487,9 @@ void GPIO_Write(GPIO_TypeDef* GPIOx, uint16_t PortVal) /** * @brief Toggles the specified GPIO pins.. - * @param GPIOx: where x can be (A..I) to select the GPIO peripheral. + * @param GPIOx: where x can be (A..K) to select the GPIO peripheral for STM32F405xx/407xx and STM32F415xx/417xx devices + * x can be (A..I) to select the GPIO peripheral for STM32F42xxx/43xxx devices. + * x can be (A, B, C, D and H) to select the GPIO peripheral for STM32F401xx devices. * @param GPIO_Pin: Specifies the pins to be toggled. * @retval None */ @@ -476,7 +510,7 @@ void GPIO_ToggleBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) * @verbatim =============================================================================== - GPIO Alternate functions configuration function + ##### GPIO Alternate functions configuration function ##### =============================================================================== @endverbatim @@ -485,7 +519,9 @@ void GPIO_ToggleBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) /** * @brief Changes the mapping of the specified pin. - * @param GPIOx: where x can be (A..I) to select the GPIO peripheral. + * @param GPIOx: where x can be (A..K) to select the GPIO peripheral for STM32F405xx/407xx and STM32F415xx/417xx devices + * x can be (A..I) to select the GPIO peripheral for STM32F42xxx/43xxx devices. + * x can be (A, B, C, D and H) to select the GPIO peripheral for STM32F401xx devices. * @param GPIO_PinSource: specifies the pin for the Alternate function. * This parameter can be GPIO_PinSourcex where x can be (0..15). * @param GPIO_AFSelection: selects the pin to used as Alternate function. @@ -509,6 +545,10 @@ void GPIO_ToggleBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) * @arg GPIO_AF_I2C3: Connect I2C3 pins to AF4 * @arg GPIO_AF_SPI1: Connect SPI1 pins to AF5 * @arg GPIO_AF_SPI2: Connect SPI2/I2S2 pins to AF5 + * @arg GPIO_AF_SPI4: Connect SPI4 pins to AF5 + * @arg GPIO_AF_SPI5: Connect SPI5 pins to AF5 + * @arg GPIO_AF_SPI6: Connect SPI6 pins to AF5 + * @arg GPIO_AF_SAI1: Connect SAI1 pins to AF6 for STM32F42xxx/43xxx devices. * @arg GPIO_AF_SPI3: Connect SPI3/I2S3 pins to AF6 * @arg GPIO_AF_I2S3ext: Connect I2S3ext pins to AF7 * @arg GPIO_AF_USART1: Connect USART1 pins to AF7 @@ -517,6 +557,8 @@ void GPIO_ToggleBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) * @arg GPIO_AF_UART4: Connect UART4 pins to AF8 * @arg GPIO_AF_UART5: Connect UART5 pins to AF8 * @arg GPIO_AF_USART6: Connect USART6 pins to AF8 + * @arg GPIO_AF_UART7: Connect UART7 pins to AF8 + * @arg GPIO_AF_UART8: Connect UART8 pins to AF8 * @arg GPIO_AF_CAN1: Connect CAN1 pins to AF9 * @arg GPIO_AF_CAN2: Connect CAN2 pins to AF9 * @arg GPIO_AF_TIM12: Connect TIM12 pins to AF9 @@ -525,10 +567,12 @@ void GPIO_ToggleBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) * @arg GPIO_AF_OTG_FS: Connect OTG_FS pins to AF10 * @arg GPIO_AF_OTG_HS: Connect OTG_HS pins to AF10 * @arg GPIO_AF_ETH: Connect ETHERNET pins to AF11 - * @arg GPIO_AF_FSMC: Connect FSMC pins to AF12 + * @arg GPIO_AF_FSMC: Connect FSMC pins to AF12 + * @arg GPIO_AF_FMC: Connect FMC pins to AF12 for STM32F42xxx/43xxx devices. * @arg GPIO_AF_OTG_HS_FS: Connect OTG HS (configured in FS) pins to AF12 * @arg GPIO_AF_SDIO: Connect SDIO pins to AF12 * @arg GPIO_AF_DCMI: Connect DCMI pins to AF13 + * @arg GPIO_AF_LTDC: Connect LTDC pins to AF14 for STM32F429xx/439xx devices. * @arg GPIO_AF_EVENTOUT: Connect EVENTOUT pins to AF15 * @retval None */ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash.c index ad21e922..88088954 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash.c @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f4xx_hash.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the HASH / HMAC Processor (HASH) peripheral: * - Initialization and Configuration functions @@ -12,103 +12,97 @@ * - DMA interface function * - Interrupts and flags management * - * @verbatim - * - * =================================================================== - * How to use this driver - * =================================================================== - * HASH operation : - * ---------------- - * 1. Enable the HASH controller clock using - * RCC_AHB2PeriphClockCmd(RCC_AHB2Periph_HASH, ENABLE) function. - * - * 2. Initialise the HASH using HASH_Init() function. - * - * 3 . Reset the HASH processor core, so that the HASH will be ready - * to compute he message digest of a new message by using - * HASH_Reset() function. - * - * 4. Enable the HASH controller using the HASH_Cmd() function. - * - * 5. if using DMA for Data input transfer, Activate the DMA Request - * using HASH_DMACmd() function - * - * 6. if DMA is not used for data transfer, use HASH_DataIn() function - * to enter data to IN FIFO. - * - * - * 7. Configure the Number of valid bits in last word of the message - * using HASH_SetLastWordValidBitsNbr() function. - * - * 8. if the message length is not an exact multiple of 512 bits, - * then the function HASH_StartDigest() must be called to - * launch the computation of the final digest. - * - * 9. Once computed, the digest can be read using HASH_GetDigest() - * function. - * - * 10. To control HASH events you can use one of the following - * two methods: - * a- Check on HASH flags using the HASH_GetFlagStatus() function. - * b- Use HASH interrupts through the function HASH_ITConfig() at - * initialization phase and HASH_GetITStatus() function into - * interrupt routines in hashing phase. - * After checking on a flag you should clear it using HASH_ClearFlag() - * function. And after checking on an interrupt event you should - * clear it using HASH_ClearITPendingBit() function. - * - * 11. Save and restore hash processor context using - * HASH_SaveContext() and HASH_RestoreContext() functions. - * - * - * - * HMAC operation : - * ---------------- - * The HMAC algorithm is used for message authentication, by - * irreversibly binding the message being processed to a key chosen - * by the user. - * For HMAC specifications, refer to "HMAC: keyed-hashing for message - * authentication, H. Krawczyk, M. Bellare, R. Canetti, February 1997" - * - * Basically, the HMAC algorithm consists of two nested hash operations: - * HMAC(message) = Hash[((key | pad) XOR 0x5C) | Hash(((key | pad) XOR 0x36) | message)] - * where: - * - "pad" is a sequence of zeroes needed to extend the key to the - * length of the underlying hash function data block (that is - * 512 bits for both the SHA-1 and MD5 hash algorithms) - * - "|" represents the concatenation operator - * - * - * To compute the HMAC, four different phases are required: - * - * 1. Initialise the HASH using HASH_Init() function to do HMAC - * operation. - * - * 2. The key (to be used for the inner hash function) is then given - * to the core. This operation follows the same mechanism as the - * one used to send the message in the hash operation (that is, - * by HASH_DataIn() function and, finally, - * HASH_StartDigest() function. - * - * 3. Once the last word has been entered and computation has started, - * the hash processor elaborates the key. It is then ready to - * accept the message text using the same mechanism as the one - * used to send the message in the hash operation. - * - * 4. After the first hash round, the hash processor returns "ready" - * to indicate that it is ready to receive the key to be used for - * the outer hash function (normally, this key is the same as the - * one used for the inner hash function). When the last word of - * the key is entered and computation starts, the HMAC result is - * made available using HASH_GetDigest() function. - * - * - * @endverbatim +@verbatim + =================================================================== + ##### How to use this driver ##### + =================================================================== + + *** HASH operation : *** + ======================== + [..] + (#) Enable the HASH controller clock using + RCC_AHB2PeriphClockCmd(RCC_AHB2Periph_HASH, ENABLE) function. + + (#) Initialise the HASH using HASH_Init() function. + + (#) Reset the HASH processor core, so that the HASH will be ready + to compute he message digest of a new message by using HASH_Reset() function. + + (#) Enable the HASH controller using the HASH_Cmd() function. + + (#) if using DMA for Data input transfer, Activate the DMA Request + using HASH_DMACmd() function + + (#) if DMA is not used for data transfer, use HASH_DataIn() function + to enter data to IN FIFO. + + + (#) Configure the Number of valid bits in last word of the message + using HASH_SetLastWordValidBitsNbr() function. + + (#) if the message length is not an exact multiple of 512 bits, + then the function HASH_StartDigest() must be called to launch the computation + of the final digest. + + (#) Once computed, the digest can be read using HASH_GetDigest() function. + + (#) To control HASH events you can use one of the following wo methods: + (++) Check on HASH flags using the HASH_GetFlagStatus() function. + (++) Use HASH interrupts through the function HASH_ITConfig() at + initialization phase and HASH_GetITStatus() function into + interrupt routines in hashing phase. + After checking on a flag you should clear it using HASH_ClearFlag() + function. And after checking on an interrupt event you should + clear it using HASH_ClearITPendingBit() function. + + (#) Save and restore hash processor context using + HASH_SaveContext() and HASH_RestoreContext() functions. + + + + *** HMAC operation : *** + ======================== + [..] The HMAC algorithm is used for message authentication, by + irreversibly binding the message being processed to a key chosen + by the user. + For HMAC specifications, refer to "HMAC: keyed-hashing for message + authentication, H. Krawczyk, M. Bellare, R. Canetti, February 1997" + + [..] Basically, the HMAC algorithm consists of two nested hash operations: + HMAC(message) = Hash[((key | pad) XOR 0x5C) | Hash(((key | pad) XOR 0x36) | message)] + where: + (+) "pad" is a sequence of zeroes needed to extend the key to the + length of the underlying hash function data block (that is + 512 bits for both the SHA-1 and MD5 hash algorithms) + (+) "|" represents the concatenation operator + + + [..]To compute the HMAC, four different phases are required: + (#) Initialise the HASH using HASH_Init() function to do HMAC + operation. + + (#) The key (to be used for the inner hash function) is then given to the core. + This operation follows the same mechanism as the one used to send the + message in the hash operation (that is, by HASH_DataIn() function and, + finally, HASH_StartDigest() function. + + (#) Once the last word has been entered and computation has started, + the hash processor elaborates the key. It is then ready to accept the message + text using the same mechanism as the one used to send the message in the + hash operation. + + (#) After the first hash round, the hash processor returns "ready" to indicate + that it is ready to receive the key to be used for the outer hash function + (normally, this key is the same as the one used for the inner hash function). + When the last word of the key is entered and computation starts, the HMAC + result is made available using HASH_GetDigest() function. + +@endverbatim * ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -122,7 +116,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - ****************************************************************************** + ****************************************************************************** */ /* Includes ------------------------------------------------------------------*/ @@ -154,23 +148,23 @@ * @verbatim =============================================================================== - Initialization and Configuration functions + ##### Initialization and Configuration functions ##### =============================================================================== - This section provides functions allowing to - - Initialize the HASH peripheral - - Configure the HASH Processor - - MD5/SHA1, - - HASH/HMAC, - - datatype - - HMAC Key (if mode = HMAC) - - Reset the HASH Processor + [..] This section provides functions allowing to + (+) Initialize the HASH peripheral + (+) Configure the HASH Processor + (+) MD5/SHA1, + (+) HASH/HMAC, + (+) datatype + (+) HMAC Key (if mode = HMAC) + (+) Reset the HASH Processor @endverbatim * @{ */ /** - * @brief Deinitializes the HASH peripheral registers to their default reset values + * @brief De-initializes the HASH peripheral registers to their default reset values * @param None * @retval None */ @@ -266,14 +260,14 @@ void HASH_Reset(void) * @verbatim =============================================================================== - Message Digest generation functions + ##### Message Digest generation functions ##### =============================================================================== - This section provides functions allowing the generation of message digest: - - Push data in the IN FIFO : using HASH_DataIn() - - Get the number of words set in IN FIFO, use HASH_GetInFIFOWordsNbr() - - set the last word valid bits number using HASH_SetLastWordValidBitsNbr() - - start digest calculation : using HASH_StartDigest() - - Get the Digest message : using HASH_GetDigest() + [..] This section provides functions allowing the generation of message digest: + (+) Push data in the IN FIFO : using HASH_DataIn() + (+) Get the number of words set in IN FIFO, use HASH_GetInFIFOWordsNbr() + (+) set the last word valid bits number using HASH_SetLastWordValidBitsNbr() + (+) start digest calculation : using HASH_StartDigest() + (+) Get the Digest message : using HASH_GetDigest() @endverbatim * @{ @@ -328,7 +322,11 @@ uint8_t HASH_GetInFIFOWordsNbr(void) /** * @brief Provides the message digest result. - * @note In MD5 mode, Data[4] filed of HASH_MsgDigest structure is not used + * @note In MD5 mode, Data[7] to Data[4] filed of HASH_MsgDigest structure is not used + * and is read as zero. + * In SHA-1 mode, Data[7] to Data[5] filed of HASH_MsgDigest structure is not used + * and is read as zero. + * In SHA-224 mode, Data[7] filed of HASH_MsgDigest structure is not used * and is read as zero. * @param HASH_MessageDigest: pointer to a HASH_MsgDigest structure which will * hold the message digest result @@ -342,6 +340,9 @@ void HASH_GetDigest(HASH_MsgDigest* HASH_MessageDigest) HASH_MessageDigest->Data[2] = HASH->HR[2]; HASH_MessageDigest->Data[3] = HASH->HR[3]; HASH_MessageDigest->Data[4] = HASH->HR[4]; + HASH_MessageDigest->Data[5] = HASH_DIGEST->HR[5]; + HASH_MessageDigest->Data[6] = HASH_DIGEST->HR[6]; + HASH_MessageDigest->Data[7] = HASH_DIGEST->HR[7]; } /** @@ -363,19 +364,19 @@ void HASH_StartDigest(void) * @verbatim =============================================================================== - Context swapping functions + ##### Context swapping functions ##### =============================================================================== - - This section provides functions allowing to save and store HASH Context + + [..] This section provides functions allowing to save and store HASH Context - It is possible to interrupt a HASH/HMAC process to perform another processing - with a higher priority, and to complete the interrupted process later on, when - the higher priority task is complete. To do so, the context of the interrupted - task must be saved from the HASH registers to memory, and then be restored - from memory to the HASH registers. + [..] It is possible to interrupt a HASH/HMAC process to perform another processing + with a higher priority, and to complete the interrupted process later on, when + the higher priority task is complete. To do so, the context of the interrupted + task must be saved from the HASH registers to memory, and then be restored + from memory to the HASH registers. - 1. To save the current context, use HASH_SaveContext() function - 2. To restore the saved context, use HASH_RestoreContext() function + (#) To save the current context, use HASH_SaveContext() function + (#) To restore the saved context, use HASH_RestoreContext() function @endverbatim @@ -400,7 +401,7 @@ void HASH_SaveContext(HASH_Context* HASH_ContextSave) HASH_ContextSave->HASH_IMR = HASH->IMR; HASH_ContextSave->HASH_STR = HASH->STR; HASH_ContextSave->HASH_CR = HASH->CR; - for(i=0; i<=50;i++) + for(i=0; i<=53;i++) { HASH_ContextSave->HASH_CSR[i] = HASH->CSR[i]; } @@ -427,7 +428,7 @@ void HASH_RestoreContext(HASH_Context* HASH_ContextRestore) HASH->CR |= HASH_CR_INIT; /* continue restoring context registers */ - for(i=0; i<=50;i++) + for(i=0; i<=53;i++) { HASH->CSR[i] = HASH_ContextRestore->HASH_CSR[i]; } @@ -441,20 +442,42 @@ void HASH_RestoreContext(HASH_Context* HASH_ContextRestore) * @verbatim =============================================================================== - HASH's DMA interface Configuration function + ##### HASH's DMA interface Configuration function ##### =============================================================================== - This section provides functions allowing to configure the DMA interface for - HASH/ HMAC data input transfer. + [..] This section provides functions allowing to configure the DMA interface for + HASH/ HMAC data input transfer. - When the DMA mode is enabled (using the HASH_DMACmd() function), data can be - sent to the IN FIFO using the DMA peripheral. - - + [..] When the DMA mode is enabled (using the HASH_DMACmd() function), data can be + sent to the IN FIFO using the DMA peripheral. @endverbatim * @{ */ + +/** + * @brief Enables or disables auto-start message padding and + * calculation of the final message digest at the end of DMA transfer. + * @param NewState: new state of the selected HASH DMA transfer request. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void HASH_AutoStartDigest(FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + /* Enable the auto start of the final message digest at the end of DMA transfer */ + HASH->CR &= ~HASH_CR_MDMAT; + } + else + { + /* Disable the auto start of the final message digest at the end of DMA transfer */ + HASH->CR |= HASH_CR_MDMAT; + } +} /** * @brief Enables or disables the HASH DMA interface. @@ -488,61 +511,58 @@ void HASH_DMACmd(FunctionalState NewState) * @verbatim =============================================================================== - Interrupts and flags management functions + ##### Interrupts and flags management functions ##### =============================================================================== - This section provides functions allowing to configure the HASH Interrupts and - to get the status and clear flags and Interrupts pending bits. + [..] This section provides functions allowing to configure the HASH Interrupts and + to get the status and clear flags and Interrupts pending bits. - The HASH provides 2 Interrupts sources and 5 Flags: + [..] The HASH provides 2 Interrupts sources and 5 Flags: - Flags : - ---------- - 1. HASH_FLAG_DINIS : set when 16 locations are free in the Data IN FIFO - which means that a new block (512 bit) can be entered - into the input buffer. + *** Flags : *** + =============== + [..] + (#) HASH_FLAG_DINIS : set when 16 locations are free in the Data IN FIFO + which means that a new block (512 bit) can be entered into the input buffer. - 2. HASH_FLAG_DCIS : set when Digest calculation is complete + (#) HASH_FLAG_DCIS : set when Digest calculation is complete - 3. HASH_FLAG_DMAS : set when HASH's DMA interface is enabled (DMAE=1) or - a transfer is ongoing. - This Flag is cleared only by hardware. + (#) HASH_FLAG_DMAS : set when HASH's DMA interface is enabled (DMAE=1) or + a transfer is ongoing. This Flag is cleared only by hardware. - 4. HASH_FLAG_BUSY : set when The hash core is processing a block of data - This Flag is cleared only by hardware. + (#) HASH_FLAG_BUSY : set when The hash core is processing a block of data + This Flag is cleared only by hardware. - 5. HASH_FLAG_DINNE : set when Data IN FIFO is not empty which means that - the Data IN FIFO contains at least one word of data. - This Flag is cleared only by hardware. + (#) HASH_FLAG_DINNE : set when Data IN FIFO is not empty which means that + the Data IN FIFO contains at least one word of data. This Flag is cleared + only by hardware. - Interrupts : - ------------ - - 1. HASH_IT_DINI : if enabled, this interrupt source is pending when 16 - locations are free in the Data IN FIFO which means that - a new block (512 bit) can be entered into the input buffer. - This interrupt source is cleared using - HASH_ClearITPendingBit(HASH_IT_DINI) function. + *** Interrupts : *** + ==================== + [..] + (#) HASH_IT_DINI : if enabled, this interrupt source is pending when 16 + locations are free in the Data IN FIFO which means that a new block (512 bit) + can be entered into the input buffer. This interrupt source is cleared using + HASH_ClearITPendingBit(HASH_IT_DINI) function. - 2. HASH_IT_DCI : if enabled, this interrupt source is pending when Digest - calculation is complete. - This interrupt source is cleared using - HASH_ClearITPendingBit(HASH_IT_DCI) function. - - Managing the HASH controller events : - ------------------------------------ - The user should identify which mode will be used in his application to manage - the HASH controller events: Polling mode or Interrupt mode. + (#) HASH_IT_DCI : if enabled, this interrupt source is pending when Digest + calculation is complete. This interrupt source is cleared using + HASH_ClearITPendingBit(HASH_IT_DCI) function. + + *** Managing the HASH controller events : *** + ============================================= + [..] The user should identify which mode will be used in his application to manage + the HASH controller events: Polling mode or Interrupt mode. - 1. In the Polling Mode it is advised to use the following functions: - - HASH_GetFlagStatus() : to check if flags events occur. - - HASH_ClearFlag() : to clear the flags events. + (#) In the Polling Mode it is advised to use the following functions: + (++) HASH_GetFlagStatus() : to check if flags events occur. + (++) HASH_ClearFlag() : to clear the flags events. - 2. In the Interrupt Mode it is advised to use the following functions: - - HASH_ITConfig() : to enable or disable the interrupt source. - - HASH_GetITStatus() : to check if Interrupt occurs. - - HASH_ClearITPendingBit() : to clear the Interrupt pending Bit - (corresponding Flag). + (#) In the Interrupt Mode it is advised to use the following functions: + (++) HASH_ITConfig() : to enable or disable the interrupt source. + (++) HASH_GetITStatus() : to check if Interrupt occurs. + (++) HASH_ClearITPendingBit() : to clear the Interrupt pending Bit + (corresponding Flag). @endverbatim * @{ @@ -558,7 +578,7 @@ void HASH_DMACmd(FunctionalState NewState) * This parameter can be: ENABLE or DISABLE. * @retval None */ -void HASH_ITConfig(uint8_t HASH_IT, FunctionalState NewState) +void HASH_ITConfig(uint32_t HASH_IT, FunctionalState NewState) { /* Check the parameters */ assert_param(IS_HASH_IT(HASH_IT)); @@ -572,7 +592,7 @@ void HASH_ITConfig(uint8_t HASH_IT, FunctionalState NewState) else { /* Disable the selected HASH interrupt */ - HASH->IMR &= (uint8_t) ~HASH_IT; + HASH->IMR &= (uint32_t)(~HASH_IT); } } @@ -587,7 +607,7 @@ void HASH_ITConfig(uint8_t HASH_IT, FunctionalState NewState) * @arg HASH_FLAG_DINNE: Data Input register (DIN) not empty status flag * @retval The new state of HASH_FLAG (SET or RESET) */ -FlagStatus HASH_GetFlagStatus(uint16_t HASH_FLAG) +FlagStatus HASH_GetFlagStatus(uint32_t HASH_FLAG) { FlagStatus bitstatus = RESET; uint32_t tempreg = 0; @@ -596,7 +616,7 @@ FlagStatus HASH_GetFlagStatus(uint16_t HASH_FLAG) assert_param(IS_HASH_GET_FLAG(HASH_FLAG)); /* check if the FLAG is in CR register */ - if ((HASH_FLAG & HASH_FLAG_DINNE) != (uint16_t)RESET ) + if ((HASH_FLAG & HASH_FLAG_DINNE) != (uint32_t)RESET ) { tempreg = HASH->CR; } @@ -606,7 +626,7 @@ FlagStatus HASH_GetFlagStatus(uint16_t HASH_FLAG) } /* Check the status of the specified HASH flag */ - if ((tempreg & HASH_FLAG) != (uint16_t)RESET) + if ((tempreg & HASH_FLAG) != (uint32_t)RESET) { /* HASH is set */ bitstatus = SET; @@ -628,7 +648,7 @@ FlagStatus HASH_GetFlagStatus(uint16_t HASH_FLAG) * @arg HASH_FLAG_DCIS: Digest Calculation Completion Flag * @retval None */ -void HASH_ClearFlag(uint16_t HASH_FLAG) +void HASH_ClearFlag(uint32_t HASH_FLAG) { /* Check the parameters */ assert_param(IS_HASH_CLEAR_FLAG(HASH_FLAG)); @@ -644,7 +664,7 @@ void HASH_ClearFlag(uint16_t HASH_FLAG) * @arg HASH_IT_DCI: Digest Calculation Completion Interrupt * @retval The new state of HASH_IT (SET or RESET). */ -ITStatus HASH_GetITStatus(uint8_t HASH_IT) +ITStatus HASH_GetITStatus(uint32_t HASH_IT) { ITStatus bitstatus = RESET; uint32_t tmpreg = 0; @@ -678,13 +698,13 @@ ITStatus HASH_GetITStatus(uint8_t HASH_IT) * @arg HASH_IT_DCI: Digest Calculation Completion Interrupt * @retval None */ -void HASH_ClearITPendingBit(uint8_t HASH_IT) +void HASH_ClearITPendingBit(uint32_t HASH_IT) { /* Check the parameters */ assert_param(IS_HASH_IT(HASH_IT)); /* Clear the selected HASH interrupt pending bit */ - HASH->SR = (uint8_t)~HASH_IT; + HASH->SR = (uint32_t)(~HASH_IT); } /** diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash_md5.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash_md5.c index 02fe3c61..0a5f1da0 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash_md5.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash_md5.c @@ -2,31 +2,31 @@ ****************************************************************************** * @file stm32f4xx_hash_md5.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides high level functions to compute the HASH MD5 and * HMAC MD5 Digest of an input message. * It uses the stm32f4xx_hash.c/.h drivers to access the STM32F4xx HASH * peripheral. * - * @verbatim - * - * =================================================================== - * How to use this driver - * =================================================================== - * 1. Enable The HASH controller clock using - * RCC_AHB2PeriphClockCmd(RCC_AHB2Periph_HASH, ENABLE); function. - * - * 2. Calculate the HASH MD5 Digest using HASH_MD5() function. - * - * 3. Calculate the HMAC MD5 Digest using HMAC_MD5() function. - * - * @endverbatim +@verbatim + =================================================================== + ##### How to use this driver ##### + =================================================================== + [..] + (#) Enable The HASH controller clock using + RCC_AHB2PeriphClockCmd(RCC_AHB2Periph_HASH, ENABLE); function. + + (#) Calculate the HASH MD5 Digest using HASH_MD5() function. + + (#) Calculate the HMAC MD5 Digest using HMAC_MD5() function. + +@endverbatim * ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -73,7 +73,7 @@ * @verbatim =============================================================================== - High Level MD5 Hash and HMAC functions + ##### High Level MD5 Hash and HMAC functions ##### =============================================================================== diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash_sha1.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash_sha1.c index d67b0349..c595ef8b 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash_sha1.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_hash_sha1.c @@ -2,31 +2,31 @@ ****************************************************************************** * @file stm32f4xx_hash_sha1.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides high level functions to compute the HASH SHA1 and * HMAC SHA1 Digest of an input message. * It uses the stm32f4xx_hash.c/.h drivers to access the STM32F4xx HASH * peripheral. * - * @verbatim - * - * =================================================================== - * How to use this driver - * =================================================================== - * 1. Enable The HASH controller clock using - * RCC_AHB2PeriphClockCmd(RCC_AHB2Periph_HASH, ENABLE); function. - * - * 2. Calculate the HASH SHA1 Digest using HASH_SHA1() function. - * - * 3. Calculate the HMAC SHA1 Digest using HMAC_SHA1() function. - * - * @endverbatim +@verbatim + =================================================================== + ##### How to use this driver ##### + =================================================================== + [..] + (#) Enable The HASH controller clock using + RCC_AHB2PeriphClockCmd(RCC_AHB2Periph_HASH, ENABLE); function. + + (#) Calculate the HASH SHA1 Digest using HASH_SHA1() function. + + (#) Calculate the HMAC SHA1 Digest using HMAC_SHA1() function. + +@endverbatim * ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -73,7 +73,7 @@ * @verbatim =============================================================================== - High Level SHA1 Hash and HMAC functions + ##### High Level SHA1 Hash and HMAC functions ##### =============================================================================== diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_i2c.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_i2c.c index ebb38dfb..456efc07 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_i2c.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_i2c.c @@ -2,77 +2,76 @@ ****************************************************************************** * @file stm32f4xx_i2c.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the Inter-integrated circuit (I2C) - * - Initialization and Configuration - * - Data transfers - * - PEC management - * - DMA transfers management - * - Interrupts, events and flags management + * + Initialization and Configuration + * + Data transfers + * + PEC management + * + DMA transfers management + * + Interrupts, events and flags management * - * @verbatim - * - * =================================================================== - * How to use this driver - * =================================================================== - * 1. Enable peripheral clock using RCC_APB1PeriphClockCmd(RCC_APB1Periph_I2Cx, ENABLE) - * function for I2C1, I2C2 or I2C3. - * - * 2. Enable SDA, SCL and SMBA (when used) GPIO clocks using - * RCC_AHBPeriphClockCmd() function. - * - * 3. Peripherals alternate function: - * - Connect the pin to the desired peripherals' Alternate - * Function (AF) using GPIO_PinAFConfig() function - * - Configure the desired pin in alternate function by: - * GPIO_InitStruct->GPIO_Mode = GPIO_Mode_AF - * - Select the type, pull-up/pull-down and output speed via - * GPIO_PuPd, GPIO_OType and GPIO_Speed members - * - Call GPIO_Init() function - * Recommended configuration is Push-Pull, Pull-up, Open-Drain. - * Add an external pull up if necessary (typically 4.7 KOhm). - * - * 4. Program the Mode, duty cycle , Own address, Ack, Speed and Acknowledged - * Address using the I2C_Init() function. - * - * 5. Optionally you can enable/configure the following parameters without - * re-initialization (i.e there is no need to call again I2C_Init() function): - * - Enable the acknowledge feature using I2C_AcknowledgeConfig() function - * - Enable the dual addressing mode using I2C_DualAddressCmd() function - * - Enable the general call using the I2C_GeneralCallCmd() function - * - Enable the clock stretching using I2C_StretchClockCmd() function - * - Enable the fast mode duty cycle using the I2C_FastModeDutyCycleConfig() - * function. - * - Configure the NACK position for Master Receiver mode in case of - * 2 bytes reception using the function I2C_NACKPositionConfig(). - * - Enable the PEC Calculation using I2C_CalculatePEC() function - * - For SMBus Mode: - * - Enable the Address Resolution Protocol (ARP) using I2C_ARPCmd() function - * - Configure the SMBusAlert pin using I2C_SMBusAlertConfig() function - * - * 6. Enable the NVIC and the corresponding interrupt using the function - * I2C_ITConfig() if you need to use interrupt mode. - * - * 7. When using the DMA mode - * - Configure the DMA using DMA_Init() function - * - Active the needed channel Request using I2C_DMACmd() or - * I2C_DMALastTransferCmd() function. - * @note When using DMA mode, I2C interrupts may be used at the same time to - * control the communication flow (Start/Stop/Ack... events and errors). - * - * 8. Enable the I2C using the I2C_Cmd() function. - * - * 9. Enable the DMA using the DMA_Cmd() function when using DMA mode in the - * transfers. - * - * @endverbatim - * + @verbatim + =============================================================================== + ##### How to use this driver ##### + =============================================================================== + [..] + (#) Enable peripheral clock using RCC_APB1PeriphClockCmd(RCC_APB1Periph_I2Cx, ENABLE) + function for I2C1, I2C2 or I2C3. + + (#) Enable SDA, SCL and SMBA (when used) GPIO clocks using + RCC_AHBPeriphClockCmd() function. + + (#) Peripherals alternate function: + (++) Connect the pin to the desired peripherals' Alternate + Function (AF) using GPIO_PinAFConfig() function + (++) Configure the desired pin in alternate function by: + GPIO_InitStruct->GPIO_Mode = GPIO_Mode_AF + (++) Select the type, pull-up/pull-down and output speed via + GPIO_PuPd, GPIO_OType and GPIO_Speed members + (++) Call GPIO_Init() function + Recommended configuration is Push-Pull, Pull-up, Open-Drain. + Add an external pull up if necessary (typically 4.7 KOhm). + + (#) Program the Mode, duty cycle , Own address, Ack, Speed and Acknowledged + Address using the I2C_Init() function. + + (#) Optionally you can enable/configure the following parameters without + re-initialization (i.e there is no need to call again I2C_Init() function): + (++) Enable the acknowledge feature using I2C_AcknowledgeConfig() function + (++) Enable the dual addressing mode using I2C_DualAddressCmd() function + (++) Enable the general call using the I2C_GeneralCallCmd() function + (++) Enable the clock stretching using I2C_StretchClockCmd() function + (++) Enable the fast mode duty cycle using the I2C_FastModeDutyCycleConfig() + function. + (++) Configure the NACK position for Master Receiver mode in case of + 2 bytes reception using the function I2C_NACKPositionConfig(). + (++) Enable the PEC Calculation using I2C_CalculatePEC() function + (++) For SMBus Mode: + (+++) Enable the Address Resolution Protocol (ARP) using I2C_ARPCmd() function + (+++) Configure the SMBusAlert pin using I2C_SMBusAlertConfig() function + + (#) Enable the NVIC and the corresponding interrupt using the function + I2C_ITConfig() if you need to use interrupt mode. + + (#) When using the DMA mode + (++) Configure the DMA using DMA_Init() function + (++) Active the needed channel Request using I2C_DMACmd() or + I2C_DMALastTransferCmd() function. + -@@- When using DMA mode, I2C interrupts may be used at the same time to + control the communication flow (Start/Stop/Ack... events and errors). + + (#) Enable the I2C using the I2C_Cmd() function. + + (#) Enable the DMA using the DMA_Cmd() function when using DMA mode in the + transfers. + + @endverbatim ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -86,7 +85,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - ****************************************************************************** + ****************************************************************************** */ /* Includes ------------------------------------------------------------------*/ @@ -123,7 +122,7 @@ * @verbatim =============================================================================== - Initialization and Configuration functions + ##### Initialization and Configuration functions ##### =============================================================================== @endverbatim @@ -328,6 +327,68 @@ void I2C_Cmd(I2C_TypeDef* I2Cx, FunctionalState NewState) } } +/** + * @brief Enables or disables the Analog filter of I2C peripheral. + * + * @note This function can be used only for STM32F42xxx/STM3243xxx, STM32F401xx and STM32F411xE devices. + * + * @param I2Cx: where x can be 1, 2 or 3 to select the I2C peripheral. + * @param NewState: new state of the Analog filter. + * This parameter can be: ENABLE or DISABLE. + * @note This function should be called before initializing and enabling + the I2C Peripheral. + * @retval None + */ +void I2C_AnalogFilterCmd(I2C_TypeDef* I2Cx, FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_I2C_ALL_PERIPH(I2Cx)); + assert_param(IS_FUNCTIONAL_STATE(NewState)); + if (NewState != DISABLE) + { + /* Enable the analog filter */ + I2Cx->FLTR &= (uint16_t)~((uint16_t)I2C_FLTR_ANOFF); + } + else + { + /* Disable the analog filter */ + I2Cx->FLTR |= I2C_FLTR_ANOFF; + } +} + +/** + * @brief Configures the Digital noise filter of I2C peripheral. + * + * @note This function can be used only for STM32F42xxx/STM3243xxx, STM32F401xx and STM32F411xE devices. + * + * @param I2Cx: where x can be 1, 2 or 3 to select the I2C peripheral. + * @param I2C_DigitalFilter: Coefficient of digital noise filter. + * This parameter can be a number between 0x00 and 0x0F. + * @note This function should be called before initializing and enabling + the I2C Peripheral. + * @retval None + */ +void I2C_DigitalFilterConfig(I2C_TypeDef* I2Cx, uint16_t I2C_DigitalFilter) +{ + uint16_t tmpreg = 0; + + /* Check the parameters */ + assert_param(IS_I2C_ALL_PERIPH(I2Cx)); + assert_param(IS_I2C_DIGITAL_FILTER(I2C_DigitalFilter)); + + /* Get the old register value */ + tmpreg = I2Cx->FLTR; + + /* Reset I2Cx DNF bit [3:0] */ + tmpreg &= (uint16_t)~((uint16_t)I2C_FLTR_DNF); + + /* Set I2Cx DNF coefficient */ + tmpreg |= (uint16_t)((uint16_t)I2C_DigitalFilter & I2C_FLTR_DNF); + + /* Store the new register value */ + I2Cx->FLTR = tmpreg; +} + /** * @brief Generates I2Cx communication START condition. * @param I2Cx: where x can be 1, 2 or 3 to select the I2C peripheral. @@ -679,7 +740,7 @@ void I2C_ARPCmd(I2C_TypeDef* I2Cx, FunctionalState NewState) * @verbatim =============================================================================== - Data transfers functions + ##### Data transfers functions ##### =============================================================================== @endverbatim @@ -722,7 +783,7 @@ uint8_t I2C_ReceiveData(I2C_TypeDef* I2Cx) * @verbatim =============================================================================== - PEC management functions + ##### PEC management functions ##### =============================================================================== @endverbatim @@ -830,7 +891,7 @@ uint8_t I2C_GetPEC(I2C_TypeDef* I2Cx) * @verbatim =============================================================================== - DMA transfers management functions + ##### DMA transfers management functions ##### =============================================================================== This section provides functions allowing to configure the I2C DMA channels requests. @@ -896,94 +957,94 @@ void I2C_DMALastTransferCmd(I2C_TypeDef* I2Cx, FunctionalState NewState) * @verbatim =============================================================================== - Interrupts, events and flags management functions - =============================================================================== - This section provides functions allowing to configure the I2C Interrupts - sources and check or clear the flags or pending bits status. - The user should identify which mode will be used in his application to manage - the communication: Polling mode, Interrupt mode or DMA mode. - + ##### Interrupts, events and flags management functions ##### =============================================================================== - I2C State Monitoring Functions - =============================================================================== - This I2C driver provides three different ways for I2C state monitoring - depending on the application requirements and constraints: + [..] + This section provides functions allowing to configure the I2C Interrupts + sources and check or clear the flags or pending bits status. + The user should identify which mode will be used in his application to manage + the communication: Polling mode, Interrupt mode or DMA mode. + + + ##### I2C State Monitoring Functions ##### + =============================================================================== + [..] + This I2C driver provides three different ways for I2C state monitoring + depending on the application requirements and constraints: - 1. Basic state monitoring (Using I2C_CheckEvent() function) - ----------------------------------------------------------- + (#) Basic state monitoring (Using I2C_CheckEvent() function) + It compares the status registers (SR1 and SR2) content to a given event (can be the combination of one or more flags). It returns SUCCESS if the current status includes the given flags and returns ERROR if one or more flags are missing in the current status. - - When to use - - This function is suitable for most applications as well as for startup + (++) When to use + (+++) This function is suitable for most applications as well as for startup activity since the events are fully described in the product reference manual (RM0090). - - It is also suitable for users who need to define their own events. + (+++) It is also suitable for users who need to define their own events. - - Limitations - - If an error occurs (ie. error flags are set besides to the monitored + (++) Limitations + If an error occurs (ie. error flags are set besides to the monitored flags), the I2C_CheckEvent() function may return SUCCESS despite the communication hold or corrupted real state. In this case, it is advised to use error interrupts to monitor the error events and handle them in the interrupt IRQ handler. - @note - For error management, it is advised to use the following functions: - - I2C_ITConfig() to configure and enable the error interrupts (I2C_IT_ERR). - - I2Cx_ER_IRQHandler() which is called when the error interrupt occurs. - Where x is the peripheral instance (I2C1, I2C2 ...) - - I2C_GetFlagStatus() or I2C_GetITStatus() to be called into the - I2Cx_ER_IRQHandler() function in order to determine which error occurred. - - I2C_ClearFlag() or I2C_ClearITPendingBit() and/or I2C_SoftwareResetCmd() - and/or I2C_GenerateStop() in order to clear the error flag and source - and return to correct communication status. + -@@- For error management, it is advised to use the following functions: + (+@@) I2C_ITConfig() to configure and enable the error interrupts (I2C_IT_ERR). + (+@@) I2Cx_ER_IRQHandler() which is called when the error interrupt occurs. + Where x is the peripheral instance (I2C1, I2C2 ...) + (+@@) I2C_GetFlagStatus() or I2C_GetITStatus() to be called into the + I2Cx_ER_IRQHandler() function in order to determine which error occurred. + (+@@) I2C_ClearFlag() or I2C_ClearITPendingBit() and/or I2C_SoftwareResetCmd() + and/or I2C_GenerateStop() in order to clear the error flag and source + and return to correct communication status. - 2. Advanced state monitoring (Using the function I2C_GetLastEvent()) - -------------------------------------------------------------------- + (#) Advanced state monitoring (Using the function I2C_GetLastEvent()) + Using the function I2C_GetLastEvent() which returns the image of both status registers in a single word (uint32_t) (Status Register 2 value is shifted left by 16 bits and concatenated to Status Register 1). - - When to use - - This function is suitable for the same applications above but it + (++) When to use + (+++) This function is suitable for the same applications above but it allows to overcome the mentioned limitation of I2C_GetFlagStatus() function. - - The returned value could be compared to events already defined in + (+++) The returned value could be compared to events already defined in the library (stm32f4xx_i2c.h) or to custom values defined by user. This function is suitable when multiple flags are monitored at the same time. - - At the opposite of I2C_CheckEvent() function, this function allows + (+++) At the opposite of I2C_CheckEvent() function, this function allows user to choose when an event is accepted (when all events flags are set and no other flags are set or just when the needed flags are set like I2C_CheckEvent() function. - - Limitations - - User may need to define his own events. - - Same remark concerning the error management is applicable for this + (++) Limitations + (+++) User may need to define his own events. + (+++) Same remark concerning the error management is applicable for this function if user decides to check only regular communication flags (and ignores error flags). - 3. Flag-based state monitoring (Using the function I2C_GetFlagStatus()) - ----------------------------------------------------------------------- + (#) Flag-based state monitoring (Using the function I2C_GetFlagStatus()) Using the function I2C_GetFlagStatus() which simply returns the status of one single flag (ie. I2C_FLAG_RXNE ...). - - When to use - - This function could be used for specific applications or in debug + (++) When to use + (+++) This function could be used for specific applications or in debug phase. - - It is suitable when only one flag checking is needed (most I2C + (+++) It is suitable when only one flag checking is needed (most I2C events are monitored through multiple flags). - - Limitations: - - When calling this function, the Status register is accessed. + (++) Limitations: + (+++) When calling this function, the Status register is accessed. Some flags are cleared when the status register is accessed. So checking the status of one Flag, may clear other ones. - - Function may need to be called twice or more in order to monitor + (+++) Function may need to be called twice or more in order to monitor one single event. For detailed description of Events, please refer to section I2C_Events in diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_iwdg.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_iwdg.c index a26b9856..4adc69b3 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_iwdg.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_iwdg.c @@ -2,72 +2,69 @@ ****************************************************************************** * @file stm32f4xx_iwdg.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the Independent watchdog (IWDG) peripheral: - * - Prescaler and Counter configuration - * - IWDG activation - * - Flag management + * + Prescaler and Counter configuration + * + IWDG activation + * + Flag management * - * @verbatim - * - * =================================================================== - * IWDG features - * =================================================================== - * - * The IWDG can be started by either software or hardware (configurable - * through option byte). - * - * The IWDG is clocked by its own dedicated low-speed clock (LSI) and - * thus stays active even if the main clock fails. - * Once the IWDG is started, the LSI is forced ON and cannot be disabled - * (LSI cannot be disabled too), and the counter starts counting down from - * the reset value of 0xFFF. When it reaches the end of count value (0x000) - * a system reset is generated. - * The IWDG counter should be reloaded at regular intervals to prevent - * an MCU reset. - * - * The IWDG is implemented in the VDD voltage domain that is still functional - * in STOP and STANDBY mode (IWDG reset can wake-up from STANDBY). - * - * IWDGRST flag in RCC_CSR register can be used to inform when a IWDG - * reset occurs. - * - * Min-max timeout value @32KHz (LSI): ~125us / ~32.7s - * The IWDG timeout may vary due to LSI frequency dispersion. STM32F4xx - * devices provide the capability to measure the LSI frequency (LSI clock - * connected internally to TIM5 CH4 input capture). The measured value - * can be used to have an IWDG timeout with an acceptable accuracy. - * For more information, please refer to the STM32F4xx Reference manual - * - * - * =================================================================== - * How to use this driver - * =================================================================== - * 1. Enable write access to IWDG_PR and IWDG_RLR registers using - * IWDG_WriteAccessCmd(IWDG_WriteAccess_Enable) function - * - * 2. Configure the IWDG prescaler using IWDG_SetPrescaler() function - * - * 3. Configure the IWDG counter value using IWDG_SetReload() function. - * This value will be loaded in the IWDG counter each time the counter - * is reloaded, then the IWDG will start counting down from this value. - * - * 4. Start the IWDG using IWDG_Enable() function, when the IWDG is used - * in software mode (no need to enable the LSI, it will be enabled - * by hardware) - * - * 5. Then the application program must reload the IWDG counter at regular - * intervals during normal operation to prevent an MCU reset, using - * IWDG_ReloadCounter() function. - * - * @endverbatim - * + @verbatim + =============================================================================== + ##### IWDG features ##### + =============================================================================== + [..] + The IWDG can be started by either software or hardware (configurable + through option byte). + + The IWDG is clocked by its own dedicated low-speed clock (LSI) and + thus stays active even if the main clock fails. + Once the IWDG is started, the LSI is forced ON and cannot be disabled + (LSI cannot be disabled too), and the counter starts counting down from + the reset value of 0xFFF. When it reaches the end of count value (0x000) + a system reset is generated. + The IWDG counter should be reloaded at regular intervals to prevent + an MCU reset. + + The IWDG is implemented in the VDD voltage domain that is still functional + in STOP and STANDBY mode (IWDG reset can wake-up from STANDBY). + + IWDGRST flag in RCC_CSR register can be used to inform when a IWDG + reset occurs. + + Min-max timeout value @32KHz (LSI): ~125us / ~32.7s + The IWDG timeout may vary due to LSI frequency dispersion. STM32F4xx + devices provide the capability to measure the LSI frequency (LSI clock + connected internally to TIM5 CH4 input capture). The measured value + can be used to have an IWDG timeout with an acceptable accuracy. + For more information, please refer to the STM32F4xx Reference manual + + ##### How to use this driver ##### + =============================================================================== + [..] + (#) Enable write access to IWDG_PR and IWDG_RLR registers using + IWDG_WriteAccessCmd(IWDG_WriteAccess_Enable) function + + (#) Configure the IWDG prescaler using IWDG_SetPrescaler() function + + (#) Configure the IWDG counter value using IWDG_SetReload() function. + This value will be loaded in the IWDG counter each time the counter + is reloaded, then the IWDG will start counting down from this value. + + (#) Start the IWDG using IWDG_Enable() function, when the IWDG is used + in software mode (no need to enable the LSI, it will be enabled + by hardware) + + (#) Then the application program must reload the IWDG counter at regular + intervals during normal operation to prevent an MCU reset, using + IWDG_ReloadCounter() function. + + @endverbatim ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -117,7 +114,7 @@ * @verbatim =============================================================================== - Prescaler and Counter configuration functions + ##### Prescaler and Counter configuration functions ##### =============================================================================== @endverbatim @@ -192,7 +189,7 @@ void IWDG_ReloadCounter(void) * @verbatim =============================================================================== - IWDG activation function + ##### IWDG activation function ##### =============================================================================== @endverbatim @@ -218,7 +215,7 @@ void IWDG_Enable(void) * @verbatim =============================================================================== - Flag management function + ##### Flag management function ##### =============================================================================== @endverbatim diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_ltdc.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_ltdc.c new file mode 100644 index 00000000..ded1928a --- /dev/null +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_ltdc.c @@ -0,0 +1,1110 @@ +/** + ****************************************************************************** + * @file stm32f4xx_ltdc.c + * @author MCD Application Team + * @version V1.4.0 + * @date 04-August-2014 + * @brief This file provides firmware functions to manage the following + * functionalities of the LTDC controller (LTDC) peripheral: + * + Initialization and configuration + * + Interrupts and flags management + * + * @verbatim + + =============================================================================== + ##### How to use this driver ##### + =============================================================================== + [..] + (#) Enable LTDC clock using + RCC_APB2PeriphResetCmd(RCC_APB2Periph_LTDC, ENABLE) function. + (#) Configures LTDC + (++) Configure the required Pixel clock following the panel datasheet + (++) Configure the Synchronous timings: VSYNC, HSYNC, Vertical and + Horizontal back proch, active data area and the front proch + timings + (++) Configure the synchronous signals and clock polarity in the + LTDC_GCR register + (#) Configures Layer1/2 parameters + (++) The Layer window horizontal and vertical position in the LTDC_LxWHPCR and + LTDC_WVPCR registers. The layer window must be in the active data area. + (++) The pixel input format in the LTDC_LxPFCR register + (++) The color frame buffer start address in the LTDC_LxCFBAR register + (++) The line length and pitch of the color frame buffer in the + LTDC_LxCFBLR register + (++) The number of lines of the color frame buffer in + the LTDC_LxCFBLNR register + (++) if needed, load the CLUT with the RGB values and the address + in the LTDC_LxCLUTWR register + (++) If needed, configure the default color and the blending factors + respectively in the LTDC_LxDCCR and LTDC_LxBFCR registers + + (++) If needed, Dithering and color keying can be be enabled respectively + in the LTDC_GCR and LTDC_LxCKCR registers. It can be also enabled + on the fly. + (#) Enable Layer1/2 and if needed the CLUT in the LTDC_LxCR register + + (#) Reload the shadow registers to active register through + the LTDC_SRCR register. + -@- All layer parameters can be be modified on the fly except the CLUT. + The new configuration has to be either reloaded immediately + or during vertical blanking period by configuring the LTDC_SRCR register. + (#) Call the LTDC_Cmd() to enable the LTDC controller. + + @endverbatim + + ****************************************************************************** + * @attention + * + *

© COPYRIGHT 2014 STMicroelectronics

+ * + * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); + * You may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.st.com/software_license_agreement_liberty_v2 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32f4xx_ltdc.h" +#include "stm32f4xx_rcc.h" + +/** @addtogroup STM32F4xx_StdPeriph_Driver + * @{ + */ + +/** @defgroup LTDC + * @brief LTDC driver modules + * @{ + */ + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/* Private macro -------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private function prototypes -----------------------------------------------*/ +/* Private functions ---------------------------------------------------------*/ + +#define GCR_MASK ((uint32_t)0x0FFE888F) /* LTDC GCR Mask */ + + +/** @defgroup LTDC_Private_Functions + * @{ + */ + +/** @defgroup LTDC_Group1 Initialization and Configuration functions + * @brief Initialization and Configuration functions + * +@verbatim + =============================================================================== + ##### Initialization and Configuration functions ##### + =============================================================================== + [..] This section provides functions allowing to: + (+) Initialize and configure the LTDC + (+) Enable or Disable Dither + (+) Define the position of the line interrupt + (+) reload layers registers with new parameters + (+) Initialize and configure layer1 and layer2 + (+) Set and configure the color keying functionality + (+) Configure and Enables or disables CLUT + +@endverbatim + * @{ + */ + +/** + * @brief Deinitializes the LTDC peripheral registers to their default reset + * values. + * @param None + * @retval None + */ + +void LTDC_DeInit(void) +{ + /* Enable LTDC reset state */ + RCC_APB2PeriphResetCmd(RCC_APB2Periph_LTDC, ENABLE); + /* Release LTDC from reset state */ + RCC_APB2PeriphResetCmd(RCC_APB2Periph_LTDC, DISABLE); +} + +/** + * @brief Initializes the LTDC peripheral according to the specified parameters + * in the LTDC_InitStruct. + * @note This function can be used only when the LTDC is disabled. + * @param LTDC_InitStruct: pointer to a LTDC_InitTypeDef structure that contains + * the configuration information for the specified LTDC peripheral. + * @retval None + */ + +void LTDC_Init(LTDC_InitTypeDef* LTDC_InitStruct) +{ + uint32_t horizontalsync = 0; + uint32_t accumulatedHBP = 0; + uint32_t accumulatedactiveW = 0; + uint32_t totalwidth = 0; + uint32_t backgreen = 0; + uint32_t backred = 0; + + /* Check function parameters */ + assert_param(IS_LTDC_HSYNC(LTDC_InitStruct->LTDC_HorizontalSync)); + assert_param(IS_LTDC_VSYNC(LTDC_InitStruct->LTDC_VerticalSync)); + assert_param(IS_LTDC_AHBP(LTDC_InitStruct->LTDC_AccumulatedHBP)); + assert_param(IS_LTDC_AVBP(LTDC_InitStruct->LTDC_AccumulatedVBP)); + assert_param(IS_LTDC_AAH(LTDC_InitStruct->LTDC_AccumulatedActiveH)); + assert_param(IS_LTDC_AAW(LTDC_InitStruct->LTDC_AccumulatedActiveW)); + assert_param(IS_LTDC_TOTALH(LTDC_InitStruct->LTDC_TotalHeigh)); + assert_param(IS_LTDC_TOTALW(LTDC_InitStruct->LTDC_TotalWidth)); + assert_param(IS_LTDC_HSPOL(LTDC_InitStruct->LTDC_HSPolarity)); + assert_param(IS_LTDC_VSPOL(LTDC_InitStruct->LTDC_VSPolarity)); + assert_param(IS_LTDC_DEPOL(LTDC_InitStruct->LTDC_DEPolarity)); + assert_param(IS_LTDC_PCPOL(LTDC_InitStruct->LTDC_PCPolarity)); + assert_param(IS_LTDC_BackBlueValue(LTDC_InitStruct->LTDC_BackgroundBlueValue)); + assert_param(IS_LTDC_BackGreenValue(LTDC_InitStruct->LTDC_BackgroundGreenValue)); + assert_param(IS_LTDC_BackRedValue(LTDC_InitStruct->LTDC_BackgroundRedValue)); + + /* Sets Synchronization size */ + LTDC->SSCR &= ~(LTDC_SSCR_VSH | LTDC_SSCR_HSW); + horizontalsync = (LTDC_InitStruct->LTDC_HorizontalSync << 16); + LTDC->SSCR |= (horizontalsync | LTDC_InitStruct->LTDC_VerticalSync); + + /* Sets Accumulated Back porch */ + LTDC->BPCR &= ~(LTDC_BPCR_AVBP | LTDC_BPCR_AHBP); + accumulatedHBP = (LTDC_InitStruct->LTDC_AccumulatedHBP << 16); + LTDC->BPCR |= (accumulatedHBP | LTDC_InitStruct->LTDC_AccumulatedVBP); + + /* Sets Accumulated Active Width */ + LTDC->AWCR &= ~(LTDC_AWCR_AAH | LTDC_AWCR_AAW); + accumulatedactiveW = (LTDC_InitStruct->LTDC_AccumulatedActiveW << 16); + LTDC->AWCR |= (accumulatedactiveW | LTDC_InitStruct->LTDC_AccumulatedActiveH); + + /* Sets Total Width */ + LTDC->TWCR &= ~(LTDC_TWCR_TOTALH | LTDC_TWCR_TOTALW); + totalwidth = (LTDC_InitStruct->LTDC_TotalWidth << 16); + LTDC->TWCR |= (totalwidth | LTDC_InitStruct->LTDC_TotalHeigh); + + LTDC->GCR &= (uint32_t)GCR_MASK; + LTDC->GCR |= (uint32_t)(LTDC_InitStruct->LTDC_HSPolarity | LTDC_InitStruct->LTDC_VSPolarity | \ + LTDC_InitStruct->LTDC_DEPolarity | LTDC_InitStruct->LTDC_PCPolarity); + + /* sets the background color value */ + backgreen = (LTDC_InitStruct->LTDC_BackgroundGreenValue << 8); + backred = (LTDC_InitStruct->LTDC_BackgroundRedValue << 16); + + LTDC->BCCR &= ~(LTDC_BCCR_BCBLUE | LTDC_BCCR_BCGREEN | LTDC_BCCR_BCRED); + LTDC->BCCR |= (backred | backgreen | LTDC_InitStruct->LTDC_BackgroundBlueValue); +} + +/** + * @brief Fills each LTDC_InitStruct member with its default value. + * @param LTDC_InitStruct: pointer to a LTDC_InitTypeDef structure which will + * be initialized. + * @retval None + */ + +void LTDC_StructInit(LTDC_InitTypeDef* LTDC_InitStruct) +{ + /*--------------- Reset LTDC init structure parameters values ----------------*/ + LTDC_InitStruct->LTDC_HSPolarity = LTDC_HSPolarity_AL; /*!< Initialize the LTDC_HSPolarity member */ + LTDC_InitStruct->LTDC_VSPolarity = LTDC_VSPolarity_AL; /*!< Initialize the LTDC_VSPolarity member */ + LTDC_InitStruct->LTDC_DEPolarity = LTDC_DEPolarity_AL; /*!< Initialize the LTDC_DEPolarity member */ + LTDC_InitStruct->LTDC_PCPolarity = LTDC_PCPolarity_IPC; /*!< Initialize the LTDC_PCPolarity member */ + LTDC_InitStruct->LTDC_HorizontalSync = 0x00; /*!< Initialize the LTDC_HorizontalSync member */ + LTDC_InitStruct->LTDC_VerticalSync = 0x00; /*!< Initialize the LTDC_VerticalSync member */ + LTDC_InitStruct->LTDC_AccumulatedHBP = 0x00; /*!< Initialize the LTDC_AccumulatedHBP member */ + LTDC_InitStruct->LTDC_AccumulatedVBP = 0x00; /*!< Initialize the LTDC_AccumulatedVBP member */ + LTDC_InitStruct->LTDC_AccumulatedActiveW = 0x00; /*!< Initialize the LTDC_AccumulatedActiveW member */ + LTDC_InitStruct->LTDC_AccumulatedActiveH = 0x00; /*!< Initialize the LTDC_AccumulatedActiveH member */ + LTDC_InitStruct->LTDC_TotalWidth = 0x00; /*!< Initialize the LTDC_TotalWidth member */ + LTDC_InitStruct->LTDC_TotalHeigh = 0x00; /*!< Initialize the LTDC_TotalHeigh member */ + LTDC_InitStruct->LTDC_BackgroundRedValue = 0x00; /*!< Initialize the LTDC_BackgroundRedValue member */ + LTDC_InitStruct->LTDC_BackgroundGreenValue = 0x00; /*!< Initialize the LTDC_BackgroundGreenValue member */ + LTDC_InitStruct->LTDC_BackgroundBlueValue = 0x00; /*!< Initialize the LTDC_BackgroundBlueValue member */ +} + +/** + * @brief Enables or disables the LTDC Controller. + * @param NewState: new state of the LTDC peripheral. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ + +void LTDC_Cmd(FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + /* Enable LTDC by setting LTDCEN bit */ + LTDC->GCR |= (uint32_t)LTDC_GCR_LTDCEN; + } + else + { + /* Disable LTDC by clearing LTDCEN bit */ + LTDC->GCR &= ~(uint32_t)LTDC_GCR_LTDCEN; + } +} + +/** + * @brief Enables or disables Dither. + * @param NewState: new state of the Dither. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ + +void LTDC_DitherCmd(FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + /* Enable Dither by setting DTEN bit */ + LTDC->GCR |= (uint32_t)LTDC_GCR_DTEN; + } + else + { + /* Disable Dither by clearing DTEN bit */ + LTDC->GCR &= ~(uint32_t)LTDC_GCR_DTEN; + } +} + +/** + * @brief Get the dither RGB width. + * @param LTDC_RGB_InitStruct: pointer to a LTDC_RGBTypeDef structure that contains + * the Dither RGB width. + * @retval None + */ + +LTDC_RGBTypeDef LTDC_GetRGBWidth(void) +{ + LTDC_RGBTypeDef LTDC_RGB_InitStruct; + + LTDC->GCR &= (uint32_t)GCR_MASK; + + LTDC_RGB_InitStruct.LTDC_BlueWidth = (uint32_t)((LTDC->GCR >> 4) & 0x7); + LTDC_RGB_InitStruct.LTDC_GreenWidth = (uint32_t)((LTDC->GCR >> 8) & 0x7); + LTDC_RGB_InitStruct.LTDC_RedWidth = (uint32_t)((LTDC->GCR >> 12) & 0x7); + + return LTDC_RGB_InitStruct; +} + +/** + * @brief Fills each LTDC_RGBStruct member with its default value. + * @param LTDC_RGB_InitStruct: pointer to a LTDC_RGBTypeDef structure which will + * be initialized. + * @retval None + */ + +void LTDC_RGBStructInit(LTDC_RGBTypeDef* LTDC_RGB_InitStruct) +{ + LTDC_RGB_InitStruct->LTDC_BlueWidth = 0x02; + LTDC_RGB_InitStruct->LTDC_GreenWidth = 0x02; + LTDC_RGB_InitStruct->LTDC_RedWidth = 0x02; +} + + +/** + * @brief Define the position of the line interrupt . + * @param LTDC_LIPositionConfig: Line Interrupt Position. + * @retval None + */ + +void LTDC_LIPConfig(uint32_t LTDC_LIPositionConfig) +{ + /* Check the parameters */ + assert_param(IS_LTDC_LIPOS(LTDC_LIPositionConfig)); + + /* Sets the Line Interrupt position */ + LTDC->LIPCR = (uint32_t)LTDC_LIPositionConfig; +} + +/** + * @brief reload layers registers with new parameters + * @param LTDC_Reload: specifies the type of reload. + * This parameter can be one of the following values: + * @arg LTDC_IMReload: Vertical blanking reload. + * @arg LTDC_VBReload: Immediate reload. + * @retval None + */ + +void LTDC_ReloadConfig(uint32_t LTDC_Reload) +{ + /* Check the parameters */ + assert_param(IS_LTDC_RELOAD(LTDC_Reload)); + + /* Sets the Reload type */ + LTDC->SRCR = (uint32_t)LTDC_Reload; +} + + +/** + * @brief Initializes the LTDC Layer according to the specified parameters + * in the LTDC_LayerStruct. + * @note This function can be used only when the LTDC is disabled. + * @param LTDC_layerx: Select the layer to be configured, this parameter can be + * one of the following values: LTDC_Layer1, LTDC_Layer2 + * @param LTDC_LayerStruct: pointer to a LTDC_LayerTypeDef structure that contains + * the configuration information for the specified LTDC peripheral. + * @retval None + */ + +void LTDC_LayerInit(LTDC_Layer_TypeDef* LTDC_Layerx, LTDC_Layer_InitTypeDef* LTDC_Layer_InitStruct) +{ + + uint32_t whsppos = 0; + uint32_t wvsppos = 0; + uint32_t dcgreen = 0; + uint32_t dcred = 0; + uint32_t dcalpha = 0; + uint32_t cfbp = 0; + +/* Check the parameters */ + assert_param(IS_LTDC_Pixelformat(LTDC_Layer_InitStruct->LTDC_PixelFormat)); + assert_param(IS_LTDC_BlendingFactor1(LTDC_Layer_InitStruct->LTDC_BlendingFactor_1)); + assert_param(IS_LTDC_BlendingFactor2(LTDC_Layer_InitStruct->LTDC_BlendingFactor_2)); + assert_param(IS_LTDC_HCONFIGST(LTDC_Layer_InitStruct->LTDC_HorizontalStart)); + assert_param(IS_LTDC_HCONFIGSP(LTDC_Layer_InitStruct->LTDC_HorizontalStop)); + assert_param(IS_LTDC_VCONFIGST(LTDC_Layer_InitStruct->LTDC_VerticalStart)); + assert_param(IS_LTDC_VCONFIGSP(LTDC_Layer_InitStruct->LTDC_VerticalStop)); + assert_param(IS_LTDC_DEFAULTCOLOR(LTDC_Layer_InitStruct->LTDC_DefaultColorBlue)); + assert_param(IS_LTDC_DEFAULTCOLOR(LTDC_Layer_InitStruct->LTDC_DefaultColorGreen)); + assert_param(IS_LTDC_DEFAULTCOLOR(LTDC_Layer_InitStruct->LTDC_DefaultColorRed)); + assert_param(IS_LTDC_DEFAULTCOLOR(LTDC_Layer_InitStruct->LTDC_DefaultColorAlpha)); + assert_param(IS_LTDC_CFBP(LTDC_Layer_InitStruct->LTDC_CFBPitch)); + assert_param(IS_LTDC_CFBLL(LTDC_Layer_InitStruct->LTDC_CFBLineLength)); + assert_param(IS_LTDC_CFBLNBR(LTDC_Layer_InitStruct->LTDC_CFBLineNumber)); + + /* Configures the horizontal start and stop position */ + whsppos = LTDC_Layer_InitStruct->LTDC_HorizontalStop << 16; + LTDC_Layerx->WHPCR &= ~(LTDC_LxWHPCR_WHSTPOS | LTDC_LxWHPCR_WHSPPOS); + LTDC_Layerx->WHPCR = (LTDC_Layer_InitStruct->LTDC_HorizontalStart | whsppos); + + /* Configures the vertical start and stop position */ + wvsppos = LTDC_Layer_InitStruct->LTDC_VerticalStop << 16; + LTDC_Layerx->WVPCR &= ~(LTDC_LxWVPCR_WVSTPOS | LTDC_LxWVPCR_WVSPPOS); + LTDC_Layerx->WVPCR = (LTDC_Layer_InitStruct->LTDC_VerticalStart | wvsppos); + + /* Specifies the pixel format */ + LTDC_Layerx->PFCR &= ~(LTDC_LxPFCR_PF); + LTDC_Layerx->PFCR = (LTDC_Layer_InitStruct->LTDC_PixelFormat); + + /* Configures the default color values */ + dcgreen = (LTDC_Layer_InitStruct->LTDC_DefaultColorGreen << 8); + dcred = (LTDC_Layer_InitStruct->LTDC_DefaultColorRed << 16); + dcalpha = (LTDC_Layer_InitStruct->LTDC_DefaultColorAlpha << 24); + LTDC_Layerx->DCCR &= ~(LTDC_LxDCCR_DCBLUE | LTDC_LxDCCR_DCGREEN | LTDC_LxDCCR_DCRED | LTDC_LxDCCR_DCALPHA); + LTDC_Layerx->DCCR = (LTDC_Layer_InitStruct->LTDC_DefaultColorBlue | dcgreen | \ + dcred | dcalpha); + + /* Specifies the constant alpha value */ + LTDC_Layerx->CACR &= ~(LTDC_LxCACR_CONSTA); + LTDC_Layerx->CACR = (LTDC_Layer_InitStruct->LTDC_ConstantAlpha); + + /* Specifies the blending factors */ + LTDC_Layerx->BFCR &= ~(LTDC_LxBFCR_BF2 | LTDC_LxBFCR_BF1); + LTDC_Layerx->BFCR = (LTDC_Layer_InitStruct->LTDC_BlendingFactor_1 | LTDC_Layer_InitStruct->LTDC_BlendingFactor_2); + + /* Configures the color frame buffer start address */ + LTDC_Layerx->CFBAR &= ~(LTDC_LxCFBAR_CFBADD); + LTDC_Layerx->CFBAR = (LTDC_Layer_InitStruct->LTDC_CFBStartAdress); + + /* Configures the color frame buffer pitch in byte */ + cfbp = (LTDC_Layer_InitStruct->LTDC_CFBPitch << 16); + LTDC_Layerx->CFBLR &= ~(LTDC_LxCFBLR_CFBLL | LTDC_LxCFBLR_CFBP); + LTDC_Layerx->CFBLR = (LTDC_Layer_InitStruct->LTDC_CFBLineLength | cfbp); + + /* Configures the frame buffer line number */ + LTDC_Layerx->CFBLNR &= ~(LTDC_LxCFBLNR_CFBLNBR); + LTDC_Layerx->CFBLNR = (LTDC_Layer_InitStruct->LTDC_CFBLineNumber); + +} + +/** + * @brief Fills each LTDC_Layer_InitStruct member with its default value. + * @param LTDC_Layer_InitStruct: pointer to a LTDC_LayerTypeDef structure which will + * be initialized. + * @retval None + */ + +void LTDC_LayerStructInit(LTDC_Layer_InitTypeDef * LTDC_Layer_InitStruct) +{ + /*--------------- Reset Layer structure parameters values -------------------*/ + + /*!< Initialize the horizontal limit member */ + LTDC_Layer_InitStruct->LTDC_HorizontalStart = 0x00; + LTDC_Layer_InitStruct->LTDC_HorizontalStop = 0x00; + + /*!< Initialize the vertical limit member */ + LTDC_Layer_InitStruct->LTDC_VerticalStart = 0x00; + LTDC_Layer_InitStruct->LTDC_VerticalStop = 0x00; + + /*!< Initialize the pixel format member */ + LTDC_Layer_InitStruct->LTDC_PixelFormat = LTDC_Pixelformat_ARGB8888; + + /*!< Initialize the constant alpha value */ + LTDC_Layer_InitStruct->LTDC_ConstantAlpha = 0xFF; + + /*!< Initialize the default color values */ + LTDC_Layer_InitStruct->LTDC_DefaultColorBlue = 0x00; + LTDC_Layer_InitStruct->LTDC_DefaultColorGreen = 0x00; + LTDC_Layer_InitStruct->LTDC_DefaultColorRed = 0x00; + LTDC_Layer_InitStruct->LTDC_DefaultColorAlpha = 0x00; + + /*!< Initialize the blending factors */ + LTDC_Layer_InitStruct->LTDC_BlendingFactor_1 = LTDC_BlendingFactor1_PAxCA; + LTDC_Layer_InitStruct->LTDC_BlendingFactor_2 = LTDC_BlendingFactor2_PAxCA; + + /*!< Initialize the frame buffer start address */ + LTDC_Layer_InitStruct->LTDC_CFBStartAdress = 0x00; + + /*!< Initialize the frame buffer pitch and line length */ + LTDC_Layer_InitStruct->LTDC_CFBLineLength = 0x00; + LTDC_Layer_InitStruct->LTDC_CFBPitch = 0x00; + + /*!< Initialize the frame buffer line number */ + LTDC_Layer_InitStruct->LTDC_CFBLineNumber = 0x00; +} + + +/** + * @brief Enables or disables the LTDC_Layer Controller. + * @param LTDC_layerx: Select the layer to be configured, this parameter can be + * one of the following values: LTDC_Layer1, LTDC_Layer2 + * @param NewState: new state of the LTDC_Layer peripheral. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ + +void LTDC_LayerCmd(LTDC_Layer_TypeDef* LTDC_Layerx, FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + /* Enable LTDC_Layer by setting LEN bit */ + LTDC_Layerx->CR |= (uint32_t)LTDC_LxCR_LEN; + } + else + { + /* Disable LTDC_Layer by clearing LEN bit */ + LTDC_Layerx->CR &= ~(uint32_t)LTDC_LxCR_LEN; + } +} + + +/** + * @brief Get the current position. + * @param LTDC_Pos_InitStruct: pointer to a LTDC_PosTypeDef structure that contains + * the current position. + * @retval None + */ + +LTDC_PosTypeDef LTDC_GetPosStatus(void) +{ + LTDC_PosTypeDef LTDC_Pos_InitStruct; + + LTDC->CPSR &= ~(LTDC_CPSR_CYPOS | LTDC_CPSR_CXPOS); + + LTDC_Pos_InitStruct.LTDC_POSX = (uint32_t)(LTDC->CPSR >> 16); + LTDC_Pos_InitStruct.LTDC_POSY = (uint32_t)(LTDC->CPSR & 0xFFFF); + + return LTDC_Pos_InitStruct; +} + +/** + * @brief Fills each LTDC_Pos_InitStruct member with its default value. + * @param LTDC_Pos_InitStruct: pointer to a LTDC_PosTypeDef structure which will + * be initialized. + * @retval None + */ + +void LTDC_PosStructInit(LTDC_PosTypeDef* LTDC_Pos_InitStruct) +{ + LTDC_Pos_InitStruct->LTDC_POSX = 0x00; + LTDC_Pos_InitStruct->LTDC_POSY = 0x00; +} + +/** + * @brief Checks whether the specified LTDC's flag is set or not. + * @param LTDC_CD: specifies the flag to check. + * This parameter can be one of the following values: + * @arg LTDC_CD_VDES: vertical data enable current status. + * @arg LTDC_CD_HDES: horizontal data enable current status. + * @arg LTDC_CD_VSYNC: Vertical Synchronization current status. + * @arg LTDC_CD_HSYNC: Horizontal Synchronization current status. + * @retval The new state of LTDC_CD (SET or RESET). + */ + +FlagStatus LTDC_GetCDStatus(uint32_t LTDC_CD) +{ + FlagStatus bitstatus; + + /* Check the parameters */ + assert_param(IS_LTDC_GET_CD(LTDC_CD)); + + if ((LTDC->CDSR & LTDC_CD) != (uint32_t)RESET) + { + bitstatus = SET; + } + else + { + bitstatus = RESET; + } + return bitstatus; +} + +/** + * @brief Set and configure the color keying. + * @param LTDC_colorkeying_InitStruct: pointer to a LTDC_ColorKeying_InitTypeDef + * structure that contains the color keying configuration. + * @param LTDC_layerx: Select the layer to be configured, this parameter can be + * one of the following values: LTDC_Layer1, LTDC_Layer2 + * @retval None + */ + +void LTDC_ColorKeyingConfig(LTDC_Layer_TypeDef* LTDC_Layerx, LTDC_ColorKeying_InitTypeDef* LTDC_colorkeying_InitStruct, FunctionalState NewState) +{ + uint32_t ckgreen = 0; + uint32_t ckred = 0; + + /* Check the parameters */ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + assert_param(IS_LTDC_CKEYING(LTDC_colorkeying_InitStruct->LTDC_ColorKeyBlue)); + assert_param(IS_LTDC_CKEYING(LTDC_colorkeying_InitStruct->LTDC_ColorKeyGreen)); + assert_param(IS_LTDC_CKEYING(LTDC_colorkeying_InitStruct->LTDC_ColorKeyRed)); + + if (NewState != DISABLE) + { + /* Enable LTDC color keying by setting COLKEN bit */ + LTDC_Layerx->CR |= (uint32_t)LTDC_LxCR_COLKEN; + + /* Sets the color keying values */ + ckgreen = (LTDC_colorkeying_InitStruct->LTDC_ColorKeyGreen << 8); + ckred = (LTDC_colorkeying_InitStruct->LTDC_ColorKeyRed << 16); + LTDC_Layerx->CKCR &= ~(LTDC_LxCKCR_CKBLUE | LTDC_LxCKCR_CKGREEN | LTDC_LxCKCR_CKRED); + LTDC_Layerx->CKCR |= (LTDC_colorkeying_InitStruct->LTDC_ColorKeyBlue | ckgreen | ckred); + } + else + { + /* Disable LTDC color keying by clearing COLKEN bit */ + LTDC_Layerx->CR &= ~(uint32_t)LTDC_LxCR_COLKEN; + } + + /* Reload shadow register */ + LTDC->SRCR = LTDC_IMReload; +} + +/** + * @brief Fills each LTDC_colorkeying_InitStruct member with its default value. + * @param LTDC_colorkeying_InitStruct: pointer to a LTDC_ColorKeying_InitTypeDef structure which will + * be initialized. + * @retval None + */ + +void LTDC_ColorKeyingStructInit(LTDC_ColorKeying_InitTypeDef* LTDC_colorkeying_InitStruct) +{ + /*!< Initialize the color keying values */ + LTDC_colorkeying_InitStruct->LTDC_ColorKeyBlue = 0x00; + LTDC_colorkeying_InitStruct->LTDC_ColorKeyGreen = 0x00; + LTDC_colorkeying_InitStruct->LTDC_ColorKeyRed = 0x00; +} + + +/** + * @brief Enables or disables CLUT. + * @param NewState: new state of CLUT. + * @param LTDC_layerx: Select the layer to be configured, this parameter can be + * one of the following values: LTDC_Layer1, LTDC_Layer2 + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ + +void LTDC_CLUTCmd(LTDC_Layer_TypeDef* LTDC_Layerx, FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + /* Enable CLUT by setting CLUTEN bit */ + LTDC_Layerx->CR |= (uint32_t)LTDC_LxCR_CLUTEN; + } + else + { + /* Disable CLUT by clearing CLUTEN bit */ + LTDC_Layerx->CR &= ~(uint32_t)LTDC_LxCR_CLUTEN; + } + + /* Reload shadow register */ + LTDC->SRCR = LTDC_IMReload; +} + +/** + * @brief configure the CLUT. + * @param LTDC_CLUT_InitStruct: pointer to a LTDC_CLUT_InitTypeDef structure that contains + * the CLUT configuration. + * @param LTDC_layerx: Select the layer to be configured, this parameter can be + * one of the following values: LTDC_Layer1, LTDC_Layer2 + * @retval None + */ + +void LTDC_CLUTInit(LTDC_Layer_TypeDef* LTDC_Layerx, LTDC_CLUT_InitTypeDef* LTDC_CLUT_InitStruct) +{ + uint32_t green = 0; + uint32_t red = 0; + uint32_t clutadd = 0; + + /* Check the parameters */ + assert_param(IS_LTDC_CLUTWR(LTDC_CLUT_InitStruct->LTDC_CLUTAdress)); + assert_param(IS_LTDC_CLUTWR(LTDC_CLUT_InitStruct->LTDC_RedValue)); + assert_param(IS_LTDC_CLUTWR(LTDC_CLUT_InitStruct->LTDC_GreenValue)); + assert_param(IS_LTDC_CLUTWR(LTDC_CLUT_InitStruct->LTDC_BlueValue)); + + /* Specifies the CLUT address and RGB value */ + green = (LTDC_CLUT_InitStruct->LTDC_GreenValue << 8); + red = (LTDC_CLUT_InitStruct->LTDC_RedValue << 16); + clutadd = (LTDC_CLUT_InitStruct->LTDC_CLUTAdress << 24); + LTDC_Layerx->CLUTWR = (clutadd | LTDC_CLUT_InitStruct->LTDC_BlueValue | \ + green | red); +} + +/** + * @brief Fills each LTDC_CLUT_InitStruct member with its default value. + * @param LTDC_CLUT_InitStruct: pointer to a LTDC_CLUT_InitTypeDef structure which will + * be initialized. + * @retval None + */ + +void LTDC_CLUTStructInit(LTDC_CLUT_InitTypeDef* LTDC_CLUT_InitStruct) +{ + /*!< Initialize the CLUT adress and RGB values */ + LTDC_CLUT_InitStruct->LTDC_CLUTAdress = 0x00; + LTDC_CLUT_InitStruct->LTDC_BlueValue = 0x00; + LTDC_CLUT_InitStruct->LTDC_GreenValue = 0x00; + LTDC_CLUT_InitStruct->LTDC_RedValue = 0x00; +} + + +/** + * @brief reconfigure the layer position. + * @param OffsetX: horizontal offset from start active width . + * @param OffsetY: vertical offset from start active height. + * @param LTDC_layerx: Select the layer to be configured, this parameter can be + * one of the following values: LTDC_Layer1, LTDC_Layer2 + * @retval Reload of the shadow registers values must be applied after layer + * position reconfiguration. + */ + +void LTDC_LayerPosition(LTDC_Layer_TypeDef* LTDC_Layerx, uint16_t OffsetX, uint16_t OffsetY) +{ + + uint32_t tempreg, temp; + uint32_t horizontal_start; + uint32_t horizontal_stop; + uint32_t vertical_start; + uint32_t vertical_stop; + + LTDC_Layerx->WHPCR &= ~(LTDC_LxWHPCR_WHSTPOS | LTDC_LxWHPCR_WHSPPOS); + LTDC_Layerx->WVPCR &= ~(LTDC_LxWVPCR_WVSTPOS | LTDC_LxWVPCR_WVSPPOS); + + /* Reconfigures the horizontal and vertical start position */ + tempreg = LTDC->BPCR; + horizontal_start = (tempreg >> 16) + 1 + OffsetX; + vertical_start = (tempreg & 0xFFFF) + 1 + OffsetY; + + /* Reconfigures the horizontal and vertical stop position */ + /* Get the number of byte per pixel */ + + tempreg = LTDC_Layerx->PFCR; + + if (tempreg == LTDC_Pixelformat_ARGB8888) + { + temp = 4; + } + else if (tempreg == LTDC_Pixelformat_RGB888) + { + temp = 3; + } + else if ((tempreg == LTDC_Pixelformat_ARGB4444) || + (tempreg == LTDC_Pixelformat_RGB565) || + (tempreg == LTDC_Pixelformat_ARGB1555) || + (tempreg == LTDC_Pixelformat_AL88)) + { + temp = 2; + } + else + { + temp = 1; + } + + tempreg = LTDC_Layerx->CFBLR; + horizontal_stop = (((tempreg & 0x1FFF) - 3)/temp) + horizontal_start - 1; + + tempreg = LTDC_Layerx->CFBLNR; + vertical_stop = (tempreg & 0x7FF) + vertical_start - 1; + + LTDC_Layerx->WHPCR = horizontal_start | (horizontal_stop << 16); + LTDC_Layerx->WVPCR = vertical_start | (vertical_stop << 16); +} + +/** + * @brief reconfigure constant alpha. + * @param ConstantAlpha: constant alpha value. + * @param LTDC_layerx: Select the layer to be configured, this parameter can be + * one of the following values: LTDC_Layer1, LTDC_Layer2 + * @retval Reload of the shadow registers values must be applied after constant + * alpha reconfiguration. + */ + +void LTDC_LayerAlpha(LTDC_Layer_TypeDef* LTDC_Layerx, uint8_t ConstantAlpha) +{ + /* reconfigure the constant alpha value */ + LTDC_Layerx->CACR = ConstantAlpha; +} + +/** + * @brief reconfigure layer address. + * @param Address: The color frame buffer start address. + * @param LTDC_layerx: Select the layer to be configured, this parameter can be + * one of the following values: LTDC_Layer1, LTDC_Layer2 + * @retval Reload of the shadow registers values must be applied after layer + * address reconfiguration. + */ + +void LTDC_LayerAddress(LTDC_Layer_TypeDef* LTDC_Layerx, uint32_t Address) +{ + /* Reconfigures the color frame buffer start address */ + LTDC_Layerx->CFBAR = Address; +} + +/** + * @brief reconfigure layer size. + * @param Width: layer window width. + * @param Height: layer window height. + * @param LTDC_layerx: Select the layer to be configured, this parameter can be + * one of the following values: LTDC_Layer1, LTDC_Layer2 + * @retval Reload of the shadow registers values must be applied after layer + * size reconfiguration. + */ + +void LTDC_LayerSize(LTDC_Layer_TypeDef* LTDC_Layerx, uint32_t Width, uint32_t Height) +{ + + uint8_t temp; + uint32_t tempreg; + uint32_t horizontal_start; + uint32_t horizontal_stop; + uint32_t vertical_start; + uint32_t vertical_stop; + + tempreg = LTDC_Layerx->PFCR; + + if (tempreg == LTDC_Pixelformat_ARGB8888) + { + temp = 4; + } + else if (tempreg == LTDC_Pixelformat_RGB888) + { + temp = 3; + } + else if ((tempreg == LTDC_Pixelformat_ARGB4444) || \ + (tempreg == LTDC_Pixelformat_RGB565) || \ + (tempreg == LTDC_Pixelformat_ARGB1555) || \ + (tempreg == LTDC_Pixelformat_AL88)) + { + temp = 2; + } + else + { + temp = 1; + } + + /* update horizontal and vertical stop */ + tempreg = LTDC_Layerx->WHPCR; + horizontal_start = (tempreg & 0x1FFF); + horizontal_stop = Width + horizontal_start - 1; + + tempreg = LTDC_Layerx->WVPCR; + vertical_start = (tempreg & 0x1FFF); + vertical_stop = Height + vertical_start - 1; + + LTDC_Layerx->WHPCR = horizontal_start | (horizontal_stop << 16); + LTDC_Layerx->WVPCR = vertical_start | (vertical_stop << 16); + + /* Reconfigures the color frame buffer pitch in byte */ + LTDC_Layerx->CFBLR = ((Width * temp) << 16) | ((Width * temp) + 3); + + /* Reconfigures the frame buffer line number */ + LTDC_Layerx->CFBLNR = Height; + +} + +/** + * @brief reconfigure layer pixel format. + * @param PixelFormat: reconfigure the pixel format, this parameter can be + * one of the following values:@ref LTDC_Pixelformat. + * @param LTDC_layerx: Select the layer to be configured, this parameter can be + * one of the following values: LTDC_Layer1, LTDC_Layer2 + * @retval Reload of the shadow registers values must be applied after layer + * pixel format reconfiguration. + */ + +void LTDC_LayerPixelFormat(LTDC_Layer_TypeDef* LTDC_Layerx, uint32_t PixelFormat) +{ + + uint8_t temp; + uint32_t tempreg; + + tempreg = LTDC_Layerx->PFCR; + + if (tempreg == LTDC_Pixelformat_ARGB8888) + { + temp = 4; + } + else if (tempreg == LTDC_Pixelformat_RGB888) + { + temp = 3; + } + else if ((tempreg == LTDC_Pixelformat_ARGB4444) || \ + (tempreg == LTDC_Pixelformat_RGB565) || \ + (tempreg == LTDC_Pixelformat_ARGB1555) || \ + (tempreg == LTDC_Pixelformat_AL88)) + { + temp = 2; + } + else + { + temp = 1; + } + + tempreg = (LTDC_Layerx->CFBLR >> 16); + tempreg = (tempreg / temp); + + if (PixelFormat == LTDC_Pixelformat_ARGB8888) + { + temp = 4; + } + else if (PixelFormat == LTDC_Pixelformat_RGB888) + { + temp = 3; + } + else if ((PixelFormat == LTDC_Pixelformat_ARGB4444) || \ + (PixelFormat == LTDC_Pixelformat_RGB565) || \ + (PixelFormat == LTDC_Pixelformat_ARGB1555) || \ + (PixelFormat == LTDC_Pixelformat_AL88)) + { + temp = 2; + } + else + { + temp = 1; + } + + /* Reconfigures the color frame buffer pitch in byte */ + LTDC_Layerx->CFBLR = ((tempreg * temp) << 16) | ((tempreg * temp) + 3); + + /* Reconfigures the color frame buffer start address */ + LTDC_Layerx->PFCR = PixelFormat; + +} + +/** + * @} + */ + +/** @defgroup LTDC_Group2 Interrupts and flags management functions + * @brief Interrupts and flags management functions + * +@verbatim + =============================================================================== + ##### Interrupts and flags management functions ##### + =============================================================================== + + [..] This section provides functions allowing to configure the LTDC Interrupts + and to get the status and clear flags and Interrupts pending bits. + + [..] The LTDC provides 4 Interrupts sources and 4 Flags + + *** Flags *** + ============= + [..] + (+) LTDC_FLAG_LI: Line Interrupt flag. + (+) LTDC_FLAG_FU: FIFO Underrun Interrupt flag. + (+) LTDC_FLAG_TERR: Transfer Error Interrupt flag. + (+) LTDC_FLAG_RR: Register Reload interrupt flag. + + *** Interrupts *** + ================== + [..] + (+) LTDC_IT_LI: Line Interrupt is generated when a programmed line + is reached. The line interrupt position is programmed in + the LTDC_LIPR register. + (+) LTDC_IT_FU: FIFO Underrun interrupt is generated when a pixel is requested + from an empty layer FIFO + (+) LTDC_IT_TERR: Transfer Error interrupt is generated when an AHB bus + error occurs during data transfer. + (+) LTDC_IT_RR: Register Reload interrupt is generated when the shadow + registers reload was performed during the vertical blanking + period. + +@endverbatim + * @{ + */ + +/** + * @brief Enables or disables the specified LTDC's interrupts. + * @param LTDC_IT: specifies the LTDC interrupts sources to be enabled or disabled. + * This parameter can be any combination of the following values: + * @arg LTDC_IT_LI: Line Interrupt Enable. + * @arg LTDC_IT_FU: FIFO Underrun Interrupt Enable. + * @arg LTDC_IT_TERR: Transfer Error Interrupt Enable. + * @arg LTDC_IT_RR: Register Reload interrupt enable. + * @param NewState: new state of the specified LTDC interrupts. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void LTDC_ITConfig(uint32_t LTDC_IT, FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_LTDC_IT(LTDC_IT)); + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + LTDC->IER |= LTDC_IT; + } + else + { + LTDC->IER &= (uint32_t)~LTDC_IT; + } +} + +/** + * @brief Checks whether the specified LTDC's flag is set or not. + * @param LTDC_FLAG: specifies the flag to check. + * This parameter can be one of the following values: + * @arg LTDC_FLAG_LI: Line Interrupt flag. + * @arg LTDC_FLAG_FU: FIFO Underrun Interrupt flag. + * @arg LTDC_FLAG_TERR: Transfer Error Interrupt flag. + * @arg LTDC_FLAG_RR: Register Reload interrupt flag. + * @retval The new state of LTDC_FLAG (SET or RESET). + */ +FlagStatus LTDC_GetFlagStatus(uint32_t LTDC_FLAG) +{ + FlagStatus bitstatus = RESET; + + /* Check the parameters */ + assert_param(IS_LTDC_FLAG(LTDC_FLAG)); + + if ((LTDC->ISR & LTDC_FLAG) != (uint32_t)RESET) + { + bitstatus = SET; + } + else + { + bitstatus = RESET; + } + return bitstatus; +} + +/** + * @brief Clears the LTDC's pending flags. + * @param LTDC_FLAG: specifies the flag to clear. + * This parameter can be any combination of the following values: + * @arg LTDC_FLAG_LI: Line Interrupt flag. + * @arg LTDC_FLAG_FU: FIFO Underrun Interrupt flag. + * @arg LTDC_FLAG_TERR: Transfer Error Interrupt flag. + * @arg LTDC_FLAG_RR: Register Reload interrupt flag. + * @retval None + */ +void LTDC_ClearFlag(uint32_t LTDC_FLAG) +{ + /* Check the parameters */ + assert_param(IS_LTDC_FLAG(LTDC_FLAG)); + + /* Clear the corresponding LTDC flag */ + LTDC->ICR = (uint32_t)LTDC_FLAG; +} + +/** + * @brief Checks whether the specified LTDC's interrupt has occurred or not. + * @param LTDC_IT: specifies the LTDC interrupts sources to check. + * This parameter can be one of the following values: + * @arg LTDC_IT_LI: Line Interrupt Enable. + * @arg LTDC_IT_FU: FIFO Underrun Interrupt Enable. + * @arg LTDC_IT_TERR: Transfer Error Interrupt Enable. + * @arg LTDC_IT_RR: Register Reload interrupt Enable. + * @retval The new state of the LTDC_IT (SET or RESET). + */ +ITStatus LTDC_GetITStatus(uint32_t LTDC_IT) +{ + ITStatus bitstatus = RESET; + + /* Check the parameters */ + assert_param(IS_LTDC_IT(LTDC_IT)); + + if ((LTDC->ISR & LTDC_IT) != (uint32_t)RESET) + { + bitstatus = SET; + } + else + { + bitstatus = RESET; + } + + if (((LTDC->IER & LTDC_IT) != (uint32_t)RESET) && (bitstatus != (uint32_t)RESET)) + { + bitstatus = SET; + } + else + { + bitstatus = RESET; + } + return bitstatus; +} + + +/** + * @brief Clears the LTDC's interrupt pending bits. + * @param LTDC_IT: specifies the interrupt pending bit to clear. + * This parameter can be any combination of the following values: + * @arg LTDC_IT_LIE: Line Interrupt. + * @arg LTDC_IT_FUIE: FIFO Underrun Interrupt. + * @arg LTDC_IT_TERRIE: Transfer Error Interrupt. + * @arg LTDC_IT_RRIE: Register Reload interrupt. + * @retval None + */ +void LTDC_ClearITPendingBit(uint32_t LTDC_IT) +{ + /* Check the parameters */ + assert_param(IS_LTDC_IT(LTDC_IT)); + + /* Clear the corresponding LTDC Interrupt */ + LTDC->ICR = (uint32_t)LTDC_IT; +} +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_pwr.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_pwr.c index 395b2a1d..1c797825 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_pwr.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_pwr.c @@ -2,22 +2,22 @@ ****************************************************************************** * @file stm32f4xx_pwr.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the Power Controller (PWR) peripheral: - * - Backup Domain Access - * - PVD configuration - * - WakeUp pin configuration - * - Main and Backup Regulators configuration - * - FLASH Power Down configuration - * - Low Power modes configuration - * - Flags management + * + Backup Domain Access + * + PVD configuration + * + WakeUp pin configuration + * + Main and Backup Regulators configuration + * + FLASH Power Down configuration + * + Low Power modes configuration + * + Flags management * ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -71,6 +71,21 @@ #define PMODE_BitNumber 0x0E #define CR_PMODE_BB (PERIPH_BB_BASE + (CR_OFFSET * 32) + (PMODE_BitNumber * 4)) +/* Alias word address of ODEN bit */ +#define ODEN_BitNumber 0x10 +#define CR_ODEN_BB (PERIPH_BB_BASE + (CR_OFFSET * 32) + (ODEN_BitNumber * 4)) + +/* Alias word address of ODSWEN bit */ +#define ODSWEN_BitNumber 0x11 +#define CR_ODSWEN_BB (PERIPH_BB_BASE + (CR_OFFSET * 32) + (ODSWEN_BitNumber * 4)) + +/* Alias word address of MRLVDS bit */ +#define MRLVDS_BitNumber 0x0B +#define CR_MRLVDS_BB (PERIPH_BB_BASE + (CR_OFFSET * 32) + (MRLVDS_BitNumber * 4)) + +/* Alias word address of LPLVDS bit */ +#define LPLVDS_BitNumber 0x0A +#define CR_LPLVDS_BB (PERIPH_BB_BASE + (CR_OFFSET * 32) + (LPLVDS_BitNumber * 4)) /* --- CSR Register ---*/ @@ -86,8 +101,9 @@ /* ------------------ PWR registers bit mask ------------------------ */ /* CR register bit mask */ -#define CR_DS_MASK ((uint32_t)0xFFFFFFFC) +#define CR_DS_MASK ((uint32_t)0xFFFFF3FC) #define CR_PLS_MASK ((uint32_t)0xFFFFFF1F) +#define CR_VOS_MASK ((uint32_t)0xFFFF3FFF) /* Private macro -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ @@ -103,16 +119,16 @@ * @verbatim =============================================================================== - Backup Domain Access function + ##### Backup Domain Access function ##### =============================================================================== - - After reset, the backup domain (RTC registers, RTC backup data - registers and backup SRAM) is protected against possible unwanted - write accesses. - To enable access to the RTC Domain and RTC registers, proceed as follows: - - Enable the Power Controller (PWR) APB1 interface clock using the - RCC_APB1PeriphClockCmd() function. - - Enable access to RTC domain using the PWR_BackupAccessCmd() function. + [..] + After reset, the backup domain (RTC registers, RTC backup data + registers and backup SRAM) is protected against possible unwanted + write accesses. + To enable access to the RTC Domain and RTC registers, proceed as follows: + (+) Enable the Power Controller (PWR) APB1 interface clock using the + RCC_APB1PeriphClockCmd() function. + (+) Enable access to RTC domain using the PWR_BackupAccessCmd() function. @endverbatim * @{ @@ -155,15 +171,15 @@ void PWR_BackupAccessCmd(FunctionalState NewState) * @verbatim =============================================================================== - PVD configuration functions + ##### PVD configuration functions ##### =============================================================================== - - - The PVD is used to monitor the VDD power supply by comparing it to a threshold - selected by the PVD Level (PLS[2:0] bits in the PWR_CR). - - A PVDO flag is available to indicate if VDD/VDDA is higher or lower than the - PVD threshold. This event is internally connected to the EXTI line16 - and can generate an interrupt if enabled through the EXTI registers. - - The PVD is stopped in Standby mode. + [..] + (+) The PVD is used to monitor the VDD power supply by comparing it to a + threshold selected by the PVD Level (PLS[2:0] bits in the PWR_CR). + (+) A PVDO flag is available to indicate if VDD/VDDA is higher or lower + than the PVD threshold. This event is internally connected to the EXTI + line16 and can generate an interrupt if enabled through the EXTI registers. + (+) The PVD is stopped in Standby mode. @endverbatim * @{ @@ -228,12 +244,12 @@ void PWR_PVDCmd(FunctionalState NewState) * @verbatim =============================================================================== - WakeUp pin configuration functions + ##### WakeUp pin configuration functions ##### =============================================================================== - - - WakeUp pin is used to wakeup the system from Standby mode. This pin is - forced in input pull down configuration and is active on rising edges. - - There is only one WakeUp pin: WakeUp Pin 1 on PA.00. + [..] + (+) WakeUp pin is used to wakeup the system from Standby mode. This pin is + forced in input pull down configuration and is active on rising edges. + (+) There is only one WakeUp pin: WakeUp Pin 1 on PA.00. @endverbatim * @{ @@ -262,37 +278,76 @@ void PWR_WakeUpPinCmd(FunctionalState NewState) * @verbatim =============================================================================== - Main and Backup Regulators configuration functions + ##### Main and Backup Regulators configuration functions ##### =============================================================================== - - - The backup domain includes 4 Kbytes of backup SRAM accessible only from the - CPU, and address in 32-bit, 16-bit or 8-bit mode. Its content is retained - even in Standby or VBAT mode when the low power backup regulator is enabled. - It can be considered as an internal EEPROM when VBAT is always present. - You can use the PWR_BackupRegulatorCmd() function to enable the low power - backup regulator and use the PWR_GetFlagStatus(PWR_FLAG_BRR) to check if it is - ready or not. - - - When the backup domain is supplied by VDD (analog switch connected to VDD) - the backup SRAM is powered from VDD which replaces the VBAT power supply to - save battery life. - - - The backup SRAM is not mass erased by an tamper event. It is read protected - to prevent confidential data, such as cryptographic private key, from being - accessed. The backup SRAM can be erased only through the Flash interface when - a protection level change from level 1 to level 0 is requested. - Refer to the description of Read protection (RDP) in the Flash programming manual. - - - The main internal regulator can be configured to have a tradeoff between performance - and power consumption when the device does not operate at the maximum frequency. - This is done through PWR_MainRegulatorModeConfig() function which configure VOS bit - in PWR_CR register: - - When this bit is set (Regulator voltage output Scale 1 mode selected) the System - frequency can go up to 168 MHz. - - When this bit is reset (Regulator voltage output Scale 2 mode selected) the System - frequency can go up to 144 MHz. - Refer to the datasheets for more details. - + [..] + (+) The backup domain includes 4 Kbytes of backup SRAM accessible only from + the CPU, and address in 32-bit, 16-bit or 8-bit mode. Its content is + retained even in Standby or VBAT mode when the low power backup regulator + is enabled. It can be considered as an internal EEPROM when VBAT is + always present. You can use the PWR_BackupRegulatorCmd() function to + enable the low power backup regulator and use the PWR_GetFlagStatus + (PWR_FLAG_BRR) to check if it is ready or not. + + (+) When the backup domain is supplied by VDD (analog switch connected to VDD) + the backup SRAM is powered from VDD which replaces the VBAT power supply to + save battery life. + + (+) The backup SRAM is not mass erased by an tamper event. It is read + protected to prevent confidential data, such as cryptographic private + key, from being accessed. The backup SRAM can be erased only through + the Flash interface when a protection level change from level 1 to + level 0 is requested. + -@- Refer to the description of Read protection (RDP) in the reference manual. + + (+) The main internal regulator can be configured to have a tradeoff between + performance and power consumption when the device does not operate at + the maximum frequency. + (+) For STM32F405xx/407xx and STM32F415xx/417xx Devices, the regulator can be + configured on the fly through PWR_MainRegulatorModeConfig() function which + configure VOS bit in PWR_CR register: + (++) When this bit is set (Regulator voltage output Scale 1 mode selected) + the System frequency can go up to 168 MHz. + (++) When this bit is reset (Regulator voltage output Scale 2 mode selected) + the System frequency can go up to 144 MHz. + + (+) For STM32F42xxx/43xxx Devices, the regulator can be configured through + PWR_MainRegulatorModeConfig() function which configure VOS[1:0] bits in + PWR_CR register: + which configure VOS[1:0] bits in PWR_CR register: + (++) When VOS[1:0] = 11 (Regulator voltage output Scale 1 mode selected) + the System frequency can go up to 168 MHz. + (++) When VOS[1:0] = 10 (Regulator voltage output Scale 2 mode selected) + the System frequency can go up to 144 MHz. + (++) When VOS[1:0] = 01 (Regulator voltage output Scale 3 mode selected) + the System frequency can go up to 120 MHz. + + (+) For STM32F42xxx/43xxx Devices, the scale can be modified only when the PLL + is OFF and the HSI or HSE clock source is selected as system clock. + The new value programmed is active only when the PLL is ON. + When the PLL is OFF, the voltage scale 3 is automatically selected. + Refer to the datasheets for more details. + + (+) For STM32F42xxx/43xxx Devices, in Run mode: the main regulator has + 2 operating modes available: + (++) Normal mode: The CPU and core logic operate at maximum frequency at a given + voltage scaling (scale 1, scale 2 or scale 3) + (++) Over-drive mode: This mode allows the CPU and the core logic to operate at a + higher frequency than the normal mode for a given voltage scaling (scale 1, + scale 2 or scale 3). This mode is enabled through PWR_OverDriveCmd() function and + PWR_OverDriveSWCmd() function, to enter or exit from Over-drive mode please follow + the sequence described in Reference manual. + + (+) For STM32F42xxx/43xxx Devices, in Stop mode: the main regulator or low power regulator + supplies a low power voltage to the 1.2V domain, thus preserving the content of registers + and internal SRAM. 2 operating modes are available: + (++) Normal mode: the 1.2V domain is preserved in nominal leakage mode. This mode is only + available when the main regulator or the low power regulator is used in Scale 3 or + low voltage mode. + (++) Under-drive mode: the 1.2V domain is preserved in reduced leakage mode. This mode is only + available when the main regulator or the low power regulator is in low voltage mode. + This mode is enabled through PWR_UnderDriveCmd() function. + @endverbatim * @{ */ @@ -321,20 +376,152 @@ void PWR_BackupRegulatorCmd(FunctionalState NewState) * System frequency up to 168 MHz. * @arg PWR_Regulator_Voltage_Scale2: Regulator voltage output Scale 2 mode, * System frequency up to 144 MHz. + * @arg PWR_Regulator_Voltage_Scale3: Regulator voltage output Scale 3 mode, + * System frequency up to 120 MHz (only for STM32F42xxx/43xxx devices) * @retval None */ void PWR_MainRegulatorModeConfig(uint32_t PWR_Regulator_Voltage) { + uint32_t tmpreg = 0; + /* Check the parameters */ assert_param(IS_PWR_REGULATOR_VOLTAGE(PWR_Regulator_Voltage)); - if (PWR_Regulator_Voltage == PWR_Regulator_Voltage_Scale2) + tmpreg = PWR->CR; + + /* Clear VOS[15:14] bits */ + tmpreg &= CR_VOS_MASK; + + /* Set VOS[15:14] bits according to PWR_Regulator_Voltage value */ + tmpreg |= PWR_Regulator_Voltage; + + /* Store the new value */ + PWR->CR = tmpreg; +} + +/** + * @brief Enables or disables the Over-Drive. + * + * @note This function can be used only for STM32F42xxx/STM3243xxx devices. + * This mode allows the CPU and the core logic to operate at a higher frequency + * than the normal mode for a given voltage scaling (scale 1, scale 2 or scale 3). + * + * @note It is recommended to enter or exit Over-drive mode when the application is not running + * critical tasks and when the system clock source is either HSI or HSE. + * During the Over-drive switch activation, no peripheral clocks should be enabled. + * The peripheral clocks must be enabled once the Over-drive mode is activated. + * + * @param NewState: new state of the Over Drive mode. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void PWR_OverDriveCmd(FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + /* Set/Reset the ODEN bit to enable/disable the Over Drive mode */ + *(__IO uint32_t *) CR_ODEN_BB = (uint32_t)NewState; +} + +/** + * @brief Enables or disables the Over-Drive switching. + * + * @note This function can be used only for STM32F42xxx/STM3243xxx devices. + * + * @param NewState: new state of the Over Drive switching mode. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void PWR_OverDriveSWCmd(FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + /* Set/Reset the ODSWEN bit to enable/disable the Over Drive switching mode */ + *(__IO uint32_t *) CR_ODSWEN_BB = (uint32_t)NewState; +} + +/** + * @brief Enables or disables the Under-Drive mode. + * + * @note This function can be used only for STM32F42xxx/STM3243xxx devices. + * @note This mode is enabled only with STOP low power mode. + * In this mode, the 1.2V domain is preserved in reduced leakage mode. This + * mode is only available when the main regulator or the low power regulator + * is in low voltage mode + * + * @note If the Under-drive mode was enabled, it is automatically disabled after + * exiting Stop mode. + * When the voltage regulator operates in Under-drive mode, an additional + * startup delay is induced when waking up from Stop mode. + * + * @param NewState: new state of the Under Drive mode. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void PWR_UnderDriveCmd(FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) { - PWR->CR &= ~PWR_Regulator_Voltage_Scale1; + /* Set the UDEN[1:0] bits to enable the Under Drive mode */ + PWR->CR |= (uint32_t)PWR_CR_UDEN; } else - { - PWR->CR |= PWR_Regulator_Voltage_Scale1; + { + /* Reset the UDEN[1:0] bits to disable the Under Drive mode */ + PWR->CR &= (uint32_t)(~PWR_CR_UDEN); + } +} + +/** + * @brief Enables or disables the Main Regulator low voltage mode. + * + * @note This mode is only available for STM32F401xx/STM32F411xx devices. + * + * @param NewState: new state of the Under Drive mode. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void PWR_MainRegulatorLowVoltageCmd(FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + *(__IO uint32_t *) CR_MRLVDS_BB = (uint32_t)ENABLE; + } + else + { + *(__IO uint32_t *) CR_MRLVDS_BB = (uint32_t)DISABLE; + } +} + +/** + * @brief Enables or disables the Low Power Regulator low voltage mode. + * + * @note This mode is only available for STM32F401xx/STM32F411xx devices. + * + * @param NewState: new state of the Under Drive mode. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void PWR_LowRegulatorLowVoltageCmd(FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + *(__IO uint32_t *) CR_LPLVDS_BB = (uint32_t)ENABLE; + } + else + { + *(__IO uint32_t *) CR_LPLVDS_BB = (uint32_t)DISABLE; } } @@ -347,14 +534,14 @@ void PWR_MainRegulatorModeConfig(uint32_t PWR_Regulator_Voltage) * @verbatim =============================================================================== - FLASH Power Down configuration functions + ##### FLASH Power Down configuration functions ##### =============================================================================== - - - By setting the FPDS bit in the PWR_CR register by using the PWR_FlashPowerDownCmd() - function, the Flash memory also enters power down mode when the device enters - Stop mode. When the Flash memory is in power down mode, an additional startup - delay is incurred when waking up from Stop mode. - + [..] + (+) By setting the FPDS bit in the PWR_CR register by using the + PWR_FlashPowerDownCmd() function, the Flash memory also enters power + down mode when the device enters Stop mode. When the Flash memory + is in power down mode, an additional startup delay is incurred when + waking up from Stop mode. @endverbatim * @{ */ @@ -382,103 +569,109 @@ void PWR_FlashPowerDownCmd(FunctionalState NewState) * @verbatim =============================================================================== - Low Power modes configuration functions + ##### Low Power modes configuration functions ##### =============================================================================== - - The devices feature 3 low-power modes: - - Sleep mode: Cortex-M4 core stopped, peripherals kept running. - - Stop mode: all clocks are stopped, regulator running, regulator in low power mode - - Standby mode: 1.2V domain powered off. + [..] + The devices feature 3 low-power modes: + (+) Sleep mode: Cortex-M4 core stopped, peripherals kept running. + (+) Stop mode: all clocks are stopped, regulator running, regulator + in low power mode + (+) Standby mode: 1.2V domain powered off. - Sleep mode - =========== - - Entry: - - The Sleep mode is entered by using the __WFI() or __WFE() functions. - - Exit: - - Any peripheral interrupt acknowledged by the nested vectored interrupt - controller (NVIC) can wake up the device from Sleep mode. - - Stop mode - ========== - In Stop mode, all clocks in the 1.2V domain are stopped, the PLL, the HSI, - and the HSE RC oscillators are disabled. Internal SRAM and register contents - are preserved. - The voltage regulator can be configured either in normal or low-power mode. - To minimize the consumption In Stop mode, FLASH can be powered off before - entering the Stop mode. It can be switched on again by software after exiting - the Stop mode using the PWR_FlashPowerDownCmd() function. + *** Sleep mode *** + ================== + [..] + (+) Entry: + (++) The Sleep mode is entered by using the __WFI() or __WFE() functions. + (+) Exit: + (++) Any peripheral interrupt acknowledged by the nested vectored interrupt + controller (NVIC) can wake up the device from Sleep mode. + + *** Stop mode *** + ================= + [..] + In Stop mode, all clocks in the 1.2V domain are stopped, the PLL, the HSI, + and the HSE RC oscillators are disabled. Internal SRAM and register contents + are preserved. + The voltage regulator can be configured either in normal or low-power mode. + To minimize the consumption In Stop mode, FLASH can be powered off before + entering the Stop mode. It can be switched on again by software after exiting + the Stop mode using the PWR_FlashPowerDownCmd() function. - - Entry: - - The Stop mode is entered using the PWR_EnterSTOPMode(PWR_Regulator_LowPower,) - function with regulator in LowPower or with Regulator ON. - - Exit: - - Any EXTI Line (Internal or External) configured in Interrupt/Event mode. + (+) Entry: + (++) The Stop mode is entered using the PWR_EnterSTOPMode(PWR_MainRegulator_ON) + function with: + (+++) Main regulator ON. + (+++) Low Power regulator ON. + (+) Exit: + (++) Any EXTI Line (Internal or External) configured in Interrupt/Event mode. - Standby mode - ============ - The Standby mode allows to achieve the lowest power consumption. It is based - on the Cortex-M4 deepsleep mode, with the voltage regulator disabled. - The 1.2V domain is consequently powered off. The PLL, the HSI oscillator and - the HSE oscillator are also switched off. SRAM and register contents are lost - except for the RTC registers, RTC backup registers, backup SRAM and Standby - circuitry. + *** Standby mode *** + ==================== + [..] + The Standby mode allows to achieve the lowest power consumption. It is based + on the Cortex-M4 deepsleep mode, with the voltage regulator disabled. + The 1.2V domain is consequently powered off. The PLL, the HSI oscillator and + the HSE oscillator are also switched off. SRAM and register contents are lost + except for the RTC registers, RTC backup registers, backup SRAM and Standby + circuitry. - The voltage regulator is OFF. + The voltage regulator is OFF. - - Entry: - - The Standby mode is entered using the PWR_EnterSTANDBYMode() function. - - Exit: - - WKUP pin rising edge, RTC alarm (Alarm A and Alarm B), RTC wakeup, - tamper event, time-stamp event, external reset in NRST pin, IWDG reset. - - Auto-wakeup (AWU) from low-power mode - ===================================== - The MCU can be woken up from low-power mode by an RTC Alarm event, an RTC - Wakeup event, a tamper event, a time-stamp event, or a comparator event, - without depending on an external interrupt (Auto-wakeup mode). - - - RTC auto-wakeup (AWU) from the Stop mode - ---------------------------------------- - - - To wake up from the Stop mode with an RTC alarm event, it is necessary to: - - Configure the EXTI Line 17 to be sensitive to rising edges (Interrupt - or Event modes) using the EXTI_Init() function. - - Enable the RTC Alarm Interrupt using the RTC_ITConfig() function - - Configure the RTC to generate the RTC alarm using the RTC_SetAlarm() - and RTC_AlarmCmd() functions. - - To wake up from the Stop mode with an RTC Tamper or time stamp event, it - is necessary to: - - Configure the EXTI Line 21 to be sensitive to rising edges (Interrupt - or Event modes) using the EXTI_Init() function. - - Enable the RTC Tamper or time stamp Interrupt using the RTC_ITConfig() - function - - Configure the RTC to detect the tamper or time stamp event using the - RTC_TimeStampConfig(), RTC_TamperTriggerConfig() and RTC_TamperCmd() - functions. - - To wake up from the Stop mode with an RTC WakeUp event, it is necessary to: - - Configure the EXTI Line 22 to be sensitive to rising edges (Interrupt - or Event modes) using the EXTI_Init() function. - - Enable the RTC WakeUp Interrupt using the RTC_ITConfig() function - - Configure the RTC to generate the RTC WakeUp event using the RTC_WakeUpClockConfig(), - RTC_SetWakeUpCounter() and RTC_WakeUpCmd() functions. - - - RTC auto-wakeup (AWU) from the Standby mode - ------------------------------------------- - - To wake up from the Standby mode with an RTC alarm event, it is necessary to: - - Enable the RTC Alarm Interrupt using the RTC_ITConfig() function - - Configure the RTC to generate the RTC alarm using the RTC_SetAlarm() - and RTC_AlarmCmd() functions. - - To wake up from the Standby mode with an RTC Tamper or time stamp event, it - is necessary to: - - Enable the RTC Tamper or time stamp Interrupt using the RTC_ITConfig() - function - - Configure the RTC to detect the tamper or time stamp event using the - RTC_TimeStampConfig(), RTC_TamperTriggerConfig() and RTC_TamperCmd() - functions. - - To wake up from the Standby mode with an RTC WakeUp event, it is necessary to: - - Enable the RTC WakeUp Interrupt using the RTC_ITConfig() function - - Configure the RTC to generate the RTC WakeUp event using the RTC_WakeUpClockConfig(), - RTC_SetWakeUpCounter() and RTC_WakeUpCmd() functions. + (+) Entry: + (++) The Standby mode is entered using the PWR_EnterSTANDBYMode() function. + (+) Exit: + (++) WKUP pin rising edge, RTC alarm (Alarm A and Alarm B), RTC wakeup, + tamper event, time-stamp event, external reset in NRST pin, IWDG reset. + + *** Auto-wakeup (AWU) from low-power mode *** + ============================================= + [..] + The MCU can be woken up from low-power mode by an RTC Alarm event, an RTC + Wakeup event, a tamper event, a time-stamp event, or a comparator event, + without depending on an external interrupt (Auto-wakeup mode). + + (#) RTC auto-wakeup (AWU) from the Stop mode + + (++) To wake up from the Stop mode with an RTC alarm event, it is necessary to: + (+++) Configure the EXTI Line 17 to be sensitive to rising edges (Interrupt + or Event modes) using the EXTI_Init() function. + (+++) Enable the RTC Alarm Interrupt using the RTC_ITConfig() function + (+++) Configure the RTC to generate the RTC alarm using the RTC_SetAlarm() + and RTC_AlarmCmd() functions. + (++) To wake up from the Stop mode with an RTC Tamper or time stamp event, it + is necessary to: + (+++) Configure the EXTI Line 21 to be sensitive to rising edges (Interrupt + or Event modes) using the EXTI_Init() function. + (+++) Enable the RTC Tamper or time stamp Interrupt using the RTC_ITConfig() + function + (+++) Configure the RTC to detect the tamper or time stamp event using the + RTC_TimeStampConfig(), RTC_TamperTriggerConfig() and RTC_TamperCmd() + functions. + (++) To wake up from the Stop mode with an RTC WakeUp event, it is necessary to: + (+++) Configure the EXTI Line 22 to be sensitive to rising edges (Interrupt + or Event modes) using the EXTI_Init() function. + (+++) Enable the RTC WakeUp Interrupt using the RTC_ITConfig() function + (+++) Configure the RTC to generate the RTC WakeUp event using the RTC_WakeUpClockConfig(), + RTC_SetWakeUpCounter() and RTC_WakeUpCmd() functions. + + (#) RTC auto-wakeup (AWU) from the Standby mode + + (++) To wake up from the Standby mode with an RTC alarm event, it is necessary to: + (+++) Enable the RTC Alarm Interrupt using the RTC_ITConfig() function + (+++) Configure the RTC to generate the RTC alarm using the RTC_SetAlarm() + and RTC_AlarmCmd() functions. + (++) To wake up from the Standby mode with an RTC Tamper or time stamp event, it + is necessary to: + (+++) Enable the RTC Tamper or time stamp Interrupt using the RTC_ITConfig() + function + (+++) Configure the RTC to detect the tamper or time stamp event using the + RTC_TimeStampConfig(), RTC_TamperTriggerConfig() and RTC_TamperCmd() + functions. + (++) To wake up from the Standby mode with an RTC WakeUp event, it is necessary to: + (+++) Enable the RTC WakeUp Interrupt using the RTC_ITConfig() function + (+++) Configure the RTC to generate the RTC WakeUp event using the RTC_WakeUpClockConfig(), + RTC_SetWakeUpCounter() and RTC_WakeUpCmd() functions. @endverbatim * @{ @@ -493,12 +686,12 @@ void PWR_FlashPowerDownCmd(FunctionalState NewState) * @note When the voltage regulator operates in low power mode, an additional * startup delay is incurred when waking up from Stop mode. * By keeping the internal regulator ON during Stop mode, the consumption - * is higher although the startup time is reduced. + * is higher although the startup time is reduced. * * @param PWR_Regulator: specifies the regulator state in STOP mode. * This parameter can be one of the following values: - * @arg PWR_Regulator_ON: STOP mode with regulator ON - * @arg PWR_Regulator_LowPower: STOP mode with regulator in low power mode + * @arg PWR_MainRegulator_ON: STOP mode with regulator ON + * @arg PWR_LowPowerRegulator_ON: STOP mode with low power regulator ON * @param PWR_STOPEntry: specifies if STOP mode in entered with WFI or WFE instruction. * This parameter can be one of the following values: * @arg PWR_STOPEntry_WFI: enter STOP mode with WFI instruction @@ -515,10 +708,74 @@ void PWR_EnterSTOPMode(uint32_t PWR_Regulator, uint8_t PWR_STOPEntry) /* Select the regulator state in STOP mode ---------------------------------*/ tmpreg = PWR->CR; - /* Clear PDDS and LPDSR bits */ + /* Clear PDDS and LPDS bits */ tmpreg &= CR_DS_MASK; - /* Set LPDSR bit according to PWR_Regulator value */ + /* Set LPDS, MRLVDS and LPLVDS bits according to PWR_Regulator value */ + tmpreg |= PWR_Regulator; + + /* Store the new value */ + PWR->CR = tmpreg; + + /* Set SLEEPDEEP bit of Cortex System Control Register */ + SCB->SCR |= SCB_SCR_SLEEPDEEP_Msk; + + /* Select STOP mode entry --------------------------------------------------*/ + if(PWR_STOPEntry == PWR_STOPEntry_WFI) + { + /* Request Wait For Interrupt */ + __WFI(); + } + else + { + /* Request Wait For Event */ + __WFE(); + } + /* Reset SLEEPDEEP bit of Cortex System Control Register */ + SCB->SCR &= (uint32_t)~((uint32_t)SCB_SCR_SLEEPDEEP_Msk); +} + +/** + * @brief Enters in Under-Drive STOP mode. + * + * @note This mode is only available for STM32F42xxx/STM3243xxx devices. + * + * @note This mode can be selected only when the Under-Drive is already active + * + * @note In Stop mode, all I/O pins keep the same state as in Run mode. + * @note When exiting Stop mode by issuing an interrupt or a wakeup event, + * the HSI RC oscillator is selected as system clock. + * @note When the voltage regulator operates in low power mode, an additional + * startup delay is incurred when waking up from Stop mode. + * By keeping the internal regulator ON during Stop mode, the consumption + * is higher although the startup time is reduced. + * + * @param PWR_Regulator: specifies the regulator state in STOP mode. + * This parameter can be one of the following values: + * @arg PWR_MainRegulator_UnderDrive_ON: Main Regulator in under-drive mode + * and Flash memory in power-down when the device is in Stop under-drive mode + * @arg PWR_LowPowerRegulator_UnderDrive_ON: Low Power Regulator in under-drive mode + * and Flash memory in power-down when the device is in Stop under-drive mode + * @param PWR_STOPEntry: specifies if STOP mode in entered with WFI or WFE instruction. + * This parameter can be one of the following values: + * @arg PWR_STOPEntry_WFI: enter STOP mode with WFI instruction + * @arg PWR_STOPEntry_WFE: enter STOP mode with WFE instruction + * @retval None + */ +void PWR_EnterUnderDriveSTOPMode(uint32_t PWR_Regulator, uint8_t PWR_STOPEntry) +{ + uint32_t tmpreg = 0; + + /* Check the parameters */ + assert_param(IS_PWR_REGULATOR_UNDERDRIVE(PWR_Regulator)); + assert_param(IS_PWR_STOP_ENTRY(PWR_STOPEntry)); + + /* Select the regulator state in STOP mode ---------------------------------*/ + tmpreg = PWR->CR; + /* Clear PDDS and LPDS bits */ + tmpreg &= CR_DS_MASK; + + /* Set LPDS, MRLUDS and LPLUDS bits according to PWR_Regulator value */ tmpreg |= PWR_Regulator; /* Store the new value */ @@ -549,22 +806,20 @@ void PWR_EnterSTOPMode(uint32_t PWR_Regulator, uint8_t PWR_STOPEntry) * - RTC_AF1 pin (PC13) if configured for tamper, time-stamp, RTC * Alarm out, or RTC clock calibration out. * - RTC_AF2 pin (PI8) if configured for tamper or time-stamp. - * - WKUP pin 1 (PA0) if enabled. + * - WKUP pin 1 (PA0) if enabled. + * @note The Wakeup flag (WUF) need to be cleared at application level before to call this function * @param None * @retval None */ void PWR_EnterSTANDBYMode(void) { - /* Clear Wakeup flag */ - PWR->CR |= PWR_CR_CWUF; - /* Select STANDBY mode */ PWR->CR |= PWR_CR_PDDS; /* Set SLEEPDEEP bit of Cortex System Control Register */ SCB->SCR |= SCB_SCR_SLEEPDEEP_Msk; -/* This option is used to ensure that store operations are completed */ + /* This option is used to ensure that store operations are completed */ #if defined ( __CC_ARM ) __force_stores(); #endif @@ -581,7 +836,7 @@ void PWR_EnterSTANDBYMode(void) * @verbatim =============================================================================== - Flags management functions + ##### Flags management functions ##### =============================================================================== @endverbatim @@ -607,7 +862,13 @@ void PWR_EnterSTANDBYMode(void) * when the device wakes up from Standby mode or by a system reset * or power reset. * @arg PWR_FLAG_VOSRDY: This flag indicates that the Regulator voltage - * scaling output selection is ready. + * scaling output selection is ready. + * @arg PWR_FLAG_ODRDY: This flag indicates that the Over-drive mode + * is ready (STM32F42xxx/43xxx devices) + * @arg PWR_FLAG_ODSWRDY: This flag indicates that the Over-drive mode + * switcching is ready (STM32F42xxx/43xxx devices) + * @arg PWR_FLAG_UDRDY: This flag indicates that the Under-drive mode + * is enabled in Stop mode (STM32F42xxx/43xxx devices) * @retval The new state of PWR_FLAG (SET or RESET). */ FlagStatus PWR_GetFlagStatus(uint32_t PWR_FLAG) @@ -635,14 +896,28 @@ FlagStatus PWR_GetFlagStatus(uint32_t PWR_FLAG) * This parameter can be one of the following values: * @arg PWR_FLAG_WU: Wake Up flag * @arg PWR_FLAG_SB: StandBy flag + * @arg PWR_FLAG_UDRDY: Under-drive ready flag (STM32F42xxx/43xxx devices) * @retval None */ void PWR_ClearFlag(uint32_t PWR_FLAG) { /* Check the parameters */ assert_param(IS_PWR_CLEAR_FLAG(PWR_FLAG)); - + +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) + if (PWR_FLAG != PWR_FLAG_UDRDY) + { + PWR->CR |= PWR_FLAG << 2; + } + else + { + PWR->CSR |= PWR_FLAG_UDRDY; + } +#endif /* STM32F427_437xx || STM32F429_439xx */ + +#if defined (STM32F40_41xxx) || defined (STM32F401xx) || defined (STM32F411xE) PWR->CR |= PWR_FLAG << 2; +#endif /* STM32F40_41xxx || STM32F401xx || STM32F411xE */ } /** diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rcc.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rcc.c index fd4c7e58..7082975b 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rcc.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rcc.c @@ -2,46 +2,43 @@ ****************************************************************************** * @file stm32f4xx_rcc.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the Reset and clock control (RCC) peripheral: - * - Internal/external clocks, PLL, CSS and MCO configuration - * - System, AHB and APB busses clocks configuration - * - Peripheral clocks configuration - * - Interrupts and flags management + * + Internal/external clocks, PLL, CSS and MCO configuration + * + System, AHB and APB busses clocks configuration + * + Peripheral clocks configuration + * + Interrupts and flags management * - * @verbatim - * - * =================================================================== - * RCC specific features - * =================================================================== - * - * After reset the device is running from Internal High Speed oscillator - * (HSI 16MHz) with Flash 0 wait state, Flash prefetch buffer, D-Cache - * and I-Cache are disabled, and all peripherals are off except internal - * SRAM, Flash and JTAG. - * - There is no prescaler on High speed (AHB) and Low speed (APB) busses; - * all peripherals mapped on these busses are running at HSI speed. - * - The clock for all peripherals is switched off, except the SRAM and FLASH. - * - All GPIOs are in input floating state, except the JTAG pins which - * are assigned to be used for debug purpose. - * - * Once the device started from reset, the user application has to: - * - Configure the clock source to be used to drive the System clock - * (if the application needs higher frequency/performance) - * - Configure the System clock frequency and Flash settings - * - Configure the AHB and APB busses prescalers - * - Enable the clock for the peripheral(s) to be used - * - Configure the clock source(s) for peripherals which clocks are not - * derived from the System clock (I2S, RTC, ADC, USB OTG FS/SDIO/RNG) - * - * @endverbatim - * + @verbatim + =============================================================================== + ##### RCC specific features ##### + =============================================================================== + [..] + After reset the device is running from Internal High Speed oscillator + (HSI 16MHz) with Flash 0 wait state, Flash prefetch buffer, D-Cache + and I-Cache are disabled, and all peripherals are off except internal + SRAM, Flash and JTAG. + (+) There is no prescaler on High speed (AHB) and Low speed (APB) busses; + all peripherals mapped on these busses are running at HSI speed. + (+) The clock for all peripherals is switched off, except the SRAM and FLASH. + (+) All GPIOs are in input floating state, except the JTAG pins which + are assigned to be used for debug purpose. + [..] + Once the device started from reset, the user application has to: + (+) Configure the clock source to be used to drive the System clock + (if the application needs higher frequency/performance) + (+) Configure the System clock frequency and Flash settings + (+) Configure the AHB and APB busses prescalers + (+) Enable the clock for the peripheral(s) to be used + (+) Configure the clock source(s) for peripherals which clocks are not + derived from the System clock (I2S, RTC, ADC, USB OTG FS/SDIO/RNG) + @endverbatim ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -89,6 +86,10 @@ #define PLLI2SON_BitNumber 0x1A #define CR_PLLI2SON_BB (PERIPH_BB_BASE + (CR_OFFSET * 32) + (PLLI2SON_BitNumber * 4)) +/* Alias word address of PLLSAION bit */ +#define PLLSAION_BitNumber 0x1C +#define CR_PLLSAION_BB (PERIPH_BB_BASE + (CR_OFFSET * 32) + (PLLSAION_BitNumber * 4)) + /* --- CFGR Register ---*/ /* Alias word address of I2SSRC bit */ #define CFGR_OFFSET (RCC_OFFSET + 0x08) @@ -103,11 +104,18 @@ /* Alias word address of BDRST bit */ #define BDRST_BitNumber 0x10 #define BDCR_BDRST_BB (PERIPH_BB_BASE + (BDCR_OFFSET * 32) + (BDRST_BitNumber * 4)) + /* --- CSR Register ---*/ /* Alias word address of LSION bit */ #define CSR_OFFSET (RCC_OFFSET + 0x74) #define LSION_BitNumber 0x00 #define CSR_LSION_BB (PERIPH_BB_BASE + (CSR_OFFSET * 32) + (LSION_BitNumber * 4)) + +/* --- DCKCFGR Register ---*/ +/* Alias word address of TIMPRE bit */ +#define DCKCFGR_OFFSET (RCC_OFFSET + 0x8C) +#define TIMPRE_BitNumber 0x18 +#define DCKCFGR_TIMPRE_BB (PERIPH_BB_BASE + (DCKCFGR_OFFSET * 32) + (TIMPRE_BitNumber * 4)) /* ---------------------- RCC registers bit mask ------------------------ */ /* CFGR register bit mask */ #define CFGR_MCO2_RESET_MASK ((uint32_t)0x07FFFFFF) @@ -143,45 +151,48 @@ static __I uint8_t APBAHBPrescTable[16] = {0, 0, 0, 0, 1, 2, 3, 4, 1, 2, 3, 4, 6 * @brief Internal and external clocks, PLL, CSS and MCO configuration functions * @verbatim - =============================================================================== - Internal/external clocks, PLL, CSS and MCO configuration functions - =============================================================================== - - This section provide functions allowing to configure the internal/external clocks, - PLLs, CSS and MCO pins. + =================================================================================== + ##### Internal and external clocks, PLL, CSS and MCO configuration functions ##### + =================================================================================== + [..] + This section provide functions allowing to configure the internal/external clocks, + PLLs, CSS and MCO pins. - 1. HSI (high-speed internal), 16 MHz factory-trimmed RC used directly or through - the PLL as System clock source. + (#) HSI (high-speed internal), 16 MHz factory-trimmed RC used directly or through + the PLL as System clock source. - 2. LSI (low-speed internal), 32 KHz low consumption RC used as IWDG and/or RTC - clock source. + (#) LSI (low-speed internal), 32 KHz low consumption RC used as IWDG and/or RTC + clock source. - 3. HSE (high-speed external), 4 to 26 MHz crystal oscillator used directly or - through the PLL as System clock source. Can be used also as RTC clock source. + (#) HSE (high-speed external), 4 to 26 MHz crystal oscillator used directly or + through the PLL as System clock source. Can be used also as RTC clock source. - 4. LSE (low-speed external), 32 KHz oscillator used as RTC clock source. + (#) LSE (low-speed external), 32 KHz oscillator used as RTC clock source. - 5. PLL (clocked by HSI or HSE), featuring two different output clocks: - - The first output is used to generate the high speed system clock (up to 168 MHz) - - The second output is used to generate the clock for the USB OTG FS (48 MHz), - the random analog generator (<=48 MHz) and the SDIO (<= 48 MHz). + (#) PLL (clocked by HSI or HSE), featuring two different output clocks: + (++) The first output is used to generate the high speed system clock (up to 168 MHz) + (++) The second output is used to generate the clock for the USB OTG FS (48 MHz), + the random analog generator (<=48 MHz) and the SDIO (<= 48 MHz). - 6. PLLI2S (clocked by HSI or HSE), used to generate an accurate clock to achieve - high-quality audio performance on the I2S interface. + (#) PLLI2S (clocked by HSI or HSE), used to generate an accurate clock to achieve + high-quality audio performance on the I2S interface or SAI interface in case + of STM32F429x/439x devices. + + (#) PLLSAI clocked by (HSI or HSE), used to generate an accurate clock to SAI + interface and LCD TFT controller available only for STM32F42xxx/43xxx devices. - 7. CSS (Clock security system), once enable and if a HSE clock failure occurs - (HSE used directly or through PLL as System clock source), the System clock - is automatically switched to HSI and an interrupt is generated if enabled. - The interrupt is linked to the Cortex-M4 NMI (Non-Maskable Interrupt) - exception vector. - - 8. MCO1 (microcontroller clock output), used to output HSI, LSE, HSE or PLL - clock (through a configurable prescaler) on PA8 pin. - - 9. MCO2 (microcontroller clock output), used to output HSE, PLL, SYSCLK or PLLI2S - clock (through a configurable prescaler) on PC9 pin. - -@endverbatim + (#) CSS (Clock security system), once enable and if a HSE clock failure occurs + (HSE used directly or through PLL as System clock source), the System clock + is automatically switched to HSI and an interrupt is generated if enabled. + The interrupt is linked to the Cortex-M4 NMI (Non-Maskable Interrupt) + exception vector. + + (#) MCO1 (microcontroller clock output), used to output HSI, LSE, HSE or PLL + clock (through a configurable prescaler) on PA8 pin. + + (#) MCO2 (microcontroller clock output), used to output HSE, PLL, SYSCLK or PLLI2S + clock (through a configurable prescaler) on PC9 pin. + @endverbatim * @{ */ @@ -194,7 +205,7 @@ static __I uint8_t APBAHBPrescTable[16] = {0, 0, 0, 0, 1, 2, 3, 4, 1, 2, 3, 4, 6 * - CSS, MCO1 and MCO2 OFF * - All interrupts disabled * @note This function doesn't modify the configuration of the - * - Peripheral clocks + * - Peripheral clocks * - LSI, LSE and RTC clocks * @param None * @retval None @@ -207,17 +218,26 @@ void RCC_DeInit(void) /* Reset CFGR register */ RCC->CFGR = 0x00000000; - /* Reset HSEON, CSSON and PLLON bits */ - RCC->CR &= (uint32_t)0xFEF6FFFF; + /* Reset HSEON, CSSON, PLLON, PLLI2S and PLLSAI(STM32F42/43xxx devices) bits */ + RCC->CR &= (uint32_t)0xEAF6FFFF; /* Reset PLLCFGR register */ RCC->PLLCFGR = 0x24003010; + /* Reset PLLI2SCFGR register */ + RCC->PLLI2SCFGR = 0x20003000; + + /* Reset PLLSAICFGR register, only available for STM32F42/43xxx devices */ + RCC->PLLSAICFGR = 0x24003000; + /* Reset HSEBYP bit */ RCC->CR &= (uint32_t)0xFFFBFFFF; /* Disable all interrupts */ RCC->CIR = 0x00000000; + + /* Disable Timers clock prescalers selection, only available for STM32F42/43xxx devices */ + RCC->DCKCFGR = 0x00000000; } /** @@ -469,9 +489,13 @@ void RCC_PLLCmd(FunctionalState NewState) *(__IO uint32_t *) CR_PLLON_BB = (uint32_t)NewState; } +#if defined (STM32F40_41xxx) || defined (STM32F401xx) /** * @brief Configures the PLLI2S clock multiplication and division factors. * + * @note This function can be used only for STM32F405xx/407xx, STM32F415xx/417xx + * or STM32F401xx devices. + * * @note This function must be used only when the PLLI2S is disabled. * @note PLLI2S clock source is common with the main PLL (configured in * RCC_PLLConfig function ) @@ -497,6 +521,82 @@ void RCC_PLLI2SConfig(uint32_t PLLI2SN, uint32_t PLLI2SR) RCC->PLLI2SCFGR = (PLLI2SN << 6) | (PLLI2SR << 28); } +#elif defined (STM32F411xE) +/** + * @brief Configures the PLLI2S clock multiplication and division factors. + * + * @note This function can be used only for STM32F411xE devices. + * + * @note This function must be used only when the PLLI2S is disabled. + * @note PLLI2S clock source is common with the main PLL (configured in + * RCC_PLLConfig function ) + * + * @param PLLI2SM: specifies the division factor for PLLI2S VCO input clock + * This parameter must be a number between Min_Data = 2 and Max_Data = 63. + * @note You have to set the PLLI2SM parameter correctly to ensure that the VCO input + * frequency ranges from 1 to 2 MHz. It is recommended to select a frequency + * of 2 MHz to limit PLLI2S jitter. + * + * @param PLLI2SN: specifies the multiplication factor for PLLI2S VCO output clock + * This parameter must be a number between 192 and 432. + * @note You have to set the PLLI2SN parameter correctly to ensure that the VCO + * output frequency is between 192 and 432 MHz. + * + * @param PLLI2SR: specifies the division factor for I2S clock + * This parameter must be a number between 2 and 7. + * @note You have to set the PLLI2SR parameter correctly to not exceed 192 MHz + * on the I2S clock frequency. + * + * @retval None + */ +void RCC_PLLI2SConfig(uint32_t PLLI2SN, uint32_t PLLI2SR, uint32_t PLLI2SM) +{ + /* Check the parameters */ + assert_param(IS_RCC_PLLI2SN_VALUE(PLLI2SN)); + assert_param(IS_RCC_PLLI2SM_VALUE(PLLI2SM)); + assert_param(IS_RCC_PLLI2SR_VALUE(PLLI2SR)); + + RCC->PLLI2SCFGR = (PLLI2SN << 6) | (PLLI2SR << 28) | PLLI2SM; +} + +#elif defined (STM32F427_437xx) || defined (STM32F429_439xx) +/** + * @brief Configures the PLLI2S clock multiplication and division factors. + * + * @note This function can be used only for STM32F42xxx/43xxx devices + * + * @note This function must be used only when the PLLI2S is disabled. + * @note PLLI2S clock source is common with the main PLL (configured in + * RCC_PLLConfig function ) + * + * @param PLLI2SN: specifies the multiplication factor for PLLI2S VCO output clock + * This parameter must be a number between 192 and 432. + * @note You have to set the PLLI2SN parameter correctly to ensure that the VCO + * output frequency is between 192 and 432 MHz. + * + * @param PLLI2SQ: specifies the division factor for SAI1 clock + * This parameter must be a number between 2 and 15. + * + * @param PLLI2SR: specifies the division factor for I2S clock + * This parameter must be a number between 2 and 7. + * @note You have to set the PLLI2SR parameter correctly to not exceed 192 MHz + * on the I2S clock frequency. + * @note the PLLI2SR parameter is only available with STM32F42xxx/43xxx devices. + * + * @retval None + */ +void RCC_PLLI2SConfig(uint32_t PLLI2SN, uint32_t PLLI2SQ, uint32_t PLLI2SR) +{ + /* Check the parameters */ + assert_param(IS_RCC_PLLI2SN_VALUE(PLLI2SN)); + assert_param(IS_RCC_PLLI2SQ_VALUE(PLLI2SQ)); + assert_param(IS_RCC_PLLI2SR_VALUE(PLLI2SR)); + + RCC->PLLI2SCFGR = (PLLI2SN << 6) | (PLLI2SQ << 24) | (PLLI2SR << 28); +} +#else +#endif /* STM32F40_41xxx || STM32F401xx */ + /** * @brief Enables or disables the PLLI2S. * @note The PLLI2S is disabled by hardware when entering STOP and STANDBY modes. @@ -510,6 +610,53 @@ void RCC_PLLI2SCmd(FunctionalState NewState) *(__IO uint32_t *) CR_PLLI2SON_BB = (uint32_t)NewState; } +/** + * @brief Configures the PLLSAI clock multiplication and division factors. + * + * @note This function can be used only for STM32F42xxx/43xxx devices + * + * @note This function must be used only when the PLLSAI is disabled. + * @note PLLSAI clock source is common with the main PLL (configured in + * RCC_PLLConfig function ) + * + * @param PLLSAIN: specifies the multiplication factor for PLLSAI VCO output clock + * This parameter must be a number between 192 and 432. + * @note You have to set the PLLSAIN parameter correctly to ensure that the VCO + * output frequency is between 192 and 432 MHz. + * + * @param PLLSAIQ: specifies the division factor for SAI1 clock + * This parameter must be a number between 2 and 15. + * + * @param PLLSAIR: specifies the division factor for LTDC clock + * This parameter must be a number between 2 and 7. + * + * @retval None + */ +void RCC_PLLSAIConfig(uint32_t PLLSAIN, uint32_t PLLSAIQ, uint32_t PLLSAIR) +{ + /* Check the parameters */ + assert_param(IS_RCC_PLLSAIN_VALUE(PLLSAIN)); + assert_param(IS_RCC_PLLSAIR_VALUE(PLLSAIR)); + + RCC->PLLSAICFGR = (PLLSAIN << 6) | (PLLSAIQ << 24) | (PLLSAIR << 28); +} + +/** + * @brief Enables or disables the PLLSAI. + * + * @note This function can be used only for STM32F42xxx/43xxx devices + * + * @note The PLLSAI is disabled by hardware when entering STOP and STANDBY modes. + * @param NewState: new state of the PLLSAI. This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void RCC_PLLSAICmd(FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + *(__IO uint32_t *) CR_PLLSAION_BB = (uint32_t)NewState; +} + /** * @brief Enables or disables the Clock Security System. * @note If a failure is detected on the HSE oscillator clock, this oscillator @@ -613,59 +760,148 @@ void RCC_MCO2Config(uint32_t RCC_MCO2Source, uint32_t RCC_MCO2Div) * @verbatim =============================================================================== - System, AHB and APB busses clocks configuration functions + ##### System, AHB and APB busses clocks configuration functions ##### =============================================================================== - - This section provide functions allowing to configure the System, AHB, APB1 and - APB2 busses clocks. + [..] + This section provide functions allowing to configure the System, AHB, APB1 and + APB2 busses clocks. - 1. Several clock sources can be used to drive the System clock (SYSCLK): HSI, - HSE and PLL. - The AHB clock (HCLK) is derived from System clock through configurable prescaler - and used to clock the CPU, memory and peripherals mapped on AHB bus (DMA, GPIO...). - APB1 (PCLK1) and APB2 (PCLK2) clocks are derived from AHB clock through - configurable prescalers and used to clock the peripherals mapped on these busses. - You can use "RCC_GetClocksFreq()" function to retrieve the frequencies of these clocks. - -@note All the peripheral clocks are derived from the System clock (SYSCLK) except: - - I2S: the I2S clock can be derived either from a specific PLL (PLLI2S) or - from an external clock mapped on the I2S_CKIN pin. - You have to use RCC_I2SCLKConfig() function to configure this clock. - - RTC: the RTC clock can be derived either from the LSI, LSE or HSE clock - divided by 2 to 31. You have to use RCC_RTCCLKConfig() and RCC_RTCCLKCmd() - functions to configure this clock. - - USB OTG FS, SDIO and RTC: USB OTG FS require a frequency equal to 48 MHz - to work correctly, while the SDIO require a frequency equal or lower than - to 48. This clock is derived of the main PLL through PLLQ divider. - - IWDG clock which is always the LSI clock. + (#) Several clock sources can be used to drive the System clock (SYSCLK): HSI, + HSE and PLL. + The AHB clock (HCLK) is derived from System clock through configurable + prescaler and used to clock the CPU, memory and peripherals mapped + on AHB bus (DMA, GPIO...). APB1 (PCLK1) and APB2 (PCLK2) clocks are derived + from AHB clock through configurable prescalers and used to clock + the peripherals mapped on these busses. You can use + "RCC_GetClocksFreq()" function to retrieve the frequencies of these clocks. + + -@- All the peripheral clocks are derived from the System clock (SYSCLK) except: + (+@) I2S: the I2S clock can be derived either from a specific PLL (PLLI2S) or + from an external clock mapped on the I2S_CKIN pin. + You have to use RCC_I2SCLKConfig() function to configure this clock. + (+@) RTC: the RTC clock can be derived either from the LSI, LSE or HSE clock + divided by 2 to 31. You have to use RCC_RTCCLKConfig() and RCC_RTCCLKCmd() + functions to configure this clock. + (+@) USB OTG FS, SDIO and RTC: USB OTG FS require a frequency equal to 48 MHz + to work correctly, while the SDIO require a frequency equal or lower than + to 48. This clock is derived of the main PLL through PLLQ divider. + (+@) IWDG clock which is always the LSI clock. - 2. The maximum frequency of the SYSCLK and HCLK is 168 MHz, PCLK2 82 MHz and PCLK1 42 MHz. - Depending on the device voltage range, the maximum frequency should be - adapted accordingly: + (#) For STM32F405xx/407xx and STM32F415xx/417xx devices, the maximum frequency + of the SYSCLK and HCLK is 168 MHz, PCLK2 84 MHz and PCLK1 42 MHz. Depending + on the device voltage range, the maximum frequency should be adapted accordingly: +-------------------------------------------------------------------------------------+ | Latency | HCLK clock frequency (MHz) | | |---------------------------------------------------------------------| | | voltage range | voltage range | voltage range | voltage range | | | 2.7 V - 3.6 V | 2.4 V - 2.7 V | 2.1 V - 2.4 V | 1.8 V - 2.1 V | |---------------|----------------|----------------|-----------------|-----------------| - |0WS(1CPU cycle)|0 < HCLK <= 30 |0 < HCLK <= 24 |0 < HCLK <= 18 |0 < HCLK <= 16 | + |0WS(1CPU cycle)|0 < HCLK <= 30 |0 < HCLK <= 24 |0 < HCLK <= 22 |0 < HCLK <= 20 | + |---------------|----------------|----------------|-----------------|-----------------| + |1WS(2CPU cycle)|30 < HCLK <= 60 |24 < HCLK <= 48 |22 < HCLK <= 44 |20 < HCLK <= 40 | + |---------------|----------------|----------------|-----------------|-----------------| + |2WS(3CPU cycle)|60 < HCLK <= 90 |48 < HCLK <= 72 |44 < HCLK <= 66 |40 < HCLK <= 60 | + |---------------|----------------|----------------|-----------------|-----------------| + |3WS(4CPU cycle)|90 < HCLK <= 120|72 < HCLK <= 96 |66 < HCLK <= 88 |60 < HCLK <= 80 | + |---------------|----------------|----------------|-----------------|-----------------| + |4WS(5CPU cycle)|120< HCLK <= 150|96 < HCLK <= 120|88 < HCLK <= 110 |80 < HCLK <= 100 | + |---------------|----------------|----------------|-----------------|-----------------| + |5WS(6CPU cycle)|150< HCLK <= 168|120< HCLK <= 144|110 < HCLK <= 132|100 < HCLK <= 120| + |---------------|----------------|----------------|-----------------|-----------------| + |6WS(7CPU cycle)| NA |144< HCLK <= 168|132 < HCLK <= 154|120 < HCLK <= 140| + |---------------|----------------|----------------|-----------------|-----------------| + |7WS(8CPU cycle)| NA | NA |154 < HCLK <= 168|140 < HCLK <= 160| + +---------------|----------------|----------------|-----------------|-----------------+ + (#) For STM32F42xxx/43xxx devices, the maximum frequency of the SYSCLK and HCLK is 180 MHz, + PCLK2 90 MHz and PCLK1 45 MHz. Depending on the device voltage range, the maximum + frequency should be adapted accordingly: + +-------------------------------------------------------------------------------------+ + | Latency | HCLK clock frequency (MHz) | + | |---------------------------------------------------------------------| + | | voltage range | voltage range | voltage range | voltage range | + | | 2.7 V - 3.6 V | 2.4 V - 2.7 V | 2.1 V - 2.4 V | 1.8 V - 2.1 V | + |---------------|----------------|----------------|-----------------|-----------------| + |0WS(1CPU cycle)|0 < HCLK <= 30 |0 < HCLK <= 24 |0 < HCLK <= 22 |0 < HCLK <= 20 | |---------------|----------------|----------------|-----------------|-----------------| - |1WS(2CPU cycle)|30 < HCLK <= 60 |24 < HCLK <= 48 |18 < HCLK <= 36 |16 < HCLK <= 32 | + |1WS(2CPU cycle)|30 < HCLK <= 60 |24 < HCLK <= 48 |22 < HCLK <= 44 |20 < HCLK <= 40 | |---------------|----------------|----------------|-----------------|-----------------| - |2WS(3CPU cycle)|60 < HCLK <= 90 |48 < HCLK <= 72 |36 < HCLK <= 54 |32 < HCLK <= 48 | + |2WS(3CPU cycle)|60 < HCLK <= 90 |48 < HCLK <= 72 |44 < HCLK <= 66 |40 < HCLK <= 60 | |---------------|----------------|----------------|-----------------|-----------------| - |3WS(4CPU cycle)|90 < HCLK <= 120|72 < HCLK <= 96 |54 < HCLK <= 72 |48 < HCLK <= 64 | + |3WS(4CPU cycle)|90 < HCLK <= 120|72 < HCLK <= 96 |66 < HCLK <= 88 |60 < HCLK <= 80 | |---------------|----------------|----------------|-----------------|-----------------| - |4WS(5CPU cycle)|120< HCLK <= 150|96 < HCLK <= 120|72 < HCLK <= 90 |64 < HCLK <= 80 | + |4WS(5CPU cycle)|120< HCLK <= 150|96 < HCLK <= 120|88 < HCLK <= 110 |80 < HCLK <= 100 | |---------------|----------------|----------------|-----------------|-----------------| - |5WS(6CPU cycle)|120< HCLK <= 168|120< HCLK <= 144|90 < HCLK <= 108 |80 < HCLK <= 96 | + |5WS(6CPU cycle)|120< HCLK <= 180|120< HCLK <= 144|110 < HCLK <= 132|100 < HCLK <= 120| |---------------|----------------|----------------|-----------------|-----------------| - |6WS(7CPU cycle)| NA |144< HCLK <= 168|108 < HCLK <= 120|96 < HCLK <= 112 | + |6WS(7CPU cycle)| NA |144< HCLK <= 168|132 < HCLK <= 154|120 < HCLK <= 140| |---------------|----------------|----------------|-----------------|-----------------| - |7WS(8CPU cycle)| NA | NA |120 < HCLK <= 138|112 < HCLK <= 120| - +-------------------------------------------------------------------------------------+ - @note When VOS bit (in PWR_CR register) is reset to '0’, the maximum value of HCLK is 144 MHz. - You can use PWR_MainRegulatorModeConfig() function to set or reset this bit. + |7WS(8CPU cycle)| NA |168< HCLK <= 180|154 < HCLK <= 176|140 < HCLK <= 160| + |---------------|----------------|----------------|-----------------|-----------------| + |8WS(9CPU cycle)| NA | NA |176 < HCLK <= 180|160 < HCLK <= 168| + +-------------------------------------------------------------------------------------+ + + (#) For STM32F401xx devices, the maximum frequency of the SYSCLK and HCLK is 84 MHz, + PCLK2 84 MHz and PCLK1 42 MHz. Depending on the device voltage range, the maximum + frequency should be adapted accordingly: + +-------------------------------------------------------------------------------------+ + | Latency | HCLK clock frequency (MHz) | + | |---------------------------------------------------------------------| + | | voltage range | voltage range | voltage range | voltage range | + | | 2.7 V - 3.6 V | 2.4 V - 2.7 V | 2.1 V - 2.4 V | 1.8 V - 2.1 V | + |---------------|----------------|----------------|-----------------|-----------------| + |0WS(1CPU cycle)|0 < HCLK <= 30 |0 < HCLK <= 24 |0 < HCLK <= 22 |0 < HCLK <= 20 | + |---------------|----------------|----------------|-----------------|-----------------| + |1WS(2CPU cycle)|30 < HCLK <= 60 |24 < HCLK <= 48 |22 < HCLK <= 44 |20 < HCLK <= 40 | + |---------------|----------------|----------------|-----------------|-----------------| + |2WS(3CPU cycle)|60 < HCLK <= 84 |48 < HCLK <= 72 |44 < HCLK <= 66 |40 < HCLK <= 60 | + |---------------|----------------|----------------|-----------------|-----------------| + |3WS(4CPU cycle)| NA |72 < HCLK <= 84 |66 < HCLK <= 84 |60 < HCLK <= 80 | + |---------------|----------------|----------------|-----------------|-----------------| + |4WS(5CPU cycle)| NA | NA | NA |80 < HCLK <= 84 | + +-------------------------------------------------------------------------------------+ + + (#) For STM32F411xE devices, the maximum frequency of the SYSCLK and HCLK is 100 MHz, + PCLK2 100 MHz and PCLK1 50 MHz. Depending on the device voltage range, the maximum + frequency should be adapted accordingly: + +-------------------------------------------------------------------------------------+ + | Latency | HCLK clock frequency (MHz) | + | |---------------------------------------------------------------------| + | | voltage range | voltage range | voltage range | voltage range | + | | 2.7 V - 3.6 V | 2.4 V - 2.7 V | 2.1 V - 2.4 V | 1.8 V - 2.1 V | + |---------------|----------------|----------------|-----------------|-----------------| + |0WS(1CPU cycle)|0 < HCLK <= 30 |0 < HCLK <= 24 |0 < HCLK <= 18 |0 < HCLK <= 16 | + |---------------|----------------|----------------|-----------------|-----------------| + |1WS(2CPU cycle)|30 < HCLK <= 64 |24 < HCLK <= 48 |18 < HCLK <= 36 |16 < HCLK <= 32 | + |---------------|----------------|----------------|-----------------|-----------------| + |2WS(3CPU cycle)|64 < HCLK <= 90 |48 < HCLK <= 72 |36 < HCLK <= 54 |32 < HCLK <= 48 | + |---------------|----------------|----------------|-----------------|-----------------| + |3WS(4CPU cycle)|90 < HCLK <= 100|72 < HCLK <= 96 |54 < HCLK <= 72 |48 < HCLK <= 64 | + |---------------|----------------|----------------|-----------------|-----------------| + |4WS(5CPU cycle)| NA |96 < HCLK <= 100|72 < HCLK <= 90 |64 < HCLK <= 80 | + |---------------|----------------|----------------|-----------------|-----------------| + |5WS(6CPU cycle)| NA | NA |90 < HCLK <= 100 |80 < HCLK <= 96 | + |---------------|----------------|----------------|-----------------|-----------------| + |6WS(7CPU cycle)| NA | NA | NA |96 < HCLK <= 100 | + +-------------------------------------------------------------------------------------+ + + -@- On STM32F405xx/407xx and STM32F415xx/417xx devices: + (++) when VOS = '0', the maximum value of fHCLK = 144MHz. + (++) when VOS = '1', the maximum value of fHCLK = 168MHz. + [..] + On STM32F42xxx/43xxx devices: + (++) when VOS[1:0] = '0x01', the maximum value of fHCLK is 120MHz. + (++) when VOS[1:0] = '0x10', the maximum value of fHCLK is 144MHz. + (++) when VOS[1:0] = '0x11', the maximum value of f is 168MHz + [..] + On STM32F401x devices: + (++) when VOS[1:0] = '0x01', the maximum value of fHCLK is 64MHz. + (++) when VOS[1:0] = '0x10', the maximum value of fHCLK is 84MHz. + On STM32F411xE devices: + (++) when VOS[1:0] = '0x01' the maximum value of fHCLK is 64MHz. + (++) when VOS[1:0] = '0x10' the maximum value of fHCLK is 84MHz. + (++) when VOS[1:0] = '0x11' the maximum value of fHCLK is 100MHz. + + You can use PWR_MainRegulatorModeConfig() function to control VOS bits. @endverbatim * @{ @@ -932,26 +1168,26 @@ void RCC_GetClocksFreq(RCC_ClocksTypeDef* RCC_Clocks) * @verbatim =============================================================================== - Peripheral clocks configuration functions + ##### Peripheral clocks configuration functions ##### =============================================================================== - - This section provide functions allowing to configure the Peripheral clocks. + [..] This section provide functions allowing to configure the Peripheral clocks. - 1. The RTC clock which is derived from the LSI, LSE or HSE clock divided by 2 to 31. + (#) The RTC clock which is derived from the LSI, LSE or HSE clock divided + by 2 to 31. - 2. After restart from Reset or wakeup from STANDBY, all peripherals are off - except internal SRAM, Flash and JTAG. Before to start using a peripheral you - have to enable its interface clock. You can do this using RCC_AHBPeriphClockCmd() - , RCC_APB2PeriphClockCmd() and RCC_APB1PeriphClockCmd() functions. - - 3. To reset the peripherals configuration (to the default state after device reset) - you can use RCC_AHBPeriphResetCmd(), RCC_APB2PeriphResetCmd() and - RCC_APB1PeriphResetCmd() functions. + (#) After restart from Reset or wakeup from STANDBY, all peripherals are off + except internal SRAM, Flash and JTAG. Before to start using a peripheral + you have to enable its interface clock. You can do this using + RCC_AHBPeriphClockCmd(), RCC_APB2PeriphClockCmd() and RCC_APB1PeriphClockCmd() functions. + + (#) To reset the peripherals configuration (to the default state after device reset) + you can use RCC_AHBPeriphResetCmd(), RCC_APB2PeriphResetCmd() and + RCC_APB1PeriphResetCmd() functions. - 4. To further reduce power consumption in SLEEP mode the peripheral clocks can - be disabled prior to executing the WFI or WFE instructions. You can do this - using RCC_AHBPeriphClockLPModeCmd(), RCC_APB2PeriphClockLPModeCmd() and - RCC_APB1PeriphClockLPModeCmd() functions. + (#) To further reduce power consumption in SLEEP mode the peripheral clocks + can be disabled prior to executing the WFI or WFE instructions. + You can do this using RCC_AHBPeriphClockLPModeCmd(), + RCC_APB2PeriphClockLPModeCmd() and RCC_APB1PeriphClockLPModeCmd() functions. @endverbatim * @{ @@ -1057,6 +1293,202 @@ void RCC_I2SCLKConfig(uint32_t RCC_I2SCLKSource) *(__IO uint32_t *) CFGR_I2SSRC_BB = RCC_I2SCLKSource; } +/** + * @brief Configures the SAI clock Divider coming from PLLI2S. + * + * @note This function can be used only for STM32F42xxx/43xxx devices. + * + * @note This function must be called before enabling the PLLI2S. + * + * @param RCC_PLLI2SDivQ: specifies the PLLI2S division factor for SAI1 clock . + * This parameter must be a number between 1 and 32. + * SAI1 clock frequency = f(PLLI2S_Q) / RCC_PLLI2SDivQ + * + * @retval None + */ +void RCC_SAIPLLI2SClkDivConfig(uint32_t RCC_PLLI2SDivQ) +{ + uint32_t tmpreg = 0; + + /* Check the parameters */ + assert_param(IS_RCC_PLLI2S_DIVQ_VALUE(RCC_PLLI2SDivQ)); + + tmpreg = RCC->DCKCFGR; + + /* Clear PLLI2SDIVQ[4:0] bits */ + tmpreg &= ~(RCC_DCKCFGR_PLLI2SDIVQ); + + /* Set PLLI2SDIVQ values */ + tmpreg |= (RCC_PLLI2SDivQ - 1); + + /* Store the new value */ + RCC->DCKCFGR = tmpreg; +} + +/** + * @brief Configures the SAI clock Divider coming from PLLSAI. + * + * @note This function can be used only for STM32F42xxx/43xxx devices. + * + * @note This function must be called before enabling the PLLSAI. + * + * @param RCC_PLLSAIDivQ: specifies the PLLSAI division factor for SAI1 clock . + * This parameter must be a number between 1 and 32. + * SAI1 clock frequency = f(PLLSAI_Q) / RCC_PLLSAIDivQ + * + * @retval None + */ +void RCC_SAIPLLSAIClkDivConfig(uint32_t RCC_PLLSAIDivQ) +{ + uint32_t tmpreg = 0; + + /* Check the parameters */ + assert_param(IS_RCC_PLLSAI_DIVQ_VALUE(RCC_PLLSAIDivQ)); + + tmpreg = RCC->DCKCFGR; + + /* Clear PLLI2SDIVQ[4:0] and PLLSAIDIVQ[4:0] bits */ + tmpreg &= ~(RCC_DCKCFGR_PLLSAIDIVQ); + + /* Set PLLSAIDIVQ values */ + tmpreg |= ((RCC_PLLSAIDivQ - 1) << 8); + + /* Store the new value */ + RCC->DCKCFGR = tmpreg; +} + +/** + * @brief Configures SAI1BlockA clock source selection. + * + * @note This function can be used only for STM32F42xxx/43xxx devices. + * + * @note This function must be called before enabling PLLSAI, PLLI2S and + * the SAI clock. + * @param RCC_SAIBlockACLKSource: specifies the SAI Block A clock source. + * This parameter can be one of the following values: + * @arg RCC_SAIACLKSource_PLLI2S: PLLI2S_Q clock divided by PLLI2SDIVQ used + * as SAI1 Block A clock + * @arg RCC_SAIACLKSource_PLLSAI: PLLISAI_Q clock divided by PLLSAIDIVQ used + * as SAI1 Block A clock + * @arg RCC_SAIACLKSource_Ext: External clock mapped on the I2S_CKIN pin + * used as SAI1 Block A clock + * @retval None + */ +void RCC_SAIBlockACLKConfig(uint32_t RCC_SAIBlockACLKSource) +{ + uint32_t tmpreg = 0; + + /* Check the parameters */ + assert_param(IS_RCC_SAIACLK_SOURCE(RCC_SAIBlockACLKSource)); + + tmpreg = RCC->DCKCFGR; + + /* Clear RCC_DCKCFGR_SAI1ASRC[1:0] bits */ + tmpreg &= ~RCC_DCKCFGR_SAI1ASRC; + + /* Set SAI Block A source selection value */ + tmpreg |= RCC_SAIBlockACLKSource; + + /* Store the new value */ + RCC->DCKCFGR = tmpreg; +} + +/** + * @brief Configures SAI1BlockB clock source selection. + * + * @note This function can be used only for STM32F42xxx/43xxx devices. + * + * @note This function must be called before enabling PLLSAI, PLLI2S and + * the SAI clock. + * @param RCC_SAIBlockBCLKSource: specifies the SAI Block B clock source. + * This parameter can be one of the following values: + * @arg RCC_SAIBCLKSource_PLLI2S: PLLI2S_Q clock divided by PLLI2SDIVQ used + * as SAI1 Block B clock + * @arg RCC_SAIBCLKSource_PLLSAI: PLLISAI_Q clock divided by PLLSAIDIVQ used + * as SAI1 Block B clock + * @arg RCC_SAIBCLKSource_Ext: External clock mapped on the I2S_CKIN pin + * used as SAI1 Block B clock + * @retval None + */ +void RCC_SAIBlockBCLKConfig(uint32_t RCC_SAIBlockBCLKSource) +{ + uint32_t tmpreg = 0; + + /* Check the parameters */ + assert_param(IS_RCC_SAIBCLK_SOURCE(RCC_SAIBlockBCLKSource)); + + tmpreg = RCC->DCKCFGR; + + /* Clear RCC_DCKCFGR_SAI1BSRC[1:0] bits */ + tmpreg &= ~RCC_DCKCFGR_SAI1BSRC; + + /* Set SAI Block B source selection value */ + tmpreg |= RCC_SAIBlockBCLKSource; + + /* Store the new value */ + RCC->DCKCFGR = tmpreg; +} + + +/** + * @brief Configures the LTDC clock Divider coming from PLLSAI. + * + * @note The LTDC peripheral is only available with STM32F429xx/439xx Devices. + * + * @note This function must be called before enabling the PLLSAI. + * + * @param RCC_PLLSAIDivR: specifies the PLLSAI division factor for LTDC clock . + * This parameter must be a number between 2 and 16. + * LTDC clock frequency = f(PLLSAI_R) / RCC_PLLSAIDivR + * + * @retval None + */ +void RCC_LTDCCLKDivConfig(uint32_t RCC_PLLSAIDivR) +{ + uint32_t tmpreg = 0; + + /* Check the parameters */ + assert_param(IS_RCC_PLLSAI_DIVR_VALUE(RCC_PLLSAIDivR)); + + tmpreg = RCC->DCKCFGR; + + /* Clear PLLSAIDIVR[2:0] bits */ + tmpreg &= ~RCC_DCKCFGR_PLLSAIDIVR; + + /* Set PLLSAIDIVR values */ + tmpreg |= RCC_PLLSAIDivR; + + /* Store the new value */ + RCC->DCKCFGR = tmpreg; +} + +/** + * @brief Configures the Timers clocks prescalers selection. + * + * @note This function can be used only for STM32F42xxx/43xxx and STM32F401xx/411xE devices. + * + * @param RCC_TIMCLKPrescaler : specifies the Timers clocks prescalers selection + * This parameter can be one of the following values: + * @arg RCC_TIMPrescDesactivated: The Timers kernels clocks prescaler is + * equal to HPRE if PPREx is corresponding to division by 1 or 2, + * else it is equal to [(HPRE * PPREx) / 2] if PPREx is corresponding to + * division by 4 or more. + * + * @arg RCC_TIMPrescActivated: The Timers kernels clocks prescaler is + * equal to HPRE if PPREx is corresponding to division by 1, 2 or 4, + * else it is equal to [(HPRE * PPREx) / 4] if PPREx is corresponding + * to division by 8 or more. + * @retval None + */ +void RCC_TIMCLKPresConfig(uint32_t RCC_TIMCLKPrescaler) +{ + /* Check the parameters */ + assert_param(IS_RCC_TIMCLK_PRESCALER(RCC_TIMCLKPrescaler)); + + *(__IO uint32_t *) DCKCFGR_TIMPRE_BB = RCC_TIMCLKPrescaler; + +} + /** * @brief Enables or disables the AHB1 peripheral clock. * @note After reset, the peripheral clock (used for registers read/write access) @@ -1073,11 +1505,14 @@ void RCC_I2SCLKConfig(uint32_t RCC_I2SCLKSource) * @arg RCC_AHB1Periph_GPIOG: GPIOG clock * @arg RCC_AHB1Periph_GPIOG: GPIOG clock * @arg RCC_AHB1Periph_GPIOI: GPIOI clock + * @arg RCC_AHB1Periph_GPIOJ: GPIOJ clock (STM32F42xxx/43xxx devices) + * @arg RCC_AHB1Periph_GPIOK: GPIOK clock (STM32F42xxx/43xxx devices) * @arg RCC_AHB1Periph_CRC: CRC clock * @arg RCC_AHB1Periph_BKPSRAM: BKPSRAM interface clock * @arg RCC_AHB1Periph_CCMDATARAMEN CCM data RAM interface clock * @arg RCC_AHB1Periph_DMA1: DMA1 clock * @arg RCC_AHB1Periph_DMA2: DMA2 clock + * @arg RCC_AHB1Periph_DMA2D: DMA2D clock (STM32F429xx/439xx devices) * @arg RCC_AHB1Periph_ETH_MAC: Ethernet MAC clock * @arg RCC_AHB1Periph_ETH_MAC_Tx: Ethernet Transmission clock * @arg RCC_AHB1Periph_ETH_MAC_Rx: Ethernet Reception clock @@ -1143,6 +1578,7 @@ void RCC_AHB2PeriphClockCmd(uint32_t RCC_AHB2Periph, FunctionalState NewState) * using it. * @param RCC_AHBPeriph: specifies the AHB3 peripheral to gates its clock. * This parameter must be: RCC_AHB3Periph_FSMC + * or RCC_AHB3Periph_FMC (STM32F42xxx/43xxx devices) * @param NewState: new state of the specified peripheral clock. * This parameter can be: ENABLE or DISABLE. * @retval None @@ -1193,6 +1629,8 @@ void RCC_AHB3PeriphClockCmd(uint32_t RCC_AHB3Periph, FunctionalState NewState) * @arg RCC_APB1Periph_CAN2: CAN2 clock * @arg RCC_APB1Periph_PWR: PWR clock * @arg RCC_APB1Periph_DAC: DAC clock + * @arg RCC_APB1Periph_UART7: UART7 clock + * @arg RCC_APB1Periph_UART8: UART8 clock * @param NewState: new state of the specified peripheral clock. * This parameter can be: ENABLE or DISABLE. * @retval None @@ -1229,10 +1667,15 @@ void RCC_APB1PeriphClockCmd(uint32_t RCC_APB1Periph, FunctionalState NewState) * @arg RCC_APB2Periph_ADC3: ADC3 clock * @arg RCC_APB2Periph_SDIO: SDIO clock * @arg RCC_APB2Periph_SPI1: SPI1 clock + * @arg RCC_APB2Periph_SPI4: SPI4 clock * @arg RCC_APB2Periph_SYSCFG: SYSCFG clock * @arg RCC_APB2Periph_TIM9: TIM9 clock * @arg RCC_APB2Periph_TIM10: TIM10 clock * @arg RCC_APB2Periph_TIM11: TIM11 clock + * @arg RCC_APB2Periph_SPI5: SPI5 clock + * @arg RCC_APB2Periph_SPI6: SPI6 clock + * @arg RCC_APB2Periph_SAI1: SAI1 clock (STM32F42xxx/43xxx devices) + * @arg RCC_APB2Periph_LTDC: LTDC clock (STM32F429xx/439xx devices) * @param NewState: new state of the specified peripheral clock. * This parameter can be: ENABLE or DISABLE. * @retval None @@ -1266,9 +1709,12 @@ void RCC_APB2PeriphClockCmd(uint32_t RCC_APB2Periph, FunctionalState NewState) * @arg RCC_AHB1Periph_GPIOG: GPIOG clock * @arg RCC_AHB1Periph_GPIOG: GPIOG clock * @arg RCC_AHB1Periph_GPIOI: GPIOI clock + * @arg RCC_AHB1Periph_GPIOJ: GPIOJ clock (STM32F42xxx/43xxx devices) + * @arg RCC_AHB1Periph_GPIOK: GPIOK clock (STM32F42xxx/43xxxdevices) * @arg RCC_AHB1Periph_CRC: CRC clock * @arg RCC_AHB1Periph_DMA1: DMA1 clock * @arg RCC_AHB1Periph_DMA2: DMA2 clock + * @arg RCC_AHB1Periph_DMA2D: DMA2D clock (STM32F429xx/439xx devices) * @arg RCC_AHB1Periph_ETH_MAC: Ethernet MAC clock * @arg RCC_AHB1Periph_OTG_HS: USB OTG HS clock * @@ -1325,6 +1771,7 @@ void RCC_AHB2PeriphResetCmd(uint32_t RCC_AHB2Periph, FunctionalState NewState) * @brief Forces or releases AHB3 peripheral reset. * @param RCC_AHB3Periph: specifies the AHB3 peripheral to reset. * This parameter must be: RCC_AHB3Periph_FSMC + * or RCC_AHB3Periph_FMC (STM32F42xxx/43xxx devices) * @param NewState: new state of the specified peripheral reset. * This parameter can be: ENABLE or DISABLE. * @retval None @@ -1372,6 +1819,8 @@ void RCC_AHB3PeriphResetCmd(uint32_t RCC_AHB3Periph, FunctionalState NewState) * @arg RCC_APB1Periph_CAN2: CAN2 clock * @arg RCC_APB1Periph_PWR: PWR clock * @arg RCC_APB1Periph_DAC: DAC clock + * @arg RCC_APB1Periph_UART7: UART7 clock + * @arg RCC_APB1Periph_UART8: UART8 clock * @param NewState: new state of the specified peripheral reset. * This parameter can be: ENABLE or DISABLE. * @retval None @@ -1404,10 +1853,15 @@ void RCC_APB1PeriphResetCmd(uint32_t RCC_APB1Periph, FunctionalState NewState) * @arg RCC_APB2Periph_ADC3: ADC3 clock * @arg RCC_APB2Periph_SDIO: SDIO clock * @arg RCC_APB2Periph_SPI1: SPI1 clock + * @arg RCC_APB2Periph_SPI4: SPI4 clock * @arg RCC_APB2Periph_SYSCFG: SYSCFG clock * @arg RCC_APB2Periph_TIM9: TIM9 clock * @arg RCC_APB2Periph_TIM10: TIM10 clock * @arg RCC_APB2Periph_TIM11: TIM11 clock + * @arg RCC_APB2Periph_SPI5: SPI5 clock + * @arg RCC_APB2Periph_SPI6: SPI6 clock + * @arg RCC_APB2Periph_SAI1: SAI1 clock (STM32F42xxx/43xxx devices) + * @arg RCC_APB2Periph_LTDC: LTDC clock (STM32F429xx/439xx devices) * @param NewState: new state of the specified peripheral reset. * This parameter can be: ENABLE or DISABLE. * @retval None @@ -1444,10 +1898,13 @@ void RCC_APB2PeriphResetCmd(uint32_t RCC_APB2Periph, FunctionalState NewState) * @arg RCC_AHB1Periph_GPIOG: GPIOG clock * @arg RCC_AHB1Periph_GPIOG: GPIOG clock * @arg RCC_AHB1Periph_GPIOI: GPIOI clock + * @arg RCC_AHB1Periph_GPIOJ: GPIOJ clock (STM32F42xxx/43xxx devices) + * @arg RCC_AHB1Periph_GPIOK: GPIOK clock (STM32F42xxx/43xxx devices) * @arg RCC_AHB1Periph_CRC: CRC clock * @arg RCC_AHB1Periph_BKPSRAM: BKPSRAM interface clock * @arg RCC_AHB1Periph_DMA1: DMA1 clock * @arg RCC_AHB1Periph_DMA2: DMA2 clock + * @arg RCC_AHB1Periph_DMA2D: DMA2D clock (STM32F429xx/439xx devices) * @arg RCC_AHB1Periph_ETH_MAC: Ethernet MAC clock * @arg RCC_AHB1Periph_ETH_MAC_Tx: Ethernet Transmission clock * @arg RCC_AHB1Periph_ETH_MAC_Rx: Ethernet Reception clock @@ -1513,6 +1970,7 @@ void RCC_AHB2PeriphClockLPModeCmd(uint32_t RCC_AHB2Periph, FunctionalState NewSt * @note By default, all peripheral clocks are enabled during SLEEP mode. * @param RCC_AHBPeriph: specifies the AHB3 peripheral to gates its clock. * This parameter must be: RCC_AHB3Periph_FSMC + * or RCC_AHB3Periph_FMC (STM32F429x/439x devices) * @param NewState: new state of the specified peripheral clock. * This parameter can be: ENABLE or DISABLE. * @retval None @@ -1563,6 +2021,8 @@ void RCC_AHB3PeriphClockLPModeCmd(uint32_t RCC_AHB3Periph, FunctionalState NewSt * @arg RCC_APB1Periph_CAN2: CAN2 clock * @arg RCC_APB1Periph_PWR: PWR clock * @arg RCC_APB1Periph_DAC: DAC clock + * @arg RCC_APB1Periph_UART7: UART7 clock + * @arg RCC_APB1Periph_UART8: UART8 clock * @param NewState: new state of the specified peripheral clock. * This parameter can be: ENABLE or DISABLE. * @retval None @@ -1599,10 +2059,15 @@ void RCC_APB1PeriphClockLPModeCmd(uint32_t RCC_APB1Periph, FunctionalState NewSt * @arg RCC_APB2Periph_ADC3: ADC3 clock * @arg RCC_APB2Periph_SDIO: SDIO clock * @arg RCC_APB2Periph_SPI1: SPI1 clock + * @arg RCC_APB2Periph_SPI4: SPI4 clock * @arg RCC_APB2Periph_SYSCFG: SYSCFG clock * @arg RCC_APB2Periph_TIM9: TIM9 clock * @arg RCC_APB2Periph_TIM10: TIM10 clock * @arg RCC_APB2Periph_TIM11: TIM11 clock + * @arg RCC_APB2Periph_SPI5: SPI5 clock + * @arg RCC_APB2Periph_SPI6: SPI6 clock + * @arg RCC_APB2Periph_SAI1: SAI1 clock (STM32F42xxx/43xxx devices) + * @arg RCC_APB2Periph_LTDC: LTDC clock (STM32F429xx/439xx devices) * @param NewState: new state of the specified peripheral clock. * This parameter can be: ENABLE or DISABLE. * @retval None @@ -1622,6 +2087,30 @@ void RCC_APB2PeriphClockLPModeCmd(uint32_t RCC_APB2Periph, FunctionalState NewSt } } +/** + * @brief Configures the External Low Speed oscillator mode (LSE mode). + * @note This mode is only available for STM32F411xx devices. + * @param Mode: specifies the LSE mode. + * This parameter can be one of the following values: + * @arg RCC_LSE_LOWPOWER_MODE: LSE oscillator in low power mode. + * @arg RCC_LSE_HIGHDRIVE_MODE: LSE oscillator in High Drive mode. + * @retval None + */ +void RCC_LSEModeConfig(uint8_t Mode) +{ + /* Check the parameters */ + assert_param(IS_RCC_LSE_MODE(Mode)); + + if(Mode == RCC_LSE_HIGHDRIVE_MODE) + { + SET_BIT(RCC->BDCR, RCC_BDCR_LSEMOD); + } + else + { + CLEAR_BIT(RCC->BDCR, RCC_BDCR_LSEMOD); + } +} + /** * @} */ @@ -1631,7 +2120,7 @@ void RCC_APB2PeriphClockLPModeCmd(uint32_t RCC_APB2Periph, FunctionalState NewSt * @verbatim =============================================================================== - Interrupts and flags management functions + ##### Interrupts and flags management functions ##### =============================================================================== @endverbatim @@ -1647,7 +2136,8 @@ void RCC_APB2PeriphClockLPModeCmd(uint32_t RCC_APB2Periph, FunctionalState NewSt * @arg RCC_IT_HSIRDY: HSI ready interrupt * @arg RCC_IT_HSERDY: HSE ready interrupt * @arg RCC_IT_PLLRDY: main PLL ready interrupt - * @arg RCC_IT_PLLI2SRDY: PLLI2S ready interrupt + * @arg RCC_IT_PLLI2SRDY: PLLI2S ready interrupt + * @arg RCC_IT_PLLSAIRDY: PLLSAI ready interrupt (only for STM32F42xxx/43xxx devices) * @param NewState: new state of the specified RCC interrupts. * This parameter can be: ENABLE or DISABLE. * @retval None @@ -1677,6 +2167,7 @@ void RCC_ITConfig(uint8_t RCC_IT, FunctionalState NewState) * @arg RCC_FLAG_HSERDY: HSE oscillator clock ready * @arg RCC_FLAG_PLLRDY: main PLL clock ready * @arg RCC_FLAG_PLLI2SRDY: PLLI2S clock ready + * @arg RCC_FLAG_PLLSAIRDY: PLLSAI clock ready (only for STM32F42xxx/43xxx devices) * @arg RCC_FLAG_LSERDY: LSE oscillator clock ready * @arg RCC_FLAG_LSIRDY: LSI oscillator clock ready * @arg RCC_FLAG_BORRST: POR/PDR or BOR reset @@ -1748,7 +2239,8 @@ void RCC_ClearFlag(void) * @arg RCC_IT_HSIRDY: HSI ready interrupt * @arg RCC_IT_HSERDY: HSE ready interrupt * @arg RCC_IT_PLLRDY: main PLL ready interrupt - * @arg RCC_IT_PLLI2SRDY: PLLI2S ready interrupt + * @arg RCC_IT_PLLI2SRDY: PLLI2S ready interrupt + * @arg RCC_IT_PLLSAIRDY: PLLSAI clock ready interrupt (only for STM32F42xxx/43xxx devices) * @arg RCC_IT_CSS: Clock Security System interrupt * @retval The new state of RCC_IT (SET or RESET). */ @@ -1782,6 +2274,7 @@ ITStatus RCC_GetITStatus(uint8_t RCC_IT) * @arg RCC_IT_HSERDY: HSE ready interrupt * @arg RCC_IT_PLLRDY: main PLL ready interrupt * @arg RCC_IT_PLLI2SRDY: PLLI2S ready interrupt + * @arg RCC_IT_PLLSAIRDY: PLLSAI ready interrupt (only for STM32F42xxx/43xxx devices) * @arg RCC_IT_CSS: Clock Security System interrupt * @retval None */ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rng.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rng.c index b6580637..ed851c71 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rng.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rng.c @@ -2,41 +2,40 @@ ****************************************************************************** * @file stm32f4xx_rng.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 - * @brief This file provides firmware functions to manage the following + * @version V1.4.0 + * @date 04-August-2014 + * @brief This file provides firmware functions to manage the following * functionalities of the Random Number Generator (RNG) peripheral: - * - Initialization and Configuration - * - Get 32 bit Random number - * - Interrupts and flags management + * + Initialization and Configuration + * + Get 32 bit Random number + * + Interrupts and flags management * - * @verbatim - * - * =================================================================== - * How to use this driver - * =================================================================== - * 1. Enable The RNG controller clock using - * RCC_AHB2PeriphClockCmd(RCC_AHB2Periph_RNG, ENABLE) function. - * - * 2. Activate the RNG peripheral using RNG_Cmd() function. - * - * 3. Wait until the 32 bit Random number Generator contains a valid - * random data (using polling/interrupt mode). For more details, - * refer to "Interrupts and flags management functions" module - * description. - * - * 4. Get the 32 bit Random number using RNG_GetRandomNumber() function - * - * 5. To get another 32 bit Random number, go to step 3. - * - * - * - * @endverbatim +@verbatim + + =================================================================== + ##### How to use this driver ##### + =================================================================== + [..] + (#) Enable The RNG controller clock using + RCC_AHB2PeriphClockCmd(RCC_AHB2Periph_RNG, ENABLE) function. + + (#) Activate the RNG peripheral using RNG_Cmd() function. + + (#) Wait until the 32 bit Random number Generator contains a valid random data + (using polling/interrupt mode). For more details, refer to "Interrupts and + flags management functions" module description. + + (#) Get the 32 bit Random number using RNG_GetRandomNumber() function + + (#) To get another 32 bit Random number, go to step 3. + + +@endverbatim * ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -50,7 +49,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - ****************************************************************************** + ****************************************************************************** */ /* Includes ------------------------------------------------------------------*/ @@ -82,18 +81,18 @@ * @verbatim =============================================================================== - Initialization and Configuration functions + ##### Initialization and Configuration functions ##### =============================================================================== - This section provides functions allowing to - - Initialize the RNG peripheral - - Enable or disable the RNG peripheral + [..] This section provides functions allowing to + (+) Initialize the RNG peripheral + (+) Enable or disable the RNG peripheral @endverbatim * @{ */ /** - * @brief Deinitializes the RNG peripheral registers to their default reset values. + * @brief De-initializes the RNG peripheral registers to their default reset values. * @param None * @retval None */ @@ -138,12 +137,12 @@ void RNG_Cmd(FunctionalState NewState) @verbatim =============================================================================== - Get 32 bit Random number function + ##### Get 32 bit Random number function ##### =============================================================================== - This section provides a function allowing to get the 32 bit Random number + [..] This section provides a function allowing to get the 32 bit Random number - @note Before to call this function you have to wait till DRDY flag is set, - using RNG_GetFlagStatus(RNG_FLAG_DRDY) function. + (@) Before to call this function you have to wait till DRDY flag is set, + using RNG_GetFlagStatus(RNG_FLAG_DRDY) function. @endverbatim * @{ @@ -190,69 +189,63 @@ uint32_t RNG_GetRandomNumber(void) * @verbatim =============================================================================== - Interrupts and flags management functions + ##### Interrupts and flags management functions ##### =============================================================================== - This section provides functions allowing to configure the RNG Interrupts and - to get the status and clear flags and Interrupts pending bits. + [..] This section provides functions allowing to configure the RNG Interrupts and + to get the status and clear flags and Interrupts pending bits. - The RNG provides 3 Interrupts sources and 3 Flags: + [..] The RNG provides 3 Interrupts sources and 3 Flags: - Flags : - ---------- - 1. RNG_FLAG_DRDY : In the case of the RNG_DR register contains valid - random data. it is cleared by reading the valid data - (using RNG_GetRandomNumber() function). - - 2. RNG_FLAG_CECS : In the case of a seed error detection. + *** Flags : *** + =============== + [..] + (#) RNG_FLAG_DRDY : In the case of the RNG_DR register contains valid + random data. it is cleared by reading the valid data(using + RNG_GetRandomNumber() function). + + (#) RNG_FLAG_CECS : In the case of a seed error detection. - 3. RNG_FLAG_SECS : In the case of a clock error detection. + (#) RNG_FLAG_SECS : In the case of a clock error detection. - - Interrupts : - ------------ - if enabled, an RNG interrupt is pending : + *** Interrupts *** + ================== + [..] If enabled, an RNG interrupt is pending : - 1. In the case of the RNG_DR register contains valid random data. + (#) In the case of the RNG_DR register contains valid random data. This interrupt source is cleared once the RNG_DR register has been read (using RNG_GetRandomNumber() function) until a new valid value is - computed. - - or - 2. In the case of a seed error : One of the following faulty sequences has - been detected: - - More than 64 consecutive bits at the same value (0 or 1) - - More than 32 consecutive alternance of 0 and 1 (0101010101...01) - This interrupt source is cleared using RNG_ClearITPendingBit(RNG_IT_SEI) - function. - - or - 3. In the case of a clock error : the PLL48CLK (RNG peripheral clock source) - was not correctly detected (fPLL48CLK< fHCLK/16). - This interrupt source is cleared using RNG_ClearITPendingBit(RNG_IT_CEI) - function. - @note In this case, User have to check that the clock controller is - correctly configured to provide the RNG clock. - - Managing the RNG controller events : - ------------------------------------ - The user should identify which mode will be used in his application to manage - the RNG controller events: Polling mode or Interrupt mode. + computed; or + (#) In the case of a seed error : One of the following faulty sequences has + been detected: + (++) More than 64 consecutive bits at the same value (0 or 1) + (++) More than 32 consecutive alternance of 0 and 1 (0101010101...01) + This interrupt source is cleared using RNG_ClearITPendingBit(RNG_IT_SEI) + function; or + (#) In the case of a clock error : the PLL48CLK (RNG peripheral clock source) + was not correctly detected (fPLL48CLK< fHCLK/16). This interrupt source is + cleared using RNG_ClearITPendingBit(RNG_IT_CEI) function. + -@- note In this case, User have to check that the clock controller is + correctly configured to provide the RNG clock. + + *** Managing the RNG controller events : *** + ============================================ + [..] The user should identify which mode will be used in his application to manage + the RNG controller events: Polling mode or Interrupt mode. - 1. In the Polling Mode it is advised to use the following functions: - - RNG_GetFlagStatus() : to check if flags events occur. - - RNG_ClearFlag() : to clear the flags events. + (#) In the Polling Mode it is advised to use the following functions: + (++) RNG_GetFlagStatus() : to check if flags events occur. + (++) RNG_ClearFlag() : to clear the flags events. - @note RNG_FLAG_DRDY can not be cleared by RNG_ClearFlag(). it is cleared only - by reading the Random number data. + -@@- RNG_FLAG_DRDY can not be cleared by RNG_ClearFlag(). it is cleared only + by reading the Random number data. - 2. In the Interrupt Mode it is advised to use the following functions: - - RNG_ITConfig() : to enable or disable the interrupt source. - - RNG_GetITStatus() : to check if Interrupt occurs. - - RNG_ClearITPendingBit() : to clear the Interrupt pending Bit - (corresponding Flag). + (#) In the Interrupt Mode it is advised to use the following functions: + (++) RNG_ITConfig() : to enable or disable the interrupt source. + (++) RNG_GetITStatus() : to check if Interrupt occurs. + (++) RNG_ClearITPendingBit() : to clear the Interrupt pending Bit + (corresponding Flag). - @endverbatim * @{ */ @@ -396,7 +389,6 @@ void RNG_ClearITPendingBit(uint8_t RNG_IT) * @} */ - /** * @} */ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rtc.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rtc.c index 138d1e86..4861ade1 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rtc.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_rtc.c @@ -2,267 +2,269 @@ ****************************************************************************** * @file stm32f4xx_rtc.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the Real-Time Clock (RTC) peripheral: - * - Initialization - * - Calendar (Time and Date) configuration - * - Alarms (Alarm A and Alarm B) configuration - * - WakeUp Timer configuration - * - Daylight Saving configuration - * - Output pin Configuration - * - Coarse digital Calibration configuration - * - Smooth digital Calibration configuration - * - TimeStamp configuration - * - Tampers configuration - * - Backup Data Registers configuration - * - Shift control synchronisation - * - RTC Tamper and TimeStamp Pins Selection and Output Type Config configuration - * - Interrupts and flags management - * - * @verbatim - * - * =================================================================== - * Backup Domain Operating Condition - * =================================================================== - * The real-time clock (RTC), the RTC backup registers, and the backup - * SRAM (BKP SRAM) can be powered from the VBAT voltage when the main - * VDD supply is powered off. - * To retain the content of the RTC backup registers, backup SRAM, - * and supply the RTC when VDD is turned off, VBAT pin can be connected - * to an optional standby voltage supplied by a battery or by another - * source. - * - * To allow the RTC to operate even when the main digital supply (VDD) - * is turned off, the VBAT pin powers the following blocks: - * 1 - The RTC - * 2 - The LSE oscillator - * 3 - The backup SRAM when the low power backup regulator is enabled - * 4 - PC13 to PC15 I/Os, plus PI8 I/O (when available) - * - * When the backup domain is supplied by VDD (analog switch connected - * to VDD), the following functions are available: - * 1 - PC14 and PC15 can be used as either GPIO or LSE pins - * 2 - PC13 can be used as a GPIO or as the RTC_AF1 pin - * 3 - PI8 can be used as a GPIO or as the RTC_AF2 pin - * - * When the backup domain is supplied by VBAT (analog switch connected - * to VBAT because VDD is not present), the following functions are available: - * 1 - PC14 and PC15 can be used as LSE pins only - * 2 - PC13 can be used as the RTC_AF1 pin - * 3 - PI8 can be used as the RTC_AF2 pin - * - * =================================================================== - * Backup Domain Reset - * =================================================================== - * The backup domain reset sets all RTC registers and the RCC_BDCR - * register to their reset values. The BKPSRAM is not affected by this - * reset. The only way of resetting the BKPSRAM is through the Flash - * interface by requesting a protection level change from 1 to 0. - * A backup domain reset is generated when one of the following events - * occurs: - * 1 - Software reset, triggered by setting the BDRST bit in the - * RCC Backup domain control register (RCC_BDCR). You can use the - * RCC_BackupResetCmd(). - * 2 - VDD or VBAT power on, if both supplies have previously been - * powered off. - * - * =================================================================== - * Backup Domain Access - * =================================================================== - * After reset, the backup domain (RTC registers, RTC backup data - * registers and backup SRAM) is protected against possible unwanted - * write accesses. - * To enable access to the RTC Domain and RTC registers, proceed as follows: - * - Enable the Power Controller (PWR) APB1 interface clock using the - * RCC_APB1PeriphClockCmd() function. - * - Enable access to RTC domain using the PWR_BackupAccessCmd() function. - * - Select the RTC clock source using the RCC_RTCCLKConfig() function. - * - Enable RTC Clock using the RCC_RTCCLKCmd() function. - * - * =================================================================== - * RTC Driver: how to use it - * =================================================================== - * - Enable the RTC domain access (see description in the section above) - * - Configure the RTC Prescaler (Asynchronous and Synchronous) and - * RTC hour format using the RTC_Init() function. - * - * Time and Date configuration - * =========================== - * - To configure the RTC Calendar (Time and Date) use the RTC_SetTime() - * and RTC_SetDate() functions. - * - To read the RTC Calendar, use the RTC_GetTime() and RTC_GetDate() - * functions. - * - Use the RTC_DayLightSavingConfig() function to add or sub one - * hour to the RTC Calendar. - * - * Alarm configuration - * =================== - * - To configure the RTC Alarm use the RTC_SetAlarm() function. - * - Enable the selected RTC Alarm using the RTC_AlarmCmd() function - * - To read the RTC Alarm, use the RTC_GetAlarm() function. - * - To read the RTC alarm SubSecond, use the RTC_GetAlarmSubSecond() function. - * - * RTC Wakeup configuration - * ======================== - * - Configure the RTC Wakeup Clock source use the RTC_WakeUpClockConfig() - * function. - * - Configure the RTC WakeUp Counter using the RTC_SetWakeUpCounter() - * function - * - Enable the RTC WakeUp using the RTC_WakeUpCmd() function - * - To read the RTC WakeUp Counter register, use the RTC_GetWakeUpCounter() - * function. - * - * Outputs configuration - * ===================== - * The RTC has 2 different outputs: - * - AFO_ALARM: this output is used to manage the RTC Alarm A, Alarm B - * and WaKeUp signals. - * To output the selected RTC signal on RTC_AF1 pin, use the - * RTC_OutputConfig() function. - * - AFO_CALIB: this output is 512Hz signal or 1Hz . - * To output the RTC Clock on RTC_AF1 pin, use the RTC_CalibOutputCmd() - * function. - * - * Smooth digital Calibration configuration - * ================================= - * - Configure the RTC Original Digital Calibration Value and the corresponding - * calibration cycle period (32s,16s and 8s) using the RTC_SmoothCalibConfig() - * function. - * - * Coarse digital Calibration configuration - * ================================= - * - Configure the RTC Coarse Calibration Value and the corresponding - * sign using the RTC_CoarseCalibConfig() function. - * - Enable the RTC Coarse Calibration using the RTC_CoarseCalibCmd() - * function - * - * TimeStamp configuration - * ======================= - * - Configure the RTC_AF1 trigger and enables the RTC TimeStamp - * using the RTC_TimeStampCmd() function. - * - To read the RTC TimeStamp Time and Date register, use the - * RTC_GetTimeStamp() function. - * - To read the RTC TimeStamp SubSecond register, use the - * RTC_GetTimeStampSubSecond() function. - * - The TAMPER1 alternate function can be mapped either to RTC_AF1(PC13) - * or RTC_AF2 (PI8) depending on the value of TAMP1INSEL bit in - * RTC_TAFCR register. You can use the RTC_TamperPinSelection() - * function to select the corresponding pin. - * - * Tamper configuration - * ==================== - * - Enable the RTC Tamper using the RTC_TamperCmd() function. - * - Configure the Tamper filter count using RTC_TamperFilterConfig() - * function. - * - Configure the RTC Tamper trigger Edge or Level according to the Tamper - * filter (if equal to 0 Edge else Level) value using the RTC_TamperConfig() function. - * - Configure the Tamper sampling frequency using RTC_TamperSamplingFreqConfig() - * function. - * - Configure the Tamper precharge or discharge duration using - * RTC_TamperPinsPrechargeDuration() function. - * - Enable the Tamper Pull-UP using RTC_TamperPullUpDisableCmd() function. - * - Enable the Time stamp on Tamper detection event using - * RTC_TSOnTamperDetecCmd() function. - * - The TIMESTAMP alternate function can be mapped to either RTC_AF1 - * or RTC_AF2 depending on the value of the TSINSEL bit in the - * RTC_TAFCR register. You can use the RTC_TimeStampPinSelection() - * function to select the corresponding pin. - * - * Backup Data Registers configuration - * =================================== - * - To write to the RTC Backup Data registers, use the RTC_WriteBackupRegister() - * function. - * - To read the RTC Backup Data registers, use the RTC_ReadBackupRegister() - * function. - * - * =================================================================== - * RTC and low power modes - * =================================================================== - * The MCU can be woken up from a low power mode by an RTC alternate - * function. - * The RTC alternate functions are the RTC alarms (Alarm A and Alarm B), - * RTC wakeup, RTC tamper event detection and RTC time stamp event detection. - * These RTC alternate functions can wake up the system from the Stop - * and Standby lowpower modes. - * The system can also wake up from low power modes without depending - * on an external interrupt (Auto-wakeup mode), by using the RTC alarm - * or the RTC wakeup events. - * The RTC provides a programmable time base for waking up from the - * Stop or Standby mode at regular intervals. - * Wakeup from STOP and Standby modes is possible only when the RTC - * clock source is LSE or LSI. - * - * =================================================================== - * Selection of RTC_AF1 alternate functions - * =================================================================== - * The RTC_AF1 pin (PC13) can be used for the following purposes: - * - AFO_ALARM output - * - AFO_CALIB output - * - AFI_TAMPER - * - AFI_TIMESTAMP - * - * +-------------------------------------------------------------------------------------------------------------+ - * | Pin |AFO_ALARM |AFO_CALIB |AFI_TAMPER |AFI_TIMESTAMP | TAMP1INSEL | TSINSEL |ALARMOUTTYPE | - * | configuration | ENABLED | ENABLED | ENABLED | ENABLED |TAMPER1 pin |TIMESTAMP pin | AFO_ALARM | - * | and function | | | | | selection | selection |Configuration | - * |-----------------|----------|----------|-----------|--------------|------------|--------------|--------------| - * | Alarm out | | | | | Don't | Don't | | - * | output OD | 1 |Don't care|Don't care | Don't care | care | care | 0 | - * |-----------------|----------|----------|-----------|--------------|------------|--------------|--------------| - * | Alarm out | | | | | Don't | Don't | | - * | output PP | 1 |Don't care|Don't care | Don't care | care | care | 1 | - * |-----------------|----------|----------|-----------|--------------|------------|--------------|--------------| - * | Calibration out | | | | | Don't | Don't | | - * | output PP | 0 | 1 |Don't care | Don't care | care | care | Don't care | - * |-----------------|----------|----------|-----------|--------------|------------|--------------|--------------| - * | TAMPER input | | | | | | Don't | | - * | floating | 0 | 0 | 1 | 0 | 0 | care | Don't care | - * |-----------------|----------|----------|-----------|--------------|------------|--------------|--------------| - * | TIMESTAMP and | | | | | | | | - * | TAMPER input | 0 | 0 | 1 | 1 | 0 | 0 | Don't care | - * | floating | | | | | | | | - * |-----------------|----------|----------|-----------|--------------|------------|--------------|--------------| - * | TIMESTAMP input | | | | | Don't | | | - * | floating | 0 | 0 | 0 | 1 | care | 0 | Don't care | - * |-----------------|----------|----------|-----------|--------------|------------|--------------|--------------| - * | Standard GPIO | 0 | 0 | 0 | 0 | Don't care | Don't care | Don't care | - * +-------------------------------------------------------------------------------------------------------------+ - * - * - * =================================================================== - * Selection of RTC_AF2 alternate functions - * =================================================================== - * The RTC_AF2 pin (PI8) can be used for the following purposes: - * - AFI_TAMPER - * - AFI_TIMESTAMP - * - * +---------------------------------------------------------------------------------------+ - * | Pin |AFI_TAMPER |AFI_TIMESTAMP | TAMP1INSEL | TSINSEL |ALARMOUTTYPE | - * | configuration | ENABLED | ENABLED |TAMPER1 pin |TIMESTAMP pin | AFO_ALARM | - * | and function | | | selection | selection |Configuration | - * |-----------------|-----------|--------------|------------|--------------|--------------| - * | TAMPER input | | | | Don't | | - * | floating | 1 | 0 | 1 | care | Don't care | - * |-----------------|-----------|--------------|------------|--------------|--------------| - * | TIMESTAMP and | | | | | | - * | TAMPER input | 1 | 1 | 1 | 1 | Don't care | - * | floating | | | | | | - * |-----------------|-----------|--------------|------------|--------------|--------------| - * | TIMESTAMP input | | | Don't | | | - * | floating | 0 | 1 | care | 1 | Don't care | - * |-----------------|-----------|--------------|------------|--------------|--------------| - * | Standard GPIO | 0 | 0 | Don't care | Don't care | Don't care | - * +---------------------------------------------------------------------------------------+ - * - * - * @endverbatim + * + Initialization + * + Calendar (Time and Date) configuration + * + Alarms (Alarm A and Alarm B) configuration + * + WakeUp Timer configuration + * + Daylight Saving configuration + * + Output pin Configuration + * + Coarse digital Calibration configuration + * + Smooth digital Calibration configuration + * + TimeStamp configuration + * + Tampers configuration + * + Backup Data Registers configuration + * + Shift control synchronisation + * + RTC Tamper and TimeStamp Pins Selection and Output Type Config configuration + * + Interrupts and flags management * +@verbatim + + =================================================================== + ##### Backup Domain Operating Condition ##### + =================================================================== + [..] The real-time clock (RTC), the RTC backup registers, and the backup + SRAM (BKP SRAM) can be powered from the VBAT voltage when the main + VDD supply is powered off. + To retain the content of the RTC backup registers, backup SRAM, and supply + the RTC when VDD is turned off, VBAT pin can be connected to an optional + standby voltage supplied by a battery or by another source. + + [..] To allow the RTC to operate even when the main digital supply (VDD) is turned + off, the VBAT pin powers the following blocks: + (#) The RTC + (#) The LSE oscillator + (#) The backup SRAM when the low power backup regulator is enabled + (#) PC13 to PC15 I/Os, plus PI8 I/O (when available) + + [..] When the backup domain is supplied by VDD (analog switch connected to VDD), + the following functions are available: + (#) PC14 and PC15 can be used as either GPIO or LSE pins + (#) PC13 can be used as a GPIO or as the RTC_AF1 pin + (#) PI8 can be used as a GPIO or as the RTC_AF2 pin + + [..] When the backup domain is supplied by VBAT (analog switch connected to VBAT + because VDD is not present), the following functions are available: + (#) PC14 and PC15 can be used as LSE pins only + (#) PC13 can be used as the RTC_AF1 pin + (#) PI8 can be used as the RTC_AF2 pin + + + ##### Backup Domain Reset ##### + =================================================================== + [..] The backup domain reset sets all RTC registers and the RCC_BDCR register + to their reset values. The BKPSRAM is not affected by this reset. The only + way of resetting the BKPSRAM is through the Flash interface by requesting + a protection level change from 1 to 0. + [..] A backup domain reset is generated when one of the following events occurs: + (#) Software reset, triggered by setting the BDRST bit in the + RCC Backup domain control register (RCC_BDCR). You can use the + RCC_BackupResetCmd(). + (#) VDD or VBAT power on, if both supplies have previously been powered off. + + + ##### Backup Domain Access ##### + =================================================================== + [..] After reset, the backup domain (RTC registers, RTC backup data + registers and backup SRAM) is protected against possible unwanted write + accesses. + [..] To enable access to the RTC Domain and RTC registers, proceed as follows: + (+) Enable the Power Controller (PWR) APB1 interface clock using the + RCC_APB1PeriphClockCmd() function. + (+) Enable access to RTC domain using the PWR_BackupAccessCmd() function. + (+) Select the RTC clock source using the RCC_RTCCLKConfig() function. + (+) Enable RTC Clock using the RCC_RTCCLKCmd() function. + + + ##### How to use RTC Driver ##### + =================================================================== + [..] + (+) Enable the RTC domain access (see description in the section above) + (+) Configure the RTC Prescaler (Asynchronous and Synchronous) and RTC hour + format using the RTC_Init() function. + + *** Time and Date configuration *** + =================================== + [..] + (+) To configure the RTC Calendar (Time and Date) use the RTC_SetTime() + and RTC_SetDate() functions. + (+) To read the RTC Calendar, use the RTC_GetTime() and RTC_GetDate() functions. + (+) Use the RTC_DayLightSavingConfig() function to add or sub one + hour to the RTC Calendar. + + *** Alarm configuration *** + =========================== + [..] + (+) To configure the RTC Alarm use the RTC_SetAlarm() function. + (+) Enable the selected RTC Alarm using the RTC_AlarmCmd() function + (+) To read the RTC Alarm, use the RTC_GetAlarm() function. + (+) To read the RTC alarm SubSecond, use the RTC_GetAlarmSubSecond() function. + + *** RTC Wakeup configuration *** + ================================ + [..] + (+) Configure the RTC Wakeup Clock source use the RTC_WakeUpClockConfig() + function. + (+) Configure the RTC WakeUp Counter using the RTC_SetWakeUpCounter() function + (+) Enable the RTC WakeUp using the RTC_WakeUpCmd() function + (+) To read the RTC WakeUp Counter register, use the RTC_GetWakeUpCounter() + function. + + *** Outputs configuration *** + ============================= + [..] The RTC has 2 different outputs: + (+) AFO_ALARM: this output is used to manage the RTC Alarm A, Alarm B + and WaKeUp signals. To output the selected RTC signal on RTC_AF1 pin, use the + RTC_OutputConfig() function. + (+) AFO_CALIB: this output is 512Hz signal or 1Hz. To output the RTC Clock on + RTC_AF1 pin, use the RTC_CalibOutputCmd() function. + + *** Smooth digital Calibration configuration *** + ================================================ + [..] + (+) Configure the RTC Original Digital Calibration Value and the corresponding + calibration cycle period (32s,16s and 8s) using the RTC_SmoothCalibConfig() + function. + + *** Coarse digital Calibration configuration *** + ================================================ + [..] + (+) Configure the RTC Coarse Calibration Value and the corresponding + sign using the RTC_CoarseCalibConfig() function. + (+) Enable the RTC Coarse Calibration using the RTC_CoarseCalibCmd() function + + *** TimeStamp configuration *** + =============================== + [..] + (+) Configure the RTC_AF1 trigger and enables the RTC TimeStamp using the RTC + _TimeStampCmd() function. + (+) To read the RTC TimeStamp Time and Date register, use the RTC_GetTimeStamp() + function. + (+) To read the RTC TimeStamp SubSecond register, use the + RTC_GetTimeStampSubSecond() function. + (+) The TAMPER1 alternate function can be mapped either to RTC_AF1(PC13) + or RTC_AF2 (PI8) depending on the value of TAMP1INSEL bit in + RTC_TAFCR register. You can use the RTC_TamperPinSelection() function to + select the corresponding pin. + + *** Tamper configuration *** + ============================ + [..] + (+) Enable the RTC Tamper using the RTC_TamperCmd() function. + (+) Configure the Tamper filter count using RTC_TamperFilterConfig() + function. + (+) Configure the RTC Tamper trigger Edge or Level according to the Tamper + filter (if equal to 0 Edge else Level) value using the RTC_TamperConfig() + function. + (+) Configure the Tamper sampling frequency using RTC_TamperSamplingFreqConfig() + function. + (+) Configure the Tamper precharge or discharge duration using + RTC_TamperPinsPrechargeDuration() function. + (+) Enable the Tamper Pull-UP using RTC_TamperPullUpDisableCmd() function. + (+) Enable the Time stamp on Tamper detection event using + TC_TSOnTamperDetecCmd() function. + (+) The TIMESTAMP alternate function can be mapped to either RTC_AF1 + or RTC_AF2 depending on the value of the TSINSEL bit in the RTC_TAFCR + register. You can use the RTC_TimeStampPinSelection() function to select + the corresponding pin. + + *** Backup Data Registers configuration *** + =========================================== + [..] + (+) To write to the RTC Backup Data registers, use the RTC_WriteBackupRegister() + function. + (+) To read the RTC Backup Data registers, use the RTC_ReadBackupRegister() + function. + + + ##### RTC and low power modes ##### + =================================================================== + [..] The MCU can be woken up from a low power mode by an RTC alternate + function. + [..] The RTC alternate functions are the RTC alarms (Alarm A and Alarm B), + RTC wakeup, RTC tamper event detection and RTC time stamp event detection. + These RTC alternate functions can wake up the system from the Stop and + Standby lowpower modes. + [..] The system can also wake up from low power modes without depending + on an external interrupt (Auto-wakeup mode), by using the RTC alarm + or the RTC wakeup events. + [..] The RTC provides a programmable time base for waking up from the + Stop or Standby mode at regular intervals. + Wakeup from STOP and Standby modes is possible only when the RTC clock source + is LSE or LSI. + + + ##### Selection of RTC_AF1 alternate functions ##### + =================================================================== + [..] The RTC_AF1 pin (PC13) can be used for the following purposes: + (+) AFO_ALARM output + (+) AFO_CALIB output + (+) AFI_TAMPER + (+) AFI_TIMESTAMP + + [..] + +-------------------------------------------------------------------------------------------------------------+ + | Pin |AFO_ALARM |AFO_CALIB |AFI_TAMPER |AFI_TIMESTAMP | TAMP1INSEL | TSINSEL |ALARMOUTTYPE | + | configuration | ENABLED | ENABLED | ENABLED | ENABLED |TAMPER1 pin |TIMESTAMP pin | AFO_ALARM | + | and function | | | | | selection | selection |Configuration | + |-----------------|----------|----------|-----------|--------------|------------|--------------|--------------| + | Alarm out | | | | | Don't | Don't | | + | output OD | 1 |Don't care|Don't care | Don't care | care | care | 0 | + |-----------------|----------|----------|-----------|--------------|------------|--------------|--------------| + | Alarm out | | | | | Don't | Don't | | + | output PP | 1 |Don't care|Don't care | Don't care | care | care | 1 | + |-----------------|----------|----------|-----------|--------------|------------|--------------|--------------| + | Calibration out | | | | | Don't | Don't | | + | output PP | 0 | 1 |Don't care | Don't care | care | care | Don't care | + |-----------------|----------|----------|-----------|--------------|------------|--------------|--------------| + | TAMPER input | | | | | | Don't | | + | floating | 0 | 0 | 1 | 0 | 0 | care | Don't care | + |-----------------|----------|----------|-----------|--------------|------------|--------------|--------------| + | TIMESTAMP and | | | | | | | | + | TAMPER input | 0 | 0 | 1 | 1 | 0 | 0 | Don't care | + | floating | | | | | | | | + |-----------------|----------|----------|-----------|--------------|------------|--------------|--------------| + | TIMESTAMP input | | | | | Don't | | | + | floating | 0 | 0 | 0 | 1 | care | 0 | Don't care | + |-----------------|----------|----------|-----------|--------------|------------|--------------|--------------| + | Standard GPIO | 0 | 0 | 0 | 0 | Don't care | Don't care | Don't care | + +-------------------------------------------------------------------------------------------------------------+ + + + ##### Selection of RTC_AF2 alternate functions ##### + =================================================================== + [..] The RTC_AF2 pin (PI8) can be used for the following purposes: + (+) AFI_TAMPER + (+) AFI_TIMESTAMP + [..] + +---------------------------------------------------------------------------------------+ + | Pin |AFI_TAMPER |AFI_TIMESTAMP | TAMP1INSEL | TSINSEL |ALARMOUTTYPE | + | configuration | ENABLED | ENABLED |TAMPER1 pin |TIMESTAMP pin | AFO_ALARM | + | and function | | | selection | selection |Configuration | + |-----------------|-----------|--------------|------------|--------------|--------------| + | TAMPER input | | | | Don't | | + | floating | 1 | 0 | 1 | care | Don't care | + |-----------------|-----------|--------------|------------|--------------|--------------| + | TIMESTAMP and | | | | | | + | TAMPER input | 1 | 1 | 1 | 1 | Don't care | + | floating | | | | | | + |-----------------|-----------|--------------|------------|--------------|--------------| + | TIMESTAMP input | | | Don't | | | + | floating | 0 | 1 | care | 1 | Don't care | + |-----------------|-----------|--------------|------------|--------------|--------------| + | Standard GPIO | 0 | 0 | Don't care | Don't care | Don't care | + +---------------------------------------------------------------------------------------+ + + +@endverbatim + ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -327,35 +329,35 @@ static uint8_t RTC_Bcd2ToByte(uint8_t Value); * @verbatim =============================================================================== - Initialization and Configuration functions + ##### Initialization and Configuration functions ##### =============================================================================== - - This section provide functions allowing to initialize and configure the RTC - Prescaler (Synchronous and Asynchronous), RTC Hour format, disable RTC registers - Write protection, enter and exit the RTC initialization mode, RTC registers - synchronization check and reference clock detection enable. - - 1. The RTC Prescaler is programmed to generate the RTC 1Hz time base. It is - split into 2 programmable prescalers to minimize power consumption. - - A 7-bit asynchronous prescaler and A 13-bit synchronous prescaler. - - When both prescalers are used, it is recommended to configure the asynchronous - prescaler to a high value to minimize consumption. - - 2. All RTC registers are Write protected. Writing to the RTC registers - is enabled by writing a key into the Write Protection register, RTC_WPR. - - 3. To Configure the RTC Calendar, user application should enter initialization - mode. In this mode, the calendar counter is stopped and its value can be - updated. When the initialization sequence is complete, the calendar restarts - counting after 4 RTCCLK cycles. - - 4. To read the calendar through the shadow registers after Calendar initialization, - calendar update or after wakeup from low power modes the software must first - clear the RSF flag. The software must then wait until it is set again before - reading the calendar, which means that the calendar registers have been - correctly copied into the RTC_TR and RTC_DR shadow registers. - The RTC_WaitForSynchro() function implements the above software sequence - (RSF clear and RSF check). + + [..] This section provide functions allowing to initialize and configure the RTC + Prescaler (Synchronous and Asynchronous), RTC Hour format, disable RTC registers + Write protection, enter and exit the RTC initialization mode, RTC registers + synchronization check and reference clock detection enable. + + (#) The RTC Prescaler is programmed to generate the RTC 1Hz time base. It is + split into 2 programmable prescalers to minimize power consumption. + (++) A 7-bit asynchronous prescaler and A 13-bit synchronous prescaler. + (++) When both prescalers are used, it is recommended to configure the + asynchronous prescaler to a high value to minimize consumption. + + (#) All RTC registers are Write protected. Writing to the RTC registers + is enabled by writing a key into the Write Protection register, RTC_WPR. + + (#) To Configure the RTC Calendar, user application should enter initialization + mode. In this mode, the calendar counter is stopped and its value can be + updated. When the initialization sequence is complete, the calendar restarts + counting after 4 RTCCLK cycles. + + (#) To read the calendar through the shadow registers after Calendar initialization, + calendar update or after wakeup from low power modes the software must first + clear the RSF flag. The software must then wait until it is set again before + reading the calendar, which means that the calendar registers have been + correctly copied into the RTC_TR and RTC_DR shadow registers. + The RTC_WaitForSynchro() function implements the above software sequence + (RSF clear and RSF check). @endverbatim * @{ @@ -738,11 +740,11 @@ void RTC_BypassShadowCmd(FunctionalState NewState) * @verbatim =============================================================================== - Time and Date configuration functions + ##### Time and Date configuration functions ##### =============================================================================== - - This section provide functions allowing to program and read the RTC Calendar - (Time and Date). + + [..] This section provide functions allowing to program and read the RTC Calendar + (Time and Date). @endverbatim * @{ @@ -836,15 +838,15 @@ ErrorStatus RTC_SetTime(uint32_t RTC_Format, RTC_TimeTypeDef* RTC_TimeStruct) /* If RTC_CR_BYPSHAD bit = 0, wait for synchro else this check is not needed */ if ((RTC->CR & RTC_CR_BYPSHAD) == RESET) { - if (RTC_WaitForSynchro() == ERROR) - { - status = ERROR; - } - else - { - status = SUCCESS; - } + if(RTC_WaitForSynchro() == ERROR) + { + status = ERROR; + } + else + { + status = SUCCESS; } + } else { status = SUCCESS; @@ -909,17 +911,17 @@ void RTC_GetTime(uint32_t RTC_Format, RTC_TimeTypeDef* RTC_TimeStruct) } /** - * @brief Gets the RTC current Calendar Subseconds value. + * @brief Gets the RTC current Calendar Sub seconds value. * @note This function freeze the Time and Date registers after reading the * SSR register. * @param None - * @retval RTC current Calendar Subseconds value. + * @retval RTC current Calendar Sub seconds value. */ uint32_t RTC_GetSubSecond(void) { uint32_t tmpreg = 0; - /* Get subseconds values from the correspondent registers*/ + /* Get sub seconds values from the correspondent registers*/ tmpreg = (uint32_t)(RTC->SSR); /* Read DR register to unfroze calendar registers */ @@ -1004,15 +1006,15 @@ ErrorStatus RTC_SetDate(uint32_t RTC_Format, RTC_DateTypeDef* RTC_DateStruct) /* If RTC_CR_BYPSHAD bit = 0, wait for synchro else this check is not needed */ if ((RTC->CR & RTC_CR_BYPSHAD) == RESET) { - if (RTC_WaitForSynchro() == ERROR) - { - status = ERROR; - } - else - { - status = SUCCESS; - } + if(RTC_WaitForSynchro() == ERROR) + { + status = ERROR; + } + else + { + status = SUCCESS; } + } else { status = SUCCESS; @@ -1085,10 +1087,10 @@ void RTC_GetDate(uint32_t RTC_Format, RTC_DateTypeDef* RTC_DateStruct) * @verbatim =============================================================================== - Alarms (Alarm A and Alarm B) configuration functions + ##### Alarms A and B configuration functions ##### =============================================================================== - - This section provide functions allowing to program and read the RTC Alarms. + + [..] This section provide functions allowing to program and read the RTC Alarms. @endverbatim * @{ @@ -1355,15 +1357,15 @@ ErrorStatus RTC_AlarmCmd(uint32_t RTC_Alarm, FunctionalState NewState) } /** - * @brief Configure the RTC AlarmA/B Subseconds value and mask.* + * @brief Configure the RTC AlarmA/B Sub seconds value and mask.* * @note This function is performed only when the Alarm is disabled. * @param RTC_Alarm: specifies the alarm to be configured. * This parameter can be one of the following values: * @arg RTC_Alarm_A: to select Alarm A * @arg RTC_Alarm_B: to select Alarm B - * @param RTC_AlarmSubSecondValue: specifies the Subseconds value. + * @param RTC_AlarmSubSecondValue: specifies the Sub seconds value. * This parameter can be a value from 0 to 0x00007FFF. - * @param RTC_AlarmSubSecondMask: specifies the Subseconds Mask. + * @param RTC_AlarmSubSecondMask: specifies the Sub seconds Mask. * This parameter can be any combination of the following values: * @arg RTC_AlarmSubSecondMask_All : All Alarm SS fields are masked. * There is no comparison on sub seconds for Alarm. @@ -1412,17 +1414,17 @@ void RTC_AlarmSubSecondConfig(uint32_t RTC_Alarm, uint32_t RTC_AlarmSubSecondVal RTC->WPR = 0xCA; RTC->WPR = 0x53; - /* Configure the Alarm A or Alarm B SubSecond registers */ + /* Configure the Alarm A or Alarm B Sub Second registers */ tmpreg = (uint32_t) (uint32_t)(RTC_AlarmSubSecondValue) | (uint32_t)(RTC_AlarmSubSecondMask); if (RTC_Alarm == RTC_Alarm_A) { - /* Configure the AlarmA SubSecond register */ + /* Configure the Alarm A Sub Second register */ RTC->ALRMASSR = tmpreg; } else { - /* Configure the Alarm B SubSecond register */ + /* Configure the Alarm B Sub Second register */ RTC->ALRMBSSR = tmpreg; } @@ -1432,13 +1434,13 @@ void RTC_AlarmSubSecondConfig(uint32_t RTC_Alarm, uint32_t RTC_AlarmSubSecondVal } /** - * @brief Gets the RTC Alarm Subseconds value. + * @brief Gets the RTC Alarm Sub seconds value. * @param RTC_Alarm: specifies the alarm to be read. * This parameter can be one of the following values: * @arg RTC_Alarm_A: to select Alarm A * @arg RTC_Alarm_B: to select Alarm B * @param None - * @retval RTC Alarm Subseconds value. + * @retval RTC Alarm Sub seconds value. */ uint32_t RTC_GetAlarmSubSecond(uint32_t RTC_Alarm) { @@ -1466,10 +1468,10 @@ uint32_t RTC_GetAlarmSubSecond(uint32_t RTC_Alarm) * @verbatim =============================================================================== - WakeUp Timer configuration functions + ##### WakeUp Timer configuration functions ##### =============================================================================== - This section provide functions allowing to program and read the RTC WakeUp. + [..] This section provide functions allowing to program and read the RTC WakeUp. @endverbatim * @{ @@ -1604,10 +1606,10 @@ ErrorStatus RTC_WakeUpCmd(FunctionalState NewState) * @verbatim =============================================================================== - Daylight Saving configuration functions + ##### Daylight Saving configuration functions ##### =============================================================================== - This section provide functions allowing to configure the RTC DayLight Saving. + [..] This section provide functions allowing to configure the RTC DayLight Saving. @endverbatim * @{ @@ -1667,10 +1669,10 @@ uint32_t RTC_GetStoreOperation(void) * @verbatim =============================================================================== - Output pin Configuration function + ##### Output pin Configuration function ##### =============================================================================== - This section provide functions allowing to configure the RTC Output source. + [..] This section provide functions allowing to configure the RTC Output source. @endverbatim * @{ @@ -1721,7 +1723,7 @@ void RTC_OutputConfig(uint32_t RTC_Output, uint32_t RTC_OutputPolarity) * @verbatim =============================================================================== - Digital Calibration configuration functions + ##### Digital Calibration configuration functions ##### =============================================================================== @endverbatim @@ -1874,7 +1876,7 @@ void RTC_CalibOutputConfig(uint32_t RTC_CalibOutput) RTC->WPR = 0xCA; RTC->WPR = 0x53; - /*clear flags before config*/ + /*clear flags before configuration */ RTC->CR &= (uint32_t)~(RTC_CR_COSEL); /* Configure the RTC_CR register */ @@ -1888,9 +1890,9 @@ void RTC_CalibOutputConfig(uint32_t RTC_CalibOutput) * @brief Configures the Smooth Calibration Settings. * @param RTC_SmoothCalibPeriod : Select the Smooth Calibration Period. * This parameter can be can be one of the following values: - * @arg RTC_SmoothCalibPeriod_32sec : The smooth calibration periode is 32s. - * @arg RTC_SmoothCalibPeriod_16sec : The smooth calibration periode is 16s. - * @arg RTC_SmoothCalibPeriod_8sec : The smooth calibartion periode is 8s. + * @arg RTC_SmoothCalibPeriod_32sec : The smooth calibration period is 32s. + * @arg RTC_SmoothCalibPeriod_16sec : The smooth calibration period is 16s. + * @arg RTC_SmoothCalibPeriod_8sec : The smooth calibartion period is 8s. * @param RTC_SmoothCalibPlusPulses : Select to Set or reset the CALP bit. * This parameter can be one of the following values: * @arg RTC_SmoothCalibPlusPulses_Set : Add one RTCCLK puls every 2**11 pulses. @@ -1956,7 +1958,7 @@ ErrorStatus RTC_SmoothCalibConfig(uint32_t RTC_SmoothCalibPeriod, * @verbatim =============================================================================== - TimeStamp configuration functions + ##### TimeStamp configuration functions ##### =============================================================================== @endverbatim @@ -2061,13 +2063,13 @@ void RTC_GetTimeStamp(uint32_t RTC_Format, RTC_TimeTypeDef* RTC_StampTimeStruct, } /** - * @brief Get the RTC timestamp Subseconds value. + * @brief Get the RTC timestamp Sub seconds value. * @param None - * @retval RTC current timestamp Subseconds value. + * @retval RTC current timestamp Sub seconds value. */ uint32_t RTC_GetTimeStampSubSecond(void) { - /* Get timestamp subseconds values from the correspondent registers */ + /* Get timestamp sub seconds values from the correspondent registers */ return (uint32_t)(RTC->TSSSR); } @@ -2080,7 +2082,7 @@ uint32_t RTC_GetTimeStampSubSecond(void) * @verbatim =============================================================================== - Tampers configuration functions + ##### Tampers configuration functions ##### =============================================================================== @endverbatim @@ -2208,10 +2210,10 @@ void RTC_TamperSamplingFreqConfig(uint32_t RTC_TamperSamplingFreq) * @param RTC_TamperPrechargeDuration: Specifies the Tampers Pins input * Precharge Duration. * This parameter can be one of the following values: - * @arg RTC_TamperPrechargeDuration_1RTCCLK: Tamper pins are pre-charged before sampling during 1 RTCCLK cycle - * @arg RTC_TamperPrechargeDuration_2RTCCLK: Tamper pins are pre-charged before sampling during 2 RTCCLK cycle - * @arg RTC_TamperPrechargeDuration_4RTCCLK: Tamper pins are pre-charged before sampling during 4 RTCCLK cycle - * @arg RTC_TamperPrechargeDuration_8RTCCLK: Tamper pins are pre-charged before sampling during 8 RTCCLK cycle + * @arg RTC_TamperPrechargeDuration_1RTCCLK: Tamper pins are precharged before sampling during 1 RTCCLK cycle + * @arg RTC_TamperPrechargeDuration_2RTCCLK: Tamper pins are precharged before sampling during 2 RTCCLK cycle + * @arg RTC_TamperPrechargeDuration_4RTCCLK: Tamper pins are precharged before sampling during 4 RTCCLK cycle + * @arg RTC_TamperPrechargeDuration_8RTCCLK: Tamper pins are precharged before sampling during 8 RTCCLK cycle * @retval None */ void RTC_TamperPinsPrechargeDuration(uint32_t RTC_TamperPrechargeDuration) @@ -2283,7 +2285,7 @@ void RTC_TamperPullUpCmd(FunctionalState NewState) * @verbatim =============================================================================== - Backup Data Registers configuration functions + ##### Backup Data Registers configuration functions ##### =============================================================================== @endverbatim @@ -2342,10 +2344,9 @@ uint32_t RTC_ReadBackupRegister(uint32_t RTC_BKP_DR) * configuration functions * @verbatim - =============================================================================== - RTC Tamper and TimeStamp Pins Selection and Output Type Config configuration - functions - =============================================================================== + ================================================================================================== + ##### RTC Tamper and TimeStamp Pins Selection and Output Type Config configuration functions ##### + ================================================================================================== @endverbatim * @{ @@ -2413,7 +2414,7 @@ void RTC_OutputTypeConfig(uint32_t RTC_OutputType) * @verbatim =============================================================================== - Shift control synchronisation functions + ##### Shift control synchronisation functions ##### =============================================================================== @endverbatim @@ -2499,41 +2500,42 @@ ErrorStatus RTC_SynchroShiftConfig(uint32_t RTC_ShiftAdd1S, uint32_t RTC_ShiftSu * @verbatim =============================================================================== - Interrupts and flags management functions + ##### Interrupts and flags management functions ##### =============================================================================== - All RTC interrupts are connected to the EXTI controller. + [..] All RTC interrupts are connected to the EXTI controller. - - To enable the RTC Alarm interrupt, the following sequence is required: - - Configure and enable the EXTI Line 17 in interrupt mode and select the rising - edge sensitivity using the EXTI_Init() function. - - Configure and enable the RTC_Alarm IRQ channel in the NVIC using the NVIC_Init() - function. - - Configure the RTC to generate RTC alarms (Alarm A and/or Alarm B) using - the RTC_SetAlarm() and RTC_AlarmCmd() functions. - - - To enable the RTC Wakeup interrupt, the following sequence is required: - - Configure and enable the EXTI Line 22 in interrupt mode and select the rising - edge sensitivity using the EXTI_Init() function. - - Configure and enable the RTC_WKUP IRQ channel in the NVIC using the NVIC_Init() - function. - - Configure the RTC to generate the RTC wakeup timer event using the - RTC_WakeUpClockConfig(), RTC_SetWakeUpCounter() and RTC_WakeUpCmd() functions. - - - To enable the RTC Tamper interrupt, the following sequence is required: - - Configure and enable the EXTI Line 21 in interrupt mode and select the rising - edge sensitivity using the EXTI_Init() function. - - Configure and enable the TAMP_STAMP IRQ channel in the NVIC using the NVIC_Init() - function. - - Configure the RTC to detect the RTC tamper event using the - RTC_TamperTriggerConfig() and RTC_TamperCmd() functions. - - - To enable the RTC TimeStamp interrupt, the following sequence is required: - - Configure and enable the EXTI Line 21 in interrupt mode and select the rising - edge sensitivity using the EXTI_Init() function. - - Configure and enable the TAMP_STAMP IRQ channel in the NVIC using the NVIC_Init() - function. - - Configure the RTC to detect the RTC time-stamp event using the - RTC_TimeStampCmd() functions. + (+) To enable the RTC Alarm interrupt, the following sequence is required: + (++) Configure and enable the EXTI Line 17 in interrupt mode and select + the rising edge sensitivity using the EXTI_Init() function. + (++) Configure and enable the RTC_Alarm IRQ channel in the NVIC using the + NVIC_Init() function. + (++) Configure the RTC to generate RTC alarms (Alarm A and/or Alarm B) using + the RTC_SetAlarm() and RTC_AlarmCmd() functions. + + (+) To enable the RTC Wakeup interrupt, the following sequence is required: + (++) Configure and enable the EXTI Line 22 in interrupt mode and select the + rising edge sensitivity using the EXTI_Init() function. + (++) Configure and enable the RTC_WKUP IRQ channel in the NVIC using the + NVIC_Init() function. + (++) Configure the RTC to generate the RTC wakeup timer event using the + RTC_WakeUpClockConfig(), RTC_SetWakeUpCounter() and RTC_WakeUpCmd() + functions. + + (+) To enable the RTC Tamper interrupt, the following sequence is required: + (++) Configure and enable the EXTI Line 21 in interrupt mode and select + the rising edge sensitivity using the EXTI_Init() function. + (++) Configure and enable the TAMP_STAMP IRQ channel in the NVIC using the + NVIC_Init() function. + (++) Configure the RTC to detect the RTC tamper event using the + RTC_TamperTriggerConfig() and RTC_TamperCmd() functions. + + (+) To enable the RTC TimeStamp interrupt, the following sequence is required: + (++) Configure and enable the EXTI Line 21 in interrupt mode and select the + rising edge sensitivity using the EXTI_Init() function. + (++) Configure and enable the TAMP_STAMP IRQ channel in the NVIC using the + NVIC_Init() function. + (++) Configure the RTC to detect the RTC time stamp event using the + RTC_TimeStampCmd() functions. @endverbatim * @{ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_sai.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_sai.c new file mode 100644 index 00000000..d05b519e --- /dev/null +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_sai.c @@ -0,0 +1,1079 @@ +/** + ****************************************************************************** + * @file stm32f4xx_sai.c + * @author MCD Application Team + * @version V1.4.0 + * @date 04-August-2014 + * @brief This file provides firmware functions to manage the following + * functionalities of the Serial Audio Interface (SAI): + * + Initialization and Configuration + * + Data transfers functions + * + DMA transfers management + * + Interrupts and flags management + * + @verbatim + =============================================================================== + ##### How to use this driver ##### + =============================================================================== + [..] + + (#) Enable peripheral clock using the following functions + RCC_APB2PeriphClockCmd(RCC_APB2Periph_SAI1, ENABLE) for SAI1 + + (#) For each SAI Block A/B enable SCK, SD, FS and MCLK GPIO clocks + using RCC_AHB1PeriphClockCmd() function. + + (#) Peripherals alternate function: + (++) Connect the pin to the desired peripherals' Alternate + Function (AF) using GPIO_PinAFConfig() function. + (++) Configure the desired pin in alternate function by: + GPIO_InitStruct->GPIO_Mode = GPIO_Mode_AF + (++) Select the type, pull-up/pull-down and output speed via + GPIO_PuPd, GPIO_OType and GPIO_Speed members + (++) Call GPIO_Init() function + -@@- If an external clock source is used then the I2S CKIN pin should be + also configured in Alternate function Push-pull pull-up mode. + + (#) The SAI clock can be generated from different clock source : + PLL I2S, PLL SAI or external clock source. + (++) The PLL I2S is configured using the following functions RCC_PLLI2SConfig(), + RCC_PLLI2SCmd(ENABLE), RCC_GetFlagStatus(RCC_FLAG_PLLI2SRDY) and + RCC_SAIPLLI2SClkDivConfig() or; + + (++) The PLL SAI is configured using the following functions RCC_PLLSAIConfig(), + RCC_PLLSAICmd(ENABLE), RCC_GetFlagStatus(RCC_FLAG_PLLSAIRDY) and + RCC_SAIPLLSAIClkDivConfig()or; + + (++) External clock source is configured using the function + RCC_I2SCLKConfig(RCC_I2S2CLKSource_Ext) and after setting correctly the + define constant I2S_EXTERNAL_CLOCK_VAL in the stm32f4xx_conf.h file. + + (#) Each SAI Block A or B has its own clock generator to make these two blocks + completely independent. The Clock generator is configured using RCC_SAIBlockACLKConfig() and + RCC_SAIBlockBCLKConfig() functions. + + (#) Each SAI Block A or B can be configured separetely : + (++) Program the Master clock divider, Audio mode, Protocol, Data Length, Clock Strobing Edge, + Synchronous mode, Output drive and FIFO Thresold using SAI_Init() function. + In case of master mode, program the Master clock divider (MCKDIV) using + the following formula : + (+++) MCLK_x = SAI_CK_x / (MCKDIV * 2) with MCLK_x = 256 * FS + (+++) FS = SAI_CK_x / (MCKDIV * 2) * 256 + (+++) MCKDIV = SAI_CK_x / FS * 512 + (++) Program the Frame Length, Frame active Length, FS Definition, FS Polarity, + FS Offset using SAI_FrameInit() function. + (++) Program the Slot First Bit Offset, Slot Size, Slot Number, Slot Active + using SAI_SlotInit() function. + + (#) Enable the NVIC and the corresponding interrupt using the function + SAI_ITConfig() if you need to use interrupt mode. + + (#) When using the DMA mode + (++) Configure the DMA using DMA_Init() function + (++) Active the needed channel Request using SAI_DMACmd() function + + (#) Enable the SAI using the SAI_Cmd() function. + + (#) Enable the DMA using the DMA_Cmd() function when using DMA mode. + + (#) The SAI has some specific functions which can be useful depending + on the audio protocol selected. + (++) Enable Mute mode when the audio block is a transmitter using SAI_MuteModeCmd() + function and configure the value transmitted during mute using SAI_MuteValueConfig(). + (++) Detect the Mute mode when audio block is a receiver using SAI_MuteFrameCounterConfig(). + (++) Enable the MONO mode without any data preprocessing in memory when the number + of slot is equal to 2 using SAI_MonoModeConfig() function. + (++) Enable data companding algorithm (U law and A law) using SAI_CompandingModeConfig(). + (++) Choose the behavior of the SD line in output when an inactive slot is sent + on the data line using SAI_TRIStateConfig() function. + [..] + (@) In master TX mode: enabling the audio block immediately generates the bit clock + for the external slaves even if there is no data in the FIFO, However FS signal + generation is conditioned by the presence of data in the FIFO. + + (@) In master RX mode: enabling the audio block immediately generates the bit clock + and FS signal for the external slaves. + + (@) It is mandatory to respect the following conditions in order to avoid bad SAI behavior: + (+@) First bit Offset <= (SLOT size - Data size) + (+@) Data size <= SLOT size + (+@) Number of SLOT x SLOT size = Frame length + (+@) The number of slots should be even when bit FSDEF in the SAI_xFRCR is set. + + @endverbatim + + ****************************************************************************** + * @attention + * + *

© COPYRIGHT 2014 STMicroelectronics

+ * + * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); + * You may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.st.com/software_license_agreement_liberty_v2 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32f4xx_sai.h" +#include "stm32f4xx_rcc.h" + +/** @addtogroup STM32F4xx_StdPeriph_Driver + * @{ + */ + +/** @defgroup SAI + * @brief SAI driver modules + * @{ + */ + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ + +/* *SAI registers Masks */ +#define CR1_CLEAR_MASK ((uint32_t)0xFF07C010) +#define FRCR_CLEAR_MASK ((uint32_t)0xFFF88000) +#define SLOTR_CLEAR_MASK ((uint32_t)0x0000F020) + +/* Private macro -------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +/* Private function prototypes -----------------------------------------------*/ +/* Private functions ---------------------------------------------------------*/ + +/** @defgroup SAI_Private_Functions + * @{ + */ + +/** @defgroup SAI_Group1 Initialization and Configuration functions + * @brief Initialization and Configuration functions + * +@verbatim + =============================================================================== + ##### Initialization and Configuration functions ##### + =============================================================================== + [..] + This section provides a set of functions allowing to initialize the SAI Audio + Block Mode, Audio Protocol, Data size, Synchronization between audio block, + Master clock Divider, Fifo threshold, Frame configuration, slot configuration, + Tristate mode, Companding mode and Mute mode. + [..] + The SAI_Init(), SAI_FrameInit() and SAI_SlotInit() functions follows the SAI Block + configuration procedures for Master mode and Slave mode (details for these procedures + are available in reference manual(RM0090). + +@endverbatim + * @{ + */ + +/** + * @brief Deinitialize the SAIx peripheral registers to their default reset values. + * @param SAIx: To select the SAIx peripheral, where x can be the different instances + * + * @retval None + */ +void SAI_DeInit(SAI_TypeDef* SAIx) +{ + /* Check the parameters */ + assert_param(IS_SAI_PERIPH(SAIx)); + + /* Enable SAI1 reset state */ + RCC_APB2PeriphResetCmd(RCC_APB2Periph_SAI1, ENABLE); + /* Release SAI1 from reset state */ + RCC_APB2PeriphResetCmd(RCC_APB2Periph_SAI1, DISABLE); +} + +/** + * @brief Initializes the SAI Block x peripheral according to the specified + * parameters in the SAI_InitStruct. + * + * @note SAI clock is generated from a specific output of the PLLSAI or a specific + * output of the PLLI2S or from an alternate function bypassing the PLL I2S. + * + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * @param SAI_InitStruct: pointer to a SAI_InitTypeDef structure that + * contains the configuration information for the specified SAI Block peripheral. + * @retval None + */ +void SAI_Init(SAI_Block_TypeDef* SAI_Block_x, SAI_InitTypeDef* SAI_InitStruct) +{ + uint32_t tmpreg = 0; + + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + + /* Check the SAI Block parameters */ + assert_param(IS_SAI_BLOCK_MODE(SAI_InitStruct->SAI_AudioMode)); + assert_param(IS_SAI_BLOCK_PROTOCOL(SAI_InitStruct->SAI_Protocol)); + assert_param(IS_SAI_BLOCK_DATASIZE(SAI_InitStruct->SAI_DataSize)); + assert_param(IS_SAI_BLOCK_FIRST_BIT(SAI_InitStruct->SAI_FirstBit)); + assert_param(IS_SAI_BLOCK_CLOCK_STROBING(SAI_InitStruct->SAI_ClockStrobing)); + assert_param(IS_SAI_BLOCK_SYNCHRO(SAI_InitStruct->SAI_Synchro)); + assert_param(IS_SAI_BLOCK_OUTPUT_DRIVE(SAI_InitStruct->SAI_OUTDRIV)); + assert_param(IS_SAI_BLOCK_NODIVIDER(SAI_InitStruct->SAI_NoDivider)); + assert_param(IS_SAI_BLOCK_MASTER_DIVIDER(SAI_InitStruct->SAI_MasterDivider)); + assert_param(IS_SAI_BLOCK_FIFO_THRESHOLD(SAI_InitStruct->SAI_FIFOThreshold)); + + /* SAI Block_x CR1 Configuration */ + /* Get the SAI Block_x CR1 value */ + tmpreg = SAI_Block_x->CR1; + /* Clear MODE, PRTCFG, DS, LSBFIRST, CKSTR, SYNCEN, OUTDRIV, NODIV, and MCKDIV bits */ + tmpreg &= CR1_CLEAR_MASK; + /* Configure SAI_Block_x: Audio mode, Protocol, Data Size, first transmitted bit, Clock strobing + edge, Synchronization mode, Output drive, Master Divider and FIFO level */ + /* Set MODE bits according to SAI_AudioMode value */ + /* Set PRTCFG bits according to SAI_Protocol value */ + /* Set DS bits according to SAI_DataSize value */ + /* Set LSBFIRST bit according to SAI_FirstBit value */ + /* Set CKSTR bit according to SAI_ClockStrobing value */ + /* Set SYNCEN bit according to SAI_Synchro value */ + /* Set OUTDRIV bit according to SAI_OUTDRIV value */ + /* Set NODIV bit according to SAI_NoDivider value */ + /* Set MCKDIV bits according to SAI_MasterDivider value */ + tmpreg |= (uint32_t)(SAI_InitStruct->SAI_AudioMode | SAI_InitStruct->SAI_Protocol | + SAI_InitStruct->SAI_DataSize | SAI_InitStruct->SAI_FirstBit | + SAI_InitStruct->SAI_ClockStrobing | SAI_InitStruct->SAI_Synchro | + SAI_InitStruct->SAI_OUTDRIV | SAI_InitStruct->SAI_NoDivider | + (uint32_t)((SAI_InitStruct->SAI_MasterDivider) << 20)); + /* Write to SAI_Block_x CR1 */ + SAI_Block_x->CR1 = tmpreg; + + /* SAI Block_x CR2 Configuration */ + /* Get the SAIBlock_x CR2 value */ + tmpreg = SAI_Block_x->CR2; + /* Clear FTH bits */ + tmpreg &= ~(SAI_xCR2_FTH); + /* Configure the FIFO Level */ + /* Set FTH bits according to SAI_FIFOThreshold value */ + tmpreg |= (uint32_t)(SAI_InitStruct->SAI_FIFOThreshold); + /* Write to SAI_Block_x CR2 */ + SAI_Block_x->CR2 = tmpreg; +} + +/** + * @brief Initializes the SAI Block Audio frame according to the specified + * parameters in the SAI_FrameInitStruct. + * + * @note this function has no meaning if the AC'97 or SPDIF audio protocol + * are selected. + * + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * @param SAI_FrameInitStruct: pointer to an SAI_FrameInitTypeDef structure that + * contains the configuration of audio frame for a specified SAI Block + * @retval None + */ +void SAI_FrameInit(SAI_Block_TypeDef* SAI_Block_x, SAI_FrameInitTypeDef* SAI_FrameInitStruct) +{ + uint32_t tmpreg = 0; + + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + + /* Check the SAI Block frame parameters */ + assert_param(IS_SAI_BLOCK_FRAME_LENGTH(SAI_FrameInitStruct->SAI_FrameLength)); + assert_param(IS_SAI_BLOCK_ACTIVE_FRAME(SAI_FrameInitStruct->SAI_ActiveFrameLength)); + assert_param(IS_SAI_BLOCK_FS_DEFINITION(SAI_FrameInitStruct->SAI_FSDefinition)); + assert_param(IS_SAI_BLOCK_FS_POLARITY(SAI_FrameInitStruct->SAI_FSPolarity)); + assert_param(IS_SAI_BLOCK_FS_OFFSET(SAI_FrameInitStruct->SAI_FSOffset)); + + /* SAI Block_x FRCR Configuration */ + /* Get the SAI Block_x FRCR value */ + tmpreg = SAI_Block_x->FRCR; + /* Clear FRL, FSALL, FSDEF, FSPOL, FSOFF bits */ + tmpreg &= FRCR_CLEAR_MASK; + /* Configure SAI_Block_x Frame: Frame Length, Active Frame Length, Frame Synchronization + Definition, Frame Synchronization Polarity and Frame Synchronization Polarity */ + /* Set FRL bits according to SAI_FrameLength value */ + /* Set FSALL bits according to SAI_ActiveFrameLength value */ + /* Set FSDEF bit according to SAI_FSDefinition value */ + /* Set FSPOL bit according to SAI_FSPolarity value */ + /* Set FSOFF bit according to SAI_FSOffset value */ + tmpreg |= (uint32_t)((uint32_t)(SAI_FrameInitStruct->SAI_FrameLength - 1) | + SAI_FrameInitStruct->SAI_FSOffset | + SAI_FrameInitStruct->SAI_FSDefinition | + SAI_FrameInitStruct->SAI_FSPolarity | + (uint32_t)((SAI_FrameInitStruct->SAI_ActiveFrameLength - 1) << 8)); + + /* Write to SAI_Block_x FRCR */ + SAI_Block_x->FRCR = tmpreg; +} + +/** + * @brief Initializes the SAI Block audio Slot according to the specified + * parameters in the SAI_SlotInitStruct. + * + * @note this function has no meaning if the AC'97 or SPDIF audio protocol + * are selected. + * + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * @param SAI_SlotInitStruct: pointer to an SAI_SlotInitTypeDef structure that + * contains the configuration of audio slot for a specified SAI Block + * @retval None + */ +void SAI_SlotInit(SAI_Block_TypeDef* SAI_Block_x, SAI_SlotInitTypeDef* SAI_SlotInitStruct) +{ + uint32_t tmpreg = 0; + + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + + /* Check the SAI Block Slot parameters */ + assert_param(IS_SAI_BLOCK_FIRSTBIT_OFFSET(SAI_SlotInitStruct->SAI_FirstBitOffset)); + assert_param(IS_SAI_BLOCK_SLOT_SIZE(SAI_SlotInitStruct->SAI_SlotSize)); + assert_param(IS_SAI_BLOCK_SLOT_NUMBER(SAI_SlotInitStruct->SAI_SlotNumber)); + assert_param(IS_SAI_SLOT_ACTIVE(SAI_SlotInitStruct->SAI_SlotActive)); + + /* SAI Block_x SLOTR Configuration */ + /* Get the SAI Block_x SLOTR value */ + tmpreg = SAI_Block_x->SLOTR; + /* Clear FBOFF, SLOTSZ, NBSLOT, SLOTEN bits */ + tmpreg &= SLOTR_CLEAR_MASK; + /* Configure SAI_Block_x Slot: First bit offset, Slot size, Number of Slot in + audio frame and slots activated in audio frame */ + /* Set FBOFF bits according to SAI_FirstBitOffset value */ + /* Set SLOTSZ bits according to SAI_SlotSize value */ + /* Set NBSLOT bits according to SAI_SlotNumber value */ + /* Set SLOTEN bits according to SAI_SlotActive value */ + tmpreg |= (uint32_t)(SAI_SlotInitStruct->SAI_FirstBitOffset | + SAI_SlotInitStruct->SAI_SlotSize | + SAI_SlotInitStruct->SAI_SlotActive | + (uint32_t)((SAI_SlotInitStruct->SAI_SlotNumber - 1) << 8)); + + /* Write to SAI_Block_x SLOTR */ + SAI_Block_x->SLOTR = tmpreg; +} + +/** + * @brief Fills each SAI_InitStruct member with its default value. + * @param SAI_InitStruct: pointer to a SAI_InitTypeDef structure which will + * be initialized. + * @retval None + */ +void SAI_StructInit(SAI_InitTypeDef* SAI_InitStruct) +{ + /* Reset SAI init structure parameters values */ + /* Initialize the SAI_AudioMode member */ + SAI_InitStruct->SAI_AudioMode = SAI_Mode_MasterTx; + /* Initialize the SAI_Protocol member */ + SAI_InitStruct->SAI_Protocol = SAI_Free_Protocol; + /* Initialize the SAI_DataSize member */ + SAI_InitStruct->SAI_DataSize = SAI_DataSize_8b; + /* Initialize the SAI_FirstBit member */ + SAI_InitStruct->SAI_FirstBit = SAI_FirstBit_MSB; + /* Initialize the SAI_ClockStrobing member */ + SAI_InitStruct->SAI_ClockStrobing = SAI_ClockStrobing_FallingEdge; + /* Initialize the SAI_Synchro member */ + SAI_InitStruct->SAI_Synchro = SAI_Asynchronous; + /* Initialize the SAI_OUTDRIV member */ + SAI_InitStruct->SAI_OUTDRIV = SAI_OutputDrive_Disabled; + /* Initialize the SAI_NoDivider member */ + SAI_InitStruct->SAI_NoDivider = SAI_MasterDivider_Enabled; + /* Initialize the SAI_MasterDivider member */ + SAI_InitStruct->SAI_MasterDivider = 0; + /* Initialize the SAI_FIFOThreshold member */ + SAI_InitStruct->SAI_FIFOThreshold = SAI_Threshold_FIFOEmpty; +} + +/** + * @brief Fills each SAI_FrameInitStruct member with its default value. + * @param SAI_FrameInitStruct: pointer to a SAI_FrameInitTypeDef structure + * which will be initialized. + * @retval None + */ +void SAI_FrameStructInit(SAI_FrameInitTypeDef* SAI_FrameInitStruct) +{ + /* Reset SAI Frame init structure parameters values */ + /* Initialize the SAI_FrameLength member */ + SAI_FrameInitStruct->SAI_FrameLength = 8; + /* Initialize the SAI_ActiveFrameLength member */ + SAI_FrameInitStruct->SAI_ActiveFrameLength = 1; + /* Initialize the SAI_FSDefinition member */ + SAI_FrameInitStruct->SAI_FSDefinition = SAI_FS_StartFrame; + /* Initialize the SAI_FSPolarity member */ + SAI_FrameInitStruct->SAI_FSPolarity = SAI_FS_ActiveLow; + /* Initialize the SAI_FSOffset member */ + SAI_FrameInitStruct->SAI_FSOffset = SAI_FS_FirstBit; +} + +/** + * @brief Fills each SAI_SlotInitStruct member with its default value. + * @param SAI_SlotInitStruct: pointer to a SAI_SlotInitTypeDef structure + * which will be initialized. + * @retval None + */ +void SAI_SlotStructInit(SAI_SlotInitTypeDef* SAI_SlotInitStruct) +{ + /* Reset SAI Slot init structure parameters values */ + /* Initialize the SAI_FirstBitOffset member */ + SAI_SlotInitStruct->SAI_FirstBitOffset = 0; + /* Initialize the SAI_SlotSize member */ + SAI_SlotInitStruct->SAI_SlotSize = SAI_SlotSize_DataSize; + /* Initialize the SAI_SlotNumber member */ + SAI_SlotInitStruct->SAI_SlotNumber = 1; + /* Initialize the SAI_SlotActive member */ + SAI_SlotInitStruct->SAI_SlotActive = SAI_Slot_NotActive; + +} + +/** + * @brief Enables or disables the specified SAI Block peripheral. + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * @param NewState: new state of the SAI_Block_x peripheral. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void SAI_Cmd(SAI_Block_TypeDef* SAI_Block_x, FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + assert_param(IS_FUNCTIONAL_STATE(NewState)); + if (NewState != DISABLE) + { + /* Enable the selected SAI peripheral */ + SAI_Block_x->CR1 |= SAI_xCR1_SAIEN; + } + else + { + /* Disable the selected SAI peripheral */ + SAI_Block_x->CR1 &= ~(SAI_xCR1_SAIEN); + } +} + +/** + * @brief Configures the mono mode for the selected SAI block. + * + * @note This function has a meaning only when the number of slot is equal to 2. + * + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * @param SAI_MonoMode: specifies the SAI block mono mode. + * This parameter can be one of the following values: + * @arg SAI_MonoMode : Set mono audio mode + * @arg SAI_StreoMode : Set streo audio mode + * @retval None + */ +void SAI_MonoModeConfig(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_Mono_StreoMode) +{ + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + assert_param(IS_SAI_BLOCK_MONO_STREO_MODE(SAI_MonoMode)); + /* Clear MONO bit */ + SAI_Block_x->CR1 &= ~(SAI_xCR1_MONO); + /* Set new Mono Mode value */ + SAI_Block_x->CR1 |= SAI_MonoMode; +} + +/** + * @brief Configures the TRIState managment on data line for the selected SAI block. + * + * @note This function has a meaning only when the SAI block is configured in transmitter + * + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * @param SAI_TRIState: specifies the SAI block TRIState management. + * This parameter can be one of the following values: + * @arg SAI_Output_NotReleased : SD output line is still drived by the SAI. + * @arg SAI_Output_Released : SD output line is released (HI-Z) + * @retval None + */ +void SAI_TRIStateConfig(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_TRIState) +{ + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + assert_param(IS_SAI_BLOCK_TRISTATE_MANAGEMENT(SAI_TRIState)); + /* Clear MONO bit */ + SAI_Block_x->CR1 &= ~(SAI_xCR1_MONO); + /* Set new Mono Mode value */ + SAI_Block_x->CR1 |= SAI_MonoMode; + +} + +/** + * @brief Configures the companding mode for the selected SAI block. + * + * @note The data expansion or data compression are determined by the state of + * SAI block selected (transmitter or receiver). + + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * @param SAI_CompandingMode: specifies the SAI block companding mode. + * This parameter can be one of the following values: + * @arg SAI_NoCompanding : no companding algorithm set + * @arg SAI_ULaw_1CPL_Companding : Set U law (algorithm 1's complement representation) + * @arg SAI_ALaw_1CPL_Companding : Set A law (algorithm 1's complement repesentation) + * @arg SAI_ULaw_2CPL_Companding : Set U law (algorithm 2's complement representation) + * @arg SAI_ALaw_2CPL_Companding : Set A law (algorithm 2's complement repesentation) + * @retval None + */ +void SAI_CompandingModeConfig(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_CompandingMode) +{ + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + assert_param(IS_SAI_BLOCK_COMPANDING_MODE(SAI_CompandingMode)); + /* Clear Companding Mode bits */ + SAI_Block_x->CR2 &= ~(SAI_xCR2_COMP); + /* Set new Companding Mode value */ + SAI_Block_x->CR2 |= SAI_CompandingMode; +} + +/** + * @brief Enables or disables the Mute mode for the selected SAI block. + * + * @note This function has a meaning only when the audio block is transmitter + * @note Mute mode is applied for an entire frame for all the valid slot + * It becomes active at the end of an audio frame when set somewhere in a frame. + * Mute mode exit occurs at the end of the frame in which the bit MUTE has been set. + * + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * @param NewState: new state of the SAIx block. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void SAI_MuteModeCmd(SAI_Block_TypeDef* SAI_Block_x, FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + assert_param(IS_FUNCTIONAL_STATE(NewState)); + if (NewState != DISABLE) + { + /* Enable the selected SAI block mute mode */ + SAI_Block_x->CR2 |= SAI_xCR2_MUTE; + } + else + { + /* Disable the selected SAI SS output */ + SAI_Block_x->CR2 &= ~(SAI_xCR2_MUTE); + } +} + +/** + * @brief Configure the mute value for the selected SAI block. + * + * @note This function has a meaning only when the audio block is transmitter + * @note the configuration last value sent during mute mode has only a meaning + * when the number of slot is lower or equal to 2 and if the MUTE bit is set. + * + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * @param SAI_MuteValue: specifies the SAI block mute value. + * This parameter can be one of the following values: + * @arg SAI_ZeroValue : bit value 0 is sent during Mute Mode + * @arg SAI_LastSentValue : Last value is sent during Mute Mode + * @retval None + */ +void SAI_MuteValueConfig(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_MuteValue) +{ + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + assert_param(IS_SAI_BLOCK_MUTE_VALUE(SAI_MuteValue)); + + /* Clear Mute value bits */ + SAI_Block_x->CR2 &= ~(SAI_xCR2_MUTEVAL); + /* Set new Mute value */ + SAI_Block_x->CR2 |= SAI_MuteValue; +} + +/** + * @brief Enables or disables the Mute mode for the selected SAI block. + * + * @note This function has a meaning only when the audio block is Receiver + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * @param SAI_MuteCounter: specifies the SAI block mute value. + * This parameter can be a number between 0 and 63. + + * @retval None + */ +void SAI_MuteFrameCounterConfig(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_MuteCounter) +{ + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + assert_param(IS_SAI_BLOCK_MUTE_COUNTER(SAI_MuteCounter)); + + /* Clear Mute value bits */ + SAI_Block_x->CR2 &= ~(SAI_xCR2_MUTECNT); + /* Set new Mute value */ + SAI_Block_x->CR2 |= (SAI_MuteCounter << 7); +} + +/** + * @brief Reinitialize the FIFO pointer + * + * @note The FIFO pointers can be reinitialized at anytime The data present + * into the FIFO, if it is not empty, will be lost. + * + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * @param NewState: new state of the selected SAI TI communication mode. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void SAI_FlushFIFO(SAI_Block_TypeDef* SAI_Block_x) +{ + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + + /* FIFO flush */ + SAI_Block_x->CR2 |= SAI_xCR2_FFLUSH; +} + +/** + * @} + */ + +/** @defgroup SAI_Group2 Data transfers functions + * @brief Data transfers functions + * +@verbatim + =============================================================================== + ##### Data transfers functions ##### + =============================================================================== + [..] + This section provides a set of functions allowing to manage the SAI data transfers. + [..] + In reception, data are received and then stored into an internal FIFO while + In transmission, data are first stored into an internal FIFO before being + transmitted. + [..] + The read access of the SAI_xDR register can be done using the SAI_ReceiveData() + function and returns the Rx buffered value. Whereas a write access to the SAI_DR + can be done using SAI_SendData() function and stores the written data into + Tx buffer. + +@endverbatim + * @{ + */ + +/** + * @brief Returns the most recent received data by the SAI block x peripheral. + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * + * @retval The value of the received data. + */ +uint32_t SAI_ReceiveData(SAI_Block_TypeDef* SAI_Block_x) +{ + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + + /* Return the data in the DR register */ + return SAI_Block_x->DR; +} + +/** + * @brief Transmits a Data through the SAI block x peripheral. + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * + * @param Data: Data to be transmitted. + * @retval None + */ +void SAI_SendData(SAI_Block_TypeDef* SAI_Block_x, uint32_t Data) +{ + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + + /* Write in the DR register the data to be sent */ + SAI_Block_x->DR = Data; +} + +/** + * @} + */ + +/** @defgroup SAI_Group3 DMA transfers management functions + * @brief DMA transfers management functions + * +@verbatim + =============================================================================== + ##### DMA transfers management functions ##### + =============================================================================== + +@endverbatim + * @{ + */ + +/** + * @brief Enables or disables the SAI Block x DMA interface. + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * @param NewState: new state of the selected SAI block DMA transfer request. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void SAI_DMACmd(SAI_Block_TypeDef* SAI_Block_x, FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + if (NewState != DISABLE) + { + /* Enable the selected SAI block mute mode */ + SAI_Block_x->CR1 |= SAI_xCR1_DMAEN; + } + else + { + /* Disable the selected SAI SS output */ + SAI_Block_x->CR1 &= ~(SAI_xCR1_DMAEN); + } +} + +/** + * @} + */ + +/** @defgroup SAI_Group4 Interrupts and flags management functions + * @brief Interrupts and flags management functions + * +@verbatim + =============================================================================== + ##### Interrupts and flags management functions ##### + =============================================================================== + [..] + This section provides a set of functions allowing to configure the SAI Interrupts + sources and check or clear the flags or pending bits status. + The user should identify which mode will be used in his application to manage + the communication: Polling mode, Interrupt mode or DMA mode. + + *** Polling Mode *** + ==================== + [..] + In Polling Mode, the SAI communication can be managed by 7 flags: + (#) SAI_FLAG_FREQ : to indicate if there is a FIFO Request to write or to read. + (#) SAI_FLAG_MUTEDET : to indicate if a MUTE frame detected + (#) SAI_FLAG_OVRUDR : to indicate if an Overrun or Underrun error occur + (#) SAI_FLAG_AFSDET : to indicate if there is the detection of a audio frame + synchronisation (FS) earlier than expected + (#) SAI_FLAG_LFSDET : to indicate if there is the detection of a audio frame + synchronisation (FS) later than expected + (#) SAI_FLAG_CNRDY : to indicate if the codec is not ready to communicate during + the reception of the TAG 0 (slot0) of the AC97 audio frame + (#) SAI_FLAG_WCKCFG: to indicate if wrong clock configuration in master mode + error occurs. + [..] + In this Mode it is advised to use the following functions: + (+) FlagStatus SAI_GetFlagStatus(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_FLAG); + (+) void SAI_ClearFlag(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_FLAG); + + *** Interrupt Mode *** + ====================== + [..] + In Interrupt Mode, the SAI communication can be managed by 7 interrupt sources + and 7 pending bits: + (+) Pending Bits: + (##) SAI_IT_FREQ : to indicate if there is a FIFO Request to write or to read. + (##) SAI_IT_MUTEDET : to indicate if a MUTE frame detected. + (##) SAI_IT_OVRUDR : to indicate if an Overrun or Underrun error occur. + (##) SAI_IT_AFSDET : to indicate if there is the detection of a audio frame + synchronisation (FS) earlier than expected. + (##) SAI_IT_LFSDET : to indicate if there is the detection of a audio frame + synchronisation (FS) later than expected. + (##) SAI_IT_CNRDY : to indicate if the codec is not ready to communicate during + the reception of the TAG 0 (slot0) of the AC97 audio frame. + (##) SAI_IT_WCKCFG: to indicate if wrong clock configuration in master mode + error occurs. + + (+) Interrupt Source: + (##) SAI_IT_FREQ : specifies the interrupt source for FIFO Request. + (##) SAI_IT_MUTEDET : specifies the interrupt source for MUTE frame detected. + (##) SAI_IT_OVRUDR : specifies the interrupt source for overrun or underrun error. + (##) SAI_IT_AFSDET : specifies the interrupt source for anticipated frame synchronization + detection interrupt. + (##) SAI_IT_LFSDET : specifies the interrupt source for late frame synchronization + detection interrupt. + (##) SAI_IT_CNRDY : specifies the interrupt source for codec not ready interrupt + (##) SAI_IT_WCKCFG: specifies the interrupt source for wrong clock configuration + interrupt. + [..] + In this Mode it is advised to use the following functions: + (+) void SAI_ITConfig(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_IT, FunctionalState NewState); + (+) ITStatus SAI_GetITStatus(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_IT); + (+) void SAI_ClearITPendingBit(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_IT); + + *** DMA Mode *** + ================ + [..] + In DMA Mode, each SAI audio block has an independent DMA interface in order to + read or to write into the SAI_xDR register (to hit the internal FIFO). + There is one DMA channel by audio block following basic DMA request/acknowledge + protocol. + [..] + In this Mode it is advised to use the following function: + (+) void SAI_DMACmd(SAI_Block_TypeDef* SAI_Block_x, FunctionalState NewState); + [..] + This section provides also functions allowing to + (+) Check the SAI Block enable status + (+)Check the FIFO status + + *** SAI Block Enable status *** + =============================== + [..] + After disabling a SAI Block, it is recommended to check (or wait until) the SAI Block + is effectively disabled. If a Block is disabled while an audio frame transfer is ongoing + the current frame will be transferred and the block will be effectively disabled only at + the end of audio frame. + To monitor this state it is possible to use the following function: + (+) FunctionalState SAI_GetCmdStatus(SAI_Block_TypeDef* SAI_Block_x); + + *** SAI Block FIFO status *** + ============================= + [..] + It is possible to monitor the FIFO status when a transfer is ongoing using the following + function: + (+) uint32_t SAI_GetFIFOStatus(SAI_Block_TypeDef* SAI_Block_x); + +@endverbatim + * @{ + */ + +/** + * @brief Enables or disables the specified SAI Block interrupts. + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * @param SAI_IT: specifies the SAI interrupt source to be enabled or disabled. + * This parameter can be one of the following values: + * @arg SAI_IT_FREQ: FIFO Request interrupt mask + * @arg SAI_IT_MUTEDET: MUTE detection interrupt mask + * @arg SAI_IT_OVRUDR: overrun/underrun interrupt mask + * @arg SAI_IT_AFSDET: anticipated frame synchronization detection + * interrupt mask + * @arg SAI_IT_LFSDET: late frame synchronization detection interrupt + * mask + * @arg SAI_IT_CNRDY: codec not ready interrupt mask + * @arg SAI_IT_WCKCFG: wrong clock configuration interrupt mask + * @param NewState: new state of the specified SAI interrupt. + * This parameter can be: ENABLE or DISABLE. + * @retval None + */ +void SAI_ITConfig(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_IT, FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + assert_param(IS_FUNCTIONAL_STATE(NewState)); + assert_param(IS_SAI_BLOCK_CONFIG_IT(SAI_IT)); + + if (NewState != DISABLE) + { + /* Enable the selected SAI Block interrupt */ + SAI_Block_x->IMR |= SAI_IT; + } + else + { + /* Disable the selected SAI Block interrupt */ + SAI_Block_x->IMR &= ~(SAI_IT); + } +} + +/** + * @brief Checks whether the specified SAI block x flag is set or not. + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * @param SAI_FLAG: specifies the SAI block flag to check. + * This parameter can be one of the following values: + * @arg SAI_FLAG_FREQ: FIFO Request flag. + * @arg SAI_FLAG_MUTEDET: MUTE detection flag. + * @arg SAI_FLAG_OVRUDR: overrun/underrun flag. + * @arg SAI_FLAG_WCKCFG: wrong clock configuration flag. + * @arg SAI_FLAG_CNRDY: codec not ready flag. + * @arg SAI_FLAG_AFSDET: anticipated frame synchronization detection flag. + * @arg SAI_FLAG_LFSDET: late frame synchronization detection flag. + * @retval The new state of SAI_FLAG (SET or RESET). + */ +FlagStatus SAI_GetFlagStatus(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_FLAG) +{ + FlagStatus bitstatus = RESET; + + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + assert_param(IS_SAI_BLOCK_GET_FLAG(SAI_FLAG)); + + /* Check the status of the specified SAI flag */ + if ((SAI_Block_x->SR & SAI_FLAG) != (uint32_t)RESET) + { + /* SAI_FLAG is set */ + bitstatus = SET; + } + else + { + /* SAI_FLAG is reset */ + bitstatus = RESET; + } + /* Return the SAI_FLAG status */ + return bitstatus; +} + +/** + * @brief Clears the specified SAI Block x flag. + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * @param SAI_FLAG: specifies the SAI block flag to check. + * This parameter can be one of the following values: + * @arg SAI_FLAG_MUTEDET: MUTE detection flag. + * @arg SAI_FLAG_OVRUDR: overrun/underrun flag. + * @arg SAI_FLAG_WCKCFG: wrong clock configuration flag. + * @arg SAI_FLAG_CNRDY: codec not ready flag. + * @arg SAI_FLAG_AFSDET: anticipated frame synchronization detection flag. + * @arg SAI_FLAG_LFSDET: late frame synchronization detection flag. + * + * @note FREQ (FIFO Request) flag is cleared : + * - When the audio block is transmitter and the FIFO is full or the FIFO + * has one data (one buffer mode) depending the bit FTH in the + * SAI_xCR2 register. + * - When the audio block is receiver and the FIFO is not empty + * + * @retval None + */ +void SAI_ClearFlag(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_FLAG) +{ + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + assert_param(IS_SAI_BLOCK_CLEAR_FLAG(SAI_FLAG)); + + /* Clear the selected SAI Block flag */ + SAI_Block_x->CLRFR |= SAI_FLAG; +} + +/** + * @brief Checks whether the specified SAI Block x interrupt has occurred or not. + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * @param SAI_IT: specifies the SAI interrupt source to be enabled or disabled. + * This parameter can be one of the following values: + * @arg SAI_IT_FREQ: FIFO Request interrupt + * @arg SAI_IT_MUTEDET: MUTE detection interrupt + * @arg SAI_IT_OVRUDR: overrun/underrun interrupt + * @arg SAI_IT_AFSDET: anticipated frame synchronization detection interrupt + * @arg SAI_IT_LFSDET: late frame synchronization detection interrupt + * @arg SAI_IT_CNRDY: codec not ready interrupt + * @arg SAI_IT_WCKCFG: wrong clock configuration interrupt + * + * @retval The new state of SAI_IT (SET or RESET). + */ +ITStatus SAI_GetITStatus(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_IT) +{ + ITStatus bitstatus = RESET; + uint32_t enablestatus = 0; + + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + assert_param(IS_SAI_BLOCK_CONFIG_IT(SAI_IT)); + + /* Get the SAI_IT enable bit status */ + enablestatus = (SAI_Block_x->IMR & SAI_IT) ; + + /* Check the status of the specified SAI interrupt */ + if (((SAI_Block_x->SR & SAI_IT) != (uint32_t)RESET) && (enablestatus != (uint32_t)RESET)) + { + /* SAI_IT is set */ + bitstatus = SET; + } + else + { + /* SAI_IT is reset */ + bitstatus = RESET; + } + /* Return the SAI_IT status */ + return bitstatus; +} + +/** + * @brief Clears the SAI Block x interrupt pending bit. + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * @param SAI_IT: specifies the SAI Block interrupt pending bit to clear. + * This parameter can be one of the following values: + * @arg SAI_IT_MUTEDET: MUTE detection interrupt. + * @arg SAI_IT_OVRUDR: overrun/underrun interrupt. + * @arg SAI_IT_WCKCFG: wrong clock configuration interrupt. + * @arg SAI_IT_CNRDY: codec not ready interrupt. + * @arg SAI_IT_AFSDET: anticipated frame synchronization detection interrupt. + * @arg SAI_IT_LFSDET: late frame synchronization detection interrupt. + * + * @note FREQ (FIFO Request) flag is cleared : + * - When the audio block is transmitter and the FIFO is full or the FIFO + * has one data (one buffer mode) depending the bit FTH in the + * SAI_xCR2 register. + * - When the audio block is receiver and the FIFO is not empty + * + * @retval None + */ +void SAI_ClearITPendingBit(SAI_Block_TypeDef* SAI_Block_x, uint32_t SAI_IT) +{ + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + assert_param(IS_SAI_BLOCK_CONFIG_IT(SAI_IT)); + + /* Clear the selected SAI Block x interrupt pending bit */ + SAI_Block_x->CLRFR |= SAI_IT; +} + +/** + * @brief Returns the status of EN bit for the specified SAI Block x. + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * + * @note After disabling a SAI Block, it is recommended to check (or wait until) + * the SAI Block is effectively disabled. If a Block is disabled while + * an audio frame transfer is ongoing, the current frame will be + * transferred and the block will be effectively disabled only at + * the end of audio frame. + * + * @retval Current state of the DMAy Streamx (ENABLE or DISABLE). + */ +FunctionalState SAI_GetCmdStatus(SAI_Block_TypeDef* SAI_Block_x) +{ + FunctionalState state = DISABLE; + + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + if ((SAI_Block_x->CR1 & (uint32_t)SAI_xCR1_SAIEN) != 0) + { + /* The selected SAI Block x EN bit is set (audio frame transfer is ongoing) */ + state = ENABLE; + } + else + { + /* The selected SAI Block x EN bit is cleared (SAI Block is disabled and + all transfers are complete) */ + state = DISABLE; + } + return state; +} + +/** + * @brief Returns the current SAI Block x FIFO filled level. + * @param SAI_Block_x: where x can be A or B to select the SAI Block peripheral. + * + * @retval The FIFO filling state. + * - SAI_FIFOStatus_Empty: when FIFO is empty + * - SAI_FIFOStatus_Less1QuarterFull: when FIFO is less than 1 quarter-full + * and not empty. + * - SAI_FIFOStatus_1QuarterFull: if more than 1 quarter-full. + * - SAI_FIFOStatus_HalfFull: if more than 1 half-full. + * - SAI_FIFOStatus_3QuartersFull: if more than 3 quarters-full. + * - SAI_FIFOStatus_Full: when FIFO is full + */ +uint32_t SAI_GetFIFOStatus(SAI_Block_TypeDef* SAI_Block_x) +{ + uint32_t tmpreg = 0; + + /* Check the parameters */ + assert_param(IS_SAI_BLOCK_PERIPH(SAI_Block_x)); + + /* Get the FIFO level bits */ + tmpreg = (uint32_t)((SAI_Block_x->SR & SAI_xSR_FLVL)); + + return tmpreg; +} + + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_sdio.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_sdio.c index 8bde1a1c..ca1c8958 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_sdio.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_sdio.c @@ -2,139 +2,140 @@ ****************************************************************************** * @file stm32f4xx_sdio.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the Secure digital input/output interface (SDIO) * peripheral: - * - Initialization and Configuration - * - Command path state machine (CPSM) management - * - Data path state machine (DPSM) management - * - SDIO IO Cards mode management - * - CE-ATA mode management - * - DMA transfers management - * - Interrupts and flags management + * + Initialization and Configuration + * + Command path state machine (CPSM) management + * + Data path state machine (DPSM) management + * + SDIO IO Cards mode management + * + CE-ATA mode management + * + DMA transfers management + * + Interrupts and flags management * - * @verbatim - * - * - * =================================================================== - * How to use this driver - * =================================================================== - * 1. The SDIO clock (SDIOCLK = 48 MHz) is coming from a specific output - * of PLL (PLL48CLK). Before to start working with SDIO peripheral - * make sure that the PLL is well configured. - * The SDIO peripheral uses two clock signals: - * - SDIO adapter clock (SDIOCLK = 48 MHz) - * - APB2 bus clock (PCLK2) - * PCLK2 and SDIO_CK clock frequencies must respect the following condition: - * Frequenc(PCLK2) >= (3 / 8 x Frequency(SDIO_CK)) - * - * 2. Enable peripheral clock using RCC_APB2PeriphClockCmd(RCC_APB2Periph_SDIO, ENABLE). - * - * 3. According to the SDIO mode, enable the GPIO clocks using - * RCC_AHB1PeriphClockCmd() function. - * The I/O can be one of the following configurations: - * - 1-bit data length: SDIO_CMD, SDIO_CK and D0. - * - 4-bit data length: SDIO_CMD, SDIO_CK and D[3:0]. - * - 8-bit data length: SDIO_CMD, SDIO_CK and D[7:0]. - * - * 4. Peripheral's alternate function: - * - Connect the pin to the desired peripherals' Alternate - * Function (AF) using GPIO_PinAFConfig() function - * - Configure the desired pin in alternate function by: - * GPIO_InitStruct->GPIO_Mode = GPIO_Mode_AF - * - Select the type, pull-up/pull-down and output speed via - * GPIO_PuPd, GPIO_OType and GPIO_Speed members - * - Call GPIO_Init() function - * - * 5. Program the Clock Edge, Clock Bypass, Clock Power Save, Bus Wide, - * hardware, flow control and the Clock Divider using the SDIO_Init() - * function. - * - * 6. Enable the Power ON State using the SDIO_SetPowerState(SDIO_PowerState_ON) - * function. - * - * 7. Enable the clock using the SDIO_ClockCmd() function. - * - * 8. Enable the NVIC and the corresponding interrupt using the function - * SDIO_ITConfig() if you need to use interrupt mode. - * - * 9. When using the DMA mode - * - Configure the DMA using DMA_Init() function - * - Active the needed channel Request using SDIO_DMACmd() function - * - * 10. Enable the DMA using the DMA_Cmd() function, when using DMA mode. - * - * 11. To control the CPSM (Command Path State Machine) and send - * commands to the card use the SDIO_SendCommand(), - * SDIO_GetCommandResponse() and SDIO_GetResponse() functions. - * First, user has to fill the command structure (pointer to - * SDIO_CmdInitTypeDef) according to the selected command to be sent. - * The parameters that should be filled are: - * - Command Argument - * - Command Index - * - Command Response type - * - Command Wait - * - CPSM Status (Enable or Disable) - * - * To check if the command is well received, read the SDIO_CMDRESP - * register using the SDIO_GetCommandResponse(). - * The SDIO responses registers (SDIO_RESP1 to SDIO_RESP2), use the - * SDIO_GetResponse() function. - * - * 12. To control the DPSM (Data Path State Machine) and send/receive - * data to/from the card use the SDIO_DataConfig(), SDIO_GetDataCounter(), - * SDIO_ReadData(), SDIO_WriteData() and SDIO_GetFIFOCount() functions. - * - * Read Operations - * --------------- - * a) First, user has to fill the data structure (pointer to - * SDIO_DataInitTypeDef) according to the selected data type to - * be received. - * The parameters that should be filled are: - * - Data TimeOut - * - Data Length - * - Data Block size - * - Data Transfer direction: should be from card (To SDIO) - * - Data Transfer mode - * - DPSM Status (Enable or Disable) - * - * b) Configure the SDIO resources to receive the data from the card - * according to selected transfer mode (Refer to Step 8, 9 and 10). - * - * c) Send the selected Read command (refer to step 11). - * - * d) Use the SDIO flags/interrupts to check the transfer status. - * - * Write Operations - * --------------- - * a) First, user has to fill the data structure (pointer to - * SDIO_DataInitTypeDef) according to the selected data type to - * be received. - * The parameters that should be filled are: - * - Data TimeOut - * - Data Length - * - Data Block size - * - Data Transfer direction: should be to card (To CARD) - * - Data Transfer mode - * - DPSM Status (Enable or Disable) - * - * b) Configure the SDIO resources to send the data to the card - * according to selected transfer mode (Refer to Step 8, 9 and 10). - * - * c) Send the selected Write command (refer to step 11). - * - * d) Use the SDIO flags/interrupts to check the transfer status. - * - * - * @endverbatim +@verbatim + + =================================================================== + ##### How to use this driver ##### + =================================================================== + [..] + (#) The SDIO clock (SDIOCLK = 48 MHz) is coming from a specific output of PLL + (PLL48CLK). Before to start working with SDIO peripheral make sure that the + PLL is well configured. + The SDIO peripheral uses two clock signals: + (++) SDIO adapter clock (SDIOCLK = 48 MHz) + (++) APB2 bus clock (PCLK2) + + -@@- PCLK2 and SDIO_CK clock frequencies must respect the following condition: + Frequency(PCLK2) >= (3 / 8 x Frequency(SDIO_CK)) + + (#) Enable peripheral clock using RCC_APB2PeriphClockCmd(RCC_APB2Periph_SDIO, ENABLE). + + (#) According to the SDIO mode, enable the GPIO clocks using + RCC_AHB1PeriphClockCmd() function. + The I/O can be one of the following configurations: + (++) 1-bit data length: SDIO_CMD, SDIO_CK and D0. + (++) 4-bit data length: SDIO_CMD, SDIO_CK and D[3:0]. + (++) 8-bit data length: SDIO_CMD, SDIO_CK and D[7:0]. + + (#) Peripheral alternate function: + (++) Connect the pin to the desired peripherals' Alternate Function (AF) + using GPIO_PinAFConfig() function + (++) Configure the desired pin in alternate function by: + GPIO_InitStruct->GPIO_Mode = GPIO_Mode_AF + (++) Select the type, pull-up/pull-down and output speed via GPIO_PuPd, + GPIO_OType and GPIO_Speed members + (++) Call GPIO_Init() function + + (#) Program the Clock Edge, Clock Bypass, Clock Power Save, Bus Wide, + hardware, flow control and the Clock Divider using the SDIO_Init() + function. + + (#) Enable the Power ON State using the SDIO_SetPowerState(SDIO_PowerState_ON) + function. + + (#) Enable the clock using the SDIO_ClockCmd() function. + + (#) Enable the NVIC and the corresponding interrupt using the function + SDIO_ITConfig() if you need to use interrupt mode. + + (#) When using the DMA mode + (++) Configure the DMA using DMA_Init() function + (++) Active the needed channel Request using SDIO_DMACmd() function + + (#) Enable the DMA using the DMA_Cmd() function, when using DMA mode. + + (#) To control the CPSM (Command Path State Machine) and send + commands to the card use the SDIO_SendCommand(), + SDIO_GetCommandResponse() and SDIO_GetResponse() functions. First, user has + to fill the command structure (pointer to SDIO_CmdInitTypeDef) according + to the selected command to be sent. + The parameters that should be filled are: + (++) Command Argument + (++) Command Index + (++) Command Response type + (++) Command Wait + (++) CPSM Status (Enable or Disable). + + -@@- To check if the command is well received, read the SDIO_CMDRESP + register using the SDIO_GetCommandResponse(). + The SDIO responses registers (SDIO_RESP1 to SDIO_RESP2), use the + SDIO_GetResponse() function. + + (#) To control the DPSM (Data Path State Machine) and send/receive + data to/from the card use the SDIO_DataConfig(), SDIO_GetDataCounter(), + SDIO_ReadData(), SDIO_WriteData() and SDIO_GetFIFOCount() functions. + + *** Read Operations *** + ======================= + [..] + (#) First, user has to fill the data structure (pointer to + SDIO_DataInitTypeDef) according to the selected data type to be received. + The parameters that should be filled are: + (++) Data TimeOut + (++) Data Length + (++) Data Block size + (++) Data Transfer direction: should be from card (To SDIO) + (++) Data Transfer mode + (++) DPSM Status (Enable or Disable) + + (#) Configure the SDIO resources to receive the data from the card + according to selected transfer mode (Refer to Step 8, 9 and 10). + + (#) Send the selected Read command (refer to step 11). + + (#) Use the SDIO flags/interrupts to check the transfer status. + + *** Write Operations *** + ======================== + [..] + (#) First, user has to fill the data structure (pointer to + SDIO_DataInitTypeDef) according to the selected data type to be received. + The parameters that should be filled are: + (++) Data TimeOut + (++) Data Length + (++) Data Block size + (++) Data Transfer direction: should be to card (To CARD) + (++) Data Transfer mode + (++) DPSM Status (Enable or Disable) + + (#) Configure the SDIO resources to send the data to the card according to + selected transfer mode (Refer to Step 8, 9 and 10). + + (#) Send the selected Write command (refer to step 11). + + (#) Use the SDIO flags/interrupts to check the transfer status. + + +@endverbatim * * ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -250,7 +251,7 @@ * @verbatim =============================================================================== - Initialization and Configuration functions + ##### Initialization and Configuration functions ##### =============================================================================== @endverbatim @@ -377,7 +378,7 @@ uint32_t SDIO_GetPowerState(void) * @verbatim =============================================================================== - Command path state machine (CPSM) management functions + ##### Command path state machine (CPSM) management functions ##### =============================================================================== This section provide functions allowing to program and read the Command path @@ -482,7 +483,7 @@ uint32_t SDIO_GetResponse(uint32_t SDIO_RESP) * @verbatim =============================================================================== - Data path state machine (DPSM) management functions + ##### Data path state machine (DPSM) management functions ##### =============================================================================== This section provide functions allowing to program and read the Data path @@ -600,7 +601,7 @@ uint32_t SDIO_GetFIFOCount(void) * @verbatim =============================================================================== - SDIO IO Cards mode management functions + ##### SDIO IO Cards mode management functions ##### =============================================================================== This section provide functions allowing to program and read the SDIO IO Cards. @@ -690,7 +691,7 @@ void SDIO_SendSDIOSuspendCmd(FunctionalState NewState) * @verbatim =============================================================================== - CE-ATA mode management functions + ##### CE-ATA mode management functions ##### =============================================================================== This section provide functions allowing to program and read the CE-ATA card. @@ -750,7 +751,7 @@ void SDIO_SendCEATACmd(FunctionalState NewState) * @verbatim =============================================================================== - DMA transfers management functions + ##### DMA transfers management functions ##### =============================================================================== This section provide functions allowing to program SDIO DMA transfer. @@ -782,7 +783,7 @@ void SDIO_DMACmd(FunctionalState NewState) * @verbatim =============================================================================== - Interrupts and flags management functions + ##### Interrupts and flags management functions ##### =============================================================================== diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_spi.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_spi.c index 6da44848..fa703070 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_spi.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_spi.c @@ -2,142 +2,143 @@ ****************************************************************************** * @file stm32f4xx_spi.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the Serial peripheral interface (SPI): - * - Initialization and Configuration - * - Data transfers functions - * - Hardware CRC Calculation - * - DMA transfers management - * - Interrupts and flags management + * + Initialization and Configuration + * + Data transfers functions + * + Hardware CRC Calculation + * + DMA transfers management + * + Interrupts and flags management * - * @verbatim - * - * - * =================================================================== - * How to use this driver - * =================================================================== - * - * 1. Enable peripheral clock using the following functions - * RCC_APB2PeriphClockCmd(RCC_APB2Periph_SPI1, ENABLE) for SPI1 - * RCC_APB1PeriphClockCmd(RCC_APB1Periph_SPI2, ENABLE) for SPI2 - * RCC_APB1PeriphResetCmd(RCC_APB1Periph_SPI3, ENABLE) for SPI3. - * - * 2. Enable SCK, MOSI, MISO and NSS GPIO clocks using RCC_AHB1PeriphClockCmd() - * function. - * In I2S mode, if an external clock source is used then the I2S CKIN pin GPIO - * clock should also be enabled. - * - * 3. Peripherals alternate function: - * - Connect the pin to the desired peripherals' Alternate - * Function (AF) using GPIO_PinAFConfig() function - * - Configure the desired pin in alternate function by: - * GPIO_InitStruct->GPIO_Mode = GPIO_Mode_AF - * - Select the type, pull-up/pull-down and output speed via - * GPIO_PuPd, GPIO_OType and GPIO_Speed members - * - Call GPIO_Init() function - * In I2S mode, if an external clock source is used then the I2S CKIN pin - * should be also configured in Alternate function Push-pull pull-up mode. - * - * 4. Program the Polarity, Phase, First Data, Baud Rate Prescaler, Slave - * Management, Peripheral Mode and CRC Polynomial values using the SPI_Init() - * function. - * In I2S mode, program the Mode, Standard, Data Format, MCLK Output, Audio - * frequency and Polarity using I2S_Init() function. - * For I2S mode, make sure that either: - * - I2S PLL is configured using the functions RCC_I2SCLKConfig(RCC_I2S2CLKSource_PLLI2S), - * RCC_PLLI2SCmd(ENABLE) and RCC_GetFlagStatus(RCC_FLAG_PLLI2SRDY). - * or - * - External clock source is configured using the function - * RCC_I2SCLKConfig(RCC_I2S2CLKSource_Ext) and after setting correctly the define constant - * I2S_EXTERNAL_CLOCK_VAL in the stm32f4xx_conf.h file. - * - * 5. Enable the NVIC and the corresponding interrupt using the function - * SPI_ITConfig() if you need to use interrupt mode. - * - * 6. When using the DMA mode - * - Configure the DMA using DMA_Init() function - * - Active the needed channel Request using SPI_I2S_DMACmd() function - * - * 7. Enable the SPI using the SPI_Cmd() function or enable the I2S using - * I2S_Cmd(). - * - * 8. Enable the DMA using the DMA_Cmd() function when using DMA mode. - * - * 9. Optionally, you can enable/configure the following parameters without - * re-initialization (i.e there is no need to call again SPI_Init() function): - * - When bidirectional mode (SPI_Direction_1Line_Rx or SPI_Direction_1Line_Tx) - * is programmed as Data direction parameter using the SPI_Init() function - * it can be possible to switch between SPI_Direction_Tx or SPI_Direction_Rx - * using the SPI_BiDirectionalLineConfig() function. - * - When SPI_NSS_Soft is selected as Slave Select Management parameter - * using the SPI_Init() function it can be possible to manage the - * NSS internal signal using the SPI_NSSInternalSoftwareConfig() function. - * - Reconfigure the data size using the SPI_DataSizeConfig() function - * - Enable or disable the SS output using the SPI_SSOutputCmd() function - * - * 10. To use the CRC Hardware calculation feature refer to the Peripheral - * CRC hardware Calculation subsection. - * - * - * It is possible to use SPI in I2S full duplex mode, in this case, each SPI - * peripheral is able to manage sending and receiving data simultaneously - * using two data lines. Each SPI peripheral has an extended block called I2Sxext - * (ie. I2S2ext for SPI2 and I2S3ext for SPI3). - * The extension block is not a full SPI IP, it is used only as I2S slave to - * implement full duplex mode. The extension block uses the same clock sources - * as its master. - * To configure I2S full duplex you have to: - * - * 1. Configure SPIx in I2S mode (I2S_Init() function) as described above. - * - * 2. Call the I2S_FullDuplexConfig() function using the same strucutre passed to - * I2S_Init() function. - * - * 3. Call I2S_Cmd() for SPIx then for its extended block. - * - * 4. To configure interrupts or DMA requests and to get/clear flag status, - * use I2Sxext instance for the extension block. - * - * Functions that can be called with I2Sxext instances are: - * I2S_Cmd(), I2S_FullDuplexConfig(), SPI_I2S_ReceiveData(), SPI_I2S_SendData(), - * SPI_I2S_DMACmd(), SPI_I2S_ITConfig(), SPI_I2S_GetFlagStatus(), SPI_I2S_ClearFlag(), - * SPI_I2S_GetITStatus() and SPI_I2S_ClearITPendingBit(). - * - * Example: To use SPI3 in Full duplex mode (SPI3 is Master Tx, I2S3ext is Slave Rx): - * - * RCC_APB1PeriphClockCmd(RCC_APB1Periph_SPI3, ENABLE); - * I2S_StructInit(&I2SInitStruct); - * I2SInitStruct.Mode = I2S_Mode_MasterTx; - * I2S_Init(SPI3, &I2SInitStruct); - * I2S_FullDuplexConfig(SPI3ext, &I2SInitStruct) - * I2S_Cmd(SPI3, ENABLE); - * I2S_Cmd(SPI3ext, ENABLE); - * ... - * while (SPI_I2S_GetFlagStatus(SPI2, SPI_FLAG_TXE) == RESET) - * {} - * SPI_I2S_SendData(SPI3, txdata[i]); - * ... - * while (SPI_I2S_GetFlagStatus(I2S3ext, SPI_FLAG_RXNE) == RESET) - * {} - * rxdata[i] = SPI_I2S_ReceiveData(I2S3ext); - * ... - * - * - * @note In I2S mode: if an external clock is used as source clock for the I2S, - * then the define I2S_EXTERNAL_CLOCK_VAL in file stm32f4xx_conf.h should - * be enabled and set to the value of the source clock frequency (in Hz). - * - * @note In SPI mode: To use the SPI TI mode, call the function SPI_TIModeCmd() - * just after calling the function SPI_Init(). - * - * @endverbatim +@verbatim + + =================================================================== + ##### How to use this driver ##### + =================================================================== + [..] + (#) Enable peripheral clock using the following functions + RCC_APB2PeriphClockCmd(RCC_APB2Periph_SPI1, ENABLE) for SPI1 + RCC_APB1PeriphClockCmd(RCC_APB1Periph_SPI2, ENABLE) for SPI2 + RCC_APB1PeriphResetCmd(RCC_APB1Periph_SPI3, ENABLE) for SPI3 + RCC_APB1PeriphResetCmd(RCC_APB1Periph_SPI3, ENABLE) for SPI4 + RCC_APB1PeriphResetCmd(RCC_APB1Periph_SPI3, ENABLE) for SPI5 + RCC_APB1PeriphResetCmd(RCC_APB1Periph_SPI3, ENABLE) for SPI6. + + (#) Enable SCK, MOSI, MISO and NSS GPIO clocks using RCC_AHB1PeriphClockCmd() + function. In I2S mode, if an external clock source is used then the I2S + CKIN pin GPIO clock should also be enabled. + + (#) Peripherals alternate function: + (++) Connect the pin to the desired peripherals' Alternate Function (AF) + using GPIO_PinAFConfig() function + (++) Configure the desired pin in alternate function by: + GPIO_InitStruct->GPIO_Mode = GPIO_Mode_AF + (++) Select the type, pull-up/pull-down and output speed via GPIO_PuPd, + GPIO_OType and GPIO_Speed members + (++) Call GPIO_Init() function In I2S mode, if an external clock source is + used then the I2S CKIN pin should be also configured in Alternate + function Push-pull pull-up mode. + + (#) Program the Polarity, Phase, First Data, Baud Rate Prescaler, Slave + Management, Peripheral Mode and CRC Polynomial values using the SPI_Init() + function. + In I2S mode, program the Mode, Standard, Data Format, MCLK Output, Audio + frequency and Polarity using I2S_Init() function. For I2S mode, make sure + that either: + (++) I2S PLL is configured using the functions + RCC_I2SCLKConfig(RCC_I2S2CLKSource_PLLI2S), RCC_PLLI2SCmd(ENABLE) and + RCC_GetFlagStatus(RCC_FLAG_PLLI2SRDY); or + (++) External clock source is configured using the function + RCC_I2SCLKConfig(RCC_I2S2CLKSource_Ext) and after setting correctly + the define constant I2S_EXTERNAL_CLOCK_VAL in the stm32f4xx_conf.h file. + + (#) Enable the NVIC and the corresponding interrupt using the function + SPI_ITConfig() if you need to use interrupt mode. + + (#) When using the DMA mode + (++) Configure the DMA using DMA_Init() function + (++) Active the needed channel Request using SPI_I2S_DMACmd() function + + (#) Enable the SPI using the SPI_Cmd() function or enable the I2S using + I2S_Cmd(). + + (#) Enable the DMA using the DMA_Cmd() function when using DMA mode. + + (#) Optionally, you can enable/configure the following parameters without + re-initialization (i.e there is no need to call again SPI_Init() function): + (++) When bidirectional mode (SPI_Direction_1Line_Rx or SPI_Direction_1Line_Tx) + is programmed as Data direction parameter using the SPI_Init() function + it can be possible to switch between SPI_Direction_Tx or SPI_Direction_Rx + using the SPI_BiDirectionalLineConfig() function. + (++) When SPI_NSS_Soft is selected as Slave Select Management parameter + using the SPI_Init() function it can be possible to manage the + NSS internal signal using the SPI_NSSInternalSoftwareConfig() function. + (++) Reconfigure the data size using the SPI_DataSizeConfig() function + (++) Enable or disable the SS output using the SPI_SSOutputCmd() function + + (#) To use the CRC Hardware calculation feature refer to the Peripheral + CRC hardware Calculation subsection. + + + [..] It is possible to use SPI in I2S full duplex mode, in this case, each SPI + peripheral is able to manage sending and receiving data simultaneously + using two data lines. Each SPI peripheral has an extended block called I2Sxext + (ie. I2S2ext for SPI2 and I2S3ext for SPI3). + The extension block is not a full SPI IP, it is used only as I2S slave to + implement full duplex mode. The extension block uses the same clock sources + as its master. + To configure I2S full duplex you have to: + + (#) Configure SPIx in I2S mode (I2S_Init() function) as described above. + + (#) Call the I2S_FullDuplexConfig() function using the same strucutre passed to + I2S_Init() function. + + (#) Call I2S_Cmd() for SPIx then for its extended block. + + (#) To configure interrupts or DMA requests and to get/clear flag status, + use I2Sxext instance for the extension block. + + [..] Functions that can be called with I2Sxext instances are: I2S_Cmd(), + I2S_FullDuplexConfig(), SPI_I2S_ReceiveData(), SPI_I2S_SendData(), + SPI_I2S_DMACmd(), SPI_I2S_ITConfig(), SPI_I2S_GetFlagStatus(), + SPI_I2S_ClearFlag(), SPI_I2S_GetITStatus() and SPI_I2S_ClearITPendingBit(). + + Example: To use SPI3 in Full duplex mode (SPI3 is Master Tx, I2S3ext is Slave Rx): + + RCC_APB1PeriphClockCmd(RCC_APB1Periph_SPI3, ENABLE); + I2S_StructInit(&I2SInitStruct); + I2SInitStruct.Mode = I2S_Mode_MasterTx; + I2S_Init(SPI3, &I2SInitStruct); + I2S_FullDuplexConfig(SPI3ext, &I2SInitStruct) + I2S_Cmd(SPI3, ENABLE); + I2S_Cmd(SPI3ext, ENABLE); + ... + while (SPI_I2S_GetFlagStatus(SPI2, SPI_FLAG_TXE) == RESET) + {} + SPI_I2S_SendData(SPI3, txdata[i]); + ... + while (SPI_I2S_GetFlagStatus(I2S3ext, SPI_FLAG_RXNE) == RESET) + {} + rxdata[i] = SPI_I2S_ReceiveData(I2S3ext); + ... + + [..] + (@) In I2S mode: if an external clock is used as source clock for the I2S, + then the define I2S_EXTERNAL_CLOCK_VAL in file stm32f4xx_conf.h should + be enabled and set to the value of the source clock frequency (in Hz). + + (@) In SPI mode: To use the SPI TI mode, call the function SPI_TIModeCmd() + just after calling the function SPI_Init(). + +@endverbatim * ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -151,7 +152,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - ****************************************************************************** + ****************************************************************************** */ /* Includes ------------------------------------------------------------------*/ @@ -195,28 +196,27 @@ * @verbatim =============================================================================== - Initialization and Configuration functions + ##### Initialization and Configuration functions ##### =============================================================================== - - This section provides a set of functions allowing to initialize the SPI Direction, - SPI Mode, SPI Data Size, SPI Polarity, SPI Phase, SPI NSS Management, SPI Baud - Rate Prescaler, SPI First Bit and SPI CRC Polynomial. + [..] This section provides a set of functions allowing to initialize the SPI + Direction, SPI Mode, SPI Data Size, SPI Polarity, SPI Phase, SPI NSS + Management, SPI Baud Rate Prescaler, SPI First Bit and SPI CRC Polynomial. - The SPI_Init() function follows the SPI configuration procedures for Master mode - and Slave mode (details for these procedures are available in reference manual - (RM0090)). + [..] The SPI_Init() function follows the SPI configuration procedures for Master + mode and Slave mode (details for these procedures are available in reference + manual (RM0090)). @endverbatim * @{ */ /** - * @brief Deinitialize the SPIx peripheral registers to their default reset values. - * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2 or 3 + * @brief De-initialize the SPIx peripheral registers to their default reset values. + * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 * in SPI mode or 2 or 3 in I2S mode. * - * @note The extended I2S blocks (ie. I2S2ext and I2S3ext blocks) are deinitialized - * when the relative I2S peripheral is deinitialized (the extended block's clock + * @note The extended I2S blocks (ie. I2S2ext and I2S3ext blocks) are de-initialized + * when the relative I2S peripheral is de-initialized (the extended block's clock * is managed by the I2S peripheral clock). * * @retval None @@ -239,15 +239,36 @@ void SPI_I2S_DeInit(SPI_TypeDef* SPIx) RCC_APB1PeriphResetCmd(RCC_APB1Periph_SPI2, ENABLE); /* Release SPI2 from reset state */ RCC_APB1PeriphResetCmd(RCC_APB1Periph_SPI2, DISABLE); - } - else + } + else if (SPIx == SPI3) { - if (SPIx == SPI3) + /* Enable SPI3 reset state */ + RCC_APB1PeriphResetCmd(RCC_APB1Periph_SPI3, ENABLE); + /* Release SPI3 from reset state */ + RCC_APB1PeriphResetCmd(RCC_APB1Periph_SPI3, DISABLE); + } + else if (SPIx == SPI4) + { + /* Enable SPI4 reset state */ + RCC_APB2PeriphResetCmd(RCC_APB2Periph_SPI4, ENABLE); + /* Release SPI4 from reset state */ + RCC_APB2PeriphResetCmd(RCC_APB2Periph_SPI4, DISABLE); + } + else if (SPIx == SPI5) + { + /* Enable SPI5 reset state */ + RCC_APB2PeriphResetCmd(RCC_APB2Periph_SPI5, ENABLE); + /* Release SPI5 from reset state */ + RCC_APB2PeriphResetCmd(RCC_APB2Periph_SPI5, DISABLE); + } + else + { + if (SPIx == SPI6) { - /* Enable SPI3 reset state */ - RCC_APB1PeriphResetCmd(RCC_APB1Periph_SPI3, ENABLE); - /* Release SPI3 from reset state */ - RCC_APB1PeriphResetCmd(RCC_APB1Periph_SPI3, DISABLE); + /* Enable SPI6 reset state */ + RCC_APB2PeriphResetCmd(RCC_APB2Periph_SPI6, ENABLE); + /* Release SPI6 from reset state */ + RCC_APB2PeriphResetCmd(RCC_APB2Periph_SPI6, DISABLE); } } } @@ -255,7 +276,7 @@ void SPI_I2S_DeInit(SPI_TypeDef* SPIx) /** * @brief Initializes the SPIx peripheral according to the specified * parameters in the SPI_InitStruct. - * @param SPIx: where x can be 1, 2 or 3 to select the SPI peripheral. + * @param SPIx: where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. * @param SPI_InitStruct: pointer to a SPI_InitTypeDef structure that * contains the configuration information for the specified SPI peripheral. * @retval None @@ -400,10 +421,17 @@ void I2S_Init(SPI_TypeDef* SPIx, I2S_InitTypeDef* I2S_InitStruct) (RCC_PLLI2SCFGR_PLLI2SR >> 28)); /* Get the PLLM value */ - pllm = (uint32_t)(RCC->PLLCFGR & RCC_PLLCFGR_PLLM); - - /* Get the I2S source clock value */ - i2sclk = (uint32_t)(((HSE_VALUE / pllm) * plln) / pllr); + pllm = (uint32_t)(RCC->PLLCFGR & RCC_PLLCFGR_PLLM); + + if((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSE) + { + /* Get the I2S source clock value */ + i2sclk = (uint32_t)(((HSE_VALUE / pllm) * plln) / pllr); + } + else + { /* Get the I2S source clock value */ + i2sclk = (uint32_t)(((HSI_VALUE / pllm) * plln) / pllr); + } #endif /* I2S_EXTERNAL_CLOCK_VAL */ /* Compute the Real divider depending on the MCLK output state, with a floating point */ @@ -508,7 +536,7 @@ void I2S_StructInit(I2S_InitTypeDef* I2S_InitStruct) /** * @brief Enables or disables the specified SPI peripheral. - * @param SPIx: where x can be 1, 2 or 3 to select the SPI peripheral. + * @param SPIx: where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. * @param NewState: new state of the SPIx peripheral. * This parameter can be: ENABLE or DISABLE. * @retval None @@ -558,7 +586,7 @@ void I2S_Cmd(SPI_TypeDef* SPIx, FunctionalState NewState) /** * @brief Configures the data size for the selected SPI. - * @param SPIx: where x can be 1, 2 or 3 to select the SPI peripheral. + * @param SPIx: where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. * @param SPI_DataSize: specifies the SPI data size. * This parameter can be one of the following values: * @arg SPI_DataSize_16b: Set data frame format to 16bit @@ -578,7 +606,7 @@ void SPI_DataSizeConfig(SPI_TypeDef* SPIx, uint16_t SPI_DataSize) /** * @brief Selects the data transfer direction in bidirectional mode for the specified SPI. - * @param SPIx: where x can be 1, 2 or 3 to select the SPI peripheral. + * @param SPIx: where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. * @param SPI_Direction: specifies the data transfer direction in bidirectional mode. * This parameter can be one of the following values: * @arg SPI_Direction_Tx: Selects Tx transmission direction @@ -604,7 +632,7 @@ void SPI_BiDirectionalLineConfig(SPI_TypeDef* SPIx, uint16_t SPI_Direction) /** * @brief Configures internally by software the NSS pin for the selected SPI. - * @param SPIx: where x can be 1, 2 or 3 to select the SPI peripheral. + * @param SPIx: where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. * @param SPI_NSSInternalSoft: specifies the SPI NSS internal state. * This parameter can be one of the following values: * @arg SPI_NSSInternalSoft_Set: Set NSS pin internally @@ -630,7 +658,7 @@ void SPI_NSSInternalSoftwareConfig(SPI_TypeDef* SPIx, uint16_t SPI_NSSInternalSo /** * @brief Enables or disables the SS output for the selected SPI. - * @param SPIx: where x can be 1, 2 or 3 to select the SPI peripheral. + * @param SPIx: where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. * @param NewState: new state of the SPIx SS output. * This parameter can be: ENABLE or DISABLE. * @retval None @@ -661,7 +689,7 @@ void SPI_SSOutputCmd(SPI_TypeDef* SPIx, FunctionalState NewState) * are not taken into consideration and are configured by hardware * respectively to the TI mode requirements. * - * @param SPIx: where x can be 1, 2 or 3 + * @param SPIx: where x can be 1, 2, 3, 4, 5 or 6 * @param NewState: new state of the selected SPI TI communication mode. * This parameter can be: ENABLE or DISABLE. * @retval None @@ -754,19 +782,18 @@ void I2S_FullDuplexConfig(SPI_TypeDef* I2Sxext, I2S_InitTypeDef* I2S_InitStruct) * @verbatim =============================================================================== - Data transfers functions + ##### Data transfers functions ##### =============================================================================== - This section provides a set of functions allowing to manage the SPI data transfers - - In reception, data are received and then stored into an internal Rx buffer while - In transmission, data are first stored into an internal Tx buffer before being - transmitted. + [..] This section provides a set of functions allowing to manage the SPI data + transfers. In reception, data are received and then stored into an internal + Rx buffer while. In transmission, data are first stored into an internal Tx + buffer before being transmitted. - The read access of the SPI_DR register can be done using the SPI_I2S_ReceiveData() - function and returns the Rx buffered value. Whereas a write access to the SPI_DR - can be done using SPI_I2S_SendData() function and stores the written data into - Tx buffer. + [..] The read access of the SPI_DR register can be done using the SPI_I2S_ReceiveData() + function and returns the Rx buffered value. Whereas a write access to the SPI_DR + can be done using SPI_I2S_SendData() function and stores the written data into + Tx buffer. @endverbatim * @{ @@ -774,7 +801,7 @@ void I2S_FullDuplexConfig(SPI_TypeDef* I2Sxext, I2S_InitTypeDef* I2S_InitStruct) /** * @brief Returns the most recent received data by the SPIx/I2Sx peripheral. - * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2 or 3 + * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 * in SPI mode or 2 or 3 in I2S mode or I2Sxext for I2S full duplex mode. * @retval The value of the received data. */ @@ -789,7 +816,7 @@ uint16_t SPI_I2S_ReceiveData(SPI_TypeDef* SPIx) /** * @brief Transmits a Data through the SPIx/I2Sx peripheral. - * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2 or 3 + * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 * in SPI mode or 2 or 3 in I2S mode or I2Sxext for I2S full duplex mode. * @param Data: Data to be transmitted. * @retval None @@ -812,65 +839,66 @@ void SPI_I2S_SendData(SPI_TypeDef* SPIx, uint16_t Data) * @verbatim =============================================================================== - Hardware CRC Calculation functions + ##### Hardware CRC Calculation functions ##### =============================================================================== - This section provides a set of functions allowing to manage the SPI CRC hardware - calculation - - SPI communication using CRC is possible through the following procedure: - 1. Program the Data direction, Polarity, Phase, First Data, Baud Rate Prescaler, - Slave Management, Peripheral Mode and CRC Polynomial values using the SPI_Init() - function. - 2. Enable the CRC calculation using the SPI_CalculateCRC() function. - 3. Enable the SPI using the SPI_Cmd() function - 4. Before writing the last data to the TX buffer, set the CRCNext bit using the - SPI_TransmitCRC() function to indicate that after transmission of the last - data, the CRC should be transmitted. - 5. After transmitting the last data, the SPI transmits the CRC. The SPI_CR1_CRCNEXT + [..] This section provides a set of functions allowing to manage the SPI CRC hardware + calculation + + [..] SPI communication using CRC is possible through the following procedure: + (#) Program the Data direction, Polarity, Phase, First Data, Baud Rate Prescaler, + Slave Management, Peripheral Mode and CRC Polynomial values using the SPI_Init() + function. + (#) Enable the CRC calculation using the SPI_CalculateCRC() function. + (#) Enable the SPI using the SPI_Cmd() function + (#) Before writing the last data to the TX buffer, set the CRCNext bit using the + SPI_TransmitCRC() function to indicate that after transmission of the last + data, the CRC should be transmitted. + (#) After transmitting the last data, the SPI transmits the CRC. The SPI_CR1_CRCNEXT bit is reset. The CRC is also received and compared against the SPI_RXCRCR value. If the value does not match, the SPI_FLAG_CRCERR flag is set and an interrupt can be generated when the SPI_I2S_IT_ERR interrupt is enabled. -@note It is advised not to read the calculated CRC values during the communication. - -@note When the SPI is in slave mode, be careful to enable CRC calculation only - when the clock is stable, that is, when the clock is in the steady state. - If not, a wrong CRC calculation may be done. In fact, the CRC is sensitive - to the SCK slave input clock as soon as CRCEN is set, and this, whatever - the value of the SPE bit. - -@note With high bitrate frequencies, be careful when transmitting the CRC. - As the number of used CPU cycles has to be as low as possible in the CRC - transfer phase, it is forbidden to call software functions in the CRC - transmission sequence to avoid errors in the last data and CRC reception. - In fact, CRCNEXT bit has to be written before the end of the transmission/reception - of the last data. - -@note For high bit rate frequencies, it is advised to use the DMA mode to avoid the - degradation of the SPI speed performance due to CPU accesses impacting the - SPI bandwidth. - -@note When the STM32F4xx is configured as slave and the NSS hardware mode is - used, the NSS pin needs to be kept low between the data phase and the CRC - phase. - -@note When the SPI is configured in slave mode with the CRC feature enabled, CRC - calculation takes place even if a high level is applied on the NSS pin. - This may happen for example in case of a multi-slave environment where the - communication master addresses slaves alternately. - -@note Between a slave de-selection (high level on NSS) and a new slave selection - (low level on NSS), the CRC value should be cleared on both master and slave - sides in order to resynchronize the master and slave for their respective - CRC calculation. - -@note To clear the CRC, follow the procedure below: - 1. Disable SPI using the SPI_Cmd() function - 2. Disable the CRC calculation using the SPI_CalculateCRC() function. - 3. Enable the CRC calculation using the SPI_CalculateCRC() function. - 4. Enable SPI using the SPI_Cmd() function. + [..] + (@) It is advised not to read the calculated CRC values during the communication. + + (@) When the SPI is in slave mode, be careful to enable CRC calculation only + when the clock is stable, that is, when the clock is in the steady state. + If not, a wrong CRC calculation may be done. In fact, the CRC is sensitive + to the SCK slave input clock as soon as CRCEN is set, and this, whatever + the value of the SPE bit. + + (@) With high bitrate frequencies, be careful when transmitting the CRC. + As the number of used CPU cycles has to be as low as possible in the CRC + transfer phase, it is forbidden to call software functions in the CRC + transmission sequence to avoid errors in the last data and CRC reception. + In fact, CRCNEXT bit has to be written before the end of the transmission/reception + of the last data. + + (@) For high bit rate frequencies, it is advised to use the DMA mode to avoid the + degradation of the SPI speed performance due to CPU accesses impacting the + SPI bandwidth. + + (@) When the STM32F4xx is configured as slave and the NSS hardware mode is + used, the NSS pin needs to be kept low between the data phase and the CRC + phase. + + (@) When the SPI is configured in slave mode with the CRC feature enabled, CRC + calculation takes place even if a high level is applied on the NSS pin. + This may happen for example in case of a multi-slave environment where the + communication master addresses slaves alternately. + + (@) Between a slave de-selection (high level on NSS) and a new slave selection + (low level on NSS), the CRC value should be cleared on both master and slave + sides in order to resynchronize the master and slave for their respective + CRC calculation. + + (@) To clear the CRC, follow the procedure below: + (#@) Disable SPI using the SPI_Cmd() function + (#@) Disable the CRC calculation using the SPI_CalculateCRC() function. + (#@) Enable the CRC calculation using the SPI_CalculateCRC() function. + (#@) Enable SPI using the SPI_Cmd() function. @endverbatim * @{ @@ -878,7 +906,7 @@ void SPI_I2S_SendData(SPI_TypeDef* SPIx, uint16_t Data) /** * @brief Enables or disables the CRC value calculation of the transferred bytes. - * @param SPIx: where x can be 1, 2 or 3 to select the SPI peripheral. + * @param SPIx: where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. * @param NewState: new state of the SPIx CRC value calculation. * This parameter can be: ENABLE or DISABLE. * @retval None @@ -902,7 +930,7 @@ void SPI_CalculateCRC(SPI_TypeDef* SPIx, FunctionalState NewState) /** * @brief Transmit the SPIx CRC value. - * @param SPIx: where x can be 1, 2 or 3 to select the SPI peripheral. + * @param SPIx: where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. * @retval None */ void SPI_TransmitCRC(SPI_TypeDef* SPIx) @@ -916,7 +944,7 @@ void SPI_TransmitCRC(SPI_TypeDef* SPIx) /** * @brief Returns the transmit or the receive CRC register value for the specified SPI. - * @param SPIx: where x can be 1, 2 or 3 to select the SPI peripheral. + * @param SPIx: where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. * @param SPI_CRC: specifies the CRC register to be read. * This parameter can be one of the following values: * @arg SPI_CRC_Tx: Selects Tx CRC register @@ -945,7 +973,7 @@ uint16_t SPI_GetCRC(SPI_TypeDef* SPIx, uint8_t SPI_CRC) /** * @brief Returns the CRC Polynomial register value for the specified SPI. - * @param SPIx: where x can be 1, 2 or 3 to select the SPI peripheral. + * @param SPIx: where x can be 1, 2, 3, 4, 5 or 6 to select the SPI peripheral. * @retval The CRC Polynomial register value. */ uint16_t SPI_GetCRCPolynomial(SPI_TypeDef* SPIx) @@ -966,7 +994,7 @@ uint16_t SPI_GetCRCPolynomial(SPI_TypeDef* SPIx) * @verbatim =============================================================================== - DMA transfers management functions + ##### DMA transfers management functions ##### =============================================================================== @endverbatim @@ -975,7 +1003,7 @@ uint16_t SPI_GetCRCPolynomial(SPI_TypeDef* SPIx) /** * @brief Enables or disables the SPIx/I2Sx DMA interface. - * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2 or 3 + * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 * in SPI mode or 2 or 3 in I2S mode or I2Sxext for I2S full duplex mode. * @param SPI_I2S_DMAReq: specifies the SPI DMA transfer request to be enabled or disabled. * This parameter can be any combination of the following values: @@ -1013,69 +1041,68 @@ void SPI_I2S_DMACmd(SPI_TypeDef* SPIx, uint16_t SPI_I2S_DMAReq, FunctionalState * @verbatim =============================================================================== - Interrupts and flags management functions + ##### Interrupts and flags management functions ##### =============================================================================== - - This section provides a set of functions allowing to configure the SPI Interrupts - sources and check or clear the flags or pending bits status. - The user should identify which mode will be used in his application to manage - the communication: Polling mode, Interrupt mode or DMA mode. + + [..] This section provides a set of functions allowing to configure the SPI Interrupts + sources and check or clear the flags or pending bits status. + The user should identify which mode will be used in his application to manage + the communication: Polling mode, Interrupt mode or DMA mode. - Polling Mode - ============= - In Polling Mode, the SPI/I2S communication can be managed by 9 flags: - 1. SPI_I2S_FLAG_TXE : to indicate the status of the transmit buffer register - 2. SPI_I2S_FLAG_RXNE : to indicate the status of the receive buffer register - 3. SPI_I2S_FLAG_BSY : to indicate the state of the communication layer of the SPI. - 4. SPI_FLAG_CRCERR : to indicate if a CRC Calculation error occur - 5. SPI_FLAG_MODF : to indicate if a Mode Fault error occur - 6. SPI_I2S_FLAG_OVR : to indicate if an Overrun error occur - 7. I2S_FLAG_TIFRFE: to indicate a Frame Format error occurs. - 8. I2S_FLAG_UDR: to indicate an Underrun error occurs. - 9. I2S_FLAG_CHSIDE: to indicate Channel Side. - -@note Do not use the BSY flag to handle each data transmission or reception. It is + *** Polling Mode *** + ==================== +[..] In Polling Mode, the SPI/I2S communication can be managed by 9 flags: + (#) SPI_I2S_FLAG_TXE : to indicate the status of the transmit buffer register + (#) SPI_I2S_FLAG_RXNE : to indicate the status of the receive buffer register + (#) SPI_I2S_FLAG_BSY : to indicate the state of the communication layer of the SPI. + (#) SPI_FLAG_CRCERR : to indicate if a CRC Calculation error occur + (#) SPI_FLAG_MODF : to indicate if a Mode Fault error occur + (#) SPI_I2S_FLAG_OVR : to indicate if an Overrun error occur + (#) I2S_FLAG_TIFRFE: to indicate a Frame Format error occurs. + (#) I2S_FLAG_UDR: to indicate an Underrun error occurs. + (#) I2S_FLAG_CHSIDE: to indicate Channel Side. + + (@) Do not use the BSY flag to handle each data transmission or reception. It is better to use the TXE and RXNE flags instead. - In this Mode it is advised to use the following functions: - - FlagStatus SPI_I2S_GetFlagStatus(SPI_TypeDef* SPIx, uint16_t SPI_I2S_FLAG); - - void SPI_I2S_ClearFlag(SPI_TypeDef* SPIx, uint16_t SPI_I2S_FLAG); - - Interrupt Mode - =============== - In Interrupt Mode, the SPI communication can be managed by 3 interrupt sources - and 7 pending bits: - Pending Bits: - ------------- - 1. SPI_I2S_IT_TXE : to indicate the status of the transmit buffer register - 2. SPI_I2S_IT_RXNE : to indicate the status of the receive buffer register - 3. SPI_IT_CRCERR : to indicate if a CRC Calculation error occur (available in SPI mode only) - 4. SPI_IT_MODF : to indicate if a Mode Fault error occur (available in SPI mode only) - 5. SPI_I2S_IT_OVR : to indicate if an Overrun error occur - 6. I2S_IT_UDR : to indicate an Underrun Error occurs (available in I2S mode only). - 7. I2S_FLAG_TIFRFE : to indicate a Frame Format error occurs (available in TI mode only). - - Interrupt Source: - ----------------- - 1. SPI_I2S_IT_TXE: specifies the interrupt source for the Tx buffer empty - interrupt. - 2. SPI_I2S_IT_RXNE : specifies the interrupt source for the Rx buffer not - empty interrupt. - 3. SPI_I2S_IT_ERR : specifies the interrupt source for the errors interrupt. - - In this Mode it is advised to use the following functions: - - void SPI_I2S_ITConfig(SPI_TypeDef* SPIx, uint8_t SPI_I2S_IT, FunctionalState NewState); - - ITStatus SPI_I2S_GetITStatus(SPI_TypeDef* SPIx, uint8_t SPI_I2S_IT); - - void SPI_I2S_ClearITPendingBit(SPI_TypeDef* SPIx, uint8_t SPI_I2S_IT); - - DMA Mode - ======== - In DMA Mode, the SPI communication can be managed by 2 DMA Channel requests: - 1. SPI_I2S_DMAReq_Tx: specifies the Tx buffer DMA transfer request - 2. SPI_I2S_DMAReq_Rx: specifies the Rx buffer DMA transfer request - - In this Mode it is advised to use the following function: - - void SPI_I2S_DMACmd(SPI_TypeDef* SPIx, uint16_t SPI_I2S_DMAReq, FunctionalState NewState); + [..] In this Mode it is advised to use the following functions: + (+) FlagStatus SPI_I2S_GetFlagStatus(SPI_TypeDef* SPIx, uint16_t SPI_I2S_FLAG); + (+) void SPI_I2S_ClearFlag(SPI_TypeDef* SPIx, uint16_t SPI_I2S_FLAG); + + *** Interrupt Mode *** + ====================== + [..] In Interrupt Mode, the SPI communication can be managed by 3 interrupt sources + and 7 pending bits: + (+) Pending Bits: + (##) SPI_I2S_IT_TXE : to indicate the status of the transmit buffer register + (##) SPI_I2S_IT_RXNE : to indicate the status of the receive buffer register + (##) SPI_IT_CRCERR : to indicate if a CRC Calculation error occur (available in SPI mode only) + (##) SPI_IT_MODF : to indicate if a Mode Fault error occur (available in SPI mode only) + (##) SPI_I2S_IT_OVR : to indicate if an Overrun error occur + (##) I2S_IT_UDR : to indicate an Underrun Error occurs (available in I2S mode only). + (##) I2S_FLAG_TIFRFE : to indicate a Frame Format error occurs (available in TI mode only). + + (+) Interrupt Source: + (##) SPI_I2S_IT_TXE: specifies the interrupt source for the Tx buffer empty + interrupt. + (##) SPI_I2S_IT_RXNE : specifies the interrupt source for the Rx buffer not + empty interrupt. + (##) SPI_I2S_IT_ERR : specifies the interrupt source for the errors interrupt. + + [..] In this Mode it is advised to use the following functions: + (+) void SPI_I2S_ITConfig(SPI_TypeDef* SPIx, uint8_t SPI_I2S_IT, FunctionalState NewState); + (+) ITStatus SPI_I2S_GetITStatus(SPI_TypeDef* SPIx, uint8_t SPI_I2S_IT); + (+) void SPI_I2S_ClearITPendingBit(SPI_TypeDef* SPIx, uint8_t SPI_I2S_IT); + + *** DMA Mode *** + ================ + [..] In DMA Mode, the SPI communication can be managed by 2 DMA Channel requests: + (#) SPI_I2S_DMAReq_Tx: specifies the Tx buffer DMA transfer request + (#) SPI_I2S_DMAReq_Rx: specifies the Rx buffer DMA transfer request + + [..] In this Mode it is advised to use the following function: + (+) void SPI_I2S_DMACmd(SPI_TypeDef* SPIx, uint16_t SPI_I2S_DMAReq, FunctionalState + NewState); @endverbatim * @{ @@ -1083,7 +1110,7 @@ void SPI_I2S_DMACmd(SPI_TypeDef* SPIx, uint16_t SPI_I2S_DMAReq, FunctionalState /** * @brief Enables or disables the specified SPI/I2S interrupts. - * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2 or 3 + * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 * in SPI mode or 2 or 3 in I2S mode or I2Sxext for I2S full duplex mode. * @param SPI_I2S_IT: specifies the SPI interrupt source to be enabled or disabled. * This parameter can be one of the following values: @@ -1123,7 +1150,7 @@ void SPI_I2S_ITConfig(SPI_TypeDef* SPIx, uint8_t SPI_I2S_IT, FunctionalState New /** * @brief Checks whether the specified SPIx/I2Sx flag is set or not. - * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2 or 3 + * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 * in SPI mode or 2 or 3 in I2S mode or I2Sxext for I2S full duplex mode. * @param SPI_I2S_FLAG: specifies the SPI flag to check. * This parameter can be one of the following values: @@ -1162,7 +1189,7 @@ FlagStatus SPI_I2S_GetFlagStatus(SPI_TypeDef* SPIx, uint16_t SPI_I2S_FLAG) /** * @brief Clears the SPIx CRC Error (CRCERR) flag. - * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2 or 3 + * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 * in SPI mode or 2 or 3 in I2S mode or I2Sxext for I2S full duplex mode. * @param SPI_I2S_FLAG: specifies the SPI flag to clear. * This function clears only CRCERR flag. @@ -1191,7 +1218,7 @@ void SPI_I2S_ClearFlag(SPI_TypeDef* SPIx, uint16_t SPI_I2S_FLAG) /** * @brief Checks whether the specified SPIx/I2Sx interrupt has occurred or not. - * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2 or 3 + * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 * in SPI mode or 2 or 3 in I2S mode or I2Sxext for I2S full duplex mode. * @param SPI_I2S_IT: specifies the SPI interrupt source to check. * This parameter can be one of the following values: @@ -1242,7 +1269,7 @@ ITStatus SPI_I2S_GetITStatus(SPI_TypeDef* SPIx, uint8_t SPI_I2S_IT) /** * @brief Clears the SPIx CRC Error (CRCERR) interrupt pending bit. - * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2 or 3 + * @param SPIx: To select the SPIx/I2Sx peripheral, where x can be: 1, 2, 3, 4, 5 or 6 * in SPI mode or 2 or 3 in I2S mode or I2Sxext for I2S full duplex mode. * @param SPI_I2S_IT: specifies the SPI interrupt pending bit to clear. * This function clears only CRCERR interrupt pending bit. diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_syscfg.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_syscfg.c index 42fedc8f..29f472df 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_syscfg.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_syscfg.c @@ -2,33 +2,34 @@ ****************************************************************************** * @file stm32f4xx_syscfg.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the SYSCFG peripheral. * - * @verbatim - * - * =================================================================== - * How to use this driver - * =================================================================== - * - * This driver provides functions for: - * - * 1. Remapping the memory accessible in the code area using SYSCFG_MemoryRemapConfig() - * - * 2. Manage the EXTI lines connection to the GPIOs using SYSCFG_EXTILineConfig() - * - * 3. Select the ETHERNET media interface (RMII/RII) using SYSCFG_ETH_MediaInterfaceConfig() - * - * @note SYSCFG APB clock must be enabled to get write access to SYSCFG registers, - * using RCC_APB2PeriphClockCmd(RCC_APB2Periph_SYSCFG, ENABLE); - * - * @endverbatim - * + @verbatim + + =============================================================================== + ##### How to use this driver ##### + =============================================================================== + [..] This driver provides functions for: + + (#) Remapping the memory accessible in the code area using SYSCFG_MemoryRemapConfig() + + (#) Swapping the internal flash Bank1 and Bank2 this features is only visible for + STM32F42xxx/43xxx devices Devices. + + (#) Manage the EXTI lines connection to the GPIOs using SYSCFG_EXTILineConfig() + + (#) Select the ETHERNET media interface (RMII/RII) using SYSCFG_ETH_MediaInterfaceConfig() + + -@- SYSCFG APB clock must be enabled to get write access to SYSCFG registers, + using RCC_APB2PeriphClockCmd(RCC_APB2Periph_SYSCFG, ENABLE); + + @endverbatim ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -62,6 +63,13 @@ /* Private define ------------------------------------------------------------*/ /* ------------ RCC registers bit address in the alias region ----------- */ #define SYSCFG_OFFSET (SYSCFG_BASE - PERIPH_BASE) +/* --- MEMRMP Register ---*/ +/* Alias word address of UFB_MODE bit */ +#define MEMRMP_OFFSET SYSCFG_OFFSET +#define UFB_MODE_BitNumber ((uint8_t)0x8) +#define UFB_MODE_BB (PERIPH_BB_BASE + (MEMRMP_OFFSET * 32) + (UFB_MODE_BitNumber * 4)) + + /* --- PMC Register ---*/ /* Alias word address of MII_RMII_SEL bit */ #define PMC_OFFSET (SYSCFG_OFFSET + 0x04) @@ -101,8 +109,10 @@ void SYSCFG_DeInit(void) * This parameter can be one of the following values: * @arg SYSCFG_MemoryRemap_Flash: Main Flash memory mapped at 0x00000000 * @arg SYSCFG_MemoryRemap_SystemFlash: System Flash memory mapped at 0x00000000 - * @arg SYSCFG_MemoryRemap_FSMC: FSMC (Bank1 (NOR/PSRAM 1 and 2) mapped at 0x00000000 + * @arg SYSCFG_MemoryRemap_FSMC: FSMC (Bank1 (NOR/PSRAM 1 and 2) mapped at 0x00000000 for STM32F405xx/407xx and STM32F415xx/417xx devices. + * @arg SYSCFG_MemoryRemap_FMC: FMC (Bank1 (NOR/PSRAM 1 and 2) mapped at 0x00000000 for STM32F42xxx/43xxx devices. * @arg SYSCFG_MemoryRemap_SRAM: Embedded SRAM (112kB) mapped at 0x00000000 + * @arg SYSCFG_MemoryRemap_SDRAM: FMC (External SDRAM) mapped at 0x00000000 for STM32F42xxx/43xxx devices. * @retval None */ void SYSCFG_MemoryRemapConfig(uint8_t SYSCFG_MemoryRemap) @@ -113,13 +123,40 @@ void SYSCFG_MemoryRemapConfig(uint8_t SYSCFG_MemoryRemap) SYSCFG->MEMRMP = SYSCFG_MemoryRemap; } +/** + * @brief Enables or disables the Interal FLASH Bank Swapping. + * + * @note This function can be used only for STM32F42xxx/43xxx devices. + * + * @param NewState: new state of Interal FLASH Bank swapping. + * This parameter can be one of the following values: + * @arg ENABLE: Flash Bank2 mapped at 0x08000000 (and aliased @0x00000000) + * and Flash Bank1 mapped at 0x08100000 (and aliased at 0x00100000) + * @arg DISABLE:(the default state) Flash Bank1 mapped at 0x08000000 (and aliased @0x0000 0000) + and Flash Bank2 mapped at 0x08100000 (and aliased at 0x00100000) + * @retval None + */ +void SYSCFG_MemorySwappingBank(FunctionalState NewState) +{ + /* Check the parameters */ + assert_param(IS_FUNCTIONAL_STATE(NewState)); + + *(__IO uint32_t *) UFB_MODE_BB = (uint32_t)NewState; +} + /** * @brief Selects the GPIO pin used as EXTI Line. * @param EXTI_PortSourceGPIOx : selects the GPIO port to be used as source for - * EXTI lines where x can be (A..I). + * EXTI lines where x can be (A..K) for STM32F42xxx/43xxx devices, (A..I) + * for STM32F405xx/407xx and STM32F415xx/417xx devices or (A, B, C, D and H) + * for STM32401xx devices. + * * @param EXTI_PinSourcex: specifies the EXTI line to be configured. * This parameter can be EXTI_PinSourcex where x can be (0..15, except - * for EXTI_PortSourceGPIOI x can be (0..11). + * for EXTI_PortSourceGPIOI x can be (0..11) for STM32F405xx/407xx + * and STM32F405xx/407xx devices and for EXTI_PortSourceGPIOK x can + * be (0..7) for STM32F42xxx/43xxx devices. + * * @retval None */ void SYSCFG_EXTILineConfig(uint8_t EXTI_PortSourceGPIOx, uint8_t EXTI_PinSourcex) diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_tim.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_tim.c index bcde47b8..79bd2650 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_tim.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_tim.c @@ -2,104 +2,103 @@ ****************************************************************************** * @file stm32f4xx_tim.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the TIM peripheral: - * - TimeBase management - * - Output Compare management - * - Input Capture management - * - Advanced-control timers (TIM1 and TIM8) specific features - * - Interrupts, DMA and flags management - * - Clocks management - * - Synchronization management - * - Specific interface management - * - Specific remapping management + * + TimeBase management + * + Output Compare management + * + Input Capture management + * + Advanced-control timers (TIM1 and TIM8) specific features + * + Interrupts, DMA and flags management + * + Clocks management + * + Synchronization management + * + Specific interface management + * + Specific remapping management * - * @verbatim - * - * =================================================================== - * How to use this driver - * =================================================================== - * This driver provides functions to configure and program the TIM - * of all STM32F4xx devices. - * These functions are split in 9 groups: - * - * 1. TIM TimeBase management: this group includes all needed functions - * to configure the TM Timebase unit: - * - Set/Get Prescaler - * - Set/Get Autoreload - * - Counter modes configuration - * - Set Clock division - * - Select the One Pulse mode - * - Update Request Configuration - * - Update Disable Configuration - * - Auto-Preload Configuration - * - Enable/Disable the counter - * - * 2. TIM Output Compare management: this group includes all needed - * functions to configure the Capture/Compare unit used in Output - * compare mode: - * - Configure each channel, independently, in Output Compare mode - * - Select the output compare modes - * - Select the Polarities of each channel - * - Set/Get the Capture/Compare register values - * - Select the Output Compare Fast mode - * - Select the Output Compare Forced mode - * - Output Compare-Preload Configuration - * - Clear Output Compare Reference - * - Select the OCREF Clear signal - * - Enable/Disable the Capture/Compare Channels - * - * 3. TIM Input Capture management: this group includes all needed - * functions to configure the Capture/Compare unit used in - * Input Capture mode: - * - Configure each channel in input capture mode - * - Configure Channel1/2 in PWM Input mode - * - Set the Input Capture Prescaler - * - Get the Capture/Compare values - * - * 4. Advanced-control timers (TIM1 and TIM8) specific features - * - Configures the Break input, dead time, Lock level, the OSSI, - * the OSSR State and the AOE(automatic output enable) - * - Enable/Disable the TIM peripheral Main Outputs - * - Select the Commutation event - * - Set/Reset the Capture Compare Preload Control bit - * - * 5. TIM interrupts, DMA and flags management - * - Enable/Disable interrupt sources - * - Get flags status - * - Clear flags/ Pending bits - * - Enable/Disable DMA requests - * - Configure DMA burst mode - * - Select CaptureCompare DMA request - * - * 6. TIM clocks management: this group includes all needed functions - * to configure the clock controller unit: - * - Select internal/External clock - * - Select the external clock mode: ETR(Mode1/Mode2), TIx or ITRx - * - * 7. TIM synchronization management: this group includes all needed - * functions to configure the Synchronization unit: - * - Select Input Trigger - * - Select Output Trigger - * - Select Master Slave Mode - * - ETR Configuration when used as external trigger - * - * 8. TIM specific interface management, this group includes all - * needed functions to use the specific TIM interface: - * - Encoder Interface Configuration - * - Select Hall Sensor - * - * 9. TIM specific remapping management includes the Remapping - * configuration of specific timers - * - * @endverbatim - * + @verbatim + =============================================================================== + ##### How to use this driver ##### + =============================================================================== + [..] + This driver provides functions to configure and program the TIM + of all STM32F4xx devices. + These functions are split in 9 groups: + + (#) TIM TimeBase management: this group includes all needed functions + to configure the TM Timebase unit: + (++) Set/Get Prescaler + (++) Set/Get Autoreload + (++) Counter modes configuration + (++) Set Clock division + (++) Select the One Pulse mode + (++) Update Request Configuration + (++) Update Disable Configuration + (++) Auto-Preload Configuration + (++) Enable/Disable the counter + + (#) TIM Output Compare management: this group includes all needed + functions to configure the Capture/Compare unit used in Output + compare mode: + (++) Configure each channel, independently, in Output Compare mode + (++) Select the output compare modes + (++) Select the Polarities of each channel + (++) Set/Get the Capture/Compare register values + (++) Select the Output Compare Fast mode + (++) Select the Output Compare Forced mode + (++) Output Compare-Preload Configuration + (++) Clear Output Compare Reference + (++) Select the OCREF Clear signal + (++) Enable/Disable the Capture/Compare Channels + + (#) TIM Input Capture management: this group includes all needed + functions to configure the Capture/Compare unit used in + Input Capture mode: + (++) Configure each channel in input capture mode + (++) Configure Channel1/2 in PWM Input mode + (++) Set the Input Capture Prescaler + (++) Get the Capture/Compare values + + (#) Advanced-control timers (TIM1 and TIM8) specific features + (++) Configures the Break input, dead time, Lock level, the OSSI, + the OSSR State and the AOE(automatic output enable) + (++) Enable/Disable the TIM peripheral Main Outputs + (++) Select the Commutation event + (++) Set/Reset the Capture Compare Preload Control bit + + (#) TIM interrupts, DMA and flags management + (++) Enable/Disable interrupt sources + (++) Get flags status + (++) Clear flags/ Pending bits + (++) Enable/Disable DMA requests + (++) Configure DMA burst mode + (++) Select CaptureCompare DMA request + + (#) TIM clocks management: this group includes all needed functions + to configure the clock controller unit: + (++) Select internal/External clock + (++) Select the external clock mode: ETR(Mode1/Mode2), TIx or ITRx + + (#) TIM synchronization management: this group includes all needed + functions to configure the Synchronization unit: + (++) Select Input Trigger + (++) Select Output Trigger + (++) Select Master Slave Mode + (++) ETR Configuration when used as external trigger + + (#) TIM specific interface management, this group includes all + needed functions to use the specific TIM interface: + (++) Encoder Interface Configuration + (++) Select Hall Sensor + + (#) TIM specific remapping management includes the Remapping + configuration of specific timers + + @endverbatim ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -163,29 +162,30 @@ static void TI4_Config(TIM_TypeDef* TIMx, uint16_t TIM_ICPolarity, uint16_t TIM_ * @verbatim =============================================================================== - TimeBase management functions + ##### TimeBase management functions ##### =============================================================================== - =================================================================== - TIM Driver: how to use it in Timing(Time base) Mode - =================================================================== - To use the Timer in Timing(Time base) mode, the following steps are mandatory: + + ##### TIM Driver: how to use it in Timing(Time base) Mode ##### + =============================================================================== + [..] + To use the Timer in Timing(Time base) mode, the following steps are mandatory: - 1. Enable TIM clock using RCC_APBxPeriphClockCmd(RCC_APBxPeriph_TIMx, ENABLE) function + (#) Enable TIM clock using RCC_APBxPeriphClockCmd(RCC_APBxPeriph_TIMx, ENABLE) function - 2. Fill the TIM_TimeBaseInitStruct with the desired parameters. + (#) Fill the TIM_TimeBaseInitStruct with the desired parameters. - 3. Call TIM_TimeBaseInit(TIMx, &TIM_TimeBaseInitStruct) to configure the Time Base unit + (#) Call TIM_TimeBaseInit(TIMx, &TIM_TimeBaseInitStruct) to configure the Time Base unit with the corresponding configuration - 4. Enable the NVIC if you need to generate the update interrupt. + (#) Enable the NVIC if you need to generate the update interrupt. - 5. Enable the corresponding interrupt using the function TIM_ITConfig(TIMx, TIM_IT_Update) + (#) Enable the corresponding interrupt using the function TIM_ITConfig(TIMx, TIM_IT_Update) - 6. Call the TIM_Cmd(ENABLE) function to enable the TIM counter. + (#) Call the TIM_Cmd(ENABLE) function to enable the TIM counter. - Note1: All other functions can be used separately to modify, if needed, - a specific feature of the Timer. + -@- All other functions can be used separately to modify, if needed, + a specific feature of the Timer. @endverbatim * @{ @@ -615,46 +615,48 @@ void TIM_Cmd(TIM_TypeDef* TIMx, FunctionalState NewState) * @verbatim =============================================================================== - Output Compare management functions + ##### Output Compare management functions ##### =============================================================================== - =================================================================== - TIM Driver: how to use it in Output Compare Mode - =================================================================== - To use the Timer in Output Compare mode, the following steps are mandatory: + + ##### TIM Driver: how to use it in Output Compare Mode ##### + =============================================================================== + [..] + To use the Timer in Output Compare mode, the following steps are mandatory: - 1. Enable TIM clock using RCC_APBxPeriphClockCmd(RCC_APBxPeriph_TIMx, ENABLE) function + (#) Enable TIM clock using RCC_APBxPeriphClockCmd(RCC_APBxPeriph_TIMx, ENABLE) + function - 2. Configure the TIM pins by configuring the corresponding GPIO pins + (#) Configure the TIM pins by configuring the corresponding GPIO pins - 2. Configure the Time base unit as described in the first part of this driver, - if needed, else the Timer will run with the default configuration: - - Autoreload value = 0xFFFF - - Prescaler value = 0x0000 - - Counter mode = Up counting - - Clock Division = TIM_CKD_DIV1 + (#) Configure the Time base unit as described in the first part of this driver, + (++) if needed, else the Timer will run with the default configuration: + Autoreload value = 0xFFFF + (++) Prescaler value = 0x0000 + (++) Counter mode = Up counting + (++) Clock Division = TIM_CKD_DIV1 - 3. Fill the TIM_OCInitStruct with the desired parameters including: - - The TIM Output Compare mode: TIM_OCMode - - TIM Output State: TIM_OutputState - - TIM Pulse value: TIM_Pulse - - TIM Output Compare Polarity : TIM_OCPolarity + (#) Fill the TIM_OCInitStruct with the desired parameters including: + (++) The TIM Output Compare mode: TIM_OCMode + (++) TIM Output State: TIM_OutputState + (++) TIM Pulse value: TIM_Pulse + (++) TIM Output Compare Polarity : TIM_OCPolarity - 4. Call TIM_OCxInit(TIMx, &TIM_OCInitStruct) to configure the desired channel with the - corresponding configuration + (#) Call TIM_OCxInit(TIMx, &TIM_OCInitStruct) to configure the desired + channel with the corresponding configuration - 5. Call the TIM_Cmd(ENABLE) function to enable the TIM counter. + (#) Call the TIM_Cmd(ENABLE) function to enable the TIM counter. - Note1: All other functions can be used separately to modify, if needed, - a specific feature of the Timer. + -@- All other functions can be used separately to modify, if needed, + a specific feature of the Timer. - Note2: In case of PWM mode, this function is mandatory: - TIM_OCxPreloadConfig(TIMx, TIM_OCPreload_ENABLE); + -@- In case of PWM mode, this function is mandatory: + TIM_OCxPreloadConfig(TIMx, TIM_OCPreload_ENABLE); - Note3: If the corresponding interrupt or DMA request are needed, the user should: - 1. Enable the NVIC (or the DMA) to use the TIM interrupts (or DMA requests). - 2. Enable the corresponding interrupt (or DMA request) using the function - TIM_ITConfig(TIMx, TIM_IT_CCx) (or TIM_DMA_Cmd(TIMx, TIM_DMA_CCx)) + -@- If the corresponding interrupt or DMA request are needed, the user should: + (+@) Enable the NVIC (or the DMA) to use the TIM interrupts (or DMA requests). + (+@) Enable the corresponding interrupt (or DMA request) using the function + TIM_ITConfig(TIMx, TIM_IT_CCx) (or TIM_DMA_Cmd(TIMx, TIM_DMA_CCx)) @endverbatim * @{ @@ -1837,49 +1839,51 @@ void TIM_CCxNCmd(TIM_TypeDef* TIMx, uint16_t TIM_Channel, uint16_t TIM_CCxN) * @verbatim =============================================================================== - Input Capture management functions + ##### Input Capture management functions ##### =============================================================================== - - =================================================================== - TIM Driver: how to use it in Input Capture Mode - =================================================================== - To use the Timer in Input Capture mode, the following steps are mandatory: + + ##### TIM Driver: how to use it in Input Capture Mode ##### + =============================================================================== + [..] + To use the Timer in Input Capture mode, the following steps are mandatory: - 1. Enable TIM clock using RCC_APBxPeriphClockCmd(RCC_APBxPeriph_TIMx, ENABLE) function + (#) Enable TIM clock using RCC_APBxPeriphClockCmd(RCC_APBxPeriph_TIMx, ENABLE) + function - 2. Configure the TIM pins by configuring the corresponding GPIO pins + (#) Configure the TIM pins by configuring the corresponding GPIO pins - 2. Configure the Time base unit as described in the first part of this driver, + (#) Configure the Time base unit as described in the first part of this driver, if needed, else the Timer will run with the default configuration: - - Autoreload value = 0xFFFF - - Prescaler value = 0x0000 - - Counter mode = Up counting - - Clock Division = TIM_CKD_DIV1 + (++) Autoreload value = 0xFFFF + (++) Prescaler value = 0x0000 + (++) Counter mode = Up counting + (++) Clock Division = TIM_CKD_DIV1 - 3. Fill the TIM_ICInitStruct with the desired parameters including: - - TIM Channel: TIM_Channel - - TIM Input Capture polarity: TIM_ICPolarity - - TIM Input Capture selection: TIM_ICSelection - - TIM Input Capture Prescaler: TIM_ICPrescaler - - TIM Input CApture filter value: TIM_ICFilter + (#) Fill the TIM_ICInitStruct with the desired parameters including: + (++) TIM Channel: TIM_Channel + (++) TIM Input Capture polarity: TIM_ICPolarity + (++) TIM Input Capture selection: TIM_ICSelection + (++) TIM Input Capture Prescaler: TIM_ICPrescaler + (++) TIM Input CApture filter value: TIM_ICFilter - 4. Call TIM_ICInit(TIMx, &TIM_ICInitStruct) to configure the desired channel with the - corresponding configuration and to measure only frequency or duty cycle of the input signal, - or, - Call TIM_PWMIConfig(TIMx, &TIM_ICInitStruct) to configure the desired channels with the - corresponding configuration and to measure the frequency and the duty cycle of the input signal + (#) Call TIM_ICInit(TIMx, &TIM_ICInitStruct) to configure the desired channel + with the corresponding configuration and to measure only frequency + or duty cycle of the input signal, or, Call TIM_PWMIConfig(TIMx, &TIM_ICInitStruct) + to configure the desired channels with the corresponding configuration + and to measure the frequency and the duty cycle of the input signal - 5. Enable the NVIC or the DMA to read the measured frequency. + (#) Enable the NVIC or the DMA to read the measured frequency. - 6. Enable the corresponding interrupt (or DMA request) to read the Captured value, - using the function TIM_ITConfig(TIMx, TIM_IT_CCx) (or TIM_DMA_Cmd(TIMx, TIM_DMA_CCx)) + (#) Enable the corresponding interrupt (or DMA request) to read the Captured + value, using the function TIM_ITConfig(TIMx, TIM_IT_CCx) + (or TIM_DMA_Cmd(TIMx, TIM_DMA_CCx)) - 7. Call the TIM_Cmd(ENABLE) function to enable the TIM counter. + (#) Call the TIM_Cmd(ENABLE) function to enable the TIM counter. - 8. Use TIM_GetCapturex(TIMx); to read the captured value. + (#) Use TIM_GetCapturex(TIMx); to read the captured value. - Note1: All other functions can be used separately to modify, if needed, - a specific feature of the Timer. + -@- All other functions can be used separately to modify, if needed, + a specific feature of the Timer. @endverbatim * @{ @@ -2182,23 +2186,23 @@ void TIM_SetIC4Prescaler(TIM_TypeDef* TIMx, uint16_t TIM_ICPSC) * @verbatim =============================================================================== - Advanced-control timers (TIM1 and TIM8) specific features + ##### Advanced-control timers (TIM1 and TIM8) specific features ##### =============================================================================== - - =================================================================== - TIM Driver: how to use the Break feature - =================================================================== - After configuring the Timer channel(s) in the appropriate Output Compare mode: + + ##### TIM Driver: how to use the Break feature ##### + =============================================================================== + [..] + After configuring the Timer channel(s) in the appropriate Output Compare mode: - 1. Fill the TIM_BDTRInitStruct with the desired parameters for the Timer + (#) Fill the TIM_BDTRInitStruct with the desired parameters for the Timer Break Polarity, dead time, Lock level, the OSSI/OSSR State and the AOE(automatic output enable). - 2. Call TIM_BDTRConfig(TIMx, &TIM_BDTRInitStruct) to configure the Timer + (#) Call TIM_BDTRConfig(TIMx, &TIM_BDTRInitStruct) to configure the Timer - 3. Enable the Main Output using TIM_CtrlPWMOutputs(TIM1, ENABLE) + (#) Enable the Main Output using TIM_CtrlPWMOutputs(TIM1, ENABLE) - 4. Once the break even occurs, the Timer's output signals are put in reset + (#) Once the break even occurs, the Timer's output signals are put in reset state or in a known state (according to the configuration made in TIM_BDTRConfig() function). @@ -2333,7 +2337,7 @@ void TIM_CCPreloadControl(TIM_TypeDef* TIMx, FunctionalState NewState) * @verbatim =============================================================================== - Interrupts, DMA and flags management functions + ##### Interrupts, DMA and flags management functions ##### =============================================================================== @endverbatim @@ -2663,7 +2667,7 @@ void TIM_SelectCCDMA(TIM_TypeDef* TIMx, FunctionalState NewState) * @verbatim =============================================================================== - Clocks management functions + ##### Clocks management functions ##### =============================================================================== @endverbatim @@ -2838,29 +2842,32 @@ void TIM_ETRClockMode2Config(TIM_TypeDef* TIMx, uint16_t TIM_ExtTRGPrescaler, * @verbatim =============================================================================== - Synchronization management functions + ##### Synchronization management functions ##### =============================================================================== - - =================================================================== - TIM Driver: how to use it in synchronization Mode - =================================================================== - Case of two/several Timers - ************************** - 1. Configure the Master Timers using the following functions: - - void TIM_SelectOutputTrigger(TIM_TypeDef* TIMx, uint16_t TIM_TRGOSource); - - void TIM_SelectMasterSlaveMode(TIM_TypeDef* TIMx, uint16_t TIM_MasterSlaveMode); - 2. Configure the Slave Timers using the following functions: - - void TIM_SelectInputTrigger(TIM_TypeDef* TIMx, uint16_t TIM_InputTriggerSource); - - void TIM_SelectSlaveMode(TIM_TypeDef* TIMx, uint16_t TIM_SlaveMode); + + ##### TIM Driver: how to use it in synchronization Mode ##### + =============================================================================== + [..] + + *** Case of two/several Timers *** + ================================== + [..] + (#) Configure the Master Timers using the following functions: + (++) void TIM_SelectOutputTrigger(TIM_TypeDef* TIMx, uint16_t TIM_TRGOSource); + (++) void TIM_SelectMasterSlaveMode(TIM_TypeDef* TIMx, uint16_t TIM_MasterSlaveMode); + (#) Configure the Slave Timers using the following functions: + (++) void TIM_SelectInputTrigger(TIM_TypeDef* TIMx, uint16_t TIM_InputTriggerSource); + (++) void TIM_SelectSlaveMode(TIM_TypeDef* TIMx, uint16_t TIM_SlaveMode); - Case of Timers and external trigger(ETR pin) - ******************************************** - 1. Configure the External trigger using this function: - - void TIM_ETRConfig(TIM_TypeDef* TIMx, uint16_t TIM_ExtTRGPrescaler, uint16_t TIM_ExtTRGPolarity, + *** Case of Timers and external trigger(ETR pin) *** + ==================================================== + [..] + (#) Configure the External trigger using this function: + (++) void TIM_ETRConfig(TIM_TypeDef* TIMx, uint16_t TIM_ExtTRGPrescaler, uint16_t TIM_ExtTRGPolarity, uint16_t ExtTRGFilter); - 2. Configure the Slave Timers using the following functions: - - void TIM_SelectInputTrigger(TIM_TypeDef* TIMx, uint16_t TIM_InputTriggerSource); - - void TIM_SelectSlaveMode(TIM_TypeDef* TIMx, uint16_t TIM_SlaveMode); + (#) Configure the Slave Timers using the following functions: + (++) void TIM_SelectInputTrigger(TIM_TypeDef* TIMx, uint16_t TIM_InputTriggerSource); + (++) void TIM_SelectSlaveMode(TIM_TypeDef* TIMx, uint16_t TIM_SlaveMode); @endverbatim * @{ @@ -3033,7 +3040,7 @@ void TIM_ETRConfig(TIM_TypeDef* TIMx, uint16_t TIM_ExtTRGPrescaler, * @verbatim =============================================================================== - Specific interface management functions + ##### Specific interface management functions ##### =============================================================================== @endverbatim @@ -3138,7 +3145,7 @@ void TIM_SelectHallSensor(TIM_TypeDef* TIMx, FunctionalState NewState) * @verbatim =============================================================================== - Specific remapping management function + ##### Specific remapping management function ##### =============================================================================== @endverbatim diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_usart.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_usart.c index bd385b98..27574787 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_usart.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_usart.c @@ -2,75 +2,76 @@ ****************************************************************************** * @file stm32f4xx_usart.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the Universal synchronous asynchronous receiver * transmitter (USART): - * - Initialization and Configuration - * - Data transfers - * - Multi-Processor Communication - * - LIN mode - * - Half-duplex mode - * - Smartcard mode - * - IrDA mode - * - DMA transfers management - * - Interrupts and flags management + * + Initialization and Configuration + * + Data transfers + * + Multi-Processor Communication + * + LIN mode + * + Half-duplex mode + * + Smartcard mode + * + IrDA mode + * + DMA transfers management + * + Interrupts and flags management * - * @verbatim - * - * =================================================================== - * How to use this driver - * =================================================================== - * 1. Enable peripheral clock using the follwoing functions - * RCC_APB2PeriphClockCmd(RCC_APB2Periph_USARTx, ENABLE) for USART1 and USART6 - * RCC_APB1PeriphClockCmd(RCC_APB1Periph_USARTx, ENABLE) for USART2, USART3, UART4 or UART5. - * - * 2. According to the USART mode, enable the GPIO clocks using - * RCC_AHB1PeriphClockCmd() function. (The I/O can be TX, RX, CTS, - * or/and SCLK). - * - * 3. Peripheral's alternate function: - * - Connect the pin to the desired peripherals' Alternate - * Function (AF) using GPIO_PinAFConfig() function - * - Configure the desired pin in alternate function by: - * GPIO_InitStruct->GPIO_Mode = GPIO_Mode_AF - * - Select the type, pull-up/pull-down and output speed via - * GPIO_PuPd, GPIO_OType and GPIO_Speed members - * - Call GPIO_Init() function - * - * 4. Program the Baud Rate, Word Length , Stop Bit, Parity, Hardware - * flow control and Mode(Receiver/Transmitter) using the USART_Init() - * function. - * - * 5. For synchronous mode, enable the clock and program the polarity, - * phase and last bit using the USART_ClockInit() function. - * - * 5. Enable the NVIC and the corresponding interrupt using the function - * USART_ITConfig() if you need to use interrupt mode. - * - * 6. When using the DMA mode - * - Configure the DMA using DMA_Init() function - * - Active the needed channel Request using USART_DMACmd() function - * - * 7. Enable the USART using the USART_Cmd() function. - * - * 8. Enable the DMA using the DMA_Cmd() function, when using DMA mode. - * - * Refer to Multi-Processor, LIN, half-duplex, Smartcard, IrDA sub-sections - * for more details - * - * In order to reach higher communication baudrates, it is possible to - * enable the oversampling by 8 mode using the function USART_OverSampling8Cmd(). - * This function should be called after enabling the USART clock (RCC_APBxPeriphClockCmd()) - * and before calling the function USART_Init(). - * - * @endverbatim - * + @verbatim + =============================================================================== + ##### How to use this driver ##### + =============================================================================== + [..] + (#) Enable peripheral clock using the following functions + RCC_APB2PeriphClockCmd(RCC_APB2Periph_USARTx, ENABLE) for USART1 and USART6 + RCC_APB1PeriphClockCmd(RCC_APB1Periph_USARTx, ENABLE) for USART2, USART3, + UART4 or UART5. + + (#) According to the USART mode, enable the GPIO clocks using + RCC_AHB1PeriphClockCmd() function. (The I/O can be TX, RX, CTS, + or/and SCLK). + + (#) Peripheral's alternate function: + (++) Connect the pin to the desired peripherals' Alternate + Function (AF) using GPIO_PinAFConfig() function + (++) Configure the desired pin in alternate function by: + GPIO_InitStruct->GPIO_Mode = GPIO_Mode_AF + (++) Select the type, pull-up/pull-down and output speed via + GPIO_PuPd, GPIO_OType and GPIO_Speed members + (++) Call GPIO_Init() function + + (#) Program the Baud Rate, Word Length , Stop Bit, Parity, Hardware + flow control and Mode(Receiver/Transmitter) using the USART_Init() + function. + + (#) For synchronous mode, enable the clock and program the polarity, + phase and last bit using the USART_ClockInit() function. + + (#) Enable the NVIC and the corresponding interrupt using the function + USART_ITConfig() if you need to use interrupt mode. + + (#) When using the DMA mode + (++) Configure the DMA using DMA_Init() function + (++) Active the needed channel Request using USART_DMACmd() function + + (#) Enable the USART using the USART_Cmd() function. + + (#) Enable the DMA using the DMA_Cmd() function, when using DMA mode. + + -@- Refer to Multi-Processor, LIN, half-duplex, Smartcard, IrDA sub-sections + for more details + + [..] + In order to reach higher communication baudrates, it is possible to + enable the oversampling by 8 mode using the function USART_OverSampling8Cmd(). + This function should be called after enabling the USART clock (RCC_APBxPeriphClockCmd()) + and before calling the function USART_Init(). + + @endverbatim ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -84,7 +85,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - ****************************************************************************** + ****************************************************************************** */ /* Includes ------------------------------------------------------------------*/ @@ -132,19 +133,19 @@ * @verbatim =============================================================================== - Initialization and Configuration functions + ##### Initialization and Configuration functions ##### =============================================================================== - - This subsection provides a set of functions allowing to initialize the USART - in asynchronous and in synchronous modes. - - For the asynchronous mode only these parameters can be configured: - - Baud Rate - - Word Length - - Stop Bit - - Parity: If the parity is enabled, then the MSB bit of the data written - in the data register is transmitted but is changed by the parity bit. - Depending on the frame length defined by the M bit (8-bits or 9-bits), - the possible USART frame formats are as listed in the following table: + [..] + This subsection provides a set of functions allowing to initialize the USART + in asynchronous and in synchronous modes. + (+) For the asynchronous mode only these parameters can be configured: + (++) Baud Rate + (++) Word Length + (++) Stop Bit + (++) Parity: If the parity is enabled, then the MSB bit of the data written + in the data register is transmitted but is changed by the parity bit. + Depending on the frame length defined by the M bit (8-bits or 9-bits), + the possible USART frame formats are as listed in the following table: +-------------------------------------------------------------+ | M bit | PCE bit | USART frame | |---------------------|---------------------------------------| @@ -156,20 +157,22 @@ |---------|-----------|---------------------------------------| | 1 | 1 | | SB | 8 bit data | PB | STB | | +-------------------------------------------------------------+ - - Hardware flow control - - Receiver/transmitter modes - - The USART_Init() function follows the USART asynchronous configuration procedure - (details for the procedure are available in reference manual (RM0090)). - - - For the synchronous mode in addition to the asynchronous mode parameters these - parameters should be also configured: - - USART Clock Enabled - - USART polarity - - USART phase - - USART LastBit + (++) Hardware flow control + (++) Receiver/transmitter modes + + [..] + The USART_Init() function follows the USART asynchronous configuration + procedure (details for the procedure are available in reference manual (RM0090)). + + (+) For the synchronous mode in addition to the asynchronous mode parameters these + parameters should be also configured: + (++) USART Clock Enabled + (++) USART polarity + (++) USART phase + (++) USART LastBit - These parameters can be configured using the USART_ClockInit() function. + [..] + These parameters can be configured using the USART_ClockInit() function. @endverbatim * @{ @@ -177,7 +180,7 @@ /** * @brief Deinitializes the USARTx peripheral registers to their default reset values. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @retval None */ @@ -210,13 +213,23 @@ void USART_DeInit(USART_TypeDef* USARTx) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_UART5, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_UART5, DISABLE); + } + else if (USARTx == USART6) + { + RCC_APB2PeriphResetCmd(RCC_APB2Periph_USART6, ENABLE); + RCC_APB2PeriphResetCmd(RCC_APB2Periph_USART6, DISABLE); + } + else if (USARTx == UART7) + { + RCC_APB1PeriphResetCmd(RCC_APB1Periph_UART7, ENABLE); + RCC_APB1PeriphResetCmd(RCC_APB1Periph_UART7, DISABLE); } else { - if (USARTx == USART6) + if (USARTx == UART8) { - RCC_APB2PeriphResetCmd(RCC_APB2Periph_USART6, ENABLE); - RCC_APB2PeriphResetCmd(RCC_APB2Periph_USART6, DISABLE); + RCC_APB1PeriphResetCmd(RCC_APB1Periph_UART8, ENABLE); + RCC_APB1PeriphResetCmd(RCC_APB1Periph_UART8, DISABLE); } } } @@ -224,7 +237,7 @@ void USART_DeInit(USART_TypeDef* USARTx) /** * @brief Initializes the USARTx peripheral according to the specified * parameters in the USART_InitStruct . - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param USART_InitStruct: pointer to a USART_InitTypeDef structure that contains * the configuration information for the specified USART peripheral. @@ -405,7 +418,7 @@ void USART_ClockStructInit(USART_ClockInitTypeDef* USART_ClockInitStruct) /** * @brief Enables or disables the specified USART peripheral. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param NewState: new state of the USARTx peripheral. * This parameter can be: ENABLE or DISABLE. @@ -431,7 +444,7 @@ void USART_Cmd(USART_TypeDef* USARTx, FunctionalState NewState) /** * @brief Sets the system clock prescaler. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param USART_Prescaler: specifies the prescaler clock. * @note The function is used for IrDA mode with UART4 and UART5. @@ -452,7 +465,7 @@ void USART_SetPrescaler(USART_TypeDef* USARTx, uint8_t USART_Prescaler) * @brief Enables or disables the USART's 8x oversampling mode. * @note This function has to be called before calling USART_Init() function * in order to have correct baudrate Divider value. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param NewState: new state of the USART 8x oversampling mode. * This parameter can be: ENABLE or DISABLE. @@ -478,7 +491,7 @@ void USART_OverSampling8Cmd(USART_TypeDef* USARTx, FunctionalState NewState) /** * @brief Enables or disables the USART's one bit sampling method. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param NewState: new state of the USART one bit sampling method. * This parameter can be: ENABLE or DISABLE. @@ -511,24 +524,24 @@ void USART_OneBitMethodCmd(USART_TypeDef* USARTx, FunctionalState NewState) * @verbatim =============================================================================== - Data transfers functions + ##### Data transfers functions ##### =============================================================================== - - This subsection provides a set of functions allowing to manage the USART data - transfers. - - During an USART reception, data shifts in least significant bit first through - the RX pin. In this mode, the USART_DR register consists of a buffer (RDR) - between the internal bus and the received shift register. - - When a transmission is taking place, a write instruction to the USART_DR register - stores the data in the TDR register and which is copied in the shift register - at the end of the current transmission. - - The read access of the USART_DR register can be done using the USART_ReceiveData() - function and returns the RDR buffered value. Whereas a write access to the USART_DR - can be done using USART_SendData() function and stores the written data into - TDR buffer. + [..] + This subsection provides a set of functions allowing to manage the USART data + transfers. + [..] + During an USART reception, data shifts in least significant bit first through + the RX pin. In this mode, the USART_DR register consists of a buffer (RDR) + between the internal bus and the received shift register. + [..] + When a transmission is taking place, a write instruction to the USART_DR register + stores the data in the TDR register and which is copied in the shift register + at the end of the current transmission. + [..] + The read access of the USART_DR register can be done using the USART_ReceiveData() + function and returns the RDR buffered value. Whereas a write access to the USART_DR + can be done using USART_SendData() function and stores the written data into + TDR buffer. @endverbatim * @{ @@ -536,7 +549,7 @@ void USART_OneBitMethodCmd(USART_TypeDef* USARTx, FunctionalState NewState) /** * @brief Transmits single data through the USARTx peripheral. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param Data: the data to transmit. * @retval None @@ -553,7 +566,7 @@ void USART_SendData(USART_TypeDef* USARTx, uint16_t Data) /** * @brief Returns the most recent received data by the USARTx peripheral. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @retval The received data. */ @@ -575,27 +588,28 @@ uint16_t USART_ReceiveData(USART_TypeDef* USARTx) * @verbatim =============================================================================== - Multi-Processor Communication functions + ##### Multi-Processor Communication functions ##### =============================================================================== - - This subsection provides a set of functions allowing to manage the USART - multiprocessor communication. - - For instance one of the USARTs can be the master, its TX output is connected to - the RX input of the other USART. The others are slaves, their respective TX outputs - are logically ANDed together and connected to the RX input of the master. - - USART multiprocessor communication is possible through the following procedure: - 1. Program the Baud rate, Word length = 9 bits, Stop bits, Parity, Mode transmitter - or Mode receiver and hardware flow control values using the USART_Init() - function. - 2. Configures the USART address using the USART_SetAddress() function. - 3. Configures the wake up method (USART_WakeUp_IdleLine or USART_WakeUp_AddressMark) - using USART_WakeUpConfig() function only for the slaves. - 4. Enable the USART using the USART_Cmd() function. - 5. Enter the USART slaves in mute mode using USART_ReceiverWakeUpCmd() function. - - The USART Slave exit from mute mode when receive the wake up condition. + [..] + This subsection provides a set of functions allowing to manage the USART + multiprocessor communication. + [..] + For instance one of the USARTs can be the master, its TX output is connected + to the RX input of the other USART. The others are slaves, their respective + TX outputs are logically ANDed together and connected to the RX input of the + master. + [..] + USART multiprocessor communication is possible through the following procedure: + (#) Program the Baud rate, Word length = 9 bits, Stop bits, Parity, Mode + transmitter or Mode receiver and hardware flow control values using + the USART_Init() function. + (#) Configures the USART address using the USART_SetAddress() function. + (#) Configures the wake up method (USART_WakeUp_IdleLine or USART_WakeUp_AddressMark) + using USART_WakeUpConfig() function only for the slaves. + (#) Enable the USART using the USART_Cmd() function. + (#) Enter the USART slaves in mute mode using USART_ReceiverWakeUpCmd() function. + [..] + The USART Slave exit from mute mode when receive the wake up condition. @endverbatim * @{ @@ -603,7 +617,7 @@ uint16_t USART_ReceiveData(USART_TypeDef* USARTx) /** * @brief Sets the address of the USART node. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param USART_Address: Indicates the address of the USART node. * @retval None @@ -622,7 +636,7 @@ void USART_SetAddress(USART_TypeDef* USARTx, uint8_t USART_Address) /** * @brief Determines if the USART is in mute mode or not. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param NewState: new state of the USART mute mode. * This parameter can be: ENABLE or DISABLE. @@ -647,7 +661,7 @@ void USART_ReceiverWakeUpCmd(USART_TypeDef* USARTx, FunctionalState NewState) } /** * @brief Selects the USART WakeUp method. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param USART_WakeUp: specifies the USART wakeup method. * This parameter can be one of the following values: @@ -674,41 +688,41 @@ void USART_WakeUpConfig(USART_TypeDef* USARTx, uint16_t USART_WakeUp) * @verbatim =============================================================================== - LIN mode functions + ##### LIN mode functions ##### =============================================================================== - - This subsection provides a set of functions allowing to manage the USART LIN - Mode communication. - - In LIN mode, 8-bit data format with 1 stop bit is required in accordance with - the LIN standard. - - Only this LIN Feature is supported by the USART IP: - - LIN Master Synchronous Break send capability and LIN slave break detection - capability : 13-bit break generation and 10/11 bit break detection - - - USART LIN Master transmitter communication is possible through the following procedure: - 1. Program the Baud rate, Word length = 8bits, Stop bits = 1bit, Parity, - Mode transmitter or Mode receiver and hardware flow control values using - the USART_Init() function. - 2. Enable the USART using the USART_Cmd() function. - 3. Enable the LIN mode using the USART_LINCmd() function. - 4. Send the break character using USART_SendBreak() function. - - USART LIN Master receiver communication is possible through the following procedure: - 1. Program the Baud rate, Word length = 8bits, Stop bits = 1bit, Parity, + [..] + This subsection provides a set of functions allowing to manage the USART LIN + Mode communication. + [..] + In LIN mode, 8-bit data format with 1 stop bit is required in accordance with + the LIN standard. + [..] + Only this LIN Feature is supported by the USART IP: + (+) LIN Master Synchronous Break send capability and LIN slave break detection + capability : 13-bit break generation and 10/11 bit break detection + + [..] + USART LIN Master transmitter communication is possible through the following + procedure: + (#) Program the Baud rate, Word length = 8bits, Stop bits = 1bit, Parity, Mode transmitter or Mode receiver and hardware flow control values using the USART_Init() function. - 2. Enable the USART using the USART_Cmd() function. - 3. Configures the break detection length using the USART_LINBreakDetectLengthConfig() - function. - 4. Enable the LIN mode using the USART_LINCmd() function. - - -@note In LIN mode, the following bits must be kept cleared: - - CLKEN in the USART_CR2 register, - - STOP[1:0], SCEN, HDSEL and IREN in the USART_CR3 register. + (#) Enable the USART using the USART_Cmd() function. + (#) Enable the LIN mode using the USART_LINCmd() function. + (#) Send the break character using USART_SendBreak() function. + [..] + USART LIN Master receiver communication is possible through the following procedure: + (#) Program the Baud rate, Word length = 8bits, Stop bits = 1bit, Parity, + Mode transmitter or Mode receiver and hardware flow control values using + the USART_Init() function. + (#) Enable the USART using the USART_Cmd() function. + (#) Configures the break detection length using the USART_LINBreakDetectLengthConfig() + function. + (#) Enable the LIN mode using the USART_LINCmd() function. + + -@- In LIN mode, the following bits must be kept cleared: + (+@) CLKEN in the USART_CR2 register, + (+@) STOP[1:0], SCEN, HDSEL and IREN in the USART_CR3 register. @endverbatim * @{ @@ -716,7 +730,7 @@ void USART_WakeUpConfig(USART_TypeDef* USARTx, uint16_t USART_WakeUp) /** * @brief Sets the USART LIN Break detection length. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param USART_LINBreakDetectLength: specifies the LIN break detection length. * This parameter can be one of the following values: @@ -736,7 +750,7 @@ void USART_LINBreakDetectLengthConfig(USART_TypeDef* USARTx, uint16_t USART_LINB /** * @brief Enables or disables the USART's LIN mode. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param NewState: new state of the USART LIN mode. * This parameter can be: ENABLE or DISABLE. @@ -762,7 +776,7 @@ void USART_LINCmd(USART_TypeDef* USARTx, FunctionalState NewState) /** * @brief Transmits break characters. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @retval None */ @@ -784,28 +798,28 @@ void USART_SendBreak(USART_TypeDef* USARTx) * @verbatim =============================================================================== - Half-duplex mode function + ##### Half-duplex mode function ##### =============================================================================== - - This subsection provides a set of functions allowing to manage the USART - Half-duplex communication. - - The USART can be configured to follow a single-wire half-duplex protocol where - the TX and RX lines are internally connected. - - USART Half duplex communication is possible through the following procedure: - 1. Program the Baud rate, Word length, Stop bits, Parity, Mode transmitter - or Mode receiver and hardware flow control values using the USART_Init() - function. - 2. Configures the USART address using the USART_SetAddress() function. - 3. Enable the USART using the USART_Cmd() function. - 4. Enable the half duplex mode using USART_HalfDuplexCmd() function. - - -@note The RX pin is no longer used -@note In Half-duplex mode the following bits must be kept cleared: - - LINEN and CLKEN bits in the USART_CR2 register. - - SCEN and IREN bits in the USART_CR3 register. + [..] + This subsection provides a set of functions allowing to manage the USART + Half-duplex communication. + [..] + The USART can be configured to follow a single-wire half-duplex protocol where + the TX and RX lines are internally connected. + [..] + USART Half duplex communication is possible through the following procedure: + (#) Program the Baud rate, Word length, Stop bits, Parity, Mode transmitter + or Mode receiver and hardware flow control values using the USART_Init() + function. + (#) Configures the USART address using the USART_SetAddress() function. + (#) Enable the USART using the USART_Cmd() function. + (#) Enable the half duplex mode using USART_HalfDuplexCmd() function. + + + -@- The RX pin is no longer used + -@- In Half-duplex mode the following bits must be kept cleared: + (+@) LINEN and CLKEN bits in the USART_CR2 register. + (+@) SCEN and IREN bits in the USART_CR3 register. @endverbatim * @{ @@ -813,7 +827,7 @@ void USART_SendBreak(USART_TypeDef* USARTx) /** * @brief Enables or disables the USART's Half Duplex communication. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param NewState: new state of the USART Communication. * This parameter can be: ENABLE or DISABLE. @@ -847,51 +861,50 @@ void USART_HalfDuplexCmd(USART_TypeDef* USARTx, FunctionalState NewState) * @verbatim =============================================================================== - Smartcard mode functions + ##### Smartcard mode functions ##### =============================================================================== - - This subsection provides a set of functions allowing to manage the USART - Smartcard communication. - - The Smartcard interface is designed to support asynchronous protocol Smartcards as - defined in the ISO 7816-3 standard. - - The USART can provide a clock to the smartcard through the SCLK output. - In smartcard mode, SCLK is not associated to the communication but is simply derived - from the internal peripheral input clock through a 5-bit prescaler. - - Smartcard communication is possible through the following procedure: - 1. Configures the Smartcard Prescaler using the USART_SetPrescaler() function. - 2. Configures the Smartcard Guard Time using the USART_SetGuardTime() function. - 3. Program the USART clock using the USART_ClockInit() function as following: - - USART Clock enabled - - USART CPOL Low - - USART CPHA on first edge - - USART Last Bit Clock Enabled - 4. Program the Smartcard interface using the USART_Init() function as following: - - Word Length = 9 Bits - - 1.5 Stop Bit - - Even parity - - BaudRate = 12096 baud - - Hardware flow control disabled (RTS and CTS signals) - - Tx and Rx enabled - 5. Optionally you can enable the parity error interrupt using the USART_ITConfig() - function - 6. Enable the USART using the USART_Cmd() function. - 7. Enable the Smartcard NACK using the USART_SmartCardNACKCmd() function. - 8. Enable the Smartcard interface using the USART_SmartCardCmd() function. - - Please refer to the ISO 7816-3 specification for more details. - - -@note It is also possible to choose 0.5 stop bit for receiving but it is recommended - to use 1.5 stop bits for both transmitting and receiving to avoid switching - between the two configurations. -@note In smartcard mode, the following bits must be kept cleared: - - LINEN bit in the USART_CR2 register. - - HDSEL and IREN bits in the USART_CR3 register. -@note Smartcard mode is available on USART peripherals only (not available on UART4 - and UART5 peripherals). + [..] + This subsection provides a set of functions allowing to manage the USART + Smartcard communication. + [..] + The Smartcard interface is designed to support asynchronous protocol Smartcards as + defined in the ISO 7816-3 standard. + [..] + The USART can provide a clock to the smartcard through the SCLK output. + In smartcard mode, SCLK is not associated to the communication but is simply derived + from the internal peripheral input clock through a 5-bit prescaler. + [..] + Smartcard communication is possible through the following procedure: + (#) Configures the Smartcard Prescaler using the USART_SetPrescaler() function. + (#) Configures the Smartcard Guard Time using the USART_SetGuardTime() function. + (#) Program the USART clock using the USART_ClockInit() function as following: + (++) USART Clock enabled + (++) USART CPOL Low + (++) USART CPHA on first edge + (++) USART Last Bit Clock Enabled + (#) Program the Smartcard interface using the USART_Init() function as following: + (++) Word Length = 9 Bits + (++) 1.5 Stop Bit + (++) Even parity + (++) BaudRate = 12096 baud + (++) Hardware flow control disabled (RTS and CTS signals) + (++) Tx and Rx enabled + (#) POptionally you can enable the parity error interrupt using the USART_ITConfig() + function + (#) PEnable the USART using the USART_Cmd() function. + (#) PEnable the Smartcard NACK using the USART_SmartCardNACKCmd() function. + (#) PEnable the Smartcard interface using the USART_SmartCardCmd() function. + + Please refer to the ISO 7816-3 specification for more details. + + -@- It is also possible to choose 0.5 stop bit for receiving but it is recommended + to use 1.5 stop bits for both transmitting and receiving to avoid switching + between the two configurations. + -@- In smartcard mode, the following bits must be kept cleared: + (+@) LINEN bit in the USART_CR2 register. + (+@) HDSEL and IREN bits in the USART_CR3 register. + -@- Smartcard mode is available on USART peripherals only (not available on UART4 + and UART5 peripherals). @endverbatim * @{ @@ -974,36 +987,36 @@ void USART_SmartCardNACKCmd(USART_TypeDef* USARTx, FunctionalState NewState) * @verbatim =============================================================================== - IrDA mode functions + ##### IrDA mode functions ##### =============================================================================== - - This subsection provides a set of functions allowing to manage the USART - IrDA communication. - - IrDA is a half duplex communication protocol. If the Transmitter is busy, any data - on the IrDA receive line will be ignored by the IrDA decoder and if the Receiver - is busy, data on the TX from the USART to IrDA will not be encoded by IrDA. - While receiving data, transmission should be avoided as the data to be transmitted - could be corrupted. - - IrDA communication is possible through the following procedure: - 1. Program the Baud rate, Word length = 8 bits, Stop bits, Parity, Transmitter/Receiver - modes and hardware flow control values using the USART_Init() function. - 2. Enable the USART using the USART_Cmd() function. - 3. Configures the IrDA pulse width by configuring the prescaler using - the USART_SetPrescaler() function. - 4. Configures the IrDA USART_IrDAMode_LowPower or USART_IrDAMode_Normal mode - using the USART_IrDAConfig() function. - 5. Enable the IrDA using the USART_IrDACmd() function. - -@note A pulse of width less than two and greater than one PSC period(s) may or may - not be rejected. -@note The receiver set up time should be managed by software. The IrDA physical layer - specification specifies a minimum of 10 ms delay between transmission and - reception (IrDA is a half duplex protocol). -@note In IrDA mode, the following bits must be kept cleared: - - LINEN, STOP and CLKEN bits in the USART_CR2 register. - - SCEN and HDSEL bits in the USART_CR3 register. + [..] + This subsection provides a set of functions allowing to manage the USART + IrDA communication. + [..] + IrDA is a half duplex communication protocol. If the Transmitter is busy, any data + on the IrDA receive line will be ignored by the IrDA decoder and if the Receiver + is busy, data on the TX from the USART to IrDA will not be encoded by IrDA. + While receiving data, transmission should be avoided as the data to be transmitted + could be corrupted. + [..] + IrDA communication is possible through the following procedure: + (#) Program the Baud rate, Word length = 8 bits, Stop bits, Parity, Transmitter/Receiver + modes and hardware flow control values using the USART_Init() function. + (#) Enable the USART using the USART_Cmd() function. + (#) Configures the IrDA pulse width by configuring the prescaler using + the USART_SetPrescaler() function. + (#) Configures the IrDA USART_IrDAMode_LowPower or USART_IrDAMode_Normal mode + using the USART_IrDAConfig() function. + (#) Enable the IrDA using the USART_IrDACmd() function. + + -@- A pulse of width less than two and greater than one PSC period(s) may or may + not be rejected. + -@- The receiver set up time should be managed by software. The IrDA physical layer + specification specifies a minimum of 10 ms delay between transmission and + reception (IrDA is a half duplex protocol). + -@- In IrDA mode, the following bits must be kept cleared: + (+@) LINEN, STOP and CLKEN bits in the USART_CR2 register. + (+@) SCEN and HDSEL bits in the USART_CR3 register. @endverbatim * @{ @@ -1011,7 +1024,7 @@ void USART_SmartCardNACKCmd(USART_TypeDef* USARTx, FunctionalState NewState) /** * @brief Configures the USART's IrDA interface. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param USART_IrDAMode: specifies the IrDA mode. * This parameter can be one of the following values: @@ -1031,7 +1044,7 @@ void USART_IrDAConfig(USART_TypeDef* USARTx, uint16_t USART_IrDAMode) /** * @brief Enables or disables the USART's IrDA interface. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param NewState: new state of the IrDA mode. * This parameter can be: ENABLE or DISABLE. @@ -1064,7 +1077,7 @@ void USART_IrDACmd(USART_TypeDef* USARTx, FunctionalState NewState) * @verbatim =============================================================================== - DMA transfers management functions + ##### DMA transfers management functions ##### =============================================================================== @endverbatim @@ -1073,7 +1086,7 @@ void USART_IrDACmd(USART_TypeDef* USARTx, FunctionalState NewState) /** * @brief Enables or disables the USART's DMA interface. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param USART_DMAReq: specifies the DMA request. * This parameter can be any combination of the following values: @@ -1113,81 +1126,85 @@ void USART_DMACmd(USART_TypeDef* USARTx, uint16_t USART_DMAReq, FunctionalState * @verbatim =============================================================================== - Interrupts and flags management functions + ##### Interrupts and flags management functions ##### =============================================================================== - - This subsection provides a set of functions allowing to configure the USART - Interrupts sources, DMA channels requests and check or clear the flags or - pending bits status. - The user should identify which mode will be used in his application to manage - the communication: Polling mode, Interrupt mode or DMA mode. + [..] + This subsection provides a set of functions allowing to configure the USART + Interrupts sources, DMA channels requests and check or clear the flags or + pending bits status. + The user should identify which mode will be used in his application to manage + the communication: Polling mode, Interrupt mode or DMA mode. - Polling Mode - ============= - In Polling Mode, the SPI communication can be managed by 10 flags: - 1. USART_FLAG_TXE : to indicate the status of the transmit buffer register - 2. USART_FLAG_RXNE : to indicate the status of the receive buffer register - 3. USART_FLAG_TC : to indicate the status of the transmit operation - 4. USART_FLAG_IDLE : to indicate the status of the Idle Line - 5. USART_FLAG_CTS : to indicate the status of the nCTS input - 6. USART_FLAG_LBD : to indicate the status of the LIN break detection - 7. USART_FLAG_NE : to indicate if a noise error occur - 8. USART_FLAG_FE : to indicate if a frame error occur - 9. USART_FLAG_PE : to indicate if a parity error occur - 10. USART_FLAG_ORE : to indicate if an Overrun error occur - - In this Mode it is advised to use the following functions: - - FlagStatus USART_GetFlagStatus(USART_TypeDef* USARTx, uint16_t USART_FLAG); - - void USART_ClearFlag(USART_TypeDef* USARTx, uint16_t USART_FLAG); - - Interrupt Mode - =============== - In Interrupt Mode, the USART communication can be managed by 8 interrupt sources - and 10 pending bits: - - Pending Bits: - ------------- - 1. USART_IT_TXE : to indicate the status of the transmit buffer register - 2. USART_IT_RXNE : to indicate the status of the receive buffer register - 3. USART_IT_TC : to indicate the status of the transmit operation - 4. USART_IT_IDLE : to indicate the status of the Idle Line - 5. USART_IT_CTS : to indicate the status of the nCTS input - 6. USART_IT_LBD : to indicate the status of the LIN break detection - 7. USART_IT_NE : to indicate if a noise error occur - 8. USART_IT_FE : to indicate if a frame error occur - 9. USART_IT_PE : to indicate if a parity error occur - 10. USART_IT_ORE : to indicate if an Overrun error occur - - Interrupt Source: - ----------------- - 1. USART_IT_TXE : specifies the interrupt source for the Tx buffer empty - interrupt. - 2. USART_IT_RXNE : specifies the interrupt source for the Rx buffer not - empty interrupt. - 3. USART_IT_TC : specifies the interrupt source for the Transmit complete - interrupt. - 4. USART_IT_IDLE : specifies the interrupt source for the Idle Line interrupt. - 5. USART_IT_CTS : specifies the interrupt source for the CTS interrupt. - 6. USART_IT_LBD : specifies the interrupt source for the LIN break detection - interrupt. - 7. USART_IT_PE : specifies the interrupt source for the parity error interrupt. - 8. USART_IT_ERR : specifies the interrupt source for the errors interrupt. - -@note Some parameters are coded in order to use them as interrupt source or as pending bits. - - In this Mode it is advised to use the following functions: - - void USART_ITConfig(USART_TypeDef* USARTx, uint16_t USART_IT, FunctionalState NewState); - - ITStatus USART_GetITStatus(USART_TypeDef* USARTx, uint16_t USART_IT); - - void USART_ClearITPendingBit(USART_TypeDef* USARTx, uint16_t USART_IT); - - DMA Mode - ======== - In DMA Mode, the USART communication can be managed by 2 DMA Channel requests: - 1. USART_DMAReq_Tx: specifies the Tx buffer DMA transfer request - 2. USART_DMAReq_Rx: specifies the Rx buffer DMA transfer request - - In this Mode it is advised to use the following function: - - void USART_DMACmd(USART_TypeDef* USARTx, uint16_t USART_DMAReq, FunctionalState NewState); + *** Polling Mode *** + ==================== + [..] + In Polling Mode, the SPI communication can be managed by 10 flags: + (#) USART_FLAG_TXE : to indicate the status of the transmit buffer register + (#) USART_FLAG_RXNE : to indicate the status of the receive buffer register + (#) USART_FLAG_TC : to indicate the status of the transmit operation + (#) USART_FLAG_IDLE : to indicate the status of the Idle Line + (#) USART_FLAG_CTS : to indicate the status of the nCTS input + (#) USART_FLAG_LBD : to indicate the status of the LIN break detection + (#) USART_FLAG_NE : to indicate if a noise error occur + (#) USART_FLAG_FE : to indicate if a frame error occur + (#) USART_FLAG_PE : to indicate if a parity error occur + (#) USART_FLAG_ORE : to indicate if an Overrun error occur + [..] + In this Mode it is advised to use the following functions: + (+) FlagStatus USART_GetFlagStatus(USART_TypeDef* USARTx, uint16_t USART_FLAG); + (+) void USART_ClearFlag(USART_TypeDef* USARTx, uint16_t USART_FLAG); + + *** Interrupt Mode *** + ====================== + [..] + In Interrupt Mode, the USART communication can be managed by 8 interrupt sources + and 10 pending bits: + + (#) Pending Bits: + + (##) USART_IT_TXE : to indicate the status of the transmit buffer register + (##) USART_IT_RXNE : to indicate the status of the receive buffer register + (##) USART_IT_TC : to indicate the status of the transmit operation + (##) USART_IT_IDLE : to indicate the status of the Idle Line + (##) USART_IT_CTS : to indicate the status of the nCTS input + (##) USART_IT_LBD : to indicate the status of the LIN break detection + (##) USART_IT_NE : to indicate if a noise error occur + (##) USART_IT_FE : to indicate if a frame error occur + (##) USART_IT_PE : to indicate if a parity error occur + (##) USART_IT_ORE : to indicate if an Overrun error occur + + (#) Interrupt Source: + + (##) USART_IT_TXE : specifies the interrupt source for the Tx buffer empty + interrupt. + (##) USART_IT_RXNE : specifies the interrupt source for the Rx buffer not + empty interrupt. + (##) USART_IT_TC : specifies the interrupt source for the Transmit complete + interrupt. + (##) USART_IT_IDLE : specifies the interrupt source for the Idle Line interrupt. + (##) USART_IT_CTS : specifies the interrupt source for the CTS interrupt. + (##) USART_IT_LBD : specifies the interrupt source for the LIN break detection + interrupt. + (##) USART_IT_PE : specifies the interrupt source for the parity error interrupt. + (##) USART_IT_ERR : specifies the interrupt source for the errors interrupt. + + -@@- Some parameters are coded in order to use them as interrupt source + or as pending bits. + [..] + In this Mode it is advised to use the following functions: + (+) void USART_ITConfig(USART_TypeDef* USARTx, uint16_t USART_IT, FunctionalState NewState); + (+) ITStatus USART_GetITStatus(USART_TypeDef* USARTx, uint16_t USART_IT); + (+) void USART_ClearITPendingBit(USART_TypeDef* USARTx, uint16_t USART_IT); + + *** DMA Mode *** + ================ + [..] + In DMA Mode, the USART communication can be managed by 2 DMA Channel requests: + (#) USART_DMAReq_Tx: specifies the Tx buffer DMA transfer request + (#) USART_DMAReq_Rx: specifies the Rx buffer DMA transfer request + [..] + In this Mode it is advised to use the following function: + (+) void USART_DMACmd(USART_TypeDef* USARTx, uint16_t USART_DMAReq, FunctionalState NewState); @endverbatim * @{ @@ -1195,7 +1212,7 @@ void USART_DMACmd(USART_TypeDef* USARTx, uint16_t USART_DMAReq, FunctionalState /** * @brief Enables or disables the specified USART interrupts. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param USART_IT: specifies the USART interrupt sources to be enabled or disabled. * This parameter can be one of the following values: @@ -1259,7 +1276,7 @@ void USART_ITConfig(USART_TypeDef* USARTx, uint16_t USART_IT, FunctionalState Ne /** * @brief Checks whether the specified USART flag is set or not. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param USART_FLAG: specifies the flag to check. * This parameter can be one of the following values: @@ -1301,7 +1318,7 @@ FlagStatus USART_GetFlagStatus(USART_TypeDef* USARTx, uint16_t USART_FLAG) /** * @brief Clears the USARTx's pending flags. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param USART_FLAG: specifies the flag to clear. * This parameter can be any combination of the following values: @@ -1341,7 +1358,7 @@ void USART_ClearFlag(USART_TypeDef* USARTx, uint16_t USART_FLAG) /** * @brief Checks whether the specified USART interrupt has occurred or not. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param USART_IT: specifies the USART interrupt source to check. * This parameter can be one of the following values: @@ -1408,7 +1425,7 @@ ITStatus USART_GetITStatus(USART_TypeDef* USARTx, uint16_t USART_IT) /** * @brief Clears the USARTx's interrupt pending bits. - * @param USARTx: where x can be 1, 2, 3, 4, 5 or 6 to select the USART or + * @param USARTx: where x can be 1, 2, 3, 4, 5, 6, 7 or 8 to select the USART or * UART peripheral. * @param USART_IT: specifies the interrupt pending bit to clear. * This parameter can be one of the following values: diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_wwdg.c b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_wwdg.c index 694cf504..5ddbee86 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_wwdg.c +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/STM32F4xx_StdPeriph_Driver/src/stm32f4xx_wwdg.c @@ -2,70 +2,68 @@ ****************************************************************************** * @file stm32f4xx_wwdg.c * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 + * @version V1.4.0 + * @date 04-August-2014 * @brief This file provides firmware functions to manage the following * functionalities of the Window watchdog (WWDG) peripheral: - * - Prescaler, Refresh window and Counter configuration - * - WWDG activation - * - Interrupts and flags management + * + Prescaler, Refresh window and Counter configuration + * + WWDG activation + * + Interrupts and flags management * - * @verbatim - * - * =================================================================== - * WWDG features - * =================================================================== - * - * Once enabled the WWDG generates a system reset on expiry of a programmed - * time period, unless the program refreshes the counter (downcounter) - * before to reach 0x3F value (i.e. a reset is generated when the counter - * value rolls over from 0x40 to 0x3F). - * An MCU reset is also generated if the counter value is refreshed - * before the counter has reached the refresh window value. This - * implies that the counter must be refreshed in a limited window. - * - * Once enabled the WWDG cannot be disabled except by a system reset. - * - * WWDGRST flag in RCC_CSR register can be used to inform when a WWDG - * reset occurs. - * - * The WWDG counter input clock is derived from the APB clock divided - * by a programmable prescaler. - * - * WWDG counter clock = PCLK1 / Prescaler - * WWDG timeout = (WWDG counter clock) * (counter value) - * - * Min-max timeout value @42 MHz(PCLK1): ~97.5 us / ~49.9 ms - * - * =================================================================== - * How to use this driver - * =================================================================== - * 1. Enable WWDG clock using RCC_APB1PeriphClockCmd(RCC_APB1Periph_WWDG, ENABLE) function - * - * 2. Configure the WWDG prescaler using WWDG_SetPrescaler() function - * - * 3. Configure the WWDG refresh window using WWDG_SetWindowValue() function - * - * 4. Set the WWDG counter value and start it using WWDG_Enable() function. - * When the WWDG is enabled the counter value should be configured to - * a value greater than 0x40 to prevent generating an immediate reset. - * - * 5. Optionally you can enable the Early wakeup interrupt which is - * generated when the counter reach 0x40. - * Once enabled this interrupt cannot be disabled except by a system reset. - * - * 6. Then the application program must refresh the WWDG counter at regular - * intervals during normal operation to prevent an MCU reset, using - * WWDG_SetCounter() function. This operation must occur only when - * the counter value is lower than the refresh window value, - * programmed using WWDG_SetWindowValue(). - * - * @endverbatim - * + @verbatim + =============================================================================== + ##### WWDG features ##### + =============================================================================== + [..] + Once enabled the WWDG generates a system reset on expiry of a programmed + time period, unless the program refreshes the counter (downcounter) + before to reach 0x3F value (i.e. a reset is generated when the counter + value rolls over from 0x40 to 0x3F). + An MCU reset is also generated if the counter value is refreshed + before the counter has reached the refresh window value. This + implies that the counter must be refreshed in a limited window. + + Once enabled the WWDG cannot be disabled except by a system reset. + + WWDGRST flag in RCC_CSR register can be used to inform when a WWDG + reset occurs. + + The WWDG counter input clock is derived from the APB clock divided + by a programmable prescaler. + + WWDG counter clock = PCLK1 / Prescaler + WWDG timeout = (WWDG counter clock) * (counter value) + + Min-max timeout value @42 MHz(PCLK1): ~97.5 us / ~49.9 ms + + ##### How to use this driver ##### + =============================================================================== + [..] + (#) Enable WWDG clock using RCC_APB1PeriphClockCmd(RCC_APB1Periph_WWDG, ENABLE) function + + (#) Configure the WWDG prescaler using WWDG_SetPrescaler() function + + (#) Configure the WWDG refresh window using WWDG_SetWindowValue() function + + (#) Set the WWDG counter value and start it using WWDG_Enable() function. + When the WWDG is enabled the counter value should be configured to + a value greater than 0x40 to prevent generating an immediate reset. + + (#) Optionally you can enable the Early wakeup interrupt which is + generated when the counter reach 0x40. + Once enabled this interrupt cannot be disabled except by a system reset. + + (#) Then the application program must refresh the WWDG counter at regular + intervals during normal operation to prevent an MCU reset, using + WWDG_SetCounter() function. This operation must occur only when + the counter value is lower than the refresh window value, + programmed using WWDG_SetWindowValue(). + + @endverbatim ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -125,7 +123,7 @@ * @verbatim =============================================================================== - Prescaler, Refresh window and Counter configuration functions + ##### Prescaler, Refresh window and Counter configuration functions ##### =============================================================================== @endverbatim @@ -224,7 +222,7 @@ void WWDG_SetCounter(uint8_t Counter) * @verbatim =============================================================================== - WWDG activation function + ##### WWDG activation function ##### =============================================================================== @endverbatim @@ -253,7 +251,7 @@ void WWDG_Enable(uint8_t Counter) * @verbatim =============================================================================== - Interrupts and flags management functions + ##### Interrupts and flags management functions ##### =============================================================================== @endverbatim diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/stm32f4xx.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/stm32f4xx.h index 650b5967..83cb74f4 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/stm32f4xx.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/stm32f4xx.h @@ -2,30 +2,30 @@ ****************************************************************************** * @file stm32f4xx.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 - * @brief CMSIS Cortex-M4 Device Peripheral Access Layer Header File. - * This file contains all the peripheral register's definitions, bits - * definitions and memory mapping for STM32F4xx devices. - * + * @version V1.4.0 + * @date 04-August-2014 + * @brief CMSIS Cortex-M4 Device Peripheral Access Layer Header File. + * This file contains all the peripheral register's definitions, bits + * definitions and memory mapping for STM32F4xx devices. + * * The file is the unique include file that the application programmer * is using in the C source code, usually in main.c. This file contains: * - Configuration section that allows to select: * - The device used in the target application - * - To use or not the peripheral’s drivers in application code(i.e. - * code will be based on direct access to peripheral’s registers - * rather than drivers API), this option is controlled by + * - To use or not the peripheral’s drivers in application code(i.e. + * code will be based on direct access to peripheral’s registers + * rather than drivers API), this option is controlled by * "#define USE_STDPERIPH_DRIVER" - * - To change few application-specific parameters such as the HSE + * - To change few application-specific parameters such as the HSE * crystal frequency * - Data structures and the address mapping for all peripherals * - Peripheral's registers declarations and bits definition * - Macros to access peripheral’s registers hardware - * + * ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -33,14 +33,14 @@ * * http://www.st.com/software_license_agreement_liberty_v2 * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * - ****************************************************************************** - */ + ****************************************************************************** + */ /** @addtogroup CMSIS * @{ @@ -49,7 +49,7 @@ /** @addtogroup stm32f4xx * @{ */ - + #ifndef __STM32F4xx_H #define __STM32F4xx_H @@ -60,68 +60,94 @@ /** @addtogroup Library_configuration_section * @{ */ - + /* Uncomment the line below according to the target STM32 device used in your - application + application */ -#if !defined (STM32F4XX) - #define STM32F4XX +#if !defined (STM32F40_41xxx) && !defined (STM32F427_437xx) && !defined (STM32F429_439xx) && !defined (STM32F401xx) && !defined (STM32F411xE) + /* #define STM32F40_41xxx */ /*!< STM32F405RG, STM32F405VG, STM32F405ZG, STM32F415RG, STM32F415VG, STM32F415ZG, + STM32F407VG, STM32F407VE, STM32F407ZG, STM32F407ZE, STM32F407IG, STM32F407IE, + STM32F417VG, STM32F417VE, STM32F417ZG, STM32F417ZE, STM32F417IG and STM32F417IE Devices */ + + /* #define STM32F427_437xx */ /*!< STM32F427VG, STM32F427VI, STM32F427ZG, STM32F427ZI, STM32F427IG, STM32F427II, + STM32F437VG, STM32F437VI, STM32F437ZG, STM32F437ZI, STM32F437IG, STM32F437II Devices */ + + /* #define STM32F429_439xx */ /*!< STM32F429VG, STM32F429VI, STM32F429ZG, STM32F429ZI, STM32F429BG, STM32F429BI, + STM32F429NG, STM32F439NI, STM32F429IG, STM32F429II, STM32F439VG, STM32F439VI, + STM32F439ZG, STM32F439ZI, STM32F439BG, STM32F439BI, STM32F439NG, STM32F439NI, + STM32F439IG and STM32F439II Devices */ + + /* #define STM32F401xx */ /*!< STM32F401CB, STM32F401CC, STM32F401RB, STM32F401RC, STM32F401VB, STM32F401VC + STM32F401CD, STM32F401RD, STM32F401VD, STM32F401CExx, STM32F401RE and STM32F401VE Devices */ + + #define STM32F411xE /*!< STM32F411CD, STM32F411RD, STM32F411VD, STM32F411CE, STM32F411RE and STM32F411VE Devices */ #endif +/* Old STM32F40XX definition, maintained for legacy purpose */ +#ifdef STM32F40XX + #define STM32F40_41xxx +#endif /* STM32F40XX */ + +/* Old STM32F427X definition, maintained for legacy purpose */ +#ifdef STM32F427X + #define STM32F427_437xx +#endif /* STM32F427X */ + /* Tip: To avoid modifying this file each time you need to switch between these devices, you can define the device in your toolchain compiler preprocessor. */ -#if !defined (STM32F4XX) - #error "Please select first the target STM32F4XX device used in your application (in stm32f4xx.h file)" +#if !defined (STM32F40_41xxx) && !defined (STM32F427_437xx) && !defined (STM32F429_439xx) && !defined (STM32F401xx) && !defined (STM32F411xE) + #error "Please select first the target STM32F4xx device used in your application (in stm32f4xx.h file)" #endif #if !defined (USE_STDPERIPH_DRIVER) /** * @brief Comment the line below if you will not use the peripherals drivers. - In this case, these drivers will not be included and the application code will - be based on direct access to peripherals registers + In this case, these drivers will not be included and the application code will + be based on direct access to peripherals registers */ - /*#define USE_STDPERIPH_DRIVER*/ + /*#define USE_STDPERIPH_DRIVER */ #endif /* USE_STDPERIPH_DRIVER */ /** * @brief In the following line adjust the value of External High Speed oscillator (HSE) - used in your application - + used in your application + Tip: To avoid modifying this file each time you need to use different HSE, you can define the HSE value in your toolchain compiler preprocessor. - */ + */ -#if !defined (HSE_VALUE) +#if !defined (HSE_VALUE) #define HSE_VALUE ((uint32_t)25000000) /*!< Value of the External oscillator in Hz */ + #endif /* HSE_VALUE */ /** - * @brief In the following line adjust the External High Speed oscillator (HSE) Startup - Timeout value + * @brief In the following line adjust the External High Speed oscillator (HSE) Startup + Timeout value */ -#if !defined (HSE_STARTUP_TIMEOUT) - #define HSE_STARTUP_TIMEOUT ((uint16_t)0x0500) /*!< Time out for HSE start up */ -#endif /* HSE_STARTUP_TIMEOUT */ +#if !defined (HSE_STARTUP_TIMEOUT) + #define HSE_STARTUP_TIMEOUT ((uint16_t)0x05000) /*!< Time out for HSE start up */ +#endif /* HSE_STARTUP_TIMEOUT */ -#if !defined (HSI_VALUE) +#if !defined (HSI_VALUE) #define HSI_VALUE ((uint32_t)16000000) /*!< Value of the Internal oscillator in Hz*/ -#endif /* HSI_VALUE */ +#endif /* HSI_VALUE */ /** - * @brief STM32F4XX Standard Peripherals Library version number V1.0.2 + * @brief STM32F4XX Standard Peripherals Library version number V1.4.0 */ #define __STM32F4XX_STDPERIPH_VERSION_MAIN (0x01) /*!< [31:24] main version */ -#define __STM32F4XX_STDPERIPH_VERSION_SUB1 (0x00) /*!< [23:16] sub1 version */ -#define __STM32F4XX_STDPERIPH_VERSION_SUB2 (0x02) /*!< [15:8] sub2 version */ -#define __STM32F4XX_STDPERIPH_VERSION_RC (0x00) /*!< [7:0] release candidate */ +#define __STM32F4XX_STDPERIPH_VERSION_SUB1 (0x04) /*!< [23:16] sub1 version */ +#define __STM32F4XX_STDPERIPH_VERSION_SUB2 (0x00) /*!< [15:8] sub2 version */ +#define __STM32F4XX_STDPERIPH_VERSION_RC (0x00) /*!< [7:0] release candidate */ #define __STM32F4XX_STDPERIPH_VERSION ((__STM32F4XX_STDPERIPH_VERSION_MAIN << 24)\ |(__STM32F4XX_STDPERIPH_VERSION_SUB1 << 16)\ |(__STM32F4XX_STDPERIPH_VERSION_SUB2 << 8)\ |(__STM32F4XX_STDPERIPH_VERSION_RC)) - + /** * @} */ @@ -131,7 +157,7 @@ */ /** - * @brief Configuration of the Cortex-M4 Processor and Core Peripherals + * @brief Configuration of the Cortex-M4 Processor and Core Peripherals */ #define __CM4_REV 0x0001 /*!< Core revision r0p1 */ #define __MPU_PRESENT 1 /*!< STM32F4XX provides an MPU */ @@ -140,8 +166,8 @@ #define __FPU_PRESENT 1 /*!< FPU present */ /** - * @brief STM32F4XX Interrupt Number Definition, according to the selected device - * in @ref Library_configuration_section + * @brief STM32F4XX Interrupt Number Definition, according to the selected device + * in @ref Library_configuration_section */ typedef enum IRQn { @@ -174,6 +200,8 @@ typedef enum IRQn DMA1_Stream5_IRQn = 16, /*!< DMA1 Stream 5 global Interrupt */ DMA1_Stream6_IRQn = 17, /*!< DMA1 Stream 6 global Interrupt */ ADC_IRQn = 18, /*!< ADC1, ADC2 and ADC3 global Interrupts */ + +#if defined (STM32F40_41xxx) CAN1_TX_IRQn = 19, /*!< CAN1 TX Interrupt */ CAN1_RX0_IRQn = 20, /*!< CAN1 RX0 Interrupt */ CAN1_RX1_IRQn = 21, /*!< CAN1 RX1 Interrupt */ @@ -235,8 +263,204 @@ typedef enum IRQn OTG_HS_IRQn = 77, /*!< USB OTG HS global interrupt */ DCMI_IRQn = 78, /*!< DCMI global interrupt */ CRYP_IRQn = 79, /*!< CRYP crypto global interrupt */ - HASH_RNG_IRQn = 80, /*!< Hash and Rng global interrupt */ + HASH_RNG_IRQn = 80, /*!< Hash and Rng global interrupt */ FPU_IRQn = 81 /*!< FPU global interrupt */ +#endif /* STM32F40_41xxx */ + +#if defined (STM32F427_437xx) + CAN1_TX_IRQn = 19, /*!< CAN1 TX Interrupt */ + CAN1_RX0_IRQn = 20, /*!< CAN1 RX0 Interrupt */ + CAN1_RX1_IRQn = 21, /*!< CAN1 RX1 Interrupt */ + CAN1_SCE_IRQn = 22, /*!< CAN1 SCE Interrupt */ + EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */ + TIM1_BRK_TIM9_IRQn = 24, /*!< TIM1 Break interrupt and TIM9 global interrupt */ + TIM1_UP_TIM10_IRQn = 25, /*!< TIM1 Update Interrupt and TIM10 global interrupt */ + TIM1_TRG_COM_TIM11_IRQn = 26, /*!< TIM1 Trigger and Commutation Interrupt and TIM11 global interrupt */ + TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */ + TIM2_IRQn = 28, /*!< TIM2 global Interrupt */ + TIM3_IRQn = 29, /*!< TIM3 global Interrupt */ + TIM4_IRQn = 30, /*!< TIM4 global Interrupt */ + I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */ + I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */ + I2C2_EV_IRQn = 33, /*!< I2C2 Event Interrupt */ + I2C2_ER_IRQn = 34, /*!< I2C2 Error Interrupt */ + SPI1_IRQn = 35, /*!< SPI1 global Interrupt */ + SPI2_IRQn = 36, /*!< SPI2 global Interrupt */ + USART1_IRQn = 37, /*!< USART1 global Interrupt */ + USART2_IRQn = 38, /*!< USART2 global Interrupt */ + USART3_IRQn = 39, /*!< USART3 global Interrupt */ + EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */ + RTC_Alarm_IRQn = 41, /*!< RTC Alarm (A and B) through EXTI Line Interrupt */ + OTG_FS_WKUP_IRQn = 42, /*!< USB OTG FS Wakeup through EXTI line interrupt */ + TIM8_BRK_TIM12_IRQn = 43, /*!< TIM8 Break Interrupt and TIM12 global interrupt */ + TIM8_UP_TIM13_IRQn = 44, /*!< TIM8 Update Interrupt and TIM13 global interrupt */ + TIM8_TRG_COM_TIM14_IRQn = 45, /*!< TIM8 Trigger and Commutation Interrupt and TIM14 global interrupt */ + TIM8_CC_IRQn = 46, /*!< TIM8 Capture Compare Interrupt */ + DMA1_Stream7_IRQn = 47, /*!< DMA1 Stream7 Interrupt */ + FMC_IRQn = 48, /*!< FMC global Interrupt */ + SDIO_IRQn = 49, /*!< SDIO global Interrupt */ + TIM5_IRQn = 50, /*!< TIM5 global Interrupt */ + SPI3_IRQn = 51, /*!< SPI3 global Interrupt */ + UART4_IRQn = 52, /*!< UART4 global Interrupt */ + UART5_IRQn = 53, /*!< UART5 global Interrupt */ + TIM6_DAC_IRQn = 54, /*!< TIM6 global and DAC1&2 underrun error interrupts */ + TIM7_IRQn = 55, /*!< TIM7 global interrupt */ + DMA2_Stream0_IRQn = 56, /*!< DMA2 Stream 0 global Interrupt */ + DMA2_Stream1_IRQn = 57, /*!< DMA2 Stream 1 global Interrupt */ + DMA2_Stream2_IRQn = 58, /*!< DMA2 Stream 2 global Interrupt */ + DMA2_Stream3_IRQn = 59, /*!< DMA2 Stream 3 global Interrupt */ + DMA2_Stream4_IRQn = 60, /*!< DMA2 Stream 4 global Interrupt */ + ETH_IRQn = 61, /*!< Ethernet global Interrupt */ + ETH_WKUP_IRQn = 62, /*!< Ethernet Wakeup through EXTI line Interrupt */ + CAN2_TX_IRQn = 63, /*!< CAN2 TX Interrupt */ + CAN2_RX0_IRQn = 64, /*!< CAN2 RX0 Interrupt */ + CAN2_RX1_IRQn = 65, /*!< CAN2 RX1 Interrupt */ + CAN2_SCE_IRQn = 66, /*!< CAN2 SCE Interrupt */ + OTG_FS_IRQn = 67, /*!< USB OTG FS global Interrupt */ + DMA2_Stream5_IRQn = 68, /*!< DMA2 Stream 5 global interrupt */ + DMA2_Stream6_IRQn = 69, /*!< DMA2 Stream 6 global interrupt */ + DMA2_Stream7_IRQn = 70, /*!< DMA2 Stream 7 global interrupt */ + USART6_IRQn = 71, /*!< USART6 global interrupt */ + I2C3_EV_IRQn = 72, /*!< I2C3 event interrupt */ + I2C3_ER_IRQn = 73, /*!< I2C3 error interrupt */ + OTG_HS_EP1_OUT_IRQn = 74, /*!< USB OTG HS End Point 1 Out global interrupt */ + OTG_HS_EP1_IN_IRQn = 75, /*!< USB OTG HS End Point 1 In global interrupt */ + OTG_HS_WKUP_IRQn = 76, /*!< USB OTG HS Wakeup through EXTI interrupt */ + OTG_HS_IRQn = 77, /*!< USB OTG HS global interrupt */ + DCMI_IRQn = 78, /*!< DCMI global interrupt */ + CRYP_IRQn = 79, /*!< CRYP crypto global interrupt */ + HASH_RNG_IRQn = 80, /*!< Hash and Rng global interrupt */ + FPU_IRQn = 81, /*!< FPU global interrupt */ + UART7_IRQn = 82, /*!< UART7 global interrupt */ + UART8_IRQn = 83, /*!< UART8 global interrupt */ + SPI4_IRQn = 84, /*!< SPI4 global Interrupt */ + SPI5_IRQn = 85, /*!< SPI5 global Interrupt */ + SPI6_IRQn = 86, /*!< SPI6 global Interrupt */ + SAI1_IRQn = 87, /*!< SAI1 global Interrupt */ + DMA2D_IRQn = 90 /*!< DMA2D global Interrupt */ +#endif /* STM32F427_437xx */ + +#if defined (STM32F429_439xx) + CAN1_TX_IRQn = 19, /*!< CAN1 TX Interrupt */ + CAN1_RX0_IRQn = 20, /*!< CAN1 RX0 Interrupt */ + CAN1_RX1_IRQn = 21, /*!< CAN1 RX1 Interrupt */ + CAN1_SCE_IRQn = 22, /*!< CAN1 SCE Interrupt */ + EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */ + TIM1_BRK_TIM9_IRQn = 24, /*!< TIM1 Break interrupt and TIM9 global interrupt */ + TIM1_UP_TIM10_IRQn = 25, /*!< TIM1 Update Interrupt and TIM10 global interrupt */ + TIM1_TRG_COM_TIM11_IRQn = 26, /*!< TIM1 Trigger and Commutation Interrupt and TIM11 global interrupt */ + TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */ + TIM2_IRQn = 28, /*!< TIM2 global Interrupt */ + TIM3_IRQn = 29, /*!< TIM3 global Interrupt */ + TIM4_IRQn = 30, /*!< TIM4 global Interrupt */ + I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */ + I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */ + I2C2_EV_IRQn = 33, /*!< I2C2 Event Interrupt */ + I2C2_ER_IRQn = 34, /*!< I2C2 Error Interrupt */ + SPI1_IRQn = 35, /*!< SPI1 global Interrupt */ + SPI2_IRQn = 36, /*!< SPI2 global Interrupt */ + USART1_IRQn = 37, /*!< USART1 global Interrupt */ + USART2_IRQn = 38, /*!< USART2 global Interrupt */ + USART3_IRQn = 39, /*!< USART3 global Interrupt */ + EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */ + RTC_Alarm_IRQn = 41, /*!< RTC Alarm (A and B) through EXTI Line Interrupt */ + OTG_FS_WKUP_IRQn = 42, /*!< USB OTG FS Wakeup through EXTI line interrupt */ + TIM8_BRK_TIM12_IRQn = 43, /*!< TIM8 Break Interrupt and TIM12 global interrupt */ + TIM8_UP_TIM13_IRQn = 44, /*!< TIM8 Update Interrupt and TIM13 global interrupt */ + TIM8_TRG_COM_TIM14_IRQn = 45, /*!< TIM8 Trigger and Commutation Interrupt and TIM14 global interrupt */ + TIM8_CC_IRQn = 46, /*!< TIM8 Capture Compare Interrupt */ + DMA1_Stream7_IRQn = 47, /*!< DMA1 Stream7 Interrupt */ + FMC_IRQn = 48, /*!< FMC global Interrupt */ + SDIO_IRQn = 49, /*!< SDIO global Interrupt */ + TIM5_IRQn = 50, /*!< TIM5 global Interrupt */ + SPI3_IRQn = 51, /*!< SPI3 global Interrupt */ + UART4_IRQn = 52, /*!< UART4 global Interrupt */ + UART5_IRQn = 53, /*!< UART5 global Interrupt */ + TIM6_DAC_IRQn = 54, /*!< TIM6 global and DAC1&2 underrun error interrupts */ + TIM7_IRQn = 55, /*!< TIM7 global interrupt */ + DMA2_Stream0_IRQn = 56, /*!< DMA2 Stream 0 global Interrupt */ + DMA2_Stream1_IRQn = 57, /*!< DMA2 Stream 1 global Interrupt */ + DMA2_Stream2_IRQn = 58, /*!< DMA2 Stream 2 global Interrupt */ + DMA2_Stream3_IRQn = 59, /*!< DMA2 Stream 3 global Interrupt */ + DMA2_Stream4_IRQn = 60, /*!< DMA2 Stream 4 global Interrupt */ + ETH_IRQn = 61, /*!< Ethernet global Interrupt */ + ETH_WKUP_IRQn = 62, /*!< Ethernet Wakeup through EXTI line Interrupt */ + CAN2_TX_IRQn = 63, /*!< CAN2 TX Interrupt */ + CAN2_RX0_IRQn = 64, /*!< CAN2 RX0 Interrupt */ + CAN2_RX1_IRQn = 65, /*!< CAN2 RX1 Interrupt */ + CAN2_SCE_IRQn = 66, /*!< CAN2 SCE Interrupt */ + OTG_FS_IRQn = 67, /*!< USB OTG FS global Interrupt */ + DMA2_Stream5_IRQn = 68, /*!< DMA2 Stream 5 global interrupt */ + DMA2_Stream6_IRQn = 69, /*!< DMA2 Stream 6 global interrupt */ + DMA2_Stream7_IRQn = 70, /*!< DMA2 Stream 7 global interrupt */ + USART6_IRQn = 71, /*!< USART6 global interrupt */ + I2C3_EV_IRQn = 72, /*!< I2C3 event interrupt */ + I2C3_ER_IRQn = 73, /*!< I2C3 error interrupt */ + OTG_HS_EP1_OUT_IRQn = 74, /*!< USB OTG HS End Point 1 Out global interrupt */ + OTG_HS_EP1_IN_IRQn = 75, /*!< USB OTG HS End Point 1 In global interrupt */ + OTG_HS_WKUP_IRQn = 76, /*!< USB OTG HS Wakeup through EXTI interrupt */ + OTG_HS_IRQn = 77, /*!< USB OTG HS global interrupt */ + DCMI_IRQn = 78, /*!< DCMI global interrupt */ + CRYP_IRQn = 79, /*!< CRYP crypto global interrupt */ + HASH_RNG_IRQn = 80, /*!< Hash and Rng global interrupt */ + FPU_IRQn = 81, /*!< FPU global interrupt */ + UART7_IRQn = 82, /*!< UART7 global interrupt */ + UART8_IRQn = 83, /*!< UART8 global interrupt */ + SPI4_IRQn = 84, /*!< SPI4 global Interrupt */ + SPI5_IRQn = 85, /*!< SPI5 global Interrupt */ + SPI6_IRQn = 86, /*!< SPI6 global Interrupt */ + SAI1_IRQn = 87, /*!< SAI1 global Interrupt */ + LTDC_IRQn = 88, /*!< LTDC global Interrupt */ + LTDC_ER_IRQn = 89, /*!< LTDC Error global Interrupt */ + DMA2D_IRQn = 90 /*!< DMA2D global Interrupt */ +#endif /* STM32F429_439xx */ + +#if defined (STM32F401xx) || defined (STM32F411xE) + EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */ + TIM1_BRK_TIM9_IRQn = 24, /*!< TIM1 Break interrupt and TIM9 global interrupt */ + TIM1_UP_TIM10_IRQn = 25, /*!< TIM1 Update Interrupt and TIM10 global interrupt */ + TIM1_TRG_COM_TIM11_IRQn = 26, /*!< TIM1 Trigger and Commutation Interrupt and TIM11 global interrupt */ + TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */ + TIM2_IRQn = 28, /*!< TIM2 global Interrupt */ + TIM3_IRQn = 29, /*!< TIM3 global Interrupt */ + TIM4_IRQn = 30, /*!< TIM4 global Interrupt */ + I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */ + I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */ + I2C2_EV_IRQn = 33, /*!< I2C2 Event Interrupt */ + I2C2_ER_IRQn = 34, /*!< I2C2 Error Interrupt */ + SPI1_IRQn = 35, /*!< SPI1 global Interrupt */ + SPI2_IRQn = 36, /*!< SPI2 global Interrupt */ + USART1_IRQn = 37, /*!< USART1 global Interrupt */ + USART2_IRQn = 38, /*!< USART2 global Interrupt */ + EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */ + RTC_Alarm_IRQn = 41, /*!< RTC Alarm (A and B) through EXTI Line Interrupt */ + OTG_FS_WKUP_IRQn = 42, /*!< USB OTG FS Wakeup through EXTI line interrupt */ + DMA1_Stream7_IRQn = 47, /*!< DMA1 Stream7 Interrupt */ + SDIO_IRQn = 49, /*!< SDIO global Interrupt */ + TIM5_IRQn = 50, /*!< TIM5 global Interrupt */ + SPI3_IRQn = 51, /*!< SPI3 global Interrupt */ + DMA2_Stream0_IRQn = 56, /*!< DMA2 Stream 0 global Interrupt */ + DMA2_Stream1_IRQn = 57, /*!< DMA2 Stream 1 global Interrupt */ + DMA2_Stream2_IRQn = 58, /*!< DMA2 Stream 2 global Interrupt */ + DMA2_Stream3_IRQn = 59, /*!< DMA2 Stream 3 global Interrupt */ + DMA2_Stream4_IRQn = 60, /*!< DMA2 Stream 4 global Interrupt */ + OTG_FS_IRQn = 67, /*!< USB OTG FS global Interrupt */ + DMA2_Stream5_IRQn = 68, /*!< DMA2 Stream 5 global interrupt */ + DMA2_Stream6_IRQn = 69, /*!< DMA2 Stream 6 global interrupt */ + DMA2_Stream7_IRQn = 70, /*!< DMA2 Stream 7 global interrupt */ + USART6_IRQn = 71, /*!< USART6 global interrupt */ + I2C3_EV_IRQn = 72, /*!< I2C3 event interrupt */ + I2C3_ER_IRQn = 73, /*!< I2C3 error interrupt */ + FPU_IRQn = 81, /*!< FPU global interrupt */ +#if defined (STM32F401xx) + SPI4_IRQn = 84 /*!< SPI4 global Interrupt */ +#endif /* STM32F411xE */ +#if defined (STM32F411xE) + SPI4_IRQn = 84, /*!< SPI4 global Interrupt */ + SPI5_IRQn = 85 /*!< SPI5 global Interrupt */ +#endif /* STM32F411xE */ +#endif /* STM32F401xx || STM32F411xE */ + } IRQn_Type; /** @@ -249,7 +473,7 @@ typedef enum IRQn /** @addtogroup Exported_types * @{ - */ + */ /*!< STM32F10x Standard Peripheral Library old types (maintained for legacy purpose) */ typedef int32_t s32; typedef int16_t s16; @@ -296,16 +520,16 @@ typedef enum {ERROR = 0, SUCCESS = !ERROR} ErrorStatus; /** @addtogroup Peripheral_registers_structures * @{ - */ + */ -/** - * @brief Analog to Digital Converter +/** + * @brief Analog to Digital Converter */ typedef struct { __IO uint32_t SR; /*!< ADC status register, Address offset: 0x00 */ - __IO uint32_t CR1; /*!< ADC control register 1, Address offset: 0x04 */ + __IO uint32_t CR1; /*!< ADC control register 1, Address offset: 0x04 */ __IO uint32_t CR2; /*!< ADC control register 2, Address offset: 0x08 */ __IO uint32_t SMPR1; /*!< ADC sample time register 1, Address offset: 0x0C */ __IO uint32_t SMPR2; /*!< ADC sample time register 2, Address offset: 0x10 */ @@ -335,8 +559,8 @@ typedef struct } ADC_Common_TypeDef; -/** - * @brief Controller Area Network TxMailBox +/** + * @brief Controller Area Network TxMailBox */ typedef struct @@ -347,10 +571,10 @@ typedef struct __IO uint32_t TDHR; /*!< CAN mailbox data high register */ } CAN_TxMailBox_TypeDef; -/** - * @brief Controller Area Network FIFOMailBox +/** + * @brief Controller Area Network FIFOMailBox */ - + typedef struct { __IO uint32_t RIR; /*!< CAN receive FIFO mailbox identifier register */ @@ -359,20 +583,20 @@ typedef struct __IO uint32_t RDHR; /*!< CAN receive FIFO mailbox data high register */ } CAN_FIFOMailBox_TypeDef; -/** - * @brief Controller Area Network FilterRegister +/** + * @brief Controller Area Network FilterRegister */ - + typedef struct { __IO uint32_t FR1; /*!< CAN Filter bank register 1 */ __IO uint32_t FR2; /*!< CAN Filter bank register 1 */ } CAN_FilterRegister_TypeDef; -/** - * @brief Controller Area Network +/** + * @brief Controller Area Network */ - + typedef struct { __IO uint32_t MCR; /*!< CAN master control register, Address offset: 0x00 */ @@ -395,12 +619,12 @@ typedef struct __IO uint32_t FFA1R; /*!< CAN filter FIFO assignment register, Address offset: 0x214 */ uint32_t RESERVED4; /*!< Reserved, 0x218 */ __IO uint32_t FA1R; /*!< CAN filter activation register, Address offset: 0x21C */ - uint32_t RESERVED5[8]; /*!< Reserved, 0x220-0x23F */ + uint32_t RESERVED5[8]; /*!< Reserved, 0x220-0x23F */ CAN_FilterRegister_TypeDef sFilterRegister[28]; /*!< CAN Filter Register, Address offset: 0x240-0x31C */ } CAN_TypeDef; -/** - * @brief CRC calculation unit +/** + * @brief CRC calculation unit */ typedef struct @@ -412,7 +636,7 @@ typedef struct __IO uint32_t CR; /*!< CRC Control register, Address offset: 0x08 */ } CRC_TypeDef; -/** +/** * @brief Digital to Analog Converter */ @@ -434,7 +658,7 @@ typedef struct __IO uint32_t SR; /*!< DAC status register, Address offset: 0x34 */ } DAC_TypeDef; -/** +/** * @brief Debug MCU */ @@ -446,7 +670,7 @@ typedef struct __IO uint32_t APB2FZ; /*!< Debug MCU APB2 freeze register, Address offset: 0x0C */ }DBGMCU_TypeDef; -/** +/** * @brief DCMI */ @@ -465,7 +689,7 @@ typedef struct __IO uint32_t DR; /*!< DCMI data register, Address offset: 0x28 */ } DCMI_TypeDef; -/** +/** * @brief DMA Controller */ @@ -486,8 +710,39 @@ typedef struct __IO uint32_t LIFCR; /*!< DMA low interrupt flag clear register, Address offset: 0x08 */ __IO uint32_t HIFCR; /*!< DMA high interrupt flag clear register, Address offset: 0x0C */ } DMA_TypeDef; + +/** + * @brief DMA2D Controller + */ -/** +typedef struct +{ + __IO uint32_t CR; /*!< DMA2D Control Register, Address offset: 0x00 */ + __IO uint32_t ISR; /*!< DMA2D Interrupt Status Register, Address offset: 0x04 */ + __IO uint32_t IFCR; /*!< DMA2D Interrupt Flag Clear Register, Address offset: 0x08 */ + __IO uint32_t FGMAR; /*!< DMA2D Foreground Memory Address Register, Address offset: 0x0C */ + __IO uint32_t FGOR; /*!< DMA2D Foreground Offset Register, Address offset: 0x10 */ + __IO uint32_t BGMAR; /*!< DMA2D Background Memory Address Register, Address offset: 0x14 */ + __IO uint32_t BGOR; /*!< DMA2D Background Offset Register, Address offset: 0x18 */ + __IO uint32_t FGPFCCR; /*!< DMA2D Foreground PFC Control Register, Address offset: 0x1C */ + __IO uint32_t FGCOLR; /*!< DMA2D Foreground Color Register, Address offset: 0x20 */ + __IO uint32_t BGPFCCR; /*!< DMA2D Background PFC Control Register, Address offset: 0x24 */ + __IO uint32_t BGCOLR; /*!< DMA2D Background Color Register, Address offset: 0x28 */ + __IO uint32_t FGCMAR; /*!< DMA2D Foreground CLUT Memory Address Register, Address offset: 0x2C */ + __IO uint32_t BGCMAR; /*!< DMA2D Background CLUT Memory Address Register, Address offset: 0x30 */ + __IO uint32_t OPFCCR; /*!< DMA2D Output PFC Control Register, Address offset: 0x34 */ + __IO uint32_t OCOLR; /*!< DMA2D Output Color Register, Address offset: 0x38 */ + __IO uint32_t OMAR; /*!< DMA2D Output Memory Address Register, Address offset: 0x3C */ + __IO uint32_t OOR; /*!< DMA2D Output Offset Register, Address offset: 0x40 */ + __IO uint32_t NLR; /*!< DMA2D Number of Line Register, Address offset: 0x44 */ + __IO uint32_t LWR; /*!< DMA2D Line Watermark Register, Address offset: 0x48 */ + __IO uint32_t AMTCR; /*!< DMA2D AHB Master Timer Configuration Register, Address offset: 0x4C */ + uint32_t RESERVED[236]; /*!< Reserved, 0x50-0x3FF */ + __IO uint32_t FGCLUT[256]; /*!< DMA2D Foreground CLUT, Address offset:400-7FF */ + __IO uint32_t BGCLUT[256]; /*!< DMA2D Background CLUT, Address offset:800-BFF */ +} DMA2D_TypeDef; + +/** * @brief Ethernet MAC */ @@ -561,7 +816,7 @@ typedef struct __IO uint32_t DMACHRBAR; } ETH_TypeDef; -/** +/** * @brief External Interrupt/Event Controller */ @@ -575,42 +830,44 @@ typedef struct __IO uint32_t PR; /*!< EXTI Pending register, Address offset: 0x14 */ } EXTI_TypeDef; -/** +/** * @brief FLASH Registers */ typedef struct { - __IO uint32_t ACR; /*!< FLASH access control register, Address offset: 0x00 */ - __IO uint32_t KEYR; /*!< FLASH key register, Address offset: 0x04 */ - __IO uint32_t OPTKEYR; /*!< FLASH option key register, Address offset: 0x08 */ - __IO uint32_t SR; /*!< FLASH status register, Address offset: 0x0C */ - __IO uint32_t CR; /*!< FLASH control register, Address offset: 0x10 */ - __IO uint32_t OPTCR; /*!< FLASH option control register, Address offset: 0x14 */ + __IO uint32_t ACR; /*!< FLASH access control register, Address offset: 0x00 */ + __IO uint32_t KEYR; /*!< FLASH key register, Address offset: 0x04 */ + __IO uint32_t OPTKEYR; /*!< FLASH option key register, Address offset: 0x08 */ + __IO uint32_t SR; /*!< FLASH status register, Address offset: 0x0C */ + __IO uint32_t CR; /*!< FLASH control register, Address offset: 0x10 */ + __IO uint32_t OPTCR; /*!< FLASH option control register , Address offset: 0x14 */ + __IO uint32_t OPTCR1; /*!< FLASH option control register 1, Address offset: 0x18 */ } FLASH_TypeDef; -/** +#if defined (STM32F40_41xxx) +/** * @brief Flexible Static Memory Controller */ typedef struct { - __IO uint32_t BTCR[8]; /*!< NOR/PSRAM chip-select control register(BCR) and chip-select timing register(BTR), Address offset: 0x00-1C */ -} FSMC_Bank1_TypeDef; + __IO uint32_t BTCR[8]; /*!< NOR/PSRAM chip-select control register(BCR) and chip-select timing register(BTR), Address offset: 0x00-1C */ +} FSMC_Bank1_TypeDef; -/** +/** * @brief Flexible Static Memory Controller Bank1E */ - + typedef struct { __IO uint32_t BWTR[7]; /*!< NOR/PSRAM write timing registers, Address offset: 0x104-0x11C */ } FSMC_Bank1E_TypeDef; -/** +/** * @brief Flexible Static Memory Controller Bank2 */ - + typedef struct { __IO uint32_t PCR2; /*!< NAND Flash control register 2, Address offset: 0x60 */ @@ -621,10 +878,10 @@ typedef struct __IO uint32_t ECCR2; /*!< NAND Flash ECC result registers 2, Address offset: 0x74 */ } FSMC_Bank2_TypeDef; -/** +/** * @brief Flexible Static Memory Controller Bank3 */ - + typedef struct { __IO uint32_t PCR3; /*!< NAND Flash control register 3, Address offset: 0x80 */ @@ -635,10 +892,71 @@ typedef struct __IO uint32_t ECCR3; /*!< NAND Flash ECC result registers 3, Address offset: 0x94 */ } FSMC_Bank3_TypeDef; -/** +/** * @brief Flexible Static Memory Controller Bank4 */ + +typedef struct +{ + __IO uint32_t PCR4; /*!< PC Card control register 4, Address offset: 0xA0 */ + __IO uint32_t SR4; /*!< PC Card FIFO status and interrupt register 4, Address offset: 0xA4 */ + __IO uint32_t PMEM4; /*!< PC Card Common memory space timing register 4, Address offset: 0xA8 */ + __IO uint32_t PATT4; /*!< PC Card Attribute memory space timing register 4, Address offset: 0xAC */ + __IO uint32_t PIO4; /*!< PC Card I/O space timing register 4, Address offset: 0xB0 */ +} FSMC_Bank4_TypeDef; +#endif /* STM32F40_41xxx */ + +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) +/** + * @brief Flexible Memory Controller + */ +typedef struct +{ + __IO uint32_t BTCR[8]; /*!< NOR/PSRAM chip-select control register(BCR) and chip-select timing register(BTR), Address offset: 0x00-1C */ +} FMC_Bank1_TypeDef; + +/** + * @brief Flexible Memory Controller Bank1E + */ + +typedef struct +{ + __IO uint32_t BWTR[7]; /*!< NOR/PSRAM write timing registers, Address offset: 0x104-0x11C */ +} FMC_Bank1E_TypeDef; + +/** + * @brief Flexible Memory Controller Bank2 + */ + +typedef struct +{ + __IO uint32_t PCR2; /*!< NAND Flash control register 2, Address offset: 0x60 */ + __IO uint32_t SR2; /*!< NAND Flash FIFO status and interrupt register 2, Address offset: 0x64 */ + __IO uint32_t PMEM2; /*!< NAND Flash Common memory space timing register 2, Address offset: 0x68 */ + __IO uint32_t PATT2; /*!< NAND Flash Attribute memory space timing register 2, Address offset: 0x6C */ + uint32_t RESERVED0; /*!< Reserved, 0x70 */ + __IO uint32_t ECCR2; /*!< NAND Flash ECC result registers 2, Address offset: 0x74 */ +} FMC_Bank2_TypeDef; + +/** + * @brief Flexible Memory Controller Bank3 + */ + +typedef struct +{ + __IO uint32_t PCR3; /*!< NAND Flash control register 3, Address offset: 0x80 */ + __IO uint32_t SR3; /*!< NAND Flash FIFO status and interrupt register 3, Address offset: 0x84 */ + __IO uint32_t PMEM3; /*!< NAND Flash Common memory space timing register 3, Address offset: 0x88 */ + __IO uint32_t PATT3; /*!< NAND Flash Attribute memory space timing register 3, Address offset: 0x8C */ + uint32_t RESERVED0; /*!< Reserved, 0x90 */ + __IO uint32_t ECCR3; /*!< NAND Flash ECC result registers 3, Address offset: 0x94 */ +} FMC_Bank3_TypeDef; + +/** + * @brief Flexible Memory Controller Bank4 + */ + typedef struct { __IO uint32_t PCR4; /*!< PC Card control register 4, Address offset: 0xA0 */ @@ -646,9 +964,23 @@ typedef struct __IO uint32_t PMEM4; /*!< PC Card Common memory space timing register 4, Address offset: 0xA8 */ __IO uint32_t PATT4; /*!< PC Card Attribute memory space timing register 4, Address offset: 0xAC */ __IO uint32_t PIO4; /*!< PC Card I/O space timing register 4, Address offset: 0xB0 */ -} FSMC_Bank4_TypeDef; +} FMC_Bank4_TypeDef; -/** +/** + * @brief Flexible Memory Controller Bank5_6 + */ + +typedef struct +{ + __IO uint32_t SDCR[2]; /*!< SDRAM Control registers , Address offset: 0x140-0x144 */ + __IO uint32_t SDTR[2]; /*!< SDRAM Timing registers , Address offset: 0x148-0x14C */ + __IO uint32_t SDCMR; /*!< SDRAM Command Mode register, Address offset: 0x150 */ + __IO uint32_t SDRTR; /*!< SDRAM Refresh Timer register, Address offset: 0x154 */ + __IO uint32_t SDSR; /*!< SDRAM Status register, Address offset: 0x158 */ +} FMC_Bank5_6_TypeDef; +#endif /* STM32F427_437xx || STM32F429_439xx */ + +/** * @brief General Purpose I/O */ @@ -666,20 +998,20 @@ typedef struct __IO uint32_t AFR[2]; /*!< GPIO alternate function registers, Address offset: 0x20-0x24 */ } GPIO_TypeDef; -/** +/** * @brief System configuration controller */ - + typedef struct { __IO uint32_t MEMRMP; /*!< SYSCFG memory remap register, Address offset: 0x00 */ __IO uint32_t PMC; /*!< SYSCFG peripheral mode configuration register, Address offset: 0x04 */ __IO uint32_t EXTICR[4]; /*!< SYSCFG external interrupt configuration registers, Address offset: 0x08-0x14 */ - uint32_t RESERVED[2]; /*!< Reserved, 0x18-0x1C */ + uint32_t RESERVED[2]; /*!< Reserved, 0x18-0x1C */ __IO uint32_t CMPCR; /*!< SYSCFG Compensation cell control register, Address offset: 0x20 */ } SYSCFG_TypeDef; -/** +/** * @brief Inter-integrated Circuit Interface */ @@ -703,9 +1035,11 @@ typedef struct uint16_t RESERVED7; /*!< Reserved, 0x1E */ __IO uint16_t TRISE; /*!< I2C TRISE register, Address offset: 0x20 */ uint16_t RESERVED8; /*!< Reserved, 0x22 */ + __IO uint16_t FLTR; /*!< I2C FLTR register, Address offset: 0x24 */ + uint16_t RESERVED9; /*!< Reserved, 0x26 */ } I2C_TypeDef; -/** +/** * @brief Independent WATCHDOG */ @@ -717,7 +1051,55 @@ typedef struct __IO uint32_t SR; /*!< IWDG Status register, Address offset: 0x0C */ } IWDG_TypeDef; -/** +/** + * @brief LCD-TFT Display Controller + */ + +typedef struct +{ + uint32_t RESERVED0[2]; /*!< Reserved, 0x00-0x04 */ + __IO uint32_t SSCR; /*!< LTDC Synchronization Size Configuration Register, Address offset: 0x08 */ + __IO uint32_t BPCR; /*!< LTDC Back Porch Configuration Register, Address offset: 0x0C */ + __IO uint32_t AWCR; /*!< LTDC Active Width Configuration Register, Address offset: 0x10 */ + __IO uint32_t TWCR; /*!< LTDC Total Width Configuration Register, Address offset: 0x14 */ + __IO uint32_t GCR; /*!< LTDC Global Control Register, Address offset: 0x18 */ + uint32_t RESERVED1[2]; /*!< Reserved, 0x1C-0x20 */ + __IO uint32_t SRCR; /*!< LTDC Shadow Reload Configuration Register, Address offset: 0x24 */ + uint32_t RESERVED2[1]; /*!< Reserved, 0x28 */ + __IO uint32_t BCCR; /*!< LTDC Background Color Configuration Register, Address offset: 0x2C */ + uint32_t RESERVED3[1]; /*!< Reserved, 0x30 */ + __IO uint32_t IER; /*!< LTDC Interrupt Enable Register, Address offset: 0x34 */ + __IO uint32_t ISR; /*!< LTDC Interrupt Status Register, Address offset: 0x38 */ + __IO uint32_t ICR; /*!< LTDC Interrupt Clear Register, Address offset: 0x3C */ + __IO uint32_t LIPCR; /*!< LTDC Line Interrupt Position Configuration Register, Address offset: 0x40 */ + __IO uint32_t CPSR; /*!< LTDC Current Position Status Register, Address offset: 0x44 */ + __IO uint32_t CDSR; /*!< LTDC Current Display Status Register, Address offset: 0x48 */ +} LTDC_TypeDef; + +/** + * @brief LCD-TFT Display layer x Controller + */ + +typedef struct +{ + __IO uint32_t CR; /*!< LTDC Layerx Control Register Address offset: 0x84 */ + __IO uint32_t WHPCR; /*!< LTDC Layerx Window Horizontal Position Configuration Register Address offset: 0x88 */ + __IO uint32_t WVPCR; /*!< LTDC Layerx Window Vertical Position Configuration Register Address offset: 0x8C */ + __IO uint32_t CKCR; /*!< LTDC Layerx Color Keying Configuration Register Address offset: 0x90 */ + __IO uint32_t PFCR; /*!< LTDC Layerx Pixel Format Configuration Register Address offset: 0x94 */ + __IO uint32_t CACR; /*!< LTDC Layerx Constant Alpha Configuration Register Address offset: 0x98 */ + __IO uint32_t DCCR; /*!< LTDC Layerx Default Color Configuration Register Address offset: 0x9C */ + __IO uint32_t BFCR; /*!< LTDC Layerx Blending Factors Configuration Register Address offset: 0xA0 */ + uint32_t RESERVED0[2]; /*!< Reserved */ + __IO uint32_t CFBAR; /*!< LTDC Layerx Color Frame Buffer Address Register Address offset: 0xAC */ + __IO uint32_t CFBLR; /*!< LTDC Layerx Color Frame Buffer Length Register Address offset: 0xB0 */ + __IO uint32_t CFBLNR; /*!< LTDC Layerx ColorFrame Buffer Line Number Register Address offset: 0xB4 */ + uint32_t RESERVED1[3]; /*!< Reserved */ + __IO uint32_t CLUTWR; /*!< LTDC Layerx CLUT Write Register Address offset: 0x144 */ + +} LTDC_Layer_TypeDef; + +/** * @brief Power Control */ @@ -727,7 +1109,7 @@ typedef struct __IO uint32_t CSR; /*!< PWR power control/status register, Address offset: 0x04 */ } PWR_TypeDef; -/** +/** * @brief Reset and Clock Control */ @@ -763,9 +1145,12 @@ typedef struct uint32_t RESERVED6[2]; /*!< Reserved, 0x78-0x7C */ __IO uint32_t SSCGR; /*!< RCC spread spectrum clock generation register, Address offset: 0x80 */ __IO uint32_t PLLI2SCFGR; /*!< RCC PLLI2S configuration register, Address offset: 0x84 */ + __IO uint32_t PLLSAICFGR; /*!< RCC PLLSAI configuration register, Address offset: 0x88 */ + __IO uint32_t DCKCFGR; /*!< RCC Dedicated Clocks configuration register, Address offset: 0x8C */ + } RCC_TypeDef; -/** +/** * @brief Real-Time Clock */ @@ -813,7 +1198,29 @@ typedef struct __IO uint32_t BKP19R; /*!< RTC backup register 19, Address offset: 0x9C */ } RTC_TypeDef; -/** + +/** + * @brief Serial Audio Interface + */ + +typedef struct +{ + __IO uint32_t GCR; /*!< SAI global configuration register, Address offset: 0x00 */ +} SAI_TypeDef; + +typedef struct +{ + __IO uint32_t CR1; /*!< SAI block x configuration register 1, Address offset: 0x04 */ + __IO uint32_t CR2; /*!< SAI block x configuration register 2, Address offset: 0x08 */ + __IO uint32_t FRCR; /*!< SAI block x frame configuration register, Address offset: 0x0C */ + __IO uint32_t SLOTR; /*!< SAI block x slot register, Address offset: 0x10 */ + __IO uint32_t IMR; /*!< SAI block x interrupt mask register, Address offset: 0x14 */ + __IO uint32_t SR; /*!< SAI block x status register, Address offset: 0x18 */ + __IO uint32_t CLRFR; /*!< SAI block x clear flag register, Address offset: 0x1C */ + __IO uint32_t DR; /*!< SAI block x data register, Address offset: 0x20 */ +} SAI_Block_TypeDef; + +/** * @brief SD host Interface */ @@ -841,7 +1248,7 @@ typedef struct __IO uint32_t FIFO; /*!< SDIO data FIFO register, Address offset: 0x80 */ } SDIO_TypeDef; -/** +/** * @brief Serial Peripheral Interface */ @@ -867,7 +1274,7 @@ typedef struct uint16_t RESERVED8; /*!< Reserved, 0x22 */ } SPI_TypeDef; -/** +/** * @brief TIM */ @@ -911,10 +1318,10 @@ typedef struct uint16_t RESERVED14; /*!< Reserved, 0x52 */ } TIM_TypeDef; -/** +/** * @brief Universal Synchronous Asynchronous Receiver Transmitter */ - + typedef struct { __IO uint16_t SR; /*!< USART Status register, Address offset: 0x00 */ @@ -933,7 +1340,7 @@ typedef struct uint16_t RESERVED6; /*!< Reserved, 0x1A */ } USART_TypeDef; -/** +/** * @brief Window WATCHDOG */ @@ -944,55 +1351,80 @@ typedef struct __IO uint32_t SR; /*!< WWDG Status register, Address offset: 0x08 */ } WWDG_TypeDef; -/** +/** * @brief Crypto Processor */ typedef struct { - __IO uint32_t CR; /*!< CRYP control register, Address offset: 0x00 */ - __IO uint32_t SR; /*!< CRYP status register, Address offset: 0x04 */ - __IO uint32_t DR; /*!< CRYP data input register, Address offset: 0x08 */ - __IO uint32_t DOUT; /*!< CRYP data output register, Address offset: 0x0C */ - __IO uint32_t DMACR; /*!< CRYP DMA control register, Address offset: 0x10 */ - __IO uint32_t IMSCR; /*!< CRYP interrupt mask set/clear register, Address offset: 0x14 */ - __IO uint32_t RISR; /*!< CRYP raw interrupt status register, Address offset: 0x18 */ - __IO uint32_t MISR; /*!< CRYP masked interrupt status register, Address offset: 0x1C */ - __IO uint32_t K0LR; /*!< CRYP key left register 0, Address offset: 0x20 */ - __IO uint32_t K0RR; /*!< CRYP key right register 0, Address offset: 0x24 */ - __IO uint32_t K1LR; /*!< CRYP key left register 1, Address offset: 0x28 */ - __IO uint32_t K1RR; /*!< CRYP key right register 1, Address offset: 0x2C */ - __IO uint32_t K2LR; /*!< CRYP key left register 2, Address offset: 0x30 */ - __IO uint32_t K2RR; /*!< CRYP key right register 2, Address offset: 0x34 */ - __IO uint32_t K3LR; /*!< CRYP key left register 3, Address offset: 0x38 */ - __IO uint32_t K3RR; /*!< CRYP key right register 3, Address offset: 0x3C */ - __IO uint32_t IV0LR; /*!< CRYP initialization vector left-word register 0, Address offset: 0x40 */ - __IO uint32_t IV0RR; /*!< CRYP initialization vector right-word register 0, Address offset: 0x44 */ - __IO uint32_t IV1LR; /*!< CRYP initialization vector left-word register 1, Address offset: 0x48 */ - __IO uint32_t IV1RR; /*!< CRYP initialization vector right-word register 1, Address offset: 0x4C */ + __IO uint32_t CR; /*!< CRYP control register, Address offset: 0x00 */ + __IO uint32_t SR; /*!< CRYP status register, Address offset: 0x04 */ + __IO uint32_t DR; /*!< CRYP data input register, Address offset: 0x08 */ + __IO uint32_t DOUT; /*!< CRYP data output register, Address offset: 0x0C */ + __IO uint32_t DMACR; /*!< CRYP DMA control register, Address offset: 0x10 */ + __IO uint32_t IMSCR; /*!< CRYP interrupt mask set/clear register, Address offset: 0x14 */ + __IO uint32_t RISR; /*!< CRYP raw interrupt status register, Address offset: 0x18 */ + __IO uint32_t MISR; /*!< CRYP masked interrupt status register, Address offset: 0x1C */ + __IO uint32_t K0LR; /*!< CRYP key left register 0, Address offset: 0x20 */ + __IO uint32_t K0RR; /*!< CRYP key right register 0, Address offset: 0x24 */ + __IO uint32_t K1LR; /*!< CRYP key left register 1, Address offset: 0x28 */ + __IO uint32_t K1RR; /*!< CRYP key right register 1, Address offset: 0x2C */ + __IO uint32_t K2LR; /*!< CRYP key left register 2, Address offset: 0x30 */ + __IO uint32_t K2RR; /*!< CRYP key right register 2, Address offset: 0x34 */ + __IO uint32_t K3LR; /*!< CRYP key left register 3, Address offset: 0x38 */ + __IO uint32_t K3RR; /*!< CRYP key right register 3, Address offset: 0x3C */ + __IO uint32_t IV0LR; /*!< CRYP initialization vector left-word register 0, Address offset: 0x40 */ + __IO uint32_t IV0RR; /*!< CRYP initialization vector right-word register 0, Address offset: 0x44 */ + __IO uint32_t IV1LR; /*!< CRYP initialization vector left-word register 1, Address offset: 0x48 */ + __IO uint32_t IV1RR; /*!< CRYP initialization vector right-word register 1, Address offset: 0x4C */ + __IO uint32_t CSGCMCCM0R; /*!< CRYP GCM/GMAC or CCM/CMAC context swap register 0, Address offset: 0x50 */ + __IO uint32_t CSGCMCCM1R; /*!< CRYP GCM/GMAC or CCM/CMAC context swap register 1, Address offset: 0x54 */ + __IO uint32_t CSGCMCCM2R; /*!< CRYP GCM/GMAC or CCM/CMAC context swap register 2, Address offset: 0x58 */ + __IO uint32_t CSGCMCCM3R; /*!< CRYP GCM/GMAC or CCM/CMAC context swap register 3, Address offset: 0x5C */ + __IO uint32_t CSGCMCCM4R; /*!< CRYP GCM/GMAC or CCM/CMAC context swap register 4, Address offset: 0x60 */ + __IO uint32_t CSGCMCCM5R; /*!< CRYP GCM/GMAC or CCM/CMAC context swap register 5, Address offset: 0x64 */ + __IO uint32_t CSGCMCCM6R; /*!< CRYP GCM/GMAC or CCM/CMAC context swap register 6, Address offset: 0x68 */ + __IO uint32_t CSGCMCCM7R; /*!< CRYP GCM/GMAC or CCM/CMAC context swap register 7, Address offset: 0x6C */ + __IO uint32_t CSGCM0R; /*!< CRYP GCM/GMAC context swap register 0, Address offset: 0x70 */ + __IO uint32_t CSGCM1R; /*!< CRYP GCM/GMAC context swap register 1, Address offset: 0x74 */ + __IO uint32_t CSGCM2R; /*!< CRYP GCM/GMAC context swap register 2, Address offset: 0x78 */ + __IO uint32_t CSGCM3R; /*!< CRYP GCM/GMAC context swap register 3, Address offset: 0x7C */ + __IO uint32_t CSGCM4R; /*!< CRYP GCM/GMAC context swap register 4, Address offset: 0x80 */ + __IO uint32_t CSGCM5R; /*!< CRYP GCM/GMAC context swap register 5, Address offset: 0x84 */ + __IO uint32_t CSGCM6R; /*!< CRYP GCM/GMAC context swap register 6, Address offset: 0x88 */ + __IO uint32_t CSGCM7R; /*!< CRYP GCM/GMAC context swap register 7, Address offset: 0x8C */ } CRYP_TypeDef; -/** +/** * @brief HASH */ - -typedef struct + +typedef struct { - __IO uint32_t CR; /*!< HASH control register, Address offset: 0x00 */ - __IO uint32_t DIN; /*!< HASH data input register, Address offset: 0x04 */ - __IO uint32_t STR; /*!< HASH start register, Address offset: 0x08 */ - __IO uint32_t HR[5]; /*!< HASH digest registers, Address offset: 0x0C-0x1C */ - __IO uint32_t IMR; /*!< HASH interrupt enable register, Address offset: 0x20 */ - __IO uint32_t SR; /*!< HASH status register, Address offset: 0x24 */ - uint32_t RESERVED[52]; /*!< Reserved, 0x28-0xF4 */ - __IO uint32_t CSR[51]; /*!< HASH context swap registers, Address offset: 0x0F8-0x1C0 */ + __IO uint32_t CR; /*!< HASH control register, Address offset: 0x00 */ + __IO uint32_t DIN; /*!< HASH data input register, Address offset: 0x04 */ + __IO uint32_t STR; /*!< HASH start register, Address offset: 0x08 */ + __IO uint32_t HR[5]; /*!< HASH digest registers, Address offset: 0x0C-0x1C */ + __IO uint32_t IMR; /*!< HASH interrupt enable register, Address offset: 0x20 */ + __IO uint32_t SR; /*!< HASH status register, Address offset: 0x24 */ + uint32_t RESERVED[52]; /*!< Reserved, 0x28-0xF4 */ + __IO uint32_t CSR[54]; /*!< HASH context swap registers, Address offset: 0x0F8-0x1CC */ } HASH_TypeDef; -/** - * @brief HASH +/** + * @brief HASH_DIGEST */ + +typedef struct +{ + __IO uint32_t HR[8]; /*!< HASH digest registers, Address offset: 0x310-0x32C */ +} HASH_DIGEST_TypeDef; -typedef struct +/** + * @brief RNG + */ + +typedef struct { __IO uint32_t CR; /*!< RNG control register, Address offset: 0x00 */ __IO uint32_t SR; /*!< RNG status register, Address offset: 0x04 */ @@ -1002,7 +1434,7 @@ typedef struct /** * @} */ - + /** @addtogroup Peripheral_memory_map * @{ */ @@ -1010,13 +1442,22 @@ typedef struct #define CCMDATARAM_BASE ((uint32_t)0x10000000) /*!< CCM(core coupled memory) data RAM(64 KB) base address in the alias region */ #define SRAM1_BASE ((uint32_t)0x20000000) /*!< SRAM1(112 KB) base address in the alias region */ #define SRAM2_BASE ((uint32_t)0x2001C000) /*!< SRAM2(16 KB) base address in the alias region */ +#define SRAM3_BASE ((uint32_t)0x20020000) /*!< SRAM3(64 KB) base address in the alias region */ #define PERIPH_BASE ((uint32_t)0x40000000) /*!< Peripheral base address in the alias region */ #define BKPSRAM_BASE ((uint32_t)0x40024000) /*!< Backup SRAM(4 KB) base address in the alias region */ + +#if defined (STM32F40_41xxx) #define FSMC_R_BASE ((uint32_t)0xA0000000) /*!< FSMC registers base address */ +#endif /* STM32F40_41xxx */ + +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) +#define FMC_R_BASE ((uint32_t)0xA0000000) /*!< FMC registers base address */ +#endif /* STM32F427_437xx || STM32F429_439xx */ #define CCMDATARAM_BB_BASE ((uint32_t)0x12000000) /*!< CCM(core coupled memory) data RAM(64 KB) base address in the bit-band region */ #define SRAM1_BB_BASE ((uint32_t)0x22000000) /*!< SRAM1(112 KB) base address in the bit-band region */ #define SRAM2_BB_BASE ((uint32_t)0x2201C000) /*!< SRAM2(16 KB) base address in the bit-band region */ +#define SRAM3_BB_BASE ((uint32_t)0x22400000) /*!< SRAM3(64 KB) base address in the bit-band region */ #define PERIPH_BB_BASE ((uint32_t)0x42000000) /*!< Peripheral base address in the bit-band region */ #define BKPSRAM_BB_BASE ((uint32_t)0x42024000) /*!< Backup SRAM(4 KB) base address in the bit-band region */ @@ -1059,6 +1500,8 @@ typedef struct #define CAN2_BASE (APB1PERIPH_BASE + 0x6800) #define PWR_BASE (APB1PERIPH_BASE + 0x7000) #define DAC_BASE (APB1PERIPH_BASE + 0x7400) +#define UART7_BASE (APB1PERIPH_BASE + 0x7800) +#define UART8_BASE (APB1PERIPH_BASE + 0x7C00) /*!< APB2 peripherals */ #define TIM1_BASE (APB2PERIPH_BASE + 0x0000) @@ -1071,11 +1514,20 @@ typedef struct #define ADC_BASE (APB2PERIPH_BASE + 0x2300) #define SDIO_BASE (APB2PERIPH_BASE + 0x2C00) #define SPI1_BASE (APB2PERIPH_BASE + 0x3000) +#define SPI4_BASE (APB2PERIPH_BASE + 0x3400) #define SYSCFG_BASE (APB2PERIPH_BASE + 0x3800) #define EXTI_BASE (APB2PERIPH_BASE + 0x3C00) #define TIM9_BASE (APB2PERIPH_BASE + 0x4000) #define TIM10_BASE (APB2PERIPH_BASE + 0x4400) #define TIM11_BASE (APB2PERIPH_BASE + 0x4800) +#define SPI5_BASE (APB2PERIPH_BASE + 0x5000) +#define SPI6_BASE (APB2PERIPH_BASE + 0x5400) +#define SAI1_BASE (APB2PERIPH_BASE + 0x5800) +#define SAI1_Block_A_BASE (SAI1_BASE + 0x004) +#define SAI1_Block_B_BASE (SAI1_BASE + 0x024) +#define LTDC_BASE (APB2PERIPH_BASE + 0x6800) +#define LTDC_Layer1_BASE (LTDC_BASE + 0x84) +#define LTDC_Layer2_BASE (LTDC_BASE + 0x104) /*!< AHB1 peripherals */ #define GPIOA_BASE (AHB1PERIPH_BASE + 0x0000) @@ -1087,6 +1539,8 @@ typedef struct #define GPIOG_BASE (AHB1PERIPH_BASE + 0x1800) #define GPIOH_BASE (AHB1PERIPH_BASE + 0x1C00) #define GPIOI_BASE (AHB1PERIPH_BASE + 0x2000) +#define GPIOJ_BASE (AHB1PERIPH_BASE + 0x2400) +#define GPIOK_BASE (AHB1PERIPH_BASE + 0x2800) #define CRC_BASE (AHB1PERIPH_BASE + 0x3000) #define RCC_BASE (AHB1PERIPH_BASE + 0x3800) #define FLASH_R_BASE (AHB1PERIPH_BASE + 0x3C00) @@ -1113,19 +1567,33 @@ typedef struct #define ETH_MMC_BASE (ETH_BASE + 0x0100) #define ETH_PTP_BASE (ETH_BASE + 0x0700) #define ETH_DMA_BASE (ETH_BASE + 0x1000) +#define DMA2D_BASE (AHB1PERIPH_BASE + 0xB000) /*!< AHB2 peripherals */ #define DCMI_BASE (AHB2PERIPH_BASE + 0x50000) #define CRYP_BASE (AHB2PERIPH_BASE + 0x60000) #define HASH_BASE (AHB2PERIPH_BASE + 0x60400) +#define HASH_DIGEST_BASE (AHB2PERIPH_BASE + 0x60710) #define RNG_BASE (AHB2PERIPH_BASE + 0x60800) +#if defined (STM32F40_41xxx) /*!< FSMC Bankx registers base address */ #define FSMC_Bank1_R_BASE (FSMC_R_BASE + 0x0000) #define FSMC_Bank1E_R_BASE (FSMC_R_BASE + 0x0104) #define FSMC_Bank2_R_BASE (FSMC_R_BASE + 0x0060) #define FSMC_Bank3_R_BASE (FSMC_R_BASE + 0x0080) #define FSMC_Bank4_R_BASE (FSMC_R_BASE + 0x00A0) +#endif /* STM32F40_41xxx */ + +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) +/*!< FMC Bankx registers base address */ +#define FMC_Bank1_R_BASE (FMC_R_BASE + 0x0000) +#define FMC_Bank1E_R_BASE (FMC_R_BASE + 0x0104) +#define FMC_Bank2_R_BASE (FMC_R_BASE + 0x0060) +#define FMC_Bank3_R_BASE (FMC_R_BASE + 0x0080) +#define FMC_Bank4_R_BASE (FMC_R_BASE + 0x00A0) +#define FMC_Bank5_6_R_BASE (FMC_R_BASE + 0x0140) +#endif /* STM32F427_437xx || STM32F429_439xx */ /* Debug MCU registers base address */ #define DBGMCU_BASE ((uint32_t )0xE0042000) @@ -1133,10 +1601,10 @@ typedef struct /** * @} */ - + /** @addtogroup Peripheral_declaration * @{ - */ + */ #define TIM2 ((TIM_TypeDef *) TIM2_BASE) #define TIM3 ((TIM_TypeDef *) TIM3_BASE) #define TIM4 ((TIM_TypeDef *) TIM4_BASE) @@ -1164,6 +1632,8 @@ typedef struct #define CAN2 ((CAN_TypeDef *) CAN2_BASE) #define PWR ((PWR_TypeDef *) PWR_BASE) #define DAC ((DAC_TypeDef *) DAC_BASE) +#define UART7 ((USART_TypeDef *) UART7_BASE) +#define UART8 ((USART_TypeDef *) UART8_BASE) #define TIM1 ((TIM_TypeDef *) TIM1_BASE) #define TIM8 ((TIM_TypeDef *) TIM8_BASE) #define USART1 ((USART_TypeDef *) USART1_BASE) @@ -1173,12 +1643,21 @@ typedef struct #define ADC2 ((ADC_TypeDef *) ADC2_BASE) #define ADC3 ((ADC_TypeDef *) ADC3_BASE) #define SDIO ((SDIO_TypeDef *) SDIO_BASE) -#define SPI1 ((SPI_TypeDef *) SPI1_BASE) +#define SPI1 ((SPI_TypeDef *) SPI1_BASE) +#define SPI4 ((SPI_TypeDef *) SPI4_BASE) #define SYSCFG ((SYSCFG_TypeDef *) SYSCFG_BASE) #define EXTI ((EXTI_TypeDef *) EXTI_BASE) #define TIM9 ((TIM_TypeDef *) TIM9_BASE) #define TIM10 ((TIM_TypeDef *) TIM10_BASE) #define TIM11 ((TIM_TypeDef *) TIM11_BASE) +#define SPI5 ((SPI_TypeDef *) SPI5_BASE) +#define SPI6 ((SPI_TypeDef *) SPI6_BASE) +#define SAI1 ((SAI_TypeDef *) SAI1_BASE) +#define SAI1_Block_A ((SAI_Block_TypeDef *)SAI1_Block_A_BASE) +#define SAI1_Block_B ((SAI_Block_TypeDef *)SAI1_Block_B_BASE) +#define LTDC ((LTDC_TypeDef *)LTDC_BASE) +#define LTDC_Layer1 ((LTDC_Layer_TypeDef *)LTDC_Layer1_BASE) +#define LTDC_Layer2 ((LTDC_Layer_TypeDef *)LTDC_Layer2_BASE) #define GPIOA ((GPIO_TypeDef *) GPIOA_BASE) #define GPIOB ((GPIO_TypeDef *) GPIOB_BASE) #define GPIOC ((GPIO_TypeDef *) GPIOC_BASE) @@ -1188,6 +1667,8 @@ typedef struct #define GPIOG ((GPIO_TypeDef *) GPIOG_BASE) #define GPIOH ((GPIO_TypeDef *) GPIOH_BASE) #define GPIOI ((GPIO_TypeDef *) GPIOI_BASE) +#define GPIOJ ((GPIO_TypeDef *) GPIOJ_BASE) +#define GPIOK ((GPIO_TypeDef *) GPIOK_BASE) #define CRC ((CRC_TypeDef *) CRC_BASE) #define RCC ((RCC_TypeDef *) RCC_BASE) #define FLASH ((FLASH_TypeDef *) FLASH_R_BASE) @@ -1209,16 +1690,31 @@ typedef struct #define DMA2_Stream5 ((DMA_Stream_TypeDef *) DMA2_Stream5_BASE) #define DMA2_Stream6 ((DMA_Stream_TypeDef *) DMA2_Stream6_BASE) #define DMA2_Stream7 ((DMA_Stream_TypeDef *) DMA2_Stream7_BASE) -#define ETH ((ETH_TypeDef *) ETH_BASE) +#define ETH ((ETH_TypeDef *) ETH_BASE) +#define DMA2D ((DMA2D_TypeDef *)DMA2D_BASE) #define DCMI ((DCMI_TypeDef *) DCMI_BASE) #define CRYP ((CRYP_TypeDef *) CRYP_BASE) #define HASH ((HASH_TypeDef *) HASH_BASE) +#define HASH_DIGEST ((HASH_DIGEST_TypeDef *) HASH_DIGEST_BASE) #define RNG ((RNG_TypeDef *) RNG_BASE) + +#if defined (STM32F40_41xxx) #define FSMC_Bank1 ((FSMC_Bank1_TypeDef *) FSMC_Bank1_R_BASE) #define FSMC_Bank1E ((FSMC_Bank1E_TypeDef *) FSMC_Bank1E_R_BASE) #define FSMC_Bank2 ((FSMC_Bank2_TypeDef *) FSMC_Bank2_R_BASE) #define FSMC_Bank3 ((FSMC_Bank3_TypeDef *) FSMC_Bank3_R_BASE) #define FSMC_Bank4 ((FSMC_Bank4_TypeDef *) FSMC_Bank4_R_BASE) +#endif /* STM32F40_41xxx */ + +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) +#define FMC_Bank1 ((FMC_Bank1_TypeDef *) FMC_Bank1_R_BASE) +#define FMC_Bank1E ((FMC_Bank1E_TypeDef *) FMC_Bank1E_R_BASE) +#define FMC_Bank2 ((FMC_Bank2_TypeDef *) FMC_Bank2_R_BASE) +#define FMC_Bank3 ((FMC_Bank3_TypeDef *) FMC_Bank3_R_BASE) +#define FMC_Bank4 ((FMC_Bank4_TypeDef *) FMC_Bank4_R_BASE) +#define FMC_Bank5_6 ((FMC_Bank5_6_TypeDef *) FMC_Bank5_6_R_BASE) +#endif /* STM32F427_437xx || STM32F429_439xx */ + #define DBGMCU ((DBGMCU_TypeDef *) DBGMCU_BASE) /** @@ -1228,11 +1724,11 @@ typedef struct /** @addtogroup Exported_constants * @{ */ - + /** @addtogroup Peripheral_Registers_Bits_Definition * @{ */ - + /******************************************************************************/ /* Peripheral Registers_Bits_Definition */ /******************************************************************************/ @@ -1243,12 +1739,12 @@ typedef struct /* */ /******************************************************************************/ /******************** Bit definition for ADC_SR register ********************/ -#define ADC_SR_AWD ((uint8_t)0x01) /*!
© COPYRIGHT 2012 STMicroelectronics
+ *

© COPYRIGHT 2013 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -99,8 +238,8 @@ * * http://www.st.com/software_license_agreement_liberty_v2 * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. @@ -114,8 +253,8 @@ /** @addtogroup stm32f4xx_system * @{ - */ - + */ + /** @addtogroup STM32F4xx_System_Private_Includes * @{ */ @@ -139,27 +278,76 @@ */ /************************* Miscellaneous Configuration ************************/ -/*!< Uncomment the following line if you need to use external SRAM mounted - on STM324xG_EVAL board as data memory */ +/*!< Uncomment the following line if you need to use external SRAM or SDRAM mounted + on STM324xG_EVAL/STM324x7I_EVAL/STM324x9I_EVAL boards as data memory */ +#if defined (STM32F40_41xxx) || defined (STM32F427_437xx) || defined (STM32F429_439xx) /* #define DATA_IN_ExtSRAM */ - +#endif /* STM32F40_41xxx || STM32F427_437x || STM32F429_439xx */ + +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) +/* #define DATA_IN_ExtSDRAM */ +#endif /* STM32F427_437x || STM32F429_439xx */ + +#if defined (STM32F411xE) +/*!< Uncomment the following line if you need to clock the STM32F411xE by HSE Bypass + through STLINK MCO pin of STM32F103 microcontroller. The frequency cannot be changed + and is fixed at 8 MHz. + Hardware configuration needed for Nucleo Board: + – SB54, SB55 OFF + – R35 removed + – SB16, SB50 ON */ +/* #define USE_HSE_BYPASS */ + +#if defined (USE_HSE_BYPASS) +#define HSE_BYPASS_INPUT_FREQUENCY 8000000 +#endif /* USE_HSE_BYPASS */ +#endif /* STM32F411xE */ + /*!< Uncomment the following line if you need to relocate your vector Table in Internal SRAM. */ /* #define VECT_TAB_SRAM */ -#define VECT_TAB_OFFSET 0xC000 /*!< Vector Table base offset field. +#define VECT_TAB_OFFSET 0x00 /*!< Vector Table base offset field. This value must be a multiple of 0x200. */ /******************************************************************************/ /************************* PLL Parameters *************************************/ +#if defined (STM32F40_41xxx) || defined (STM32F427_437xx) || defined (STM32F429_439xx) || defined (STM32F401xx) /* PLL_VCO = (HSE_VALUE or HSI_VALUE / PLL_M) * PLL_N */ #define PLL_M 25 +#else /* STM32F411xE */ +#if defined (USE_HSE_BYPASS) +#define PLL_M 8 +#else /* STM32F411xE */ +#define PLL_M 16 +#endif /* USE_HSE_BYPASS */ +#endif /* STM32F40_41xxx || STM32F427_437xx || STM32F429_439xx || STM32F401xx */ + +/* USB OTG FS, SDIO and RNG Clock = PLL_VCO / PLLQ */ +#define PLL_Q 7 + +#if defined (STM32F40_41xxx) #define PLL_N 336 +/* SYSCLK = PLL_VCO / PLL_P */ +#define PLL_P 2 +#endif /* STM32F40_41xxx */ +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) +#define PLL_N 360 /* SYSCLK = PLL_VCO / PLL_P */ #define PLL_P 2 +#endif /* STM32F427_437x || STM32F429_439xx */ -/* USB OTG FS, SDIO and RNG Clock = PLL_VCO / PLLQ */ -#define PLL_Q 7 +#if defined (STM32F401xx) +#define PLL_N 336 +/* SYSCLK = PLL_VCO / PLL_P */ +#define PLL_P 4 +#endif /* STM32F401xx */ + +#if defined (STM32F411xE) +#define PLL_N 400 +/* SYSCLK = PLL_VCO / PLL_P */ +#define PLL_P 4 +#endif /* STM32F411xx */ /******************************************************************************/ @@ -179,9 +367,23 @@ * @{ */ +#if defined (STM32F40_41xxx) uint32_t SystemCoreClock = 168000000; +#endif /* STM32F40_41xxx */ + +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) + uint32_t SystemCoreClock = 180000000; +#endif /* STM32F427_437x || STM32F429_439xx */ - __I uint8_t AHBPrescTable[16] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 7, 8, 9}; +#if defined (STM32F401xx) + uint32_t SystemCoreClock = 84000000; +#endif /* STM32F401xx */ + +#if defined (STM32F411xE) + uint32_t SystemCoreClock = 100000000; +#endif /* STM32F401xx */ + +__I uint8_t AHBPrescTable[16] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 7, 8, 9}; /** * @} @@ -192,9 +394,10 @@ */ static void SetSysClock(void); -#ifdef DATA_IN_ExtSRAM - static void SystemInit_ExtMemCtl(void); -#endif /* DATA_IN_ExtSRAM */ + +#if defined (DATA_IN_ExtSRAM) || defined (DATA_IN_ExtSDRAM) +static void SystemInit_ExtMemCtl(void); +#endif /* DATA_IN_ExtSRAM || DATA_IN_ExtSDRAM */ /** * @} @@ -206,7 +409,7 @@ static void SetSysClock(void); /** * @brief Setup the microcontroller system - * Initialize the Embedded Flash Interface, the PLL and update the + * Initialize the Embedded Flash Interface, the PLL and update the * SystemFrequency variable. * @param None * @retval None @@ -217,7 +420,6 @@ void SystemInit(void) #if (__FPU_PRESENT == 1) && (__FPU_USED == 1) SCB->CPACR |= ((3UL << 10*2)|(3UL << 11*2)); /* set CP10 and CP11 Full Access */ #endif - /* Reset the RCC clock configuration to the default reset state ------------*/ /* Set HSION bit */ RCC->CR |= (uint32_t)0x00000001; @@ -237,11 +439,11 @@ void SystemInit(void) /* Disable all interrupts */ RCC->CIR = 0x00000000; -#ifdef DATA_IN_ExtSRAM - SystemInit_ExtMemCtl(); -#endif /* DATA_IN_ExtSRAM */ - - /* Configure the System clock source, PLL Multiplier and Divider factors, +#if defined (DATA_IN_ExtSRAM) || defined (DATA_IN_ExtSDRAM) + SystemInit_ExtMemCtl(); +#endif /* DATA_IN_ExtSRAM || DATA_IN_ExtSDRAM */ + + /* Configure the System clock source, PLL Multiplier and Divider factors, AHB/APBx prescalers and Flash settings ----------------------------------*/ SetSysClock(); @@ -258,41 +460,41 @@ void SystemInit(void) * The SystemCoreClock variable contains the core clock (HCLK), it can * be used by the user application to setup the SysTick timer or configure * other parameters. - * + * * @note Each time the core clock (HCLK) changes, this function must be called * to update SystemCoreClock variable value. Otherwise, any configuration - * based on this variable will be incorrect. - * - * @note - The system frequency computed by this function is not the real - * frequency in the chip. It is calculated based on the predefined + * based on this variable will be incorrect. + * + * @note - The system frequency computed by this function is not the real + * frequency in the chip. It is calculated based on the predefined * constant and the selected clock source: - * + * * - If SYSCLK source is HSI, SystemCoreClock will contain the HSI_VALUE(*) - * + * * - If SYSCLK source is HSE, SystemCoreClock will contain the HSE_VALUE(**) - * - * - If SYSCLK source is PLL, SystemCoreClock will contain the HSE_VALUE(**) + * + * - If SYSCLK source is PLL, SystemCoreClock will contain the HSE_VALUE(**) * or HSI_VALUE(*) multiplied/divided by the PLL factors. - * + * * (*) HSI_VALUE is a constant defined in stm32f4xx.h file (default value * 16 MHz) but the real value may vary depending on the variations - * in voltage and temperature. - * + * in voltage and temperature. + * * (**) HSE_VALUE is a constant defined in stm32f4xx.h file (default value * 25 MHz), user has to ensure that HSE_VALUE is same as the real * frequency of the crystal used. Otherwise, this function may * have wrong result. - * + * * - The result of this function could be not correct when using fractional * value for HSE crystal. - * + * * @param None * @retval None */ void SystemCoreClockUpdate(void) { uint32_t tmp = 0, pllvco = 0, pllp = 2, pllsource = 0, pllm = 2; - + /* Get SYSCLK source -------------------------------------------------------*/ tmp = RCC->CFGR & RCC_CFGR_SWS; @@ -305,13 +507,13 @@ void SystemCoreClockUpdate(void) SystemCoreClock = HSE_VALUE; break; case 0x08: /* PLL used as system clock source */ - - /* PLL_VCO = (HSE_VALUE or HSI_VALUE / PLL_M) * PLL_N + /* PLL_VCO = (HSE_VALUE or HSI_VALUE / PLL_M) * PLL_N SYSCLK = PLL_VCO / PLL_P - */ + */ pllsource = (RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) >> 22; pllm = RCC->PLLCFGR & RCC_PLLCFGR_PLLM; - + +#if defined (STM32F40_41xxx) || defined (STM32F427_437xx) || defined (STM32F429_439xx) || defined (STM32F401xx) if (pllsource != 0) { /* HSE used as PLL clock source */ @@ -320,11 +522,25 @@ void SystemCoreClockUpdate(void) else { /* HSI used as PLL clock source */ - pllvco = (HSI_VALUE / pllm) * ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> 6); + pllvco = (HSI_VALUE / pllm) * ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> 6); } - +#elif defined (STM32F411xE) +#if defined (USE_HSE_BYPASS) + if (pllsource != 0) + { + /* HSE used as PLL clock source */ + pllvco = (HSE_BYPASS_INPUT_FREQUENCY / pllm) * ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> 6); + } +#else + if (pllsource == 0) + { + /* HSI used as PLL clock source */ + pllvco = (HSI_VALUE / pllm) * ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> 6); + } +#endif /* USE_HSE_BYPASS */ +#endif /* STM32F40_41xxx || STM32F427_437xx || STM32F429_439xx || STM32F401xx */ pllp = (((RCC->PLLCFGR & RCC_PLLCFGR_PLLP) >>16) + 1 ) *2; - SystemCoreClock = pllvco/pllp; + SystemCoreClock = pllvco/pllp; break; default: SystemCoreClock = HSI_VALUE; @@ -338,23 +554,24 @@ void SystemCoreClockUpdate(void) } /** - * @brief Configures the System clock source, PLL Multiplier and Divider factors, + * @brief Configures the System clock source, PLL Multiplier and Divider factors, * AHB/APBx prescalers and Flash settings - * @Note This function should be called only once the RCC clock configuration - * is reset to the default reset state (done in SystemInit() function). + * @Note This function should be called only once the RCC clock configuration + * is reset to the default reset state (done in SystemInit() function). * @param None * @retval None */ static void SetSysClock(void) { +#if defined (STM32F40_41xxx) || defined (STM32F427_437xx) || defined (STM32F429_439xx) || defined (STM32F401xx) /******************************************************************************/ /* PLL (clocked by HSE) used as System clock source */ /******************************************************************************/ __IO uint32_t StartUpCounter = 0, HSEStatus = 0; - + /* Enable HSE */ RCC->CR |= ((uint32_t)RCC_CR_HSEON); - + /* Wait till HSE is ready and if Time out is reached exit */ do { @@ -373,19 +590,29 @@ static void SetSysClock(void) if (HSEStatus == (uint32_t)0x01) { - /* Select regulator voltage output Scale 1 mode, System frequency up to 168 MHz */ + /* Select regulator voltage output Scale 1 mode */ RCC->APB1ENR |= RCC_APB1ENR_PWREN; PWR->CR |= PWR_CR_VOS; /* HCLK = SYSCLK / 1*/ RCC->CFGR |= RCC_CFGR_HPRE_DIV1; +#if defined (STM32F40_41xxx) || defined (STM32F427_437xx) || defined (STM32F429_439xx) /* PCLK2 = HCLK / 2*/ RCC->CFGR |= RCC_CFGR_PPRE2_DIV2; - + /* PCLK1 = HCLK / 4*/ RCC->CFGR |= RCC_CFGR_PPRE1_DIV4; +#endif /* STM32F40_41xxx || STM32F427_437x || STM32F429_439xx */ +#if defined (STM32F401xx) + /* PCLK2 = HCLK / 2*/ + RCC->CFGR |= RCC_CFGR_PPRE2_DIV1; + + /* PCLK1 = HCLK / 4*/ + RCC->CFGR |= RCC_CFGR_PPRE1_DIV2; +#endif /* STM32F401xx */ + /* Configure the main PLL */ RCC->PLLCFGR = PLL_M | (PLL_N << 6) | (((PLL_P >> 1) -1) << 16) | (RCC_PLLCFGR_PLLSRC_HSE) | (PLL_Q << 24); @@ -397,9 +624,30 @@ static void SetSysClock(void) while((RCC->CR & RCC_CR_PLLRDY) == 0) { } + +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) + /* Enable the Over-drive to extend the clock frequency to 180 Mhz */ + PWR->CR |= PWR_CR_ODEN; + while((PWR->CSR & PWR_CSR_ODRDY) == 0) + { + } + PWR->CR |= PWR_CR_ODSWEN; + while((PWR->CSR & PWR_CSR_ODSWRDY) == 0) + { + } + /* Configure Flash prefetch, Instruction cache, Data cache and wait state */ + FLASH->ACR = FLASH_ACR_PRFTEN | FLASH_ACR_ICEN |FLASH_ACR_DCEN |FLASH_ACR_LATENCY_5WS; +#endif /* STM32F427_437x || STM32F429_439xx */ +#if defined (STM32F40_41xxx) /* Configure Flash prefetch, Instruction cache, Data cache and wait state */ - FLASH->ACR = FLASH_ACR_ICEN |FLASH_ACR_DCEN |FLASH_ACR_LATENCY_5WS; + FLASH->ACR = FLASH_ACR_PRFTEN | FLASH_ACR_ICEN |FLASH_ACR_DCEN |FLASH_ACR_LATENCY_5WS; +#endif /* STM32F40_41xxx */ + +#if defined (STM32F401xx) + /* Configure Flash prefetch, Instruction cache, Data cache and wait state */ + FLASH->ACR = FLASH_ACR_PRFTEN | FLASH_ACR_ICEN |FLASH_ACR_DCEN |FLASH_ACR_LATENCY_2WS; +#endif /* STM32F401xx */ /* Select the main PLL as system clock source */ RCC->CFGR &= (uint32_t)((uint32_t)~(RCC_CFGR_SW)); @@ -414,20 +662,126 @@ static void SetSysClock(void) { /* If HSE fails to start-up, the application will have wrong clock configuration. User can add here some code to deal with this error */ } +#elif defined (STM32F411xE) +#if defined (USE_HSE_BYPASS) +/******************************************************************************/ +/* PLL (clocked by HSE) used as System clock source */ +/******************************************************************************/ + __IO uint32_t StartUpCounter = 0, HSEStatus = 0; + + /* Enable HSE and HSE BYPASS */ + RCC->CR |= ((uint32_t)RCC_CR_HSEON | RCC_CR_HSEBYP); + + /* Wait till HSE is ready and if Time out is reached exit */ + do + { + HSEStatus = RCC->CR & RCC_CR_HSERDY; + StartUpCounter++; + } while((HSEStatus == 0) && (StartUpCounter != HSE_STARTUP_TIMEOUT)); + + if ((RCC->CR & RCC_CR_HSERDY) != RESET) + { + HSEStatus = (uint32_t)0x01; + } + else + { + HSEStatus = (uint32_t)0x00; + } + + if (HSEStatus == (uint32_t)0x01) + { + /* Select regulator voltage output Scale 1 mode */ + RCC->APB1ENR |= RCC_APB1ENR_PWREN; + PWR->CR |= PWR_CR_VOS; + + /* HCLK = SYSCLK / 1*/ + RCC->CFGR |= RCC_CFGR_HPRE_DIV1; + + /* PCLK2 = HCLK / 2*/ + RCC->CFGR |= RCC_CFGR_PPRE2_DIV1; + + /* PCLK1 = HCLK / 4*/ + RCC->CFGR |= RCC_CFGR_PPRE1_DIV2; + + /* Configure the main PLL */ + RCC->PLLCFGR = PLL_M | (PLL_N << 6) | (((PLL_P >> 1) -1) << 16) | + (RCC_PLLCFGR_PLLSRC_HSE) | (PLL_Q << 24); + + /* Enable the main PLL */ + RCC->CR |= RCC_CR_PLLON; + /* Wait till the main PLL is ready */ + while((RCC->CR & RCC_CR_PLLRDY) == 0) + { + } + + /* Configure Flash prefetch, Instruction cache, Data cache and wait state */ + FLASH->ACR = FLASH_ACR_PRFTEN | FLASH_ACR_ICEN |FLASH_ACR_DCEN |FLASH_ACR_LATENCY_2WS; + + /* Select the main PLL as system clock source */ + RCC->CFGR &= (uint32_t)((uint32_t)~(RCC_CFGR_SW)); + RCC->CFGR |= RCC_CFGR_SW_PLL; + + /* Wait till the main PLL is used as system clock source */ + while ((RCC->CFGR & (uint32_t)RCC_CFGR_SWS ) != RCC_CFGR_SWS_PLL); + { + } + } + else + { /* If HSE fails to start-up, the application will have wrong clock + configuration. User can add here some code to deal with this error */ + } +#else /* HSI will be used as PLL clock source */ + /* Select regulator voltage output Scale 1 mode */ + RCC->APB1ENR |= RCC_APB1ENR_PWREN; + PWR->CR |= PWR_CR_VOS; + + /* HCLK = SYSCLK / 1*/ + RCC->CFGR |= RCC_CFGR_HPRE_DIV1; + + /* PCLK2 = HCLK / 2*/ + RCC->CFGR |= RCC_CFGR_PPRE2_DIV1; + + /* PCLK1 = HCLK / 4*/ + RCC->CFGR |= RCC_CFGR_PPRE1_DIV2; + + /* Configure the main PLL */ + RCC->PLLCFGR = PLL_M | (PLL_N << 6) | (((PLL_P >> 1) -1) << 16) | (PLL_Q << 24); + + /* Enable the main PLL */ + RCC->CR |= RCC_CR_PLLON; + + /* Wait till the main PLL is ready */ + while((RCC->CR & RCC_CR_PLLRDY) == 0) + { + } + + /* Configure Flash prefetch, Instruction cache, Data cache and wait state */ + FLASH->ACR = FLASH_ACR_PRFTEN | FLASH_ACR_ICEN |FLASH_ACR_DCEN |FLASH_ACR_LATENCY_2WS; + + /* Select the main PLL as system clock source */ + RCC->CFGR &= (uint32_t)((uint32_t)~(RCC_CFGR_SW)); + RCC->CFGR |= RCC_CFGR_SW_PLL; + + /* Wait till the main PLL is used as system clock source */ + while ((RCC->CFGR & (uint32_t)RCC_CFGR_SWS ) != RCC_CFGR_SWS_PLL); + { + } +#endif /* USE_HSE_BYPASS */ +#endif /* STM32F40_41xxx || STM32F427_437xx || STM32F429_439xx || STM32F401xx */ } /** - * @brief Setup the external memory controller. Called in startup_stm32f4xx.s + * @brief Setup the external memory controller. Called in startup_stm32f4xx.s * before jump to __main * @param None * @retval None - */ + */ #ifdef DATA_IN_ExtSRAM /** * @brief Setup the external memory controller. * Called in startup_stm32f4xx.s before jump to main. - * This function configures the external SRAM mounted on STM324xG_EVAL board + * This function configures the external SRAM mounted on STM324xG_EVAL/STM324x7I boards * This SRAM will be used as program data memory (including heap and stack). * @param None * @retval None @@ -436,100 +790,110 @@ void SystemInit_ExtMemCtl(void) { /*-- GPIOs Configuration -----------------------------------------------------*/ /* - +-------------------+--------------------+------------------+------------------+ - + SRAM pins assignment + - +-------------------+--------------------+------------------+------------------+ - | PD0 <-> FSMC_D2 | PE0 <-> FSMC_NBL0 | PF0 <-> FSMC_A0 | PG0 <-> FSMC_A10 | - | PD1 <-> FSMC_D3 | PE1 <-> FSMC_NBL1 | PF1 <-> FSMC_A1 | PG1 <-> FSMC_A11 | - | PD4 <-> FSMC_NOE | PE3 <-> FSMC_A19 | PF2 <-> FSMC_A2 | PG2 <-> FSMC_A12 | - | PD5 <-> FSMC_NWE | PE4 <-> FSMC_A20 | PF3 <-> FSMC_A3 | PG3 <-> FSMC_A13 | - | PD8 <-> FSMC_D13 | PE7 <-> FSMC_D4 | PF4 <-> FSMC_A4 | PG4 <-> FSMC_A14 | - | PD9 <-> FSMC_D14 | PE8 <-> FSMC_D5 | PF5 <-> FSMC_A5 | PG5 <-> FSMC_A15 | - | PD10 <-> FSMC_D15 | PE9 <-> FSMC_D6 | PF12 <-> FSMC_A6 | PG9 <-> FSMC_NE2 | - | PD11 <-> FSMC_A16 | PE10 <-> FSMC_D7 | PF13 <-> FSMC_A7 |------------------+ - | PD12 <-> FSMC_A17 | PE11 <-> FSMC_D8 | PF14 <-> FSMC_A8 | - | PD13 <-> FSMC_A18 | PE12 <-> FSMC_D9 | PF15 <-> FSMC_A9 | - | PD14 <-> FSMC_D0 | PE13 <-> FSMC_D10 |------------------+ - | PD15 <-> FSMC_D1 | PE14 <-> FSMC_D11 | - | | PE15 <-> FSMC_D12 | - +-------------------+--------------------+ + +-------------------+--------------------+------------------+--------------+ + + SRAM pins assignment + + +-------------------+--------------------+------------------+--------------+ + | PD0 <-> FMC_D2 | PE0 <-> FMC_NBL0 | PF0 <-> FMC_A0 | PG0 <-> FMC_A10 | + | PD1 <-> FMC_D3 | PE1 <-> FMC_NBL1 | PF1 <-> FMC_A1 | PG1 <-> FMC_A11 | + | PD4 <-> FMC_NOE | PE3 <-> FMC_A19 | PF2 <-> FMC_A2 | PG2 <-> FMC_A12 | + | PD5 <-> FMC_NWE | PE4 <-> FMC_A20 | PF3 <-> FMC_A3 | PG3 <-> FMC_A13 | + | PD8 <-> FMC_D13 | PE7 <-> FMC_D4 | PF4 <-> FMC_A4 | PG4 <-> FMC_A14 | + | PD9 <-> FMC_D14 | PE8 <-> FMC_D5 | PF5 <-> FMC_A5 | PG5 <-> FMC_A15 | + | PD10 <-> FMC_D15 | PE9 <-> FMC_D6 | PF12 <-> FMC_A6 | PG9 <-> FMC_NE2 | + | PD11 <-> FMC_A16 | PE10 <-> FMC_D7 | PF13 <-> FMC_A7 |-----------------+ + | PD12 <-> FMC_A17 | PE11 <-> FMC_D8 | PF14 <-> FMC_A8 | + | PD13 <-> FMC_A18 | PE12 <-> FMC_D9 | PF15 <-> FMC_A9 | + | PD14 <-> FMC_D0 | PE13 <-> FMC_D10 |-----------------+ + | PD15 <-> FMC_D1 | PE14 <-> FMC_D11 | + | | PE15 <-> FMC_D12 | + +------------------+------------------+ */ /* Enable GPIOD, GPIOE, GPIOF and GPIOG interface clock */ - RCC->AHB1ENR = 0x00000078; - - /* Connect PDx pins to FSMC Alternate function */ + RCC->AHB1ENR |= 0x00000078; + + /* Connect PDx pins to FMC Alternate function */ GPIOD->AFR[0] = 0x00cc00cc; - GPIOD->AFR[1] = 0xcc0ccccc; - /* Configure PDx pins in Alternate function mode */ + GPIOD->AFR[1] = 0xcccccccc; + /* Configure PDx pins in Alternate function mode */ GPIOD->MODER = 0xaaaa0a0a; - /* Configure PDx pins speed to 100 MHz */ + /* Configure PDx pins speed to 100 MHz */ GPIOD->OSPEEDR = 0xffff0f0f; - /* Configure PDx pins Output type to push-pull */ + /* Configure PDx pins Output type to push-pull */ GPIOD->OTYPER = 0x00000000; - /* No pull-up, pull-down for PDx pins */ + /* No pull-up, pull-down for PDx pins */ GPIOD->PUPDR = 0x00000000; - /* Connect PEx pins to FSMC Alternate function */ - GPIOE->AFR[0] = 0xc00cc0cc; + /* Connect PEx pins to FMC Alternate function */ + GPIOE->AFR[0] = 0xcccccccc; GPIOE->AFR[1] = 0xcccccccc; - /* Configure PEx pins in Alternate function mode */ - GPIOE->MODER = 0xaaaa828a; - /* Configure PEx pins speed to 100 MHz */ - GPIOE->OSPEEDR = 0xffffc3cf; - /* Configure PEx pins Output type to push-pull */ + /* Configure PEx pins in Alternate function mode */ + GPIOE->MODER = 0xaaaaaaaa; + /* Configure PEx pins speed to 100 MHz */ + GPIOE->OSPEEDR = 0xffffffff; + /* Configure PEx pins Output type to push-pull */ GPIOE->OTYPER = 0x00000000; - /* No pull-up, pull-down for PEx pins */ + /* No pull-up, pull-down for PEx pins */ GPIOE->PUPDR = 0x00000000; - /* Connect PFx pins to FSMC Alternate function */ + /* Connect PFx pins to FMC Alternate function */ GPIOF->AFR[0] = 0x00cccccc; GPIOF->AFR[1] = 0xcccc0000; - /* Configure PFx pins in Alternate function mode */ + /* Configure PFx pins in Alternate function mode */ GPIOF->MODER = 0xaa000aaa; - /* Configure PFx pins speed to 100 MHz */ + /* Configure PFx pins speed to 100 MHz */ GPIOF->OSPEEDR = 0xff000fff; - /* Configure PFx pins Output type to push-pull */ + /* Configure PFx pins Output type to push-pull */ GPIOF->OTYPER = 0x00000000; - /* No pull-up, pull-down for PFx pins */ + /* No pull-up, pull-down for PFx pins */ GPIOF->PUPDR = 0x00000000; - /* Connect PGx pins to FSMC Alternate function */ + /* Connect PGx pins to FMC Alternate function */ GPIOG->AFR[0] = 0x00cccccc; GPIOG->AFR[1] = 0x000000c0; - /* Configure PGx pins in Alternate function mode */ + /* Configure PGx pins in Alternate function mode */ GPIOG->MODER = 0x00080aaa; - /* Configure PGx pins speed to 100 MHz */ + /* Configure PGx pins speed to 100 MHz */ GPIOG->OSPEEDR = 0x000c0fff; - /* Configure PGx pins Output type to push-pull */ + /* Configure PGx pins Output type to push-pull */ GPIOG->OTYPER = 0x00000000; - /* No pull-up, pull-down for PGx pins */ + /* No pull-up, pull-down for PGx pins */ GPIOG->PUPDR = 0x00000000; + +/*-- FMC Configuration ------------------------------------------------------*/ + /* Enable the FMC/FSMC interface clock */ + RCC->AHB3ENR |= 0x00000001; + +#if defined (STM32F427_437xx) || defined (STM32F429_439xx) + /* Configure and enable Bank1_SRAM2 */ + FMC_Bank1->BTCR[2] = 0x00001011; + FMC_Bank1->BTCR[3] = 0x00000201; + FMC_Bank1E->BWTR[2] = 0x0fffffff; +#endif /* STM32F427_437xx || STM32F429_439xx */ -/*-- FSMC Configuration ------------------------------------------------------*/ - /* Enable the FSMC interface clock */ - RCC->AHB3ENR = 0x00000001; - +#if defined (STM32F40_41xxx) /* Configure and enable Bank1_SRAM2 */ - FSMC_Bank1->BTCR[2] = 0x00001015; - FSMC_Bank1->BTCR[3] = 0x00010603; + FSMC_Bank1->BTCR[2] = 0x00001011; + FSMC_Bank1->BTCR[3] = 0x00000201; FSMC_Bank1E->BWTR[2] = 0x0fffffff; +#endif /* STM32F40_41xxx */ + /* Bank1_SRAM2 is configured as follow: - - p.FSMC_AddressSetupTime = 3; - p.FSMC_AddressHoldTime = 0; - p.FSMC_DataSetupTime = 6; - p.FSMC_BusTurnAroundDuration = 1; - p.FSMC_CLKDivision = 0; - p.FSMC_DataLatency = 0; - p.FSMC_AccessMode = FSMC_AccessMode_A; + In case of FSMC configuration + NORSRAMTimingStructure.FSMC_AddressSetupTime = 1; + NORSRAMTimingStructure.FSMC_AddressHoldTime = 0; + NORSRAMTimingStructure.FSMC_DataSetupTime = 2; + NORSRAMTimingStructure.FSMC_BusTurnAroundDuration = 0; + NORSRAMTimingStructure.FSMC_CLKDivision = 0; + NORSRAMTimingStructure.FSMC_DataLatency = 0; + NORSRAMTimingStructure.FSMC_AccessMode = FMC_AccessMode_A; FSMC_NORSRAMInitStructure.FSMC_Bank = FSMC_Bank1_NORSRAM2; FSMC_NORSRAMInitStructure.FSMC_DataAddressMux = FSMC_DataAddressMux_Disable; - FSMC_NORSRAMInitStructure.FSMC_MemoryType = FSMC_MemoryType_PSRAM; + FSMC_NORSRAMInitStructure.FSMC_MemoryType = FSMC_MemoryType_SRAM; FSMC_NORSRAMInitStructure.FSMC_MemoryDataWidth = FSMC_MemoryDataWidth_16b; FSMC_NORSRAMInitStructure.FSMC_BurstAccessMode = FSMC_BurstAccessMode_Disable; - FSMC_NORSRAMInitStructure.FSMC_AsynchronousWait = FSMC_AsynchronousWait_Disable; + FSMC_NORSRAMInitStructure.FSMC_AsynchronousWait = FSMC_AsynchronousWait_Disable; FSMC_NORSRAMInitStructure.FSMC_WaitSignalPolarity = FSMC_WaitSignalPolarity_Low; FSMC_NORSRAMInitStructure.FSMC_WrapMode = FSMC_WrapMode_Disable; FSMC_NORSRAMInitStructure.FSMC_WaitSignalActive = FSMC_WaitSignalActive_BeforeWaitState; @@ -537,12 +901,219 @@ void SystemInit_ExtMemCtl(void) FSMC_NORSRAMInitStructure.FSMC_WaitSignal = FSMC_WaitSignal_Disable; FSMC_NORSRAMInitStructure.FSMC_ExtendedMode = FSMC_ExtendedMode_Disable; FSMC_NORSRAMInitStructure.FSMC_WriteBurst = FSMC_WriteBurst_Disable; - FSMC_NORSRAMInitStructure.FSMC_ReadWriteTimingStruct = &p; - FSMC_NORSRAMInitStructure.FSMC_WriteTimingStruct = &p; + FSMC_NORSRAMInitStructure.FSMC_ReadWriteTimingStruct = &NORSRAMTimingStructure; + FSMC_NORSRAMInitStructure.FSMC_WriteTimingStruct = &NORSRAMTimingStructure; + + In case of FMC configuration + NORSRAMTimingStructure.FMC_AddressSetupTime = 1; + NORSRAMTimingStructure.FMC_AddressHoldTime = 0; + NORSRAMTimingStructure.FMC_DataSetupTime = 2; + NORSRAMTimingStructure.FMC_BusTurnAroundDuration = 0; + NORSRAMTimingStructure.FMC_CLKDivision = 0; + NORSRAMTimingStructure.FMC_DataLatency = 0; + NORSRAMTimingStructure.FMC_AccessMode = FMC_AccessMode_A; + + FMC_NORSRAMInitStructure.FMC_Bank = FMC_Bank1_NORSRAM2; + FMC_NORSRAMInitStructure.FMC_DataAddressMux = FMC_DataAddressMux_Disable; + FMC_NORSRAMInitStructure.FMC_MemoryType = FMC_MemoryType_SRAM; + FMC_NORSRAMInitStructure.FMC_MemoryDataWidth = FMC_MemoryDataWidth_16b; + FMC_NORSRAMInitStructure.FMC_BurstAccessMode = FMC_BurstAccessMode_Disable; + FMC_NORSRAMInitStructure.FMC_AsynchronousWait = FMC_AsynchronousWait_Disable; + FMC_NORSRAMInitStructure.FMC_WaitSignalPolarity = FMC_WaitSignalPolarity_Low; + FMC_NORSRAMInitStructure.FMC_WrapMode = FMC_WrapMode_Disable; + FMC_NORSRAMInitStructure.FMC_WaitSignalActive = FMC_WaitSignalActive_BeforeWaitState; + FMC_NORSRAMInitStructure.FMC_WriteOperation = FMC_WriteOperation_Enable; + FMC_NORSRAMInitStructure.FMC_WaitSignal = FMC_WaitSignal_Disable; + FMC_NORSRAMInitStructure.FMC_ExtendedMode = FMC_ExtendedMode_Disable; + FMC_NORSRAMInitStructure.FMC_WriteBurst = FMC_WriteBurst_Disable; + FMC_NORSRAMInitStructure.FMC_ContinousClock = FMC_CClock_SyncOnly; + FMC_NORSRAMInitStructure.FMC_ReadWriteTimingStruct = &NORSRAMTimingStructure; + FMC_NORSRAMInitStructure.FMC_WriteTimingStruct = &NORSRAMTimingStructure; */ - + } #endif /* DATA_IN_ExtSRAM */ + +#ifdef DATA_IN_ExtSDRAM +/** + * @brief Setup the external memory controller. + * Called in startup_stm32f4xx.s before jump to main. + * This function configures the external SDRAM mounted on STM324x9I_EVAL board + * This SDRAM will be used as program data memory (including heap and stack). + * @param None + * @retval None + */ +void SystemInit_ExtMemCtl(void) +{ + register uint32_t tmpreg = 0, timeout = 0xFFFF; + register uint32_t index; + + /* Enable GPIOC, GPIOD, GPIOE, GPIOF, GPIOG, GPIOH and GPIOI interface + clock */ + RCC->AHB1ENR |= 0x000001FC; + + /* Connect PCx pins to FMC Alternate function */ + GPIOC->AFR[0] = 0x0000000c; + GPIOC->AFR[1] = 0x00007700; + /* Configure PCx pins in Alternate function mode */ + GPIOC->MODER = 0x00a00002; + /* Configure PCx pins speed to 50 MHz */ + GPIOC->OSPEEDR = 0x00a00002; + /* Configure PCx pins Output type to push-pull */ + GPIOC->OTYPER = 0x00000000; + /* No pull-up, pull-down for PCx pins */ + GPIOC->PUPDR = 0x00500000; + + /* Connect PDx pins to FMC Alternate function */ + GPIOD->AFR[0] = 0x000000CC; + GPIOD->AFR[1] = 0xCC000CCC; + /* Configure PDx pins in Alternate function mode */ + GPIOD->MODER = 0xA02A000A; + /* Configure PDx pins speed to 50 MHz */ + GPIOD->OSPEEDR = 0xA02A000A; + /* Configure PDx pins Output type to push-pull */ + GPIOD->OTYPER = 0x00000000; + /* No pull-up, pull-down for PDx pins */ + GPIOD->PUPDR = 0x00000000; + + /* Connect PEx pins to FMC Alternate function */ + GPIOE->AFR[0] = 0xC00000CC; + GPIOE->AFR[1] = 0xCCCCCCCC; + /* Configure PEx pins in Alternate function mode */ + GPIOE->MODER = 0xAAAA800A; + /* Configure PEx pins speed to 50 MHz */ + GPIOE->OSPEEDR = 0xAAAA800A; + /* Configure PEx pins Output type to push-pull */ + GPIOE->OTYPER = 0x00000000; + /* No pull-up, pull-down for PEx pins */ + GPIOE->PUPDR = 0x00000000; + + /* Connect PFx pins to FMC Alternate function */ + GPIOF->AFR[0] = 0xcccccccc; + GPIOF->AFR[1] = 0xcccccccc; + /* Configure PFx pins in Alternate function mode */ + GPIOF->MODER = 0xAA800AAA; + /* Configure PFx pins speed to 50 MHz */ + GPIOF->OSPEEDR = 0xAA800AAA; + /* Configure PFx pins Output type to push-pull */ + GPIOF->OTYPER = 0x00000000; + /* No pull-up, pull-down for PFx pins */ + GPIOF->PUPDR = 0x00000000; + + /* Connect PGx pins to FMC Alternate function */ + GPIOG->AFR[0] = 0xcccccccc; + GPIOG->AFR[1] = 0xcccccccc; + /* Configure PGx pins in Alternate function mode */ + GPIOG->MODER = 0xaaaaaaaa; + /* Configure PGx pins speed to 50 MHz */ + GPIOG->OSPEEDR = 0xaaaaaaaa; + /* Configure PGx pins Output type to push-pull */ + GPIOG->OTYPER = 0x00000000; + /* No pull-up, pull-down for PGx pins */ + GPIOG->PUPDR = 0x00000000; + + /* Connect PHx pins to FMC Alternate function */ + GPIOH->AFR[0] = 0x00C0CC00; + GPIOH->AFR[1] = 0xCCCCCCCC; + /* Configure PHx pins in Alternate function mode */ + GPIOH->MODER = 0xAAAA08A0; + /* Configure PHx pins speed to 50 MHz */ + GPIOH->OSPEEDR = 0xAAAA08A0; + /* Configure PHx pins Output type to push-pull */ + GPIOH->OTYPER = 0x00000000; + /* No pull-up, pull-down for PHx pins */ + GPIOH->PUPDR = 0x00000000; + + /* Connect PIx pins to FMC Alternate function */ + GPIOI->AFR[0] = 0xCCCCCCCC; + GPIOI->AFR[1] = 0x00000CC0; + /* Configure PIx pins in Alternate function mode */ + GPIOI->MODER = 0x0028AAAA; + /* Configure PIx pins speed to 50 MHz */ + GPIOI->OSPEEDR = 0x0028AAAA; + /* Configure PIx pins Output type to push-pull */ + GPIOI->OTYPER = 0x00000000; + /* No pull-up, pull-down for PIx pins */ + GPIOI->PUPDR = 0x00000000; + +/*-- FMC Configuration ------------------------------------------------------*/ + /* Enable the FMC interface clock */ + RCC->AHB3ENR |= 0x00000001; + + /* Configure and enable SDRAM bank1 */ + FMC_Bank5_6->SDCR[0] = 0x000039D0; + FMC_Bank5_6->SDTR[0] = 0x01115351; + + /* SDRAM initialization sequence */ + /* Clock enable command */ + FMC_Bank5_6->SDCMR = 0x00000011; + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + while((tmpreg != 0) & (timeout-- > 0)) + { + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + } + + /* Delay */ + for (index = 0; index<1000; index++); + + /* PALL command */ + FMC_Bank5_6->SDCMR = 0x00000012; + timeout = 0xFFFF; + while((tmpreg != 0) & (timeout-- > 0)) + { + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + } + + /* Auto refresh command */ + FMC_Bank5_6->SDCMR = 0x00000073; + timeout = 0xFFFF; + while((tmpreg != 0) & (timeout-- > 0)) + { + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + } + + /* MRD register program */ + FMC_Bank5_6->SDCMR = 0x00046014; + timeout = 0xFFFF; + while((tmpreg != 0) & (timeout-- > 0)) + { + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + } + + /* Set refresh count */ + tmpreg = FMC_Bank5_6->SDRTR; + FMC_Bank5_6->SDRTR = (tmpreg | (0x0000027C<<1)); + + /* Disable write protection */ + tmpreg = FMC_Bank5_6->SDCR[0]; + FMC_Bank5_6->SDCR[0] = (tmpreg & 0xFFFFFDFF); + +/* + Bank1_SDRAM is configured as follow: + + FMC_SDRAMTimingInitStructure.FMC_LoadToActiveDelay = 2; + FMC_SDRAMTimingInitStructure.FMC_ExitSelfRefreshDelay = 6; + FMC_SDRAMTimingInitStructure.FMC_SelfRefreshTime = 4; + FMC_SDRAMTimingInitStructure.FMC_RowCycleDelay = 6; + FMC_SDRAMTimingInitStructure.FMC_WriteRecoveryTime = 2; + FMC_SDRAMTimingInitStructure.FMC_RPDelay = 2; + FMC_SDRAMTimingInitStructure.FMC_RCDDelay = 2; + + FMC_SDRAMInitStructure.FMC_Bank = SDRAM_BANK; + FMC_SDRAMInitStructure.FMC_ColumnBitsNumber = FMC_ColumnBits_Number_8b; + FMC_SDRAMInitStructure.FMC_RowBitsNumber = FMC_RowBits_Number_11b; + FMC_SDRAMInitStructure.FMC_SDMemoryDataWidth = FMC_SDMemory_Width_16b; + FMC_SDRAMInitStructure.FMC_InternalBankNumber = FMC_InternalBank_Number_4; + FMC_SDRAMInitStructure.FMC_CASLatency = FMC_CAS_Latency_3; + FMC_SDRAMInitStructure.FMC_WriteProtection = FMC_Write_Protection_Disable; + FMC_SDRAMInitStructure.FMC_SDClockPeriod = FMC_SDClock_Period_2; + FMC_SDRAMInitStructure.FMC_ReadBurst = FMC_Read_Burst_disable; + FMC_SDRAMInitStructure.FMC_ReadPipeDelay = FMC_ReadPipe_Delay_1; + FMC_SDRAMInitStructure.FMC_SDRAMTimingStruct = &FMC_SDRAMTimingInitStructure; +*/ + +} +#endif /* DATA_IN_ExtSDRAM */ /** @@ -552,8 +1123,8 @@ void SystemInit_ExtMemCtl(void) /** * @} */ - + /** * @} - */ + */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/system_stm32f4xx.h b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/system_stm32f4xx.h index 0f07207c..d064cb4d 100644 --- a/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/system_stm32f4xx.h +++ b/Platform/Common/Cortex-M4/STM32F4xx/STM32F4xx_Drv/system_stm32f4xx.h @@ -2,13 +2,13 @@ ****************************************************************************** * @file system_stm32f4xx.h * @author MCD Application Team - * @version V1.0.2 - * @date 05-March-2012 - * @brief CMSIS Cortex-M4 Device System Source File for STM32F4xx devices. - ****************************************************************************** + * @version V1.4.0 + * @date 04-August-2014 + * @brief CMSIS Cortex-M4 Device System Source File for STM32F4xx devices. + ****************************************************************************** * @attention * - *

© COPYRIGHT 2012 STMicroelectronics

+ *

© COPYRIGHT 2014 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. @@ -16,14 +16,14 @@ * * http://www.st.com/software_license_agreement_liberty_v2 * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * - ****************************************************************************** - */ + ****************************************************************************** + */ /** @addtogroup CMSIS * @{ @@ -31,8 +31,8 @@ /** @addtogroup stm32f4xx_system * @{ - */ - + */ + /** * @brief Define to prevent recursive inclusion */ @@ -41,7 +41,7 @@ #ifdef __cplusplus extern "C" { -#endif +#endif /** @addtogroup STM32F4xx_System_Includes * @{ @@ -82,7 +82,7 @@ extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Cloc /** @addtogroup STM32F4xx_System_Exported_Functions * @{ */ - + extern void SystemInit(void); extern void SystemCoreClockUpdate(void); /** @@ -98,8 +98,8 @@ extern void SystemCoreClockUpdate(void); /** * @} */ - + /** * @} - */ + */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/Platform/Common/Drivers/spi_flash/EMW3288.c b/Platform/Common/Drivers/spi_flash/EMW3288.c new file mode 100644 index 00000000..644e746b --- /dev/null +++ b/Platform/Common/Drivers/spi_flash/EMW3288.c @@ -0,0 +1,141 @@ +/* + * Copyright 2014, Broadcom Corporation + * All Rights Reserved. + * + * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation; + * the contents of this file may not be disclosed to third parties, copied + * or duplicated in any form, in whole or in part, without the prior + * written permission of Broadcom Corporation. + */ +#include "spi_flash_platform_interface.h" +#include "stm32f4xx.h" + +#define SFLASH_SPI SPI5 +#define SFLASH_SPI_CLK RCC_APB2Periph_SPI5 +#define SFLASH_SPI_CLK_INIT RCC_APB2PeriphClockCmd + +#define SFLASH_SPI_SCK_PIN GPIO_Pin_0 +#define SFLASH_SPI_SCK_GPIO_PORT GPIOB +#define SFLASH_SPI_SCK_GPIO_CLK RCC_AHB1Periph_GPIOB +#define SFLASH_SPI_SCK_SOURCE GPIO_PinSource0 +#define SFLASH_SPI_SCK_AF GPIO_AF6_SPI5 + +#define SFLASH_SPI_MISO_PIN GPIO_Pin_12 +#define SFLASH_SPI_MISO_GPIO_PORT GPIOA +#define SFLASH_SPI_MISO_GPIO_CLK RCC_AHB1Periph_GPIOA +#define SFLASH_SPI_MISO_SOURCE GPIO_PinSource12 +#define SFLASH_SPI_MISO_AF GPIO_AF6_SPI5 + +#define SFLASH_SPI_MOSI_PIN GPIO_Pin_10 +#define SFLASH_SPI_MOSI_GPIO_PORT GPIOA +#define SFLASH_SPI_MOSI_GPIO_CLK RCC_AHB1Periph_GPIOA +#define SFLASH_SPI_MOSI_SOURCE GPIO_PinSource10 +#define SFLASH_SPI_MOSI_AF GPIO_AF6_SPI5 + +#define SFLASH_CS_PIN GPIO_Pin_1 +#define SFLASH_CS_PORT GPIOB +#define SFLASH_CS_CLK RCC_AHB1Periph_GPIOB + + +int sflash_platform_init( int peripheral_id, void** platform_peripheral_out ) +{ + GPIO_InitTypeDef GPIO_InitStructure; + SPI_InitTypeDef SPI_InitStructure; + + (void) peripheral_id; /* Unused due to single SPI Flash */ + + /* Enable clocks */ + SFLASH_SPI_CLK_INIT( SFLASH_SPI_CLK, ENABLE ); + + RCC_AHB1PeriphClockCmd( SFLASH_SPI_SCK_GPIO_CLK | SFLASH_SPI_MISO_GPIO_CLK | + SFLASH_SPI_MOSI_GPIO_CLK | SFLASH_CS_CLK, ENABLE ); + + + /* Use Alternate Functions for SPI pins */ + GPIO_PinAFConfig( SFLASH_SPI_SCK_GPIO_PORT, SFLASH_SPI_SCK_SOURCE, SFLASH_SPI_SCK_AF ); + GPIO_PinAFConfig( SFLASH_SPI_MISO_GPIO_PORT, SFLASH_SPI_MISO_SOURCE, SFLASH_SPI_MISO_AF ); + GPIO_PinAFConfig( SFLASH_SPI_MOSI_GPIO_PORT, SFLASH_SPI_MOSI_SOURCE, SFLASH_SPI_MOSI_AF ); + + /* Setup pin types */ + GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF; + GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; + GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; + GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_DOWN; + + GPIO_InitStructure.GPIO_Pin = SFLASH_SPI_SCK_PIN; + GPIO_Init( SFLASH_SPI_SCK_GPIO_PORT, &GPIO_InitStructure ); + + GPIO_InitStructure.GPIO_Pin = SFLASH_SPI_MOSI_PIN; + GPIO_Init( SFLASH_SPI_MOSI_GPIO_PORT, &GPIO_InitStructure ); + + GPIO_InitStructure.GPIO_Pin = SFLASH_SPI_MISO_PIN; + GPIO_Init( SFLASH_SPI_MISO_GPIO_PORT, &GPIO_InitStructure ); + + /* Chip select is used as a GPIO */ + GPIO_InitStructure.GPIO_Pin = SFLASH_CS_PIN; + GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT; + GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; + GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; + GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL; + GPIO_Init( SFLASH_CS_PORT, &GPIO_InitStructure ); + + /* Deselect flash initially */ + GPIO_SetBits( SFLASH_CS_PORT, SFLASH_CS_PIN ); + + /*!< SPI configuration */ + SPI_InitStructure.SPI_Direction = SPI_Direction_2Lines_FullDuplex; + SPI_InitStructure.SPI_Mode = SPI_Mode_Master; + SPI_InitStructure.SPI_DataSize = SPI_DataSize_8b; + SPI_InitStructure.SPI_CPOL = SPI_CPOL_High; + SPI_InitStructure.SPI_CPHA = SPI_CPHA_2Edge; + SPI_InitStructure.SPI_NSS = SPI_NSS_Soft; + SPI_InitStructure.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_2; + + SPI_InitStructure.SPI_FirstBit = SPI_FirstBit_MSB; + SPI_InitStructure.SPI_CRCPolynomial = 7; + SPI_Init(SFLASH_SPI, &SPI_InitStructure); + + /* Enable the SPI peripheral */ + SPI_Cmd(SFLASH_SPI, ENABLE); + + *platform_peripheral_out = (void*)SFLASH_SPI; + + return 0; +} + +int sflash_platform_send_recv_byte( void* platform_peripheral, unsigned char MOSI_val, void* MISO_addr ) +{ + /* Wait until the SPI Data Register is empty */ + while ( SPI_I2S_GetFlagStatus( SFLASH_SPI, SPI_I2S_FLAG_TXE ) == RESET ) + { + /* wait */ + } + + + SPI_I2S_SendData( SFLASH_SPI, MOSI_val ); + + /* Wait until the SPI peripheral indicates the received data is ready */ + while ( SPI_I2S_GetFlagStatus( SFLASH_SPI, SPI_I2S_FLAG_RXNE ) == RESET ) + { + /* wait */ + } + + /* read the received data */ + char x = SPI_I2S_ReceiveData( SFLASH_SPI ); + + *( (char*) MISO_addr ) = x; + return 0; +} + +int sflash_platform_chip_select( void* platform_peripheral ) +{ + GPIO_ResetBits( SFLASH_CS_PORT, SFLASH_CS_PIN ); + return 0; +} + +int sflash_platform_chip_deselect( void* platform_peripheral ) +{ + GPIO_SetBits( SFLASH_CS_PORT, SFLASH_CS_PIN ); + return 0; +} + diff --git a/Platform/Common/Drivers/spi_flash/spi_flash.c b/Platform/Common/Drivers/spi_flash/spi_flash.c index 29144470..b0675cfe 100644 --- a/Platform/Common/Drivers/spi_flash/spi_flash.c +++ b/Platform/Common/Drivers/spi_flash/spi_flash.c @@ -340,11 +340,10 @@ int init_sflash( sflash_handle_t* const handle, int peripheral_id, sflash_write_ return status; } - + handle->device_id = ( ((uint32_t) tmp_device_id[0]) << 16 ) + ( ((uint32_t) tmp_device_id[1]) << 8 ) + ( ((uint32_t) tmp_device_id[2]) << 0 ); - handle->write_allowed = write_allowed_in; if ( write_allowed_in == SFLASH_WRITE_ALLOWED ) diff --git a/Platform/EMW3288/bootloaderLinkerForIAR.icf b/Platform/EMW3288/bootloaderLinkerForIAR.icf new file mode 100644 index 00000000..b00f1e6c --- /dev/null +++ b/Platform/EMW3288/bootloaderLinkerForIAR.icf @@ -0,0 +1,39 @@ +/*###ICF### Section handled by ICF editor, don't touch! ****/ +/*-Editor annotation file-*/ +/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ +/*-Specials-*/ +define symbol __ICFEDIT_intvec_start__ = 0x08000000; +/*-Memory Regions-*/ +define symbol __ICFEDIT_region_ROM_start__ = 0x08000000; +define symbol __ICFEDIT_region_ROM_end__ = 0x08007FFF; +define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; +define symbol __ICFEDIT_region_RAM_end__ = 0x20020000; +/*-Sizes-*/ +define symbol __ICFEDIT_size_cstack__ = 0x1000; +define symbol __ICFEDIT_size_heap__ = 0x100; +/**** End of ICF editor section. ###ICF###*/ + + +define memory mem with size = 4G; +define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; +define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; + +define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; +define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; + +define symbol RAM_intvec_start = 0x20000000; + +initialize by copy { readonly, readwrite }; +do not initialize { section .noinit }; + +place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; + +"RAM_intvec_start": +place at address mem:RAM_intvec_start { section .intvec_RAM }; + +"ROM_region": +place in ROM_region { readonly }; + +"RAM_region": +place in RAM_region { readwrite, + block CSTACK, block HEAP }; \ No newline at end of file diff --git a/Platform/EMW3288/micoLinkerForIAR.icf b/Platform/EMW3288/micoLinkerForIAR.icf new file mode 100644 index 00000000..18ce4a67 --- /dev/null +++ b/Platform/EMW3288/micoLinkerForIAR.icf @@ -0,0 +1,30 @@ +/*###ICF### Section handled by ICF editor, don't touch! ****/ +/*-Editor annotation file-*/ +/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */ +/*-Specials-*/ +define symbol __ICFEDIT_intvec_start__ = 0x0800C000; +/*-Memory Regions-*/ +define symbol __ICFEDIT_region_ROM_start__ = 0x0800C000; +define symbol __ICFEDIT_region_ROM_end__ = 0x0807FFFF; +define symbol __ICFEDIT_region_RAM_start__ = 0x20000000; +define symbol __ICFEDIT_region_RAM_end__ = 0x2001FFFF; +/*-Sizes-*/ +define symbol __ICFEDIT_size_cstack__ = 0x200; +define symbol __ICFEDIT_size_heap__ = 0x15000; +/**** End of ICF editor section. ###ICF###*/ + +define memory mem with size = 4G; +define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__]; +define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__]; + +define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { }; +define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { }; + +initialize by copy { readwrite }; +do not initialize { section .noinit }; + +place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec }; + +place in ROM_region { readonly }; +place in RAM_region { readwrite, + block CSTACK, block HEAP }; \ No newline at end of file diff --git a/Platform/EMW3288/platform.c b/Platform/EMW3288/platform.c new file mode 100644 index 00000000..4f657141 --- /dev/null +++ b/Platform/EMW3288/platform.c @@ -0,0 +1,405 @@ +/** +****************************************************************************** +* @file platform.c +* @author William Xu +* @version V1.0.0 +* @date 05-May-2014 +* @brief This file provides all MICO Peripherals mapping table and platform +* specific funcgtions. +****************************************************************************** +* +* The MIT License +* Copyright (c) 2014 MXCHIP Inc. +* +* Permission is hereby granted, free of charge, to any person obtaining a copy +* of this software and associated documentation files (the "Software"), to deal +* in the Software without restriction, including without limitation the rights +* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +* copies of the Software, and to permit persons to whom the Software is furnished +* to do so, subject to the following conditions: +* +* The above copyright notice and this permission notice shall be included in +* all copies or substantial portions of the Software. +* +* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +* IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +****************************************************************************** +*/ + +#include "stdio.h" +#include "string.h" + +#include "MICOPlatform.h" +#include "platform.h" +#include "stm32f4xx_platform.h" +#include "platform_common_config.h" +#include "PlatformLogging.h" + +/****************************************************** +* Macros +******************************************************/ + +#ifdef __GNUC__ +#define WEAK __attribute__ ((weak)) +#elif defined ( __IAR_SYSTEMS_ICC__ ) +#define WEAK __weak +#endif /* ifdef __GNUC__ */ + +/****************************************************** +* Constants +******************************************************/ + +/****************************************************** +* Enumerations +******************************************************/ + +/****************************************************** +* Type Definitions +******************************************************/ + +/****************************************************** +* Structures +******************************************************/ + +/****************************************************** +* Function Declarations +******************************************************/ +extern WEAK void PlatformEasyLinkButtonClickedCallback(void); +extern WEAK void PlatformStandbyButtonClickedCallback(void); +extern WEAK void PlatformEasyLinkButtonLongPressedCallback(void); +extern WEAK void bootloader_start(void); + +/****************************************************** +* Variables Definitions +******************************************************/ + +/* This table maps STM32 pins to GPIO definitions on the schematic +* A full pin definition is provided in /include/platforms/BCM943362WCD4/platform.h +*/ + +static uint32_t _default_start_time = 0; +static mico_timer_t _button_EL_timer; + +const platform_pin_mapping_t gpio_mapping[] = +{ +#ifdef SDIO_1_BIT + /* Common GPIOs for internal use */ + [WL_GPIO1] = {GPIOA, 8, RCC_AHB1Periph_GPIOA}, +#else + [WL_GPIO1] = {GPIOB, 6, RCC_AHB1Periph_GPIOB}, +#endif + [MICO_SYS_LED] = {GPIOB, 12, RCC_AHB1Periph_GPIOB}, + [MICO_RF_LED] = {GPIOB, 13, RCC_AHB1Periph_GPIOB}, + [BOOT_SEL] = {GPIOB, 2, RCC_AHB1Periph_GPIOB}, + [MFG_SEL] = {GPIOA, 4, RCC_AHB1Periph_GPIOA}, + [EasyLink_BUTTON] = {GPIOB, 14, RCC_AHB1Periph_GPIOA}, + [STDIO_UART_RX] = {GPIOA, 3, RCC_AHB1Periph_GPIOA}, + [STDIO_UART_TX] = {GPIOA, 2, RCC_AHB1Periph_GPIOA}, + + /* GPIOs for external use */ + [MICO_GPIO_2] = {GPIOA, 11, RCC_AHB1Periph_GPIOA}, + [MICO_GPIO_4] = {GPIOA, 7, RCC_AHB1Periph_GPIOA}, + [MICO_GPIO_8] = {GPIOA, 2, RCC_AHB1Periph_GPIOA}, + [MICO_GPIO_9] = {GPIOA, 1, RCC_AHB1Periph_GPIOA}, + [MICO_GPIO_12] = {GPIOA, 3, RCC_AHB1Periph_GPIOA}, + [MICO_GPIO_16] = {GPIOC, 13, RCC_AHB1Periph_GPIOC}, + [MICO_GPIO_17] = {GPIOB, 10, RCC_AHB1Periph_GPIOB}, + [MICO_GPIO_18] = {GPIOB, 9, RCC_AHB1Periph_GPIOB}, + //[MICO_GPIO_19] = {GPIOB, 12, RCC_AHB1Periph_GPIOB}, + [MICO_GPIO_27] = {GPIOA, 12, RCC_AHB1Periph_GPIOA}, + [MICO_GPIO_29] = {GPIOA, 10, RCC_AHB1Periph_GPIOA}, + [MICO_GPIO_30] = {GPIOB, 6, RCC_AHB1Periph_GPIOB}, + [MICO_GPIO_31] = {GPIOB, 8, RCC_AHB1Periph_GPIOB}, + //[MICO_GPIO_33] = {GPIOB, 13, RCC_AHB1Periph_GPIOB}, + [MICO_GPIO_34] = {GPIOA, 5, RCC_AHB1Periph_GPIOA}, + [MICO_GPIO_35] = {GPIOA, 10, RCC_AHB1Periph_GPIOA}, + [MICO_GPIO_36] = {GPIOB, 1, RCC_AHB1Periph_GPIOB}, + [MICO_GPIO_37] = {GPIOB, 0, RCC_AHB1Periph_GPIOB}, + [MICO_GPIO_38] = {GPIOA, 4, RCC_AHB1Periph_GPIOA}, +}; + +/* +* Possible compile time inputs: +* - Set which ADC peripheral to use for each ADC. All on one ADC allows sequential conversion on all inputs. All on separate ADCs allows concurrent conversion. +*/ +/* TODO : These need fixing */ +const platform_adc_mapping_t adc_mapping[] = +{ + [MICO_ADC_1] = NULL, + // [MICO_ADC_1] = {ADC1, ADC_Channel_1, RCC_APB2Periph_ADC1, 1, (platform_pin_mapping_t*)&gpio_mapping[MICO_GPIO_2]}, + // [MICO_ADC_2] = {ADC1, ADC_Channel_2, RCC_APB2Periph_ADC1, 1, (platform_pin_mapping_t*)&gpio_mapping[MICO_GPIO_4]}, + // [MICO_ADC_3] = {ADC1, ADC_Channel_3, RCC_APB2Periph_ADC1, 1, (platform_pin_mapping_t*)&gpio_mapping[MICO_GPIO_5]}, +}; + + +/* PWM mappings */ +const platform_pwm_mapping_t pwm_mappings[] = +{ +#if ( MICO_WLAN_POWERSAVE_CLOCK_SOURCE == MICO_WLAN_POWERSAVE_CLOCK_IS_PWM ) + /* Extended PWM for internal use */ + [MICO_PWM_WLAN_POWERSAVE_CLOCK] = {TIM1, 1, RCC_APB2Periph_TIM1, GPIO_AF_TIM1, (platform_pin_mapping_t*)&gpio_mapping[MICO_GPIO_WLAN_POWERSAVE_CLOCK] }, /* or TIM2/Ch2 */ +#endif + //[MICO_PWM_1] = NULL, + [MICO_PWM_G] = {TIM2, 2, RCC_APB1Periph_TIM2, GPIO_AF_TIM2, (platform_pin_mapping_t*)&gpio_mapping[MICO_GPIO_9]}, /* or TIM10/Ch1 */ + [MICO_PWM_B] = {TIM2, 1, RCC_APB1Periph_TIM2, GPIO_AF_TIM2, (platform_pin_mapping_t*)&gpio_mapping[MICO_GPIO_34]}, /* or TIM1/Ch2N */ + [MICO_PWM_R] = {TIM3, 2, RCC_APB1Periph_TIM3, GPIO_AF_TIM3, (platform_pin_mapping_t*)&gpio_mapping[MICO_GPIO_4]}, + /* TODO: fill in the other options here ... */ +}; + +const platform_spi_mapping_t spi_mapping[] = +{ + [MICO_SPI_1] = NULL, + // [MICO_SPI_1] = + // { + // .spi_regs = SPI1, + // .gpio_af = GPIO_AF_SPI1, + // .peripheral_clock_reg = RCC_APB2Periph_SPI1, + // .peripheral_clock_func = RCC_APB2PeriphClockCmd, + // .pin_mosi = &gpio_mapping[MICO_GPIO_8], + // .pin_miso = &gpio_mapping[MICO_GPIO_7], + // .pin_clock = &gpio_mapping[MICO_GPIO_6], + // .tx_dma_stream = DMA2_Stream5, + // .rx_dma_stream = DMA2_Stream0, + // .tx_dma_channel = DMA_Channel_3, + // .rx_dma_channel = DMA_Channel_3, + // .tx_dma_stream_number = 5, + // .rx_dma_stream_number = 0 + // } +}; + +const platform_uart_mapping_t uart_mapping[] = +{ + [MICO_UART_1] = + { + .usart = USART2, + .gpio_af = GPIO_AF_USART2, + .pin_tx = &gpio_mapping[STDIO_UART_TX], + .pin_rx = &gpio_mapping[STDIO_UART_RX], + .pin_cts = NULL, + .pin_rts = NULL, + .usart_peripheral_clock = RCC_APB1Periph_USART2, + .usart_peripheral_clock_func = RCC_APB1PeriphClockCmd, + .usart_irq = USART2_IRQn, + .tx_dma = DMA1, + .tx_dma_stream = DMA1_Stream6, + .tx_dma_stream_number = 6, + .tx_dma_channel = DMA_Channel_4, + .tx_dma_peripheral_clock = RCC_AHB1Periph_DMA1, + .tx_dma_peripheral_clock_func = RCC_AHB1PeriphClockCmd, + .tx_dma_irq = DMA1_Stream6_IRQn, + .rx_dma = DMA1, + .rx_dma_stream = DMA1_Stream5, + .rx_dma_stream_number = 5, + .rx_dma_channel = DMA_Channel_4, + .rx_dma_peripheral_clock = RCC_AHB1Periph_DMA1, + .rx_dma_peripheral_clock_func = RCC_AHB1PeriphClockCmd, + .rx_dma_irq = DMA1_Stream5_IRQn, + }, + [MICO_UART_2] = + { + .usart = USART2, + .gpio_af = GPIO_AF_USART6, + .pin_tx = &gpio_mapping[MICO_GPIO_1], + .pin_rx = &gpio_mapping[MICO_GPIO_0], + .pin_cts = NULL, + .pin_rts = NULL, + .usart_peripheral_clock = RCC_APB2Periph_USART6, + .usart_peripheral_clock_func = RCC_APB2PeriphClockCmd, + .usart_irq = USART6_IRQn, + .tx_dma = DMA2, + .tx_dma_stream = DMA2_Stream6, + .tx_dma_channel = DMA_Channel_5, + .tx_dma_peripheral_clock = RCC_AHB1Periph_DMA2, + .tx_dma_peripheral_clock_func = RCC_AHB1PeriphClockCmd, + .tx_dma_irq = DMA2_Stream6_IRQn, + .rx_dma = DMA2, + .rx_dma_stream = DMA2_Stream1, + .rx_dma_channel = DMA_Channel_5, + .rx_dma_peripheral_clock = RCC_AHB1Periph_DMA2, + .rx_dma_peripheral_clock_func = RCC_AHB1PeriphClockCmd, + .rx_dma_irq = DMA2_Stream1_IRQn, + }, +}; + +const platform_i2c_mapping_t i2c_mapping[] = +{ + [MICO_I2C_1] = NULL, + // [MICO_I2C_1] = + // { + // .i2c = I2C1, + // .pin_scl = &gpio_mapping[MICO_GPIO_1], + // .pin_sda = &gpio_mapping[MICO_GPIO_2], + // .peripheral_clock_reg = RCC_APB1Periph_I2C1, + // .tx_dma = DMA1, + // .tx_dma_peripheral_clock = RCC_AHB1Periph_DMA1, + // .tx_dma_stream = DMA1_Stream7, + // .rx_dma_stream = DMA1_Stream5, + // .tx_dma_stream_id = 7, + // .rx_dma_stream_id = 5, + // .tx_dma_channel = DMA_Channel_1, + // .rx_dma_channel = DMA_Channel_1, + // .gpio_af = GPIO_AF_I2C1 + // }, +}; + +/****************************************************** +* Function Definitions +******************************************************/ + +static void _button_EL_irq_handler( void* arg ) +{ + (void)(arg); + int interval = -1; + + if ( MicoGpioInputGet( (mico_gpio_t)EasyLink_BUTTON ) == 0 ) { + _default_start_time = mico_get_time()+1; + mico_start_timer(&_button_EL_timer); + } else { + interval = mico_get_time() + 1 - _default_start_time; + if ( (_default_start_time != 0) && interval > 50 && interval < RestoreDefault_TimeOut){ + /* EasyLink button clicked once */ + PlatformEasyLinkButtonClickedCallback(); + } + mico_stop_timer(&_button_EL_timer); + _default_start_time = 0; + } +} + +static void _button_STANDBY_irq_handler( void* arg ) +{ + (void)(arg); + PlatformStandbyButtonClickedCallback(); +} + +static void _button_EL_Timeout_handler( void* arg ) +{ + (void)(arg); + _default_start_time = 0; + PlatformEasyLinkButtonLongPressedCallback(); +} + +bool watchdog_check_last_reset( void ) +{ + if ( RCC->CSR & RCC_CSR_WDGRSTF ) + { + /* Clear the flag and return */ + RCC->CSR |= RCC_CSR_RMVF; + return true; + } + + return false; +} + +OSStatus mico_platform_init( void ) +{ + platform_log( "Platform initialised" ); + + if ( true == watchdog_check_last_reset() ) + { + platform_log( "WARNING: Watchdog reset occured previously. Please see watchdog.c for debugging instructions." ); + } + + return kNoErr; +} + +void init_platform( void ) +{ + MicoGpioInitialize( (mico_gpio_t)MICO_SYS_LED, OUTPUT_PUSH_PULL ); + MicoGpioOutputLow( (mico_gpio_t)MICO_SYS_LED ); + MicoGpioInitialize( (mico_gpio_t)MICO_RF_LED, OUTPUT_OPEN_DRAIN_NO_PULL ); + MicoGpioOutputHigh( (mico_gpio_t)MICO_RF_LED ); + + // Initialise EasyLink buttons + MicoGpioInitialize( (mico_gpio_t)EasyLink_BUTTON, INPUT_PULL_UP ); + mico_init_timer(&_button_EL_timer, RestoreDefault_TimeOut, _button_EL_Timeout_handler, NULL); + MicoGpioEnableIRQ( (mico_gpio_t)EasyLink_BUTTON, IRQ_TRIGGER_BOTH_EDGES, _button_EL_irq_handler, NULL ); + + // Initialise Standby/wakeup switcher + MicoGpioInitialize( (mico_gpio_t)Standby_SEL, INPUT_PULL_UP ); + MicoGpioEnableIRQ( (mico_gpio_t)Standby_SEL , IRQ_TRIGGER_FALLING_EDGE, _button_STANDBY_irq_handler, NULL); + + MicoFlashInitialize( MICO_SPI_FLASH ); +} + +void init_platform_bootloader( void ) +{ + MicoGpioInitialize( (mico_gpio_t)MICO_SYS_LED, OUTPUT_PUSH_PULL ); + MicoGpioOutputLow( (mico_gpio_t)MICO_SYS_LED ); + MicoGpioInitialize( (mico_gpio_t)MICO_RF_LED, OUTPUT_OPEN_DRAIN_NO_PULL ); + MicoGpioOutputHigh( (mico_gpio_t)MICO_RF_LED ); + + MicoGpioInitialize((mico_gpio_t)BOOT_SEL, INPUT_PULL_UP); + MicoGpioInitialize((mico_gpio_t)MFG_SEL, INPUT_HIGH_IMPEDANCE); +} + + +void host_platform_reset_wifi( bool reset_asserted ) +{ + if ( reset_asserted == true ) + { + MicoGpioOutputLow( (mico_gpio_t)WL_RESET ); + } + else + { + MicoGpioOutputHigh( (mico_gpio_t)WL_RESET ); + } +} + +void host_platform_power_wifi_init(void) +{ + MicoGpioInitialize((mico_gpio_t)WL_REG, OUTPUT_PUSH_PULL); + MicoGpioOutputLow( (mico_gpio_t)WL_REG ); +} + +void host_platform_power_wifi( bool power_enabled ) +{ + if ( power_enabled == true ) + { + MicoGpioOutputLow( (mico_gpio_t)WL_REG ); + } + else + { + MicoGpioOutputHigh( (mico_gpio_t)WL_REG ); + } +} + +void MicoSysLed(bool onoff) +{ + if (onoff) { + MicoGpioOutputLow( (mico_gpio_t)MICO_SYS_LED ); + } else { + MicoGpioOutputHigh( (mico_gpio_t)MICO_SYS_LED ); + } +} + +void MicoRfLed(bool onoff) +{ + if (onoff) { + MicoGpioOutputLow( (mico_gpio_t)MICO_RF_LED ); + } else { + MicoGpioOutputHigh( (mico_gpio_t)MICO_RF_LED ); + } +} + +bool MicoShouldEnterMFGMode(void) +{ + return false; + + if(MicoGpioInputGet((mico_gpio_t)BOOT_SEL)==false && MicoGpioInputGet((mico_gpio_t)MFG_SEL)==false) + return true; + else + return false; +} + +bool MicoShouldEnterBootloader(void) +{ + if(MicoGpioInputGet((mico_gpio_t)BOOT_SEL)==false /*&& MicoGpioInputGet((mico_gpio_t)MFG_SEL)==true*/) + return true; + else + return false; +} + diff --git a/Platform/EMW3288/platform.h b/Platform/EMW3288/platform.h new file mode 100644 index 00000000..d89725ec --- /dev/null +++ b/Platform/EMW3288/platform.h @@ -0,0 +1,327 @@ +/** +****************************************************************************** +* @file platform.h +* @author William Xu +* @version V1.0.0 +* @date 05-May-2014 +* @brief This file provides all MICO Peripherals defined for current platform. +****************************************************************************** +* +* The MIT License +* Copyright (c) 2014 MXCHIP Inc. +* +* Permission is hereby granted, free of charge, to any person obtaining a copy +* of this software and associated documentation files (the "Software"), to deal +* in the Software without restriction, including without limitation the rights +* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +* copies of the Software, and to permit persons to whom the Software is furnished +* to do so, subject to the following conditions: +* +* The above copyright notice and this permission notice shall be included in +* all copies or substantial portions of the Software. +* +* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +* IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +****************************************************************************** +*/ + +#include "platform_common_config.h" + +#pragma once + +#ifdef __cplusplus +extern "C" +{ +#endif + +/****************************************************** + * Macros + ******************************************************/ + +/****************************************************** + * Constants + ******************************************************/ + +#define HARDWARE_REVISION "3288" +#define DEFAULT_NAME "EMW3288 Module" +#define MODEL "EMW3288" +#define Bootloader_VISION "V 0.1" + +/****************************************************** + * Enumerations + ******************************************************/ + +/* +EMW3165 on EMB-3165-A platform pin definitions ... ++-------------------------------------------------------------------------+ +| Enum ID |Pin | STM32| Peripheral | Board | Peripheral | +| | # | Port | Available | Connection | Alias | +|---------------+----+------+-------------+--------------+----------------| +| | 1 | NC | | | | +|---------------+----+------+-------------+--------------+----------------| +| MICO_GPIO_2 | 2 | B 2 | GPIO | | | +|---------------+----+------+-------------+--------------+----------------| +| | 3 | NC | | | | +|---------------+----+------+-------------+--------------+----------------| +| MICO_GPIO_4 | 4 | A 7 | TIM1_CH1N | | | +| | | | TIM3_CH2 | | | +| | | | SPI1_MOSI | | | +|---------------+----+------+-------------+--------------+----------------| +| MICO_GPIO_5 | 5 | A 15| JTDI | | | +| | | | TIM2_CH1 | | | +| | | | TIM2_ETR | | | +| | | | SPI1_NSS | | | +| | | | SPI3_NSS | | | +| | | | USART1_TX | | | +|---------------+----+------+-------------+--------------+----------------| +| MICO_GPIO_6 | 6 | B 3 | TIM2_CH2 | | | +| | | | GPIO | | | +| | | | SPI1_SCK | | | +| | | | USART1_RX | | | +|---------------+----+------+-------------+--------------+----------------| +| MICO_GPIO_7 | 7 | B 4 | JTRST | | | +| | | | GPIO | | | +| | | | SDIO_D0 | | | +| | | | TIM3_CH1 | | | +| | | | SPI1_MISO | | | +| | | | SPI3_MISO | | | +|---------------+----+------+-------------+--------------+----------------| +| MICO_GPIO_8 | 8 | A 2 | TIM2_CH3 | | MICO_UART_1_TX | +| | | | TIM5_CH3 | | | +| | | | TIM9_CH1 | | | +| | | | USART2_TX | | | +| | | | GPIO | | | +|---------------+----+------+-------------+--------------+----------------| +| MICO_GPIO_9 | 9 | A 1 | TIM2_CH2 |EasyLink_BUTTON| | +| | | | TIM5_CH2 | | | +| | | | USART2_RTS | | | +| | | | GPIO | | | +|---------------+----+------+-------------+--------------+----------------| +| | 10 | VBAT | | +|---------------+----+------+-------------+--------------+----------------| +| | 11 | NC | | | | +|---------------+----+------+-------------+--------------+----------------| +| MICO_GPIO_12 | 12 | A 3 | TIM2_CH4 | | MICO_UART_1_RX | +| | | | TIM5_CH4 | | | +| | | | TIM9_CH2 | | | +| | | | USART2_RX | | | +| | | | GPIO | | | +|---------------+----+------+-------------+--------------+----------------| +| | 13 | NRST | | | MICRO_RST_N | +|---------------+----+------+-------------+--------------+----------------| +| | 14 |WAKE_UP | | | +|---------------+----+------+-------------+--------------+----------------| +| | 15 | NC | | | | +|---------------+----+------+-------------+--------------+----------------| +| MICO_GPIO_16 | 16 | C 13 | - | | | +|---------------+----+------+-------------+--------------+----------------| +| MICO_GPIO_17 | 17 | B 10 | TIM2_CH3 | MICO_SYS_LED | | +| | | | I2C2_SCL | | | +| | | | GPIO | | | +|---------------+----+------+-------------+--------------+----------------| +| MICO_GPIO_18 | 18 | B 9 | TIM4_CH4 | | | +| | | | TIM11_CH1 | | | +| | | | I2C1_SDA | | | +| | | | GPIO | | | ++---------------+----+--------------------+--------------+----------------+ +| MICO_GPIO_19 | 19 | B 12 | GPIO | | | ++---------------+----+--------------------+--------------+----------------+ +| | 20 | GND | | | | ++---------------+----+--------------------+--------------+----------------+ +| | 21 | GND | | | | ++---------------+----+--------------------+--------------+----------------+ +| MICO_GPIO_22 | 22 | B 3 | | | | ++---------------+----+--------------------+--------------+----------------+ +| MICO_GPIO_23 | 23 | A 15 | GPIO | | JTAG_TDI | +| | | | USART1_TX |STDIO_UART_RX | SPI1_SSN | +| | | | TIM2_CH1 | | | +| | | | TIM2_ETR | | | ++---------------+----+--------------------+--------------+----------------+ +| MICO_GPIO_24 | 24 | B 4 | | | | ++---------------+----+--------------------+--------------+----------------+ +| MICO_GPIO_25 | 25 | A 14 | JTCK-SWCLK | SWCLK | | +| | | | GPIO | | | ++---------------+----+--------------------+--------------+----------------+ +|MICO_GPIO_26 | 26 | A 13 | JTMS-SWDIO | SWDIO | | +| | | | GPIO | | | ++---------------+----+--------------------+--------------+----------------+ +|MICO_GPIO_27 | 27 | A 12 | TIM1_ETR | | USART1_RTS | +| | | | USART1_RTS | | | +| | | | USART6_RX | | | +| | | | USB_FS_DP | | | +| | | | GPIO | | | ++---------------+----+--------------------+--------------+----------------+ +| | 28 | NC | | | | ++---------------+----+--------------------+--------------+----------------+ +| MICO_GPIO_29 | 29 | A 10 | GPIO | | | +| | | | TIM1_CH3 | | | +| | | | USART1_RX | | | +| | | | USB_FS_ID | | | ++---------------+----+--------------------+--------------+----------------+ +| MICO_GPIO_30 | 30 | B 6 | GPIO | | | +| | | | TIM4_CH1 | | | +| | | | USART1_TX | | | +| | | | I2C1_SCL | | | ++---------------+----+--------------------+--------------+----------------+ +| MICO_SYS_LED | 31 | B 8 | GPIO | | | +| | | | TIM4_CH3 | | | +| | | | TIM10_CH1 | | | ++---------------+----+--------------------+--------------+----------------+ +| | 32 | NC | | | | ++---------------+----+--------------------+--------------+----------------+ +| MICO_GPIO_33 | 33 | B 13 | TIM1_CH1N | | | +| | | | SPI2_SCK | | | +| | | | GPIO | | | ++---------------+----+--------------------+--------------+----------------+ +| MICO_GPIO_34 | 34 | A 5 | TIM2_CH1 | | | +| | | | GPIO | | | ++---------------+----+--------------------+--------------+----------------+ +| MICO_GPIO_35 | 35 | A 11| TIM1_CH4 | | USART1_CTS | +| | | | SPI4_MISO | | | +| | | | USART1_CTS | | | +| | | | USART6_TX | | | +| | | | USB_FS_DM | | | +| | | | GPIO | | | ++---------------+----+--------------------+--------------+----------------+ +| MICO_GPIO_36 | 36 | B 1 | TIM1_CH3N | BOOT_SEL | | +| | | | TIM3_CH4 | | | +| | | | GPIO | | | ++---------------+----+--------------------+--------------+----------------+ +| MICO_GPIO_37 | 37 | B 0 | TIM1_CH2N | MFG_SEL | | +| | | | TIM3_CH3 | | | +| | | | GPIO | | | ++---------------+----+--------------------+--------------+----------------+ +| MICO_GPIO_38 | 38 | A 4 | USART2_CK | MICO_RF_LED | | +| | | | GPIO | | | ++---------------+----+--------------------+--------------+----------------+ +| | 39 | VDD | | | | ++---------------+----+--------------------+--------------+----------------+ +| | 40 | VDD | | | | ++---------------+----+--------------------+--------------+----------------+ +| | 41 | ANT | | | | ++---------------+----+--------------------+--------------+----------------+ +Notes +1. These mappings are defined in /Platform/BCM943362WCD4/platform.c +2. STM32F2xx Datasheet -> http://www.st.com/web/en/resource/technical/document/datasheet/CD00237391.pdf +3. STM32F2xx Ref Manual -> http://www.st.com/web/en/resource/technical/document/reference_manual/CD00225773.pdf +*/ + + +typedef enum +{ + MICO_GPIO_0 = MICO_COMMON_GPIO_MAX, + MICO_GPIO_1, + MICO_GPIO_2, + MICO_GPIO_3, + MICO_GPIO_4, + MICO_GPIO_5, + MICO_GPIO_6, + MICO_GPIO_7, + MICO_GPIO_8, + MICO_GPIO_9, + MICO_GPIO_10, + MICO_GPIO_11, + MICO_GPIO_12, + MICO_GPIO_13, + MICO_GPIO_14, + MICO_GPIO_15, + MICO_GPIO_16, + MICO_GPIO_17, + MICO_GPIO_18, + MICO_GPIO_19, + MICO_GPIO_20, + MICO_GPIO_21, + MICO_GPIO_22, + MICO_GPIO_23, + MICO_GPIO_24, + MICO_GPIO_25, + MICO_GPIO_26, + MICO_GPIO_27, + MICO_GPIO_28, + MICO_GPIO_29, + MICO_GPIO_30, + MICO_GPIO_31, + MICO_GPIO_32, + MICO_GPIO_33, + MICO_GPIO_34, + MICO_GPIO_35, + MICO_GPIO_36, + MICO_GPIO_37, + MICO_GPIO_38, + MICO_GPIO_39, + MICO_GPIO_40, + + MICO_GPIO_MAX, /* Denotes the total number of GPIO port aliases. Not a valid GPIO alias */ +} mico_gpio_t; + +typedef enum +{ + MICO_SPI_1, + MICO_SPI_MAX, /* Denotes the total number of SPI port aliases. Not a valid SPI alias */ +} mico_spi_t; + +typedef enum +{ + MICO_I2C_1, + MICO_I2C_MAX, /* Denotes the total number of I2C port aliases. Not a valid I2C alias */ +} mico_i2c_t; + +typedef enum +{ + MICO_PWM_R, + MICO_PWM_G, + MICO_PWM_B, + MICO_PWM_MAX, /* Denotes the total number of PWM port aliases. Not a valid PWM alias */ +} mico_pwm_t; + +typedef enum +{ + MICO_ADC_1, + MICO_ADC_2, + MICO_ADC_3, + MICO_ADC_MAX, /* Denotes the total number of ADC port aliases. Not a valid ADC alias */ +} mico_adc_t; + +typedef enum +{ + MICO_UART_UNUSED = -1, + MICO_UART_1, + MICO_UART_2, + MICO_UART_MAX, /* Denotes the total number of UART port aliases. Not a valid UART alias */ +} mico_uart_t; + +typedef enum +{ + MICO_SPI_FLASH, + MICO_INTERNAL_FLASH, + MICO_FLASH_MAX, +} mico_flash_t; + +#define USE_MICO_SPI_FLASH +//#define SFLASH_SUPPORT_MACRONIX_PART +//#define SFLASH_SUPPORT_SST_PARTS +#define SFLASH_SUPPORT_WINBOND_PARTS + +#define STM32_UART_1 NULL /*Not used here, define to avoid warning*/ +#define STM32_UART_2 MICO_UART_1 +#define STM32_UART_6 NULL + +/* Components connected to external I/Os*/ + + +/* I/O connection <-> Peripheral Connections */ +#define MICO_I2C_CP (MICO_I2C_1) + + + +#define RestoreDefault_TimeOut 3000 /**< Restore default and start easylink after + press down EasyLink button for 3 seconds. */ + +#ifdef __cplusplus +} /*extern "C" */ +#endif + diff --git a/Platform/EMW3288/platform_common_config.h b/Platform/EMW3288/platform_common_config.h new file mode 100644 index 00000000..e36fbbbf --- /dev/null +++ b/Platform/EMW3288/platform_common_config.h @@ -0,0 +1,222 @@ +/** +****************************************************************************** +* @file platform_common_config.h +* @author William Xu +* @version V1.0.0 +* @date 05-May-2014 +* @brief This file provides common configuration for current platform. +****************************************************************************** +* +* The MIT License +* Copyright (c) 2014 MXCHIP Inc. +* +* Permission is hereby granted, free of charge, to any person obtaining a copy +* of this software and associated documentation files (the "Software"), to deal +* in the Software without restriction, including without limitation the rights +* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +* copies of the Software, and to permit persons to whom the Software is furnished +* to do so, subject to the following conditions: +* +* The above copyright notice and this permission notice shall be included in +* all copies or substantial portions of the Software. +* +* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +* IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +****************************************************************************** +*/ + +#pragma once + +/****************************************************** +* Macros +******************************************************/ + +/****************************************************** +* Constants +******************************************************/ + +/* MICO RTOS tick rate in Hz */ +#define MICO_DEFAULT_TICK_RATE_HZ (1000) + +/************************************************************************ + * Uncomment to disable watchdog. For debugging only */ +//#define MICO_DISABLE_WATCHDOG + +/************************************************************************ + * Uncomment to disable standard IO, i.e. printf(), etc. */ +//#define MICO_DISABLE_STDIO + +/************************************************************************ + * Uncomment to disable MCU powersave API functions */ +//#define MICO_DISABLE_MCU_POWERSAVE + +/************************************************************************ + * Uncomment to enable MCU real time clock */ +#define MICO_ENABLE_MCU_RTC + + +#define MCU_CLOCK_HZ 100000000 + +#define HSE_SOURCE RCC_HSE_OFF /* Use external crystal */ +#define AHB_CLOCK_DIVIDER RCC_SYSCLK_Div1 /* AHB clock = System clock */ +#define APB1_CLOCK_DIVIDER RCC_HCLK_Div2 /* APB1 clock = AHB clock / 2 */ +#define APB2_CLOCK_DIVIDER RCC_HCLK_Div1 /* APB2 clock = AHB clock / 1 */ +#define PLL_SOURCE RCC_PLLSource_HSI /* PLL source = external crystal */ +#define PLL_M_CONSTANT 16 /* PLLM = 16 */ +#define PLL_N_CONSTANT 400 /* PLLN = 400 */ +#define PLL_P_CONSTANT 4 /* PLLP = 4 */ +#define PPL_Q_CONSTANT 7 /* PLLQ = 7 */ +#define SYSTEM_CLOCK_SOURCE RCC_SYSCLKSource_PLLCLK /* System clock source = PLL clock */ +#define SYSTICK_CLOCK_SOURCE SysTick_CLKSource_HCLK /* SysTick clock source = AHB clock */ +#define INT_FLASH_WAIT_STATE FLASH_Latency_3 /* Internal flash wait state = 3 cycles */ + +/************************************************************************ + * Used for EMW1088 RF SDIO driver */ +#define SDIO_OOB_IRQ_BANK GPIOB +#define SDIO_CLK_BANK GPIOB +#define SDIO_CMD_BANK GPIOA +#define SDIO_D0_BANK GPIOB +#define SDIO_D1_BANK GPIOA +#define SDIO_D2_BANK GPIOA +#define SDIO_D3_BANK GPIOB +#define SDIO_OOB_IRQ_BANK_CLK RCC_AHB1Periph_GPIOB +#define SDIO_CLK_BANK_CLK RCC_AHB1Periph_GPIOB +#define SDIO_CMD_BANK_CLK RCC_AHB1Periph_GPIOA +#define SDIO_D0_BANK_CLK RCC_AHB1Periph_GPIOB +#define SDIO_D1_BANK_CLK RCC_AHB1Periph_GPIOA +#define SDIO_D2_BANK_CLK RCC_AHB1Periph_GPIOA +#define SDIO_D3_BANK_CLK RCC_AHB1Periph_GPIOB +#define SDIO_OOB_IRQ_PIN 6 +#define SDIO_CLK_PIN 15 +#define SDIO_CMD_PIN 6 +#define SDIO_D0_PIN 7 +#define SDIO_D1_PIN 8 +#define SDIO_D2_PIN 9 +#define SDIO_D3_PIN 5 + +#define SDIO_1_BIT + + +/* These are internal platform connections only */ +typedef enum +{ + MICO_GPIO_UNUSED = -1, + + WL_GPIO0 = 0, + WL_GPIO1, + + MICO_SYS_LED, + MICO_RF_LED, + BOOT_SEL, + MFG_SEL, + Standby_SEL, + EasyLink_BUTTON, + STDIO_UART_RX, + STDIO_UART_TX, + MICO_COMMON_GPIO_MAX, +} mico_common_gpio_t; + +#define MICO_GPIO_WLAN_POWERSAVE_CLOCK MICO_GPIO_UNUSED +#define WL_REG MICO_GPIO_2 +#define WL_RESET MICO_GPIO_UNUSED +//#define MICO_SYS_LED MICO_GPIO_UNUSED +//#define MICO_RF_LED MICO_GPIO_UNUSED + +/* How the wlan's powersave clock is connected */ +typedef enum +{ + MICO_PWM_WLAN_POWERSAVE_CLOCK, + MICO_COMMON_PWM_MAX, +} mico_common_pwm_t; + +/* WLAN Powersave Clock Source + * The WLAN sleep clock can be driven from one of two sources: + * 1. Timer/PWM (default) + * - With the PWM selected, the STM32 can *NOT* be put into MCU powersave mode or the PWM output will be disabled + * 2. MCO (MCU Clock Output). + * - Change the following directive to MICO_WLAN_POWERSAVE_CLOCK_IS_MCO + */ +#define MICO_WLAN_POWERSAVE_CLOCK_SOURCE MICO_WLAN_POWERSAVE_CLOCK_IS_NOT_EXIST + +#define MICO_WLAN_POWERSAVE_CLOCK_IS_NOT_EXIST 0 +#define MICO_WLAN_POWERSAVE_CLOCK_IS_PWM 1 +#define MICO_WLAN_POWERSAVE_CLOCK_IS_MCO 2 + + +#define WLAN_POWERSAVE_CLOCK_FREQUENCY 32768 /* 32768Hz */ +#define WLAN_POWERSAVE_CLOCK_DUTY_CYCLE 50 /* 50% duty-cycle */ + +#define WL_32K_OUT_BANK GPIOA +#define WL_32K_OUT_PIN 0 +#define WL_32K_OUT_BANK_CLK RCC_AHB1Periph_GPIOA + +/* The number of UART interfaces this hardware platform has */ +#define NUMBER_OF_UART_INTERFACES 2 + +#define UART_FOR_APP MICO_UART_2 +#define STDIO_UART MICO_UART_1 +#define MFG_TEST MICO_UART_1 +#define CLI_UART MICO_UART_1 + +/* Memory map */ +#define INTERNAL_FLASH_START_ADDRESS (uint32_t)0x08000000 +#define INTERNAL_FLASH_END_ADDRESS (uint32_t)0x0807FFFF +#define INTERNAL_FLASH_SIZE (INTERNAL_FLASH_END_ADDRESS - INTERNAL_FLASH_START_ADDRESS + 1) /* 512k bytes*/ + +#define SPI_FLASH_START_ADDRESS (uint32_t)0x00000000 +#define SPI_FLASH_END_ADDRESS (uint32_t)0x000FFFFF +#define SPI_FLASH_SIZE (SPI_FLASH_END_ADDRESS - SPI_FLASH_START_ADDRESS + 1) /* 1M bytes*/ + +#define MICO_FLASH_FOR_APPLICATION MICO_INTERNAL_FLASH +#define APPLICATION_START_ADDRESS (uint32_t)0x0800C000 +#define APPLICATION_END_ADDRESS (uint32_t)0x0807FFFF +#define APPLICATION_FLASH_SIZE (APPLICATION_END_ADDRESS - APPLICATION_START_ADDRESS + 1) /* 480 bytes*/ + +#define MICO_FLASH_FOR_UPDATE MICO_SPI_FLASH /* Optional */ +#define UPDATE_START_ADDRESS (uint32_t)0x00040000 /* Optional */ +#define UPDATE_END_ADDRESS (uint32_t)0x0009FFFF /* Optional */ +#define UPDATE_FLASH_SIZE (UPDATE_END_ADDRESS - UPDATE_START_ADDRESS + 1) /* 256k bytes, optional*/ + +#define MICO_FLASH_FOR_BOOT MICO_INTERNAL_FLASH +#define BOOT_START_ADDRESS (uint32_t)0x08000000 +#define BOOT_END_ADDRESS (uint32_t)0x08007FFF +#define BOOT_FLASH_SIZE (BOOT_END_ADDRESS - BOOT_START_ADDRESS + 1) /* 16k bytes*/ + +#define MICO_FLASH_FOR_DRIVER MICO_SPI_FLASH +#define DRIVER_START_ADDRESS (uint32_t)0x00002000 +#define DRIVER_END_ADDRESS (uint32_t)0x0003FFFF +#define DRIVER_FLASH_SIZE (DRIVER_END_ADDRESS - DRIVER_START_ADDRESS + 1) /* 248k bytes*/ + +#define MICO_FLASH_FOR_PARA MICO_SPI_FLASH +#define PARA_START_ADDRESS (uint32_t)0x00000000 +#define PARA_END_ADDRESS (uint32_t)0x00000FFF +#define PARA_FLASH_SIZE (PARA_END_ADDRESS - PARA_START_ADDRESS + 1) /* 4k bytes*/ + +#define MICO_FLASH_FOR_EX_PARA MICO_SPI_FLASH +#define EX_PARA_START_ADDRESS (uint32_t)0x00001000 +#define EX_PARA_END_ADDRESS (uint32_t)0x00001FFF +#define EX_PARA_FLASH_SIZE (EX_PARA_END_ADDRESS - EX_PARA_START_ADDRESS + 1) /* 4k bytes*/ + +/****************************************************** +* Enumerations +******************************************************/ + +/****************************************************** +* Type Definitions +******************************************************/ + +/****************************************************** +* Structures +******************************************************/ + +/****************************************************** +* Global Variables +******************************************************/ + +/****************************************************** +* Function Declarations +******************************************************/ diff --git a/Projects/COM.MXCHIP.SPP/EWARM/COM.MXCHIP.SPP.ewd b/Projects/COM.MXCHIP.SPP/EWARM/COM.MXCHIP.SPP.ewd index 60d98b72..0cd9e4df 100644 --- a/Projects/COM.MXCHIP.SPP/EWARM/COM.MXCHIP.SPP.ewd +++ b/Projects/COM.MXCHIP.SPP/EWARM/COM.MXCHIP.SPP.ewd @@ -85,7 +85,7 @@