From 9d6c0206e45b0415c8475d581890a881b28013cc Mon Sep 17 00:00:00 2001 From: helloyifa Date: Mon, 21 Apr 2025 18:02:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8C=89=E8=A6=81=E6=B1=82=E6=9B=B4=E6=96=B0UI?= =?UTF-8?q?=EF=BC=8C=E6=B7=BB=E5=8A=A0=E9=9F=B3=E9=A2=91=E6=92=AD=E6=94=BE?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=EF=BC=8C=E6=B7=BB=E5=8A=A0=E9=80=9A=E8=BF=87?= =?UTF-8?q?=E7=8E=AF=E5=BD=A2=E9=98=9F=E5=88=97=E4=BF=9D=E5=AD=98=E6=B8=A9?= =?UTF-8?q?=E5=BA=A6=E6=95=B0=E6=8D=AE=EF=BC=8C=E5=B9=B6=E8=AE=A1=E7=AE=97?= =?UTF-8?q?=E6=96=B9=E5=B7=AE=E5=88=A4=E6=96=AD=E7=A8=B3=E5=AE=9A=E6=98=AF?= =?UTF-8?q?=E5=90=A6=E7=A8=B3=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../applications/app_temperature.c | 610 +++++++++-- .../applications/app_temperature.h | 81 +- .../applications/app_voice_player.c | 999 ++++++++++++++++++ .../applications/app_voice_player.h | 10 + .../applications/drv_oled.c | 90 +- .../applications/drv_oled.h | 1 + .../applications/main.c | 39 - .../applications/ring_queue.c | 41 + .../applications/ring_queue.h | 18 + .../beken378/app/config/sys_config_bk7252n.h | 4 +- 10 files changed, 1753 insertions(+), 140 deletions(-) create mode 100644 beken_rtt_sdk_release-SDK_3.0.76/applications/app_voice_player.c create mode 100644 beken_rtt_sdk_release-SDK_3.0.76/applications/app_voice_player.h create mode 100644 beken_rtt_sdk_release-SDK_3.0.76/applications/ring_queue.c create mode 100644 beken_rtt_sdk_release-SDK_3.0.76/applications/ring_queue.h diff --git a/beken_rtt_sdk_release-SDK_3.0.76/applications/app_temperature.c b/beken_rtt_sdk_release-SDK_3.0.76/applications/app_temperature.c index 65b3039a..8b1aa625 100644 --- a/beken_rtt_sdk_release-SDK_3.0.76/applications/app_temperature.c +++ b/beken_rtt_sdk_release-SDK_3.0.76/applications/app_temperature.c @@ -7,13 +7,26 @@ #include "drv_oled.h" #include #include + +#include "sys_ctrl_pub.h" +#include "sys_ctrl.h" +#include "target_util_pub.h" +#include "drv_model_pub.h" + #include "app_temperature.h" +#include "app_voice_player.h" #ifdef PKG_USING_EASYFLASH #include "easyflash.h" #endif + +#include "saradc_intf.h" +#include "saradc_pub.h" + +#include "ring_queue.h" + static app_temperature_info_t temperature_info; static app_dev_info_t dev_info; -static app_temperature_mode_t app_mode = APP_MODE_NORMAL; + static beken_timer_t timer_detect; static beken_timer_t timer_hall_detect; @@ -21,25 +34,27 @@ static beken_timer_t timer_poweroff; static beken_timer_t timer_bind; static beken_timer_t timer_idle; -//extern uint8_t ble_active; -//static uint8_t actv_idx; -int Temp,Temp2,lastTemp; -int temp0,temp1,temp2; -uint8_t tempstr[5]; -uint8_t tempstr1[5]; -uint8_t tempstr11[5]; -uint8_t tempstr2[5]; -uint8_t batstr1[5]; -uint8_t batstr2[5]="%"; -uint8_t batstr3[5]=" "; -char *endPtr; - int start_bind_detect = 0; int hall_key_down_count = 0; int hall_io_state = 0; +static ADC_OBJ box_batt_adc; +static int box_battery_percent = -1; +uint16_t last_body_temp = 0; + +rt_thread_t tid_show_wait_temp; +static app_ui_mode app_mode = UI_IDLE; + +rt_thread_t tid_show_detect_temp; + +static RingQueue ring_queue; + +/** + * 待绑定的设备 + */ uint8_t ble_device_mac[6] = {0xe5, 0xe6, 0xb6, 0x09, 0x28, 0x37}; +//uint8_t ble_device_name[12] = {0}; int ble_device_rssi = -100; int ble_found_bind_dev = 0; /** @@ -107,15 +122,16 @@ void temperature_adv_callback(recv_adv_t *r_ind) //不等于 IT12的 跳过! return; } - + #if 1 bk_printf("\r\n"); bk_printf("ble dev (%s): %02x:%02x:%02x:%02x:%02x:%02x,rssi:%d\r\n",str_name,r_ind->adv_addr[0], r_ind->adv_addr[1], r_ind->adv_addr[2], r_ind->adv_addr[3], r_ind->adv_addr[4], r_ind->adv_addr[5],rssi); #endif //如果当前是绑定模式 则收集BLE 测温设备 判断信号值,然后绑定 - if(app_mode == APP_MODE_BIND){ + if(app_mode == UI_BOX_BIND){ //简单匹配 选择信号值最大的 + bk_printf("app_mode == UI_BOX_BIND\r\n"); if(rssi > ble_device_rssi){ ble_found_bind_dev = 1; ble_device_rssi = rssi; @@ -134,8 +150,19 @@ void temperature_adv_callback(recv_adv_t *r_ind) { return; } - + //复制设备名称 + rt_memset(temperature_info.device_name,0,sizeof(temperature_info.device_name)); + rt_memcpy(temperature_info.device_name,str_name,sizeof(str_name)); + //rt_strcmp((char*)str_name,(char*)temperature_info.device_name); + bk_printf("!!!ble_device : %s %s \r\n",str_name,temperature_info.device_name); rtos_reload_timer(&timer_idle); + + //在超时或者等待温度页面 第一次接受到温度 显示设备信息 + if(app_mode == UI_IDLE || app_mode == UI_WAIT_TEMPERATURE || app_mode == UI_SHOW_MEMORY_INFO){ + + bk_printf("!app_mode : %d \r\n",app_mode); + app_enter_ui(UI_SHOW_DEVICE_INFO); + } //int i; //for (i = 0; i < r_ind->data_len; i++) //{ @@ -194,30 +221,289 @@ void temperature_adv_callback(recv_adv_t *r_ind) p += data_len; // p之前已经移动到数据部分开始处,此时加上数据长度让指针移动到下一个AD结构 } -} - -uint16_t last_body_temp = 0; -void timer_temp_run_callback(void *arg){ - - //如果当前进入了绑定模式 则不刷新温度 - if(app_mode == APP_MODE_BIND){ - return; - } + //如果当前温度和之前相同 不刷新温度 uint16_t temp_body = temperature_info.temperature_body; if(last_body_temp == temp_body){ - return; + //return; } last_body_temp = temp_body; + + //添加数据到队列,数量足够后取出所有温度数据 计算方差 如果小于 N N可以趋近于0 暂定小于100 则表示温度稳定 + RingQueue_enqueue(&ring_queue,(int)last_body_temp); + int size = RingQueue_size(&ring_queue); + bk_printf("RingQueue_size -> %d \r\n", size); + + if (RingQueue_isFull(&ring_queue)) { + int i = 0; + int t_datas[MAX_SIZE]; + for(i = 0;i < MAX_SIZE; i++){ + int value = 0; + RingQueue_dequeue(&ring_queue,&value); + t_datas[i] = value; + bk_printf("%d ", value); + } + bk_printf("\r\n", size); + //计算平均值 + int sum = 0; + for(i = 0;i < MAX_SIZE; i++){ + sum += t_datas[i]; + } + int mean_value = sum / MAX_SIZE; + bk_printf("mean_value:%d \r\n", mean_value); + //计算方差 + double sumOfSquares = 0; + for (int i = 0; i < MAX_SIZE; i++) { + sumOfSquares += (t_datas[i] - mean_value) * (t_datas[i] - mean_value); + } + int variance_value = sumOfSquares / MAX_SIZE; // 注意这里是n,而不是n-1(对于样本方差) + bk_printf("variance_value:%d \r\n", variance_value); + } + app_enter_ui(UI_SHOW_TEMPERATURE); +} + + +void timer_temp_run_callback(void *arg){ + + //如果当前进入了绑定模式 则不刷新温度 + if(app_mode == UI_BOX_BIND){ + return; + } + + if(app_mode == UI_BOX_BATTERY){ + return; + } + + //if(app_mode == UI_SHOW_DEVICE_INFO){ + // return; + //} + + + +} + + +/** + * 显示 ... 表示等待 + */ +static void app_temperature_ui_wait_entry(void *parameter) +{ + int i = 0; + int ui_wait_step = 0; + while (1) + { + if(i >2000){ + i = 0; + } + i++; + if(app_mode == UI_WAIT_TEMPERATURE || app_mode == UI_IDLE ||UI_SHOW_MEMORY_INFO){ + if(i%50==0){ //500ms + OLED_Clear(); + switch (ui_wait_step) + { + case 0: + OLED_ShowString(0+20,0,(u8 *)"",32,1); + ui_wait_step =1; + break; + case 1: + OLED_ShowString(0+20,0,(u8 *)".",32,1); + ui_wait_step =2; + break; + case 2: + OLED_ShowString(0+20,0,(u8 *)"..",32,1); + ui_wait_step =3; + break; + case 3: + OLED_ShowString(0+20,0,(u8 *)"...",32,1); + ui_wait_step =0; + break; + break; + default: + break; + } + OLED_Refresh(); + } + rt_thread_mdelay(10); + } + } + rt_kprintf("ui_wait finish !!!\r\n"); + +} + + +void app_show_box_battery(){ + rt_kprintf("UI->app_show_box_battery\r\n"); + OLED_Clear(); + char str_batt[12] = {0}; + rt_sprintf(str_batt,"%d%",box_battery_percent); + extern unsigned char f35x40_box_ico[]; + //满电显示屏显示不全 缩小字体显示 + if(box_battery_percent >= 100){ + OLED_ShowPicture(3,5,35,40,(u8 *)&f35x40_box_ico,1); + OLED_ShowString(38,15,(u8 *)str_batt,16,1); + }else{ + OLED_ShowPicture(1,3,35,40,(u8 *)&f35x40_box_ico,1); + //OLED_DrawCircle(15, 20, 10); + //OLED_DrawCircle(15, 20, 7); + OLED_ShowString(36,8,(u8 *)str_batt,24,1); + } + OLED_Refresh(); +} + +/** + * 显示最近一次检测的温度 + */ +void app_show_memory_detect_info(){ + rt_kprintf("UI->app_show_last_detect_info\r\n"); + OLED_Clear(); + OLED_ShowString(2,1,(u8 *)"M1",16,1); + + OLED_ShowString(0,18,(u8 *)"36.5 C",24,1); + OLED_DrawCircle(55,15,4); + + OLED_Refresh(); +} + +/** + * 开机第一次检测到测温设备时 显示设备的名称和电量 然后持续监测温度 + */ +void app_show_temperature_device_info(){ + rt_kprintf("UI->app_show_temperature_device_info\r\n"); + OLED_Clear(); + //char str_device[16]={0}; + //rt_sprintf(str_device,"%s",temperature_info.device_name); + OLED_ShowString(0,5,(u8 *)temperature_info.device_name,16,1); + extern unsigned char f40x20_box_batt[]; + OLED_ShowPicture(0,23,40,20,(u8 *)&f40x20_box_batt,1); + char str_batt[16]={0}; + rt_sprintf(str_batt,":%d%",temperature_info.batt_val); + OLED_ShowString(35,25,(u8 *)str_batt,16,1); + OLED_Refresh(); + rt_thread_mdelay(2000); + //app_enter_ui(UI_WAIT_TEMPERATURE); +} +/** + * 显示正在等待测温 + */ +void app_show_wait_temperature(){ + rt_kprintf("UI->app_show_wait_temperature\r\n"); + if(tid_show_wait_temp){ + rt_thread_detach(tid_show_wait_temp); + tid_show_wait_temp = NULL; + } + tid_show_wait_temp = rt_thread_create("wait_temp",app_temperature_ui_wait_entry,RT_NULL,1024 * 8,21,10); + if (tid_show_wait_temp) + rt_thread_startup(tid_show_wait_temp); +} + + + +static void app_temperature_ui_detect_entry(void *parameter) +{ + int i = 0; + int ui_show_point = 0; + while (1) + { + if(i >2000){ + i = 0; + } + i++; + //1s刷新一次 用于 屏幕上的点 闪烁 + if(i%100==0){ //1000ms + OLED_Clear(); + + //rt_kprintf("UI->app_ui_show_temperautre \r\n"); + uint16_t temp_body = last_body_temp; + char str_temp[8]={0}; + rt_sprintf(str_temp,"%d.%d \n",temp_body/100,temp_body/10%10); + //rt_kprintf("%s\r\n",str_temp); + + if(temp_body > BLE_TEMPERATURE_LIMIT_MIN && temp_body < BLE_TEMPERATURE_LIMIT_MAX){ + OLED_Clear(); + rt_memset(str_temp,0,sizeof(str_temp)); + rt_sprintf(str_temp,"%d",temp_body/100);//整数 + OLED_ShowString(0,0+10,(u8*)str_temp,32,1); + + OLED_ShowChar(32,0+10,'.',32,1);//小数点 + + rt_memset(str_temp,0,sizeof(str_temp)); + rt_sprintf(str_temp,"%d",temp_body/10%10);//小数点后一位 + OLED_ShowString(40,0+10,(u8*)str_temp,32,1); + //屏幕上的点(度) 闪烁 + if(ui_show_point){ + OLED_DrawCircle(62,10,4); + OLED_ShowChar(61,16,'C',24,1); + ui_show_point = 0; + }else{ + ui_show_point = 1; + } + + } + + if(temp_body < BLE_TEMPERATURE_LIMIT_MIN){ + OLED_Clear(); + //OLED_ShowString(0+10,0+5,(u8 *)"LOW",32,1); + OLED_ShowChinese(3,5,0,32,1); //低 + OLED_ShowChinese(35,5,2,32,1);//温 + } + + if(temp_body > BLE_TEMPERATURE_LIMIT_MAX){ + OLED_Clear(); + //OLED_ShowString(0+5,0+5,(u8 *)"HIGH",32,1); + OLED_ShowChinese(3,5,9,32,1); //超 + OLED_ShowChinese(35,5,2,32,1);//温 + } + + OLED_Refresh(); + } + rt_thread_mdelay(10); + //} + } + rt_kprintf("ui_detect finish !!!\r\n"); + +} + +/** + * 显示正在测温 + */ +void app_show_detect_temperature(){ + rt_kprintf("UI->app_show_detect_temperature\r\n"); + //退出正在进行的动画线程 + if(tid_show_wait_temp){ + rt_thread_detach(tid_show_wait_temp); + tid_show_wait_temp = NULL; + } + + //退出正在进行测温的动画线程 + if(tid_show_detect_temp){ + rt_thread_detach(tid_show_detect_temp); + tid_show_detect_temp = NULL; + } + + tid_show_detect_temp = rt_thread_create("do_detect",app_temperature_ui_detect_entry,RT_NULL,1024 * 8,21,10); + if (tid_show_detect_temp) + rt_thread_startup(tid_show_detect_temp); +} + +void app_ui_show_bind(){ + rt_kprintf("UI->app_ui_show_bind \r\n"); + OLED_Clear(); + //OLED_ShowString(0+5,0+5,(u8 *)"BIND",32,1); + OLED_ShowChinese(3,3,3,32,1); //绑 + OLED_ShowChinese(35,3,4,32,1);//定 + OLED_Refresh(); +} +/** + * 显示接收到的温度 + */ +void app_ui_show_temperautre(){ + rt_kprintf("UI->app_ui_show_temperautre \r\n"); + uint16_t temp_body = last_body_temp; char str_temp[8]={0}; rt_sprintf(str_temp,"%d.%d \n",temp_body/100,temp_body/10%10); rt_kprintf("%s\r\n",str_temp); - //rt_kprintf("Temp:%d,Temp2:%d\r\n",Temp,Temp2); - //rt_kprintf("Temp:%d,Temp2:%d\r\n",Temp,Temp2); - - if(temp_body > BLE_TEMPERATURE_LIMIT_MIN && temp_body < BLE_TEMPERATURE_LIMIT_MAX){ OLED_Clear(); rt_memset(str_temp,0,sizeof(str_temp)); @@ -229,39 +515,107 @@ void timer_temp_run_callback(void *arg){ rt_memset(str_temp,0,sizeof(str_temp)); rt_sprintf(str_temp,"%d",temp_body/10%10);//小数点后一位 OLED_ShowString(40,0+10,(u8*)str_temp,32,1); - OLED_DrawCircle(58,5+6,4); - OLED_ShowChar(56,8+10,'C',24,1); + OLED_DrawCircle(60,10,4); + OLED_ShowChar(58,16,'C',24,1); } if(temp_body < BLE_TEMPERATURE_LIMIT_MIN){ OLED_Clear(); - OLED_ShowString(0+10,0+5,(u8 *)"LOW",32,1); + //OLED_ShowString(0+10,0+5,(u8 *)"LOW",32,1); + OLED_ShowChinese(3,5,0,32,1); //低 + OLED_ShowChinese(35,5,2,32,1);//温 } if(temp_body > BLE_TEMPERATURE_LIMIT_MAX){ OLED_Clear(); - OLED_ShowString(0+5,0+5,(u8 *)"HIGH",32,1); + //OLED_ShowString(0+5,0+5,(u8 *)"HIGH",32,1); + OLED_ShowChinese(3,5,9,32,1); //超 + OLED_ShowChinese(35,5,2,32,1);//温 } - lastTemp=Temp; OLED_Refresh(); } - -void app_enter_bind_mode(bool enter){ - if(enter){ - app_mode = APP_MODE_BIND; - rt_memset(ble_device_mac,0,sizeof(ble_device_mac)); - //收到的信号值 区域0 为越好 - ble_device_rssi = -100; - //清除找到绑定设备标志 - ble_found_bind_dev = 0; - OLED_Clear(); - OLED_ShowString(0+5,0+5,(u8 *)"BIND",32,1); - }else{ - app_mode = APP_MODE_NORMAL; - OLED_Clear(); - OLED_ShowString(0+20,0,(u8 *)"...",32,1); +void app_enter_ui(app_ui_mode mode){ + if(app_mode == mode){ + return; } - OLED_Refresh(); + app_mode = mode; + //等待其它页面线程退出 + rt_thread_mdelay(50); + if(tid_show_wait_temp){ + rt_thread_delete(tid_show_wait_temp); + tid_show_wait_temp = NULL; + } + //退出正在进行测温的动画线程 + if(tid_show_detect_temp){ + rt_thread_detach(tid_show_detect_temp); + tid_show_detect_temp = NULL; + } + + switch (mode) + { + case UI_BOX_BATTERY: + app_show_box_battery(); + //app_show_do_detect_temperature(); + break; + case UI_SHOW_DEVICE_INFO: + app_show_temperature_device_info(); + break; + case UI_IDLE: + case UI_WAIT_TEMPERATURE: + app_show_wait_temperature(); + break; + case UI_BOX_BIND: + app_ui_show_bind(); + break; + case UI_SHOW_TEMPERATURE: + //app_ui_show_temperautre(); + app_show_detect_temperature(); + break; + case UI_SHOW_MEMORY_INFO: + app_show_memory_detect_info(); + break; + default: + break; + } + + +} + +/** + * 保存最新的一次记录 + */ +void temperature_save_record(app_detect_record_t *record){ + EfErrCode result = EF_NO_ERR; + result = ef_set_env(BLE_TEMPERATURE_FLASH_RECORD_KEY, (char *)record); + result = ef_save_env(); + if (result == EF_NO_ERR) + { + rt_kprintf("temperature_save_record success !!!\r\n"); + }else{ + rt_kprintf("temperature_save_record failed !!!\r\n"); + } +} + +/** + * 读取最新的一次记录 + */ +void temperature_read_record(app_detect_record_t *record){ + rt_memset(record,0,sizeof(app_dev_info_t)); + /*获取easy flash存入的数据*/ + char *t = ef_get_env(BLE_TEMPERATURE_FLASH_RECORD_KEY); + if(t != NULL){ + rt_memcpy(&dev_info,t,sizeof(app_dev_info_t)); + }else{ + rt_kprintf("temperature_read_record error\r\n"); + } +} + +void box_show_ble_device_info(app_temperature_info_t *temperature_info){ + OLED_Clear(); + //OLED_ShowString(0+5,0+5,(u8 *)"BIND",32,1); + OLED_DrawCircle(10,20,10); + OLED_ShowString(22,0+5,(u8 *)"30%",24,1); + rt_thread_mdelay(1500); } @@ -277,6 +631,7 @@ void box_poweroff_timeout_callback(void *arg){ */ void box_bind_timeout_callback(void *arg){ rtos_stop_timer(&timer_bind); + rt_kprintf("box_bind callback\r\n"); if(ble_found_bind_dev){ bk_printf("BIND: %02x:%02x:%02x:%02x:%02x:%02x \r\n",ble_device_mac[0],ble_device_mac[1], ble_device_mac[2], ble_device_mac[3], ble_device_mac[4],ble_device_mac[5]); @@ -289,23 +644,29 @@ void box_bind_timeout_callback(void *arg){ if(result == EF_NO_ERR) { OLED_Clear(); - OLED_ShowString(0+15,0+5,(u8 *)"OK",32,1); + //OLED_ShowString(0+15,0+5,(u8 *)"OK",32,1); + OLED_ShowChinese(3,3,5,32,1); //成 + OLED_ShowChinese(35,3,6,32,1);//功 OLED_Refresh(); rt_thread_mdelay(1000); } } - app_enter_bind_mode(false); + //app_enter_bind_mode(false); + app_enter_ui(UI_IDLE); rt_kprintf("exit bind mode !!!\r\n"); } + + /* 长时间没有接收到温度广播 则回到等待页面 */ void timer_app_idle_callback(void *arg){ - if(app_mode == APP_MODE_BIND){ + if(app_mode == UI_BOX_BIND){ return; } - app_enter_bind_mode(false); + //app_enter_bind_mode(false); + app_enter_ui(UI_IDLE); rt_kprintf("back idle mode !!!\r\n"); } @@ -341,9 +702,15 @@ void timer_hall_detect_callback(void *arg){ rt_kprintf("enter bind !!!\r\n"); start_bind_detect = 0; hall_key_down_count = 0; - app_enter_bind_mode(true); + + rt_memset(ble_device_mac,0,sizeof(ble_device_mac)); + //收到的信号值 区域0 为越好 + ble_device_rssi = -100; + //清除找到绑定设备标志 + ble_found_bind_dev = 0; + //app_enter_bind_mode(true); //进入绑定模式 并启动超时退出 - + app_enter_ui(UI_BOX_BIND); rtos_start_timer(&timer_bind); } } @@ -395,31 +762,84 @@ void temperature_dev_config_init(){ } } + + +/****channel 1 - 7***/ +static void box_adc_detect_callback(int new_mv, void *user_data) +{ + static int cnt = 0; + box_batt_adc.user_data = (void*)new_mv; + if(cnt++ >= 20) + { + cnt = 0; + rt_kprintf("adc channel%d voltage:%d,%x\r\n",box_batt_adc.channel,new_mv,box_batt_adc.user_data); + int bat_volt = new_mv*2; + int batt_min = 3300; + int batt_max = 4200; + rt_kprintf("battery_calc --> bat_volt:%d\n",bat_volt); + if (bat_volt < batt_min) { + box_battery_percent=0; + } else if (bat_volt > batt_max) { + box_battery_percent= 100; + } else { + box_battery_percent= ((float)(bat_volt - batt_min) / (batt_max - batt_min)) * 100; + printf("battery_calc @@@ --> percent:%d\n",box_battery_percent); + } + if(box_battery_percent < 0){ + box_battery_percent = 0; + } + rt_kprintf("battery_calc --> percent:%d\n",box_battery_percent); + adc_obj_stop(&box_batt_adc); + + } + + +} + + +void box_init_power(){ + int channel; + channel = 7; + saradc_work_create(); + adc_obj_init(&box_batt_adc, box_adc_detect_callback, channel, &box_batt_adc); + adc_obj_start(&box_batt_adc); +} +static void charger_module_enable(UINT32 enable) +{ + sctrl_analog_set(SCTRL_ANALOG_CTRL4, (sctrl_analog_get(SCTRL_ANALOG_CTRL4) & ~(1 << 12)) | (!!enable << 12)); +} + + + + void temperature_init(void){ // 查询绑定设备 uint8_t test_device_mac[6] = {0xe5, 0xe6, 0xb6, 0x09, 0x28, 0x37}; rt_memcmp(dev_info.bind_mac, test_device_mac, sizeof(test_device_mac)); + + box_init_power(); //初始化GPIO gpio_init(); //初始化OLED显示屏 OLED_Init(); - //OLED_Clear(); - // OLED_ShowChar(32,0+10,'.',32,1); - // OLED_Refresh(); - // rt_thread_mdelay(100); - // OLED_Clear(); - // OLED_ShowChar(56,8+10,'C',24,1); - // OLED_Refresh(); - // bk_gpio_output(20,0); - // bk_gpio_output(21,0); - // oled_show_temp(370,4); // user_app_start(); - + rt_thread_mdelay(500); + while(1){ + if(box_battery_percent >= 0){ + break; + } + rt_thread_mdelay(20); + } + app_enter_ui(UI_BOX_BATTERY); + rt_thread_mdelay(2000); temperature_dev_config_init(); - app_enter_bind_mode(false); + //app_enter_bind_mode(false); + RingQueue_init(&ring_queue); + + //app_show_last_detect_info(); - - box_switch_init(); + app_enter_ui(UI_SHOW_MEMORY_INFO); + //app_enter_ui(UI_WAIT_TEMPERATURE); //初始化BLE belon_ble_active(); @@ -429,14 +849,54 @@ void temperature_init(void){ //启动BLE SLAVE 发广播提供APP 连接进行设置 belon_ble_init_adv(); //启动定时器 定时更新温度显示 - rtos_init_timer(&timer_detect, 1000, timer_temp_run_callback, NULL); + rtos_init_timer(&timer_detect, BLE_TEMPERATURE_DETECT_INTERVAL, timer_temp_run_callback, NULL); rtos_start_timer(&timer_detect); - //霍尔检测 100ms一次 中断不好使 先这样处理 - rtos_init_timer(&timer_hall_detect, 100, timer_hall_detect_callback, NULL); + + + //初始化HALL按键检测 + box_switch_init(); + //霍尔检测 50ms一次 中断不好使 先这样处理 + rtos_init_timer(&timer_hall_detect, BLE_TEMPERATURE_HALL_DETECT_INTERVAL, timer_hall_detect_callback, NULL); rtos_start_timer(&timer_hall_detect); rtos_init_timer(&timer_poweroff, BLE_TEMPERATURE_POWEROFF_TIMEOUT, box_poweroff_timeout_callback, NULL); rtos_init_timer(&timer_bind, BLE_TEMPERATURE_BIND_MODE_TIMEOUT, box_bind_timeout_callback, NULL); rtos_init_timer(&timer_idle, BLE_TEMPERATURE_IDLE_MODE_TIMEOUT, timer_app_idle_callback, NULL); + + charger_module_enable(0); + //sctrl_ctrl(CMD_SCTRL_USB_CHARGE_STOP, 0); + voice_player_mute(1); + voice_player_init(); + + //app_tcp_init(); + //app_tcp_connect(); + + //char m_data[128] ={0x12}; + //app_tcp_send(m_data,sizeof(m_data)); + + //voice_play(1); + //rt_thread_mdelay(1000); + //voice_play(2); + //rt_thread_mdelay(1000); + //voice_play(3); + //rt_thread_mdelay(1000); + /* + voice_play(4); + rt_thread_mdelay(1000); + voice_play(5); + rt_thread_mdelay(1000); + voice_play(6); + rt_thread_mdelay(1000); + voice_play(7); + rt_thread_mdelay(1000); + voice_play(8); + rt_thread_mdelay(1000); + voice_play(9); + rt_thread_mdelay(1000); + voice_play(10); + rt_thread_mdelay(1000); + voice_play(11); + rt_thread_mdelay(1000); + voice_play(0);*/ } diff --git a/beken_rtt_sdk_release-SDK_3.0.76/applications/app_temperature.h b/beken_rtt_sdk_release-SDK_3.0.76/applications/app_temperature.h index b43d33f0..33a15aba 100644 --- a/beken_rtt_sdk_release-SDK_3.0.76/applications/app_temperature.h +++ b/beken_rtt_sdk_release-SDK_3.0.76/applications/app_temperature.h @@ -20,27 +20,61 @@ #endif #include "kernel_mem.h" +/** + * 腋温计iT12 + */ #define BLE_TEMPERATURE_DEVICE_IT12 "iT12" +/** + * 耳温计iT19 + */ #define BLE_TEMPERATURE_DEVICE_IT19 "iT19" +/** + * 温度定时更新间隔时间 + */ +#define BLE_TEMPERATURE_DETECT_INTERVAL 1000 -#define BLE_TEMPERATURE_DETECT_INTERVAL 2000 - +/** + * 显示温度最小值 低于该值显示LOW + */ #define BLE_TEMPERATURE_LIMIT_MIN 3200 +/** + * 显示温度最大值 高于该值显示HIGH + */ #define BLE_TEMPERATURE_LIMIT_MAX 4200 +/** + * 霍尔按键检测GPIO + */ #define BLE_TEMPERATURE_HALL_DETECT_PIN 38 +/** + * 盒子电源控制GPIO + */ #define BLE_TEMPERATURE_BOX_POWER_CTR 39 - -#define BLE_TEMPERATURE_POWEROFF_TIMEOUT 5000 //ms +/** + * 检测到充电仓关闭后延迟多长时间关机 + */ +#define BLE_TEMPERATURE_POWEROFF_TIMEOUT 3000 //ms +/** + * 进入绑定模式 等待多长时间进行BLE 设备扫描 + */ #define BLE_TEMPERATURE_BIND_MODE_TIMEOUT 8000 //ms +/** + * 霍尔按键检测时间间隔 + */ +#define BLE_TEMPERATURE_HALL_DETECT_INTERVAL 50 //ms /** * 超时10s 都没有收到温度广播数据 回到等待测温页面 */ #define BLE_TEMPERATURE_IDLE_MODE_TIMEOUT 10000 //ms - +/** + * 配置文件easyflah KEY + */ #define BLE_TEMPERATURE_FLASH_CONFIG_KEY "dev_cfg" - +/** + * 测温记录 easyflah KEY + */ +#define BLE_TEMPERATURE_FLASH_RECORD_KEY "dev_record" typedef enum { @@ -50,21 +84,56 @@ typedef enum typedef struct { + uint8_t device_name[16]; + uint8_t device_mac[6]; uint16_t temperature_body; uint16_t temperature_obj; uint16_t temperature_env; uint16_t batt_val; + uint16_t device_state; }app_temperature_info_t; +/** + * BOX 参数 + */ typedef struct { uint8_t bind_mac[6]; uint16_t detect_interval; }app_dev_info_t; + + +typedef struct +{ + uint64_t timestamp; + uint16_t temperature_value; +}app_detect_record_t; + + +typedef enum +{ + UI_IDLE, + UI_WAIT_TEMPERATURE, + UI_BOX_BATTERY, + UI_BOX_BIND, + UI_SHOW_TEMPERATURE, + UI_SHOW_DEVICE_INFO, + UI_SHOW_MEMORY_INFO +}app_ui_mode; + void temperature_init(void); void temperature_adv_callback(recv_adv_t *r_ind); void app_enter_bind_mode(bool enter); +/** + * 保存最新的一次记录 + */ +void temperature_save_record(app_detect_record_t *record); +/** + * 读取最新的一次记录 + */ +void temperature_read_record(app_detect_record_t *record); +void app_enter_ui(app_ui_mode mode); #endif //_APP_TEMPERATURE_H_ diff --git a/beken_rtt_sdk_release-SDK_3.0.76/applications/app_voice_player.c b/beken_rtt_sdk_release-SDK_3.0.76/applications/app_voice_player.c new file mode 100644 index 00000000..1c6116e2 --- /dev/null +++ b/beken_rtt_sdk_release-SDK_3.0.76/applications/app_voice_player.c @@ -0,0 +1,999 @@ +#ifndef _APP_VOICE_PLAYER_H_ +#define _APP_VOICE_PLAYER_H_ + +#include +#include +#include "common.h" +#include "param_config.h" +#include "ble_pub.h" +#include "drv_oled.h" +#include +#include "app_temperature.h" +#ifdef PKG_USING_EASYFLASH +#include "easyflash.h" +#endif +#include "audio_device.h" +#include "opus.h" +#include +#include + +static const rt_uint8_t _romfs_root_1_wav[] = { + 0x00,0x0f,0x00,0x00,0xff,0xff,0x01,0x00,0xff,0xff,0x01,0x00,0xff,0xff,0x01,0x00,0xff,0xff,0x01,0x00,0xff,0xff,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf9,0xff,0x05,0x00,0xf2,0xff,0x08,0x00,0x0a,0x00,0x10,0x00,0x09,0x00,0x0f,0x00,0xfc,0xff,0xfd,0xff,0x0b,0x00,0x0f,0x00,0xfb,0xff,0x01,0x00,0xea,0xff,0xf6,0xff,0xfa,0xff,0xe5,0xff,0x01,0x00,0x04,0x00,0xfd,0xff,0x00,0x00,0x09,0x00,0xfc,0xff,0x05,0x00,0x14,0x00,0x00,0x00,0xf3,0xff,0x0b,0x00,0xe5,0xff,0xf1,0xff,0xf3,0xff,0xf0,0xff,0x07,0x00,0x02,0x00,0x00,0x00,0xf8,0xff,0x12,0x00,0x03,0x00,0x14,0x00,0x1c,0x00,0x0c,0x00,0x04,0x00,0x06,0x00,0x00,0x00,0xd3,0xff,0x0b,0x00,0xed,0xff,0xfd,0xff,0xfa,0xff,0xf6,0xff,0xf4,0xff,0x0d,0x00,0xf6,0xff,0x0f,0x00,0x11,0x00,0xfe,0xff,0x43,0x00,0xed,0xff,0x1f,0x00,0xee,0xff,0x13,0x00,0x02,0x00,0xf8,0xff,0xff,0xff,0xc9,0xff,0x10,0x00,0xdd,0xff,0x09,0x00,0xde,0xff,0xef,0xff,0xf7,0xff,0xed,0xff,0x0c,0x00,0xe2,0xff,0x13,0x00,0xda,0xff,0x0f,0x00,0x0a,0x00,0x07,0x00,0x02,0x00,0x02,0x00,0x1f,0x00,0x0d,0x00,0x10,0x00,0xfc,0xff,0x00,0x00,0x12,0x00,0xf9,0xff,0xdf,0xff,0x44,0x00,0xf4,0xff,0xf3,0xff,0xf1,0xff,0xec,0xff,0x0c,0x00,0xe2,0xff,0xf4,0xff,0xf5,0xff,0x08,0x00,0xea,0xff,0x03,0x00,0xf0,0xff,0xda,0xff,0xfe,0xff,0xc5,0xff,0xf8,0xff,0xa3,0xff,0x12,0x00,0x99,0xff,0xe9,0xff,0x80,0xff,0xe5,0xff,0xac,0xff,0xcf,0xff,0xc3,0xff,0xaf,0xff,0x2d,0x00,0xaf,0xff,0x97,0x00,0xd8,0xff,0xd6,0x00,0x10,0x00,0xeb,0x00,0x77,0x00,0xc5,0x00,0xb1,0x00,0xcb,0x00,0xb7,0x00,0xdc,0x00,0xd9,0x00,0x93,0x00,0xdb,0x00,0x0f,0x00,0xa1,0x00,0x87,0xff,0xf4,0xff,0x30,0xff,0x23,0xff,0xe3,0xfe,0x7f,0xfe,0xa4,0xfe,0x7e,0xfe,0x7d,0xfe,0xbb,0xfe,0x9c,0xfe,0xd1,0xfe,0x2a,0xff,0x40,0xff,0x9d,0xff,0x18,0x00,0x18,0x00,0xc5,0x00,0xcb,0x00,0xfc,0x00,0x2c,0x01,0xdb,0x00,0xe3,0x01,0x2b,0x01,0x2f,0x02,0x0d,0x02,0x36,0x02,0x38,0x02,0x2b,0x02,0xd5,0x01,0xeb,0x01,0xe4,0x00,0xa8,0x00,0xe6,0xff,0xb4,0xfe,0xf8,0xfd,0x10,0xfd,0xae,0xfb,0x36,0xfb,0xcc,0xfa,0x5a,0xfa,0xc1,0xfa,0xc4,0xfa,0x55,0xfc,0xdd,0xfc,0x78,0xfe,0xbd,0xff,0xcb,0x01,0xd0,0x02,0x7b,0x04,0xe7,0x04,0x30,0x06,0x64,0x06,0xf9,0x06,0x70,0x06,0xd0,0x06,0xc0,0x05,0xe1,0x05,0xe9,0x03,0xd8,0x03,0x24,0x02,0x6f,0x00,0x90,0xff,0xf8,0xfc,0x13,0xfc,0xd5,0xfa,0xa6,0xf8,0x06,0xf8,0xc1,0xf6,0xb8,0xf5,0x0e,0xf6,0xc6,0xf5,0xdc,0xf7,0xb0,0xf7,0x27,0xfb,0x6d,0xfc,0x32,0x00,0x98,0x01,0x41,0x05,0x7e,0x06,0x3d,0x09,0x8f,0x09,0x65,0x0b,0x55,0x0b,0xa9,0x0b,0x13,0x0b,0x6b,0x09,0xd5,0x08,0x86,0x06,0x59,0x04,0xbf,0x02,0xc6,0xff,0x36,0xfe,0x8c,0xfa,0x06,0xf8,0x2d,0xf8,0xd8,0xf4,0x6f,0xf5,0x74,0xf3,0xd6,0xf2,0x00,0xf3,0xf1,0xf3,0xaf,0xf4,0x0b,0xf8,0x39,0xf9,0xc2,0xfd,0xe2,0xff,0x58,0x04,0x06,0x06,0x40,0x09,0x85,0x0b,0x97,0x0c,0xee,0x0c,0xff,0x0d,0x66,0x0c,0x39,0x0d,0xa4,0x0a,0x94,0x0a,0x91,0x06,0x3c,0x06,0x0c,0x01,0x8b,0x00,0x1b,0xfd,0xef,0xf9,0x67,0xf9,0xc4,0xf5,0x56,0xf6,0xd1,0xf2,0xae,0xf3,0x58,0xf1,0x34,0xf4,0x8a,0xf2,0xdc,0xf6,0x5c,0xf6,0x84,0xfb,0xaf,0xfb,0x92,0x00,0xa5,0x02,0x11,0x07,0xfa,0x07,0x4b,0x0b,0x45,0x0b,0x7a,0x0d,0x9a,0x0c,0xd2,0x0c,0x96,0x0c,0x2d,0x0b,0x5b,0x09,0xdd,0x08,0x12,0x06,0xc9,0x03,0xa3,0x00,0xc3,0xfd,0x01,0xfd,0x35,0xf8,0x3d,0xf7,0x05,0xf3,0x9d,0xf3,0x69,0xef,0x7f,0xf0,0x3d,0xef,0x2b,0xf1,0x6e,0xf1,0xd9,0xf3,0x01,0xf7,0x05,0xfb,0xfe,0xfe,0xc6,0x04,0xed,0x06,0x45,0x0c,0xa3,0x0d,0xad,0x10,0x38,0x11,0x12,0x12,0xa4,0x11,0xd4,0x10,0x52,0x0e,0x0e,0x0d,0x2d,0x09,0x43,0x07,0x0c,0x02,0xfb,0xfe,0x0d,0xfb,0x84,0xf6,0x08,0xf4,0xe7,0xf1,0xb4,0xee,0x13,0xed,0x59,0xec,0x0f,0xeb,0xda,0xed,0x35,0xed,0xe7,0xf2,0xfd,0xf4,0x8c,0xfb,0xaa,0x00,0xa2,0x06,0xce,0x09,0x48,0x0f,0xd2,0x10,0xa2,0x14,0x67,0x14,0x93,0x15,0xda,0x13,0x4a,0x12,0xa2,0x0f,0x20,0x0d,0x32,0x0a,0x8f,0x04,0xa1,0x02,0xa5,0xfc,0xad,0xf9,0xb7,0xf3,0x5a,0xf0,0x57,0xef,0xdf,0xe9,0x91,0xeb,0x40,0xe9,0x84,0xe9,0x02,0xec,0xc5,0xec,0x2b,0xf3,0x47,0xf7,0xea,0xfc,0x26,0x04,0x24,0x09,0x00,0x0e,0x13,0x13,0x8d,0x13,0xde,0x17,0x3d,0x16,0xb8,0x16,0x0c,0x16,0x7f,0x10,0x73,0x10,0xc7,0x0b,0x67,0x07,0x33,0x04,0xf8,0xfd,0xe0,0xf9,0x83,0xf6,0xe8,0xee,0x63,0xef,0x3c,0xeb,0x02,0xe8,0xca,0xea,0x03,0xe6,0x3a,0xeb,0xec,0xea,0xba,0xef,0x03,0xf5,0x2e,0xfa,0x57,0x01,0x51,0x08,0x72,0x0c,0xec,0x12,0x7e,0x14,0xcb,0x16,0x42,0x19,0x8b,0x16,0x7a,0x18,0x07,0x13,0xa5,0x11,0xfa,0x0d,0xfa,0x09,0xcd,0x04,0x68,0x01,0x7c,0xf9,0x5f,0xf7,0xd3,0xee,0xdd,0xed,0xd1,0xea,0x1b,0xe7,0x41,0xe8,0x99,0xe6,0x13,0xe8,0xf0,0xea,0xe5,0xed,0xc3,0xf3,0x2f,0xfa,0x16,0x00,0x41,0x08,0xd4,0x0c,0x91,0x12,0xf9,0x15,0x75,0x17,0x94,0x19,0x9f,0x18,0x7d,0x17,0xb2,0x14,0xe6,0x10,0xa0,0x0d,0xc0,0x0a,0xd2,0x03,0x87,0x01,0x6f,0xfb,0x23,0xf5,0x95,0xf3,0x36,0xe9,0x52,0xee,0x8a,0xe4,0x36,0xe8,0x88,0xe6,0x39,0xe7,0x6a,0xea,0xf6,0xed,0xee,0xf1,0x79,0xfa,0xe4,0xfe,0xe9,0x07,0x3d,0x0e,0x22,0x11,0x46,0x18,0xad,0x16,0x2a,0x1b,0xda,0x18,0x5e,0x18,0x5c,0x15,0xff,0x11,0x6e,0x0c,0xc4,0x0c,0xc7,0x01,0x7e,0x03,0x9f,0xf9,0x77,0xf5,0x68,0xf2,0xd7,0xe8,0x23,0xee,0x6d,0xe4,0x03,0xe8,0xa4,0xe6,0x7a,0xe6,0x72,0xeb,0xed,0xeb,0x03,0xf4,0xcb,0xf8,0x5a,0x00,0x65,0x07,0x29,0x0e,0xa4,0x12,0xbc,0x17,0x3d,0x18,0x24,0x1b,0x25,0x19,0xfd,0x18,0x26,0x15,0x55,0x11,0x64,0x0d,0x85,0x09,0xf5,0x03,0x5e,0x00,0xbb,0xf9,0x42,0xf4,0x68,0xf0,0x05,0xe9,0xdf,0xeb,0x4b,0xe4,0x70,0xe7,0x28,0xe6,0x99,0xe7,0x4b,0xea,0xc6,0xee,0x12,0xf3,0x39,0xfc,0x89,0x01,0xca,0x0a,0xdc,0x0f,0xb6,0x15,0x0e,0x19,0x7f,0x19,0xa5,0x1c,0x7d,0x18,0x4e,0x1a,0xa5,0x12,0xc2,0x11,0x49,0x0b,0xf0,0x08,0xd6,0x01,0xfb,0xff,0x70,0xf6,0x79,0xf4,0x02,0xed,0x38,0xe8,0x9f,0xea,0x42,0xe2,0xcc,0xe7,0xd4,0xe4,0xda,0xe7,0x07,0xeb,0x07,0xef,0x29,0xf5,0x82,0xfd,0x90,0x02,0x53,0x0d,0x6d,0x10,0x2b,0x18,0x6c,0x1a,0x0d,0x1a,0xfe,0x1d,0x82,0x18,0x7f,0x1a,0x69,0x12,0x37,0x11,0xe0,0x09,0x14,0x08,0x38,0x00,0x3e,0xfe,0x24,0xf5,0x65,0xf1,0xa5,0xec,0xdb,0xe6,0xf3,0xe9,0x83,0xe2,0x53,0xe7,0x9d,0xe5,0xfe,0xe8,0x80,0xeb,0x5e,0xf1,0x32,0xf6,0xad,0xff,0x1b,0x05,0xa6,0x0e,0x33,0x12,0x90,0x19,0xde,0x19,0x62,0x1c,0xf1,0x1b,0x33,0x19,0x20,0x19,0x27,0x11,0x68,0x0f,0x6c,0x09,0x87,0x04,0x4b,0x00,0x95,0xfa,0x50,0xf3,0x72,0xf0,0xe3,0xe6,0x32,0xea,0xc3,0xe4,0x44,0xe4,0xd6,0xe6,0x6f,0xe5,0x69,0xea,0xb4,0xed,0x05,0xf3,0x1d,0xfb,0x3d,0x02,0xdf,0x08,0xf4,0x12,0x93,0x13,0xba,0x1c,0x79,0x1a,0xc1,0x1c,0x9e,0x1c,0x2b,0x17,0x3e,0x18,0x1b,0x0e,0x81,0x0c,0x50,0x07,0xa4,0x00,0x7a,0xfe,0xfb,0xf5,0x93,0xf1,0xa2,0xec,0xae,0xe5,0x17,0xea,0x60,0xe1,0x4e,0xe7,0x91,0xe5,0x4a,0xe7,0xce,0xed,0x5c,0xef,0x52,0xf8,0xc9,0xfe,0xf4,0x05,0xe6,0x0d,0xe7,0x14,0x5e,0x17,0x7b,0x1d,0x20,0x1a,0x91,0x1d,0x87,0x19,0xa4,0x17,0xf8,0x12,0xc0,0x0d,0x6b,0x08,0x09,0x05,0xca,0xfd,0x53,0xfb,0x9b,0xf2,0x8c,0xee,0x4b,0xe9,0x24,0xe5,0x43,0xe8,0xcf,0xe0,0x69,0xe7,0x31,0xe5,0x52,0xea,0x20,0xee,0xec,0xf3,0x66,0xfb,0xa8,0x03,0x6a,0x0a,0xeb,0x13,0x24,0x16,0x38,0x1d,0x7e,0x1c,0xce,0x1c,0x9c,0x1c,0x8d,0x17,0xd0,0x16,0x4b,0x0e,0x74,0x0b,0x7f,0x05,0x17,0x01,0x5d,0xfb,0x85,0xf7,0x0f,0xef,0xff,0xec,0x1d,0xe4,0x1b,0xe9,0xf4,0xe2,0xb8,0xe4,0xc1,0xe7,0xb6,0xe6,0x1e,0xee,0x26,0xf1,0x58,0xf8,0x81,0x00,0x7b,0x07,0x44,0x0f,0x61,0x16,0x94,0x18,0xdd,0x1e,0x7f,0x1a,0x06,0x1f,0x43,0x18,0x62,0x17,0x1b,0x12,0xfa,0x0a,0xa6,0x07,0x44,0x02,0x22,0xfc,0xd3,0xf9,0x3f,0xf0,0xca,0xef,0xe7,0xe6,0xd1,0xe6,0x9d,0xe8,0xf1,0xe0,0x12,0xeb,0xd3,0xe4,0xc7,0xed,0x1d,0xf0,0xf2,0xf5,0x25,0xfe,0x64,0x04,0x8d,0x0b,0xae,0x13,0x6b,0x16,0x13,0x1c,0x39,0x1b,0x65,0x1b,0x11,0x1b,0x5a,0x15,0xb1,0x14,0x91,0x0c,0x8a,0x08,0xf2,0x04,0xf7,0xfd,0x75,0xfb,0x79,0xf4,0xf2,0xef,0x14,0xeb,0x21,0xe6,0x03,0xeb,0x36,0xe2,0x7b,0xe8,0xcc,0xe7,0x44,0xe9,0x8e,0xf0,0xb2,0xf2,0x58,0xfb,0xc5,0x02,0x15,0x09,0x22,0x12,0xd9,0x15,0x4a,0x1a,0x00,0x1d,0x17,0x1b,0x70,0x1c,0x4e,0x16,0xf9,0x14,0x0f,0x0f,0x24,0x08,0x57,0x06,0xd9,0xfe,0x62,0xfb,0x97,0xf7,0x2d,0xef,0xd7,0xee,0x45,0xe5,0x56,0xeb,0xfa,0xe4,0xff,0xe6,0x73,0xea,0x71,0xe8,0xed,0xf0,0x0a,0xf2,0xf6,0xf8,0xa6,0x00,0x12,0x06,0x56,0x0d,0x9c,0x14,0x0c,0x16,0x35,0x1c,0x4f,0x18,0xfa,0x1b,0x24,0x17,0x62,0x15,0x4d,0x11,0xf0,0x0a,0xf9,0x06,0xb9,0x02,0x2c,0xfc,0x80,0xfa,0xb8,0xf1,0x3a,0xf0,0x16,0xe8,0x26,0xe9,0xd9,0xe8,0x21,0xe4,0x5a,0xeb,0xc3,0xe6,0xd8,0xef,0x7b,0xf0,0x59,0xf8,0x4c,0xfe,0xed,0x05,0xeb,0x0b,0x1c,0x14,0x9c,0x14,0xb9,0x1b,0x0d,0x18,0xa4,0x1a,0xd5,0x17,0xba,0x12,0x8a,0x12,0xbd,0x09,0xc6,0x06,0x0a,0x03,0x54,0xfc,0x1b,0xfb,0xa9,0xf3,0xf1,0xf0,0xe4,0xeb,0xee,0xe8,0x50,0xed,0xa6,0xe4,0x8a,0xed,0xc9,0xe8,0x6f,0xef,0x64,0xf1,0x55,0xf7,0x94,0xfc,0xaa,0x04,0x93,0x08,0x65,0x11,0x4e,0x13,0x2f,0x18,0xb8,0x18,0x13,0x18,0x29,0x18,0x15,0x14,0xdf,0x11,0x00,0x0c,0x99,0x07,0xbd,0x02,0x19,0xff,0x93,0xf9,0x58,0xf6,0xbf,0xef,0x0d,0xed,0x40,0xe7,0x66,0xed,0xa1,0xe4,0xda,0xec,0x21,0xe9,0xab,0xee,0x0a,0xf3,0x47,0xf6,0x79,0xfe,0x5a,0x03,0xca,0x09,0x97,0x10,0x48,0x14,0x46,0x17,0x3c,0x19,0x78,0x17,0xe9,0x17,0x79,0x13,0x9c,0x11,0x0e,0x0b,0x51,0x07,0xf6,0x01,0xf6,0xfe,0xb5,0xf9,0x57,0xf7,0xbd,0xef,0x00,0xf1,0x1f,0xe6,0x4a,0xef,0x24,0xe7,0x12,0xea,0xb2,0xed,0x4f,0xeb,0x4e,0xf4,0x96,0xf5,0xb2,0xfc,0x56,0x03,0x60,0x09,0x0c,0x0f,0xc0,0x15,0x90,0x15,0xaa,0x1a,0x4f,0x16,0x93,0x18,0x15,0x13,0xa7,0x11,0x16,0x0b,0x84,0x07,0xa5,0x01,0x7c,0xff,0x82,0xf8,0xfb,0xf7,0xb3,0xef,0x04,0xf0,0x8b,0xe7,0x9a,0xec,0x6e,0xea,0x8e,0xe7,0x5e,0xef,0x2c,0xeb,0xbe,0xf4,0x36,0xf5,0x7d,0xfd,0xed,0x01,0xd9,0x09,0x51,0x0e,0xcd,0x15,0xf6,0x14,0xfa,0x1a,0xe3,0x15,0xb6,0x18,0x19,0x13,0xd4,0x10,0x66,0x0c,0x6c,0x06,0x5a,0x02,0x71,0xfe,0x22,0xfa,0xd7,0xf6,0x2e,0xf1,0x71,0xf0,0xe1,0xe7,0x06,0xed,0x35,0xea,0xb6,0xe7,0xa8,0xef,0xd2,0xe9,0xa4,0xf4,0xb7,0xf4,0x73,0xfc,0x7e,0x02,0xf6,0x08,0x66,0x0d,0xaa,0x16,0x3f,0x14,0x28,0x1c,0x04,0x17,0xd8,0x17,0x1b,0x15,0xfd,0x0f,0x2e,0x0d,0xe8,0x06,0xe6,0x01,0x95,0xfe,0xfa,0xf9,0x93,0xf5,0x9d,0xf2,0x20,0xee,0xc1,0xe9,0x18,0xec,0x25,0xeb,0x6b,0xe8,0x48,0xef,0x1e,0xeb,0x25,0xf4,0x60,0xf5,0xd3,0xfb,0xad,0x02,0x6a,0x07,0x65,0x0e,0x05,0x14,0x22,0x15,0xd7,0x19,0x1e,0x16,0xad,0x17,0xc6,0x13,0x72,0x10,0x16,0x0d,0xb9,0x06,0x09,0x03,0x30,0xff,0xd5,0xf9,0x9d,0xf7,0x3d,0xf2,0x6b,0xef,0xa3,0xeb,0xd7,0xe9,0x22,0xef,0x8f,0xe6,0xc6,0xf0,0xea,0xec,0xde,0xf2,0x7b,0xf7,0x79,0xfa,0x1d,0x02,0x48,0x07,0xd9,0x0c,0xf3,0x12,0x89,0x14,0x07,0x18,0x99,0x16,0x22,0x16,0x73,0x14,0x1b,0x0f,0xb4,0x0d,0xe6,0x06,0xd1,0x02,0xc5,0xff,0x25,0xf9,0xcb,0xf7,0xc4,0xf1,0x82,0xef,0x37,0xeb,0x93,0xea,0xe7,0xed,0x44,0xe7,0x28,0xf1,0x3d,0xec,0x2a,0xf5,0xc0,0xf6,0x34,0xfc,0xd6,0x02,0x9b,0x08,0x07,0x0d,0x88,0x14,0x03,0x14,0xa5,0x18,0x05,0x17,0x2a,0x15,0xdd,0x14,0x7b,0x0d,0x57,0x0e,0x92,0x04,0xb3,0x03,0x22,0xfd,0xce,0xf9,0x22,0xf6,0xb7,0xf0,0x0f,0xf0,0x6b,0xe9,0x91,0xed,0x5b,0xeb,0x30,0xea,0x21,0xf1,0xa1,0xec,0xd2,0xf6,0xec,0xf6,0x62,0xfd,0x60,0x04,0xda,0x07,0xf4,0x0e,0x8a,0x13,0xf9,0x13,0x17,0x19,0x9a,0x14,0x0d,0x17,0x9c,0x11,0x37,0x0e,0x14,0x0d,0xf7,0x02,0xb9,0x03,0x9f,0xfb,0xb0,0xf8,0x1f,0xf6,0x2f,0xef,0xc2,0xef,0xc3,0xe8,0x05,0xee,0xfe,0xea,0x02,0xec,0x35,0xf1,0x3f,0xef,0xcc,0xf7,0x4f,0xf8,0xa1,0xff,0xe1,0x04,0xcc,0x08,0x7f,0x10,0x46,0x12,0x99,0x15,0xf1,0x16,0x6c,0x14,0xc0,0x16,0x42,0x0f,0x9b,0x10,0x4c,0x09,0x14,0x06,0xee,0x01,0x5b,0xfc,0xd4,0xf8,0x1b,0xf5,0x21,0xf0,0xcd,0xef,0xcd,0xe7,0x2d,0xf0,0x66,0xe8,0x30,0xed,0x89,0xef,0x95,0xed,0x21,0xf9,0x5d,0xf5,0x6b,0x01,0x08,0x04,0xbe,0x09,0xf1,0x10,0x3b,0x13,0x2e,0x15,0xae,0x18,0x58,0x14,0xf9,0x16,0x61,0x10,0xc5,0x0e,0x6c,0x0a,0x27,0x04,0x31,0x02,0xf9,0xfb,0xae,0xf7,0x06,0xf6,0xdc,0xee,0x1c,0xef,0xa8,0xea,0x3b,0xee,0xdc,0xea,0x63,0xee,0x44,0xee,0xad,0xf1,0xf9,0xf5,0xbc,0xf7,0x33,0x01,0x1d,0x02,0xbe,0x0c,0x6f,0x0d,0x40,0x15,0xf5,0x13,0x73,0x17,0xef,0x15,0x05,0x14,0xe7,0x11,0x4c,0x0f,0xd6,0x09,0x34,0x06,0x16,0x02,0x62,0xfa,0x96,0xfa,0xd3,0xf0,0xea,0xf0,0x15,0xeb,0x92,0xe9,0x3f,0xee,0x75,0xe7,0xc1,0xee,0x2a,0xed,0xf6,0xf1,0x45,0xf7,0xb9,0xf9,0xc3,0x02,0x51,0x06,0xf9,0x0c,0x57,0x12,0x19,0x14,0xb6,0x16,0xb0,0x17,0x8d,0x14,0xa6,0x14,0x4e,0x0f,0xc9,0x0c,0x5c,0x08,0x2e,0x02,0x4e,0x00,0x0a,0xf9,0xdf,0xf8,0x6b,0xf1,0x53,0xf1,0x85,0xec,0x20,0xeb,0x29,0xef,0xbf,0xe9,0x5f,0xf0,0xcb,0xee,0x1a,0xf4,0x0c,0xf7,0xc8,0xfb,0xa2,0x01,0xd8,0x06,0x51,0x0c,0xf4,0x10,0x55,0x13,0xef,0x15,0xbf,0x15,0x8f,0x14,0xcd,0x12,0x17,0x10,0x00,0x0c,0x76,0x08,0x7d,0x03,0xff,0xfe,0x67,0xfa,0x60,0xf8,0xd8,0xf0,0x9f,0xf2,0x79,0xea,0xf5,0xec,0xce,0xed,0x37,0xe8,0xa3,0xf2,0x3a,0xeb,0xcd,0xf6,0xb6,0xf5,0xe8,0xfc,0xfa,0x02,0x43,0x07,0xf4,0x0d,0xe8,0x11,0x27,0x14,0x4b,0x17,0xa8,0x15,0x32,0x15,0x9f,0x13,0x32,0x0e,0xd3,0x0d,0xbb,0x05,0xc8,0x03,0x00,0xfe,0x73,0xf9,0x70,0xf7,0x50,0xf0,0x55,0xf1,0xfa,0xe9,0xc1,0xee,0xf2,0xea,0x72,0xeb,0x91,0xf0,0xf4,0xec,0x10,0xf7,0xa9,0xf5,0x65,0xfe,0x0e,0x02,0x84,0x08,0x32,0x0d,0x6b,0x11,0xb1,0x14,0xf4,0x14,0x7b,0x16,0xac,0x13,0xd6,0x12,0xea,0x0e,0x64,0x0c,0xf3,0x06,0x9a,0x03,0x35,0xfd,0x36,0xfb,0x2d,0xf5,0x89,0xf1,0x37,0xf0,0xb8,0xe9,0x7f,0xf0,0x7c,0xe7,0xe8,0xee,0xa4,0xec,0xbb,0xf0,0x96,0xf5,0x2c,0xf8,0x45,0x00,0x9a,0x03,0x1f,0x0b,0xc8,0x0e,0x0c,0x13,0x89,0x15,0xac,0x15,0x83,0x16,0x90,0x13,0x2c,0x12,0x88,0x0d,0x92,0x0a,0x63,0x05,0x30,0x00,0x51,0xfc,0x62,0xf7,0x5a,0xf3,0x43,0xf0,0x88,0xed,0x0a,0xea,0xb8,0xef,0xc3,0xe6,0x4c,0xf1,0x2f,0xec,0x3f,0xf3,0xf3,0xf6,0x59,0xfa,0x4d,0x02,0x66,0x06,0x35,0x0c,0x1c,0x11,0x7d,0x14,0x98,0x15,0x44,0x17,0x88,0x14,0x75,0x14,0x74,0x0f,0xc4,0x0c,0xff,0x08,0xdf,0x01,0x68,0x00,0x60,0xf8,0xc5,0xf6,0x2b,0xf2,0xcd,0xee,0x8d,0xed,0x6d,0xea,0xb6,0xee,0xf0,0xe9,0x0b,0xf1,0x2c,0xef,0x34,0xf5,0x9a,0xf8,0x59,0xfd,0x52,0x03,0x17,0x08,0x39,0x0d,0x49,0x11,0xca,0x14,0xa8,0x14,0xa4,0x16,0xeb,0x13,0x35,0x12,0x6e,0x0f,0x9b,0x0a,0xf4,0x07,0x59,0x01,0x7c,0xfe,0x27,0xf8,0x5a,0xf6,0xfe,0xef,0xbc,0xf1,0xc5,0xe9,0xf9,0xee,0xb7,0xec,0x88,0xeb,0xaa,0xf3,0xfa,0xed,0x3d,0xf9,0x6e,0xf8,0x2f,0xff,0x89,0x04,0x48,0x07,0xaa,0x0d,0x3f,0x10,0x4e,0x12,0x8c,0x14,0xa4,0x12,0xd7,0x13,0xaa,0x0f,0x5b,0x0e,0x8d,0x0a,0xbd,0x06,0xec,0x01,0xb5,0xfe,0x99,0xf8,0x3c,0xf7,0x11,0xf1,0x49,0xf1,0xc6,0xea,0xe5,0xef,0x15,0xeb,0xa2,0xee,0x3f,0xf1,0x58,0xf0,0x7a,0xfa,0xc5,0xf7,0x60,0x03,0xa3,0x03,0x13,0x0b,0xfc,0x0e,0x19,0x11,0x11,0x14,0xe9,0x13,0x48,0x13,0xc9,0x11,0xef,0x0d,0xb1,0x0c,0xac,0x06,0x33,0x04,0x81,0xfe,0x50,0xfa,0xbc,0xf7,0xfa,0xf2,0x68,0xf1,0x9c,0xf0,0xa0,0xea,0xc3,0xf3,0xdb,0xeb,0x52,0xf3,0x6c,0xf4,0x34,0xf4,0xd7,0xfd,0x2d,0xfb,0x82,0x04,0xcf,0x05,0x06,0x0a,0xda,0x0d,0x4c,0x0f,0xa4,0x0f,0xe2,0x11,0xe3,0x0e,0xa2,0x0e,0xfc,0x0c,0xda,0x08,0x0f,0x08,0x71,0x02,0xf2,0xff,0xcc,0xfb,0xfe,0xf8,0x75,0xf5,0x29,0xf4,0x2c,0xf1,0xfa,0xee,0x09,0xf3,0x07,0xed,0xd0,0xf4,0xff,0xf0,0x88,0xf7,0xb8,0xf9,0xac,0xfc,0x2c,0x03,0x18,0x05,0x12,0x0a,0x6a,0x0e,0x00,0x0e,0x51,0x12,0x0d,0x10,0xb2,0x0f,0xa2,0x0e,0x75,0x0b,0x1a,0x0a,0xa7,0x05,0x15,0x02,0xb6,0xff,0x20,0xfa,0x6e,0xf9,0xdb,0xf4,0x87,0xf2,0xb7,0xf2,0x68,0xed,0x88,0xf4,0xa7,0xed,0xda,0xf4,0xe8,0xf2,0xaf,0xf8,0x2d,0xfa,0xf2,0xff,0x1d,0x02,0xfe,0x07,0x6d,0x09,0x8f,0x0e,0x2a,0x0e,0x18,0x10,0xed,0x10,0x31,0x0c,0x07,0x0f,0xa4,0x08,0xf3,0x08,0xaa,0x04,0x94,0x00,0xf8,0xfe,0x77,0xfa,0x4b,0xf7,0xb4,0xf7,0x51,0xf2,0xa3,0xf3,0x54,0xf1,0xbf,0xf3,0x7a,0xef,0xf6,0xf5,0x3c,0xf2,0xdf,0xf9,0x76,0xfa,0xa6,0xfd,0x33,0x05,0x6b,0x03,0x98,0x0c,0xa8,0x0b,0x84,0x0e,0x3a,0x11,0xbc,0x0d,0xe0,0x0f,0x4d,0x0d,0xc0,0x08,0x13,0x0b,0xc7,0x01,0x2b,0x03,0x2f,0xfd,0x18,0xfa,0x62,0xf9,0x19,0xf3,0xdf,0xf5,0xbb,0xef,0x93,0xf3,0x74,0xf2,0xdd,0xf1,0xe0,0xf4,0x4f,0xf5,0x79,0xf9,0xc0,0xfb,0xe6,0xff,0x0f,0x03,0x5c,0x07,0x6b,0x09,0x9b,0x0d,0xad,0x0c,0xe0,0x0f,0xb8,0x0c,0xed,0x0d,0x0f,0x0a,0x40,0x0a,0xb7,0x05,0x84,0x03,0x04,0x01,0x30,0xfc,0x0b,0xfb,0xf9,0xf8,0xec,0xf4,0xa4,0xf6,0x70,0xf2,0xc4,0xf4,0xf7,0xf6,0xa6,0xf1,0x9c,0xf9,0x30,0xf4,0x20,0xfc,0x70,0xfc,0x76,0xff,0x83,0x03,0xc6,0x05,0x91,0x08,0xb2,0x0b,0xee,0x0b,0x60,0x0d,0x5a,0x0d,0x16,0x0b,0xf5,0x0a,0xe9,0x07,0xb7,0x05,0xb6,0x03,0xbe,0xfe,0xd0,0xfe,0x65,0xf9,0xcb,0xf9,0xb6,0xf6,0xcd,0xf5,0x89,0xf4,0x2b,0xf4,0xbb,0xf6,0x2a,0xf4,0xda,0xf7,0x1e,0xf8,0x41,0xfb,0x5b,0xfc,0x17,0x01,0x7b,0x01,0x23,0x07,0x2e,0x07,0xf1,0x0a,0xd9,0x0a,0x2d,0x0c,0xc3,0x0a,0x94,0x0a,0x3e,0x09,0x83,0x06,0xc8,0x05,0xee,0x01,0xff,0x00,0xf9,0xfc,0x18,0xfd,0x35,0xfa,0xb3,0xf9,0xa7,0xf8,0xb4,0xf8,0xe4,0xf6,0x6c,0xf7,0xa0,0xf7,0x56,0xf6,0x40,0xf9,0x4c,0xf9,0x7e,0xfb,0x9e,0xfd,0xfd,0xfd,0x87,0x03,0xa9,0x02,0x04,0x07,0x14,0x09,0x92,0x08,0x91,0x0c,0x7a,0x09,0xc1,0x0a,0x09,0x09,0x5f,0x06,0x97,0x05,0x3d,0x02,0x5f,0x00,0x40,0xfe,0xd0,0xfb,0x9b,0xfa,0xbc,0xf9,0xb9,0xf7,0x0b,0xf8,0x07,0xf5,0x6d,0xf7,0x50,0xf8,0x12,0xf6,0xb6,0xfb,0x30,0xf8,0xbe,0xfd,0xe3,0xfe,0x4e,0xff,0x56,0x05,0x8f,0x04,0x77,0x08,0x18,0x0a,0xed,0x08,0xa8,0x0b,0x5e,0x08,0xb9,0x07,0xd5,0x06,0x8c,0x02,0x81,0x02,0x83,0xff,0x22,0xfe,0x37,0xfd,0xc3,0xfb,0xb7,0xfb,0x37,0xfb,0x07,0xfb,0x9c,0xfb,0x46,0xfb,0x7a,0xfc,0x1d,0xfc,0x68,0xfc,0x2d,0xfc,0x65,0xfc,0x9e,0xfb,0xc7,0xfd,0xf0,0xfb,0xa2,0xff,0x3c,0xff,0x35,0x00,0x17,0x04,0x13,0x02,0x78,0x06,0x21,0x06,0x52,0x06,0x8b,0x08,0xde,0x05,0x68,0x07,0x23,0x06,0xd3,0x03,0x19,0x05,0x31,0x01,0xa6,0x01,0xf9,0xff,0x5e,0xfd,0xa0,0xfd,0xa2,0xfa,0xc3,0xf9,0xfe,0xf8,0x07,0xf7,0xd0,0xf7,0xbb,0xf7,0x0c,0xf8,0xd0,0xf9,0xc9,0xfa,0x13,0xfc,0x4b,0xff,0x96,0xff,0xfe,0x03,0x3a,0x04,0x6f,0x06,0x1a,0x08,0xcf,0x06,0xaf,0x08,0x00,0x06,0xd3,0x04,0x03,0x04,0x23,0x01,0xa9,0x00,0x87,0xff,0xe7,0xfd,0x22,0xff,0x9c,0xfd,0xe1,0xfe,0x3a,0xff,0xb4,0xfe,0x99,0x00,0xb9,0xff,0xbb,0x00,0x12,0x01,0x54,0x00,0x58,0x01,0x74,0x00,0xb9,0x00,0x2d,0x01,0x51,0x00,0xa6,0x00,0xb5,0x00,0xb6,0xff,0x32,0x00,0x0a,0xff,0x5e,0xfe,0x04,0xfe,0x28,0xfc,0x34,0xfc,0xbe,0xfa,0x5f,0xf9,0x8d,0xfb,0xc2,0xf8,0xca,0xfb,0x32,0xfb,0x67,0xfb,0xcf,0xfe,0x08,0xfd,0xb4,0x01,0x5e,0x01,0x77,0x03,0xf2,0x05,0x7d,0x05,0x25,0x07,0xf0,0x06,0xc6,0x05,0x95,0x06,0x85,0x04,0x32,0x04,0xde,0x02,0xf0,0x00,0xe3,0x00,0x07,0xff,0xf5,0xfe,0xb4,0xfe,0xf9,0xfd,0x42,0xfe,0x6d,0xfe,0x73,0xfd,0x5d,0xfe,0x0c,0xfd,0x2e,0xfd,0x46,0xfd,0xe4,0xfb,0xa4,0xfd,0x1b,0xfc,0xc6,0xfc,0x1d,0xfe,0x83,0xfc,0xa7,0xff,0x48,0xff,0x7c,0x00,0xa9,0x02,0x18,0x02,0x1b,0x04,0xca,0x03,0xa8,0x03,0x3b,0x04,0xc9,0x02,0xbd,0x02,0x08,0x02,0x6e,0x00,0xd9,0x00,0x03,0xff,0x0b,0xff,0xe7,0xfe,0x10,0xfe,0xc3,0xfe,0x7b,0xfe,0xa1,0xfe,0x85,0xff,0x1c,0xff,0xd5,0xff,0x63,0x00,0xbd,0xff,0xee,0x00,0x3c,0x00,0x74,0x00,0xb6,0x00,0xf1,0xff,0x5c,0x00,0xc9,0xff,0x7b,0xff,0xe3,0xff,0xf1,0xfe,0x81,0xff,0x21,0xff,0x01,0xff,0x82,0xff,0x47,0xff,0xde,0xff,0xcb,0xff,0x4b,0x00,0x5e,0x00,0x99,0x00,0x9c,0x00,0xbc,0x00,0xa7,0x00,0xc6,0x00,0x9c,0x00,0x93,0x00,0x98,0x00,0x2f,0x00,0x52,0x00,0x13,0x00,0xe2,0xff,0xed,0xff,0xa0,0xff,0xc0,0xff,0xc3,0xff,0x9f,0xff,0xd4,0xff,0xb1,0xff, + }; + + static const rt_uint8_t _romfs_root_10_wav[] = { + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x01, 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, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 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, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x01, 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, 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, 0x01, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 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, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFD, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x02, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFD, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, + 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFC, 0xFF, 0x01, 0x00, 0xFD, 0xFF, 0xFE, 0xFF, 0xFD, 0xFF, 0xF7, 0xFF, 0xFD, 0xFF, 0xFA, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, + 0xFD, 0xFF, 0xFD, 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, 0xFC, 0xFF, 0xFE, 0xFF, 0x00, 0x00, 0xF9, 0xFF, 0xFA, 0xFF, 0xFD, 0xFF, 0xFB, 0xFF, 0x00, 0x00, 0xFB, 0xFF, 0xFB, 0xFF, 0xFB, 0xFF, 0xFC, 0xFF, 0xF7, 0xFF, 0xF4, 0xFF, 0xF8, 0xFF, 0xF6, 0xFF, + 0xF7, 0xFF, 0xF6, 0xFF, 0xF4, 0xFF, 0xF2, 0xFF, 0xEC, 0xFF, 0xEC, 0xFF, 0xEE, 0xFF, 0xEF, 0xFF, 0xF0, 0xFF, 0xF1, 0xFF, 0xF4, 0xFF, 0xF2, 0xFF, 0xF1, 0xFF, 0xF1, 0xFF, 0xF3, 0xFF, 0xEF, 0xFF, 0xF1, 0xFF, 0xF3, 0xFF, 0xEE, 0xFF, 0xF2, 0xFF, + 0xF0, 0xFF, 0xEF, 0xFF, 0xF0, 0xFF, 0xF0, 0xFF, 0xF8, 0xFF, 0xF9, 0xFF, 0xF6, 0xFF, 0xF6, 0xFF, 0xFD, 0xFF, 0xFC, 0xFF, 0xFE, 0xFF, 0x01, 0x00, 0xFF, 0xFF, 0x02, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x00, 0x06, 0x00, + 0x07, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0xFF, 0xFF, 0x03, 0x00, 0x01, 0x00, 0x03, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00, 0x00, 0x08, 0x00, 0x08, 0x00, 0x06, 0x00, 0x0B, 0x00, 0x03, 0x00, 0x0E, 0x00, 0x0D, 0x00, 0x01, 0x00, 0x0B, 0x00, + 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x0E, 0x00, 0x1A, 0x00, 0x18, 0x00, 0x21, 0x00, 0x1A, 0x00, 0x1D, 0x00, 0x20, 0x00, 0x13, 0x00, 0x1E, 0x00, 0x0D, 0x00, 0x08, 0x00, 0x10, 0x00, 0x0B, 0x00, 0x03, 0x00, 0x09, 0x00, 0x11, 0x00, 0x00, 0x00, + 0x10, 0x00, 0x17, 0x00, 0x12, 0x00, 0x18, 0x00, 0x16, 0x00, 0x16, 0x00, 0x08, 0x00, 0x21, 0x00, 0x0B, 0x00, 0x0D, 0x00, 0x0E, 0x00, 0x05, 0x00, 0xFC, 0xFF, 0xFB, 0xFF, 0x1D, 0x00, 0x04, 0x00, 0xFA, 0xFF, 0x1D, 0x00, 0x0B, 0x00, 0xFB, 0xFF, + 0x09, 0x00, 0xFF, 0xFF, 0x05, 0x00, 0xFB, 0xFF, 0x02, 0x00, 0xF0, 0xFF, 0xFE, 0xFF, 0xF5, 0xFF, 0xFC, 0xFF, 0xFB, 0xFF, 0xF0, 0xFF, 0x12, 0x00, 0x00, 0x00, 0x0A, + 0x00, 0x0E, 0x00, 0xF9, 0xFF, 0x00, 0x00, 0xFA, 0xFF, 0xF7, 0xFF, 0x11, 0x00, 0xE5, 0xFF, 0xF9, 0xFF, 0xFD, 0xFF, 0xEF, 0xFF, 0x19, 0x00, 0x06, 0x00, 0x0C, 0x00, 0x00, 0x00, 0xF1, 0xFF, 0x16, 0x00, 0xF5, 0xFF, 0xEC, 0xFF, 0xEF, 0xFF, 0xFD, + 0xFF, 0xE8, 0xFF, 0xE0, 0xFF, 0x00, 0x00, 0xE4, 0xFF, 0x02, 0x00, 0xF4, 0xFF, 0x08, 0x00, 0x04, 0x00, 0xEA, 0xFF, 0x2A, 0x00, 0xF5, 0xFF, 0xAD, 0xFF, 0x37, 0x00, 0xEA, 0xFF, 0xE8, 0xFF, 0x0C, 0x00, 0xFA, 0xFF, 0xEA, 0xFF, 0xEA, 0xFF, 0x38, + 0x00, 0xC9, 0xFF, 0x56, 0x00, 0x00, 0x00, 0xF9, 0xFF, 0x2D, 0x00, 0x10, 0x00, 0x1D, 0x00, 0xE4, 0xFF, 0xCE, 0xFF, 0x50, 0x00, 0xF0, 0xFF, 0xC0, 0xFF, 0x4D, 0x00, 0xA7, 0xFF, 0x30, 0x00, 0xF7, 0xFF, 0xFF, 0xFF, 0x4E, 0x00, 0xFC, 0xFF, 0x3E, + 0x00, 0xA9, 0xFF, 0xF9, 0xFF, 0x46, 0x00, 0xDD, 0xFF, 0x01, 0x00, 0x2D, 0x00, 0xC7, 0xFF, 0xF9, 0xFF, 0x62, 0x00, 0x86, 0xFF, 0x73, 0x00, 0x36, 0x00, 0x8A, 0xFF, 0xB1, 0x00, 0x08, 0x00, 0xC9, 0xFF, 0x3D, 0x00, 0x0A, + 0x00, 0x13, 0x00, 0x1A, 0x00, 0xC0, 0xFF, 0x42, 0x00, 0x32, 0x00, 0x9E, 0xFF, 0x4E, 0x00, 0x44, 0x00, 0x9C, 0xFF, 0x40, 0x00, 0x3D, 0x00, 0xC6, 0xFF, 0x43, 0x00, 0xE0, 0xFF, 0x6D, 0x00, 0xBF, 0xFF, 0xB0, 0xFF, 0x83, 0x00, 0xE8, 0xFF, 0xE5, + 0xFF, 0x01, 0x00, 0x11, 0x00, 0x0E, 0x00, 0xCE, 0xFF, 0x90, 0x00, 0x3A, 0xFF, 0xCB, 0xFF, 0xE2, 0x00, 0x77, 0xFF, 0xA3, 0xFF, 0x2D, 0x00, 0xE0, 0xFF, 0xA2, 0xFF, 0x78, 0x00, 0xCF, 0xFF, 0x71, 0xFF, 0x59, 0x00, 0x45, 0x00, 0xA4, 0xFF, 0x57, + 0x00, 0x1A, 0x00, 0x5F, 0xFF, 0x9B, 0x00, 0x37, 0x00, 0x0F, 0xFF, 0xF6, 0xFF, 0x7A, 0x00, 0x9F, 0xFF, 0x16, 0xFF, 0xE4, 0x01, 0x67, 0xFE, 0x5F, 0xFF, 0xB7, 0x01, 0xC4, 0xFE, 0xE2, 0xFF, 0xF5, 0x00, 0xA3, 0xFF, 0xBF, 0xFF, 0xBF, 0xFF, 0x72, + 0x00, 0xC1, 0xFF, 0x53, 0xFF, 0xC0, 0x00, 0xE8, 0xFE, 0x6C, 0x00, 0x06, 0x00, 0xE6, 0xFF, 0xF2, 0xFF, 0x59, 0x00, 0x62, 0xFF, 0xB6, 0x00, 0x61, 0xFF, 0xDE, 0xFF, 0x1D, 0x01, 0xE9, 0xFF, 0xDD, 0xFD, 0x90, 0x01, 0x7D, 0x00, 0x04, 0xFE, 0x12, + 0x01, 0xB1, 0xFF, 0x42, 0x00, 0x09, 0xFF, 0xC3, 0x00, 0x6B, 0xFF, 0x65, 0x00, 0x3C, 0x00, 0x5B, 0xFF, 0xAD, 0xFF, 0x44, 0x01, 0x11, 0xFF, 0xED, 0xFF, 0xC7, 0xFF, 0xDA, 0x00, 0xC7, 0xFF, 0x12, 0xFE, 0x45, 0x01, 0x0C, 0x00, 0x60, 0x00, 0x50, + 0xFF, 0xFA, 0xFF, 0x02, 0x02, 0x69, 0xFE, 0x59, 0xFE, 0x9D, 0x02, 0x78, 0xFF, 0x97, 0xFF, 0x71, 0xFF, 0x7C, 0x01, 0x70, 0xFF, 0x66, 0x00, 0xC4, 0x00, 0x3F, 0xFD, 0x1D, 0x02, 0xC8, 0xFF, 0x58, 0x00, 0xF6, 0xFE, 0x8B, 0x00, 0xB9, 0x00, 0xB8, + 0xFD, 0x2D, 0x02, 0x99, 0xFF, 0x9A, 0xFE, 0x16, 0x02, 0x9B, 0xFF, 0x63, 0x00, 0x43, 0x00, 0xFA, 0xFE, 0x8B, 0x01, 0x02, 0x00, 0x6B, 0xFE, 0x79, 0x00, 0xB8, 0xFF, 0x28, 0x01, 0x9D, 0xFE, 0xFF, 0x00, 0xA6, 0x01, 0xC2, 0xFC, 0x49, 0x03, 0xEA, + 0xFD, 0x1B, 0x01, 0x0A, + 0xFF, 0xA2, 0x00, 0xEC, 0x00, 0x9C, 0xFE, 0x73, 0x00, 0xAD, 0x00, 0x7E, 0xFE, 0xE2, 0x00, 0x63, 0x00, 0x4C, 0xFE, 0x29, 0x03, 0x57, 0xFF, 0x13, 0xFE, 0x5A, 0x01, 0x58, 0x00, 0x6E, 0xFF, 0xF8, 0xFE, 0x82, 0x01, 0x90, 0xFF, 0xF5, 0xFE, 0xBB, + 0x02, 0x2B, 0xFD, 0x72, 0x02, 0xF0, 0xFD, 0xFA, 0xFF, 0xC2, 0x02, 0xD8, 0xFD, 0xB1, 0xFE, 0x41, 0x03, 0x40, 0xFD, 0x65, 0xFD, 0xF1, 0x07, 0x1C, 0xFB, 0x91, 0xFC, 0x8D, 0x06, 0x48, 0xFC, 0x2E, 0x01, 0x1F, 0xFF, 0x9A, 0x02, 0xAB, 0xFF, 0x3B, + 0xFA, 0xD0, 0x06, 0x2C, 0xFF, 0x88, 0xFB, 0x4A, 0xFF, 0xD3, 0x07, 0xC4, 0xF7, 0x99, 0x02, 0xE8, 0x05, 0x46, 0xF6, 0x1A, 0x07, 0x5A, 0xFD, 0x3C, 0xFF, 0xF9, 0x01, 0xB6, 0xFD, 0xA4, 0x02, 0x37, 0xFD, 0xC4, 0x01, 0x17, 0x00, 0xEE, 0xFB, 0x78, + 0x06, 0x42, 0xFA, 0xDB, 0x04, 0x4B, 0xFE, 0xA4, 0xFC, 0xBA, 0x05, 0x2F, 0xFD, 0x54, 0xFF, 0xAF, 0x00, 0xB6, 0xFF, 0xB1, 0xFF, 0x69, 0x00, 0x70, 0xFE, 0xB5, 0x03, 0x15, 0xFC, 0x4C, 0x03, 0xFF, 0xFF, 0x93, 0xFC, 0x07, 0x03, 0xEF, 0x00, 0xA6, + 0xFB, 0x22, 0x00, 0xC5, 0x07, 0xA7, 0xF5, 0x02, 0x04, 0xF3, 0x05, 0xDC, 0xF5, 0x21, 0x07, 0x38, 0xFD, 0x7B, 0xFF, 0xC5, 0x01, 0xCA, 0x01, 0x85, 0xFC, 0x15, 0x03, 0x4A, 0xFB, 0xEF, 0x01, 0x4F, 0x02, 0xF4, 0xFD, 0x9F, 0xFF, 0xBF, 0xFF, 0x9E, + 0x04, 0x12, 0xF8, 0x32, 0x08, 0x33, 0xFC, 0x8B, 0x00, 0x95, 0xFD, 0xEF, 0x02, 0x40, 0xFF, 0xC4, 0xFE, 0xDE, 0x02, 0xDC, 0xFB, 0xB0, 0x01, 0xC1, 0x02, 0xBD, 0xFA, 0x20, 0x06, 0x59, 0xFE, 0x72, 0xF8, 0xF8, 0x0A, + 0xB3, 0xFC, 0xD5, 0xFB, 0xA0, 0x01, 0xE1, 0x05, 0xD3, 0xF7, 0x7D, 0x02, 0x4C, 0xFF, 0xEB, 0x04, 0xF6, 0xF9, 0x41, 0x02, 0x6E, 0x04, 0xC6, 0xF9, 0x25, 0x02, 0xDE, 0x01, 0x0E, 0xFD, 0xDC, 0xFF, 0x0E, 0x03, 0x62, 0xFE, 0x9C, 0xFC, 0x09, 0x06, + 0x8E, 0xFC, 0x5E, 0xFE, 0x10, 0x07, 0x99, 0xF5, 0x47, 0x0A, + 0x11, 0xF8, 0x32, 0x08, 0x55, 0xF7, 0xD3, 0x04, 0xB0, 0x00, 0xC9, 0xF9, 0xDE, 0x07, 0xF6, 0xF8, 0x5A, 0x05, 0xF9, 0xFF, 0x8F, 0xFD, 0xB2, 0xFE, 0xC3, 0x03, 0x8D, 0xFF, 0xF9, 0xFD, 0x67, 0x02, 0xE6, 0xFA, 0xCA, 0x04, 0x08, 0x00, 0x45, 0xFA, + 0x9C, 0x09, 0x05, 0xF8, 0x57, 0x01, 0x01, 0x06, 0xFE, 0xF6, 0x1E, 0x05, 0x8D, 0x01, 0xCF, 0xFC, 0x8C, 0xFE, 0x77, 0x07, 0xF1, 0xF9, 0x66, 0xFC, 0x65, 0x08, 0x43, 0xFB, 0x06, 0xFE, 0xA4, 0x03, 0xC1, 0x03, 0x18, 0xF6, 0xDB, 0x07, 0x5A, 0x01, + 0xD2, 0xF6, 0xAF, 0x09, 0xFA, 0xF6, 0xC1, 0x07, 0xC0, 0xFE, 0x79, 0xF8, 0xCD, 0x08, 0x72, 0xFC, 0xDF, 0x01, 0xAB, 0xFB, 0x16, 0x07, 0x33, 0xFB, 0xA1, 0xFC, 0x69, 0x08, 0xCA, 0xFA, 0x28, 0xFF, 0xFD, 0x02, 0x88, 0xFE, 0xED, 0x00, 0x37, 0xFC, + 0x01, 0x07, 0xA7, 0xF8, 0xE1, 0x03, 0x65, 0x01, 0xE1, 0xFB, 0x9A, 0x03, 0x42, 0x01, 0x1E, 0xF8, 0xBE, 0x08, 0x24, 0xFC, 0xEC, 0xFF, 0xC3, 0xFF, 0x7A, 0x02, 0x0B, 0xFA, 0x52, 0x08, 0xD8, 0xF9, 0x76, 0x01, 0x6D, 0x03, 0x8C, 0xF8, 0x7D, 0x0C, + 0x97, 0xED, 0x6E, 0x14, 0xF3, 0xF1, 0xCF, 0x00, 0x29, 0x08, 0xCE, 0xF9, 0xF0, 0xFD, 0xE9, 0x05, 0xEF, 0xFC, 0xF4, 0x02, 0xC7, 0xF9, 0x84, 0x08, 0x70, 0xFA, 0x98, 0xFB, 0x5E, 0x0A, + 0x52, 0xFA, 0x50, 0xFE, 0xFF, 0x02, 0xD6, 0x00, 0x58, 0xFE, 0x3B, 0xFB, 0x95, 0x0C, 0xF9, 0xF3, 0xB4, 0x02, 0x67, 0x07, 0xB6, 0xF3, 0x0B, 0x0A, + 0xD6, 0xFB, 0x15, 0xFF, 0x20, 0x06, 0xFF, 0xF6, 0x46, 0x04, 0x50, 0x07, 0xBF, 0xEC, 0xBA, 0x13, 0x50, 0xF7, 0x75, 0xFF, 0x30, 0x05, 0x18, 0xF7, 0x48, 0x0B, 0xBC, 0xF7, 0x6D, 0xFE, 0xED, 0x0A, + 0x8E, 0xF4, 0xDB, 0x01, 0x94, 0x07, 0xDF, 0xF7, 0x08, 0x05, 0x34, 0xFB, 0xD6, 0x05, 0x80, 0xFD, 0x2F, 0xFC, 0xAD, 0x08, 0x6E, 0xF3, 0x2E, 0x0C, 0xBB, 0xF9, 0x16, 0x01, 0x56, 0x00, 0xA8, 0xFE, 0x38, 0x06, 0x98, 0xF3, 0xE4, 0x0D, 0x1E, 0xF7, + 0x30, 0xFF, 0x16, 0x0A, + 0x0E, 0xF2, 0x6C, 0x0A, + 0x81, 0xFC, 0x45, 0xFF, 0x20, 0x04, 0x0B, 0xFA, 0x0B, 0x01, 0xFD, 0x05, 0xBF, 0xF8, 0x34, 0x03, 0x4E, 0x00, 0x58, 0xFD, 0x8F, 0x07, 0xDC, 0xF3, 0xD3, 0x08, 0xB3, 0x03, 0xE8, 0xF1, 0x4F, 0x0C, 0x5E, 0xFD, 0x7B, 0xF9, 0x93, 0x07, 0x7A, 0x01, + 0xAB, 0xF4, 0x80, 0x0E, 0xF0, 0xF6, 0x38, 0xFE, 0xCF, 0x07, 0x76, 0xFB, 0x0D, 0xFE, 0x5E, 0x03, 0xEE, 0x00, 0x0D, 0xFB, 0x0B, 0x03, 0x03, 0x03, 0x3D, 0xFE, 0xDC, 0xF6, 0x59, 0x14, 0xB8, 0xE8, 0x23, 0x0D, 0x84, 0x00, 0x58, 0xFB, 0x0F, 0x02, + 0xC1, 0xFF, 0xBB, 0x01, 0x85, 0xF8, 0x21, 0x0E, 0xFF, 0xF2, 0xDC, 0x01, 0x9D, 0x08, 0x98, 0xF6, 0x9F, 0x04, 0xDD, 0xFC, 0x85, 0x05, 0xAF, 0xF9, 0x9D, 0x05, 0x36, 0xFD, 0x59, 0x00, 0x64, 0xFB, 0xC4, 0x0A, + 0x5C, 0xF4, 0x04, 0x07, 0x87, 0xFF, 0x32, 0xFB, 0xC1, 0x09, 0x79, 0xF0, 0x89, 0x13, 0x7B, 0xEC, 0x43, 0x0F, 0xF7, 0xF4, 0x16, 0x0A, + 0xB7, 0xF5, 0xA0, 0x05, 0xE4, 0x04, 0xAE, 0xF1, 0xBB, 0x13, 0x7A, 0xED, 0x05, 0x0D, 0xD6, 0xF8, 0x33, 0xFC, 0x98, 0x11, 0xE2, 0xE7, 0x1A, 0x15, 0xBC, 0xF6, 0x21, 0xF8, 0x45, 0x16, 0x73, 0xE5, 0x03, 0x13, 0x42, 0xFA, 0x45, 0xFA, 0xDE, 0x08, + 0xBF, 0xFA, 0xCC, 0xFF, 0xD6, 0x07, 0xFA, 0xEF, 0x34, 0x13, 0x29, 0xF3, 0xD2, 0xFE, 0x5D, 0x0A, + 0x7F, 0xF6, 0x43, 0x05, 0x06, 0xFD, 0x14, 0x06, 0xEB, 0xF6, 0xD9, 0x07, 0x2F, 0xF9, 0xEE, 0x05, 0x31, 0x01, 0x8C, 0xF2, 0xA3, 0x13, 0x26, 0xF2, 0x21, 0x02, 0x8B, 0x08, 0xCD, 0xF1, 0x80, 0x0C, 0x6F, 0xF8, 0xC0, 0x04, 0xE4, 0xFB, 0xC6, 0x02, + 0x26, 0x00, 0x6C, 0xFA, 0x0B, 0x08, 0xFC, 0x00, 0xB5, 0xED, 0x96, 0x1B, 0xE9, 0xEC, 0x49, 0x01, 0x9C, 0x0A, + 0x53, 0xF6, 0x21, 0x03, 0x94, 0x00, 0x49, 0xFF, 0x2C, 0x04, 0xF0, 0xF2, 0x9F, 0x14, 0xB9, 0xED, 0x5F, 0x06, 0xD7, 0x09, 0xE3, 0xE6, 0x0F, 0x20, 0x33, 0xE5, 0xFD, 0x0A, + 0xED, 0x04, 0xC1, 0xF4, 0xD2, 0x08, 0x53, 0xFB, 0x6B, 0xFF, 0xA7, 0x0A, + 0x4C, 0xE7, 0x5A, 0x23, 0x37, 0xDE, 0x59, 0x10, 0x6A, 0x06, 0x15, 0xF0, 0xA9, 0x0D, 0x70, 0xF3, 0x4D, 0x10, 0x39, 0xED, 0x93, 0x0C, 0x2F, 0x01, 0x61, 0xF4, 0x6F, 0x09, 0xBA, 0x03, 0x74, 0xEE, 0x4B, 0x17, 0x08, 0xEC, 0xB5, 0x07, 0xCD, 0x05, + 0x8C, 0xF6, 0x30, 0x05, 0x69, 0xFD, 0x00, 0x09, 0x61, 0xED, 0x85, 0x16, 0xAC, 0xEB, 0x16, 0x0D, 0x8F, 0xFA, 0xCE, 0xFE, 0x71, 0x05, 0xFF, 0xFB, 0x71, 0xFE, 0x6D, 0x03, 0x9D, 0x02, 0x2C, 0xF5, 0xC1, 0x0F, 0xA9, 0xF1, 0x47, 0x0A, + 0x49, 0xF7, 0xBC, 0x06, 0x51, 0xFE, 0x80, 0xFC, 0x2F, 0x05, 0xE5, 0xFB, 0x5F, 0x04, 0xD7, 0xFB, 0x36, 0x00, 0x25, 0x04, 0xC6, 0xFA, 0x53, 0x05, 0x17, 0xF8, 0x26, 0x0D, 0xD3, 0xF1, 0x3D, 0x05, 0x58, 0x08, 0x56, 0xF0, 0x6C, 0x0D, 0xBF, 0xFC, + 0x92, 0xF8, 0xE8, 0x0C, 0x6B, 0xEF, 0x2F, 0x0E, 0xEE, 0xF9, 0xBF, 0xFE, 0xCF, 0x04, 0xE6, 0xF9, 0xB9, 0x06, 0x1C, 0xF8, 0x82, 0x0B, 0x36, 0xEF, 0x8A, 0x13, 0xEE, 0xED, 0x25, 0x10, 0xC2, 0xF2, 0xA2, 0x07, 0x2A, 0x00, 0x72, 0xF2, 0x9D, 0x1B, + 0x70, 0xDE, 0xB4, 0x1A, 0xD1, 0xF5, 0x12, 0xF9, 0xBA, 0x0F, 0x45, 0xF3, 0x15, 0x05, 0xE0, 0xFE, 0xC6, 0xFE, 0xD5, 0x06, 0xA0, 0xF5, 0xEB, 0x06, 0x95, 0x00, 0xAF, 0xF6, 0x33, 0x0E, 0xB3, 0xF5, 0x18, 0x02, 0xBB, 0x01, 0x69, 0x01, 0x5F, 0xF8, + 0x85, 0x0D, 0xE1, 0xEE, 0xA2, 0x0F, 0x0A, + 0xF9, 0x84, 0xFD, 0xEF, 0x05, 0x78, 0xF8, 0x50, 0x0D, 0x07, 0xE9, 0x50, 0x1E, 0x54, 0xE2, 0x1B, 0x11, 0x05, 0x01, 0x5E, 0xF3, 0x0E, 0x12, 0xD0, 0xEC, 0x1E, 0x12, 0x72, 0xF1, 0x4F, 0x03, 0xA8, 0x0B, 0x91, 0xEA, 0xF0, 0x13, 0xF5, 0xF5, 0x35, + 0xFB, 0xB3, 0x12, 0xDD, 0xE7, 0x04, 0x17, 0x49, 0xEE, 0xA9, 0x0A, + 0xD9, 0xFC, 0xC3, 0xFD, 0x24, 0x07, 0x08, 0xF3, 0x54, 0x0E, 0x26, 0xF5, 0xBE, 0x04, 0xD7, 0xFF, 0x2C, 0xFD, 0xBD, 0x03, 0x21, 0xFD, 0xC4, 0x02, 0xF5, 0xFC, 0x6F, 0x03, 0x24, 0xFD, 0xB6, 0x02, 0x9D, 0xFF, 0x1D, 0xFF, 0xA7, 0xFD, 0xED, 0x02, + 0xDD, 0x03, 0x6C, 0xF4, 0x0A, + 0x09, 0x23, 0x04, 0x24, 0xF3, 0x51, 0x03, 0x81, 0x0E, 0xE2, 0xEB, 0xAA, 0x08, 0xFD, 0x02, 0xAE, 0x05, 0xFE, 0xE7, 0x9F, 0x1B, 0x38, 0xF3, 0xE5, 0xF3, 0xC4, 0x20, 0xE8, 0xD8, 0x2F, 0x23, 0x5A, 0xE3, 0xA3, 0x11, 0x78, 0xFB, 0x5B, 0xFD, 0xD8, + 0x03, 0x64, 0xF7, 0x6F, 0x15, 0xE6, 0xE6, 0x2B, 0x0F, 0x82, 0xFA, 0xE8, 0x00, 0xC3, 0x00, 0xD0, 0xFA, 0x37, 0x09, 0x43, 0xF8, 0x3B, 0xFF, 0xE9, 0x08, 0x87, 0xF5, 0x3D, 0x0C, 0x2F, 0xF3, 0xB0, 0x0A, + 0xD1, 0xF9, 0x14, 0x02, 0x00, 0x00, 0x02, 0xFF, 0xDA, 0x02, 0x2F, 0xFB, 0xF3, 0x06, 0xE2, 0xF8, 0x81, 0x03, 0x10, 0xFF, 0x13, 0x05, 0xB2, 0xF5, 0xCB, 0x0C, 0x61, 0xF4, 0x96, 0x04, 0xF8, 0x06, 0x30, 0xF0, 0xBC, 0x0D, 0x20, 0x01, 0xA8, 0xF0, + 0x89, 0x11, 0x28, 0xF6, 0x6F, 0x02, 0xFA, 0xFF, 0x25, 0xFF, 0x33, 0x02, 0xC8, 0xFB, 0x8D, 0x07, 0x50, 0xF8, 0x1D, 0x04, 0x1D, 0xFA, 0x2F, 0x11, 0xB0, 0xDE, 0x09, 0x28, 0x69, 0xE2, 0x89, 0x07, 0x09, 0x0F, 0xE0, 0xE3, 0x8F, 0x18, 0x16, 0xF6, + 0x8C, 0xFB, 0x53, 0x0A, + 0xA8, 0xEF, 0x6E, 0x17, 0x22, 0xEB, 0x1E, 0x06, 0xE7, 0x0E, 0x2D, 0xDE, 0x03, 0x2C, 0xB0, 0xD3, 0xB4, 0x23, 0x20, 0xEC, 0xE6, 0x00, 0x80, 0x0A, + 0x22, 0xF2, 0x07, 0x0F, 0x9A, 0xEB, 0x6D, 0x17, 0x38, 0xEB, 0xD2, 0x0B, 0xF9, 0x03, 0x00, 0xED, 0x78, 0x16, 0xD6, 0xF3, 0x52, 0x00, 0x38, 0x03, 0xB9, 0xFE, 0x4E, 0x03, 0xB9, 0xF1, 0xA3, 0x17, 0xAC, 0xEE, 0x38, 0xF9, 0x81, 0x1E, 0xC2, 0xDB, + 0x76, 0x16, 0x02, 0xF8, 0x2D, 0x01, 0x21, 0x06, 0x01, 0xF0, 0x5D, 0x15, 0xAD, 0xEC, 0x06, 0x0C, 0x41, 0xFE, 0xB7, 0xF4, 0xB8, 0x13, 0xB9, 0xF0, 0x23, 0xFF, 0x06, 0x11, 0xF4, 0xE8, 0x07, 0x15, 0xE7, 0xED, 0x64, 0x10, 0xB5, 0xF4, 0xAC, 0x02, + 0x67, 0x05, 0xB7, 0xF3, 0xC7, 0x0E, 0xFB, 0xF6, 0x87, 0xFE, 0xCC, 0x07, 0x36, 0xFE, 0x26, 0xF8, 0xA3, 0x0C, 0xC7, 0xF4, 0xA8, 0x03, 0xD7, 0x01, 0x47, 0xFB, 0xC7, 0x0B, 0xC1, 0xED, 0xCB, 0x12, 0x5E, 0xF5, 0x55, 0xFF, 0xC2, 0x07, 0x04, 0xF8, + 0x39, 0x07, 0x18, 0xFC, 0x9C, 0xFE, 0x83, 0x02, 0xBA, 0x02, 0xC6, 0xF5, 0xAD, 0x0B, 0x05, 0xFB, 0xB2, 0xFB, 0xE8, 0x04, 0x5D, 0x01, 0x4B, 0x01, 0xE8, 0xF8, 0xB4, 0x07, 0xD3, 0x01, 0x61, 0xEF, 0x20, 0x1C, 0x54, 0xE3, 0x83, 0x10, 0xF1, 0x03, + 0xEA, 0xE8, 0x74, 0x1D, 0xF9, 0xEA, 0xFE, 0x05, 0x9E, 0x07, 0x74, 0xEE, 0xA0, 0x15, 0x8D, 0xEB, 0xBD, 0x10, 0x88, 0xFD, 0xB3, 0xED, 0x34, 0x1C, 0xFF, 0xEA, 0x21, 0x06, 0x17, 0x04, 0x18, 0xF8, 0xCC, 0x09, 0x8A, 0xF5, 0x31, 0x08, 0xD6, 0xFE, + 0xC8, 0xF7, 0xD4, 0x0E, 0x68, 0xF1, 0x4A, 0x0D, 0xE6, 0xF3, 0x2E, 0x0C, 0x75, 0xF5, 0xA1, 0x05, 0x29, 0x00, 0xFE, 0xF9, 0xD8, 0x0C, 0x0C, 0xF2, 0xDE, 0x06, 0xAB, 0x03, 0x11, 0xF7, 0xC6, 0x03, 0x89, 0x0A, + 0x75, 0xEA, 0x7D, 0x16, 0xA5, 0xF2, 0x82, 0xFE, 0x76, 0x09, 0xCC, 0xF6, 0x63, 0x00, 0x9D, 0x09, 0xF1, 0xF1, 0x46, 0x0C, 0x77, 0xF4, 0x41, 0x0A, + 0x42, 0xFA, 0x43, 0x00, 0xAF, 0x07, 0xBB, 0xF0, 0x92, 0x08, 0xFE, 0x07, 0x64, 0xF3, 0xB8, 0xFE, 0x1E, 0x0E, 0x09, 0xF2, 0xC1, 0x06, 0xB1, 0xFB, 0x2D, 0x08, 0x3F, 0xF5, 0xC5, 0x07, 0xEB, 0x07, 0x65, 0xEF, 0xAD, 0x03, 0xAD, 0x10, 0x45, 0xEA, + 0xAF, 0x09, 0x26, 0x05, 0xE7, 0xF2, 0xBF, 0x0A, + 0xB2, 0xF1, 0x3D, 0x0F, 0xF7, 0xF0, 0x81, 0x08, 0x81, 0x03, 0x78, 0xF0, 0x82, 0x14, 0xA2, 0xEC, 0x4C, 0x08, 0xA6, 0x04, 0x38, 0xF9, 0x44, 0x00, 0x37, 0x07, 0x78, 0xFB, 0xE1, 0xFD, 0x23, 0xFD, 0x55, 0x0F, 0x20, 0xED, 0x85, 0x06, 0xC3, 0x0B, + 0xF3, 0xE5, 0xFA, 0x1D, 0x3C, 0xE3, 0x64, 0x18, 0x84, 0xFB, 0x2F, 0xEE, 0x81, 0x1D, 0xA0, 0xE8, 0x06, 0x0A, + 0xD2, 0x05, 0x18, 0xEC, 0x15, 0x19, 0x8B, 0xED, 0xD4, 0x01, 0x11, 0x0F, 0xC6, 0xE9, 0x5C, 0x10, 0x36, 0xFB, 0x70, 0x01, 0xC7, 0xF6, 0xEB, 0x0D, 0x0D, 0xF7, 0xBC, 0xFE, 0x5E, 0x04, 0xBA, 0xFC, 0x6E, 0x04, 0x2F, 0xFB, 0xB7, 0x04, 0x14, 0xFD, + 0x0A, + 0xFF, 0xFE, 0xFE, 0xE9, 0x08, 0xFB, 0xF6, 0x38, 0xFD, 0x74, 0x0B, 0x18, 0xF7, 0xB2, 0xFF, 0xF9, 0x06, 0x34, 0xF5, 0x1F, 0x0B, 0x07, 0xFA, 0x88, 0x02, 0x8A, 0x00, 0x72, 0x01, 0x63, 0xFE, 0x0D, 0xFA, 0x84, 0x0C, 0xBF, 0xF8, 0xF1, 0xFB, 0x00, + 0x09, 0x71, 0xF6, 0x02, 0x07, 0x12, 0xFD, 0x18, 0x01, 0xA2, 0xFC, 0x3C, 0x06, 0x51, 0xFF, 0x03, 0xF4, 0x44, 0x14, 0x13, 0xEF, 0xAE, 0x01, 0xDA, 0x0A, + 0x02, 0xF0, 0xCE, 0x0C, 0xEA, 0xFB, 0xA0, 0xFB, 0x4B, 0x08, 0x61, 0xF3, 0x59, 0x10, 0xDE, 0xF4, 0x0B, 0x04, 0xF6, 0x03, 0x6D, 0xF5, 0x8E, 0x0C, 0x4F, 0xF7, 0xB3, 0x06, 0xA9, 0xFF, 0x33, 0xF7, 0xE0, 0x0E, 0xDF, 0xF0, 0x20, 0x08, 0x98, 0x01, + 0x47, 0xF5, 0x74, 0x0A, + 0xBA, 0xFA, 0x81, 0xFF, 0x40, 0xFF, 0x4D, 0x04, 0xCB, 0xFF, 0xF6, 0xF9, 0x37, 0x07, 0x93, 0xFF, 0xFD, 0xF7, 0xAF, 0x0B, 0xF0, 0xF9, 0xBD, 0xFC, 0x48, 0x0B, 0x64, 0xF2, 0x8C, 0x08, 0xA6, 0xFF, 0xE1, 0xFA, 0x52, 0x03, 0x35, 0xFC, 0x4A, 0x00, + 0x96, 0x02, 0x3C, 0xFB, 0xD3, 0xFF, 0xE2, 0x05, 0xB1, 0xF7, 0xA7, 0x02, 0xB4, 0x00, 0x23, 0xF6, 0x5B, 0x0C, 0xA0, 0xF5, 0xB0, 0x01, 0x91, 0x05, 0xCF, 0xF7, 0x9F, 0x06, 0x89, 0xFB, 0x16, 0x00, 0xC9, 0x04, 0x29, 0xFD, 0x44, 0x02, 0x16, 0x05, + 0x90, 0xF9, 0x0E, 0x0A, + 0xB4, 0xFA, 0xCB, 0x06, 0x95, 0xFA, 0xB8, 0x09, 0x81, 0xFE, 0xFB, 0xFC, 0xE8, 0x09, 0x09, 0xF4, 0xA9, 0x05, 0x9D, 0x06, 0x27, 0xF1, 0x97, 0x0E, 0x17, 0xFA, 0xBF, 0xF6, 0x7D, 0x0C, 0x5B, 0xEF, 0xCD, 0x02, 0x32, 0xFD, 0x07, 0xF9, 0x5D, 0xFE, + 0x9F, 0xF9, 0xD2, 0xF9, 0x3D, 0xFF, 0xF8, 0xF3, 0x8E, 0x08, 0xAE, 0xF5, 0xED, 0xFB, 0xC0, 0x08, 0xA8, 0xF9, 0x99, 0x02, 0xA6, 0x08, 0x95, 0x03, 0x40, 0x06, 0x4D, 0x0F, 0xE2, 0x07, 0x5E, 0x0A, + 0x95, 0x0B, 0x7C, 0x0E, 0x12, 0x03, 0x1F, 0x10, 0x12, 0x04, 0xB9, 0x03, 0x55, 0x07, 0x2B, 0xFD, 0x36, 0x03, 0x9F, 0xFD, 0x39, 0xFC, 0xA6, 0xFB, 0x55, 0xFD, 0xFF, 0xF7, 0x97, 0xF6, 0x4F, 0xF5, 0x55, 0xEE, 0xB7, 0xF0, 0xA1, 0xEA, 0x19, 0xE9, + 0x7B, 0xEE, 0x41, 0xE7, 0x43, 0xF9, 0x1D, 0xE6, 0xE7, 0xF8, 0x93, 0x02, 0xC0, 0xEF, 0x2F, 0x0E, 0x89, 0x04, 0xA3, 0x0D, 0xB7, 0x15, 0x43, 0x10, 0x20, 0x17, 0xA7, 0x12, 0xD5, 0x14, 0x92, 0x11, 0x82, 0x09, 0x06, 0x11, 0x31, 0x05, 0x77, 0x06, + 0x19, 0x05, 0x4D, 0x03, 0x97, 0x04, 0xE4, 0x02, 0x09, 0x06, 0x5F, 0x06, 0x91, 0x04, 0xA5, 0x02, 0x5F, 0x02, 0xCD, 0xFC, 0xD1, 0xFC, 0x01, 0xF5, 0x04, 0xFB, 0x93, 0xE7, 0x2F, 0xEE, 0x43, 0xE9, 0x82, 0xE3, 0x5E, 0xDC, 0xDA, 0xE9, 0xCC, 0xEE, + 0xBD, 0xDB, 0x86, 0xFF, 0x36, 0xF4, 0xB1, 0xF3, 0x1C, 0x0C, 0x83, 0x05, 0xBB, 0x0F, 0x46, 0x14, 0xDA, 0x18, 0xEC, 0x18, 0x3A, 0x16, 0x5D, 0x1E, 0x15, 0x0D, 0x82, 0x11, 0xAC, 0x0F, 0xEE, 0x04, 0x48, 0x06, 0x2D, 0x04, 0x8F, 0xFF, 0xFA, 0xFE, + 0x26, 0x02, 0x3A, 0x02, 0x19, 0x00, 0xB5, 0x09, 0x5E, 0x02, 0xC8, 0x03, 0xAD, 0x04, 0x9C, 0xFE, 0xD2, 0xFE, 0x14, 0xF6, 0x3B, 0xF7, 0x3F, 0xED, 0x2B, 0xF4, 0xEC, 0xE3, 0x06, 0xE3, 0x2C, 0xEC, 0xCB, 0xE1, 0x01, 0xE4, 0x74, 0xF3, 0x94, 0xEE, + 0x68, 0xEC, 0x6E, 0x02, 0x38, 0xFD, 0x17, 0x09, 0x33, 0x0F, 0x37, 0x16, 0xCD, 0x15, 0x44, 0x1B, 0x70, 0x1F, 0xF2, 0x14, 0xDA, 0x19, 0x6F, 0x15, 0xDD, 0x09, 0x92, 0x0C, 0x73, 0x06, 0x84, 0xFA, 0x5D, 0x01, 0x92, 0xFA, 0x57, 0xFB, 0xA5, 0x01, + 0xEB, 0xFE, 0x7C, 0x01, 0x38, 0x06, 0xA9, 0x07, 0xCC, 0x01, 0x3A, 0x04, 0xA2, 0x07, 0x5B, 0xF7, 0xED, 0xF7, 0xCA, 0xF7, 0x11, 0xEB, 0x6F, 0xEA, 0x89, 0xE4, 0xD9, 0xDD, 0xE7, 0xE1, 0x08, 0xE9, 0x74, 0xE3, 0x61, 0xEC, 0x8C, 0xF9, 0xC0, 0xF5, + 0x32, 0xFE, 0x2D, 0x11, 0x43, 0x0E, 0x3D, 0x17, 0x5B, 0x20, 0x5B, 0x1A, 0x59, 0x1E, 0x2F, 0x1C, 0x64, 0x17, 0xB0, 0x0F, 0x96, 0x0E, 0x53, 0x07, 0x18, 0x00, 0x04, 0x00, 0x91, 0xFA, 0x7E, 0xF8, 0x72, 0xFC, 0xC4, 0xFD, 0x46, 0xFC, 0x31, 0x03, + 0x1D, 0x08, 0x2C, 0x05, 0xE9, 0x08, 0x7E, 0x08, 0xAC, 0x01, 0x04, 0x05, 0x18, 0xFC, 0x3C, 0xF3, 0x60, 0xF3, 0x31, 0xEE, 0x73, 0xE2, 0x14, 0xE2, 0x84, 0xDC, 0xB6, 0xE1, 0x0C, 0xE3, 0x43, 0xE3, 0xB5, 0xF5, 0x08, 0xF0, 0x04, 0xFB, 0xF6, 0x09, + 0xE0, 0x09, 0xDA, 0x14, 0x11, 0x1F, 0x95, 0x1B, 0x45, 0x22, 0xA3, 0x20, 0xF8, 0x1A, 0xC6, 0x17, 0xB1, 0x12, 0x89, 0x0C, 0x67, 0x04, 0xBE, 0x00, 0x72, 0xFE, 0x9E, 0xF8, 0xF0, 0xF8, 0xEB, 0xFA, 0x4C, 0xFB, 0x9E, 0xFF, 0xE0, 0xFF, 0x9A, 0x07, + 0x99, 0x08, 0x6F, 0x06, 0xB8, 0x09, 0xE2, 0x03, 0x68, 0x00, 0x94, 0xFC, 0xF7, 0xF5, 0x36, 0xEF, 0xCD, 0xEA, 0x89, 0xE7, 0x99, 0xD8, 0xD9, 0xDB, 0xAF, 0xE6, 0x3E, 0xD7, 0x2D, 0xE8, 0x4A, 0xF8, 0xAC, 0xEA, 0xEE, 0x00, 0x5D, 0x0B, 0xCA, 0x0C, + 0x3A, 0x17, 0x0A, + 0x21, 0x62, 0x21, 0x67, 0x1E, 0x03, 0x28, 0xD9, 0x19, 0x81, 0x13, 0x68, 0x18, 0x11, 0x07, 0x97, 0x02, 0xC6, 0x02, 0x56, 0xFA, 0x37, 0xF6, 0xED, 0xFC, 0xB8, 0xF8, 0x16, 0xF9, 0x47, 0x06, 0x59, 0x00, 0x01, 0x02, 0x7A, 0x10, 0xD5, 0x05, 0xC9, + 0x04, 0xEC, 0x0A, + 0x98, 0xFB, 0xBF, 0xFA, 0xD7, 0xF4, 0xB8, 0xEF, 0xF2, 0xE5, 0xED, 0xE3, 0x0C, 0xDC, 0x10, 0xD4, 0x2E, 0xE6, 0xBD, 0xDD, 0xA3, 0xE1, 0x05, 0xF9, 0xBE, 0xF2, 0x11, 0xFE, 0x78, 0x10, 0x6F, 0x10, 0x58, 0x19, 0xAA, 0x24, 0xDE, 0x22, 0xF8, 0x1E, + 0x3D, 0x25, 0x11, 0x1B, 0x72, 0x12, 0xFC, 0x12, 0x72, 0x08, 0x50, 0xFF, 0xF3, 0x00, 0xF3, 0xFA, 0x9A, 0xF4, 0x19, 0xFC, 0xA1, 0xFA, 0x6D, 0xFB, 0x96, 0x02, 0xC7, 0x05, 0x9F, 0x07, 0x51, 0x09, 0x95, 0x0B, 0xF3, 0x04, 0xA2, 0x03, 0x95, 0xFF, + 0x5F, 0xF6, 0xDD, 0xEE, 0xC2, 0xEE, 0x92, 0xE3, 0x7B, 0xDD, 0x13, 0xDA, 0x8E, 0xD3, 0x72, 0xE2, 0xDE, 0xDB, 0x37, 0xE7, 0x8B, 0xF3, 0xD1, 0xF7, 0xE2, 0x02, 0x8C, 0x0C, 0xE1, 0x19, 0x5F, 0x1B, 0xA5, 0x22, 0xD0, 0x2A, 0x46, 0x22, 0x96, 0x20, + 0xD4, 0x20, 0x2E, 0x15, 0xB1, 0x0D, 0xE5, 0x08, 0xFE, 0x05, 0xAC, 0xF7, 0x8F, 0xFB, 0xFB, 0xFC, 0x30, 0xEE, 0xA0, 0xFF, 0xBD, 0xFC, 0x37, 0xFC, 0xDB, 0x06, 0x33, 0x09, 0x2F, 0x08, 0x7A, 0x05, 0x40, 0x0C, 0x5C, 0xFE, 0x96, 0xFC, 0x91, 0xF9, + 0xC8, 0xEB, 0xA9, 0xEA, 0x89, 0xE7, 0x27, 0xD8, 0xA2, 0xDA, 0x93, 0xD2, 0x86, 0xDC, 0xAB, 0xDD, 0xF8, 0xE2, 0x31, 0xF8, 0x0A, + 0xF5, 0xEF, 0x07, 0x2D, 0x13, 0x55, 0x17, 0xF1, 0x23, 0xE1, 0x24, 0x88, 0x2A, 0xF8, 0x27, 0x76, 0x20, 0x32, 0x22, 0x98, 0x13, 0xBD, 0x0D, 0x3E, 0x0B, 0x19, 0xFE, 0x91, 0xFE, 0xF3, 0xF8, 0x7D, 0xF6, 0x60, 0xF9, 0x97, 0xF8, 0xC7, 0xFE, 0x45, + 0xFE, 0x26, 0x06, 0x90, 0x08, 0xD4, 0x06, 0x9B, 0x0A, + 0xCF, 0x04, 0xD8, 0x01, 0x56, 0xFA, 0x02, 0xF4, 0x1E, 0xF1, 0xDE, 0xE2, 0x1D, 0xE4, 0x16, 0xDB, 0x87, 0xD1, 0x90, 0xD4, 0x2E, 0xE0, 0x6D, 0xD7, 0x21, 0xEA, 0xF5, 0xF9, 0x4D, 0xF7, 0x10, 0x0D, 0x99, 0x17, 0xCB, 0x1A, 0x76, 0x24, 0x3A, 0x2C, + 0xEA, 0x28, 0x4D, 0x26, 0x10, 0x24, 0xE4, 0x1D, 0x04, 0x0F, 0xB3, 0x0F, 0xE7, 0x04, 0xEE, 0xFB, 0xA1, 0xFD, 0x55, 0xF8, 0x1E, 0xF5, 0x10, 0xFC, 0x91, 0xFC, 0xCB, 0xFE, 0xA2, 0x06, 0xC3, 0x06, 0x04, 0x0C, 0x7F, 0x09, 0xE0, 0x07, 0x99, 0x05, + 0x5F, 0xFD, 0x69, 0xF6, 0xEA, 0xF0, 0xD3, 0xE6, 0xEE, 0xDE, 0x24, 0xDD, 0x7B, 0xD3, 0xCC, 0xC9, 0x5E, 0xDC, 0x99, 0xDB, 0x5A, 0xD9, 0x0C, 0xF9, 0xDF, 0xF7, 0x93, 0x00, 0xCB, 0x18, 0x02, 0x1A, 0xB6, 0x20, 0x8E, 0x2C, 0x27, 0x2A, 0x12, 0x27, + 0xE1, 0x26, 0xBE, 0x1F, 0x1A, 0x15, 0xE2, 0x0E, 0x1C, 0x0B, 0x8E, 0xFE, 0xC1, 0xFD, 0x81, 0xFC, 0xC3, 0xF5, 0xCE, 0xFB, 0x74, 0xFE, 0xC1, 0xFD, 0x18, 0x08, 0x0A, + 0x07, 0x8C, 0x07, 0x06, 0x0D, 0xFB, 0x06, 0x63, 0x02, 0x8E, 0x01, 0xDA, 0xF7, 0x11, 0xEC, 0xE4, 0xEB, 0xD7, 0xE1, 0x8B, 0xD7, 0x34, 0xD8, 0x64, 0xCC, 0xF3, 0xCE, 0x73, 0xE1, 0xBE, 0xD6, 0xF0, 0xED, 0xD5, 0xFB, 0x0A, + 0xFB, 0xDD, 0x12, 0xD3, 0x19, 0xD0, 0x1E, 0xAB, 0x28, 0x5A, 0x2C, 0xA7, 0x27, 0x05, 0x28, 0x41, 0x22, 0xE9, 0x17, 0x33, 0x11, 0x26, 0x0C, 0xE5, 0x04, 0xF0, 0xFE, 0xF9, 0xFC, 0xDA, 0xFC, 0xA2, 0xFB, 0x06, 0xFE, 0x27, 0x03, 0x01, 0x05, 0x5F, + 0x05, 0x34, 0x0D, 0xFB, 0x0A, + 0x35, 0x05, 0x46, 0x07, 0xCE, 0xFE, 0xCB, 0xF5, 0x59, 0xF3, 0xE1, 0xE8, 0x50, 0xE0, 0xE3, 0xDB, 0x28, 0xD4, 0xF9, 0xCD, 0xDC, 0xCC, 0x9E, 0xDD, 0xF7, 0xD7, 0x74, 0xE7, 0x8A, 0xFC, 0x69, 0xF9, 0x3C, 0x0F, 0x1B, 0x1C, 0xA5, 0x1A, 0xB7, 0x28, + 0x9C, 0x2D, 0xC6, 0x25, 0x10, 0x28, 0xAA, 0x23, 0x60, 0x18, 0x1B, 0x11, 0x49, 0x0E, 0xF1, 0x02, 0xA4, 0xFE, 0xE5, 0xFF, 0xC8, 0xFB, 0x72, 0xFA, 0x28, 0x03, 0xC7, 0x01, 0xF7, 0x02, 0x5D, 0x0E, 0x14, 0x08, 0x47, 0x09, 0xE9, 0x0C, 0x51, 0x02, + 0xFF, 0xFD, 0xE2, 0xFA, 0x74, 0xEF, 0x5D, 0xE6, 0xDA, 0xE3, 0x5E, 0xD9, 0xDA, 0xD3, 0xD9, 0xD2, 0xF6, 0xCC, 0x50, 0xDF, 0xB8, 0xDF, 0x33, 0xE5, 0x6F, 0x00, 0xE6, 0xFE, 0xFE, 0x0A, + 0xE7, 0x1E, 0xFE, 0x1A, 0x79, 0x22, 0x65, 0x2B, 0xE5, 0x22, 0x9A, 0x1F, 0x7E, 0x1F, 0xD4, 0x16, 0xD6, 0x0C, 0x42, 0x0B, 0x10, 0x07, 0xF3, 0xFC, 0xFF, 0xFF, 0x7A, 0x02, 0xFB, 0xFC, 0xBB, 0x02, 0xDB, 0x07, 0xAD, 0x05, 0xE9, 0x0A, + 0x29, 0x0C, 0x89, 0x08, 0xC1, 0x05, 0x1B, 0x01, 0x1C, 0xFA, 0xE1, 0xF1, 0x5E, 0xEC, 0x87, 0xE2, 0xA0, 0xDB, 0x23, 0xD7, 0x8E, 0xD0, 0xF6, 0xCC, 0xD0, 0xDC, 0x2E, 0xDD, 0x93, 0xE6, 0xE6, 0xFB, 0x62, 0x00, 0xBA, 0x0C, 0x3F, 0x1B, 0x4F, 0x21, + 0x97, 0x21, 0xCC, 0x2A, 0xC5, 0x26, 0x03, 0x1F, 0x23, 0x1C, 0xCE, 0x16, 0x00, 0x08, 0x6A, 0x07, 0x17, 0x04, 0xEB, 0xF9, 0x6E, 0xFD, 0xEE, 0xFE, 0x1D, 0xFE, 0x5F, 0x01, 0xB0, 0x0B, 0x77, 0x07, 0x0F, 0x0E, 0xD5, 0x0F, 0xC2, 0x08, 0x64, 0x06, + 0x19, 0x03, 0x29, 0xF7, 0xF5, 0xEF, 0x31, 0xEC, 0xAE, 0xDE, 0x56, 0xD8, 0x85, 0xD7, 0x6E, 0xCD, 0x10, 0xCB, 0xF9, 0xE1, 0x7D, 0xDD, 0x6A, 0xEB, 0xEE, 0x02, 0xA6, 0x04, 0xB9, 0x0F, 0x8D, 0x22, 0xEE, 0x1F, 0x98, 0x22, 0xD9, 0x29, 0x67, 0x20, + 0x66, 0x1B, 0x19, 0x16, 0xA3, 0x11, 0xFE, 0x01, 0x49, 0x03, 0xB0, 0x02, 0xEB, 0xF7, 0xAE, 0xFF, 0xC3, 0x02, 0x4C, 0xFF, 0x46, 0x09, 0x93, 0x0F, 0x07, 0x0C, 0x5C, 0x13, 0xD6, 0x10, 0x92, 0x0A, + 0x94, 0x06, 0x89, 0xFF, 0x5B, 0xF5, 0xF4, 0xE9, 0x7E, 0xE5, 0x8C, 0xDA, 0xE8, 0xD4, 0x21, 0xD1, 0xA4, 0xCB, 0x91, 0xD0, 0x12, 0xE2, 0xE7, 0xE3, 0x05, 0xF4, 0x90, 0x09, 0x80, 0x0C, 0x3C, 0x17, 0xAA, 0x23, 0xF1, 0x23, 0xB1, 0x1F, 0xB4, 0x24, + 0x72, 0x19, 0x15, 0x11, 0xF1, 0x0C, 0x35, 0x05, 0x5E, 0xFE, 0xA5, 0xFB, 0x6C, 0xFD, 0xFD, 0xFA, 0xC6, 0xFD, 0x01, 0x0A, + 0x15, 0x0A, + 0x37, 0x0D, 0x1D, 0x19, 0x43, 0x15, 0x60, 0x13, 0x32, 0x10, 0x47, 0x0B, 0x68, 0xFF, 0xB8, 0xF4, 0xB3, 0xEE, 0xA3, 0xDE, 0x82, 0xDA, 0xA5, 0xD7, 0x33, 0xCC, 0xEB, 0xCC, 0x25, 0xDA, 0x5A, 0xE4, 0x17, 0xE9, 0x2F, 0x02, 0x5C, 0x0D, 0x1F, 0x10, + 0x63, 0x20, 0xA4, 0x22, 0x5F, 0x1D, 0x6E, 0x1C, 0xA1, 0x1A, 0x96, 0x0D, 0x5F, 0x08, 0xD1, 0x04, 0x27, 0xFE, 0xD4, 0xF9, 0xD2, 0xFD, 0x0F, 0xFF, 0x3D, 0xFF, 0x24, 0x07, 0xD2, 0x0E, 0xC8, 0x0F, 0x15, 0x13, 0x3A, 0x18, 0x79, 0x12, 0x8B, 0x0F, + 0xF8, 0x08, 0xC0, 0x00, 0x46, 0xF5, 0xB1, 0xEC, 0x27, 0xE2, 0x46, 0xDD, 0xF9, 0xD7, 0x26, 0xD2, 0xBB, 0xCF, 0x4B, 0xDE, 0xEF, 0xE5, 0x94, 0xEC, 0xB9, 0x07, 0x17, 0x08, 0x50, 0x14, 0xF3, 0x20, 0xC9, 0x19, 0xFF, 0x1C, 0xC4, 0x19, 0x87, 0x10, + 0x81, 0x0C, 0xA6, 0x02, 0xF5, 0x02, 0x13, 0xFA, 0x10, 0xF8, 0x01, 0x04, 0xD1, 0xFA, 0xC7, 0x02, 0x3E, 0x10, 0x74, 0x08, 0x99, 0x15, 0xDF, 0x18, 0x53, 0x11, 0x92, 0x14, 0x0C, 0x0D, 0x19, 0x05, 0x1F, 0xF9, 0x84, 0xF4, 0x1F, 0xE9, 0xE8, 0xDD, + 0xEB, 0xDD, 0xE9, 0xD5, 0xCA, 0xCE, 0x3F, 0xD9, 0x0B, 0xEB, 0x03, 0xE9, 0x05, 0xFD, 0xA2, 0x0D, 0x46, 0x0C, 0x32, 0x1A, 0x55, 0x1E, 0x9C, 0x17, 0x1B, 0x18, 0xBE, 0x13, 0x24, 0x0B, 0x94, 0x03, 0x50, 0xFF, 0x83, 0x00, 0xC9, 0xF9, 0x4E, 0xFC, + 0xE8, 0x03, 0xB0, 0x03, 0x1D, 0x07, 0xD6, 0x0F, 0xD5, 0x11, 0xD6, 0x11, 0x62, 0x14, 0x4E, 0x12, 0xD7, 0x08, 0x37, 0x02, 0x52, 0xFD, 0x73, 0xF1, 0x99, 0xE5, 0xA1, 0xE3, 0xFE, 0xDD, 0xD4, 0xD3, 0x47, 0xD7, 0x6F, 0xE9, 0x41, 0xEB, 0x5F, 0xF2, + 0xA7, 0x0A, + 0x71, 0x0C, 0x0F, 0x10, 0x59, 0x1D, 0x88, 0x18, 0x2B, 0x12, 0xA3, 0x14, 0xE7, 0x0D, 0x07, 0x02, 0x66, 0x01, 0x4D, 0x02, 0x52, 0xF9, 0x4C, 0xFD, 0x1E, 0x05, 0x5E, 0x02, 0xCC, 0x05, 0xEE, 0x0D, 0xE3, 0x0F, 0x00, 0x10, 0xF8, 0x0F, 0x24, 0x0E, + 0x92, 0x06, 0xFA, 0xFE, 0xDC, 0xF8, 0x8C, 0xEC, 0x69, 0xE9, 0x4F, 0xE3, 0xD6, 0xDA, 0xB6, 0xD6, 0xB6, 0xE0, 0x08, 0xED, 0xF1, 0xE9, 0x87, 0x01, 0x5E, 0x0D, 0x0B, 0x08, 0x57, 0x18, 0x46, 0x1C, 0xA2, 0x11, 0x8E, 0x13, 0x62, 0x13, 0xC2, 0x07, + 0x48, 0x02, 0xA8, 0x01, 0x37, 0x00, 0xBE, 0xF9, 0x2B, 0x00, 0xD5, 0x03, 0x20, 0x01, 0x3D, 0x0B, 0x6A, 0x0E, 0x32, 0x0C, 0xF4, 0x10, 0xCB, 0x0F, 0x62, 0x06, 0x9D, 0x03, 0xE8, 0xFC, 0x0D, 0xF1, 0xFE, 0xEA, 0x38, 0xE8, 0x54, 0xDD, 0xD6, 0xD8, + 0x4B, 0xDC, 0x8A, 0xEE, 0x70, 0xE8, 0x79, 0xF9, 0xCD, 0x0D, 0x44, 0x03, 0xD0, 0x14, 0x38, 0x1A, 0xCB, 0x11, 0x34, 0x14, 0xC6, 0x12, 0xDB, 0x0A, + 0xEF, 0x05, 0x36, 0x03, 0xCA, 0x02, 0xCB, 0xFA, 0xB4, 0x00, 0x4B, 0x05, 0x5F, 0x01, 0x2E, 0x08, 0x44, 0x0E, 0x15, 0x0B, 0x10, 0x0E, 0x4B, 0x0B, 0x99, 0x07, 0x3E, 0x02, 0x73, 0xF9, 0x4E, 0xF2, 0x2D, 0xEC, 0x1D, 0xE4, 0x03, 0xE1, 0xFB, 0xD5, + 0x9A, 0xE5, 0xF9, 0xED, 0x9A, 0xE7, 0x18, 0x03, 0xF3, 0x07, 0x13, 0x08, 0x33, 0x15, 0xE1, 0x16, 0xB1, 0x12, 0xA1, 0x11, 0x68, 0x11, 0xBD, 0x0D, 0xA2, 0x02, 0xFA, 0x05, 0x29, 0x04, 0x6A, 0xFE, 0xF3, 0x03, 0x2C, 0x06, 0x00, 0x04, 0x67, 0x08, + 0xC9, 0x0B, 0x35, 0x0A, + 0x0F, 0x06, 0xA9, 0x08, 0xB6, 0x01, 0xEC, 0xF7, 0x70, 0xF4, 0x0A, + 0xEC, 0x6A, 0xE3, 0xE4, 0xDD, 0x99, 0xDB, 0xAB, 0xE7, 0x1C, 0xEC, 0xCB, 0xEC, 0xB9, 0x05, 0xB8, 0x05, 0x65, 0x08, 0x46, 0x17, 0x7C, 0x16, 0xB4, 0x10, 0x40, 0x16, 0xDA, 0x14, 0x82, 0x09, 0xF6, 0x04, 0x4E, 0x07, 0x91, 0x02, 0x89, 0xFC, 0x51, + 0x07, 0x9E, 0x02, 0xE5, 0xFE, 0x2C, 0x0A, + 0x29, 0x0A, + 0xC9, 0x02, 0xB2, 0x04, 0x53, 0x06, 0xC2, 0xFB, 0xBA, 0xF4, 0x44, 0xF4, 0xB1, 0xEA, 0x4A, 0xE1, 0xBD, 0xDF, 0x2E, 0xE3, 0x18, 0xEC, 0x10, 0xEB, 0xF4, 0xFB, 0xE2, 0x05, 0xF3, 0x05, 0xA7, 0x12, 0x1A, 0x16, 0x7A, 0x15, 0xE8, 0x13, 0x21, 0x15, + 0x40, 0x0F, 0x67, 0x09, 0x74, 0x06, 0xE1, 0x04, 0xE3, 0xFF, 0xCE, 0x00, 0x1F, 0x01, 0x6E, 0x00, 0xA6, 0x03, 0xBF, 0x04, 0xE4, 0x04, 0x3D, 0x05, 0xD4, 0x01, 0x9C, 0xFD, 0x94, 0xF9, 0x09, 0xF2, 0x63, 0xEE, 0xB8, 0xE8, 0x67, 0xDF, 0x00, 0xE5, + 0xBE, 0xF1, 0x40, 0xEA, 0x92, 0xF8, 0xD7, 0x06, 0x5E, 0x03, 0x00, 0x0D, 0xE5, 0x16, 0xA6, 0x12, 0xF0, 0x12, 0x7B, 0x16, 0x8D, 0x10, 0x6B, 0x0A, + 0xA4, 0x07, 0x59, 0x08, 0xC4, 0xFE, 0xE4, 0xFF, 0x97, 0x03, 0x72, 0xFD, 0xAF, 0x01, 0x61, 0x04, 0xCC, 0xFE, 0x51, 0x01, 0x5B, 0x00, 0x79, 0xF7, 0xE0, 0xF8, 0x09, 0xF5, 0xE1, 0xEC, 0x74, 0xEA, 0x44, 0xE7, 0xDC, 0xEF, 0x0D, 0xEF, 0xC9, 0xF4, + 0xDD, 0x00, 0x16, 0x03, 0x2D, 0x07, 0x4A, 0x11, 0x84, 0x10, 0x7C, 0x0E, 0x72, 0x13, 0x4E, 0x0F, 0xC1, 0x0C, 0x61, 0x08, 0xEF, 0x07, 0xA8, 0x04, 0x70, 0x01, 0xD2, 0x01, 0xAA, 0x01, 0xC5, 0xFE, 0xA9, 0x00, 0x66, 0x00, 0xDE, 0xFE, 0xD3, 0xFB, + 0x4F, 0xFB, 0xEF, 0xF8, 0x4C, 0xF4, 0x8B, 0xF1, 0x9B, 0xEE, 0xE4, 0xE7, 0x32, 0xF0, 0xB9, 0xF8, 0xD9, 0xF0, 0xF3, 0xFF, 0xAA, 0x07, 0x63, 0x03, 0x06, 0x0C, 0x35, 0x11, 0xDD, 0x0C, 0x7D, 0x0E, 0x78, 0x0E, 0x0E, 0x0C, 0x19, 0x07, 0xEB, 0x04, + 0x4D, 0x06, 0x94, 0x00, 0x2C, 0x00, 0xA2, 0x03, 0xD7, 0x00, 0x14, 0xFF, 0x5A, 0x01, 0x90, 0x00, 0xAF, 0xFB, 0x6B, 0xFB, 0x28, 0xF9, 0xE0, 0xF4, 0xDF, 0xF2, 0xF1, 0xF0, 0xED, 0xEA, 0x93, 0xF2, 0x2C, 0xF9, 0xAD, 0xF4, 0xA6, 0xFE, 0x61, 0x08, + 0xA4, 0x04, 0xE3, 0x09, 0xC6, 0x10, 0xE9, 0x09, 0x2A, 0x0C, 0x1A, 0x0C, 0x3F, 0x09, 0xBA, 0x05, 0x2F, 0x05, 0xE1, 0x03, 0x7A, 0x01, 0x6F, 0x00, 0xFA, 0x00, 0xC7, 0xFF, 0xF3, 0xFE, 0x67, 0x00, 0xDF, 0xFE, 0xDC, 0xFC, 0x63, 0xFB, 0x10, 0xFA, + 0x89, 0xF8, 0x8A, 0xF6, 0x58, 0xF5, 0x84, 0xF3, 0xBF, 0xF4, 0x6D, 0xFB, 0x19, 0xFA, 0x26, 0xFE, 0x74, 0x04, 0x50, 0x05, 0x8B, 0x07, 0x75, 0x0A, + 0x50, 0x09, 0xEC, 0x09, 0x6B, 0x08, 0xF9, 0x06, 0x48, 0x05, 0xBA, 0x02, 0xCA, 0x02, 0x15, 0x01, 0x4B, 0xFE, 0xFA, 0x00, 0x25, 0xFF, 0x3B, 0xFC, 0x03, 0x00, 0x53, 0xFE, 0xBA, 0xFB, 0x6B, 0xFC, 0xE5, 0xFB, 0x1E, 0xF9, 0x0E, 0xFA, 0xA5, 0xF6, + 0xC8, 0xF5, 0x81, 0xF8, 0x64, 0xFC, 0x14, 0xFD, 0xE4, 0x00, 0x55, 0x06, 0xF7, 0x05, 0xA0, 0x07, 0xD6, 0x09, 0x14, 0x08, 0x15, 0x06, 0x4B, 0x07, 0x4C, 0x04, 0x75, 0x01, 0x1A, 0x01, 0x60, 0x00, 0xDF, 0xFD, 0x46, 0xFE, 0x5B, 0xFF, 0x3D, 0xFE, + 0x7F, 0xFE, 0x95, 0xFF, 0x8B, 0xFE, 0xBB, 0xFD, 0xB7, 0xFD, 0xA9, 0xFC, 0x3A, 0xFC, 0xE6, 0xFA, 0x0B, 0xFB, 0x04, 0xFA, 0xBA, 0xFA, 0x8F, 0xFE, 0xC3, 0xFE, 0xAE, 0x00, 0xD8, 0x03, 0x81, 0x04, 0xA7, 0x05, 0x88, 0x05, 0xB7, 0x05, 0xED, 0x04, + 0x2A, 0x03, 0x5C, 0x03, 0x4B, 0x02, 0xAD, 0xFF, 0x79, 0x00, 0x66, 0x00, 0x6C, 0xFE, 0x68, 0xFF, 0xF7, 0xFE, 0xFB, 0xFD, 0xE0, 0xFD, 0x01, 0xFE, 0x0D, 0xFE, 0xFE, 0xFC, 0x39, 0xFD, 0xA9, 0xFD, 0x57, 0xFC, 0xD8, 0xFA, 0xB2, 0xFB, 0x7A, 0xFD, + 0xBE, 0xFE, 0xDD, 0xFF, 0x62, 0x02, 0xB3, 0x03, 0x0F, 0x04, 0x2C, 0x04, 0xD0, 0x04, 0xD2, 0x04, 0x5C, 0x02, 0xC9, 0x02, 0x00, 0x03, 0xD7, 0x00, 0x36, 0x00, 0x7F, 0x00, 0xCF, 0xFE, 0x86, 0xFE, 0x2E, 0xFE, 0x1D, 0xFE, 0x52, 0xFF, 0x8E, 0xFE, + 0xDC, 0xFE, 0x61, 0x00, 0xBF, 0xFF, 0xF2, 0xFD, 0xE0, 0xFE, 0x26, 0xFE, 0xB1, 0xFB, 0x30, 0xFD, 0x56, 0xFF, 0x63, 0xFE, 0x5B, 0xFF, 0x4A, 0x02, 0x0F, 0x02, 0x2C, 0x02, 0x1C, 0x03, 0xED, 0x01, 0x1C, 0x01, 0x1D, 0x01, 0x2D, 0x00, 0x65, 0x00, + 0x74, 0x00, 0xE9, 0xFF, 0xD6, 0x00, 0xE7, 0x00, 0xBB, 0xFF, 0xB8, 0x00, 0x03, 0x01, 0xA7, 0xFF, 0x2B, 0x00, 0x32, 0x00, 0x14, 0xFF, 0x6F, 0xFF, 0x17, 0xFF, 0xC7, 0xFE, 0x7C, 0xFF, 0xEC, 0xFE, 0x35, 0xFF, 0x03, 0x00, 0xA7, 0xFF, 0xA9, 0xFF, + 0x68, 0x00, 0xC8, 0xFF, 0xB0, 0xFF, 0x0B, 0x00, 0x8C, 0xFF, 0x5C, 0xFF, 0x8D, 0xFF, 0x9C, 0xFF, 0xB7, 0xFF, 0xB1, 0xFF, 0x08, 0x00, 0x65, 0x00, 0x08, 0x00, 0x96, 0x00, 0x88, 0x00, 0x8D, 0xFF, 0x26, 0x00, 0x3A, 0x00, 0x28, 0xFF, 0xE1, 0xFF, + 0xFB, 0xFF, 0xA6, 0xFF, 0x53, 0x00, 0x54, 0x00, 0x56, 0x00, 0x95, 0x00, 0x4B, 0x00, 0x77, 0x00, 0x77, 0x00, 0x4A, 0x00, 0x75, 0x00, 0x28, 0x00, 0xFE, 0xFF, 0xE2, 0xFF, 0xAD, 0xFF, 0x67, 0xFF, 0x52, 0xFF, 0x85, 0xFF, 0xCD, 0xFF, 0x9B, 0xFF, + 0xDF, 0xFF, 0x28, 0x00, 0x05, 0x00, 0x49, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x54, 0x00, 0x0E, 0x00, 0x0B, 0x00, 0xB2, 0xFF, 0x52, 0xFF, 0xD6, 0xFF, 0xD0, 0xFF, 0xB0, 0xFF, 0x4C, 0x00, 0x64, 0x00, 0x62, 0x00, 0xAC, 0x00, 0x76, 0x00, 0x71, 0x00, + 0x68, 0x00, 0xDF, 0xFF, 0x2D, 0x00, 0xDA, 0xFF, 0x8A, 0xFF, 0xD8, 0xFF, 0x9D, 0xFF, 0x6E, 0xFF, 0xDC, 0xFF, 0xD1, 0xFF, 0xA4, 0xFF, 0x02, 0x00, 0x2F, 0x00, 0x33, 0x00, 0x09, 0x00, 0x47, 0x00, 0x25, 0x00, 0x04, 0x00, 0xE9, 0xFF, 0xE8, 0xFF, + 0x0F, 0x00, 0xE6, 0xFF, 0xB5, 0xFF, 0x38, 0x00, 0x32, 0x00, 0xE5, 0xFF, 0x5C, 0x00, 0x35, 0x00, 0xFD, 0xFF, 0xF5, 0xFF, 0xD0, 0xFF, 0xD3, 0xFF, 0xC0, 0xFF, 0x93, 0xFF, 0xCB, 0xFF, 0x01, 0x00, 0xF7, 0xFF, 0x2A, 0x00, 0x38, 0x00, 0x39, 0x00, + 0x47, 0x00, 0x55, 0x00, 0x46, 0x00, 0x28, 0x00, 0x03, 0x00, 0xF2, 0xFF, 0xD6, 0xFF, 0xC4, 0xFF, 0xF1, 0xFF, 0xDF, 0xFF, 0xFA, 0xFF, 0x13, 0x00, 0xFE, 0xFF, 0x13, 0x00, 0x14, 0x00, 0xF8, 0xFF, 0x12, 0x00, 0x0B, 0x00, 0xFD, 0xFF, 0x1A, 0x00, + 0x02, 0x00, 0x01, 0x00, 0xEB, 0xFF, 0xE8, 0xFF, 0x0B, 0x00, 0xF5, 0xFF, 0x1B, 0x00, 0x46, 0x00, 0x11, 0x00, 0x24, 0x00, 0x44, 0x00, 0x14, 0x00, 0x08, 0x00, 0x05, 0x00, 0xFA, 0xFF, 0xF1, 0xFF, 0xE8, 0xFF, 0xF6, 0xFF, 0xF0, 0xFF, 0xD2, 0xFF, + 0xE4, 0xFF, 0xF4, 0xFF, 0xDF, 0xFF, 0xF2, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x0E, 0x00, 0x12, 0x00, 0x0E, 0x00, 0x06, 0x00, 0x08, 0x00, 0x02, 0x00, 0xF5, 0xFF, 0x09, 0x00, 0x13, 0x00, 0x06, 0x00, 0x0E, 0x00, 0x24, 0x00, 0x18, 0x00, + 0x08, 0x00, 0x13, 0x00, 0x0C, 0x00, 0xF6, 0xFF, 0xF5, 0xFF, 0xF5, 0xFF, 0xF1, 0xFF, 0xE9, 0xFF, 0xEB, 0xFF, 0xF2, 0xFF, 0xEE, 0xFF, 0xE7, 0xFF, 0xF4, 0xFF, 0xF2, 0xFF, 0xE7, 0xFF, 0xF3, 0xFF, 0x01, 0x00, 0xF9, 0xFF, 0xF6, 0xFF, 0x03, 0x00, + 0x02, 0x00, 0xFE, 0xFF, 0x0B, 0x00, 0x10, 0x00, 0x0A, + 0x00, 0x0F, 0x00, 0x0D, 0x00, 0x07, 0x00, 0x05, 0x00, 0x04, 0x00, 0xFD, 0xFF, 0xFD, 0xFF, 0xF9, 0xFF, 0xF5, 0xFF, 0xEE, 0xFF, 0xEA, 0xFF, 0xF5, 0xFF, 0xFA, 0xFF, 0xF6, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFB, 0xFF, 0xFD, 0xFF, 0xFA, 0xFF, 0xF1, + 0xFF, 0xF2, 0xFF, 0xF4, 0xFF, 0xF5, 0xFF, 0xF9, 0xFF, 0x00, 0x00, 0x06, 0x00, 0x0A, + 0x00, 0x0F, 0x00, 0x13, 0x00, 0x11, 0x00, 0x11, 0x00, 0x11, 0x00, 0x0B, 0x00, 0x0B, 0x00, 0xFF, 0xFF, 0x01, 0x00, 0x04, 0x00, 0x06, 0x00, 0x01, 0x00, 0x03, 0x00, 0x09, 0x00, 0x07, 0x00, 0x04, 0x00, 0x08, 0x00, 0x01, 0x00, 0xFE, 0xFF, 0xFD, + 0xFF, 0xFB, 0xFF, 0xFB, 0xFF, 0xF4, 0xFF, 0xF1, 0xFF, 0xF8, 0xFF, 0xFC, 0xFF, 0xF6, 0xFF, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x03, 0x00, 0x04, 0x00, 0x01, 0x00, 0x07, 0x00, 0x06, 0x00, 0x04, 0x00, 0x06, 0x00, 0x09, 0x00, 0x0C, 0x00, 0x07, + 0x00, 0x0A, + 0x00, 0x0B, 0x00, 0x06, 0x00, 0x05, 0x00, 0x03, 0x00, 0x00, 0x00, 0xFE, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0xFA, 0xFF, 0xFD, 0xFF, 0xF9, 0xFF, 0xFA, 0xFF, 0xF8, 0xFF, 0xF6, 0xFF, 0xFB, 0xFF, 0xFD, 0xFF, 0xFB, 0xFF, 0x00, 0x00, 0x05, 0x00, 0x06, + 0x00, 0x06, 0x00, 0x09, 0x00, 0x0C, 0x00, 0x0A, + 0x00, 0x0C, 0x00, 0x0C, 0x00, 0x09, 0x00, 0x0A, + 0x00, 0x0F, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x04, 0x00, 0x08, 0x00, 0x0A, + 0x00, 0x05, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFD, 0xFF, 0xFA, 0xFF, 0xF9, 0xFF, 0xFB, 0xFF, 0xFB, 0xFF, 0xFA, 0xFF, 0xFB, 0xFF, 0xFC, 0xFF, 0xF9, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0x01, 0x00, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0xFE, 0xFF, 0xFE, 0xFF, 0xFC, 0xFF, 0xF8, 0xFF, 0xFA, 0xFF, 0xF4, 0xFF, 0xF4, 0xFF, 0xFB, 0xFF, 0xFA, 0xFF, 0xFC, 0xFF, 0xFE, 0xFF, 0x00, 0x00, 0x01, 0x00, 0xFF, + 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0xFE, 0xFF, 0x01, 0x00, 0x03, 0x00, 0xFF, 0xFF, 0x03, 0x00, 0x04, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFC, 0xFF, 0xFB, + 0xFF, 0xFD, 0xFF, 0xF9, 0xFF, 0xFC, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFD, 0xFF, 0xFD, 0xFF, 0xFA, 0xFF, 0xFC, 0xFF, 0xFA, 0xFF, 0xF9, 0xFF, 0xF7, 0xFF, 0xF7, 0xFF, 0xF9, 0xFF, 0xF7, 0xFF, 0xF8, 0xFF, 0xF7, 0xFF, 0xF9, 0xFF, 0xFA, + 0xFF, 0xFA, 0xFF, 0xFA, 0xFF, 0xFC, 0xFF, 0xFD, 0xFF, 0xFB, 0xFF, 0xFD, 0xFF, 0xFB, 0xFF, 0xFC, 0xFF, 0xFE, 0xFF, 0xFD, 0xFF, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xFF, 0xFD, + 0xFF, 0xFB, 0xFF, 0xFC, 0xFF, 0xFD, 0xFF, 0xFD, 0xFF, 0xFD, 0xFF, 0xF9, 0xFF, 0xFC, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x02, 0x00, 0x05, 0x00, 0x05, 0x00, 0x06, 0x00, 0x06, 0x00, 0x06, 0x00, 0x07, 0x00, 0x09, 0x00, 0x0A, + 0x00, 0x0D, 0x00, 0x0A, + 0x00, 0x09, 0x00, 0x09, 0x00, 0x09, 0x00, 0x08, 0x00, 0x0C, 0x00, 0x0A, + 0x00, 0x08, 0x00, 0x0D, 0x00, 0x0B, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x05, 0x00, 0x02, + 0x00, 0x04, 0x00, 0x06, 0x00, 0x02, 0x00, 0x03, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 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, 0x01, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 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, 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, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 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, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 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, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 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, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 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, 0xFF, + 0xFF, 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, 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, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 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, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 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, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + }; + + static const rt_uint8_t _romfs_root_2_wav[] = { + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 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, 0x01, 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, 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, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, + 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, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 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, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0xFF, 0xFF, 0x02, 0x00, 0x01, 0x00, + 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xF7, 0xFF, 0xF7, 0xFF, 0xFF, 0xFF, 0x01, 0x00, 0xFD, 0xFF, 0xFF, 0xFF, 0x03, 0x00, 0xFC, 0xFF, 0xF8, 0xFF, 0x01, 0x00, + 0x09, 0x00, 0xFF, 0xFF, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x05, 0x00, 0xF9, 0xFF, 0xFE, 0xFF, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0xFD, 0xFF, 0x02, 0x00, 0xF9, 0xFF, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x0D, 0x00, 0x00, 0x00, + 0x07, 0x00, 0x04, 0x00, 0x06, 0x00, 0x03, 0x00, 0x01, 0x00, 0x0B, 0x00, 0x01, 0x00, 0x0B, 0x00, 0x08, 0x00, 0xFF, 0xFF, 0x08, 0x00, 0xF6, 0xFF, 0x02, 0x00, 0xFE, 0xFF, 0xFF, 0xFF, 0x02, 0x00, 0x05, 0x00, 0x08, 0x00, 0xF9, 0xFF, 0xFC, 0xFF, + 0xF9, 0xFF, 0xFC, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0x01, 0x00, 0x00, 0x00, 0xF5, 0xFF, 0xFB, 0xFF, 0xFE, 0xFF, 0xF3, 0xFF, 0xFB, 0xFF, 0xF5, 0xFF, 0xF9, 0xFF, 0xF7, 0xFF, 0xF9, 0xFF, 0xF9, 0xFF, 0xF7, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0x03, 0x00, + 0xF5, 0xFF, 0x08, 0x00, 0xFB, 0xFF, 0x09, 0x00, 0x09, 0x00, 0xFE, 0xFF, 0xFD, 0xFF, 0xF9, 0xFF, 0xF8, 0xFF, 0xF2, 0xFF, 0xFD, 0xFF, 0xF7, 0xFF, 0x0E, 0x00, 0x0E, 0x00, 0x03, 0x00, 0x06, 0x00, 0x04, 0x00, 0xF8, 0xFF, 0x04, 0x00, 0xFE, 0xFF, + 0x02, 0x00, 0x03, 0x00, 0x05, 0x00, 0x04, 0x00, 0x0F, 0x00, 0xFE, 0xFF, 0xF1, 0xFF, 0xFA, 0xFF, 0x11, 0x00, 0x0E, 0x00, 0xFC, 0xFF, 0x10, 0x00, 0x04, 0x00, 0xFD, 0xFF, 0xFF, 0xFF, 0xFC, 0xFF, 0x08, 0x00, 0x14, 0x00, 0x03, 0x00, 0xFB, 0xFF, + 0x1C, 0x00, 0xFB, 0xFF, 0xF9, 0xFF, 0x06, 0x00, 0x0C, 0x00, 0x23, 0x00, 0x1F, 0x00, 0x06, 0x00, 0x04, 0x00, 0x02, 0x00, 0xE8, 0xFF, 0xFC, 0xFF, 0x09, 0x00, 0x0D, 0x00, 0xF1, 0xFF, 0xF6, 0xFF, 0xF7, 0xFF, 0x14, 0x00, 0xE6, 0xFF, 0x05, 0x00, + 0x0E, 0x00, 0x1D, 0x00, 0xEF, 0xFF, 0xDE, 0xFF, 0xFE, 0xFF, 0x20, 0x00, 0x06, 0x00, 0xF5, 0xFF, 0x0B, 0x00, 0x41, 0x00, 0x42, 0x00, 0x40, 0x00, 0x2F, 0x00, 0x44, 0x00, 0x32, 0x00, 0x1C, 0x00, 0xD8, 0xFF, 0xEB, 0xFF, 0x03, 0x00, 0xEF, 0xFF, + 0xDE, 0xFF, 0x98, 0xFF, 0x8D, 0xFF, 0x03, 0xFF, 0x4A, 0xFF, 0xD1, 0xFE, 0x8B, 0xFF, 0xA7, 0xFF, 0x5B, 0x00, 0x8C, 0xFF, 0x42, 0x00, 0xAB, 0xFE, 0x85, 0xFF, 0x60, 0xFC, 0x1E, 0xFE, 0x78, 0xFF, 0x6E, 0x0C, 0xE5, 0x0F, 0xFB, 0xF9, 0xCB, 0xEC, + 0x02, 0xF4, 0x8B, 0x03, 0x53, 0x01, 0xDF, 0xFF, 0x23, 0x05, 0x3D, 0x0D, 0x2E, 0x00, 0x20, 0xF4, 0x16, 0xFD, 0xB1, 0x08, 0x52, 0x07, 0x70, 0x03, 0xE1, 0x01, 0xD8, 0x02, 0xEC, 0xFD, 0xB8, 0xF4, 0xAC, 0xF7, 0xE4, 0x03, 0xF7, 0x09, 0xE0, 0x06, + 0xEF, 0xFF, 0xDE, 0xFE, 0xB5, 0x00, 0x10, 0xFD, 0x3B, 0xFB, 0x77, 0xFF, 0x1B, 0x05, 0x58, 0x02, 0x05, 0xFD, 0xFB, 0xFD, 0x14, 0x04, 0xF8, 0xFE, 0x6C, 0xF6, 0x85, 0xFB, 0x95, 0x04, 0x16, 0x00, 0xA1, 0xF9, 0x2B, 0xFB, 0xA3, 0xFF, 0xFD, 0x01, + 0x24, 0xFE, 0x42, 0xF9, 0xD4, 0x03, 0x16, 0x0A, + 0x70, 0xFC, 0x4E, 0xFA, 0x9D, 0x08, 0xF6, 0x09, 0x53, 0xFA, 0xC5, 0xF5, 0xD7, 0x05, 0xC6, 0x0F, 0x5D, 0x0A, + 0x99, 0x01, 0x8F, 0xFD, 0xEB, 0x01, 0xB0, 0x04, 0x2E, 0x03, 0x32, 0x01, 0x96, 0x02, 0x81, 0xFD, 0x78, 0xF7, 0xA9, 0xF8, 0xEF, 0xF7, 0x33, 0xFC, 0x29, 0xFD, 0x65, 0xFC, 0xBA, 0xF9, 0x90, 0xF3, 0x10, 0xF8, 0xC2, 0x02, 0x29, 0x05, 0xF7, 0x03, + 0x6F, 0x0A, + 0x75, 0x0E, 0xC9, 0x0D, 0xF6, 0x05, 0x99, 0xFC, 0xB2, 0xFA, 0xF1, 0x01, 0x6C, 0x0B, 0x76, 0x0E, 0xF0, 0x0B, 0x7D, 0x05, 0xFC, 0xFC, 0xC1, 0xF4, 0xCB, 0xEC, 0x9E, 0xEB, 0xB2, 0xED, 0xAD, 0xE5, 0x7B, 0xD2, 0x27, 0xEA, 0x24, 0x2F, 0x7A, 0x2E, + 0x39, 0x03, 0x57, 0xE6, 0xBF, 0xEC, 0x00, 0x01, 0x6C, 0x05, 0x68, 0x0C, 0x5B, 0x14, 0x6A, 0x0E, 0x4B, 0xFD, 0x84, 0xF6, 0x61, 0x08, 0x70, 0x1E, 0xDC, 0x14, 0xD5, 0x0B, 0xBB, 0x03, 0x06, 0x00, 0xE5, 0xFA, 0x1B, 0xED, 0x41, 0xEC, 0x34, 0xEA, + 0xC1, 0xEA, 0x4A, 0xE4, 0x8E, 0xF2, 0x2F, 0x1B, 0x13, 0x21, 0xA2, 0x09, 0x10, 0xEC, 0x5B, 0xEB, 0x8D, 0xFC, 0x4A, 0x09, 0x6A, 0x10, 0xF9, 0x0C, 0x9A, 0x06, 0x43, 0x00, 0x00, 0x04, 0x4C, 0x09, 0x11, 0x15, 0xCA, 0x15, 0x82, 0x0A, + 0x8D, 0xFE, 0x94, 0xF9, 0xBF, 0xF3, 0xD9, 0xEE, 0x20, 0xE6, 0xB0, 0xE8, 0xA8, 0xD8, 0x50, 0xE5, 0x41, 0x21, 0x9C, 0x2A, 0xAD, 0x10, 0x7C, 0xDE, 0x58, 0xDE, 0xB6, 0x03, 0xC6, 0x16, 0xFE, 0x13, 0xDF, 0x07, 0xB5, 0xFF, 0x25, 0xFB, 0x0B, 0x01, + 0x60, 0x0E, 0x0F, 0x1B, 0x35, 0x1B, 0xB3, 0x0C, 0x25, 0xFA, 0xE3, 0xF8, 0xF7, 0xFF, 0x94, 0xF4, 0xA5, 0xE7, 0xE8, 0xE7, 0x77, 0xE0, 0x74, 0xD5, 0x6C, 0xFF, 0x86, 0x2E, 0xA5, 0x24, 0x1D, 0xFB, 0x7C, 0xDA, 0xD3, 0xEC, 0xEF, 0x05, 0xD2, 0x11, + 0x60, 0x14, 0x7F, 0x0E, 0xFD, 0x08, 0xBA, 0xF6, 0xEC, 0xF1, 0x2A, 0x0E, 0xE4, 0x24, 0xB1, 0x1D, 0x9D, 0x05, 0x3C, 0xF3, 0xF3, 0xF7, 0xEB, 0xF4, 0x4A, 0xF1, 0xA2, 0xEB, 0xC0, 0xE8, 0x97, 0xD2, 0xF0, 0xE4, 0x19, 0x1C, 0x71, 0x33, 0x78, 0x17, + 0xC5, 0xDF, 0xB7, 0xDE, 0xE8, 0xFB, 0x3E, 0x17, 0x89, 0x0F, 0x4F, 0x10, 0x5D, 0x06, 0xF6, 0xF9, 0x6A, 0xF5, 0x77, 0x05, 0x42, 0x1E, 0x46, 0x1C, 0xFE, 0x0C, 0xF4, 0xF7, 0x54, 0xFA, 0x97, 0xF9, 0x4B, 0xF6, 0x14, 0xEA, 0x4B, 0xED, 0xA5, 0xE1, + 0x3B, 0xD6, 0x98, 0x09, 0xD2, 0x24, 0xF9, 0x20, 0x7E, 0xF6, 0xF0, 0xDE, 0x3B, 0xF2, 0xA4, 0x09, 0x8D, 0x14, 0xCD, 0x0B, 0x4A, 0x08, 0xB7, 0xFC, 0x76, 0xF6, 0xA9, 0xFE, 0x16, 0x17, 0x1C, 0x20, 0xD4, 0x19, 0x0C, 0x06, 0x25, 0xF4, 0x99, 0xF7, + 0x95, 0xF5, 0x01, 0xF5, 0xE6, 0xF0, 0x21, 0xEB, 0x8A, 0xD1, 0x09, 0xE6, 0x14, 0x17, 0xBA, 0x2E, 0x73, 0x1A, 0xD6, 0xDE, 0xB5, 0xD9, 0x96, 0xFB, 0x4E, 0x15, 0x22, 0x11, 0xD4, 0x0B, 0xAF, 0x05, 0x56, 0xFF, 0xB1, 0xFC, 0x97, 0x04, 0x95, 0x17, + 0xA0, 0x1C, 0x96, 0x12, 0x92, 0xFC, 0xF5, 0xF3, 0x14, 0xF8, 0xD2, 0xF5, 0xF2, 0xF0, 0x41, 0xED, 0x62, 0xDA, 0x50, 0xD1, 0xC5, 0x03, 0x00, 0x2C, 0xCB, 0x27, 0xE6, 0xF6, 0xA2, 0xD1, 0xBD, 0xEC, 0x32, 0x0E, 0xB8, 0x1E, 0x3A, 0x10, 0xEB, 0x03, + 0xEC, 0x00, 0x34, 0xF8, 0x74, 0x02, 0xB2, 0x14, 0x0B, 0x24, 0xE3, 0x1A, 0x67, 0xFF, 0x59, 0xEC, 0x23, 0xF4, 0x50, 0xFB, 0x26, 0xF7, 0xB3, 0xF0, 0x7E, 0xE8, 0x50, 0xCF, 0x94, 0xE3, 0x2A, 0x17, 0xEA, 0x2D, 0x12, 0x18, 0x3A, 0xDF, 0x4A, 0xD8, + 0xA5, 0xFE, 0x4E, 0x19, 0xFE, 0x19, 0x0B, 0x0E, 0x74, 0x05, 0x28, 0x00, 0x6A, 0xF8, 0xCA, 0x07, 0x59, 0x1B, 0x79, 0x1D, 0x1A, 0x0D, 0x96, 0xF7, 0xA7, 0xF6, 0x65, 0xF7, 0x14, 0xF5, 0x93, 0xF3, 0xA4, 0xEC, 0xF5, 0xDA, 0x76, 0xCF, 0x2B, 0xFB, + 0xBF, 0x28, 0xFA, 0x29, 0xCF, 0xF8, 0x46, 0xD6, 0x6D, 0xF2, 0x09, 0x0E, 0x4B, 0x18, 0x3B, 0x0E, 0x4E, 0x09, 0x59, 0x04, 0x42, 0xFC, 0xCF, 0x00, 0x09, 0x0E, 0x3A, 0x1F, 0x47, 0x1B, 0xF8, 0x05, 0xD2, 0xEF, 0x1F, 0xF5, 0x9B, 0xFA, 0xC0, 0xF7, + 0xD5, 0xEF, 0xC6, 0xE6, 0xA6, 0xD2, 0x4E, 0xE4, 0xF6, 0x10, 0x8A, 0x27, 0x11, 0x14, 0xAD, 0xDF, 0x3F, 0xDD, 0xF6, 0x00, 0x84, 0x20, 0xA2, 0x18, 0x2D, 0x02, 0x3A, 0x01, 0x87, 0x02, 0x03, 0x05, 0x3F, 0x0A, + 0xF4, 0x12, 0x9E, 0x18, 0xDB, 0x0E, 0xBF, 0x00, 0xB0, 0xF4, 0xE3, 0xF1, 0x5B, 0xF6, 0x1D, 0xFA, 0x62, 0xF0, 0x3F, 0xDC, 0x67, 0xCF, 0x4F, 0xF9, 0xC2, 0x25, 0x1B, 0x28, 0x01, 0xF7, 0xA7, 0xCF, 0x03, 0xF5, 0x94, 0x11, 0x14, 0x1E, 0xE7, 0x0B, + 0xAA, 0x02, 0x55, 0x07, 0x22, 0xFE, 0x1F, 0x04, 0x13, 0x0D, 0x0E, 0x1B, 0xF6, 0x12, 0x6C, 0x04, 0xCA, 0xF4, 0xC4, 0xF5, 0xC5, 0xFC, 0x42, 0xF8, 0x21, 0xEF, 0xF2, 0xE4, 0x73, 0xD3, 0x7B, 0xE4, 0x87, 0x16, 0x15, 0x2C, 0xAA, 0x0F, 0x57, 0xDF, + 0x56, 0xE1, 0xF5, 0x03, 0xC6, 0x19, 0x47, 0x14, 0x46, 0x08, 0x62, 0x02, 0x44, 0x01, 0x6E, 0x00, 0x73, 0x07, 0x92, 0x16, 0x4F, 0x1B, 0x79, 0x0C, 0xE2, 0xF5, 0x9E, 0xF3, 0x57, 0xFE, 0x5F, 0xF6, 0xF8, 0xEE, 0x2D, 0xEE, 0x77, 0xDC, 0xD1, 0xDE, + 0xF8, 0x04, 0x70, 0x21, 0xCE, 0x18, 0x91, 0xF1, 0x95, 0xE4, 0xAE, 0xF5, 0x0F, 0x11, 0x96, 0x19, 0x7E, 0x0A, + 0xF7, 0x03, 0xBB, 0xFF, 0x8A, 0x03, 0xBB, 0x05, 0x05, 0x0F, 0xE5, 0x15, 0xA8, 0x0B, 0x2C, 0x03, 0xBA, 0xFA, 0xB2, 0xF7, 0xDF, 0xF6, 0xBB, 0xF4, 0x4F, 0xEE, 0xAC, 0xDB, 0xD5, 0xD4, 0xEC, 0xFE, 0xB8, 0x26, 0x63, 0x1F, 0x01, 0xF0, 0x1E, 0xD9, + 0x5D, 0xFB, 0x04, 0x16, 0x91, 0x1B, 0x7A, 0x08, 0x41, 0xFB, 0xBE, 0x01, 0x33, 0x03, 0xE3, 0x0D, 0x26, 0x10, 0xA5, 0x13, 0x2B, 0x0F, 0x4F, 0xFE, 0x53, 0xF6, 0xB9, 0xFC, 0x34, 0xFF, 0x8E, 0xEE, 0x53, 0xEE, 0xD7, 0xE6, 0x8D, 0xD5, 0x48, 0xEB, + 0xA6, 0x18, 0xEF, 0x26, 0x41, 0x0B, 0x57, 0xE0, 0x15, 0xE4, 0x2F, 0x05, 0x23, 0x19, 0x24, 0x18, 0x0A, + 0x05, 0x9A, 0x06, 0xC0, 0x00, 0x8E, 0xFC, 0x9B, 0x06, 0xDE, 0x17, 0xB9, 0x1E, 0xDF, 0x07, 0x70, 0xF6, 0xBD, 0xF7, 0xC0, 0xF8, 0x98, 0xF6, 0xE5, 0xF1, 0xA3, 0xEA, 0xE2, 0xD6, 0xED, 0xDB, 0x8B, 0x0A, + 0xE3, 0x24, 0x3E, 0x1F, 0xC1, 0xED, 0x83, 0xDB, 0xA9, 0xF7, 0xC7, 0x12, 0x98, 0x18, 0x59, 0x0A, + 0x99, 0x09, 0x8A, 0x00, 0xC0, 0xF9, 0x13, 0x02, 0xAD, 0x14, 0xC6, 0x1C, 0xAA, 0x15, 0xBF, 0x03, 0x4B, 0xF4, 0xEF, 0xF5, 0x6E, 0xF6, 0x3C, 0xF2, 0x2E, 0xEF, 0xB1, 0xE9, 0x86, 0xD7, 0x4E, 0xE8, 0xD5, 0x13, 0x61, 0x29, 0xA0, 0x0B, 0xA6, 0xE1, + 0x0E, 0xE5, 0xC1, 0x07, 0x76, 0x1D, 0x57, 0x0E, 0xE8, 0x00, 0xAA, 0x03, 0xF8, 0x01, 0xD9, 0x03, 0x26, 0x0A, + 0x29, 0x15, 0x7B, 0x18, 0x29, 0x0A, + 0x49, 0xFD, 0xCF, 0xF7, 0x16, 0xF9, 0x39, 0xF3, 0x2E, 0xEF, 0x4A, 0xED, 0x37, 0xDD, 0x63, 0xDC, 0xD6, 0x02, 0x78, 0x23, 0x93, 0x1D, 0x72, 0xF2, 0xFE, 0xDE, 0x1E, 0xF8, 0x7B, 0x11, 0xD5, 0x17, 0x73, 0x09, 0x1B, 0x01, 0xE8, 0x02, 0x07, 0x02, + 0x60, 0x08, 0xE7, 0x10, 0xC0, 0x16, 0xE7, 0x10, 0xBE, 0xFF, 0x9F, 0xF6, 0x89, 0xFB, 0x8A, 0xFD, 0xED, 0xF5, 0x38, 0xEB, 0xB2, 0xE0, 0x34, 0xCF, 0x24, 0xEB, 0xD3, 0x1F, 0x34, 0x30, 0x57, 0x09, 0x44, 0xD9, 0x0D, 0xE3, 0x8A, 0x07, 0x63, 0x1E, + 0x93, 0x13, 0x91, 0x08, 0xC8, 0xFF, 0x2A, 0xFC, 0xE2, 0xFE, 0xE0, 0x0A, + 0xF8, 0x1B, 0x0D, 0x1D, 0x39, 0x0C, 0xC3, 0xF4, 0xD6, 0xF3, 0xAE, 0xFA, 0xE4, 0xF7, 0xCD, 0xEF, 0xC2, 0xE9, 0xA6, 0xD5, 0xB5, 0xDA, 0xCF, 0x06, 0x77, 0x27, 0x49, 0x1D, 0xAE, 0xEE, 0xFC, 0xDE, 0x35, 0xF8, 0xD2, 0x13, 0x30, 0x15, 0x82, 0x0A, + 0x48, 0x05, 0x43, 0x00, 0xA8, 0x00, 0x07, 0x08, 0x76, 0x16, 0x70, 0x1C, 0x69, 0x0E, 0x77, 0xFE, 0x0B, 0xF7, 0xC0, 0xFB, 0x4F, 0xFA, 0x7A, 0xF0, 0x7D, 0xEC, 0xB1, 0xE7, 0x29, 0xD3, 0xC2, 0xE4, 0x29, 0x17, 0x68, 0x2B, 0x95, 0x0D, 0x42, 0xDD, + 0xD4, 0xE0, 0x8D, 0x07, 0x40, 0x1C, 0x15, 0x13, 0x9D, 0x09, 0x6C, 0x05, 0xC6, 0x00, 0x40, 0x00, 0x18, 0x05, 0x94, 0x14, 0x7D, 0x1B, 0x13, 0x13, 0xE5, 0xFE, 0xCC, 0xF5, 0x59, 0xF6, 0x5E, 0xF5, 0x74, 0xF4, 0xBD, 0xEB, 0x71, 0xDF, 0x2D, 0xCF, + 0x6A, 0xEF, 0x8E, 0x20, 0x89, 0x2B, 0x63, 0x01, 0x1F, 0xE1, 0xBA, 0xE8, 0xB4, 0x05, 0xEC, 0x17, 0xC1, 0x10, 0x46, 0x0F, 0x1D, 0x06, 0xB6, 0xFD, 0x98, 0xFE, 0xDE, 0x0C, 0x1D, 0x1E, 0x70, 0x19, 0xC5, 0x05, 0xF4, 0xF7, 0x22, 0xF6, 0xAA, 0xFB, + 0x2C, 0xF8, 0xCC, 0xF1, 0x3D, 0xEA, 0xE8, 0xD2, 0x5D, 0xD0, 0x43, 0x04, 0x0C, 0x28, 0x00, 0x22, 0x90, 0xF4, 0xED, 0xDE, 0xBC, 0xF4, 0x5F, 0x0B, 0x7F, 0x14, 0x3D, 0x0F, 0xAF, 0x11, 0xAF, 0x07, 0xEA, 0xFA, 0x14, 0xFB, 0x2D, 0x12, 0x37, 0x21, + 0x91, 0x18, 0xF6, 0x02, 0x90, 0xF8, 0xAF, 0xF7, 0x05, 0xF0, 0x46, 0xF1, 0xBA, 0xF1, 0x37, 0xE8, 0xE7, 0xCC, 0x1C, 0xDE, 0xE1, 0x10, 0x35, 0x2F, 0x09, 0x17, 0xE2, 0xE2, 0xF8, 0xDC, 0x4C, 0xFF, 0xE2, 0x18, 0x6F, 0x17, 0xDB, 0x0B, 0x99, 0x0A, + 0x68, 0x03, 0x6E, 0xFA, 0xCE, 0x06, 0x67, 0x1A, 0xE6, 0x1F, 0xBA, 0x0C, 0x8F, 0xFD, 0x33, 0xF5, 0x8A, 0xF9, 0x62, 0xF8, 0xAF, 0xF0, 0x15, 0xE6, 0xE2, 0xDF, 0x3E, 0xD6, 0xAE, 0xF1, 0x4B, 0x15, 0x11, 0x24, 0xD0, 0x08, 0xAB, 0xDD, 0x0C, 0xE7, + 0x43, 0x0A, + 0x4A, 0x22, 0x25, 0x13, 0xB9, 0x01, 0xFA, 0x00, 0x8A, 0x01, 0x35, 0x08, 0x42, 0x12, 0x01, 0x18, 0xC3, 0x17, 0x5A, 0x07, 0x7D, 0xF9, 0x83, 0xFA, 0x84, 0xFC, 0x17, 0xF1, 0x99, 0xF1, 0x78, 0xED, 0xDC, 0xDC, 0x8C, 0xD0, 0x25, 0xF1, 0x57, 0x1A, + 0x58, 0x26, 0x81, 0x03, 0x5E, 0xDB, 0x1F, 0xEE, 0xF7, 0x09, 0xC2, 0x16, 0xC2, 0x0F, 0x21, 0x0B, 0x6D, 0x0B, 0x04, 0x02, 0xA9, 0x01, 0x02, 0x0C, 0x76, 0x1A, 0x3D, 0x18, 0x6F, 0x0C, 0x40, 0xFD, 0x9A, 0xF6, 0x5F, 0xFA, 0x1E, 0xF3, 0x39, 0xF1, + 0xC2, 0xEB, 0x43, 0xDF, 0xD5, 0xCF, 0xD4, 0xEE, 0x1E, 0x17, 0xD8, 0x21, 0x37, 0x09, 0x78, 0xE5, 0x77, 0xEA, 0xBC, 0x01, 0xF0, 0x12, 0x5B, 0x13, 0xE4, 0x0F, 0x37, 0x09, 0x22, 0x03, 0xE2, 0x01, 0xA2, 0x0B, 0xC2, 0x19, 0xC4, 0x19, 0x42, 0x0B, + 0x4A, 0xFB, 0x54, 0xFA, 0x7B, 0xFD, 0xBC, 0xF6, 0xDC, 0xEF, 0xE4, 0xEB, 0xF3, 0xDC, 0xA9, 0xD0, 0xEF, 0xED, 0x89, 0x0E, 0x4A, 0x1E, 0xC6, 0x0E, 0x8C, 0xEE, 0xA8, 0xE9, 0x1C, 0xFF, 0x31, 0x10, 0x88, 0x0D, 0x00, 0x0E, 0xFC, 0x0E, 0x63, 0x06, + 0x10, 0xFF, 0x7D, 0x07, 0x68, 0x17, 0xEC, 0x1B, 0xCD, 0x0F, 0x4A, 0xFB, 0xD4, 0xF6, 0xC4, 0xFC, 0xE3, 0xF8, 0xBB, 0xF3, 0x4D, 0xED, 0x42, 0xE7, 0x82, 0xD3, 0x61, 0xDB, 0x5B, 0x06, 0xDD, 0x25, 0x76, 0x1B, 0xB5, 0xF0, 0x82, 0xDD, 0x52, 0xF4, + 0x80, 0x14, 0x92, 0x1A, 0xD3, 0x0D, 0xD9, 0x05, 0x37, 0x03, 0x28, 0x03, 0x7E, 0x08, 0x8B, 0x18, 0x8D, 0x1D, 0x70, 0x0D, 0x7E, 0x00, 0x07, 0xF7, 0x8D, 0xFB, 0x70, 0xF9, 0x0E, 0xF6, 0x4B, 0xEE, 0x16, 0xE9, 0x10, 0xDC, 0xD7, 0xD8, 0xB9, 0xF8, + 0xED, 0x16, 0x96, 0x1F, 0xC6, 0xFD, 0x4A, 0xE2, 0xBC, 0xEF, 0x7A, 0x12, 0x5D, 0x19, 0x2A, 0x06, 0xF0, 0x03, 0xBD, 0x09, 0x61, 0x08, 0x4D, 0x0A, + 0x89, 0x0D, 0x17, 0x17, 0x29, 0x13, 0xB2, 0x07, 0x34, 0xFD, 0xDD, 0xF7, 0x44, 0xF9, 0xD6, 0xF2, 0x76, 0xF4, 0x99, 0xEE, 0x7B, 0xE0, 0x8C, 0xCE, 0x67, 0xE7, 0x98, 0x15, 0xC4, 0x24, 0x2C, 0x09, 0x91, 0xE8, 0xB7, 0xEB, 0xAF, 0x00, 0x99, 0x15, + 0xD1, 0x0D, 0x71, 0x0F, 0x0C, 0x0D, 0x35, 0x05, 0x56, 0x01, 0x9B, 0x09, 0xF4, 0x1A, 0xCC, 0x18, 0x46, 0x0B, 0xAD, 0xFB, 0xA0, 0xF8, 0x08, 0xFE, 0x1B, 0xFD, 0x5A, 0xF4, 0xE4, 0xF0, 0x78, 0xE7, 0xEC, 0xCE, 0xC4, 0xD4, 0x61, 0xFE, 0xD0, 0x1A, + 0xD8, 0x22, 0xE8, 0xFF, 0x3B, 0xE0, 0xD6, 0xEE, 0x1B, 0x07, 0xF1, 0x12, 0xE8, 0x11, 0x6B, 0x11, 0xED, 0x0E, 0x88, 0xFE, 0x5B, 0xFC, 0x5E, 0x0F, 0xD3, 0x20, 0x2B, 0x19, 0x1D, 0x06, 0x19, 0xFD, 0xCE, 0xFB, 0x4C, 0xFC, 0x52, 0xEF, 0xB6, 0xEE, + 0xB0, 0xF4, 0xDB, 0xEA, 0x9D, 0xCE, 0x2A, 0xD6, 0x1A, 0x0A, + 0xFD, 0x27, 0x3D, 0x15, 0x5D, 0xE9, 0x55, 0xE1, 0x63, 0xFA, 0x29, 0x15, 0xB4, 0x15, 0x14, 0x0E, 0x0E, 0x0C, 0x9C, 0x09, 0x73, 0x02, 0x72, 0x02, 0xF5, 0x16, 0x60, 0x1E, 0x75, 0x13, 0xF1, 0x00, 0x64, 0xF9, 0x11, 0xFB, 0x8C, 0xFC, 0x5B, 0xF5, + 0x21, 0xEE, 0x92, 0xED, 0xFF, 0xE7, 0x98, 0xD0, 0xC4, 0xDA, 0xEE, 0x07, 0x81, 0x28, 0x70, 0x17, 0xF3, 0xEC, 0x09, 0xE1, 0xF8, 0xF6, 0xDB, 0x11, 0xF0, 0x14, 0x56, 0x13, 0xA7, 0x0B, 0x9C, 0x06, 0x2F, 0xFE, 0x81, 0x07, 0x3C, 0x1E, 0xBC, 0x21, + 0x36, 0x11, 0xE1, 0xFA, 0x37, 0xF7, 0xF1, 0xFA, 0x32, 0x00, 0x27, 0xFA, 0xCD, 0xF1, 0x4B, 0xEA, 0xDF, 0xDC, 0xF1, 0xCA, 0x4E, 0xE0, 0x53, 0x0F, 0x5E, 0x24, 0x2E, 0x15, 0x3E, 0xED, 0xC3, 0xE1, 0x9C, 0xF6, 0xF6, 0x0F, 0xD7, 0x14, 0xF0, 0x11, + 0x75, 0x0F, 0x25, 0x0B, 0x67, 0xFF, 0xD4, 0x00, 0xF2, 0x14, 0x0C, 0x23, 0xF5, 0x16, 0x94, 0x02, 0x59, 0xF8, 0x2A, 0xF9, 0x0B, 0x00, 0xCA, 0xFF, 0x1A, 0xFA, 0x6D, 0xEF, 0xFC, 0xE1, 0x3A, 0xCD, 0x85, 0xCC, 0xCF, 0xF8, 0xC7, 0x21, 0x53, 0x23, + 0x0F, 0xFD, 0x42, 0xDF, 0x6A, 0xEC, 0xE7, 0x03, 0xAA, 0x13, 0x9D, 0x12, 0x3B, 0x10, 0x8F, 0x11, 0xA2, 0x0A, + 0x85, 0xFE, 0x6D, 0x05, 0xA5, 0x14, 0xD0, 0x20, 0x15, 0x18, 0x5B, 0xFE, 0xED, 0xEE, 0x73, 0xF4, 0xF4, 0x01, 0xFC, 0xFD, 0x07, 0xF3, 0x46, 0xE8, 0x53, 0xE4, 0x23, 0xD3, 0x5C, 0xD7, 0x90, 0x01, 0xDF, 0x25, 0x1D, 0x25, 0xC3, 0xF7, 0x9C, 0xD7, + 0x32, 0xE9, 0x7D, 0x0D, 0xE9, 0x1C, 0x75, 0x16, 0x0D, 0x0D, 0x92, 0x05, 0x31, 0x02, 0x2A, 0x06, 0x93, 0x14, 0xF7, 0x1D, 0xEF, 0x15, 0x9D, 0x06, 0xE1, 0xF6, 0xF8, 0xF8, 0x54, 0x00, 0xF3, 0x01, 0x5C, 0xF7, 0x3D, 0xEF, 0x55, 0xE9, 0x1A, 0xE2, + 0xC4, 0xCF, 0x92, 0xDD, 0x2D, 0x08, 0x77, 0x21, 0xC5, 0x17, 0x5C, 0xF5, 0x1F, 0xE7, 0x34, 0xF1, 0xB0, 0x0D, 0x31, 0x0A, + 0xA3, 0x0E, 0xB1, 0x0D, 0x2D, 0x0B, 0xE3, 0x08, 0x2D, 0x05, 0x34, 0x11, 0x52, 0x17, 0x64, 0x14, 0x8D, 0x08, 0x72, 0x02, 0x93, 0xFE, 0xD8, 0x01, 0xB1, 0xFD, 0x83, 0xF1, 0x01, 0xF2, 0x47, 0xF3, 0x8C, 0xF0, 0xD7, 0xDF, 0x4B, 0xCC, 0x46, 0xEA, + 0x3B, 0x11, 0x04, 0x1E, 0xF0, 0x0C, 0x3F, 0xF0, 0x87, 0xE6, 0x91, 0x01, 0x27, 0x14, 0x26, 0x0C, 0xF8, 0x06, 0x0B, 0x05, 0x0A, + 0x0F, 0xF9, 0x07, 0xCD, 0x09, 0x6D, 0x11, 0x54, 0x15, 0x07, 0x12, 0x20, 0x07, 0x1F, 0x04, 0x7F, 0xFD, 0x4B, 0x00, 0xCC, 0xFE, 0x78, 0xF9, 0xCA, 0xF7, 0xE0, 0xEF, 0xA2, 0xE5, 0x44, 0xDA, 0x58, 0xD8, 0x35, 0xF3, 0xCC, 0x0C, 0xB0, 0x1A, 0xB7, + 0x0D, 0x4B, 0xEB, 0x76, 0xE3, 0x69, 0xFB, 0x26, 0x0E, 0x00, 0x11, 0x61, 0x0E, 0x53, 0x09, 0x8D, 0x04, 0xF8, 0xFC, 0xCB, 0x08, 0xCC, 0x16, 0xB1, 0x1A, 0x16, 0x14, 0x2C, 0x04, 0xFA, 0x00, 0xC6, 0x00, 0x4E, 0x04, 0x94, 0x00, 0x53, 0xFA, 0xB1, + 0xF8, 0x18, 0xF7, 0xCE, 0xEC, 0x96, 0xDE, 0x55, 0xDB, 0x95, 0xEA, 0xB8, 0x04, 0x3C, 0x16, 0x7C, 0x10, 0x4E, 0xF0, 0x3C, 0xE5, 0x01, 0xF7, 0x39, 0x0A, + 0xC8, 0x0A, + 0x25, 0x04, 0xC8, 0x01, 0x36, 0x08, 0xF4, 0x0A, + 0xD2, 0x09, 0xDB, 0x0C, 0x4E, 0x13, 0xDB, 0x14, 0x06, 0x0D, 0x4A, 0x05, 0x68, 0x08, 0xE6, 0x0A, + 0xEB, 0x04, 0x65, 0xFC, 0x1B, 0xFB, 0x5E, 0xF9, 0x21, 0xF6, 0x48, 0xF5, 0x67, 0xE8, 0x10, 0xE4, 0xD2, 0xE2, 0x41, 0xF1, 0xB7, 0x07, 0xCF, 0x0D, 0x32, 0x00, 0xF6, 0xEE, 0x5D, 0xEA, 0x9F, 0xF7, 0x64, 0x0A, + 0xB5, 0x0C, 0x32, 0x07, 0xF5, 0x02, 0xCF, 0x01, 0xFC, 0x03, 0x51, 0x09, 0x39, 0x13, 0x19, 0x19, 0xF5, 0x11, 0x2B, 0x0B, 0xF4, 0x07, 0xC0, 0x09, 0x8A, 0x09, 0xD2, 0x04, 0x74, 0xFE, 0xF7, 0xFF, 0xF9, 0x00, 0x20, 0xF7, 0xCC, 0xE9, 0x31, 0xE4, + 0xBA, 0xE6, 0x02, 0xE5, 0xC8, 0xEF, 0x3A, 0x01, 0xFB, 0x13, 0xEB, 0x08, 0x6C, 0xE7, 0xAE, 0xE2, 0x71, 0xFC, 0x30, 0x0E, 0xF1, 0x0A, + 0xDC, 0xFF, 0x9C, 0x02, 0x76, 0x0D, 0x6F, 0x09, 0x86, 0x04, 0xFF, 0x02, 0xE9, 0x0C, 0x15, 0x19, 0x62, 0x13, 0x61, 0x0B, 0x13, 0x09, 0x61, 0x06, 0x19, 0x05, 0x32, 0x03, 0xC4, 0x07, 0xB8, 0x02, 0x37, 0xFA, 0xF0, 0xF6, 0x62, 0xEF, 0x16, 0xEC, + 0x14, 0xE9, 0xFF, 0xE2, 0x0B, 0xE9, 0xBD, 0xFC, 0xF9, 0x0B, 0x64, 0x03, 0x39, 0xF0, 0x0C, 0xEB, 0x79, 0xF9, 0xD4, 0x06, 0x2F, 0x06, 0x44, 0x05, 0xE8, 0x05, 0xA0, 0x04, 0xA2, 0x00, 0x16, 0xFF, 0xC3, 0x06, 0x5A, 0x13, 0x0C, 0x17, 0x26, 0x11, + 0x8E, 0x08, 0x50, 0x09, 0x96, 0x0E, 0x95, 0x0A, + 0xF9, 0x02, 0x92, 0xFE, 0x90, 0x04, 0xF2, 0x0A, + 0x50, 0x04, 0x39, 0xF5, 0x8E, 0xED, 0xA9, 0xF0, 0xF5, 0xEE, 0x6E, 0xE2, 0x5D, 0xDB, 0xA4, 0xF3, 0xF7, 0x0A, + 0xA8, 0x0D, 0x57, 0x00, 0xA1, 0xEB, 0x43, 0xEB, 0xAA, 0xFD, 0x2F, 0x06, 0x9D, 0x00, 0x8C, 0x02, 0x7E, 0x0A, + 0x32, 0x0C, 0x78, 0x02, 0xEB, 0xFE, 0x60, 0x07, 0x8F, 0x10, 0xFE, 0x15, 0x12, 0x12, 0x77, 0x0E, 0x4F, 0x07, 0xDD, 0x04, 0xA7, 0x07, 0x85, 0x05, 0xDF, 0x05, 0xDE, 0x08, 0x84, 0x08, 0x67, 0xFE, 0x7D, 0xF0, 0x5A, 0xF1, 0xB5, 0xF9, 0xAA, 0xFB, + 0x1E, 0xEA, 0x13, 0xD8, 0x27, 0xE5, 0x50, 0xF6, 0xE1, 0x07, 0xBD, 0x0D, 0x8A, 0xFB, 0xF6, 0xF2, 0x49, 0xF2, 0xDD, 0xF6, 0x49, 0x00, 0xB1, 0x03, 0x2B, 0x08, 0x20, 0x0C, 0x3A, 0x04, 0x2D, 0xFD, 0xC7, 0x03, 0x17, 0x0B, 0x74, 0x13, 0x2D, 0x13, + 0x6C, 0x0B, 0xFD, 0x0A, + 0xC4, 0x0A, + 0x7A, 0x07, 0x53, 0x06, 0x60, 0x08, 0x17, 0x09, 0xFE, 0x05, 0x77, 0x02, 0xBC, 0xFA, 0x5F, 0xFA, 0x04, 0xFC, 0x1C, 0xF9, 0xF9, 0xEE, 0x9C, 0xE8, 0x53, 0xE3, 0xC9, 0xE2, 0x02, 0xF5, 0xBE, 0x09, 0x41, 0x0F, 0x87, 0xFD, 0x5E, 0xF0, 0x76, 0xF1, + 0x85, 0xF9, 0xDC, 0xFF, 0xEA, 0xFD, 0xAD, 0x05, 0xA8, 0x0C, 0xF1, 0x08, 0xA6, 0xFF, 0xBE, 0xFC, 0xB2, 0x03, 0x21, 0x0C, 0x73, 0x12, 0x07, 0x14, 0x13, 0x0F, 0xDC, 0x09, 0x83, 0x05, 0xAC, 0x01, 0x1F, 0x08, 0xF0, 0x09, 0xA4, 0x03, 0x71, 0x00, + 0x71, 0x02, 0x79, 0x08, 0x54, 0x04, 0x88, 0xF8, 0x36, 0xF0, 0x74, 0xF1, 0xEA, 0xF2, 0x60, 0xEC, 0x24, 0xE5, 0x93, 0xE7, 0xC9, 0xFA, 0x8C, 0x03, 0x3C, 0xFF, 0x81, 0xF8, 0xAB, 0xF6, 0x48, 0xFC, 0x29, 0x06, 0xE6, 0x00, 0x42, 0xFA, 0xD2, 0x03, + 0xEC, 0x07, 0x21, 0x02, 0xBD, 0x00, 0xEF, 0x07, 0x6D, 0x10, 0x59, 0x11, 0x99, 0x0C, 0x20, 0x08, 0xDB, 0x04, 0x6A, 0x0B, 0x16, 0x0D, 0x7E, 0x08, 0x3A, 0x08, 0xE3, 0x03, 0xDF, 0x00, 0x7C, 0x01, 0x63, 0xFF, 0x26, 0xFF, 0xEC, 0xFE, 0x37, 0xFB, + 0x4C, 0xFD, 0xAF, 0xF6, 0xEC, 0xEB, 0x72, 0xE7, 0x33, 0xE6, 0x80, 0xEC, 0x3F, 0xF9, 0x2E, 0x04, 0x9E, 0x04, 0x2B, 0xFB, 0x27, 0xF2, 0xAA, 0xF7, 0xAE, 0x02, 0xCD, 0x05, 0xE7, 0xFF, 0xC0, 0xFF, 0xEC, 0x06, 0x71, 0x0A, + 0x89, 0x06, 0xA1, 0x04, 0x83, 0x08, 0x7D, 0x0D, 0x64, 0x0A, + 0x8E, 0x06, 0xDF, 0x0B, 0x0F, 0x14, 0x6D, 0x0E, 0xED, 0x02, 0x75, 0x00, 0x28, 0x07, 0xDF, 0x09, 0x76, 0x01, 0x6A, 0xF8, 0x9B, 0xF8, 0xE0, 0x01, 0x0E, 0x06, 0xF3, 0xFC, 0x13, 0xEE, 0x92, 0xEA, 0xAD, 0xEB, 0x8E, 0xE7, 0x82, 0xE5, 0xCD, 0xEB, + 0x81, 0x01, 0x45, 0x13, 0x4C, 0x09, 0xA0, 0xF5, 0x77, 0xEF, 0x79, 0xF7, 0x60, 0x03, 0x77, 0x04, 0x93, 0x01, 0xB9, 0x0B, 0xC4, 0x10, 0x00, 0x09, 0x4D, 0xFF, 0x5C, 0x00, 0xFF, 0x07, 0x21, 0x10, 0x51, 0x0E, 0xDE, 0x0A, + 0x8D, 0x0B, 0x7B, 0x08, 0x0F, 0x03, 0x40, 0xFF, 0xC2, 0x04, 0xCE, 0x09, 0x09, 0x08, 0x62, 0xFF, 0x3A, 0xF8, 0x4D, 0xF7, 0x01, 0xFA, 0x40, 0xFA, 0xD3, 0xFB, 0xB3, 0xFC, 0x85, 0xF5, 0xCA, 0xEA, 0xAE, 0xE8, 0x14, 0xEB, 0x98, 0xF4, 0xCB, 0x01, + 0xCC, 0x08, 0xD1, 0x06, 0x8C, 0xFE, 0xB1, 0xF5, 0xDF, 0xF5, 0x71, 0xFF, 0x90, 0x04, 0x0C, 0x05, 0x06, 0x07, 0xA6, 0x0A, + 0x7E, 0x06, 0xE9, 0x03, 0x73, 0x05, 0x63, 0x09, 0x34, 0x0C, 0x1F, 0x0A, + 0xDB, 0x05, 0x5A, 0x06, 0x90, 0x06, 0x5B, 0x04, 0x12, 0x02, 0x9E, 0x02, 0x50, 0x07, 0x90, 0x06, 0x76, 0xFF, 0xA4, 0xF9, 0x95, 0xFA, 0x76, 0xFD, 0x9A, 0xFB, 0x41, 0xF7, 0x01, 0xF7, 0xF6, 0xF8, 0xD7, 0xFA, 0xCB, 0xF8, 0x27, 0xF4, 0x69, 0xF1, + 0xC3, 0xF3, 0x49, 0xFC, 0x24, 0x00, 0xCA, 0xFA, 0x0A, + 0xF8, 0x0F, 0xFE, 0xEE, 0x04, 0xF7, 0x04, 0xD2, 0xFF, 0x65, 0x00, 0x0E, 0x08, 0xEC, 0x09, 0xEF, 0x07, 0x98, 0x07, 0x58, 0x09, 0x35, 0x0B, 0xD4, 0x08, 0x98, 0x06, 0x0D, 0x08, 0xA9, 0x0A, + 0x5B, 0x09, 0xBB, 0x03, 0xB8, 0xFF, 0x05, 0x02, 0x71, 0x01, 0xB5, 0xFE, 0xA8, 0xFE, 0xE6, 0xFC, 0x4E, 0xF9, 0x67, 0xF5, 0x0D, 0xF1, 0x62, 0xED, 0xBC, 0xEF, 0x7E, 0xF1, 0x6E, 0xF0, 0x46, 0xF6, 0x51, 0x04, 0x72, 0x0C, 0x98, 0x04, 0x56, 0xF5, + 0x6F, 0xF1, 0x49, 0xFB, 0x58, 0x04, 0x58, 0x06, 0xC3, 0x04, 0xAC, 0x06, 0x3A, 0x09, 0x0E, 0x07, 0x74, 0x02, 0xF2, 0x01, 0xD2, 0x06, 0xE7, 0x0B, 0x5A, 0x0A, + 0x0E, 0x05, 0x28, 0x05, 0x48, 0x06, 0x7C, 0x03, 0x9A, 0x01, 0x12, 0x04, 0xB1, 0x08, 0x9D, 0x08, 0x8F, 0x00, 0xAF, 0xF8, 0x90, 0xF9, 0xBB, 0xFE, 0xED, 0xFE, 0x8B, 0xF9, 0x90, 0xF7, 0xC3, 0xFA, 0x5E, 0xF9, 0xEF, 0xF4, 0x9C, 0xF2, 0xD7, 0xF3, + 0xC6, 0xF8, 0x2F, 0xFF, 0x4C, 0x02, 0xB1, 0x00, 0x0F, 0xFD, 0x68, 0xFC, 0x59, 0x00, 0x34, 0x02, 0xBB, 0x00, 0x6D, 0x01, 0x43, 0x08, 0xD5, 0x0C, 0x60, 0x08, 0x87, 0x00, 0xDE, 0x00, 0xED, 0x06, 0xB4, 0x07, 0x53, 0x04, 0xDC, 0x02, 0x5D, 0x06, + 0x0A, + 0x08, 0xC4, 0x03, 0x74, 0xFE, 0x07, 0xFD, 0xFE, 0xFE, 0xD1, 0xFE, 0x95, 0xFD, 0xEF, 0xFD, 0xFB, 0xFE, 0x3B, 0xFE, 0xA1, 0xFC, 0xD2, 0xFC, 0x76, 0xFC, 0xE2, 0xF8, 0xFE, 0xF5, 0xF4, 0xF6, 0xE6, 0xF7, 0x56, 0xFA, 0x88, 0xFE, 0xC6, 0xFE, 0x7A, + 0xFC, 0x9B, 0xFE, 0x6D, 0x01, 0xB5, 0x01, 0xEA, 0xFE, 0xA5, 0xFD, 0xF9, 0x01, 0x31, 0x07, 0xC3, 0x05, 0x06, 0x02, 0xAD, 0x03, 0xC0, 0x08, 0xD2, 0x0A, + 0xAF, 0x07, 0x59, 0x04, 0xE8, 0x04, 0xF1, 0x05, 0xB2, 0x03, 0x73, 0x01, 0x56, 0x02, 0xCC, 0x03, 0xD1, 0x00, 0xAD, 0xFD, 0x9D, 0xFE, 0x90, 0xFF, 0x35, 0xFD, 0x40, 0xFB, 0xD3, 0xFA, 0x72, 0xFA, 0x5A, 0xF8, 0xD7, 0xF4, 0xC6, 0xF3, 0xD5, 0xF4, + 0x0D, 0xF8, 0x3B, 0xFF, 0x7F, 0x03, 0xD7, 0x01, 0x68, 0xFE, 0x4D, 0xFC, 0x68, 0xFD, 0x58, 0xFF, 0x47, 0x00, 0xAD, 0x02, 0x2C, 0x06, 0x22, 0x07, 0x7E, 0x05, 0xED, 0x02, 0x3E, 0x02, 0x59, 0x03, 0x42, 0x04, 0x0C, 0x05, 0x5C, 0x05, 0x93, 0x03, + 0xB5, 0x01, 0x75, 0x00, 0x4A, 0x01, 0x85, 0x02, 0x49, 0x01, 0xF9, 0xFE, 0x83, 0xFE, 0x0F, 0xFF, 0x05, 0xFE, 0x63, 0xFC, 0x65, 0xFC, 0xCC, 0xFD, 0xC9, 0xFC, 0x14, 0xFB, 0xF2, 0xFA, 0x03, 0xFC, 0xEB, 0xFD, 0x66, 0x00, 0x9D, 0xFF, 0x29, 0xFF, + 0x55, 0x00, 0x6F, 0xFF, 0x12, 0xFE, 0xC2, 0xFF, 0x8E, 0x01, 0x51, 0x01, 0x34, 0x02, 0x8E, 0x02, 0x25, 0x01, 0x0A, + 0x01, 0x1F, 0x02, 0x14, 0x02, 0xEE, 0x01, 0x34, 0x03, 0x5F, 0x04, 0x07, 0x04, 0xDD, 0x01, 0x50, 0xFF, 0xB4, 0xFE, 0xA6, 0xFF, 0x19, 0x01, 0xD9, 0x00, 0x17, 0xFF, 0xD6, 0xFE, 0x67, 0xFF, 0x6B, 0xFF, 0x27, 0xFF, 0xE5, 0xFD, 0x27, 0xFC, 0x5D, + 0xFD, 0xDA, 0xFF, 0x2C, 0xFF, 0xFA, 0xFC, 0x1D, 0xFC, 0x4C, 0xFD, 0x50, 0xFF, 0xA0, 0x00, 0x0D, 0x01, 0x28, 0x01, 0x2F, 0x00, 0x3E, 0x00, 0xB9, 0x00, 0x83, 0x00, 0xDD, 0xFF, 0xBF, 0xFF, 0xD3, 0x00, 0x0E, 0x03, 0x2A, 0x04, 0x7E, 0x02, 0x82, + 0x00, 0x8F, 0xFF, 0x37, 0x00, 0x5D, 0x01, 0xF1, 0x00, 0xCF, 0xFF, 0xF7, 0xFF, 0x3E, 0x01, 0x95, 0x01, 0x3E, 0x00, 0xEF, 0xFE, 0x37, 0xFF, 0xE0, 0xFF, 0x2D, 0xFF, 0xF1, 0xFE, 0x19, 0xFF, 0x44, 0xFF, 0xE3, 0xFE, 0xFA, 0xFD, 0x4F, 0xFF, 0xF1, + 0x00, 0xB5, 0xFF, 0x0F, 0xFE, 0x0D, 0xFE, 0x45, 0xFF, 0x08, 0x01, 0xC7, 0x00, 0xAA, 0xFF, 0xB0, 0xFF, 0x0F, 0x00, 0x5E, 0x00, 0x42, 0x00, 0xB8, 0xFF, 0x25, 0x00, 0x3C, 0x01, 0x26, 0x01, 0x24, 0x00, 0xDE, 0xFE, 0x1C, 0xFF, 0x31, 0x00, 0xB2, + 0x00, 0xBA, 0x00, 0x95, 0x00, 0x8C, 0x00, 0xDF, 0xFF, 0xF8, 0xFE, 0x68, 0xFF, 0xB2, 0x00, 0x24, 0x01, 0x6E, 0x00, 0x4E, 0xFF, 0xF8, 0xFE, 0xA5, 0xFF, 0x3B, 0x00, 0x0B, 0x00, 0x21, 0x00, 0xD2, 0x00, 0xC5, 0x00, 0xB6, 0xFF, 0xDA, 0xFE, 0x2A, + 0xFF, 0x9E, 0xFF, 0x17, 0x00, 0xE5, 0xFF, 0xF6, 0xFF, 0xA0, 0x00, 0x60, 0x00, 0x61, 0xFF, 0xFF, 0xFE, 0x38, 0xFF, 0xFC, 0xFF, 0xAF, 0x00, 0x67, 0x00, 0xF9, 0xFF, 0xED, 0xFF, 0xCC, 0xFF, 0xA4, 0xFF, 0xE8, 0xFF, 0x1A, 0x00, 0x96, 0x00, 0x93, + 0x00, 0x4E, 0x00, 0xEF, 0xFF, 0x7B, 0xFF, 0x7D, 0xFF, 0x59, 0x00, 0xEF, 0x00, 0x1D, 0x01, 0x99, 0x00, 0xAC, 0xFF, 0x7D, 0xFF, 0xC7, 0xFF, 0x86, 0xFF, 0x9F, 0xFF, 0x3B, 0x00, 0xA1, 0x00, 0x86, 0x00, 0xAD, 0xFF, 0x69, 0xFF, 0xB6, 0xFF, 0xC6, + 0xFF, 0x97, 0xFF, 0x85, 0xFF, 0x48, 0x00, 0x26, 0x01, 0x66, 0x00, 0x49, 0xFF, 0x41, 0xFF, 0xE5, 0xFF, 0xDC, 0xFF, 0xE2, 0xFF, 0x09, 0x00, 0x23, 0x00, 0x1E, 0x00, 0xF2, 0xFF, 0xCD, 0xFF, 0xE9, 0xFF, 0x47, 0x00, 0x4B, 0x00, 0x00, 0x00, 0xD9, + 0xFF, 0x58, 0x00, 0x89, 0x00, 0xEC, 0xFF, 0xD0, 0xFF, 0x4F, 0x00, 0x60, 0x00, 0xF9, 0xFF, 0xA8, 0xFF, 0xB0, 0xFF, 0xEA, 0xFF, 0x29, 0x00, 0x21, 0x00, 0xEE, 0xFF, 0x1B, 0x00, 0x4A, 0x00, 0x08, 0x00, 0x7F, 0xFF, 0x2E, 0xFF, 0xAC, 0xFF, 0x6C, + 0x00, 0xAF, 0x00, 0x4A, 0x00, 0xB4, 0xFF, 0xD0, 0xFF, 0x18, 0x00, 0xD8, 0xFF, 0x86, 0xFF, 0x92, 0xFF, 0x20, 0x00, 0xC4, 0x00, 0xA7, 0x00, 0xC8, 0xFF, 0x53, 0xFF, 0xCE, 0xFF, 0x69, 0x00, 0x47, 0x00, 0xFA, 0xFF, 0x21, 0x00, 0x54, 0x00, 0x38, + 0x00, 0xEA, 0xFF, 0xA1, 0xFF, 0xCB, 0xFF, 0x1C, 0x00, 0x44, 0x00, 0x0D, 0x00, 0x20, 0x00, 0x38, 0x00, 0xD3, 0xFF, 0x7C, 0xFF, 0x97, 0xFF, 0x23, 0x00, 0x97, 0x00, 0x7D, 0x00, 0xD1, 0xFF, 0x77, 0xFF, 0x93, 0xFF, 0xCF, 0xFF, 0xDD, 0xFF, 0xDE, + 0xFF, 0x0B, 0x00, 0x4C, 0x00, 0x48, 0x00, 0xF9, 0xFF, 0xD0, 0xFF, 0xD7, 0xFF, 0x00, 0x00, 0xF0, 0xFF, 0xD9, 0xFF, 0x11, 0x00, 0x4F, 0x00, 0x47, 0x00, 0x0A, + 0x00, 0xD1, 0xFF, 0xE3, 0xFF, 0x2D, 0x00, 0x25, 0x00, 0xC9, 0xFF, 0xB8, 0xFF, 0x34, 0x00, 0x65, 0x00, 0x20, 0x00, 0xF1, 0xFF, 0xFB, 0xFF, 0xFA, 0xFF, 0xEE, 0xFF, 0xB7, 0xFF, 0xB3, 0xFF, 0x08, 0x00, 0x43, 0x00, 0x2F, 0x00, 0xF2, 0xFF, 0xF1, + 0xFF, 0xF1, 0xFF, 0xEC, 0xFF, 0xE0, 0xFF, 0xF9, 0xFF, 0x23, 0x00, 0x2D, 0x00, 0x02, 0x00, 0xC2, 0xFF, 0xDA, 0xFF, 0x17, 0x00, 0x1D, 0x00, 0xEA, 0xFF, 0xF7, 0xFF, 0x13, 0x00, 0x24, 0x00, 0x12, 0x00, 0xE7, 0xFF, 0xE7, 0xFF, 0x13, 0x00, 0x2C, + 0x00, 0x01, 0x00, 0xE7, 0xFF, 0x11, 0x00, 0x30, 0x00, 0x27, 0x00, 0xFF, 0xFF, 0xE7, 0xFF, 0xF2, 0xFF, 0x00, 0x00, 0x04, 0x00, 0xF7, 0xFF, 0xF9, 0xFF, 0x0E, 0x00, 0x23, 0x00, 0x0B, 0x00, 0xFF, 0xFF, 0xFC, 0xFF, 0xF4, 0xFF, 0xE9, 0xFF, 0xF0, + 0xFF, 0x05, 0x00, 0x08, 0x00, 0x04, 0x00, 0x0E, 0x00, 0x09, 0x00, 0x04, 0x00, 0xFC, 0xFF, 0xE9, 0xFF, 0xE3, 0xFF, 0xE9, 0xFF, 0x01, 0x00, 0x17, 0x00, 0x13, 0x00, 0x09, 0x00, 0x0A, + 0x00, 0x04, 0x00, 0xF5, 0xFF, 0xF1, 0xFF, 0x00, 0x00, 0x0E, 0x00, 0x0F, 0x00, 0x00, 0x00, 0xF7, 0xFF, 0xFB, 0xFF, 0x04, 0x00, 0x0A + + }; + + static const rt_uint8_t _romfs_root_3_wav[] = { + 0x00,0x00,0x01,0x00,0xff,0xff,0x01,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0xfe,0xff,0x04,0x00,0xf9,0xff,0x0f,0x00,0xdd,0xff,0x95,0x00,0xef,0xff,0x27,0x00,0xaa,0x00,0x19,0x00,0xd7,0x00,0x27,0x00,0x04,0x00,0x19,0x00,0x34,0x00,0xf5,0xff,0xec,0xff,0x8b,0xff,0xf0,0xff,0x67,0xff,0x72,0xff,0x77,0xff,0xae,0x00,0xce,0x00,0x1c,0xff,0xbb,0xff,0xc6,0xff,0x0d,0x00,0xcc,0xfe,0x7a,0x00,0x87,0x00,0xba,0xff,0xa5,0x00,0x01,0x01,0xdf,0x00,0xca,0x00,0xe7,0xff,0x2f,0x00,0xf2,0xff,0x10,0xff,0x74,0xff,0xb0,0xff,0x70,0xff,0xd0,0xff,0xd8,0xff,0x32,0x00,0xd6,0xff,0x20,0xff,0x08,0x00,0xae,0x00,0x21,0x01,0x82,0xff,0x6a,0xff,0xd0,0x00,0x2b,0x00,0x1b,0x00,0x43,0x00,0x40,0x00,0x23,0x00,0x1a,0xff,0x26,0x01,0xf3,0xfe,0xa5,0xfe,0xb5,0xff,0xe5,0xff,0x3e,0xff,0x4e,0xff,0x91,0x00,0xf4,0x00,0x9d,0x00,0x6a,0x00,0x46,0x00,0x4c,0x00,0xf3,0xff,0x48,0x00,0x33,0x00,0x11,0x00,0x5b,0x00,0x24,0xff,0xb3,0xfe,0xfb,0xff,0x6d,0x01,0x49,0xff,0x67,0xff,0xba,0xfe,0x85,0x00,0x8a,0xff,0x26,0x01,0x21,0x00,0x18,0x00,0x73,0xff,0xca,0xfe,0xd9,0x00,0x65,0x00,0x96,0x00,0x53,0xff,0x1e,0x00,0x1f,0xff,0x21,0x00,0x15,0x00,0x84,0x00,0xb2,0xfe,0x5c,0xff,0xfd,0xfe,0x27,0x00,0x6a,0x02,0x2f,0x00,0xf4,0xff,0xa2,0xff,0xb8,0x00,0x97,0xff,0xc3,0xff,0xa7,0xff,0xa0,0xff,0x55,0x00,0xcb,0xff,0x3e,0x01,0x55,0xff,0x6f,0xff,0x64,0xff,0xbb,0x01,0xc6,0xff,0x9e,0xfd,0xbf,0x00,0xf1,0x00,0x08,0x00,0x7c,0xfe,0x52,0x03,0x72,0x00,0xf5,0xfd,0x49,0xff,0x04,0x01,0x7e,0x00,0x11,0xfd,0xf3,0xfe,0x0c,0x02,0x88,0xfe,0x76,0xff,0xf5,0x02,0x7d,0x00,0xf3,0xfe,0x75,0x00,0x34,0x02,0xbe,0xff,0x16,0x00,0x28,0x01,0xd8,0x01,0x8f,0xfe,0x3b,0xff,0xd8,0xff,0x87,0xfe,0x37,0xff,0x35,0x00,0x95,0x00,0x03,0xff,0xf3,0x00,0x95,0x00,0x4d,0x00,0x21,0x00,0x7a,0xff,0x37,0x00,0x8d,0x00,0x4d,0x00,0x7a,0xff,0xa4,0xff,0xfb,0xfe,0x0c,0x00,0x65,0xff,0xf3,0x00,0xbe,0x00,0xc8,0xff,0x5c,0xff,0xf4,0xff,0x16,0x00,0xfa,0x00,0xdc,0x00,0x35,0xff,0xdc,0xff,0x66,0x00,0x8a,0xff,0xb2,0xff,0xba,0x01,0xfd,0xff,0x4b,0x00,0x1b,0x00,0x30,0x01,0xec,0xff,0x52,0xff,0x09,0xff,0x28,0x00,0x29,0x00,0x5e,0xff,0x8f,0x01,0x5b,0x00,0xbf,0xfd,0x31,0xff,0x38,0x00,0x91,0xfe,0xa5,0xfc,0x0a,0xff,0x75,0xfd,0xef,0xfc,0x47,0xfe,0xe1,0x01,0x99,0x01,0x84,0xff,0xae,0x01,0xef,0x02,0xd0,0x01,0xe9,0x00,0xe4,0x03,0x67,0x02,0x39,0x03,0x6e,0x03,0xda,0x03,0xa9,0x01,0x0e,0x05,0x4e,0x03,0x92,0x02,0x8a,0x00,0x9e,0xff,0xf6,0xfc,0x43,0xfa,0x58,0xf7,0x04,0xf5,0xd5,0xf2,0x57,0xef,0x59,0xf2,0xbe,0xef,0xdc,0xf4,0x6e,0xf8,0x38,0xfe,0xa6,0x00,0x46,0x09,0x07,0x10,0xee,0x14,0x3e,0x17,0x41,0x17,0xaa,0x17,0x18,0x12,0x72,0x0f,0x1f,0x0a,0x8f,0x09,0xaa,0x03,0xb4,0x00,0x7e,0xfa,0xbc,0xf3,0x68,0xee,0x4d,0xee,0xf2,0xe6,0x65,0xde,0x77,0xda,0x38,0xd8,0x73,0xe9,0xe8,0xf6,0xae,0xff,0x5d,0x08,0x97,0x18,0x00,0x1a,0x83,0x1c,0x67,0x1e,0x0c,0x1c,0x1d,0x11,0xdf,0x0a,0xeb,0x0b,0x97,0x08,0xb5,0x07,0x6a,0x05,0xd5,0x0c,0x9e,0x06,0x85,0x04,0xa9,0xfd,0x16,0xf6,0xa0,0xf1,0x22,0xea,0xdb,0xe1,0xc0,0xd5,0x44,0xd0,0xd1,0xdf,0xd4,0xef,0xeb,0xf8,0x46,0x06,0xf7,0x17,0x8f,0x1d,0xc2,0x1c,0x48,0x1d,0x69,0x1a,0x5e,0x0f,0x62,0x02,0x35,0x04,0xf2,0x00,0xd8,0x00,0xa3,0x01,0x5d,0x0b,0x96,0x0c,0x26,0x0a,0x1d,0x0b,0xbe,0xff,0xd7,0xf2,0xcb,0xf1,0x9b,0xe5,0x03,0xd9,0xa2,0xcf,0xb8,0xc8,0x15,0xdb,0x90,0xf2,0xfc,0x07,0x8f,0x14,0xa7,0x22,0x9f,0x26,0xd6,0x21,0x53,0x17,0x40,0x10,0x43,0x04,0x75,0xfa,0x8a,0xfb,0x5d,0xff,0x8f,0x02,0x08,0x05,0x94,0x11,0x35,0x15,0xff,0x12,0x05,0x0c,0xca,0xff,0xed,0xf3,0x88,0xed,0xd1,0xde,0xbc,0xd2,0x37,0xc4,0x8e,0xc2,0x08,0xde,0xeb,0xfe,0x6c,0x13,0xb7,0x20,0x08,0x2f,0x25,0x2d,0x1b,0x1a,0x2a,0x09,0x71,0x02,0x61,0xf8,0x42,0xf3,0x6b,0xfa,0xb3,0x07,0xec,0x0b,0xd9,0x11,0x68,0x1a,0x18,0x1b,0x45,0x12,0xd4,0x0b,0x34,0xfb,0x9d,0xef,0xb0,0xe6,0x07,0xde,0x30,0xce,0x0a,0xc5,0xb1,0xc5,0x86,0xdc,0x17,0x0b,0x72,0x1f,0x6f,0x2b,0xa2,0x2a,0x49,0x27,0x39,0x10,0xc9,0xff,0xec,0xf5,0xff,0xf5,0xc2,0xf5,0x5f,0x03,0xef,0x0f,0x97,0x13,0x3f,0x19,0x61,0x19,0x3a,0x19,0xee,0x0d,0x3e,0x09,0x94,0xf6,0xe1,0xed,0xc5,0xe7,0xc1,0xdc,0x8d,0xcd,0x00,0xc6,0x11,0xc6,0xd0,0xe5,0x5b,0x13,0x4e,0x28,0xc8,0x29,0x3b,0x29,0xfe,0x1b,0x67,0x03,0x56,0xf1,0x82,0xf4,0x86,0xfc,0xcc,0xfc,0x08,0x0d,0x65,0x16,0x84,0x17,0x10,0x10,0x18,0x13,0x4f,0x0f,0xa6,0x08,0x12,0x05,0x49,0x02,0x75,0xf2,0x15,0xe6,0x10,0xdd,0xa3,0xce,0xdc,0xca,0x5e,0xc6,0x13,0xe9,0x6b,0x17,0x6d,0x2e,0x87,0x25,0x4e,0x21,0x59,0x17,0x87,0xf9,0x59,0xe8,0x56,0xf2,0x03,0x02,0x92,0x02,0x61,0x15,0x23,0x1d,0xb8,0x19,0x91,0x0a,0x25,0x0a,0x6b,0x0b,0x4d,0x0c,0xbc,0x09,0x52,0x02,0xba,0xfa,0x7b,0xe7,0x1b,0xd8,0x88,0xc7,0x02,0xca,0x6b,0xc4,0x85,0xe7,0x67,0x1f,0x5a,0x31,0x13,0x25,0x2a,0x21,0xca,0x12,0x1b,0xf3,0x48,0xe7,0xe4,0xf4,0xbb,0x0b,0xe4,0x07,0xab,0x16,0xcb,0x1c,0x0d,0x12,0x49,0x06,0x61,0x05,0x09,0x0c,0x6e,0x0a,0xbd,0x09,0x8c,0x07,0x55,0xf8,0xdc,0xdf,0x58,0xd6,0x92,0xcd,0x21,0xcf,0x6f,0xcd,0x2a,0xe9,0x46,0x1b,0xcb,0x33,0x4f,0x25,0x20,0x17,0xa4,0x0e,0x6c,0xf4,0xc5,0xe8,0x5b,0xf3,0xbd,0x0d,0x41,0x14,0x70,0x18,0x70,0x19,0x51,0x0f,0x85,0xfe,0x42,0x01,0xab,0x0c,0xa4,0x15,0x16,0x14,0x4d,0x09,0xc1,0xf3,0x38,0xdc,0x59,0xd1,0x14,0xc9,0x14,0xd4,0xaf,0xd5,0x6b,0xe9,0x0a,0x17,0x20,0x34,0x76,0x22,0x89,0x0b,0x12,0x06,0x51,0xf7,0xdf,0xeb,0x28,0xf8,0xbc,0x15,0xdf,0x1b,0x29,0x18,0xd9,0x14,0x67,0x0b,0xa5,0xfd,0x55,0xfc,0xf2,0x10,0x6e,0x1a,0xcc,0x16,0xc4,0x02,0x43,0xf1,0x0d,0xdb,0xf8,0xce,0x7e,0xcd,0x97,0xd4,0xa5,0xcd,0x20,0xe4,0x22,0x21,0xb0,0x39,0xa9,0x23,0xa0,0x09,0x6c,0x0c,0xac,0xef,0x9c,0xe4,0xed,0xf8,0x8c,0x1d,0x0a,0x1e,0xc8,0x19,0xa3,0x16,0x90,0x08,0x64,0xf9,0xef,0xfc,0xd1,0x11,0xb0,0x16,0x57,0x17,0xdb,0x06,0x60,0xe8,0x11,0xcc,0x6e,0xd5,0x1e,0xd5,0x01,0xde,0x0e,0xda,0x9d,0xe8,0x43,0x15,0xb2,0x31,0xf0,0x24,0x83,0x0b,0x37,0x08,0xcf,0xfa,0x5b,0xea,0xc8,0xf3,0x8e,0x19,0x0c,0x1f,0xea,0x13,0xf9,0x0c,0xea,0x09,0x32,0xff,0x22,0xfc,0x75,0x10,0x0e,0x1e,0x23,0x14,0xb9,0xfe,0x1d,0xed,0x1e,0xd6,0x8d,0xd1,0x38,0xda,0xe3,0xe0,0xb0,0xd6,0x5e,0xde,0x44,0x13,0xd6,0x2f,0x8a,0x22,0xd3,0x0b,0xfc,0x0c,0x24,0xfd,0x8a,0xeb,0x60,0xf3,0x90,0x13,0x5f,0x20,0x66,0x17,0xd2,0x14,0xd0,0x06,0x76,0xfe,0x2c,0xf9,0x4c,0x0e,0xbe,0x1d,0xbf,0x1a,0x4c,0x03,0xc3,0xeb,0x1b,0xd7,0x0a,0xd1,0x4e,0xd5,0x94,0xe0,0x6a,0xdd,0x3a,0xd7,0xac,0x0b,0x04,0x32,0x89,0x2a,0x37,0x0b,0x7d,0x06,0xf3,0xf9,0xbf,0xec,0x25,0xf6,0x5d,0x13,0x1c,0x25,0x2c,0x15,0x47,0x09,0x37,0x01,0xa6,0x01,0xea,0xfe,0x3b,0x11,0xb4,0x1f,0xa6,0x1b,0x29,0x03,0x78,0xeb,0xe2,0xd4,0xbb,0xd3,0xed,0xdf,0x83,0xe4,0xff,0xdc,0x86,0xd6,0x08,0x01,0xd1,0x26,0xc4,0x29,0xe3,0x0f,0x33,0x07,0x75,0xfe,0x24,0xef,0xde,0xf2,0x39,0x0e,0x25,0x1f,0xe1,0x15,0x43,0x11,0xe7,0x09,0x36,0x05,0xf1,0xff,0xab,0x0b,0x17,0x1b,0xd0,0x15,0xbd,0x04,0x56,0xf1,0x74,0xda,0x60,0xd2,0x08,0xd8,0xc2,0xe1,0x87,0xe1,0x41,0xd3,0xd5,0xfb,0xb5,0x2d,0x30,0x2b,0x37,0x0e,0x52,0x04,0x26,0x03,0xa9,0xf1,0xed,0xf1,0x96,0x10,0xd2,0x26,0xda,0x11,0xa1,0x09,0xdc,0x08,0xe4,0x03,0xf7,0x01,0x9e,0x0d,0xf6,0x1e,0x09,0x17,0x32,0x01,0xf0,0xec,0x50,0xda,0x64,0xd3,0xbc,0xdc,0xc6,0xe1,0xa5,0xe0,0x75,0xd8,0x78,0xf9,0x44,0x22,0x45,0x2a,0x74,0x16,0x51,0x05,0x28,0x02,0xf3,0xf4,0x76,0xf3,0xaa,0x0b,0xbe,0x21,0x71,0x16,0x82,0x0c,0x34,0x08,0x22,0x04,0xec,0x00,0x4d,0x0c,0xe7,0x1a,0xdd,0x16,0x0e,0x04,0x9a,0xef,0x76,0xdf,0xc4,0xd6,0x40,0xd8,0x81,0xdf,0x17,0xdf,0x5d,0xd5,0x1d,0xf6,0xd7,0x27,0xa4,0x31,0xcf,0x10,0x4c,0x01,0x86,0x02,0x2d,0xf2,0xa2,0xf1,0x9a,0x0d,0x18,0x26,0x03,0x19,0xac,0x08,0x13,0x0a,0x76,0x07,0x29,0xff,0xc9,0x0a,0xbc,0x19,0x01,0x1a,0x4e,0x08,0x33,0xee,0xf6,0xd9,0xfe,0xd6,0x75,0xdd,0x56,0xe5,0xc7,0xe7,0x17,0xd5,0x54,0xec,0xfd,0x19,0x06,0x27,0x52,0x10,0x03,0x08,0x2c,0x09,0x95,0xf6,0xcc,0xef,0x14,0x09,0xa1,0x1e,0x0b,0x15,0xb8,0x10,0xa2,0x0e,0x2d,0x0c,0x41,0x02,0x5f,0x0b,0x72,0x16,0x94,0x15,0xcb,0x03,0xca,0xf1,0x14,0xe5,0x20,0xd7,0xd4,0xda,0x4a,0xe5,0x90,0xe2,0x51,0xd2,0xa7,0xf0,0x13,0x1d,0xbc,0x28,0xdd,0x10,0x78,0x06,0x19,0x05,0x33,0xf9,0x6a,0xf3,0xaf,0x05,0xc9,0x1a,0x44,0x16,0xd3,0x0f,0xfe,0x0b,0x06,0x0b,0xbf,0x01,0x72,0x08,0xff,0x13,0xbc,0x17,0x28,0x09,0xcb,0xf3,0xb0,0xe2,0x87,0xdc,0x8f,0xda,0xee,0xde,0xed,0xe3,0xe8,0xd7,0xdf,0xf1,0x24,0x19,0xc3,0x24,0x0e,0x10,0x6f,0x05,0xac,0x07,0x10,0xf9,0x9d,0xf6,0x32,0x09,0xb1,0x17,0x99,0x0d,0xe4,0x0a,0x94,0x0d,0xfa,0x0d,0x97,0x06,0x6c,0x0e,0x33,0x15,0x9e,0x10,0xe5,0x00,0x20,0xf0,0xc2,0xe7,0x2f,0xdd,0x6e,0xe0,0x60,0xe1,0x15,0xe3,0xc5,0xd7,0xff,0xf1,0x96,0x1d,0xc1,0x26,0x8b,0x0f,0xcd,0x05,0x86,0x04,0x17,0xf7,0x28,0xf7,0x23,0x09,0xaa,0x1a,0x91,0x11,0x3a,0x0d,0x05,0x0a,0x6c,0x08,0x45,0x01,0x32,0x09,0xfb,0x14,0x23,0x14,0x1d,0x04,0xda,0xf3,0xdd,0xe1,0x91,0xdc,0xe8,0xdf,0x16,0xe7,0xd7,0xe5,0x49,0xd7,0x03,0xfb,0xc0,0x1e,0x81,0x1e,0x04,0x09,0x31,0x0b,0x97,0x07,0x38,0xf5,0xa1,0xf4,0x69,0x0d,0x5d,0x16,0x64,0x0b,0xb3,0x0e,0x28,0x0f,0xef,0x09,0xd1,0x03,0x37,0x0a,0x96,0x11,0x64,0x0d,0xcb,0xfc,0x3f,0xf2,0xd7,0xe6,0x7a,0xe0,0xda,0xe0,0xb3,0xe6,0x15,0xe3,0xa8,0xd9,0x79,0xfe,0x5e,0x23,0x44,0x1d,0x19,0x0d,0x30,0x0b,0xed,0x05,0x80,0xf5,0x47,0xf6,0xc9,0x0b,0x98,0x16,0x43,0x0b,0xe1,0x0a,0x75,0x0d,0xea,0x09,0x6b,0x06,0x0d,0x0b,0x21,0x11,0x60,0x0a,0x32,0xfc,0x13,0xef,0xc4,0xe4,0x86,0xdf,0xfe,0xe1,0xf6,0xe6,0x22,0xde,0x76,0xdf,0x58,0x08,0xbc,0x26,0xd7,0x1c,0x02,0x06,0xc4,0x07,0x65,0x01,0xb3,0xf4,0x58,0xf7,0x00,0x10,0xc7,0x17,0x44,0x0a,0xc0,0x0d,0x7a,0x0f,0x9d,0x08,0x28,0x02,0xc2,0x0d,0x43,0x10,0x7c,0x08,0x3c,0xf6,0xc1,0xea,0xcc,0xe5,0xac,0xe4,0x5f,0xe3,0xb3,0xe9,0x0a,0xe1,0xe8,0xe4,0xb9,0x0d,0xcc,0x1f,0x2c,0x16,0xf1,0x08,0x06,0x08,0x88,0xfe,0x59,0xf5,0xcf,0xfc,0xa7,0x13,0xf2,0x11,0xb9,0x0d,0x51,0x0e,0x4f,0x0d,0x2c,0x05,0x18,0x01,0xaf,0x09,0x80,0x0c,0xcb,0x04,0x29,0xf8,0x26,0xf0,0x2c,0xe6,0xb0,0xe2,0x64,0xe2,0x41,0xeb,0x00,0xdd,0x08,0xed,0x1c,0x15,0x6e,0x20,0xec,0x0e,0x4e,0x08,0x6e,0x0e,0x53,0xff,0xbd,0xf5,0xe7,0xfe,0x80,0x13,0x87,0x0b,0xd3,0x0b,0x09,0x0f,0x88,0x0b,0xe0,0x01,0xe1,0x05,0xe8,0x0b,0xf9,0x06,0xff,0x01,0xfd,0xf7,0x64,0xec,0x7d,0xe3,0xb6,0xe7,0x7f,0xea,0x63,0xe8,0xdc,0xdf,0xb3,0xf9,0x69,0x18,0x73,0x1b,0xfa,0x08,0x2e,0x09,0xf9,0x07,0xe5,0xf8,0xb4,0xf7,0xaa,0x05,0x8e,0x13,0xd7,0x0b,0xf7,0x0b,0xd6,0x0e,0xa3,0x0a,0xce,0x00,0xfa,0x07,0xb3,0x0d,0xff,0x09,0x3a,0xfc,0x27,0xf4,0x0f,0xec,0x14,0xe4,0x92,0xe2,0xc1,0xe8,0xa4,0xe3,0x5a,0xe2,0xd8,0x08,0x6b,0x1f,0x4d,0x19,0xc6,0x06,0x28,0x08,0xe4,0x00,0x00,0xf7,0x9f,0xfa,0x47,0x0d,0xce,0x0f,0x0e,0x08,0xbb,0x0c,0x30,0x0d,0x43,0x09,0x7b,0x03,0x9a,0x07,0xde,0x0a,0xe8,0x03,0x1d,0xf9,0x70,0xf3,0x5b,0xea,0x51,0xe8,0xbe,0xe6,0x17,0xe9,0xe9,0xe3,0x5e,0xf4,0xe0,0x0f,0x79,0x1a,0xc9,0x0f,0x8b,0x08,0x25,0x08,0x89,0xfc,0xe0,0xf8,0x31,0x00,0x64,0x0b,0x5f,0x06,0x5d,0x0a,0xca,0x0e,0x00,0x0c,0x38,0x05,0x3b,0x06,0x10,0x08,0xb6,0x03,0x50,0xfe,0x0c,0xfb,0x2d,0xf0,0x7e,0xeb,0xbc,0xe8,0x48,0xe9,0xef,0xe8,0xec,0xe6,0x11,0x05,0x54,0x1a,0xd0,0x13,0xbe,0x06,0x92,0x0a,0xbb,0x05,0x47,0xf7,0x9b,0xf8,0xdc,0x07,0x04,0x08,0xad,0x06,0xe4,0x0d,0x93,0x0d,0xaf,0x04,0xe9,0x04,0x68,0x08,0x08,0x07,0xf4,0x01,0xf3,0xfc,0xae,0xf5,0xcc,0xeb,0x9a,0xeb,0x9f,0xe9,0x21,0xed,0xa5,0xe7,0x42,0xf6,0xa3,0x0f,0x2b,0x16,0x09,0x0b,0x03,0x0a,0x38,0x09,0xda,0xfd,0x4c,0xf8,0x8f,0x01,0x54,0x06,0x41,0x04,0xcb,0x0a,0x55,0x0d,0xc1,0x09,0xdf,0x02,0x29,0x05,0x47,0x06,0xb2,0x07,0xd9,0xfe,0x9e,0xf8,0x54,0xee,0xb9,0xed,0x4f,0xea,0x98,0xec,0x93,0xea,0x4b,0xef,0xa8,0x0b,0x98,0x15,0x90,0x0e,0x2d,0x09,0xc3,0x09,0xc7,0xff,0xeb,0xf7,0x95,0xfc,0x11,0x07,0x08,0x02,0x59,0x08,0xce,0x0d,0x07,0x0c,0x51,0x03,0x69,0x06,0xa1,0x07,0x6b,0x03,0xf2,0xff,0x63,0xfc,0x17,0xf5,0xc5,0xeb,0xbd,0xec,0xc9,0xec,0x77,0xec,0x3c,0xeb,0xa1,0x02,0x80,0x12,0x6f,0x0e,0xeb,0x09,0x91,0x0c,0x5c,0x04,0xcf,0xfc,0x50,0xfc,0xe1,0x04,0xa6,0x02,0xad,0x03,0x33,0x0b,0x04,0x0b,0xed,0x05,0xb8,0x04,0xdd,0x06,0x64,0x03,0xc8,0x00,0x32,0xfc,0xa0,0xf7,0x51,0xef,0x28,0xee,0xc2,0xeb,0x3e,0xed,0x46,0xeb,0x88,0xfb,0x0e,0x11,0x98,0x13,0xcf,0x08,0x64,0x0a,0x83,0x08,0xb5,0xfd,0xef,0xf8,0x86,0x03,0xb6,0x04,0x65,0x00,0x07,0x07,0xf3,0x0a,0x7a,0x09,0xbf,0x01,0x5f,0x06,0xd9,0x06,0x9b,0x02,0xc9,0xfb,0x10,0xf9,0xe6,0xf1,0x0e,0xf0,0x4d,0xed,0x85,0xef,0x5b,0xef,0x15,0xf9,0xdd,0x08,0x72,0x0e,0x56,0x09,0x90,0x09,0xd9,0x09,0x06,0x01,0x06,0xff,0x34,0x02,0x94,0x02,0xb6,0xff,0x20,0x07,0x32,0x0a,0xc9,0x08,0x71,0x02,0xeb,0x04,0x63,0x05,0xf3,0x00,0xa3,0xfc,0x4e,0xfb,0xd1,0xf3,0xce,0xef,0x49,0xf0,0x8a,0xf1,0xd5,0xee,0xc3,0xf5,0x1c,0x09,0xca,0x0c,0xd9,0x07,0xb2,0x0b,0xd5,0x0c,0x32,0x01,0x96,0xfb,0x6c,0x01,0xc4,0x04,0x4c,0xfd,0x4f,0x03,0x3c,0x0b,0x63,0x08,0x34,0x02,0x11,0x05,0xe9,0x05,0x67,0xff,0x1d,0xfc,0x40,0xfd,0xd1,0xf6,0xab,0xef,0xc1,0xf0,0x72,0xf2,0xa5,0xef,0x82,0xf4,0x15,0x07,0x2f,0x0d,0xdd,0x07,0xe5,0x08,0xe2,0x0b,0xf1,0x03,0x01,0xfd,0x42,0xff,0x29,0x04,0x7b,0x01,0xab,0x01,0x89,0x08,0xe9,0x09,0xc9,0x03,0xb4,0x02,0xd6,0x04,0x3d,0x01,0x63,0xfd,0x0b,0xfc,0xb4,0xf8,0x16,0xf4,0xe9,0xf0,0x8c,0xf1,0xa4,0xf1,0x22,0xf6,0x77,0x03,0xb9,0x08,0xc4,0x05,0xea,0x08,0x55,0x0c,0xa6,0x05,0x05,0xff,0xce,0x00,0xe2,0x02,0xd2,0xfe,0x77,0x01,0x83,0x07,0xbd,0x07,0x59,0x04,0xa0,0x04,0x04,0x03,0x4d,0xff,0x65,0xfd,0x69,0xfc,0xba,0xf9,0xde,0xf6,0xf1,0xf5,0x16,0xf5,0x1e,0xf5,0xda,0xf5,0x16,0xfe,0xc2,0x04,0x4b,0x06,0x10,0x08,0x55,0x0a,0xb7,0x07,0x3c,0x02,0x8e,0x00,0x41,0x01,0x50,0xfe,0x76,0xff,0x76,0x05,0xb6,0x06,0xb5,0x04,0x80,0x03,0x4a,0x02,0x6b,0xfe,0x02,0xfd,0x0c,0xfd,0xc5,0xfa,0xa7,0xf6,0x69,0xf6,0x36,0xf7,0xe7,0xf5,0xe7,0xf7,0xec,0xff,0x86,0x05,0x48,0x05,0xd8,0x06,0xf1,0x09,0xfa,0x06,0xa9,0x00,0x93,0xff,0x91,0x02,0x0c,0x00,0x75,0xff,0x31,0x04,0xe4,0x06,0xed,0x03,0x73,0x00,0xfa,0x00,0x06,0x00,0x28,0xfd,0xe6,0xfb,0x22,0xfb,0x3d,0xf9,0x3d,0xf8,0xf1,0xf6,0x83,0xf7,0xc1,0xfa,0x7e,0x00,0x35,0x02,0x05,0x03,0x7f,0x06,0x55,0x09,0x13,0x06,0x21,0x03,0x76,0x02,0x17,0x01,0x90,0xfe,0xc8,0xff,0x67,0x04,0xcd,0x04,0xe9,0x03,0xe7,0x02,0x23,0x01,0xe7,0xfe,0x5b,0xfd,0x17,0xfc,0x13,0xfb,0x25,0xfa,0xff,0xf9,0xdc,0xf9,0x2e,0xf9,0xbc,0xf9,0xe3,0xfd,0xe4,0x00,0xec,0x02,0x5a,0x05,0x24,0x07,0x7e,0x06,0x59,0x04,0x7f,0x02,0x95,0x01,0xba,0xff,0x82,0xff,0xca,0x01,0x59,0x03,0xd4,0x02,0x43,0x01,0x78,0x00,0x6d,0xff,0x84,0xfd,0x79,0xfc,0x73,0xfc,0x44,0xfb,0xc1,0xfa,0x61,0xfa,0xfa,0xfa,0xa3,0xfa,0x70,0xfe,0xb0,0x02,0x43,0x03,0x9c,0x04,0x1b,0x07,0x15,0x06,0xa1,0x01,0xac,0x00,0xd9,0x01,0x7c,0x00,0xa6,0xfe,0xce,0x02,0x3d,0x05,0xcf,0x02,0x65,0x00,0xbb,0x00,0xcd,0xff,0x7f,0xfd,0x57,0xfc,0x62,0xfd,0xe5,0xfc,0x3b,0xfb,0x51,0xfb,0x3b,0xfc,0xf5,0xfc,0xbc,0xfc,0x79,0xff,0x42,0x01,0x7e,0x01,0xb6,0x02,0x26,0x05,0xdb,0x03,0xdf,0x02,0x9a,0x03,0x13,0x02,0x22,0x00,0x51,0x00,0xd1,0x00,0xc7,0x00,0xe0,0x00,0xa8,0x00,0x40,0x00,0x07,0xff,0x31,0xfe,0xca,0xfd,0x31,0xfe,0x74,0xfd,0x3f,0xfd,0x91,0xfd,0x88,0xfd,0xeb,0xfc,0x00,0xfe,0x6d,0xff,0xde,0x00,0xa8,0x01,0x59,0x02,0x02,0x03,0x77,0x02,0x95,0x01,0xe9,0x00,0x17,0x00,0x4e,0xff,0xe1,0xff,0xdd,0x00,0x97,0x01,0x08,0x01,0x3b,0x01,0x7d,0x00,0xa6,0xfe,0x3a,0xfd,0xea,0xfd,0x89,0xfd,0x9c,0xfd,0x63,0xfe,0x40,0xff,0x4d,0xff,0x07,0xff,0xa7,0xff,0x55,0x01,0x3d,0x02,0x8f,0x01,0xf1,0x01,0xed,0x01,0x16,0x01,0x1e,0x00,0x5f,0x00,0x21,0x00,0xa8,0x00,0x18,0x01,0x3a,0x01,0xe3,0x00,0xb7,0x00,0x57,0xff,0x48,0xfe,0x1b,0xfe,0xa5,0xfe,0x47,0xff,0x73,0xff,0xc8,0xff,0x2c,0x00,0x84,0xff,0x72,0xfe,0x0f,0xff,0xee,0xff,0x2e,0x00,0x6f,0x00,0x53,0x01,0x1e,0x01,0x5d,0x00,0x12,0x00,0x76,0x00,0x48,0x00,0x2e,0x00,0xab,0x00,0xe4,0x00,0xe3,0xff,0x2c,0xff,0xef,0xfe,0xcd,0xfe,0xd7,0xfe,0xff,0xfe,0x5a,0xff,0xcd,0xff,0xa6,0xff,0xf5,0xff,0x11,0x01,0x65,0x01,0x9b,0x00,0x20,0x00,0x50,0x00,0x40,0x00,0xe1,0xff,0x54,0x00,0x5a,0x01,0x5e,0x01,0xae,0x00,0x77,0x00,0x45,0x00,0x4b,0xff,0xf9,0xfe,0x9a,0xff,0xec,0xff,0xb0,0xff,0xcd,0xff,0xcd,0xff,0x91,0xff,0x37,0xff,0x84,0xff,0xfe,0xff,0x4e,0x00,0x75,0x00,0xc4,0x00,0x9d,0x00,0xff,0xff,0x4d,0xff,0x55,0xff,0x9d,0xff,0x60,0xff,0x86,0xff,0x7c,0x00,0x02,0x01,0xe7,0x00,0x09,0x01,0xfc,0x00,0x97,0x00,0x03,0x00,0x91,0xff,0x4e,0xff,0x66,0xff,0x2e,0xff,0x17,0xff,0xbe,0xff,0x89,0x00,0x85,0x00,0x7a,0x00,0xa8,0x00,0x83,0x00,0xf9,0xff,0x79,0xff,0x63,0xff,0xa8,0xff,0x87,0xff,0x6c,0xff,0x10,0x00,0x9a,0x00,0x91,0x00,0x6a,0x00,0xa3,0x00,0x9d,0x00,0xfc,0xff,0x6c,0xff,0x5b,0xff,0x74,0xff,0x6c,0xff,0x71,0xff,0xe7,0xff,0x40,0x00,0x54,0x00,0x70,0x00,0x4e,0x00,0xef,0xff,0xd0,0xff,0xb2,0xff,0x6c,0xff,0x92,0xff,0x17,0x00,0x33,0x00,0x1c,0x00,0x60,0x00,0x96,0x00,0x59,0x00,0x0c,0x00,0x10,0x00,0x22,0x00,0x00,0x00,0xc8,0xff,0xd7,0xff,0x05,0x00,0x0a,0x00,0xf2,0xff,0xfb,0xff,0x20,0x00,0x2c,0x00,0x0e,0x00,0xfd,0xff,0xf0,0xff,0xd1,0xff,0xbe,0xff,0xcf,0xff,0xda,0xff,0xee,0xff,0xfb,0xff,0x08,0x00,0x03,0x00,0xed,0xff,0xe9,0xff,0x0e,0x00,0x21,0x00,0x05,0x00,0x10,0x00,0x26,0x00,0x16,0x00,0xf8,0xff,0xe6,0xff,0xd3,0xff,0xe3,0xff,0xf6,0xff,0xed,0xff,0xf1,0xff,0x02,0x00,0x10,0x00,0x1d,0x00,0x1f,0x00,0x29,0x00,0x29,0x00,0x19,0x00,0xf1,0xff,0xcd,0xff,0xb4,0xff,0xae,0xff,0xc1,0xff,0xed,0xff,0x02,0x00,0x0f,0x00,0x30,0x00,0x37,0x00,0x0c,0x00,0xe7,0xff,0xec,0xff,0xf0,0xff,0xe6,0xff,0xe2,0xff,0xfe,0xff,0x22,0x00,0x24,0x00,0x16,0x00,0x25,0x00,0x2a,0x00,0x0c,0x00,0xf2,0xff,0xfe,0xff,0xf8,0xff,0xf0,0xff,0xf8,0xff,0x03,0x00,0xfe,0xff,0x01,0x00,0x15,0x00,0x12,0x00,0x0b,0x00,0x07,0x00,0x0d,0x00,0x01,0x00,0xed,0xff,0xf1,0xff,0x02,0x00,0x07,0x00,0x04,0x00,0x0a,0x00,0x06,0x00,0xf8,0xff,0xfd,0xff,0x00,0x00,0xfd,0xff,0xfd,0xff,0x00,0x00,0x01,0x00,0xff,0xff,0x02,0x00,0x03,0x00,0x01,0x00,0x0d,0x00,0x1c,0x00,0x1b,0x00,0x11,0x00,0x0d,0x00,0x0d,0x00,0x06,0x00,0x05,0x00,0x04,0x00,0x04,0x00,0x0f,0x00,0x0f,0x00,0x0d,0x00,0x0d,0x00,0x13,0x00,0x0f,0x00,0x03,0x00,0x03,0x00,0x0d,0x00,0x05,0x00,0xfc,0xff + }; + + static const rt_uint8_t _romfs_root_4_wav[] = { + 0x00,0x00,0x6d,0xff,0x5b,0xff,0x37,0xff,0xf9,0xff,0xc1,0x00,0xe6,0xff,0x93,0x00,0x26,0x00,0xc8,0xff,0xfc,0xff,0x6a,0xff,0x35,0xff,0x2b,0x00,0xf2,0x00,0xee,0xff,0xa1,0xff,0xa9,0x00,0x47,0x01,0x94,0xfe,0xee,0xfe,0x63,0x00,0x6a,0x00,0x1a,0x00,0x5f,0x01,0x4a,0x00,0xb6,0xfe,0x87,0xff,0xd7,0xff,0x8d,0x00,0x6c,0xff,0xcf,0x00,0x33,0x00,0x85,0xff,0xf8,0xff,0xa7,0x00,0xbe,0xff,0xd9,0xff,0x74,0x00,0x8f,0xff,0xaa,0xff,0x18,0x00,0x86,0x00,0xa8,0xff,0xaf,0xff,0x90,0x00,0x59,0x00,0x72,0xff,0x9c,0x00,0xf6,0xff,0xe6,0xff,0x9a,0x00,0xfe,0xfe,0xae,0xff,0x1d,0x00,0x88,0xff,0x7d,0x00,0x94,0xff,0x50,0x00,0x23,0x00,0xda,0xff,0xc7,0x00,0xe7,0xff,0x37,0x00,0x54,0xff,0x9e,0xff,0xee,0x00,0xd2,0xff,0xe1,0xff,0x6b,0x00,0xfc,0xff,0xd4,0xff,0xb1,0xff,0xe5,0xff,0x88,0x00,0x97,0x00,0x3b,0x00,0xf9,0xff,0x82,0xff,0x3d,0xff,0x1a,0x00,0xa8,0x00,0xb5,0xff,0x4e,0x00,0x07,0x00,0x60,0x00,0xd4,0xff,0x8b,0xff,0xa5,0xff,0x59,0xff,0x97,0x00,0x8f,0x00,0x28,0x00,0x8b,0xff,0x90,0x00,0xef,0xff,0x96,0xff,0x7a,0x00,0x3a,0x00,0x8d,0x00,0x32,0xff,0x94,0x00,0x4b,0xff,0x47,0xff,0x3c,0x00,0x94,0x00,0xee,0xff,0x6c,0xff,0x60,0x00,0xbe,0xff,0x82,0xff,0x4b,0x00,0xd5,0x00,0xd3,0xfe,0x9a,0xff,0xdc,0xff,0x99,0x01,0x0b,0x00,0x3c,0x00,0x3f,0xff,0xae,0xff,0x7c,0xff,0xa1,0xff,0xdf,0x00,0x0f,0x00,0x2a,0x00,0x10,0x00,0xf8,0xff,0x33,0xff,0x2c,0x00,0xff,0xff,0x6d,0x01,0x0e,0x00,0x96,0xfe,0x50,0xff,0xc1,0x00,0x8e,0x01,0x91,0xff,0x90,0xff,0x52,0xff,0xa1,0xff,0x5d,0x00,0xc0,0xfe,0x3e,0x01,0xc9,0x00,0x21,0xff,0x98,0x00,0x28,0x00,0x51,0xff,0x99,0xff,0x2a,0x00,0x74,0x00,0xfe,0xfe,0x96,0x00,0xd6,0x00,0x74,0x00,0xfd,0xff,0xf3,0xfe,0x15,0xff,0xd5,0x00,0x5d,0x00,0xf8,0xff,0xcd,0xff,0xae,0x00,0xc8,0xff,0x11,0x00,0xa0,0xff,0x52,0xff,0x01,0x00,0x41,0xff,0x70,0x00,0x8c,0x00,0x21,0x01,0x12,0xff,0x44,0x00,0xd8,0xfe,0xde,0xff,0x0e,0x00,0x26,0x00,0x57,0xff,0x70,0xff,0x2d,0x00,0xb9,0x00,0xbd,0x01,0x43,0x00,0xb3,0xfd,0x17,0x00,0x25,0x00,0x6a,0x00,0x9d,0x00,0x3d,0xff,0x45,0x00,0x3a,0x00,0x41,0x00,0xd3,0x00,0xbb,0xff,0xa2,0xfe,0x0f,0x01,0x90,0xff,0xab,0xff,0xa7,0xff,0x47,0x00,0x1b,0x00,0x35,0x00,0x38,0x00,0xf2,0xff,0xa9,0xff,0xb9,0xff,0xb8,0x00,0xb1,0xff,0xbd,0xff,0x8c,0x00,0xfe,0xff,0x87,0xff,0x50,0xff,0x66,0x00,0x19,0x01,0x24,0x00,0xcb,0xff,0x46,0x00,0x34,0x00,0x19,0x00,0x51,0xff,0x25,0xff,0x22,0xff,0x9c,0x00,0x0f,0x00,0xf6,0x00,0x64,0xff,0xce,0xff,0xe9,0x00,0xef,0xff,0x3c,0x00,0x87,0xff,0x31,0xff,0xaa,0xff,0xe3,0x00,0x28,0x00,0x3e,0x00,0x03,0xff,0xf5,0xff,0x96,0xff,0x6d,0x00,0x7b,0x01,0x53,0x00,0x95,0xfe,0x27,0xff,0x50,0x00,0x1e,0x00,0xf2,0xff,0x5f,0x00,0x14,0x01,0xfd,0xff,0xf5,0xff,0xd2,0x00,0x1e,0xff,0x62,0xff,0x03,0x00,0x0a,0x00,0xb6,0xff,0x04,0x00,0xa7,0x00,0xe9,0x00,0xf4,0xfe,0x7b,0xfe,0xfc,0xff,0xac,0x00,0x9a,0x01,0x34,0x00,0xd0,0xff,0x05,0x00,0x87,0xfe,0x38,0xfe,0xba,0x00,0x3f,0x00,0x84,0x01,0xe6,0x01,0x0a,0x00,0x61,0x00,0xc5,0x00,0x71,0xfe,0xf0,0xfe,0x66,0xff,0x60,0x00,0x96,0x01,0xe7,0xff,0xcc,0xff,0xf2,0xfe,0x6f,0xfe,0x49,0x00,0xd2,0x00,0x00,0x00,0xb7,0x00,0x23,0x01,0x34,0x00,0xbc,0xfe,0x73,0xfe,0xeb,0x00,0x5f,0x01,0xcd,0xff,0xd5,0x00,0x30,0x00,0xad,0xfe,0xe2,0xff,0x1a,0x00,0x5b,0x00,0xd6,0x00,0xfd,0xff,0x25,0xff,0xa9,0xfe,0x05,0x00,0x8a,0xff,0x46,0x00,0x6d,0x00,0x53,0x00,0x8a,0x00,0x58,0x00,0xd0,0x00,0x68,0x00,0x8f,0xff,0xb0,0x00,0x17,0x00,0xd6,0xfd,0x10,0xff,0x92,0x00,0x78,0x00,0x39,0x01,0x91,0xff,0x7f,0x00,0xdb,0xff,0x2b,0xfe,0x4b,0x00,0x40,0x00,0x9f,0x00,0xb1,0xff,0xe0,0x00,0x1a,0xff,0xc5,0xff,0x83,0x00,0x24,0x01,0x44,0xff,0xe0,0xfe,0x42,0x00,0x43,0x00,0xd3,0x00,0xe1,0xff,0x53,0x00,0x34,0xff,0x7e,0xfe,0xd2,0xff,0x93,0x01,0xd8,0x00,0xed,0xfe,0xe0,0xfe,0x3c,0x01,0xbd,0x00,0xf0,0xfe,0xe2,0xfe,0xf3,0xff,0x98,0x00,0xa3,0x00,0xe7,0xff,0xde,0xff,0x37,0xff,0xdc,0x00,0x2f,0x01,0xe9,0x01,0xc3,0xfe,0xb0,0xfd,0x9d,0x00,0x93,0x00,0xe6,0xfe,0xed,0xfe,0x0f,0x01,0x55,0x01,0x3f,0x00,0xd3,0xff,0xce,0xff,0xc2,0xfe,0x82,0xff,0x88,0x00,0x82,0x00,0xd7,0xff,0x64,0x00,0x9e,0xfd,0xa5,0xff,0x24,0x01,0x07,0x02,0x38,0x01,0x4b,0xff,0xef,0xff,0x83,0xfe,0x7b,0xff,0x66,0x00,0x2d,0x00,0xe5,0x00,0xa9,0x00,0xe2,0xff,0x95,0xff,0xb3,0xfe,0x42,0xff,0x9e,0x00,0x54,0x01,0x4a,0xff,0x10,0xff,0x2f,0x01,0x23,0x01,0x86,0xfe,0xc5,0xff,0x67,0x00,0xd5,0xff,0x97,0xff,0x97,0x00,0x42,0x01,0x1d,0xff,0x6c,0xff,0x3a,0x00,0x40,0x01,0xf2,0xfe,0x74,0xff,0x61,0x00,0x6c,0x01,0x74,0xff,0x48,0xff,0xe7,0xff,0x4c,0x00,0x73,0xff,0x28,0xfe,0xec,0x01,0x9f,0xff,0xf7,0xff,0x06,0x00,0x21,0x00,0x12,0x00,0xe8,0x00,0xf6,0xff,0xea,0xff,0xe6,0xff,0x95,0xff,0xea,0x00,0xc5,0xfe,0xbc,0xff,0x28,0x00,0xa4,0xfe,0x27,0x01,0x0a,0x01,0xa8,0xff,0x26,0x01,0xcd,0xff,0x95,0xff,0x19,0xfe,0xe1,0xff,0x1f,0x00,0xb7,0x00,0x66,0x01,0x34,0x00,0x92,0xff,0xc6,0xfe,0x48,0xfd,0x9f,0x00,0x71,0x03,0x8b,0x02,0x57,0xff,0x6e,0xfe,0xad,0xfe,0x04,0xfe,0xb2,0x00,0x0b,0x00,0xd0,0x01,0xa8,0xff,0x48,0x00,0xdb,0x01,0xec,0xfe,0x0f,0xfe,0x2a,0xff,0x62,0x00,0x56,0x01,0x2d,0x01,0x63,0xfe,0x4c,0x00,0x71,0x01,0x6b,0xfe,0x74,0x00,0xeb,0xff,0x75,0x01,0x05,0xfe,0x60,0x00,0x40,0x01,0x4c,0xfe,0x52,0xff,0x68,0xff,0xb6,0x01,0x36,0xff,0x0e,0xff,0xef,0xff,0x8f,0x01,0x34,0x00,0x17,0xff,0xa5,0x00,0xcc,0x00,0x9e,0xff,0xa4,0xfe,0xef,0xff,0xb7,0x00,0x83,0x00,0x22,0x00,0x5d,0x00,0x2d,0x01,0xcd,0xfe,0x66,0xfe,0x7d,0xff,0x30,0x02,0x8c,0xff,0x0d,0x00,0x3c,0xff,0x73,0xff,0x3b,0x00,0x9c,0xff,0x23,0x00,0xc1,0x00,0xfc,0xfc,0xa0,0xff,0x56,0x03,0x1e,0x01,0xa4,0x00,0x00,0xfe,0x09,0x00,0x59,0xff,0x6e,0x00,0x6c,0x00,0x7f,0x00,0x4a,0xfe,0x9c,0xff,0x86,0xfe,0xc2,0xff,0x76,0x03,0x98,0x00,0x0a,0xff,0x6d,0xff,0xf2,0xff,0xe7,0xfe,0xf2,0xff,0x02,0x01,0xd9,0x01,0x94,0x00,0x89,0x00,0x53,0x00,0x33,0xfd,0xfd,0xff,0x8a,0x00,0xea,0xff,0x3c,0xff,0xd0,0xfd,0x1b,0xff,0xe0,0x00,0x82,0x01,0xa7,0x00,0x42,0xff,0x2d,0x02,0x52,0x00,0x0f,0xfe,0x5d,0x01,0x8a,0x01,0x0e,0xfe,0x9d,0xfd,0x53,0x01,0x3f,0xfe,0xe1,0xff,0x06,0x02,0x7c,0x01,0xc7,0x01,0xb6,0x00,0x82,0xff,0x97,0xff,0x14,0xfd,0x17,0x00,0x59,0x01,0xba,0xff,0x13,0xff,0xdf,0xff,0xba,0xfe,0xb6,0xff,0x1e,0x00,0xec,0xfe,0x21,0x04,0xf4,0xff,0x09,0xff,0xfd,0xff,0xf1,0x00,0xca,0xfe,0x5d,0x02,0xfa,0x01,0x81,0xff,0xf2,0xfe,0x15,0xfc,0x00,0x00,0x19,0xff,0x17,0x00,0xee,0x01,0xd3,0xff,0x89,0xfd,0xeb,0xff,0xfb,0xff,0x66,0xff,0x22,0x01,0xe4,0x00,0x1b,0x02,0x5b,0x01,0x79,0xfe,0xb8,0x01,0xb6,0x01,0xde,0xff,0xb7,0xfd,0x69,0xfe,0xc1,0xff,0x5b,0xfd,0x48,0x00,0x3a,0x02,0xac,0x02,0x4c,0xfd,0xcf,0xff,0xaa,0x00,0x79,0xfd,0x9f,0xfe,0xad,0x00,0xcb,0x02,0x6c,0xff,0xe6,0x00,0x72,0xfe,0x7c,0xff,0x24,0xff,0xad,0x01,0x6d,0x01,0x24,0x01,0x35,0xff,0x4e,0xff,0xab,0x01,0x30,0x01,0xdd,0x01,0x5c,0xfd,0x3b,0x00,0xc3,0xfe,0x78,0xfe,0x72,0xfe,0xa1,0x01,0xd7,0x00,0x93,0x00,0x1b,0xff,0xde,0xfd,0xe3,0xfe,0x6c,0x00,0x5b,0x02,0xb7,0xff,0x9d,0xfe,0x9e,0xfe,0x7e,0x00,0x8b,0x01,0x86,0x00,0x2e,0x00,0x07,0x00,0x3a,0x00,0xc3,0x00,0x2f,0xff,0x70,0x01,0xfd,0xff,0x93,0xfe,0xbe,0xfe,0x93,0xfe,0x1c,0x03,0x6e,0x01,0xc8,0xff,0x0b,0x00,0xf9,0xff,0xee,0xff,0x79,0xfd,0x05,0x01,0xfc,0x01,0xcd,0xff,0x7d,0xfe,0xaf,0xff,0xef,0xfe,0x31,0x00,0xf0,0xfe,0xac,0xff,0x5c,0x02,0x07,0x00,0x0e,0xfe,0x6d,0x00,0x05,0x02,0x12,0x00,0x8d,0x00,0x43,0xff,0xb6,0xff,0x90,0x00,0x1f,0xfe,0xa1,0x00,0x9d,0x00,0x97,0xfe,0xa7,0xff,0xd6,0x01,0x3b,0x00,0x65,0xfc,0x44,0xfd,0xca,0xff,0xc7,0x00,0xfb,0xfc,0x27,0x02,0x3b,0x00,0xfa,0x00,0x14,0x00,0x29,0x01,0xf9,0x01,0x98,0x00,0xa5,0xff,0x0b,0xff,0xc2,0x01,0xaa,0x00,0xc0,0x01,0x21,0xfe,0xda,0x01,0xc9,0xff,0x67,0x00,0x58,0x01,0xd2,0xfe,0x99,0xfe,0x4e,0xff,0x72,0xff,0xac,0xfd,0xa8,0xff,0x00,0xfd,0x7c,0xfe,0x8b,0xfe,0x47,0xff,0x77,0xfe,0xc0,0xff,0x11,0x00,0xea,0x00,0x1e,0x04,0x14,0x00,0x4d,0x02,0xb9,0x03,0x2b,0x03,0xdc,0x00,0x44,0x02,0x6e,0x01,0x43,0x01,0xa1,0xfd,0xff,0xfe,0x8c,0xff,0xf9,0xfe,0x75,0xfe,0x5e,0xfd,0xb4,0xfd,0xd1,0xfc,0x08,0x00,0x5b,0xfe,0x47,0xfc,0xbc,0xfc,0x6f,0xfe,0x37,0xfd,0xc4,0xff,0xc6,0xff,0x2e,0x01,0xdf,0x02,0xd2,0x02,0x38,0x04,0xf8,0x04,0x6b,0x07,0xcd,0x07,0x34,0x07,0x5d,0x08,0x97,0x07,0x43,0x04,0xef,0xff,0xa4,0x00,0xc5,0xfd,0x4a,0xfc,0xb6,0xf9,0xcb,0xf7,0xab,0xf4,0xea,0xf2,0x96,0xf2,0xa1,0xf2,0xa4,0xf6,0xb3,0xf8,0xe7,0xfc,0x68,0xff,0x71,0x03,0xc3,0x06,0x7f,0x08,0xf4,0x09,0x96,0x0c,0x22,0x0e,0x8e,0x0e,0x78,0x0c,0x31,0x09,0x02,0x08,0xb7,0x03,0x9a,0x02,0xf3,0x00,0x79,0xfc,0xf7,0xf9,0x31,0xf5,0xde,0xf2,0x05,0xef,0xf1,0xef,0x25,0xf3,0xc0,0xf3,0x01,0xf4,0xaa,0xfa,0xf1,0xfb,0xf7,0xff,0x79,0x03,0x50,0x07,0xe1,0x0c,0xaa,0x0e,0x0c,0x10,0xf3,0x10,0x46,0x0d,0xe8,0x08,0x44,0x09,0xfb,0x05,0x14,0x06,0x02,0x02,0xb9,0xff,0x22,0xfd,0x9c,0xfb,0x3e,0xf5,0xaf,0xf1,0x7b,0xef,0xaa,0xef,0xe1,0xf2,0xeb,0xf3,0x84,0xf3,0xe7,0xf6,0x98,0xfa,0x86,0xfe,0xaf,0x02,0xa5,0x06,0x97,0x0a,0x4c,0x0d,0x3b,0x10,0xf7,0x0f,0x39,0x10,0xeb,0x0e,0x81,0x0a,0xc7,0x08,0xd2,0x09,0x30,0x06,0x2f,0xff,0x03,0xfa,0x25,0xfb,0xd7,0xf8,0x50,0xf1,0x55,0xea,0x6f,0xe9,0x4d,0xeb,0x07,0xf2,0x29,0xf2,0xf2,0xf1,0x48,0xf8,0x33,0x02,0x94,0x04,0x1d,0x06,0x72,0x0c,0xaa,0x10,0x30,0x10,0x14,0x10,0xfd,0x13,0x8a,0x11,0x45,0x0e,0xcd,0x0a,0x2a,0x0a,0xd0,0x06,0xd1,0x00,0xa6,0xfb,0x4b,0xf9,0x27,0xf9,0xdb,0xf1,0x0e,0xec,0x51,0xe7,0xc4,0xe8,0xfe,0xeb,0xd6,0xef,0x43,0xf2,0x37,0xf7,0xa5,0xfd,0xbd,0x00,0x93,0x06,0xfa,0x0b,0x0f,0x11,0x75,0x11,0xa4,0x16,0xef,0x13,0xd8,0x13,0xb7,0x0f,0x3d,0x0f,0xba,0x0b,0x09,0x07,0xdb,0x03,0x84,0xfd,0x97,0xf9,0x56,0xf9,0x4f,0xf5,0x0f,0xea,0xb0,0xe6,0xfb,0xe4,0xc6,0xe7,0x21,0xec,0x95,0xf0,0x8e,0xf2,0x22,0xfa,0x0f,0x00,0x6c,0x06,0xe8,0x0b,0x16,0x10,0x76,0x12,0x4c,0x15,0x66,0x17,0x9b,0x16,0x37,0x15,0x9d,0x0f,0x9f,0x0d,0x1b,0x0c,0x13,0x08,0x8f,0x01,0xf2,0xf9,0xed,0xf6,0x4a,0xf4,0xfe,0xee,0x2c,0xe6,0x60,0xe0,0x13,0xde,0x05,0xe6,0x0d,0xee,0xc6,0xef,0xd9,0xf2,0xcf,0xfb,0x67,0x05,0xb4,0x08,0x00,0x0e,0x9a,0x14,0xb9,0x19,0x77,0x16,0x7f,0x17,0xcb,0x18,0xa7,0x18,0x0e,0x11,0x0c,0x0c,0xfb,0x0c,0x53,0x09,0xef,0xff,0x37,0xf6,0x38,0xf4,0xcf,0xf4,0x34,0xea,0xdc,0xe1,0x8c,0xde,0x04,0xe1,0xd4,0xe5,0x0e,0xea,0xda,0xf0,0x1f,0xf5,0xf1,0xff,0x8b,0x05,0x26,0x0c,0x3a,0x11,0xa1,0x18,0x8c,0x18,0xcb,0x17,0xba,0x18,0xed,0x18,0xef,0x16,0x18,0x10,0x57,0x0e,0x41,0x0b,0x71,0x06,0xb3,0xfc,0x23,0xf4,0x15,0xf2,0x3a,0xf0,0x54,0xe7,0xfb,0xe0,0x93,0xda,0xa5,0xde,0xc7,0xe8,0x81,0xed,0x2d,0xf1,0x76,0xf8,0xfe,0x04,0x57,0x0a,0x84,0x10,0x13,0x14,0xff,0x19,0xa8,0x17,0xac,0x16,0x60,0x16,0xd5,0x18,0x94,0x15,0xf5,0x0d,0x55,0x0d,0xf4,0x0a,0x7c,0x05,0xe5,0xf8,0xbd,0xf4,0x0b,0xf3,0xe8,0xf0,0x67,0xe5,0xa5,0xde,0x27,0xda,0xb8,0xe0,0x69,0xe8,0x99,0xec,0x73,0xf0,0x5e,0xf9,0xa1,0x04,0x91,0x0a,0x47,0x12,0xcd,0x14,0xeb,0x19,0x11,0x19,0x52,0x1a,0x19,0x19,0x48,0x18,0x2a,0x14,0x97,0x10,0x50,0x0e,0x2c,0x0a,0xbc,0x03,0xa8,0xfa,0x32,0xf3,0x5d,0xf3,0x03,0xf0,0x51,0xe5,0x5b,0xdc,0x4d,0xd6,0x55,0xdf,0x94,0xe5,0xd5,0xeb,0x35,0xed,0x06,0xf8,0x47,0x06,0x5d,0x0c,0xd2,0x0f,0xb1,0x16,0x52,0x1e,0xbb,0x1a,0x61,0x18,0x17,0x19,0x16,0x1d,0x61,0x15,0x85,0x0d,0x28,0x0d,0x97,0x0e,0xa8,0x05,0x61,0xf8,0x97,0xf3,0x98,0xf3,0x64,0xf1,0xb5,0xe9,0x7b,0xe3,0xcf,0xdb,0x84,0xda,0x0f,0xdf,0xc3,0xe7,0x6b,0xed,0x02,0xf3,0x7a,0xff,0xbc,0x09,0xb3,0x0d,0xff,0x13,0x90,0x1c,0x7f,0x1e,0xfa,0x19,0x0e,0x19,0xa7,0x1b,0x94,0x19,0xb3,0x11,0x3c,0x0c,0xc7,0x0e,0xba,0x0a,0x1b,0xff,0x9c,0xf4,0xa7,0xf0,0x8b,0xf0,0xde,0xed,0xa8,0xe8,0x48,0xe1,0x72,0xd9,0xbe,0xda,0x80,0xe3,0x87,0xeb,0xf1,0xef,0x81,0xf8,0x21,0x06,0xae,0x0b,0x04,0x0f,0x7b,0x16,0xc7,0x1e,0x92,0x1d,0xc3,0x19,0xab,0x1a,0xbb,0x1a,0x20,0x19,0x40,0x0e,0x19,0x0e,0xf3,0x0c,0xaf,0x07,0x6d,0xfa,0x5b,0xf2,0x47,0xf2,0x1b,0xf0,0x9f,0xeb,0x40,0xe5,0x5b,0xdf,0xd5,0xd5,0x55,0xdb,0x64,0xe3,0xa1,0xed,0xf7,0xef,0x17,0xfc,0xe0,0x07,0xb1,0x0d,0x1b,0x13,0xd1,0x1b,0x27,0x21,0x84,0x1c,0x73,0x18,0x85,0x19,0xf8,0x1c,0x74,0x14,0x59,0x0b,0x58,0x0a,0x2e,0x0e,0x1a,0x04,0xfb,0xf8,0x51,0xf2,0x2c,0xf3,0xb0,0xf0,0x1d,0xee,0x81,0xe7,0x5f,0xe0,0xd6,0xd9,0xc0,0xdb,0xdf,0xe5,0x2f,0xeb,0x0b,0xf1,0x46,0xf6,0xd5,0x05,0x12,0x0d,0x3b,0x15,0x13,0x1a,0x83,0x1d,0x5d,0x19,0x97,0x1b,0x54,0x1d,0x4d,0x1a,0xf9,0x12,0x1d,0x0f,0x66,0x10,0x86,0x0c,0xb3,0x02,0x75,0xfa,0xac,0xf9,0xf0,0xf5,0x74,0xf1,0x6b,0xec,0x2c,0xe9,0x18,0xdf,0x01,0xd9,0x3b,0xdb,0xcc,0xe5,0x45,0xe7,0xef,0xee,0x1d,0xf6,0x67,0x05,0x10,0x09,0x1d,0x10,0x3e,0x18,0x19,0x1f,0x7f,0x1b,0x2d,0x18,0xc4,0x18,0x72,0x16,0xd3,0x12,0x5c,0x0b,0xbf,0x0e,0x5a,0x0a,0x49,0x05,0x60,0xfd,0xdd,0xfd,0xce,0xf9,0x9e,0xf6,0x34,0xf0,0x5a,0xf4,0x10,0xeb,0x24,0xe2,0x98,0xda,0x5f,0xe3,0x22,0xe8,0x9d,0xe8,0x70,0xeb,0x19,0xf9,0x51,0x07,0xa9,0x0b,0x67,0x0f,0x78,0x14,0xde,0x1c,0xd9,0x18,0xc3,0x18,0x90,0x15,0xf3,0x16,0xbd,0x0e,0xb4,0x0b,0x7f,0x0b,0xdf,0x0b,0xfd,0x03,0xdb,0xfd,0x92,0xfb,0x63,0xfd,0x39,0xf8,0xa4,0xf4,0xfd,0xf2,0xe1,0xf3,0xf9,0xe9,0x1d,0xe2,0x46,0xdd,0x41,0xe7,0x25,0xec,0xcb,0xec,0x90,0xf2,0x3e,0xfb,0xe9,0x08,0xf9,0x09,0xd7,0x0f,0x92,0x13,0xdc,0x1a,0x53,0x16,0xb8,0x15,0xef,0x14,0x9d,0x15,0xed,0x0c,0x63,0x0a,0x9c,0x0b,0xd8,0x09,0x18,0x02,0xb1,0xfc,0xef,0xfd,0xd5,0xfc,0xa2,0xf8,0x12,0xf4,0x16,0xf5,0xd1,0xf4,0xc8,0xef,0xb5,0xe4,0xe6,0xe3,0x8e,0xe7,0x09,0xee,0x0b,0xed,0x29,0xf1,0x88,0xfb,0xfe,0x05,0xdf,0x09,0xb6,0x0b,0x1e,0x13,0x0e,0x16,0xd0,0x16,0x3e,0x10,0x62,0x13,0x2f,0x0f,0x6d,0x0a,0x7f,0x04,0xe1,0x09,0x63,0x0a,0xf6,0x02,0x44,0xfc,0xb1,0xfe,0x90,0x03,0x28,0xff,0x29,0xf9,0x72,0xf7,0x2d,0xfa,0x7d,0xf6,0xd9,0xf2,0x1e,0xec,0x49,0xea,0x71,0xe8,0xa9,0xf0,0x60,0xf2,0xd2,0xf5,0x5e,0xf8,0x1f,0x02,0x1b,0x0b,0x00,0x10,0x1c,0x0b,0xb6,0x13,0x71,0x12,0x5d,0x0f,0x81,0x0d,0x31,0x0d,0x5c,0x07,0x6e,0x00,0x8a,0xfe,0x77,0xfd,0xb9,0xff,0x93,0xfc,0x9e,0xfd,0xba,0x01,0xd4,0x07,0xe4,0x07,0xcf,0x09,0x8a,0x03,0x7c,0xfe,0xc2,0xf6,0x76,0xf8,0x77,0xf4,0xec,0xf2,0x3b,0xe9,0x19,0xe9,0x59,0xe9,0x91,0xef,0xe6,0xf3,0xa5,0xf8,0x44,0xfc,0xba,0x03,0x3d,0x0b,0xff,0x0e,0x46,0x0f,0x87,0x12,0x3a,0x16,0x62,0x11,0x29,0x0e,0x73,0x0a,0x6d,0x0a,0x28,0x01,0xe7,0xfd,0x5b,0xfc,0xf9,0x00,0x6f,0xfd,0x5e,0xfe,0x70,0xfd,0x13,0x05,0x62,0x07,0x96,0x04,0x9d,0x01,0xc5,0xff,0xc8,0xf8,0x17,0xf2,0xea,0xee,0x23,0xf0,0x9c,0xec,0xc2,0xe2,0x90,0xee,0x65,0xf7,0xc4,0xfb,0x4b,0xf9,0x3e,0x02,0x4f,0x0c,0x33,0x0f,0x4f,0x0b,0xee,0x0c,0x28,0x11,0xb5,0x0d,0x25,0x09,0x18,0x04,0xbb,0x05,0x2c,0xff,0x0a,0xfd,0xbd,0xfe,0x7b,0x02,0x12,0x04,0xe2,0x02,0xa1,0x02,0x73,0x05,0xb2,0x0a,0x98,0x08,0x88,0x08,0x5e,0x07,0x9d,0x04,0xe4,0xfe,0xac,0xfc,0x73,0xf7,0xaa,0xf1,0x3c,0xef,0x72,0xec,0xbe,0xe4,0xd0,0xde,0x48,0xe9,0x40,0xf5,0x7c,0xf7,0x95,0xf7,0x64,0x03,0x55,0x0e,0xb8,0x0d,0x0b,0x0b,0x69,0x0e,0x38,0x12,0x25,0x0c,0x76,0x05,0x17,0x04,0xc3,0x06,0xe4,0x01,0x8d,0xfb,0xb1,0xfe,0xf9,0x04,0x2b,0x07,0xb5,0x02,0x92,0x05,0xb7,0x0d,0x80,0x11,0xc4,0x0d,0xd6,0x0e,0x43,0x0d,0x9f,0x09,0xda,0xfe,0x15,0xfb,0xb6,0xf5,0xe6,0xee,0xc1,0xea,0x75,0xea,0x5d,0xe7,0x03,0xde,0x7f,0xe4,0xf8,0xf2,0xde,0xfb,0x40,0xfa,0x6e,0x02,0xf7,0x09,0xa5,0x0f,0x29,0x08,0x54,0x06,0xfc,0x08,0x4b,0x0c,0xd9,0x03,0x7d,0xfd,0x68,0xff,0x2d,0x03,0x49,0xff,0x82,0xfd,0x2f,0x04,0x2b,0x0a,0x07,0x0b,0x1b,0x06,0x84,0x0b,0xa8,0x0d,0x34,0x0d,0x59,0x05,0xa7,0x07,0xf7,0x09,0x5a,0x06,0xa1,0xfe,0x31,0xff,0x80,0x02,0xa5,0xff,0xdd,0xf5,0x5e,0xf1,0x62,0xf1,0xa7,0xef,0x73,0xe8,0x3c,0xe4,0x2c,0xe8,0xf1,0xf2,0x19,0xf6,0x91,0xf7,0x14,0x00,0x0d,0x08,0x14,0x09,0x20,0x06,0xc1,0x09,0x02,0x0a,0xcb,0x08,0x76,0x03,0x91,0x04,0xae,0x03,0xd1,0x03,0x06,0x01,0xe0,0x02,0x0d,0x05,0x04,0x06,0xb3,0x04,0xae,0x06,0x16,0x0c,0x5c,0x0d,0x12,0x0d,0x7b,0x0c,0x41,0x0e,0x59,0x0d,0x3e,0x08,0x63,0x05,0x52,0x02,0x45,0xfe,0xa8,0xf6,0xe8,0xf0,0xb4,0xed,0x53,0xe7,0x4e,0xe2,0xa2,0xda,0x06,0xe6,0xcb,0xf0,0xc0,0xf8,0x0e,0xf9,0x0d,0x02,0xea,0x09,0x00,0x0a,0xfc,0x07,0xef,0x08,0x07,0x0d,0x44,0x08,0xb2,0x02,0x81,0xfe,0x65,0x03,0x1b,0x00,0xfe,0xfd,0x48,0xfd,0x8a,0x05,0x68,0x05,0x0d,0x05,0x23,0x07,0xd5,0x0c,0x95,0x0d,0xe4,0x08,0xcd,0x0a,0xe3,0x09,0x39,0x08,0xfb,0x01,0x33,0x01,0xbf,0xff,0x4c,0xff,0xa1,0xfd,0x1f,0xfe,0xcb,0xfd,0x9f,0xfe,0x38,0x00,0x98,0x00,0x55,0xfd,0x89,0xf9,0x4f,0xf7,0xd8,0xf4,0xd0,0xf0,0xf0,0xed,0x48,0xef,0xe6,0xf0,0x98,0xf3,0x1b,0xf5,0x7e,0xfa,0x21,0xff,0xbc,0x02,0x79,0x05,0xe3,0x08,0xb1,0x0a,0xea,0x09,0x9e,0x07,0x5c,0x07,0x1d,0x07,0xa9,0x05,0x02,0x04,0xee,0x03,0x1e,0x03,0x6b,0x03,0x51,0x04,0xdc,0x05,0x7f,0x06,0x13,0x08,0x88,0x09,0x15,0x09,0x73,0x08,0xb6,0x07,0xd2,0x07,0xe4,0x05,0x70,0x03,0xce,0xff,0xe4,0xfd,0xbe,0xfa,0xb0,0xf8,0x6b,0xf4,0xc5,0xf2,0x93,0xec,0xc5,0xe7,0xf9,0xdf,0xb7,0xe7,0xc0,0xf0,0x5b,0xf5,0xa2,0xf8,0x56,0x00,0xb9,0x0a,0xbd,0x08,0xc5,0x08,0x1d,0x08,0x61,0x0d,0x9f,0x07,0x13,0x04,0x3e,0x02,0x5d,0x02,0x7d,0xff,0x4e,0xfc,0x0a,0xfe,0x00,0x02,0x18,0x04,0xc8,0x03,0xe5,0x06,0x3e,0x0c,0x8f,0x0d,0x9b,0x0b,0x14,0x0b,0xfc,0x0b,0x2f,0x09,0xb7,0x03,0xd6,0x00,0x53,0x00,0x28,0xfe,0x93,0xf9,0x09,0xfa,0xfb,0xfb,0xa2,0xfe,0xa9,0xfc,0x0c,0xfd,0x2a,0xfe,0x08,0xff,0x02,0xfc,0xed,0xf9,0x95,0xf9,0x28,0xf9,0x20,0xf7,0x31,0xf5,0x5a,0xf5,0x32,0xf7,0x23,0xf9,0x42,0xfb,0x93,0xfe,0xba,0x01,0x6b,0x05,0x27,0x05,0xc5,0x06,0xfc,0x05,0x47,0x07,0x9e,0x05,0x24,0x04,0x5d,0x02,0x66,0x02,0x33,0x01,0x09,0x00,0x06,0x01,0x60,0x02,0x3d,0x03,0x09,0x02,0x5c,0x04,0x03,0x07,0x7b,0x08,0x7c,0x06,0xcc,0x06,0x55,0x06,0xef,0x05,0xa7,0x01,0x6e,0xff,0xd5,0xfe,0xce,0xfe,0xf4,0xfc,0x0c,0xfc,0xda,0xfc,0x3c,0x00,0x9c,0xff,0xdb,0xfc,0xd4,0xfa,0x8e,0xfa,0x1d,0xfa,0x92,0xf7,0x16,0xf7,0xa4,0xf7,0x43,0xfb,0x81,0xfb,0x56,0xfe,0x37,0x00,0x98,0x03,0xcb,0x03,0x54,0x04,0x63,0x03,0x6b,0x03,0x19,0x02,0x08,0x01,0xdf,0xff,0xad,0xff,0xdd,0xff,0x3b,0xff,0x09,0x00,0x36,0x01,0x9d,0x02,0x8f,0x01,0x53,0x02,0xcc,0x02,0xfc,0x03,0xf3,0x02,0x72,0x03,0xcf,0x02,0x37,0x02,0xb0,0x00,0x28,0x00,0x7c,0x00,0x5a,0x00,0x1e,0xff,0xef,0xfd,0x65,0xfd,0x63,0xfe,0x95,0xfe,0x22,0xfe,0xf1,0xfd,0xdc,0xfe,0xb0,0xff,0xf2,0xfe,0xa8,0xfd,0xce,0xfd,0xd9,0xfe,0x27,0xfe,0x0f,0xfe,0x9c,0xfd,0x83,0xfe,0xdd,0xfe,0x44,0xff,0x8e,0xff,0xc8,0x00,0x3d,0x01,0xb3,0x01,0x9b,0x01,0x4d,0x02,0x31,0x02,0x9b,0x01,0xf7,0x00,0x48,0x01,0x80,0x01,0x34,0x01,0xaa,0x00,0xca,0x00,0xba,0x01,0x65,0x01,0xf6,0x00,0xa4,0x00,0x21,0x01,0x7e,0x00,0x82,0xff,0x3b,0xfe,0x89,0xfe,0xf4,0xfd,0x69,0xfd,0x38,0xfd,0xd3,0xfd,0x4e,0xfe,0x0f,0xfe,0x21,0xfe,0xd8,0xfe,0x35,0xff,0x9d,0xfe,0x18,0xfe,0x8a,0xfe,0x8a,0xfe,0xd4,0xfd,0x65,0xfd,0xf3,0xfd,0xc8,0xfe,0x2b,0xff,0xf7,0xff,0xf5,0x00,0x1b,0x02,0x4f,0x02,0xb5,0x02,0x14,0x03,0x6d,0x03,0xfe,0x02,0xa9,0x02,0xc9,0x02,0x01,0x03,0xcf,0x02,0x46,0x02,0x09,0x02,0xa0,0x01,0x35,0x01,0x6d,0x00,0x58,0x00,0x39,0x00,0x42,0x00,0x1f,0x00,0x01,0x00,0x5b,0x00,0x28,0x00,0x00,0x00,0x44,0xff,0x66,0xff,0x14,0xff,0xa6,0xfe,0x9d,0xfd,0x1d,0xfd,0x89,0xfb,0x08,0xfa,0x8c,0xf8,0xe1,0xf9,0x8d,0xfc,0xec,0xfd,0xe7,0xfe,0x34,0x00,0xd0,0x02,0x06,0x03,0xfb,0x02,0xa4,0x02,0x4c,0x03,0x84,0x02,0x9b,0x01,0x1c,0x00,0x30,0x00,0xce,0xff,0xaf,0xff,0x5d,0xff,0xc5,0xff,0x64,0x00,0x44,0x00,0xb0,0x00,0x11,0x01,0xcb,0x01,0x5d,0x01,0x5d,0x01,0x0e,0x01,0x20,0x01,0x40,0x00,0xd9,0xff,0x86,0xff,0xca,0xff,0x65,0xff,0x5e,0xff,0x6c,0xff,0x01,0x00,0x2a,0x00,0x2f,0x00,0x28,0x00,0x2c,0x00,0x2a,0x00,0xc4,0xff,0xa0,0xff,0xa6,0xff,0xc1,0xff,0x8b,0xff,0x90,0xff,0xa1,0xff,0xdf,0xff,0xa5,0xff,0xce,0xff,0xd1,0xff,0x0d,0x00,0xda,0xff,0xbb,0xff,0xaf,0xff,0xfc,0xff,0x10,0x00,0x25,0x00,0x3d,0x00,0x6b,0x00,0x66,0x00,0x3f,0x00,0x2b,0x00,0x18,0x00,0xec,0xff,0xdf,0xff,0xe2,0xff,0xe7,0xff,0xf2,0xff,0xf9,0xff,0x18,0x00,0x0d,0x00,0x26,0x00,0x15,0x00,0x31,0x00,0x1b,0x00,0x14,0x00,0x0b,0x00,0x4c,0x00,0x4a,0x00,0x68,0x00,0x5e,0x00,0x6e,0x00,0x4c,0x00,0x3c,0x00,0x10,0x00,0xf2,0xff,0xd2,0xff,0xad,0xff,0xa5,0xff,0xa4,0xff,0xd5,0xff,0xd1,0xff,0xe5,0xff,0xc1,0xff,0xc0,0xff,0xc0,0xff,0xba,0xff,0xbb,0xff,0xeb,0xff,0xf4,0xff,0xfa,0xff,0x0e,0x00,0x52,0x00,0x68,0x00,0x63,0x00,0x5c,0x00,0x6d,0x00,0x44,0x00,0x21,0x00,0xf9,0xff,0xe8,0xff,0xc7,0xff,0xe0,0xff,0xf0,0xff,0xee,0xff,0xec,0xff,0xef,0xff,0xf8,0xff,0x0b,0x00,0x2c,0x00,0x18,0x00,0x2f,0x00,0x1f,0x00,0x18,0x00,0xea,0xff,0xf1,0xff,0xf1,0xff,0xe1,0xff,0xb8,0xff,0xca,0xff,0xcb,0xff,0xc7,0xff,0xb2,0xff,0xce,0xff,0xe0,0xff,0xe8,0xff,0xed,0xff,0xf6,0xff,0x00,0x00,0x08,0x00,0x0c,0x00,0xfe,0xff,0xfe,0xff,0xfc,0xff,0x01,0x00,0xf1,0xff,0x03,0x00,0x09,0x00,0x16,0x00,0xfc,0xff,0x0d,0x00,0xfb,0xff,0xf5,0xff,0xe8,0xff,0xe5,0xff,0xea,0xff,0xe0,0xff,0xea,0xff,0xf5,0xff,0x0c,0x00,0x0f,0x00,0x11,0x00,0x16,0x00,0x19,0x00,0x1b,0x00,0x0c,0x00,0xfd,0xff,0xed,0xff,0xfb,0xff,0x03,0x00,0x05,0x00,0x10,0x00,0x20,0x00,0x22,0x00,0x17,0x00,0x1d,0x00,0x1e,0x00,0x1a,0x00,0x0c,0x00,0x0f,0x00,0x03,0x00,0x01,0x00,0xfc,0xff,0x02,0x00,0x04,0x00,0x08,0x00,0x0d,0x00,0x0b,0x00,0x0b,0x00,0x08,0x00,0x04,0x00,0xff,0xff,0x03,0x00,0xf5,0xff,0xe9,0xff,0xea,0xff,0xe6,0xff,0xec,0xff,0xeb,0xff,0xed,0xff,0xfb,0xff,0x04,0x00,0xfd,0xff,0xf9,0xff,0xfa,0xff,0xfe,0xff,0xfe,0xff,0xf7,0xff,0xfe,0xff,0x02,0x00,0x05,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0xfd,0xff,0xf4,0xff,0xf5,0xff,0xf8,0xff,0xf1,0xff,0xf2,0xff,0xef,0xff,0xe9,0xff,0xe8,0xff,0xea,0xff,0xed,0xff,0xed,0xff,0xf4,0xff,0xf7,0xff,0xfd,0xff,0x00,0x00,0x01,0x00,0xfb,0xff,0xf9,0xff,0xfe,0xff,0xfb,0xff,0xfa,0xff,0xf8,0xff,0xff,0xff,0xf6,0xff,0xf8,0xff,0xfd,0xff,0x06,0x00,0x08,0x00,0x08,0x00,0x14,0x00,0x15,0x00,0x1d,0x00,0x1a,0x00,0x17,0x00,0x17,0x00,0x17,0x00,0x0d,0x00,0x0a,0x00,0x0b,0x00,0x0b,0x00,0x05,0x00,0x03,0x00,0x01,0x00,0x07,0x00,0x02,0x00,0x03,0x00,0x06,0x00,0x05,0x00,0x05,0x00,0x00,0x00,0x01,0x00,0xf7,0xff,0xf7,0xff,0xf7,0xff,0xf8,0xff,0xfb,0xff,0x02,0x00,0x01,0x00,0x03,0x00,0xfa,0xff,0xf6,0xff,0xf3,0xff,0xeb,0xff,0xe4,0xff,0xe0,0xff,0xe7,0xff,0xf0,0xff,0xf3,0xff,0xf9,0xff,0x01,0x00,0x07,0x00,0x08,0x00,0x05,0x00,0x09,0x00,0x05,0x00,0x06,0x00,0x06,0x00,0x04,0x00,0x03,0x00,0x02,0x00,0xfc,0xff,0xfb,0xff,0xfb,0xff,0xfc,0xff,0x01,0x00,0x04,0x00,0x02,0x00,0x06,0x00,0x06,0x00,0x03,0x00,0x03,0x00,0xfe,0xff,0x02,0x00,0x00,0x00,0x01,0x00,0x03,0x00,0x05,0x00,0x08,0x00,0x07,0x00,0x04,0x00,0x02,0x00,0x06,0x00,0x00,0x00,0xfb,0xff,0xf7,0xff,0xfc,0xff,0xfd,0xff,0xfb,0xff,0xfb,0xff,0xfa,0xff,0xfb,0xff,0xfb,0xff,0x00,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x06,0x00,0x04,0x00,0x01,0x00,0xff,0xff,0xf9,0xff,0xf9,0xff,0xf9,0xff,0xfa,0xff,0xfb,0xff,0xfc,0xff,0xfc,0xff,0xfe,0xff,0xfe,0xff,0x00,0x00,0x05,0x00,0x08,0x00,0x06,0x00,0x06,0x00,0x07,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0x04,0x00,0x03,0x00,0x02,0x00,0x01,0x00,0x02,0x00,0x01,0x00,0x02,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0xfe,0xff,0xfe,0xff,0xfd,0xff,0xfe,0xff,0xfc,0xff,0xfb,0xff,0xfa,0xff,0xfa,0xff,0xf9,0xff,0xf9,0xff,0xfc,0xff,0xfa,0xff,0xfd,0xff,0xfc,0xff,0xfb,0xff,0xf9,0xff,0xfa,0xff,0xfa,0xff,0xfb,0xff,0xfb,0xff,0xfc,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x04,0x00,0x04,0x00,0x03,0x00,0x04,0x00,0x03,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x04,0x00,0x03,0x00,0x04,0x00,0x02,0x00,0x03,0x00,0x02,0x00,0x01,0x00,0x02,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xff,0xff,0xfe,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,0x01,0x00,0xff,0xff,0xfe,0xff,0x00,0x00,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x01,0x00,0x02,0x00,0x03,0x00,0x01,0x00,0x03,0x00,0x03,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0x03,0x00,0x04,0x00,0x04,0x00,0x03,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,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,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,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,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,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,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xff,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,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0xff,0xff,0x01,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,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,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,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,0x01,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,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,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,0x01,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 + }; + + static const rt_uint8_t _romfs_root_5_wav[] = { + 0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xfe,0xff,0xfd,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x01,0x00,0x02,0x00,0x03,0x00,0x05,0x00,0x03,0x00,0x04,0x00,0x04,0x00,0x03,0x00,0x03,0x00,0x05,0x00,0x03,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x03,0x00,0x06,0x00,0x06,0x00,0x07,0x00,0x06,0x00,0x06,0x00,0x04,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0xfd,0xff,0xfe,0xff,0xfb,0xff,0xfd,0xff,0xfe,0xff,0xfe,0xff,0xfb,0xff,0xf7,0xff,0xfe,0xff,0xf9,0xff,0xf6,0xff,0xf7,0xff,0xf3,0xff,0xfa,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xfd,0xff,0x00,0x00,0xff,0xff,0xfd,0xff,0xfc,0xff,0xfc,0xff,0xfd,0xff,0x00,0x00,0xfe,0xff,0xfa,0xff,0xf7,0xff,0xf3,0xff,0xf7,0xff,0xf7,0xff,0xfd,0xff,0x00,0x00,0xfc,0xff,0x00,0x00,0xfc,0xff,0xfb,0xff,0xf8,0xff,0xf8,0xff,0xfb,0xff,0xfe,0xff,0xfd,0xff,0xfc,0xff,0x01,0x00,0x03,0x00,0x06,0x00,0x01,0x00,0xfd,0xff,0xfb,0xff,0xfa,0xff,0xfc,0xff,0xff,0xff,0x01,0x00,0x01,0x00,0x06,0x00,0x04,0x00,0x02,0x00,0xff,0xff,0xfb,0xff,0xfc,0xff,0x00,0x00,0xf9,0xff,0xf7,0xff,0xf8,0xff,0xfb,0xff,0x00,0x00,0x01,0x00,0x06,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0xff,0xff,0xfa,0xff,0xfb,0xff,0xfb,0xff,0xfd,0xff,0xff,0xff,0xff,0xff,0x02,0x00,0x05,0x00,0x02,0x00,0x03,0x00,0x01,0x00,0x00,0x00,0x03,0x00,0x02,0x00,0x01,0x00,0xfe,0xff,0x00,0x00,0xfe,0xff,0xf6,0xff,0xf9,0xff,0xfc,0xff,0xfb,0xff,0xff,0xff,0xfc,0xff,0xfc,0xff,0xfc,0xff,0xf6,0xff,0xfc,0xff,0xf4,0xff,0xf6,0xff,0xf3,0xff,0xe7,0xff,0xef,0xff,0xf5,0xff,0xf4,0xff,0xf1,0xff,0xf6,0xff,0xf7,0xff,0xf5,0xff,0xef,0xff,0xef,0xff,0xec,0xff,0xed,0xff,0xec,0xff,0xe9,0xff,0xef,0xff,0xed,0xff,0xed,0xff,0xef,0xff,0xe5,0xff,0xe3,0xff,0xed,0xff,0xec,0xff,0xe8,0xff,0xef,0xff,0xee,0xff,0xeb,0xff,0xf3,0xff,0xeb,0xff,0xf1,0xff,0xf1,0xff,0xf1,0xff,0xfd,0xff,0xf7,0xff,0xff,0xff,0xfb,0xff,0xf1,0xff,0xed,0xff,0xeb,0xff,0xea,0xff,0xee,0xff,0xf3,0xff,0xf9,0xff,0x09,0x00,0x07,0x00,0x04,0x00,0x00,0x00,0xfb,0xff,0xf9,0xff,0xfe,0xff,0xfe,0xff,0xf9,0xff,0xfe,0xff,0xfc,0xff,0x09,0x00,0x0a,0x00,0x03,0x00,0xfe,0xff,0xfd,0xff,0xf9,0xff,0xf3,0xff,0xfc,0xff,0x01,0x00,0x06,0x00,0x0d,0x00,0x19,0x00,0x14,0x00,0x1e,0x00,0x30,0x00,0x31,0x00,0x28,0x00,0x2c,0x00,0x29,0x00,0x27,0x00,0x29,0x00,0x2b,0x00,0x26,0x00,0x26,0x00,0x1c,0x00,0x16,0x00,0x21,0x00,0x17,0x00,0x1f,0x00,0x11,0x00,0x00,0x00,0xf7,0xff,0xeb,0xff,0xf1,0xff,0xfb,0xff,0x09,0x00,0x13,0x00,0x10,0x00,0x08,0x00,0xf4,0xff,0xe4,0xff,0xdc,0xff,0xd4,0xff,0xda,0xff,0xe1,0xff,0xe2,0xff,0xe4,0xff,0xe5,0xff,0xe3,0xff,0xe9,0xff,0xf1,0xff,0x12,0x00,0x2e,0x00,0x4a,0x00,0x61,0x00,0x72,0x00,0x7f,0x00,0x81,0x00,0x8a,0x00,0x87,0x00,0x97,0x00,0x93,0x00,0x79,0x00,0x57,0x00,0x51,0x00,0x1d,0x00,0xf9,0xff,0xf4,0xff,0xd2,0xff,0xc1,0xff,0xd1,0xff,0xd7,0xff,0xd6,0xff,0x09,0x00,0x02,0x00,0xd4,0xff,0xca,0xff,0xc2,0xff,0xa1,0xff,0xaa,0xff,0xb8,0xff,0xb6,0xff,0xd3,0xff,0xf5,0xff,0xed,0xff,0xfd,0xff,0x23,0x00,0x33,0x00,0x39,0x00,0x4a,0x00,0x4d,0x00,0x4c,0x00,0x60,0x00,0x81,0x00,0xb2,0x00,0xfe,0x00,0x41,0x01,0x68,0x01,0x82,0x01,0x90,0x01,0xaf,0x01,0xcb,0x01,0xb7,0x01,0x7c,0x01,0x3f,0x01,0xf3,0x00,0xd7,0x00,0xd2,0x00,0x9c,0x00,0x01,0x00,0xfa,0xfe,0x6a,0xfd,0x68,0xfb,0xd4,0xf8,0x0a,0xf6,0x67,0xf3,0xcb,0xf0,0x48,0xee,0xdc,0xec,0x59,0xed,0x35,0xf0,0xc7,0xf4,0x76,0xfa,0x9d,0x00,0xf2,0x05,0x18,0x0a,0xcd,0x0c,0x7c,0x0e,0x02,0x0f,0x18,0x0f,0x4c,0x0e,0x02,0x0d,0x80,0x0b,0xc2,0x09,0x57,0x08,0x50,0x07,0x24,0x07,0xa0,0x07,0xe8,0x08,0x0c,0x0a,0x4f,0x0b,0xe0,0x0b,0xaf,0x0b,0xad,0x0a,0x8e,0x08,0xe8,0x05,0xc6,0x02,0x31,0xff,0x47,0xfb,0x82,0xf7,0x52,0xf3,0x3b,0xef,0x03,0xeb,0x7e,0xe7,0xda,0xe4,0xcb,0xe2,0xa7,0xe1,0xc4,0xe2,0x0d,0xe6,0x3a,0xeb,0x51,0xf2,0x40,0xfa,0x75,0x02,0x7a,0x09,0x49,0x0f,0x0b,0x13,0x4d,0x15,0xe8,0x15,0x52,0x15,0x06,0x14,0x65,0x12,0xca,0x10,0xc8,0x0e,0x4a,0x0d,0x72,0x0b,0x1b,0x0a,0x07,0x09,0x68,0x08,0x44,0x08,0x2f,0x08,0x18,0x08,0x89,0x07,0xa6,0x06,0x9c,0x04,0x8c,0x01,0x79,0xfd,0xc3,0xf8,0x7b,0xf3,0x97,0xed,0x46,0xe7,0x0c,0xe2,0xe2,0xdd,0x6c,0xda,0xb8,0xd8,0x5d,0xda,0x60,0xdf,0xd4,0xe6,0xcb,0xf0,0xf9,0xfb,0x19,0x07,0x81,0x10,0xae,0x17,0xc3,0x1b,0x24,0x1d,0x2f,0x1c,0x95,0x19,0x6b,0x16,0x01,0x13,0x91,0x10,0x63,0x0e,0xaf,0x0c,0x34,0x0b,0xea,0x09,0x0b,0x09,0xc6,0x08,0x48,0x09,0xf8,0x09,0xc3,0x0a,0xb5,0x0a,0x6e,0x09,0x62,0x06,0x54,0x02,0xa0,0xfd,0x65,0xf8,0x12,0xf3,0x47,0xee,0xb9,0xe9,0x9e,0xe4,0x60,0xe0,0xda,0xdc,0x03,0xda,0x76,0xd8,0xaf,0xd9,0x0a,0xde,0x3c,0xe5,0x17,0xef,0xb6,0xfa,0xbf,0x06,0x69,0x11,0xb8,0x19,0xe7,0x1e,0x4b,0x21,0x2b,0x21,0x35,0x1f,0x27,0x1c,0x79,0x18,0xc1,0x14,0x35,0x11,0xaa,0x0d,0x61,0x0a,0x6d,0x07,0x23,0x05,0xd3,0x03,0x52,0x03,0x00,0x04,0x74,0x05,0xef,0x06,0xc7,0x07,0x55,0x07,0x19,0x05,0x10,0x01,0xcc,0xfb,0xbb,0xf5,0xf3,0xee,0xd0,0xe7,0xea,0xe0,0x6e,0xda,0x2f,0xd5,0x67,0xd1,0xec,0xcf,0xa6,0xd2,0x06,0xda,0x28,0xe5,0x43,0xf3,0xc9,0x02,0x59,0x11,0x11,0x1d,0x91,0x24,0x60,0x28,0x69,0x28,0x1b,0x26,0x7c,0x21,0x4c,0x1c,0xd9,0x16,0xbe,0x11,0xc7,0x0c,0x26,0x08,0xff,0x03,0x54,0x00,0xbe,0xfe,0xba,0xfe,0x29,0x01,0x8b,0x04,0xde,0x08,0x2f,0x0c,0x1b,0x0e,0x7f,0x0d,0xab,0x0a,0xc3,0x05,0x23,0xff,0x49,0xf7,0x03,0xef,0x93,0xe6,0x65,0xde,0x88,0xd7,0x42,0xd2,0x93,0xce,0x0d,0xcd,0xe3,0xcf,0xf4,0xd6,0x9b,0xe2,0xd7,0xf1,0x00,0x03,0xdd,0x12,0x85,0x1f,0x23,0x27,0x67,0x2a,0x9a,0x29,0x4b,0x26,0x90,0x21,0x43,0x1c,0x01,0x17,0x2a,0x11,0xc9,0x0b,0x40,0x06,0xab,0x01,0xde,0xfd,0x42,0xfc,0xea,0xfc,0xd6,0xff,0x46,0x04,0x80,0x08,0x95,0x0c,0x5f,0x0e,0xa3,0x0e,0x7c,0x0c,0x70,0x08,0x69,0x02,0xfd,0xfa,0xa6,0xf2,0xdd,0xe9,0x08,0xe1,0x2d,0xd9,0x1f,0xd3,0x44,0xce,0xb0,0xcb,0xba,0xcc,0x91,0xd3,0x67,0xde,0x98,0xed,0xa6,0xfe,0x98,0x0f,0x3c,0x1d,0xb1,0x26,0x63,0x2b,0xb5,0x2b,0x03,0x29,0x96,0x23,0x62,0x1d,0x91,0x16,0x7b,0x10,0x56,0x0a,0x03,0x05,0x2c,0x00,0xd3,0xfc,0x95,0xfa,0x81,0xfa,0x03,0xfd,0x90,0x01,0x24,0x07,0x38,0x0c,0x48,0x10,0x77,0x11,0x6f,0x10,0x71,0x0c,0xdc,0x06,0x36,0xff,0x9f,0xf6,0x4a,0xed,0x1c,0xe4,0x5c,0xdb,0x2e,0xd4,0xcc,0xce,0x2a,0xcb,0x65,0xca,0xf1,0xce,0x31,0xd9,0xa9,0xe7,0xce,0xf9,0xd8,0x0b,0x08,0x1c,0x75,0x26,0x26,0x2c,0x8e,0x2c,0xcf,0x29,0x4d,0x24,0xe1,0x1d,0xa9,0x17,0x7e,0x11,0x1d,0x0c,0x52,0x06,0x3f,0x01,0x47,0xfc,0x13,0xf9,0xba,0xf7,0x46,0xf9,0xb0,0xfd,0x0f,0x04,0x0a,0x0b,0x04,0x11,0x45,0x14,0x0c,0x14,0x1d,0x11,0xba,0x0b,0x9b,0x04,0x8c,0xfc,0xf0,0xf3,0xd6,0xea,0x7c,0xe1,0x1c,0xd9,0xf4,0xd1,0x80,0xcc,0x2f,0xc9,0x9b,0xc9,0xe1,0xcf,0xa5,0xdb,0xb4,0xec,0x10,0x00,0x28,0x13,0x12,0x22,0x29,0x2b,0xb8,0x2e,0xa5,0x2d,0xc6,0x29,0x10,0x24,0x28,0x1e,0x16,0x18,0xd5,0x11,0xec,0x0a,0xeb,0x03,0x5e,0xfd,0xe9,0xf7,0x9d,0xf4,0x7e,0xf4,0xc1,0xf7,0xba,0xfd,0x7a,0x05,0x55,0x0d,0x4f,0x13,0xec,0x15,0x2f,0x15,0x01,0x11,0xbb,0x0a,0xae,0x02,0x22,0xfa,0x40,0xf1,0xf0,0xe7,0xc2,0xde,0x6c,0xd6,0xa2,0xcf,0x95,0xca,0x45,0xc8,0x27,0xca,0x89,0xd2,0x2c,0xe0,0x92,0xf2,0x48,0x06,0x8f,0x18,0x08,0x26,0x74,0x2d,0xa4,0x2f,0x8c,0x2d,0xf2,0x28,0xf4,0x22,0xad,0x1c,0xd7,0x15,0xb2,0x0e,0x7c,0x07,0x5e,0x00,0x01,0xfa,0x39,0xf5,0x31,0xf3,0x49,0xf4,0xa8,0xf8,0x9f,0xff,0xc4,0x07,0x3b,0x0f,0xa5,0x14,0xa7,0x16,0x73,0x15,0x3d,0x11,0x55,0x0a,0x29,0x02,0xb4,0xf8,0x28,0xef,0x28,0xe5,0x0f,0xdc,0xf7,0xd3,0x26,0xce,0x78,0xc9,0xb0,0xc7,0x11,0xca,0xe9,0xd2,0xff,0xe0,0xd9,0xf3,0x39,0x08,0x64,0x1a,0x34,0x28,0xe8,0x2e,0x32,0x31,0x65,0x2e,0xef,0x29,0x73,0x23,0x1e,0x1d,0x00,0x16,0xae,0x0e,0xae,0x06,0xe4,0xfe,0x31,0xf8,0xeb,0xf2,0x22,0xf1,0xa9,0xf2,0x64,0xf8,0xe1,0xff,0x16,0x09,0x61,0x10,0x9c,0x15,0xf4,0x16,0x42,0x15,0xad,0x10,0x1d,0x0a,0xb5,0x02,0x09,0xfa,0x62,0xf1,0x71,0xe7,0x29,0xde,0x31,0xd5,0xaf,0xce,0x5a,0xc9,0x31,0xc7,0xd3,0xc8,0xd8,0xd0,0x3e,0xde,0xc8,0xef,0x7a,0x03,0xb2,0x15,0xb8,0x24,0x93,0x2d,0x11,0x32,0x3c,0x31,0xb5,0x2d,0xf6,0x26,0x92,0x1f,0x23,0x17,0x18,0x0f,0x45,0x07,0xd9,0xff,0x7e,0xf9,0x4f,0xf4,0x1a,0xf2,0x57,0xf2,0xb5,0xf6,0x1e,0xfd,0xb9,0x05,0x7c,0x0d,0xfa,0x13,0x03,0x17,0xe9,0x16,0x86,0x13,0x7d,0x0d,0xd8,0x05,0x8c,0xfc,0x3a,0xf3,0x37,0xe9,0xe9,0xdf,0x18,0xd7,0x75,0xd0,0x11,0xcb,0x25,0xc8,0xa4,0xc7,0x49,0xcd,0x8f,0xd8,0x56,0xe9,0x60,0xfd,0x33,0x11,0x19,0x22,0xde,0x2c,0xe5,0x31,0x37,0x31,0x57,0x2d,0xcf,0x26,0x1e,0x20,0xd0,0x18,0xfb,0x11,0xc3,0x0a,0xa6,0x03,0xd6,0xfc,0x26,0xf7,0x45,0xf3,0x02,0xf2,0xa0,0xf4,0x7b,0xfa,0xea,0x02,0xb7,0x0b,0x1a,0x13,0x58,0x17,0xad,0x17,0xa9,0x14,0xb7,0x0e,0x45,0x07,0xe6,0xfe,0x70,0xf6,0xde,0xed,0x54,0xe5,0x7e,0xdc,0x4d,0xd4,0x93,0xcd,0xf1,0xc8,0x50,0xc7,0x8a,0xc9,0x54,0xd2,0xfe,0xdf,0x66,0xf2,0xfe,0x05,0x08,0x19,0x12,0x28,0x7a,0x31,0x02,0x35,0xab,0x33,0x92,0x2e,0xfe,0x26,0x8e,0x1e,0xb1,0x15,0x56,0x0d,0x1e,0x05,0x02,0xfe,0xe4,0xf7,0x88,0xf3,0x42,0xf1,0x76,0xf2,0x84,0xf6,0x9f,0xfd,0x68,0x06,0x4f,0x0f,0x19,0x16,0x9c,0x19,0xc6,0x18,0x58,0x14,0xed,0x0c,0x44,0x04,0x2f,0xfb,0x32,0xf2,0x97,0xe9,0x34,0xe1,0x65,0xd9,0x80,0xd2,0xb5,0xcd,0xea,0xc9,0xe2,0xc8,0x3a,0xcb,0x29,0xd4,0xb6,0xe2,0x32,0xf6,0x4a,0x0b,0x73,0x1e,0xac,0x2c,0xbe,0x33,0xef,0x34,0xab,0x30,0x15,0x2a,0x04,0x22,0x93,0x1a,0x36,0x13,0x55,0x0c,0x28,0x05,0xbb,0xfd,0x18,0xf7,0xd0,0xf1,0x17,0xf0,0x76,0xf1,0x2e,0xf7,0x34,0xff,0x77,0x09,0x7a,0x12,0x37,0x19,0x62,0x1b,0x04,0x19,0x22,0x13,0x68,0x0a,0xca,0x01,0xcd,0xf8,0xa9,0xf1,0xd5,0xe9,0xc6,0xe2,0x72,0xda,0x45,0xd3,0xc9,0xcc,0xec,0xc8,0xeb,0xc7,0x87,0xcb,0x6f,0xd5,0x05,0xe4,0x07,0xf7,0x65,0x0a,0x06,0x1d,0x59,0x2a,0x28,0x32,0x78,0x33,0xbe,0x30,0x5f,0x2a,0x20,0x23,0x3a,0x1b,0x87,0x13,0xf0,0x0b,0x76,0x04,0x77,0xfd,0xdb,0xf6,0x4f,0xf2,0xf5,0xef,0xfd,0xf1,0x0f,0xf7,0x9c,0xff,0x2c,0x09,0x87,0x12,0xec,0x18,0x7b,0x1b,0x7a,0x19,0x9d,0x13,0x13,0x0b,0x89,0x01,0x9a,0xf8,0x50,0xf0,0xf5,0xe8,0x9d,0xe1,0x8d,0xda,0x7e,0xd3,0x67,0xce,0x7d,0xca,0x8b,0xc9,0x52,0xcc,0x1e,0xd5,0x71,0xe3,0x04,0xf6,0xb1,0x0a,0x52,0x1d,0xb8,0x2b,0xd3,0x32,0x12,0x34,0xca,0x2f,0xd5,0x28,0xbf,0x20,0x37,0x19,0x7e,0x12,0x3c,0x0c,0x08,0x06,0x26,0xff,0x86,0xf8,0xc3,0xf2,0xf5,0xef,0xcb,0xf0,0x33,0xf6,0xec,0xfe,0xae,0x09,0xa3,0x13,0x78,0x1a,0x6e,0x1c,0x37,0x19,0x3c,0x12,0xca,0x08,0x9d,0xff,0x47,0xf7,0xb7,0xf0,0x69,0xea,0x4b,0xe4,0x3f,0xdd,0xf1,0xd5,0xe0,0xcf,0xc4,0xcb,0xba,0xca,0x48,0xcd,0x1b,0xd6,0xec,0xe3,0xba,0xf5,0x05,0x09,0x3d,0x1b,0x8b,0x29,0xd3,0x31,0x13,0x34,0x4d,0x31,0xad,0x2a,0x6f,0x22,0xb1,0x19,0x86,0x11,0x51,0x0a,0xa8,0x03,0xbb,0xfd,0x45,0xf8,0x43,0xf4,0x35,0xf2,0x96,0xf3,0x11,0xf8,0xbd,0xff,0x0e,0x09,0x81,0x12,0x63,0x19,0x3b,0x1c,0x1a,0x1a,0x98,0x13,0x17,0x0a,0xe4,0xff,0xab,0xf6,0xf2,0xee,0xa4,0xe8,0xa9,0xe2,0xed,0xdc,0x92,0xd6,0xaf,0xd1,0xcf,0xcd,0x7a,0xcc,0x92,0xcd,0xf6,0xd3,0x75,0xe0,0x02,0xf2,0xc3,0x06,0x62,0x1a,0x4c,0x2a,0xda,0x32,0xb5,0x34,0x30,0x30,0x98,0x28,0xc3,0x1f,0xe0,0x17,0x27,0x11,0xa6,0x0b,0x6a,0x06,0xa6,0x00,0xd3,0xfa,0x39,0xf5,0x50,0xf2,0x17,0xf2,0xe2,0xf6,0xda,0xfe,0x99,0x09,0x9b,0x13,0x0a,0x1b,0x25,0x1d,0xca,0x19,0x1c,0x12,0xa6,0x07,0xeb,0xfd,0x89,0xf5,0x38,0xf0,0x58,0xeb,0x3a,0xe7,0x1e,0xe1,0x6e,0xda,0x73,0xd3,0x8f,0xce,0xfe,0xcb,0xc9,0xcc,0xc8,0xd2,0xfb,0xdd,0x64,0xee,0x7a,0x01,0x1e,0x15,0x25,0x25,0x6f,0x2f,0x93,0x32,0x2f,0x30,0x4d,0x29,0x2b,0x21,0xfb,0x18,0x11,0x12,0x57,0x0c,0x41,0x07,0x4c,0x02,0xd9,0xfc,0xc1,0xf7,0xf8,0xf3,0x1f,0xf3,0x0c,0xf6,0xe0,0xfc,0x5b,0x06,0x64,0x10,0x89,0x18,0x4f,0x1c,0xa3,0x1a,0xc7,0x13,0xad,0x09,0x05,0xff,0x2e,0xf6,0xf6,0xef,0xeb,0xeb,0x5d,0xe8,0x01,0xe4,0x58,0xde,0x1f,0xd8,0xd0,0xd2,0x21,0xcf,0xf1,0xcd,0xab,0xd0,0x8d,0xd9,0x36,0xe8,0x8c,0xfb,0x08,0x10,0x61,0x22,0x64,0x2e,0x13,0x33,0x09,0x31,0x69,0x2a,0x23,0x22,0x27,0x1a,0xc5,0x13,0x6e,0x0e,0xe1,0x09,0xee,0x04,0x71,0xff,0x84,0xf9,0xc4,0xf4,0x9e,0xf2,0xce,0xf4,0x36,0xfb,0xde,0x04,0x35,0x0f,0x92,0x17,0x94,0x1b,0x31,0x1a,0x13,0x14,0xd1,0x0a,0x64,0x01,0x22,0xf9,0x76,0xf3,0xb6,0xee,0x63,0xea,0x9e,0xe4,0x36,0xde,0xac,0xd7,0x23,0xd3,0xdd,0xd0,0xbb,0xd0,0xf6,0xd3,0x53,0xdb,0x0d,0xe8,0xf4,0xf7,0x81,0x0a,0x8d,0x1b,0x14,0x29,0xfd,0x2f,0xea,0x30,0xf6,0x2b,0xcc,0x23,0x69,0x1a,0x11,0x12,0xb1,0x0b,0xf5,0x06,0xce,0x03,0x63,0x00,0xe0,0xfc,0x41,0xf9,0x6e,0xf7,0xc3,0xf7,0xa6,0xfb,0x30,0x02,0xbe,0x0a,0xca,0x12,0x76,0x18,0x83,0x19,0xcd,0x15,0xdc,0x0d,0xfe,0x03,0x39,0xfa,0x5e,0xf2,0x5b,0xed,0x86,0xe9,0x54,0xe6,0xd9,0xe1,0x4b,0xdd,0x58,0xd8,0x8b,0xd4,0xbe,0xd1,0xd2,0xd1,0xbd,0xd6,0x00,0xe2,0xbc,0xf2,0x27,0x06,0x80,0x19,0xc1,0x27,0x7f,0x2f,0x04,0x2f,0xb4,0x29,0xc8,0x20,0x75,0x18,0x5a,0x11,0x98,0x0c,0x6d,0x09,0x8e,0x06,0xa2,0x03,0x59,0xff,0x6a,0xfb,0xe4,0xf7,0xf8,0xf7,0x48,0xfb,0x92,0x02,0xed,0x0a,0xed,0x12,0x95,0x17,0xf5,0x17,0xd0,0x13,0x24,0x0c,0x3f,0x03,0xa3,0xfa,0x21,0xf4,0x63,0xef,0x22,0xec,0x9c,0xe8,0xb1,0xe4,0xee,0xdf,0x62,0xdb,0xbb,0xd7,0x61,0xd5,0xca,0xd4,0x32,0xd7,0x87,0xde,0x32,0xeb,0x86,0xfc,0xcc,0x0f,0xee,0x20,0x47,0x2c,0x67,0x2f,0x85,0x2b,0xb5,0x22,0x34,0x19,0x62,0x11,0x3e,0x0d,0xa4,0x0b,0xf6,0x0a,0x6b,0x09,0x93,0x05,0x51,0x00,0x9d,0xfa,0xeb,0xf7,0x4a,0xf9,0xb3,0xff,0x5d,0x08,0x52,0x11,0xbf,0x16,0x6c,0x17,0xd8,0x12,0x8b,0x0a,0xff,0x00,0x89,0xf8,0x06,0xf3,0xc7,0xef,0x33,0xee,0xcb,0xeb,0x77,0xe8,0x5f,0xe3,0x4c,0xde,0xbe,0xd9,0x24,0xd7,0x12,0xd6,0xea,0xd7,0x62,0xde,0xdb,0xe9,0xf6,0xf9,0xf1,0x0b,0x31,0x1c,0xe4,0x26,0xc1,0x2a,0x15,0x28,0x8c,0x21,0xd6,0x19,0xe2,0x13,0x2c,0x10,0x6d,0x0e,0xa8,0x0c,0xfe,0x09,0x4c,0x05,0x91,0xff,0x42,0xfa,0xb8,0xf7,0x47,0xf9,0xb5,0xfe,0x1f,0x06,0x12,0x0d,0xa8,0x11,0x46,0x12,0x99,0x0f,0xf9,0x09,0x90,0x03,0x17,0xfd,0x0a,0xf8,0x8e,0xf3,0x07,0xf0,0xc2,0xeb,0x76,0xe7,0xa3,0xe2,0x63,0xde,0x3d,0xdb,0x8c,0xd9,0xbd,0xd9,0xf6,0xdb,0x99,0xe2,0xe8,0xec,0x57,0xfb,0xf0,0x0a,0xc3,0x19,0xe1,0x23,0xbf,0x28,0x66,0x27,0xe4,0x21,0x50,0x1a,0x24,0x13,0xe7,0x0d,0xa0,0x0a,0x2f,0x09,0xb7,0x07,0xb4,0x05,0x4a,0x02,0xe8,0xfe,0x17,0xfc,0xe8,0xfb,0x75,0xfe,0xa8,0x03,0xce,0x09,0x21,0x0f,0x6e,0x11,0x06,0x10,0xc6,0x0a,0x8b,0x03,0xec,0xfb,0xa1,0xf5,0x64,0xf1,0x92,0xee,0x39,0xec,0x39,0xe9,0x98,0xe5,0x63,0xe1,0x3b,0xde,0xdd,0xdb,0x91,0xdb,0x83,0xdd,0x14,0xe4,0x54,0xee,0xdc,0xfc,0xaa,0x0c,0x04,0x1b,0x7d,0x24,0x71,0x27,0xb7,0x24,0xbd,0x1d,0xf7,0x15,0x19,0x0f,0x8a,0x0b,0xfc,0x09,0x1e,0x0a,0x97,0x09,0x9a,0x07,0x49,0x03,0xb4,0xfe,0x72,0xfb,0xb9,0xfb,0x99,0xff,0xf7,0x05,0x65,0x0c,0x74,0x10,0xa1,0x10,0x54,0x0c,0x53,0x05,0x35,0xfd,0xb4,0xf6,0x3d,0xf2,0x14,0xf0,0xa6,0xee,0xe9,0xec,0x73,0xea,0x43,0xe7,0xfc,0xe3,0xdb,0xe0,0x78,0xde,0xcb,0xdd,0xd1,0xe0,0x90,0xe8,0xa7,0xf5,0xbc,0x05,0x18,0x16,0x03,0x22,0x3e,0x27,0xdd,0x24,0x43,0x1d,0x1f,0x14,0xa0,0x0c,0x5b,0x09,0x1d,0x09,0x16,0x0b,0xaf,0x0b,0x2c,0x0a,0x29,0x05,0x50,0xff,0x6f,0xfa,0x74,0xf9,0xeb,0xfc,0x43,0x04,0x47,0x0c,0xd0,0x11,0x91,0x12,0xa9,0x0d,0x04,0x05,0x06,0xfb,0xe3,0xf3,0x51,0xf0,0x05,0xf1,0xad,0xf2,0xa9,0xf3,0x95,0xf1,0x21,0xed,0x09,0xe7,0xed,0xe1,0xfe,0xde,0x41,0xde,0x45,0xe0,0xb2,0xe5,0x87,0xef,0x6f,0xfc,0xfa,0x0a,0xab,0x17,0x06,0x20,0x02,0x22,0xc1,0x1e,0x3f,0x18,0x9b,0x11,0x05,0x0d,0xa7,0x0b,0x41,0x0c,0x08,0x0d,0xd1,0x0b,0xc2,0x07,0x9f,0x01,0xec,0xfb,0x35,0xf9,0x11,0xfb,0x25,0x01,0xe7,0x08,0x9f,0x0f,0x13,0x12,0xa9,0x0f,0x77,0x08,0xd6,0xff,0xaa,0xf7,0x1f,0xf3,0xae,0xf1,0x6d,0xf2,0x79,0xf2,0x85,0xf0,0xeb,0xeb,0xbf,0xe5,0xd7,0xe0,0x11,0xde,0xff,0xde,0x97,0xe2,0x01,0xea,0xb1,0xf3,0xba,0xff,0xcc,0x0b,0x5d,0x16,0x4d,0x1d,0x61,0x1f,0x23,0x1d,0xa9,0x17,0x82,0x11,0x1f,0x0c,0x48,0x09,0x78,0x08,0xf7,0x08,0xb1,0x08,0xb1,0x06,0xf6,0x02,0x0f,0xff,0x23,0xfd,0x8b,0xfe,0x87,0x03,0xb9,0x09,0x2b,0x0f,0xcd,0x10,0x2d,0x0e,0x0a,0x07,0x82,0xfe,0xd3,0xf6,0xad,0xf2,0x7e,0xf1,0x85,0xf2,0xe8,0xf2,0xd5,0xf1,0x9c,0xee,0x70,0xea,0x86,0xe6,0x23,0xe4,0x11,0xe4,0xca,0xe5,0x52,0xeb,0x82,0xf3,0x3c,0xff,0x81,0x0a,0xc4,0x14,0xb8,0x19,0x8d,0x1a,0xb8,0x16,0x04,0x12,0x68,0x0d,0x70,0x0b,0x68,0x0b,0x72,0x0c,0x7b,0x0c,0x72,0x0a,0x45,0x06,0xe4,0x00,0x2a,0xfd,0x0a,0xfc,0x29,0xff,0x4f,0x04,0x35,0x0a,0x27,0x0d,0x33,0x0d,0xdb,0x08,0xd5,0x02,0xce,0xfb,0x15,0xf7,0xd0,0xf3,0xbe,0xf2,0x0b,0xf1,0x9a,0xef,0xab,0xec,0x9b,0xe9,0x57,0xe6,0x1f,0xe4,0x7d,0xe3,0x43,0xe5,0xe8,0xea,0xd4,0xf3,0xb8,0x00,0x0c,0x0e,0xd1,0x19,0x74,0x1f,0x8b,0x1f,0x85,0x19,0xe1,0x11,0x41,0x0a,0x15,0x07,0x1e,0x07,0x83,0x09,0x9b,0x0a,0x0d,0x09,0x68,0x04,0x9e,0xfe,0x4f,0xfb,0xba,0xfb,0x65,0x01,0x9a,0x08,0x06,0x0f,0x7d,0x10,0x72,0x0d,0xd7,0x05,0xf2,0xfd,0x6d,0xf7,0x4a,0xf4,0x70,0xf3,0x9a,0xf3,0x3d,0xf3,0x52,0xf1,0x85,0xee,0x8c,0xeb,0x50,0xea,0x0f,0xea,0xf3,0xea,0x83,0xeb,0x99,0xed,0xde,0xf1,0xe3,0xf9,0x6f,0x04,0x3e,0x0f,0x47,0x17,0x86,0x1a,0xd2,0x18,0xbc,0x13,0x54,0x0e,0xb6,0x0a,0x2a,0x0a,0x14,0x0b,0xec,0x0b,0x95,0x0a,0x0f,0x07,0xa8,0x01,0x72,0xfd,0x08,0xfc,0xaf,0xfe,0x51,0x04,0x13,0x0a,0xba,0x0d,0xdd,0x0c,0x30,0x08,0xb1,0x00,0xc3,0xf9,0xc0,0xf4,0x10,0xf3,0xf6,0xf2,0x83,0xf3,0xe1,0xf2,0xe9,0xf0,0xcd,0xed,0x99,0xea,0xa7,0xe8,0xfc,0xe7,0xc3,0xe9,0xcd,0xed,0x49,0xf5,0xa9,0xfe,0x0b,0x09,0x71,0x11,0x7f,0x16,0x1e,0x17,0x3a,0x14,0x6a,0x0f,0xe7,0x0a,0x52,0x08,0x2e,0x08,0x52,0x09,0xfd,0x09,0xcf,0x08,0x76,0x05,0x02,0x01,0xb7,0xfd,0x5b,0xfd,0xc0,0x00,0x83,0x06,0xc1,0x0b,0xca,0x0d,0x7e,0x0b,0xa7,0x05,0x2b,0xfe,0xc6,0xf7,0x90,0xf3,0xe8,0xf1,0x6b,0xf1,0x61,0xf1,0x2a,0xf0,0x26,0xee,0x99,0xeb,0xf9,0xe9,0xde,0xe9,0xa8,0xec,0x7d,0xf2,0x22,0xfb,0x37,0x05,0xc4,0x0e,0x4c,0x15,0xad,0x17,0xd6,0x15,0x31,0x11,0x97,0x0b,0xcb,0x06,0x38,0x04,0xd1,0x03,0xba,0x04,0x7b,0x05,0x3f,0x05,0x21,0x03,0xea,0x00,0x50,0xff,0x6e,0x00,0x70,0x03,0xb4,0x07,0x59,0x0a,0x7d,0x0a,0xc2,0x06,0xa2,0x00,0x74,0xf9,0x6e,0xf3,0x11,0xf0,0x7a,0xef,0x23,0xf1,0xc9,0xf2,0x21,0xf3,0x5b,0xf0,0x58,0xec,0x7d,0xe8,0x5a,0xe9,0x35,0xf0,0xd9,0xfc,0x16,0x0b,0x9e,0x16,0x39,0x1b,0x23,0x18,0xa0,0x0f,0x9a,0x06,0x5d,0x01,0xdb,0x01,0xa6,0x06,0x82,0x0b,0xee,0x0c,0x20,0x09,0xcb,0x01,0xac,0xfa,0xec,0xf7,0x3c,0xfb,0x7f,0x03,0x84,0x0c,0x57,0x12,0x93,0x11,0x05,0x0b,0x18,0x01,0x73,0xf8,0x40,0xf3,0xd9,0xf2,0xf6,0xf4,0x49,0xf7,0x70,0xf7,0x45,0xf5,0xbe,0xf1,0xe7,0xee,0x9c,0xed,0x11,0xee,0x30,0xf0,0x41,0xf3,0xfe,0xf7,0xba,0xfd,0xbd,0x04,0x2c,0x0b,0x2d,0x10,0x11,0x12,0x3c,0x11,0xac,0x0d,0xb4,0x09,0xb6,0x06,0x62,0x06,0x70,0x07,0xa2,0x08,0x1f,0x08,0x68,0x05,0x8a,0x01,0x25,0xfe,0x7c,0xfd,0x76,0xff,0xbb,0x03,0x42,0x07,0xaf,0x08,0x1d,0x06,0x52,0x01,0x82,0xfb,0x70,0xf7,0x3e,0xf5,0x25,0xf5,0x96,0xf5,0x27,0xf5,0x61,0xf3,0xa1,0xef,0x21,0xec,0xba,0xe9,0xa8,0xeb,0xb7,0xf1,0x1a,0xfc,0x0e,0x07,0x7c,0x10,0x44,0x15,0x05,0x15,0x8a,0x10,0x61,0x0a,0xa7,0x05,0x66,0x03,0xc3,0x04,0xc5,0x06,0xa3,0x08,0x6c,0x07,0x3d,0x04,0x66,0xff,0x36,0xfc,0x1d,0xfc,0x0f,0x00,0x61,0x06,0x08,0x0c,0xba,0x0e,0x32,0x0c,0x02,0x06,0x27,0xfd,0x14,0xf6,0xb2,0xf1,0xb7,0xf1,0x8d,0xf3,0x8b,0xf5,0xd0,0xf4,0x2a,0xf1,0x10,0xec,0x3c,0xe8,0xa6,0xe9,0x3f,0xf1,0x4d,0xfe,0x7a,0x0b,0x8a,0x15,0xac,0x17,0x50,0x13,0x39,0x0a,0x49,0x02,0x3d,0xfe,0xc2,0xff,0x27,0x04,0xf3,0x07,0x90,0x08,0x4f,0x05,0x84,0x00,0xa0,0xfc,0x7c,0xfd,0x34,0x02,0x0d,0x0a,0x02,0x10,0x53,0x12,0x75,0x0e,0x32,0x07,0x97,0xfe,0x6a,0xf8,0xb3,0xf5,0x44,0xf6,0x30,0xf8,0xed,0xf8,0xec,0xf7,0x2f,0xf5,0x6e,0xf3,0xd3,0xf2,0x5c,0xf4,0xee,0xf5,0xd5,0xf7,0xbd,0xf8,0x6d,0xfa,0xea,0xfc,0xb2,0x00,0x01,0x05,0xd1,0x08,0xe8,0x0a,0x79,0x0a,0xa4,0x08,0x52,0x06,0x27,0x05,0x00,0x05,0xe8,0x05,0x39,0x06,0xc1,0x05,0x32,0x04,0xa7,0x02,0xe8,0x01,0x8c,0x02,0x51,0x04,0x1e,0x06,0x90,0x06,0xca,0x04,0xed,0x00,0x21,0xfc,0xf3,0xf7,0xd4,0xf5,0xac,0xf5,0xf6,0xf6,0x29,0xf8,0x7a,0xf8,0x97,0xf6,0x56,0xf3,0xd7,0xef,0xa9,0xee,0xb5,0xf1,0x4a,0xf9,0x1d,0x03,0xe6,0x0b,0xe1,0x10,0x2c,0x10,0x4b,0x0b,0x94,0x04,0x0f,0x00,0xb1,0xfe,0xe8,0x00,0x84,0x03,0x44,0x05,0x76,0x04,0x76,0x02,0x6d,0x00,0xb2,0x00,0xab,0x03,0x6f,0x08,0xee,0x0c,0xb4,0x0e,0xd6,0x0c,0x59,0x07,0x1b,0x01,0xa1,0xfb,0x5c,0xf9,0x60,0xf9,0x39,0xfb,0x53,0xfc,0x56,0xfc,0xc1,0xfa,0x5d,0xf9,0xfc,0xf8,0x72,0xfa,0xfc,0xfc,0x00,0xff,0x5b,0xff,0x6b,0xfd,0x9e,0xfa,0x22,0xf8,0xed,0xf7,0x0b,0xfa,0x83,0xfe,0x09,0x03,0x93,0x06,0xb1,0x07,0x14,0x07,0x63,0x05,0x0a,0x04,0x95,0x03,0xe3,0x03,0x4d,0x04,0xf1,0x03,0xa0,0x02,0x50,0x00,0x24,0xfe,0xa6,0xfc,0xa9,0xfc,0xa8,0xfd,0x47,0xff,0x48,0x00,0x44,0x00,0x02,0xff,0x21,0xfd,0x29,0xfb,0xc2,0xf9,0x6c,0xf9,0xec,0xf9,0x01,0xfb,0xe0,0xfb,0x7c,0xfc,0x9f,0xfc,0xc5,0xfc,0x26,0xfd,0x42,0xfe,0x17,0x00,0x88,0x02,0xea,0x04,0xb4,0x06,0x7a,0x07,0xf6,0x06,0xaa,0x05,0xdb,0x03,0x8a,0x02,0xf7,0x01,0x6e,0x02,0x50,0x03,0x15,0x04,0xea,0x03,0xe8,0x02,0x55,0x01,0x1e,0x00,0xbf,0xff,0x2a,0x00,0xcb,0x00,0xad,0x00,0x88,0xff,0x72,0xfd,0x68,0xfb,0x01,0xfa,0x13,0xfa,0x33,0xfb,0xb0,0xfc,0x21,0xfd,0xfc,0xfb,0x85,0xf9,0x69,0xf7,0x0c,0xf7,0x67,0xf9,0xd5,0xfd,0xfb,0x02,0xef,0x06,0x80,0x08,0x77,0x07,0xcb,0x04,0x0a,0x02,0x81,0x00,0xdd,0x00,0x78,0x02,0x24,0x04,0xa7,0x04,0xa9,0x03,0x83,0x01,0x6f,0xff,0x4f,0xfe,0xfd,0xfe,0xd5,0x00,0x2b,0x03,0x8a,0x04,0x77,0x04,0xcf,0x02,0x85,0x00,0x70,0xfe,0x71,0xfd,0x7f,0xfd,0x3c,0xfe,0xd2,0xfe,0xb9,0xfe,0xdc,0xfd,0xaf,0xfc,0x16,0xfc,0x78,0xfc,0xe7,0xfd,0x98,0xff,0x0e,0x01,0x93,0x01,0x5b,0x01,0xa0,0x00,0x20,0x00,0x05,0x00,0x78,0x00,0x07,0x01,0x6e,0x01,0x50,0x01,0xc1,0x00,0xf9,0xff,0x6f,0xff,0x53,0xff,0xc2,0xff,0x89,0x00,0x3d,0x01,0x98,0x01,0x72,0x01,0xf6,0x00,0x51,0x00,0xd0,0xff,0x8f,0xff,0xa0,0xff,0xc5,0xff,0xe1,0xff,0xc1,0xff,0x6c,0xff,0xff,0xfe,0xab,0xfe,0x89,0xfe,0xb4,0xfe,0x15,0xff,0x8f,0xff,0x03,0x00,0x51,0x00,0x6e,0x00,0x5d,0x00,0x30,0x00,0xff,0xff,0xd7,0xff,0xce,0xff,0xe5,0xff,0x18,0x00,0x46,0x00,0x6b,0x00,0x73,0x00,0x74,0x00,0x71,0x00,0x7a,0x00,0x81,0x00,0x71,0x00,0x49,0x00,0x0c,0x00,0xd9,0xff,0xc0,0xff,0xcf,0xff,0xf0,0xff,0x1c,0x00,0x2e,0x00,0x1d,0x00,0xd4,0xff,0x89,0xff,0x55,0xff,0x67,0xff,0xaa,0xff,0x00,0x00,0x38,0x00,0x31,0x00,0xf2,0xff,0x9e,0xff,0x68,0xff,0x71,0xff,0xc5,0xff,0x27,0x00,0x79,0x00,0x90,0x00,0x6a,0x00,0x19,0x00,0xd7,0xff,0xb9,0xff,0xd3,0xff,0xff,0xff,0x2c,0x00,0x32,0x00,0x07,0x00,0xc2,0xff,0x79,0xff,0x53,0xff,0x5f,0xff,0x95,0xff,0xd5,0xff,0x10,0x00,0x2d,0x00,0x31,0x00,0x2c,0x00,0x29,0x00,0x25,0x00,0x24,0x00,0x0e,0x00,0xf3,0xff,0xca,0xff,0xb1,0xff,0xb8,0xff,0xd9,0xff,0x0e,0x00,0x3f,0x00,0x6e,0x00,0x85,0x00,0x8c,0x00,0x8b,0x00,0x7b,0x00,0x61,0x00,0x3f,0x00,0x0f,0x00,0xee,0xff,0xdb,0xff,0xe7,0xff,0x13,0x00,0x3c,0x00,0x4c,0x00,0x3d,0x00,0x1d,0x00,0xfb,0xff,0xe4,0xff,0xda,0xff,0xde,0xff,0xdb,0xff,0xcd,0xff,0xb6,0xff,0xa9,0xff,0xa8,0xff,0xbb,0xff,0xd2,0xff,0xf4,0xff,0x05,0x00,0x17,0x00,0x26,0x00,0x31,0x00,0x3f,0x00,0x3c,0x00,0x36,0x00,0x2c,0x00,0x2a,0x00,0x33,0x00,0x49,0x00,0x5a,0x00,0x66,0x00,0x5a,0x00,0x43,0x00,0x1e,0x00,0x06,0x00,0xff,0xff,0x0a,0x00,0x1a,0x00,0x22,0x00,0x24,0x00,0x16,0x00,0x00,0x00,0xe4,0xff,0xd7,0xff,0xd5,0xff,0xda,0xff,0xea,0xff,0xfd,0xff,0x02,0x00,0x00,0x00,0xf7,0xff,0xee,0xff,0xf7,0xff,0x06,0x00,0x28,0x00,0x42,0x00,0x50,0x00,0x4b,0x00,0x3d,0x00,0x30,0x00,0x2e,0x00,0x37,0x00,0x45,0x00,0x45,0x00,0x2f,0x00,0x1b,0x00,0x01,0x00,0x01,0x00,0x06,0x00,0x17,0x00,0x21,0x00,0x2c,0x00,0x24,0x00,0x10,0x00,0x02,0x00,0xfb,0xff,0x01,0x00,0x0b,0x00,0x1a,0x00,0x23,0x00,0x27,0x00,0x1e,0x00,0x0f,0x00,0x01,0x00,0xf4,0xff,0xea,0xff,0xeb,0xff,0xf5,0xff,0xfa,0xff,0xfe,0xff,0xfd,0xff,0xfd,0xff,0xfd,0xff,0xf7,0xff,0xff,0xff,0x05,0x00,0x12,0x00,0x1b,0x00,0x1c,0x00,0x16,0x00,0x11,0x00,0x04,0x00,0xf9,0xff,0xf3,0xff,0xf1,0xff,0xef,0xff,0xf0,0xff,0xf3,0xff,0xf2,0xff,0xee,0xff,0xea,0xff,0xea,0xff,0xea,0xff,0xe5,0xff,0xed,0xff,0xef,0xff,0xee,0xff,0xf2,0xff,0xf0,0xff,0xf4,0xff,0xf5,0xff,0xfa,0xff,0xf8,0xff,0xfe,0xff,0xfb,0xff,0xf9,0xff,0xf2,0xff,0xf3,0xff,0xfa,0xff,0xfa,0xff,0x03,0x00,0x09,0x00,0x0d,0x00,0x16,0x00,0x15,0x00,0x11,0x00,0x10,0x00,0x0f,0x00,0x0f,0x00,0x0d,0x00,0x10,0x00,0x12,0x00,0x12,0x00,0x0b,0x00,0x05,0x00,0xff,0xff,0xfa,0xff,0xff,0xff,0x04,0x00,0x06,0x00,0x08,0x00,0x06,0x00,0x07,0x00,0xff,0xff,0xfb,0xff,0xfa,0xff,0xfb,0xff,0x02,0x00,0x04,0x00,0x09,0x00,0x09,0x00,0x02,0x00,0xfa,0xff,0xf1,0xff,0xed,0xff,0xf1,0xff,0xf2,0xff,0xfb,0xff,0x05,0x00,0x09,0x00,0x08,0x00,0x0b,0x00,0x0f,0x00,0x0e,0x00,0x0f,0x00,0x10,0x00,0x11,0x00,0x0f,0x00,0x0d,0x00,0x0b,0x00,0x0a,0x00,0x09,0x00,0x05,0x00,0x09,0x00,0x0a,0x00,0x07,0x00,0x04,0x00,0x03,0x00,0x01,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xfc,0xff,0xf8,0xff,0xf9,0xff,0xf4,0xff,0xf3,0xff,0xf6,0xff,0xf4,0xff,0xf2,0xff,0xf2,0xff,0xf2,0xff,0xf2,0xff,0xf1,0xff,0xf3,0xff,0xf0,0xff,0xf1,0xff,0xef,0xff,0xec,0xff,0xec,0xff,0xea,0xff,0xec,0xff,0xeb,0xff,0xea,0xff,0xe9,0xff,0xe8,0xff,0xe4,0xff,0xe5,0xff,0xe9,0xff,0xe9,0xff,0xed,0xff,0xee,0xff,0xee,0xff,0xec,0xff,0xf0,0xff,0xf5,0xff,0xf8,0xff,0xfc,0xff,0xfb,0xff,0x00,0x00,0x03,0x00,0x06,0x00,0x0b,0x00,0x0c,0x00,0x08,0x00,0x0e,0x00,0x13,0x00,0x14,0x00,0x12,0x00,0x1e,0x00,0x1c,0x00,0x08,0x00,0x02,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x0c,0x00,0x0b,0x00,0x10,0x00,0x10,0x00,0x11,0x00,0x10,0x00,0x11,0x00,0x16,0x00,0x12,0x00,0x10,0x00,0x0a,0x00,0x08,0x00,0x08,0x00,0x09,0x00,0x0a,0x00,0x0a,0x00,0x0c,0x00,0x09,0x00,0x09,0x00,0x09,0x00,0x0b,0x00,0x10,0x00,0x0d,0x00,0x0f,0x00,0x0d,0x00,0x08,0x00,0x09,0x00,0x05,0x00,0x08,0x00,0x08,0x00,0x09,0x00,0x09,0x00,0x0a,0x00,0x0d,0x00,0x08,0x00,0x09,0x00,0x06,0x00,0x08,0x00,0x09,0x00,0x0c,0x00,0x0a,0x00,0x0e,0x00,0x0b,0x00,0x0a,0x00,0x0a,0x00,0x0a,0x00,0x08,0x00,0x07,0x00,0x09,0x00,0x05,0x00,0x06,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x01,0x00,0x02,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00 + }; + + static const rt_uint8_t _romfs_root_6_wav[] = { + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xfe,0xff,0xfa,0xff,0xf4,0xff,0xfb,0xff,0xf4,0xff,0xf3,0xff,0xf0,0xff,0xf2,0xff,0x04,0x00,0xf3,0xff,0x07,0x00,0x01,0x00,0xfb,0xff,0x06,0x00,0x01,0x00,0x0d,0x00,0xfc,0xff,0x05,0x00,0x07,0x00,0xff,0xff,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0xf0,0xff,0x01,0x00,0x07,0x00,0xfd,0xff,0xfe,0xff,0x00,0x00,0x02,0x00,0x10,0x00,0x0c,0x00,0xff,0xff,0x01,0x00,0xff,0xff,0x00,0x00,0xfd,0xff,0xff,0xff,0x0e,0x00,0xff,0xff,0xfe,0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xfc,0xff,0xf9,0xff,0x01,0x00,0x0a,0x00,0x03,0x00,0x06,0x00,0xfb,0xff,0xf4,0xff,0x0b,0x00,0x09,0x00,0x0a,0x00,0x02,0x00,0x02,0x00,0x04,0x00,0xfa,0xff,0xf0,0xff,0xff,0xff,0x08,0x00,0x03,0x00,0xf7,0xff,0xf7,0xff,0x03,0x00,0x0a,0x00,0x16,0x00,0x09,0x00,0x07,0x00,0x0d,0x00,0x06,0x00,0x01,0x00,0x05,0x00,0xf0,0xff,0xed,0xff,0xfe,0xff,0xf2,0xff,0xd9,0xff,0xea,0xff,0xc8,0xff,0xf6,0xff,0xdb,0xff,0xff,0xff,0x02,0x00,0xf6,0xff,0x0d,0x00,0x09,0x00,0x22,0x00,0x30,0x00,0x1e,0x00,0x1e,0x00,0x01,0x00,0x08,0x00,0x00,0x00,0xe5,0xff,0xf9,0xff,0xb6,0xff,0x08,0x00,0xd1,0xff,0x1d,0x00,0x01,0x00,0x36,0x00,0x34,0x00,0x37,0x00,0x6e,0x00,0x59,0x00,0x62,0x00,0x6e,0x00,0x45,0x00,0x2d,0x00,0x1b,0x00,0xec,0xff,0x05,0x00,0xbe,0xff,0xea,0xff,0xbf,0xff,0xbf,0xff,0xab,0xff,0xae,0xff,0xa0,0xff,0xa6,0xff,0xb0,0xff,0xa1,0xff,0xb9,0xff,0xcf,0xff,0xd5,0xff,0x03,0x00,0x1d,0x00,0x22,0x00,0x70,0x00,0x8a,0x00,0xab,0x00,0xfc,0x00,0xed,0x00,0x37,0x01,0x20,0x01,0x37,0x01,0x14,0x01,0x02,0x01,0xa9,0x00,0x64,0x00,0xc8,0xff,0xdb,0xff,0xdd,0xfe,0x00,0xff,0xb8,0xfe,0xd4,0xfd,0xe9,0xfe,0x40,0xfd,0xdf,0xfe,0xbb,0xfd,0x4f,0xfe,0xa1,0xfe,0xd3,0xfd,0x6c,0xff,0x47,0xfe,0x83,0xff,0x5f,0xff,0x8e,0xff,0x55,0x00,0x2c,0x00,0x58,0x01,0x5c,0x01,0x70,0x02,0xbd,0x02,0x6f,0x03,0xeb,0x03,0xd0,0x03,0x5d,0x04,0xbf,0x03,0x98,0x03,0xf1,0x02,0xd9,0x01,0xfc,0x00,0x26,0x00,0xf2,0xfe,0x0f,0xfe,0x3d,0xfc,0x97,0xfb,0x99,0xfa,0x92,0xfa,0x0a,0xfa,0xc5,0xf9,0xee,0xf9,0xe5,0xf9,0x02,0xfb,0x7b,0xfb,0x46,0xfd,0xcc,0xfe,0xc2,0x00,0xbe,0x02,0xc2,0x04,0x92,0x06,0x8a,0x07,0x5e,0x09,0xe9,0x08,0x9e,0x09,0x49,0x09,0xeb,0x07,0xa8,0x06,0x93,0x04,0x5a,0x02,0x28,0x00,0x5f,0xfd,0xaf,0xfa,0xb1,0xf8,0x1f,0xf6,0x08,0xf8,0xed,0xf4,0x68,0xf6,0x94,0xf5,0x0b,0xf6,0x3d,0xf9,0x11,0xf8,0x0c,0xfd,0x77,0xfe,0x88,0x01,0x36,0x05,0xed,0x05,0x2c,0x09,0xa0,0x09,0x47,0x09,0xc5,0x0a,0x94,0x08,0xad,0x09,0x57,0x07,0xad,0x06,0x1c,0x04,0x41,0x01,0x90,0x00,0xa4,0xfe,0x26,0xfd,0x8b,0xfb,0x7a,0xfa,0x88,0xf9,0xf6,0xfa,0xac,0xf7,0x5d,0xf8,0x25,0xf7,0xee,0xf7,0x57,0xf8,0xbc,0xf9,0x4f,0xf9,0x53,0xfe,0xc7,0xfe,0x6d,0x01,0xf4,0x05,0x95,0x04,0x67,0x0a,0xb4,0x07,0xf8,0x0a,0x8b,0x09,0x00,0x0a,0x07,0x0b,0x09,0x07,0x53,0x07,0x48,0x05,0xd4,0x03,0xc1,0x01,0xff,0xff,0xce,0xfc,0x3c,0xf9,0x0f,0xf8,0x6d,0xf3,0xaa,0xf2,0x53,0xf0,0x87,0xee,0xbd,0xf0,0xb0,0xee,0xa5,0xf2,0x7f,0xf7,0xed,0xf8,0xdf,0x00,0x67,0x05,0x19,0x09,0x3b,0x10,0xcc,0x10,0x35,0x17,0x49,0x16,0xcf,0x15,0xf6,0x14,0x39,0x10,0x67,0x0d,0x6e,0x06,0x7c,0x02,0xd9,0xfc,0x9b,0xfc,0xa6,0xf5,0xf0,0xf3,0x6b,0xf2,0x35,0xee,0x74,0xee,0xd4,0xed,0xc8,0xed,0x1f,0xef,0x61,0xef,0x95,0xf5,0x38,0xf6,0x33,0xfa,0x72,0x02,0x4c,0x02,0x89,0x0a,0x60,0x0e,0x86,0x0f,0xa5,0x0f,0xc2,0x15,0x50,0x12,0x81,0x13,0x86,0x0f,0x24,0x0c,0x59,0x0b,0x04,0x02,0x3f,0x02,0x74,0xfb,0x4e,0xfd,0x9c,0xf8,0x0f,0xf4,0xe5,0xf3,0xe8,0xec,0xc3,0xef,0x74,0xec,0x38,0xee,0x89,0xf0,0x75,0xf1,0xe3,0xf5,0xf0,0xfb,0x05,0xff,0xf5,0x04,0x67,0x09,0x23,0x0a,0x72,0x0e,0x4f,0x13,0xc8,0x15,0x79,0x17,0x15,0x19,0xe4,0x0f,0xf8,0x0b,0xe4,0x08,0x09,0x03,0xcb,0xfd,0x1f,0xfb,0xc1,0xf6,0xca,0xf1,0x22,0xee,0x74,0xe7,0xfe,0xe9,0x3e,0xea,0xa0,0xe5,0xdf,0xef,0xad,0xf4,0xa1,0xf5,0x7c,0xfd,0xeb,0x02,0x0b,0x08,0x5f,0x0f,0x21,0x12,0x6c,0x18,0xc0,0x16,0x32,0x19,0x96,0x18,0x89,0x14,0xb3,0x14,0xd5,0x0a,0x9e,0x09,0xf7,0x01,0x51,0xfd,0x5b,0xf7,0xaa,0xef,0xe3,0xec,0x4a,0xe5,0x17,0xe0,0x7a,0xdf,0x04,0xe3,0x7c,0xe4,0x35,0xeb,0x70,0xf2,0x02,0xf5,0xdd,0x00,0xf7,0x06,0x89,0x10,0xad,0x15,0x12,0x1b,0x94,0x20,0x79,0x19,0x92,0x20,0x31,0x19,0x24,0x16,0x58,0x13,0x78,0x0b,0x56,0x06,0x90,0xfe,0xd2,0xf8,0x04,0xf0,0x95,0xf0,0xba,0xe5,0x2b,0xe1,0x30,0xdc,0x04,0xdf,0x7d,0xe1,0x5f,0xe4,0xf6,0xef,0x54,0xf2,0x53,0xfd,0xe9,0x06,0x2f,0x0b,0x31,0x15,0xc9,0x1a,0x34,0x1f,0xe0,0x20,0x24,0x1f,0x85,0x1f,0x02,0x17,0x96,0x17,0x40,0x10,0xfd,0x09,0xc1,0x03,0xee,0xf7,0x6f,0xf5,0x73,0xed,0x7b,0xe6,0xed,0xe1,0xd0,0xd2,0xea,0xdd,0x44,0xde,0x2d,0xdc,0x57,0xf1,0xd6,0xed,0xdc,0xfa,0x9e,0x08,0x21,0x0c,0x42,0x16,0xdc,0x1d,0xf7,0x23,0x57,0x20,0x8c,0x22,0x03,0x1f,0xc1,0x16,0x60,0x17,0x7a,0x0e,0x29,0x09,0xca,0x05,0xad,0xfa,0x9d,0xf0,0xc2,0xf1,0xf0,0xdf,0x97,0xe4,0x63,0xd4,0xb8,0xd6,0x83,0xe6,0x50,0xd7,0x3d,0xf8,0xab,0xf0,0x4b,0xfe,0xa1,0x0d,0xe8,0x0c,0x78,0x1b,0xb6,0x18,0x57,0x25,0x74,0x1a,0x51,0x1e,0xc5,0x1b,0x3a,0x0f,0x3a,0x15,0xde,0x07,0xa8,0x08,0x26,0x02,0x44,0xf8,0x42,0xf3,0x77,0xef,0x4a,0xe5,0xfa,0xe3,0xb3,0xd6,0x08,0xdd,0x26,0xe5,0x7a,0xdd,0x5e,0xf8,0x5f,0xf2,0x8b,0x03,0x8c,0x0e,0xfc,0x0f,0x59,0x1c,0xc7,0x19,0x65,0x21,0x1a,0x19,0x0c,0x1b,0x3b,0x18,0xe5,0x0e,0x5b,0x12,0x6b,0x09,0x8e,0x05,0x49,0x05,0x72,0xf5,0xbb,0xf5,0xe5,0xec,0x3b,0xe3,0xa7,0xe2,0x2b,0xcf,0xd1,0xe8,0x4c,0xdb,0xf2,0xe3,0xc2,0xfe,0x2d,0xef,0x3a,0x0e,0xe2,0x0d,0x75,0x12,0x80,0x1b,0xab,0x1b,0x0e,0x1c,0x75,0x17,0x43,0x1b,0x47,0x0f,0xcb,0x11,0x05,0x0b,0x13,0x07,0x82,0x05,0x61,0xfd,0x52,0xf6,0xe1,0xf4,0xa2,0xe9,0x54,0xe9,0x02,0xda,0x67,0xd7,0xd9,0xee,0x70,0xd7,0x02,0xf8,0xb5,0xfc,0xa3,0xf9,0x8c,0x15,0xb1,0x0e,0x88,0x17,0x7b,0x18,0x3c,0x1b,0x79,0x15,0x27,0x14,0x19,0x13,0x51,0x0c,0x9a,0x0a,0x1c,0x07,0xad,0x07,0x50,0x04,0x86,0xfc,0x1f,0xf9,0x9c,0xf4,0x5e,0xe8,0x1d,0xe7,0x97,0xd2,0xca,0xe4,0x12,0xe3,0xa5,0xe0,0xa5,0x01,0x14,0xf5,0x81,0x09,0x61,0x13,0x2b,0x10,0x1c,0x1a,0x9c,0x17,0x88,0x17,0x33,0x12,0xeb,0x13,0xf7,0x0e,0x1a,0x0b,0xdf,0x0c,0x3f,0x07,0xee,0x07,0x91,0x02,0xbd,0xf8,0xf7,0xf9,0x09,0xea,0x4f,0xe9,0x2b,0xd6,0x02,0xd7,0x92,0xec,0x7c,0xd6,0xc4,0xfb,0x72,0xfe,0x26,0xfe,0xb6,0x19,0xd6,0x0e,0xd0,0x19,0xf4,0x17,0xf6,0x16,0xfc,0x13,0x85,0x10,0xc2,0x12,0x72,0x08,0xcf,0x0d,0x8c,0x09,0x56,0x03,0x74,0x08,0x6c,0xf8,0xbe,0xf9,0x0e,0xf2,0xe3,0xe7,0x8f,0xe1,0xd4,0xcd,0x55,0xea,0x48,0xdc,0xce,0xe9,0xae,0x05,0xf3,0xf8,0x74,0x12,0x44,0x16,0xe7,0x13,0x58,0x18,0xac,0x15,0xcd,0x12,0x22,0x0d,0x9f,0x0e,0xbc,0x0d,0x6b,0x06,0x00,0x0d,0x48,0x0a,0x10,0x07,0x91,0x04,0xcb,0xfa,0xe8,0xf7,0x8e,0xeb,0x8c,0xe2,0x69,0xd0,0x49,0xdd,0x56,0xe1,0x56,0xe1,0xe7,0x00,0x16,0xff,0xf6,0x0f,0xe0,0x16,0x1d,0x16,0x87,0x18,0xd4,0x0f,0x9e,0x13,0x7d,0x0b,0x0d,0x0b,0x10,0x0f,0x83,0x08,0x3c,0x0c,0xf2,0x0b,0xdb,0x07,0xa2,0x05,0xe1,0xfa,0xfd,0xf9,0x52,0xed,0x5e,0xe5,0x0d,0xd7,0xf6,0xd1,0x14,0xe7,0xf1,0xdd,0x84,0xf6,0x48,0x06,0x08,0x09,0xb1,0x1c,0x83,0x17,0xa2,0x1b,0x81,0x14,0x6f,0x0f,0x29,0x10,0x7b,0x07,0x52,0x0c,0x73,0x0a,0x56,0x0a,0xec,0x0d,0x54,0x07,0xdb,0x09,0x37,0xfc,0x75,0xf7,0xe2,0xf1,0x31,0xe3,0x12,0xd9,0xba,0xc7,0xad,0xe1,0xb1,0xde,0xd7,0xea,0xd7,0x08,0x61,0x08,0xf2,0x1d,0x45,0x1c,0x44,0x1e,0xd5,0x19,0x9e,0x0c,0x9f,0x11,0x8c,0x08,0xb9,0x06,0xf8,0x10,0x1e,0x09,0x0a,0x0f,0x25,0x0d,0x21,0x0a,0xf1,0x00,0x95,0xf5,0x5f,0xf1,0x90,0xe3,0xde,0xd7,0xc5,0xc1,0x56,0xda,0x38,0xde,0x3c,0xe7,0x62,0x07,0x3e,0x0d,0xe7,0x1f,0x79,0x1e,0x53,0x22,0x6f,0x1b,0xc7,0x0b,0x32,0x0f,0x82,0x08,0xd6,0x05,0x90,0x0d,0xf5,0x0e,0x15,0x0e,0x86,0x0f,0x1c,0x0c,0x38,0x01,0xf8,0xf6,0x24,0xf1,0x1f,0xe4,0x6b,0xd8,0x3d,0xc3,0x93,0xce,0x7c,0xe1,0xc0,0xe1,0x22,0x05,0xc8,0x0f,0x93,0x1e,0x30,0x24,0x76,0x20,0xa7,0x1e,0x9d,0x09,0x77,0x0b,0x28,0x06,0xe7,0x04,0xe0,0x0c,0xf1,0x10,0xf6,0x10,0x2c,0x12,0x91,0x0d,0x66,0x03,0x9b,0xf7,0x30,0xf3,0x1d,0xe5,0x4a,0xda,0x8b,0xc5,0x4a,0xc6,0x5e,0xe1,0x41,0xe2,0xf5,0xff,0xa7,0x10,0x1f,0x1f,0xb3,0x27,0xa7,0x1f,0x02,0x1e,0x57,0x09,0xac,0x05,0x24,0x07,0x1f,0x02,0x4b,0x0c,0x26,0x0f,0x9c,0x13,0x99,0x14,0xe1,0x0e,0x0c,0x08,0x49,0xfc,0xc0,0xf4,0x54,0xe6,0x6d,0xe0,0xeb,0xc8,0x2d,0xbe,0xbd,0xd7,0xbe,0xe1,0x46,0xfb,0x9c,0x0c,0x48,0x21,0x44,0x2c,0xac,0x1f,0xbf,0x1f,0x62,0x09,0xdc,0x05,0x3b,0x01,0xd7,0xfe,0xb9,0x0a,0x79,0x0e,0xf6,0x15,0x93,0x14,0x55,0x11,0x66,0x0c,0xbe,0xff,0x40,0xf5,0x18,0xeb,0x02,0xdd,0x9e,0xcf,0xb6,0xb7,0x7a,0xd0,0x3a,0xe4,0x80,0xf6,0xac,0x10,0x56,0x1c,0x57,0x32,0x87,0x22,0xf1,0x1c,0x95,0x0b,0xac,0x00,0x94,0x01,0x11,0xfe,0xa2,0x09,0x59,0x10,0xec,0x16,0xba,0x17,0x34,0x13,0x95,0x10,0x51,0x03,0xeb,0xf2,0xb3,0xea,0x31,0xdb,0x71,0xcf,0xa6,0xb4,0x0c,0xc7,0xef,0xe4,0xe8,0xf7,0xc4,0x10,0xf4,0x1c,0xc1,0x32,0xa3,0x29,0xa9,0x1c,0x9b,0x0a,0xc3,0xfd,0xf2,0xfc,0x13,0xfe,0x77,0x05,0x3d,0x10,0xb5,0x18,0xd3,0x18,0xc5,0x13,0x7b,0x10,0xb9,0x07,0xee,0xf7,0x92,0xed,0x56,0xde,0xbe,0xd1,0xe8,0xb8,0x05,0xc4,0x7a,0xe1,0x94,0xf5,0xfe,0x10,0xce,0x1b,0xdf,0x2f,0xb5,0x26,0xe3,0x19,0xd5,0x09,0x20,0xfd,0xb8,0xfd,0x8e,0xff,0x17,0x09,0xb5,0x10,0x1a,0x1b,0x6f,0x19,0xcf,0x16,0x53,0x0c,0xaf,0x06,0x0d,0xf8,0xfd,0xeb,0x60,0xdd,0xee,0xd3,0x5a,0xbb,0x3d,0xba,0xb5,0xdc,0x04,0xf9,0x0b,0x17,0x93,0x1a,0xaa,0x2b,0xf0,0x2a,0x56,0x1d,0xca,0x0b,0xf5,0xf8,0x01,0xfd,0x86,0xfe,0x4f,0x04,0x42,0x0b,0x5f,0x1b,0x7a,0x20,0xb2,0x17,0x54,0x0b,0x5d,0x05,0x0e,0xff,0xba,0xf1,0x10,0xde,0x25,0xd4,0x48,0xbf,0x19,0xbb,0xf7,0xd8,0xd5,0xf0,0x51,0x13,0x14,0x1b,0x41,0x2b,0x88,0x29,0x03,0x1f,0x12,0x0f,0xe1,0xf9,0x52,0xfb,0xc8,0xfb,0x9b,0x05,0x51,0x0a,0x56,0x19,0xfa,0x1d,0x1b,0x1b,0xd8,0x0e,0x89,0x08,0x75,0xff,0x16,0xf4,0x38,0xe3,0x84,0xd3,0x07,0xc4,0xd6,0xaf,0xb0,0xd2,0x0d,0xef,0x32,0x11,0xbb,0x1c,0x08,0x24,0xbf,0x2d,0xfb,0x21,0x05,0x14,0xe1,0xf6,0x52,0xf7,0xfc,0xfc,0x0c,0x09,0xe3,0x0b,0xf4,0x15,0xc4,0x1e,0x1c,0x1d,0xe0,0x11,0x0b,0x06,0x9e,0xff,0x1a,0xf7,0x67,0xeb,0xe9,0xd7,0xb5,0xca,0x07,0xb2,0x65,0xc3,0xe9,0xe4,0x70,0x0a,0xef,0x1f,0x17,0x24,0x2e,0x29,0x64,0x22,0x52,0x17,0xdb,0xfd,0x65,0xf3,0xf8,0xf4,0x8e,0x04,0xd6,0x0f,0xd8,0x15,0xb4,0x1c,0x35,0x20,0xe6,0x19,0x70,0x09,0xd6,0xfe,0x9b,0xf4,0xd5,0xef,0x06,0xe1,0x09,0xd3,0x1d,0xbd,0x63,0xb9,0xf6,0xdb,0xc0,0xfc,0x1c,0x1c,0x3c,0x22,0x13,0x26,0x42,0x20,0x58,0x1b,0xb0,0x06,0x5e,0xf4,0xed,0xf5,0x73,0xfd,0x30,0x0e,0x8d,0x11,0x9a,0x19,0x14,0x1c,0x98,0x1e,0x92,0x14,0xa4,0x04,0x7e,0xf8,0x78,0xef,0xe5,0xeb,0x7e,0xda,0x14,0xcb,0x82,0xb3,0x7a,0xc1,0x28,0xea,0xb9,0x0e,0x8f,0x23,0x9a,0x22,0x87,0x26,0x5a,0x22,0x1d,0x19,0x40,0xfb,0xd3,0xef,0x1b,0xf4,0x29,0x08,0xe9,0x14,0x4a,0x16,0x99,0x18,0x30,0x18,0x18,0x19,0xc3,0x0b,0xd3,0x00,0xfd,0xf5,0x97,0xef,0x7f,0xe8,0xc6,0xd6,0x59,0xc2,0xb6,0xb1,0xc7,0xcf,0x9b,0xfa,0x20,0x1f,0x06,0x28,0xf8,0x21,0x35,0x1e,0xc5,0x1b,0xf0,0x0e,0xc9,0xf8,0xbb,0xec,0xe8,0xf3,0x9c,0x0c,0x28,0x18,0x17,0x1b,0x4e,0x15,0x32,0x16,0x6b,0x15,0x85,0x0f,0x71,0x01,0x73,0xf7,0x71,0xeb,0xe7,0xe4,0xc8,0xd5,0x1a,0xc3,0x60,0xb2,0x18,0xd2,0xa3,0xfd,0x1f,0x27,0x9e,0x2a,0xe0,0x1d,0x58,0x18,0x35,0x15,0x65,0x0e,0xc4,0xf8,0x9a,0xed,0x41,0xf7,0x4f,0x10,0x05,0x1a,0x1f,0x1d,0x89,0x15,0x93,0x15,0x86,0x12,0xb2,0x0c,0x8e,0x00,0xc6,0xf5,0x78,0xec,0x68,0xe4,0x4c,0xd3,0x4b,0xc2,0xba,0xb5,0xc3,0xd7,0x9e,0x01,0xe6,0x28,0x40,0x29,0x0b,0x1f,0xf4,0x13,0xe8,0x12,0x3d,0x0e,0x31,0xf9,0x87,0xef,0x9a,0xf5,0xb8,0x0c,0xd6,0x1a,0xe0,0x1d,0x9e,0x14,0xb0,0x10,0xf7,0x0d,0xb2,0x0d,0x8a,0x03,0x9b,0xf9,0xbb,0xed,0xb7,0xe5,0xdd,0xd5,0x4c,0xc6,0x85,0xb5,0xd6,0xd2,0xe0,0xfd,0x2c,0x2a,0x52,0x2f,0xff,0x20,0xfc,0x0f,0x91,0x0c,0x34,0x0c,0xba,0xff,0x72,0xf2,0x12,0xf3,0xd5,0x07,0x96,0x19,0x14,0x23,0xd6,0x17,0x34,0x10,0x99,0x06,0x77,0x0b,0x24,0x06,0x7e,0x01,0x03,0xee,0x17,0xe6,0xed,0xd8,0x5f,0xd2,0x31,0xbe,0x4d,0xc6,0xfd,0xe9,0x1e,0x18,0x97,0x32,0x77,0x28,0x5d,0x16,0x91,0x05,0x21,0x0a,0xd0,0x03,0x2c,0xff,0xde,0xf2,0x46,0x01,0xb1,0x10,0xcd,0x24,0x9c,0x1e,0xda,0x16,0xba,0x06,0xd1,0x05,0xf4,0x05,0x70,0x02,0xfc,0xf7,0x73,0xe8,0xc7,0xe1,0x65,0xd7,0xb5,0xcd,0x87,0xbb,0x3f,0xd7,0x3d,0xfd,0x8c,0x2a,0xbd,0x2c,0xb2,0x1e,0xe1,0x08,0x1b,0x07,0x31,0x08,0xfd,0x04,0x10,0xfa,0x98,0xf6,0x04,0x08,0x8a,0x19,0x87,0x27,0x5c,0x1e,0x62,0x11,0x0b,0x02,0xbc,0x04,0xda,0x04,0x64,0x02,0xe4,0xf1,0x88,0xe8,0x90,0xdc,0x9e,0xd7,0x5d,0xc6,0x3d,0xc4,0xaa,0xdc,0x64,0x08,0x8c,0x2b,0x0a,0x2e,0xb1,0x1b,0xa9,0x05,0xad,0x00,0xa6,0x02,0x50,0x05,0x10,0xfe,0x37,0x00,0x13,0x08,0x9a,0x1a,0x42,0x22,0x6f,0x1e,0x25,0x11,0x01,0x05,0xc3,0x02,0xb6,0x03,0x70,0xff,0x3f,0xf4,0x70,0xe6,0x88,0xdb,0xb1,0xd4,0x6e,0xca,0x93,0xc9,0x09,0xdd,0x9f,0x01,0x47,0x25,0x15,0x2e,0x46,0x1e,0x71,0x05,0xd9,0xfc,0xd8,0xff,0x91,0x06,0x17,0x06,0x31,0x04,0xbc,0x0a,0x75,0x12,0xe6,0x1d,0x8a,0x1d,0x4c,0x16,0x49,0x08,0x62,0x03,0xef,0xff,0x7f,0x01,0x77,0xfa,0x65,0xee,0x23,0xe1,0x19,0xd8,0xf0,0xcf,0xb5,0xc2,0xae,0xce,0x63,0xee,0x01,0x1c,0x9e,0x2e,0x9f,0x28,0xf7,0x0d,0xb1,0xff,0xae,0xfd,0xab,0x05,0x81,0x05,0x27,0x02,0xb1,0x07,0x6c,0x10,0xe9,0x1d,0xeb,0x1c,0xbb,0x19,0x16,0x0c,0xd6,0x05,0xf9,0x00,0x23,0x02,0x3c,0xff,0x7e,0xf4,0xaf,0xe8,0xa4,0xdd,0xde,0xd6,0xfb,0xc6,0x08,0xc1,0xc3,0xd6,0x12,0x03,0xce,0x2a,0xfb,0x33,0x3b,0x21,0xf5,0x05,0xb8,0xfb,0xc2,0xfe,0xa1,0x07,0xc2,0x05,0x91,0x03,0x5c,0x06,0xfb,0x11,0x26,0x1d,0xcd,0x1e,0x4f,0x15,0xc2,0x06,0x46,0x01,0x9a,0x02,0x31,0x05,0x76,0x00,0x83,0xf4,0x44,0xe6,0xdf,0xdb,0x7e,0xd2,0x16,0xc7,0x7f,0xc5,0xc4,0xde,0x27,0x08,0xa0,0x2b,0xdb,0x2f,0x5c,0x1b,0xf6,0xff,0x38,0xf7,0x6b,0xff,0x17,0x0a,0x90,0x0a,0x26,0x06,0x67,0x04,0x2b,0x0d,0xa3,0x18,0xcf,0x1e,0x09,0x19,0xc3,0x0a,0xca,0x00,0x0a,0xff,0xa1,0x02,0x6c,0x03,0xa3,0xfc,0xdd,0xf2,0xca,0xe5,0x30,0xdc,0x2b,0xd2,0x6d,0xca,0x84,0xd2,0x29,0xec,0x76,0x0f,0xe6,0x24,0x27,0x27,0xf4,0x14,0xab,0x01,0x3e,0xf6,0x6e,0xfa,0xba,0x00,0xbe,0x08,0x7c,0x0b,0xfe,0x10,0x6b,0x14,0x05,0x19,0x08,0x17,0x51,0x12,0xf1,0x08,0x24,0x04,0xc6,0x02,0x7d,0x03,0x9c,0x01,0x17,0xfc,0x31,0xf3,0x22,0xe6,0x39,0xdc,0xe1,0xcf,0x49,0xcc,0x5a,0xd3,0xea,0xee,0xa1,0x0d,0x7e,0x27,0x90,0x27,0x5b,0x17,0xea,0xfe,0x98,0xf4,0x87,0xf6,0xc7,0x00,0xc8,0x06,0x7a,0x0b,0xcc,0x0d,0x1c,0x13,0xd8,0x15,0xa1,0x15,0x4d,0x0f,0x77,0x08,0x51,0x06,0x35,0x06,0x8a,0x08,0x14,0x02,0x55,0xfd,0xa6,0xf2,0x1a,0xed,0x05,0xe3,0xd4,0xdc,0x0e,0xd1,0xb9,0xd2,0x7e,0xe3,0x48,0x02,0x3a,0x1e,0x1b,0x27,0x38,0x1c,0x4d,0x03,0x3b,0xf3,0x84,0xef,0x59,0xfd,0xa4,0x0a,0x17,0x13,0x84,0x10,0x40,0x0c,0x82,0x08,0xf6,0x0a,0xa4,0x0d,0x32,0x0e,0x38,0x0c,0xcb,0x09,0x7c,0x08,0x5d,0x08,0x49,0x04,0xef,0xfc,0x9b,0xf2,0xdb,0xea,0x35,0xe6,0xe4,0xdf,0x52,0xd9,0x41,0xd3,0xb4,0xdf,0xd3,0xf6,0xf9,0x15,0xd6,0x23,0x59,0x21,0x01,0x0b,0x1e,0xf8,0x27,0xee,0x68,0xf5,0x57,0x02,0x63,0x0f,0x25,0x14,0xb1,0x10,0x07,0x0d,0xfa,0x08,0xa8,0x0b,0x76,0x0a,0x11,0x0d,0x12,0x09,0x27,0x0a,0x85,0x08,0x15,0x0a,0xdb,0x05,0x78,0x01,0xf2,0xf6,0x3b,0xef,0xcc,0xe4,0x04,0xdf,0xe6,0xd6,0x9a,0xd1,0x41,0xd9,0x16,0xef,0xda,0x0e,0xf0,0x22,0x85,0x25,0x6a,0x14,0x11,0xff,0xbf,0xef,0x6b,0xef,0x46,0xf8,0x3f,0x06,0xd5,0x0e,0xee,0x12,0x2b,0x13,0x64,0x12,0xea,0x10,0x37,0x0e,0x26,0x0a,0xb2,0x05,0xde,0x03,0x42,0x05,0x79,0x08,0xa3,0x0a,0x97,0x08,0x10,0x02,0x4e,0xf9,0xa4,0xef,0x65,0xe8,0x07,0xe2,0x9d,0xdd,0x48,0xd7,0x8c,0xd9,0x0e,0xe6,0xfb,0xfc,0xd3,0x13,0x9f,0x1d,0x1f,0x18,0x4d,0x06,0x9c,0xf9,0x7a,0xf4,0xd8,0xfc,0x63,0x06,0x78,0x0d,0xfa,0x08,0x83,0x04,0xcc,0x00,0x91,0x07,0x45,0x10,0x2a,0x18,0x45,0x16,0x57,0x0e,0x4e,0x05,0x63,0x02,0x1d,0x05,0x5a,0x09,0xd6,0x09,0x6f,0x05,0xb8,0x00,0x52,0xfd,0x7a,0xfc,0xba,0xf7,0x0b,0xef,0xca,0xe0,0x34,0xd4,0x6e,0xcd,0xfe,0xda,0xc3,0xf3,0x6b,0x12,0x45,0x20,0xe3,0x1c,0x3b,0x07,0xa5,0xf3,0x8f,0xe9,0xf8,0xf0,0xc1,0xfd,0x87,0x0a,0xeb,0x0c,0xcb,0x0a,0x8f,0x06,0x6d,0x07,0xbb,0x0b,0x09,0x10,0x6c,0x11,0x8b,0x0c,0x84,0x08,0x03,0x05,0x87,0x09,0x3c,0x0d,0x6c,0x10,0x22,0x0b,0x42,0x05,0x17,0xfd,0x20,0xfd,0xbc,0xfc,0x11,0xfe,0x77,0xf4,0xf1,0xe6,0x2a,0xd6,0x3b,0xce,0xb8,0xd5,0x14,0xee,0x96,0x0b,0xcc,0x1f,0xa4,0x20,0x63,0x0d,0x80,0xf5,0xf6,0xe4,0x25,0xe8,0x8f,0xf5,0xa6,0x07,0x26,0x0e,0xd4,0x0c,0xca,0x03,0x4b,0x01,0x6f,0x03,0x00,0x0d,0xc3,0x12,0x2c,0x15,0x46,0x10,0x68,0x0b,0x60,0x07,0x5b,0x06,0x72,0x07,0xff,0x07,0x64,0x08,0x44,0x07,0xd5,0x06,0x40,0x05,0x96,0x04,0xba,0xff,0x71,0xf8,0xb8,0xea,0xb4,0xde,0xe6,0xd2,0x83,0xd2,0x08,0xde,0x5b,0xf6,0xe4,0x0d,0x56,0x1b,0x13,0x16,0x58,0x04,0xec,0xef,0x3a,0xe7,0x7a,0xed,0x98,0xfd,0xb0,0x0c,0x0d,0x11,0x05,0x0c,0x83,0x03,0xe0,0x00,0x89,0x03,0x58,0x0b,0x6d,0x10,0x7c,0x12,0x51,0x0f,0xa7,0x0b,0x88,0x08,0x74,0x09,0x29,0x0b,0xb3,0x0b,0x06,0x09,0xdd,0x04,0x76,0x01,0x93,0x01,0x23,0x04,0xdb,0x05,0xf1,0x02,0xc4,0xfa,0x0c,0xf0,0x6f,0xe4,0xc9,0xdb,0x0b,0xd6,0xac,0xd5,0xd2,0xdf,0x8e,0xf3,0x96,0x0b,0xd0,0x1c,0x54,0x1d,0xb6,0x0d,0x64,0xf6,0xa2,0xe7,0xf6,0xe8,0x16,0xf8,0x61,0x09,0x9c,0x12,0x80,0x0f,0x1a,0x07,0xb2,0x00,0xac,0x03,0x44,0x0c,0xfa,0x13,0x89,0x13,0xea,0x0a,0x08,0x01,0xe3,0xfb,0xe4,0xfe,0xc0,0x05,0xcf,0x0b,0x9c,0x0b,0xe1,0x07,0x68,0x02,0xd6,0x00,0x45,0x02,0xa8,0x05,0x9b,0x05,0xe2,0x02,0x66,0xfe,0xc9,0xfa,0xb4,0xf8,0x0b,0xf6,0xff,0xf0,0xe1,0xe8,0x9d,0xdf,0x88,0xda,0xce,0xe0,0xbd,0xf2,0x32,0x0a,0xc0,0x1a,0x08,0x1c,0x52,0x0d,0xfc,0xf8,0x3b,0xec,0x2c,0xee,0x32,0xfb,0xb7,0x09,0x79,0x0f,0x11,0x0b,0x61,0x02,0x95,0xfe,0x37,0x02,0x51,0x0a,0x22,0x0f,0xf0,0x0c,0x5a,0x05,0x18,0xff,0xf9,0xfe,0xfe,0x04,0x60,0x0c,0xfb,0x0e,0x23,0x0b,0x69,0x03,0x72,0xfd,0x30,0xfc,0x05,0x00,0x03,0x05,0x86,0x07,0xf4,0x04,0x64,0xff,0x32,0xf9,0x7d,0xf4,0xe1,0xf1,0x7e,0xef,0x81,0xec,0x8b,0xe7,0x54,0xe5,0x7a,0xe9,0x79,0xf5,0x24,0x04,0x57,0x0f,0xdb,0x10,0xe9,0x09,0x6d,0xff,0xd5,0xf8,0xe7,0xf8,0x74,0xfe,0xae,0x04,0x66,0x07,0x3a,0x06,0x77,0x03,0x50,0x03,0x5c,0x05,0xcc,0x08,0x91,0x09,0x70,0x08,0x79,0x05,0x87,0x04,0x3b,0x05,0xde,0x08,0x9f,0x0b,0x88,0x0c,0xf2,0x08,0x94,0x03,0xab,0xfd,0xc8,0xfa,0x05,0xfb,0xb9,0xfd,0x59,0x00,0x87,0x00,0x59,0xff,0xbc,0xfb,0x76,0xf8,0x01,0xf3,0xea,0xed,0x8a,0xe7,0x6b,0xe2,0xff,0xe1,0x76,0xed,0x7e,0x00,0x23,0x14,0xe1,0x1c,0xde,0x16,0xf3,0x05,0xd1,0xf3,0x7f,0xec,0x86,0xf1,0x0f,0x00,0x88,0x0c,0xbd,0x11,0x23,0x0d,0xe5,0x05,0xb0,0x00,0x88,0x01,0x90,0x05,0x09,0x09,0x72,0x08,0xc7,0x03,0xff,0xfe,0xb0,0xfc,0x4f,0x00,0xfb,0x05,0x59,0x0b,0xdb,0x0a,0x58,0x06,0x44,0xff,0x23,0xfb,0xd2,0xfa,0x92,0xfd,0x13,0x00,0xe9,0xff,0x29,0xfd,0x7d,0xf9,0x9e,0xf8,0x7a,0xfa,0x97,0xfe,0xd6,0x00,0x88,0x00,0x46,0xfd,0x06,0xfa,0x7a,0xf8,0x55,0xfa,0xba,0xfd,0xfb,0x00,0xfa,0x01,0x25,0x01,0xf0,0xff,0x9a,0xff,0x0a,0x00,0x8a,0x01,0x49,0x03,0xfc,0x04,0x63,0x05,0xe2,0x04,0x0f,0x03,0x7b,0x00,0xf9,0xfd,0x6f,0xfc,0xc2,0xfc,0x9b,0xfe,0x90,0x01,0x01,0x04,0xb3,0x05,0xe7,0x04,0x04,0x03,0x97,0xff,0xa3,0xfd,0x62,0xfc,0x04,0xfd,0xf9,0xfd,0x8b,0xff,0x41,0x00,0xfb,0xff,0xa1,0xfe,0x47,0xfd,0xdc,0xfc,0xfe,0xfc,0xad,0xfd,0x63,0xfd,0xdb,0xfc,0xeb,0xfb,0x57,0xfc,0x4f,0xfd,0x5f,0xff,0x2c,0x00,0x2b,0x00,0x62,0xff,0xb1,0xff,0x4f,0x01,0xa4,0x03,0x21,0x05,0xf2,0x04,0x61,0x03,0x79,0x01,0xec,0x00,0xe2,0x01,0x2f,0x04,0xa9,0x05,0xed,0x05,0x16,0x04,0x27,0x02,0xa5,0x00,0x40,0x01,0x84,0x02,0x0b,0x04,0x94,0x03,0xb2,0x01,0xf6,0xfe,0xf4,0xfc,0x12,0xfc,0x47,0xfc,0xdb,0xfc,0xcd,0xfc,0x78,0xfb,0x02,0xf8,0xac,0xf3,0x02,0xef,0x65,0xee,0x3e,0xf3,0x49,0xfe,0x6a,0x09,0x09,0x10,0x92,0x0d,0xbf,0x04,0x06,0xfa,0xba,0xf4,0x6f,0xf6,0x4b,0xfe,0x6d,0x06,0x4e,0x0a,0x95,0x08,0xdc,0x03,0x52,0x00,0x01,0x00,0xef,0x02,0xb7,0x05,0xa5,0x06,0x27,0x04,0x0a,0x01,0x53,0xfe,0xc4,0xfe,0xba,0x00,0x9a,0x03,0x53,0x04,0x2f,0x03,0x04,0x00,0x77,0xfd,0xaa,0xfc,0x1b,0xfe,0x47,0x00,0x2e,0x01,0x0b,0x00,0x04,0xfd,0x75,0xfa,0xb2,0xf9,0xbf,0xfb,0xbf,0xfe,0x84,0x01,0x2d,0x02,0x61,0x01,0xe1,0xff,0x23,0xff,0x6c,0xff,0x1c,0x00,0x7c,0x00,0x17,0x00,0xac,0xff,0xce,0xff,0x1e,0x01,0xb9,0x02,0xd9,0x03,0x7e,0x03,0xe2,0x01,0xdd,0xff,0x8b,0xfe,0x8f,0xfe,0x9e,0xff,0x02,0x01,0x86,0x01,0xf7,0x00,0x8b,0xff,0x4d,0xfe,0xb5,0xfd,0xca,0xfd,0x35,0xfe,0x80,0xfe,0xb3,0xfe,0xd4,0xfe,0x2b,0xff,0x93,0xff,0x03,0x00,0x04,0x00,0xa7,0xff,0x1d,0xff,0xf6,0xfe,0x88,0xff,0x8c,0x00,0x84,0x01,0x99,0x01,0xeb,0x00,0xbe,0xff,0x1c,0xff,0x20,0xff,0x07,0x00,0x13,0x01,0xe3,0x01,0xe8,0x01,0x46,0x01,0x76,0x00,0x01,0x00,0x10,0x00,0x64,0x00,0x97,0x00,0x51,0x00,0xef,0xff,0xa4,0xff,0xdf,0xff,0x4e,0x00,0xb4,0x00,0x93,0x00,0xfd,0xff,0x45,0xff,0xdf,0xfe,0x12,0xff,0xd3,0xff,0x85,0x00,0xa9,0x00,0x16,0x00,0x29,0xff,0x83,0xfe,0x80,0xfe,0x11,0xff,0xb7,0xff,0x21,0x00,0x30,0x00,0x28,0x00,0x29,0x00,0x67,0x00,0xa6,0x00,0xd4,0x00,0xaf,0x00,0x5b,0x00,0xd6,0xff,0x8c,0xff,0x7f,0xff,0xdb,0xff,0x5a,0x00,0xc3,0x00,0xe9,0x00,0xb9,0x00,0x75,0x00,0x2c,0x00,0x18,0x00,0x05,0x00,0x0c,0x00,0xd6,0xff,0xa6,0xff,0x53,0xff,0x2a,0xff,0x1f,0xff,0x6c,0xff,0xda,0xff,0x3f,0x00,0x5e,0x00,0x15,0x00,0x7d,0xff,0xe1,0xfe,0xa7,0xfe,0xe8,0xfe,0xaf,0xff,0x79,0x00,0xe2,0x00,0xbd,0x00,0x1b,0x00,0x54,0xff,0xcf,0xfe,0xce,0xfe,0x47,0xff,0x09,0x00,0xa6,0x00,0xed,0x00,0xc8,0x00,0x7e,0x00,0x32,0x00,0x15,0x00,0x2a,0x00,0x57,0x00,0x77,0x00,0x64,0x00,0x25,0x00,0xcf,0xff,0x9c,0xff,0x93,0xff,0xd5,0xff,0x22,0x00,0x7b,0x00,0xa0,0x00,0x91,0x00,0x40,0x00,0xe7,0xff,0x8f,0xff,0x72,0xff,0x86,0xff,0xc6,0xff,0xf4,0xff,0x0d,0x00,0x0d,0x00,0x16,0x00,0x2a,0x00,0x42,0x00,0x3e,0x00,0x1c,0x00,0xeb,0xff,0xbf,0xff,0xbe,0xff,0xde,0xff,0x1a,0x00,0x3d,0x00,0x47,0x00,0x15,0x00,0xe4,0xff,0xb0,0xff,0xb5,0xff,0xd4,0xff,0x0a,0x00,0x2d,0x00,0x38,0x00,0x24,0x00,0x07,0x00,0xed,0xff,0xef,0xff,0x02,0x00,0x18,0x00,0x1c,0x00,0xfd,0xff,0xcd,0xff,0xb1,0xff,0xba,0xff,0xe7,0xff,0x16,0x00,0x37,0x00,0x3e,0x00,0x29,0x00,0x0f,0x00,0xf9,0xff,0xf5,0xff,0xfb,0xff,0x0d,0x00,0x18,0x00,0x20,0x00,0x11,0x00,0xff,0xff,0xe6,0xff,0xe7,0xff,0xf6,0xff,0x1c,0x00,0x39,0x00,0x41,0x00,0x18,0x00,0xdd,0xff,0xb2,0xff,0xad,0xff,0xd5,0xff,0x05,0x00,0x2b,0x00,0x25,0x00,0x0a,0x00,0xe8,0xff,0xe1,0xff,0xf1,0xff,0x11,0x00,0x1d,0x00,0x0f,0x00,0xeb,0xff,0xcd,0xff,0xc1,0xff,0xd8,0xff,0xfc,0xff,0x1c,0x00,0x2a,0x00,0x1d,0x00,0x03,0x00,0xf0,0xff,0xec,0xff,0xf3,0xff,0x00,0x00,0x02,0x00,0xf9,0xff,0xe5,0xff,0xe3,0xff,0xf1,0xff,0x13,0x00,0x2e,0x00,0x31,0x00,0x14,0x00,0xeb,0xff,0xca,0xff,0xc4,0xff,0xe2,0xff,0x0b,0x00,0x24,0x00,0x24,0x00,0x0e,0x00,0xef,0xff,0xdb,0xff,0xdd,0xff,0xef,0xff,0xfd,0xff,0x04,0x00,0xff,0xff,0xf9,0xff,0xf5,0xff,0xfd,0xff,0x02,0x00,0x06,0x00,0x09,0x00,0x03,0x00,0xff,0xff,0xfe,0xff,0x01,0x00,0x01,0x00,0x05,0x00,0x09,0x00,0x0c,0x00,0x0d,0x00,0x10,0x00,0x0b,0x00,0x05,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x01,0x00,0x03,0x00,0x0d,0x00,0x13,0x00,0x16,0x00,0x0e,0x00,0xff,0xff,0xf5,0xff,0xf3,0xff,0xfb,0xff,0x06,0x00,0x11,0x00,0x14,0x00,0x0e,0x00,0x03,0x00,0xfc,0xff,0xf6,0xff,0xf5,0xff,0xf7,0xff,0xfc,0xff,0x02,0x00,0x08,0x00,0x0e,0x00,0x0d,0x00,0x03,0x00,0xf7,0xff,0xea,0xff,0xe7,0xff,0xea,0xff,0xf7,0xff,0x02,0x00,0x08,0x00,0x07,0x00,0x01,0x00,0xff,0xff,0xfd,0xff,0xfe,0xff,0x00,0x00,0x03,0x00,0x01,0x00,0xfe,0xff,0xf6,0xff,0xf1,0xff,0xf4,0xff,0xfb,0xff,0x04,0x00,0x08,0x00,0x06,0x00,0x00,0x00,0xfc,0xff,0xfb,0xff,0xfe,0xff,0x02,0x00,0x02,0x00,0xff,0xff,0xfa,0xff,0xf7,0xff,0xf9,0xff,0x02,0x00,0x0b,0x00,0x10,0x00,0x0c,0x00,0x03,0x00,0xf9,0xff,0xf1,0xff,0xf3,0xff,0xfa,0xff,0x00,0x00,0x03,0x00,0x05,0x00,0x01,0x00,0x01,0x00,0xfe,0xff,0xff,0xff,0xfb,0xff,0xfa,0xff,0xf9,0xff,0xf8,0xff,0xfc,0xff,0x00,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0xfd,0xff,0xf9,0xff,0xf9,0xff,0xfc,0xff,0xfe,0xff,0x00,0x00,0xff,0xff,0xfe,0xff,0xfd,0xff,0xff,0xff,0x00,0x00,0x01,0x00,0x02,0x00,0x03,0x00,0x01,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x01,0x00,0x03,0x00,0x04,0x00,0x04,0x00,0x02,0x00,0x00,0x00,0xff,0xff,0xfd,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xff,0xfb,0xff,0xfb,0xff,0xfc,0xff,0xff,0xff,0x00,0x00,0xfe,0xff,0xfb,0xff,0xf6,0xff,0xf5,0xff,0xf5,0xff,0xf7,0xff,0xfb,0xff,0xfd,0xff,0xfd,0xff,0xfc,0xff,0xfa,0xff,0xf9,0xff,0xfa,0xff,0xfb,0xff,0xfc,0xff,0xfc,0xff,0xfd,0xff,0xff,0xff,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x03,0x00,0x03,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x04,0x00,0x04,0x00,0x06,0x00,0x07,0x00,0x04,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x02,0x00,0x03,0x00,0x03,0x00,0x03,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0xfe,0xff,0xfd,0xff,0xfd,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0xfe,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x01,0x00,0x02,0x00,0x03,0x00,0x02,0x00,0x03,0x00,0x02,0x00,0x02,0x00,0x03,0x00,0x02,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,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,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xff,0xff,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,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,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,0x01,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xff,0xff,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 + }; + + static const rt_uint8_t _romfs_root_7_wav[] = { + 0x02,0x00,0x00,0x00,0xfe,0xff,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0xfd,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x01,0x00,0x01,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x02,0x00,0x03,0x00,0xff,0xff,0xfe,0xff,0x00,0x00,0x02,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0xfc,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x00,0x01,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x01,0x00,0x00,0x00,0x01,0x00,0xfe,0xff,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x02,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0xff,0xff,0x06,0x00,0x00,0x00,0x01,0x00,0xfe,0xff,0x04,0x00,0xff,0xff,0x03,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x03,0x00,0x03,0x00,0xff,0xff,0x09,0x00,0x01,0x00,0x00,0x00,0x06,0x00,0xfe,0xff,0xfd,0xff,0x04,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x01,0x00,0xfe,0xff,0x07,0x00,0xfe,0xff,0x00,0x00,0x05,0x00,0xfa,0xff,0xff,0xff,0x07,0x00,0xfa,0xff,0xff,0xff,0xfe,0xff,0xfc,0xff,0xfb,0xff,0xfd,0xff,0xf9,0xff,0xfd,0xff,0x00,0x00,0xfa,0xff,0x02,0x00,0xfb,0xff,0x03,0x00,0xfc,0xff,0xfe,0xff,0x00,0x00,0xfa,0xff,0xfc,0xff,0xfe,0xff,0xfb,0xff,0x01,0x00,0x00,0x00,0xfc,0xff,0xfb,0xff,0xff,0xff,0x02,0x00,0x00,0x00,0x04,0x00,0x01,0x00,0xf8,0xff,0xff,0xff,0x03,0x00,0x02,0x00,0x03,0x00,0x02,0x00,0xfa,0xff,0x01,0x00,0x0c,0x00,0xf3,0xff,0x1a,0x00,0xf5,0xff,0x0b,0x00,0xfb,0xff,0xf2,0xff,0xf9,0xff,0x04,0x00,0x0f,0x00,0xf3,0xff,0x14,0x00,0xe6,0xff,0xfc,0xff,0x15,0x00,0xfc,0xff,0xfc,0xff,0x0b,0x00,0xfa,0xff,0xf2,0xff,0x0b,0x00,0xf5,0xff,0xf1,0xff,0x19,0x00,0xed,0xff,0x0a,0x00,0x10,0x00,0x07,0x00,0xef,0xff,0x0f,0x00,0x09,0x00,0xf4,0xff,0x0a,0x00,0xf8,0xff,0x04,0x00,0xeb,0xff,0x11,0x00,0xe9,0xff,0x0a,0x00,0xff,0xff,0xf4,0xff,0x15,0x00,0xf8,0xff,0x0d,0x00,0xf9,0xff,0x08,0x00,0x01,0x00,0xe7,0xff,0x07,0x00,0xf9,0xff,0x0e,0x00,0xef,0xff,0x10,0x00,0x04,0x00,0xde,0xff,0x3a,0x00,0xdf,0xff,0x1f,0x00,0xf5,0xff,0x00,0x00,0x21,0x00,0xed,0xff,0xf4,0xff,0xef,0xff,0x06,0x00,0xe9,0xff,0xe9,0xff,0x1d,0x00,0xd1,0xff,0x51,0x00,0xe6,0xff,0xf8,0xff,0x2b,0x00,0xc5,0xff,0x1d,0x00,0x0c,0x00,0x15,0x00,0x12,0x00,0x2b,0x00,0xaa,0xff,0xed,0xff,0xf2,0xff,0x16,0x00,0xd5,0xff,0x39,0x00,0xcb,0xff,0x18,0x00,0x10,0x00,0xe6,0xff,0x42,0x00,0xfd,0xff,0xbc,0xff,0x47,0x00,0xba,0xff,0x14,0x00,0x1f,0x00,0xbe,0xff,0x4c,0x00,0xa2,0xff,0x6a,0x00,0x00,0x00,0x17,0x00,0xa6,0xff,0x2e,0x00,0xc1,0xff,0x54,0x00,0xee,0xff,0xd5,0xff,0x10,0x00,0xf7,0xff,0x0f,0x00,0xb7,0xff,0x49,0x00,0xc8,0xff,0x29,0x00,0x09,0x00,0xe6,0xff,0x26,0x00,0x2e,0x00,0xa1,0xff,0x3b,0x00,0xbd,0xff,0x39,0x00,0xe7,0xff,0x27,0x00,0x08,0x00,0xe0,0xff,0x28,0x00,0xb0,0xff,0x1e,0x00,0xf8,0xff,0x29,0x00,0xb1,0xff,0x2b,0x00,0xca,0xff,0x55,0x00,0xe5,0xff,0x05,0x00,0x0b,0x00,0xec,0xff,0xe2,0xff,0x17,0x00,0x0d,0x00,0xf2,0xff,0x2b,0x00,0xf0,0xff,0x1a,0x00,0xf5,0xff,0x1b,0x00,0x0a,0x00,0xaa,0xff,0x35,0x00,0xdb,0xff,0x3f,0x00,0xde,0xff,0xb5,0xff,0xfa,0xff,0x9e,0xff,0x15,0x01,0x99,0xff,0x74,0x00,0x37,0xff,0xdb,0x00,0xa0,0xff,0xd9,0xff,0x13,0x00,0x9c,0xff,0xde,0x00,0x4f,0xff,0xde,0x00,0xff,0xfe,0x61,0x00,0xe2,0xff,0xd0,0xff,0x47,0x00,0xd8,0xff,0x2b,0x00,0x7d,0xff,0x95,0x00,0x2c,0xff,0x15,0x00,0x5d,0x00,0xa0,0xff,0xe0,0x00,0xa2,0xff,0x15,0x00,0x11,0x00,0x1e,0x00,0xc2,0xff,0x0e,0x00,0x33,0x00,0x6a,0xff,0xbd,0x00,0x5e,0xff,0x35,0x00,0x28,0x00,0x7b,0xff,0x57,0x00,0x5b,0x00,0xc3,0xff,0xfc,0xff,0x26,0x00,0x72,0xff,0x96,0x00,0x2b,0x00,0x4d,0xff,0x69,0x00,0x55,0x00,0x5b,0xff,0x6b,0x00,0x09,0x00,0xa4,0xff,0xd2,0x00,0x51,0xff,0x57,0xff,0xc9,0x00,0xa6,0xff,0xba,0xff,0xd6,0x00,0x7f,0xff,0x5d,0x00,0x71,0x00,0x0d,0xff,0xb3,0x00,0xad,0xff,0x79,0x00,0x52,0xff,0x70,0x00,0x43,0xff,0x1b,0x00,0x1e,0x00,0xdb,0xff,0xd9,0x00,0x41,0xff,0xa4,0x00,0x65,0xff,0x28,0x01,0xe0,0xfe,0x6b,0x00,0xfc,0xff,0x8a,0xff,0x7c,0x00,0x6c,0xff,0xcd,0x00,0x11,0x00,0x98,0xff,0xfb,0xff,0xde,0xff,0x45,0x00,0xd2,0xff,0xbd,0xff,0x3f,0x00,0x96,0xff,0x41,0x00,0xdb,0xfe,0x27,0x00,0x0d,0x00,0xd3,0x00,0x9a,0x00,0x08,0x00,0x1b,0x01,0x36,0xff,0xdf,0x00,0x4d,0xff,0xde,0xff,0x30,0xff,0xb1,0xff,0x73,0x00,0x9e,0xff,0xa5,0x00,0xe0,0xfe,0xbc,0x00,0x1a,0xfe,0x3c,0x01,0x94,0x00,0xc6,0xff,0x12,0x01,0x01,0xff,0x7e,0x00,0xb9,0xff,0x82,0x01,0xa4,0xfe,0x74,0x01,0xc4,0xfe,0xce,0xff,0xc1,0x00,0x83,0xfe,0x13,0x01,0x15,0xff,0x40,0x00,0x50,0xff,0x79,0x00,0x3d,0xff,0xe7,0x00,0xe6,0xff,0x10,0x00,0xc1,0x00,0x3a,0x00,0x75,0xff,0xb2,0x00,0x5f,0xff,0x0e,0x00,0x29,0x00,0x49,0xff,0xa8,0x00,0xf6,0xff,0xcd,0xff,0xee,0xff,0x94,0x00,0xe1,0xfe,0x0f,0x01,0x7d,0xff,0x15,0x00,0xb1,0xff,0x1a,0x01,0xee,0xfd,0xcd,0x00,0xcf,0xff,0xed,0xff,0xdb,0x00,0xa8,0xff,0x7b,0x00,0x47,0xff,0x3d,0x01,0xe3,0xfd,0x41,0x02,0x2a,0xfe,0x1d,0x01,0x66,0x00,0x0e,0xfe,0x9d,0x02,0x32,0xfe,0x5f,0x01,0x8d,0xff,0x1f,0x00,0x5b,0xff,0x0f,0x01,0xb8,0xfe,0xf7,0xff,0x14,0x00,0xbe,0xfe,0xd7,0x00,0x28,0xff,0x07,0x01,0x03,0xff,0x28,0x03,0x57,0xfe,0x67,0x02,0x00,0xfe,0x57,0x00,0x3f,0x00,0x1c,0xfe,0xdd,0x00,0xa7,0xff,0xb9,0x00,0xc2,0xfe,0x8f,0x01,0x32,0xfe,0x56,0x01,0x65,0xff,0x38,0x00,0x39,0x00,0x4d,0x00,0x71,0x00,0xcc,0xfe,0x73,0xff,0x92,0xff,0x7e,0x00,0x89,0x01,0x9d,0x00,0x32,0xff,0x71,0x00,0x3c,0xff,0xeb,0xff,0x6d,0x00,0xdd,0xfe,0x92,0x01,0x3a,0xff,0xbf,0x00,0x95,0xff,0x80,0xff,0x27,0xff,0xf6,0x00,0xf9,0xff,0x21,0xff,0x9a,0x01,0x17,0xfe,0xf1,0x01,0x64,0xfe,0x84,0x00,0xec,0xff,0xda,0xff,0xf6,0xff,0x30,0x00,0x3e,0xff,0x5e,0x00,0x76,0x00,0xbc,0xff,0xf7,0x00,0x2c,0xff,0x3e,0x01,0x9d,0xff,0x84,0x00,0x68,0x00,0x1b,0x00,0x0e,0x00,0xe2,0xfe,0x82,0x00,0x34,0xfe,0x8e,0x00,0x5a,0xff,0xc0,0x00,0xec,0xff,0x2b,0xff,0x76,0x01,0xac,0xfe,0xb3,0x01,0x7d,0xfe,0x72,0x00,0x67,0x00,0xeb,0xff,0xa1,0x00,0x9a,0x00,0xb7,0xfe,0xbb,0x00,0x51,0xff,0xd7,0xff,0xd3,0x00,0x0c,0x00,0x4a,0xff,0x0d,0x00,0x5d,0x00,0x44,0xff,0x6f,0x00,0xb7,0xfe,0x8e,0x00,0xc4,0x00,0x50,0x00,0xa1,0x00,0x98,0xff,0x61,0xff,0x95,0xff,0x16,0xfe,0xde,0x00,0x90,0x00,0xf7,0x00,0x2b,0x01,0x30,0x01,0x24,0xfd,0xda,0x01,0x86,0xfe,0x30,0xff,0xf3,0x02,0x41,0xfc,0xc9,0x02,0x69,0xfe,0x59,0x00,0x02,0xff,0x20,0x02,0x31,0xfd,0xa2,0x00,0xa9,0x01,0x5a,0xfd,0xf4,0x02,0xc8,0xfe,0x80,0x01,0x4e,0xff,0x7c,0x00,0xfa,0xfd,0x33,0x03,0x83,0xfc,0x81,0x03,0xab,0xfe,0x7f,0x00,0x58,0xff,0x9a,0x00,0xf7,0xfd,0x2c,0x01,0x50,0xff,0x04,0xff,0x32,0x02,0x0f,0xfc,0xea,0x04,0x24,0xfc,0x61,0x03,0xfc,0xfb,0x20,0x06,0xe3,0xfa,0xaf,0x02,0xe4,0xfd,0x58,0x01,0xe8,0xff,0xee,0x00,0xb7,0x00,0x3e,0xfe,0x36,0x02,0x4b,0xfa,0x62,0x05,0x05,0xfb,0xd0,0x04,0x36,0xfd,0x2e,0x02,0xbc,0xfd,0x17,0x01,0x84,0xfe,0x47,0xff,0x12,0x03,0x6a,0xfe,0xb5,0x03,0x87,0xfc,0x86,0x01,0x01,0xff,0xf0,0xff,0xab,0x00,0x20,0x00,0x92,0xff,0x41,0xff,0x0b,0x00,0xe8,0xff,0x33,0x00,0xf1,0xfe,0xc4,0x00,0xdd,0x00,0x71,0xff,0x66,0x02,0x4a,0xff,0xbf,0xfd,0x24,0x03,0x80,0xfd,0xce,0xff,0x60,0xff,0x18,0x01,0xfc,0xfb,0x86,0x05,0x06,0xfb,0xc7,0x03,0xb6,0x01,0x2e,0xfd,0x5f,0x04,0xba,0xfb,0x55,0x02,0x5b,0xfe,0x7b,0x01,0xfb,0xfd,0x36,0x03,0x18,0xfb,0x4e,0x03,0x0a,0xfe,0xdb,0xfd,0x02,0x03,0x53,0xfe,0x10,0xff,0x3f,0x03,0xcf,0xfd,0xa0,0x02,0xdb,0xfe,0xd9,0x00,0x66,0xff,0x57,0x02,0x07,0xfe,0x1b,0x02,0x6c,0xfd,0x14,0xfe,0x7c,0x03,0xd0,0xfa,0x44,0x06,0x9a,0xfa,0x5b,0x03,0x3a,0xfe,0x4a,0x01,0xa8,0xfd,0x78,0x03,0x1a,0xfe,0x63,0x01,0x4b,0x00,0xfd,0xfd,0x52,0x02,0xdb,0xfe,0x4a,0xff,0xa0,0xff,0x58,0x03,0x2d,0xfb,0xf0,0x04,0x26,0xfd,0x68,0xff,0x01,0x03,0x2f,0xfa,0xcb,0x04,0x17,0xfe,0xbf,0x01,0x3f,0xfe,0xfe,0xfd,0xb0,0x03,0x5a,0xfc,0xb2,0x03,0x9d,0xfa,0x8b,0x07,0xaa,0xfa,0x10,0x03,0x01,0xff,0x83,0x00,0x7e,0x01,0xf6,0xfe,0x19,0x04,0xfd,0xf9,0xd6,0x08,0x55,0xf3,0xab,0x06,0x06,0xfd,0x5a,0x00,0x15,0xfe,0x95,0x03,0x08,0xfb,0x7b,0x03,0x01,0xff,0x1e,0x00,0x1d,0x04,0x9c,0xfb,0x12,0x07,0x42,0xfa,0x40,0x05,0xe4,0xfa,0x2f,0x03,0x3d,0xfd,0x88,0xfe,0x55,0xfe,0x74,0x02,0x98,0xfe,0x30,0xff,0x5f,0x02,0x63,0x01,0x25,0xfa,0xf3,0x07,0x34,0xf9,0xaf,0x07,0xf0,0xfb,0xf4,0xfe,0xaa,0x02,0x0b,0x00,0x36,0x00,0xa0,0x00,0xa1,0xfe,0x3f,0xfe,0x84,0x03,0x00,0xf9,0xa7,0x09,0x1d,0xf4,0xd4,0x0c,0x02,0xf4,0xfa,0x07,0x7c,0xfc,0xd0,0x02,0xa7,0xff,0xd7,0xfd,0x5b,0xff,0x8c,0xff,0xb6,0x01,0x99,0xfa,0x80,0x0b,0xa8,0xf3,0xc1,0x09,0x3d,0xfc,0x3f,0x03,0x00,0xfb,0xb7,0x06,0xd3,0xf6,0xef,0x08,0x77,0xfe,0xc5,0xf9,0x43,0x0a,0x2f,0xf6,0xa3,0x08,0x76,0xf6,0xfd,0x04,0x1a,0xfd,0x76,0x03,0x3a,0xfb,0x8a,0x04,0x54,0xfb,0xa4,0xff,0x0a,0x06,0x84,0xf9,0xe2,0x06,0x73,0xfe,0x83,0x02,0xf4,0xfb,0x27,0x02,0xb4,0xfe,0xc1,0xfd,0x51,0x03,0x93,0xfb,0x6e,0x04,0xea,0xfd,0x5f,0x02,0xc3,0xfe,0x02,0x01,0x14,0xfe,0x17,0x02,0x9c,0xfe,0x1d,0xfe,0x13,0x05,0x05,0xf6,0x98,0x09,0x20,0xf7,0xc3,0x05,0xcd,0xfb,0x93,0x06,0x9c,0xfa,0x47,0x09,0x64,0xf9,0x00,0x04,0xa2,0xfe,0x9d,0xfa,0x3d,0x0b,0xa2,0xf0,0x3c,0x0b,0x43,0xf7,0xe4,0x03,0xf7,0xfb,0x7c,0x06,0xce,0xfa,0xc9,0x07,0x3d,0xf7,0xec,0x08,0x2d,0xfb,0x83,0x00,0xb9,0x01,0xf4,0xfc,0xb4,0x02,0xd9,0xfd,0x73,0x03,0x1e,0xf9,0xe0,0x07,0x92,0xf6,0x2f,0x09,0x5b,0xf6,0x0a,0x0a,0xa1,0xf7,0x92,0x06,0xd2,0xfd,0x0f,0x00,0x59,0x01,0x18,0x00,0xd1,0xfe,0x4f,0x02,0xf9,0xfd,0x35,0xfe,0xeb,0x06,0x0f,0xf5,0x06,0x0a,0x6e,0xf7,0x9c,0x06,0x9a,0xf8,0xf6,0x07,0xf7,0xf4,0x4e,0x09,0x7a,0xf9,0x09,0x06,0x1b,0xfb,0x97,0x03,0xe6,0x02,0x7a,0xfb,0x50,0x06,0x33,0xfb,0x4a,0x05,0xc2,0xfb,0x01,0x06,0x86,0xf7,0xe7,0x08,0x1f,0xf5,0xdf,0x07,0xea,0xfa,0x99,0x01,0x79,0xfb,0xf2,0x03,0x40,0xf8,0x8f,0x06,0xbb,0xfc,0x78,0x03,0x09,0x01,0xc6,0x01,0xd9,0xfe,0x8c,0x01,0x74,0xfd,0x8a,0xff,0x21,0x05,0x80,0xf7,0x92,0x0a,0x26,0xf7,0x50,0x05,0x92,0xfc,0xc6,0x00,0x4d,0xfd,0xef,0x03,0xe4,0xfa,0xb0,0x04,0x4f,0xfe,0x2c,0xff,0x5b,0x02,0xbc,0xfe,0x2c,0xfe,0xc2,0x06,0x6f,0xf7,0x33,0x07,0x5c,0xfc,0xfd,0x03,0x89,0xfc,0x47,0xff,0xfd,0xff,0x7c,0xfc,0x49,0x03,0xa6,0xfd,0x4a,0x04,0x07,0xff,0x6e,0x00,0xd4,0x00,0x52,0x00,0xab,0xfe,0x7c,0x00,0x73,0xff,0x30,0x00,0x96,0xfb,0xcb,0x06,0xe6,0xf7,0x5f,0x08,0x15,0xfb,0xfb,0x03,0xb6,0xfe,0x4c,0x00,0xdf,0xfc,0xf6,0x01,0x5c,0xfe,0x32,0xfe,0x03,0x00,0xc9,0x00,0xca,0xfd,0xe2,0x03,0xa6,0x01,0xb5,0xfe,0x6f,0x04,0xb4,0xfd,0x6f,0x01,0x97,0xff,0xaa,0x01,0x76,0xff,0x19,0x02,0xc1,0xfb,0xd6,0x03,0x6f,0xf9,0x27,0x00,0x41,0xff,0xc1,0xfe,0x5d,0x01,0x25,0xff,0x19,0x00,0xa8,0x03,0xe3,0xfb,0x21,0x04,0xb9,0xfe,0xb2,0xfe,0x29,0x02,0xe5,0x00,0x8d,0xfd,0x34,0x03,0xbe,0xfe,0x46,0xff,0x83,0x01,0x68,0xfe,0x3f,0x02,0xa2,0xfa,0x34,0x02,0xdb,0xfe,0xee,0xff,0xd4,0xfe,0x0a,0x03,0x60,0xfd,0xad,0x02,0x88,0xfe,0x03,0x03,0x6e,0xff,0x6b,0x00,0xbb,0x01,0x04,0x01,0x67,0xfe,0x38,0x03,0x82,0xfb,0xd8,0x00,0x07,0x00,0xc7,0xfa,0xe0,0x03,0x66,0xfa,0x0e,0x02,0xf9,0xfb,0x69,0xff,0x37,0xff,0xe8,0xff,0xd1,0xfd,0xd9,0x02,0x5c,0xfe,0x86,0x03,0xa0,0xff,0x70,0x04,0x2e,0x00,0x98,0x04,0x74,0x02,0xd4,0x04,0xe4,0xff,0xae,0x04,0x31,0x02,0xb7,0xfd,0xa5,0x03,0x19,0xfc,0x6b,0x01,0x2d,0xfc,0x8e,0xff,0x5a,0xfa,0x04,0xfe,0x83,0xfa,0x6f,0xfc,0x8f,0xf6,0xac,0xfd,0x71,0xf8,0x59,0xff,0x62,0xfc,0x21,0x02,0x38,0x00,0x25,0x02,0x11,0x04,0xd6,0x06,0xf4,0x03,0x65,0x08,0x10,0x09,0x21,0x04,0xf9,0x0c,0x1b,0x02,0xc6,0x0b,0x0e,0x01,0xe1,0x05,0xc2,0x00,0x0a,0xfe,0x95,0xfa,0xd2,0xfb,0x6c,0xf6,0x59,0xf6,0x99,0xf2,0xe8,0xf4,0x6f,0xf1,0x50,0xef,0x62,0xf6,0x52,0xef,0x22,0xfe,0x4f,0xf8,0x44,0x01,0x34,0x02,0x16,0x0c,0x19,0x0a,0x98,0x12,0x30,0x14,0x9c,0x14,0x39,0x17,0x60,0x10,0x63,0x13,0xea,0x0a,0x33,0x09,0xec,0x04,0xcd,0xfe,0xdd,0xf6,0x77,0xf8,0x8a,0xe7,0x3a,0xf0,0x53,0xe6,0xb8,0xea,0xd1,0xe8,0xb3,0xe9,0x50,0xed,0x67,0xf0,0x6f,0xf4,0xf4,0xfa,0xc4,0x01,0x97,0x06,0x7c,0x0e,0x74,0x0e,0xe2,0x18,0xeb,0x15,0x0e,0x1c,0xdd,0x18,0x0f,0x18,0x4a,0x13,0x54,0x12,0xbe,0x09,0xba,0x07,0x21,0x00,0x0d,0xfb,0xf8,0xf7,0xe2,0xef,0xdb,0xeb,0x16,0xe8,0x57,0xe8,0x38,0xea,0x08,0xe6,0xbc,0xeb,0xa6,0xea,0x43,0xf1,0x10,0xf3,0x1e,0xfb,0xce,0x00,0x4f,0x08,0x44,0x0c,0x03,0x13,0xd1,0x17,0x21,0x18,0x23,0x1b,0x09,0x18,0x83,0x19,0xbd,0x11,0x8d,0x13,0x64,0x09,0xd1,0x08,0x34,0x01,0xe1,0xfb,0x40,0xfa,0x8e,0xf3,0x78,0xed,0x9c,0xea,0x84,0xe8,0x53,0xe8,0x6c,0xe6,0x0f,0xeb,0xf4,0xe8,0x50,0xef,0xa4,0xf0,0xe0,0xf5,0x1c,0xff,0x23,0x02,0xf8,0x0b,0x66,0x10,0x15,0x16,0x11,0x1a,0x07,0x1b,0x8f,0x1c,0xc5,0x16,0x63,0x18,0x9e,0x10,0xb3,0x0c,0x33,0x0b,0x3a,0xff,0xa7,0xff,0x0f,0xfa,0x7b,0xef,0x4b,0xf5,0x2f,0xe7,0x1e,0xe8,0x9c,0xed,0x1b,0xe0,0x4b,0xf2,0xd9,0xe4,0x17,0xef,0xaa,0xf2,0xb3,0xf1,0x41,0xfd,0x58,0x01,0x03,0x05,0x1b,0x12,0xbb,0x12,0xed,0x17,0xc1,0x1d,0xc3,0x17,0x6d,0x1c,0x11,0x18,0xb5,0x12,0x57,0x12,0x17,0x0b,0x4e,0x03,0x99,0x03,0x4d,0xf9,0x31,0xf4,0x25,0xf3,0x54,0xe9,0xb1,0xe3,0x61,0xed,0xd7,0xde,0x72,0xeb,0x22,0xe8,0xbe,0xe9,0x04,0xf3,0x71,0xf2,0xde,0xfb,0x20,0x03,0xee,0x06,0x6e,0x11,0x51,0x16,0xee,0x16,0xe7,0x1e,0xa1,0x17,0xaa,0x1b,0x2c,0x16,0x9e,0x13,0xc5,0x0e,0xa4,0x09,0x8e,0x04,0x1f,0x01,0x67,0xfa,0x15,0xf8,0xfc,0xee,0x7c,0xee,0x00,0xe5,0x92,0xe9,0xe5,0xe4,0x58,0xe6,0x3d,0xeb,0xaf,0xe7,0xb5,0xf2,0x90,0xf0,0x12,0xfd,0xb1,0xff,0x89,0x09,0x88,0x0e,0x5c,0x17,0x6e,0x18,0x51,0x1d,0x18,0x1b,0x40,0x1b,0xbc,0x17,0xc8,0x12,0x10,0x10,0x81,0x08,0x02,0x05,0x57,0x00,0xd6,0xfb,0xb5,0xf5,0x24,0xf2,0xff,0xec,0xed,0xe3,0x49,0xeb,0x29,0xe4,0x79,0xe5,0x26,0xec,0xd8,0xe5,0xbc,0xf2,0xc6,0xf0,0xfd,0xf9,0x2a,0x02,0xd7,0x05,0x0b,0x11,0xe1,0x15,0xdf,0x17,0x8d,0x1f,0x4a,0x1b,0x04,0x1c,0x6e,0x1a,0x46,0x13,0x6f,0x11,0x45,0x0b,0xa8,0x03,0x0c,0x03,0xea,0xf8,0xee,0xf6,0x70,0xee,0xd6,0xeb,0x8e,0xe1,0x1e,0xe8,0x4d,0xe3,0x8c,0xe2,0x25,0xec,0x16,0xe6,0x3e,0xf1,0x70,0xf4,0x7b,0xf9,0x96,0x04,0x46,0x09,0x12,0x10,0x1d,0x1b,0x5c,0x17,0x71,0x21,0xe1,0x1b,0x7e,0x1b,0x74,0x1a,0xd6,0x12,0xae,0x0f,0xda,0x0b,0xee,0x00,0x17,0x03,0xbc,0xf8,0xc4,0xf5,0xde,0xef,0xee,0xea,0x8e,0xe2,0xe5,0xe8,0x03,0xe3,0x24,0xe3,0x0d,0xeb,0x64,0xe4,0x6b,0xf1,0xc7,0xf1,0xd4,0xf9,0x21,0x03,0x4d,0x08,0xba,0x10,0xa8,0x1a,0x01,0x18,0xdc,0x23,0x31,0x1b,0x0b,0x1f,0xba,0x1a,0x70,0x13,0x94,0x12,0x0d,0x09,0x73,0x03,0xf3,0x00,0xa3,0xf8,0xf4,0xf3,0x88,0xee,0x47,0xe9,0x53,0xe0,0x00,0xe8,0x6f,0xe1,0xdd,0xe2,0x06,0xeb,0x67,0xe5,0x6b,0xf2,0xd8,0xf3,0x27,0xfb,0xba,0x05,0xc0,0x09,0xe1,0x13,0xdb,0x1a,0x41,0x19,0xc8,0x23,0xcd,0x1a,0xd2,0x1e,0xb8,0x19,0x5b,0x13,0xda,0x10,0x8e,0x08,0x72,0x03,0x0f,0xff,0x9c,0xf9,0xf2,0xf3,0xe7,0xed,0xc9,0xeb,0xc9,0xdd,0x11,0xea,0x9d,0xdf,0x53,0xe2,0x47,0xeb,0xb8,0xe2,0x8c,0xf2,0xe1,0xf2,0x50,0xf9,0xbf,0x06,0x81,0x08,0x79,0x13,0x60,0x1c,0x76,0x18,0xf6,0x25,0x00,0x1b,0x57,0x1f,0xbb,0x1a,0xc5,0x12,0x55,0x12,0xa8,0x08,0x7c,0x02,0x9e,0x00,0x4e,0xf7,0x5d,0xf4,0xa5,0xed,0x4a,0xe9,0x71,0xe0,0xd0,0xe8,0x73,0xe0,0xe9,0xe3,0x1f,0xea,0xf8,0xe5,0xb6,0xf2,0xc0,0xf3,0xde,0xfb,0x77,0x05,0x4b,0x0b,0xb6,0x12,0x59,0x1b,0xef,0x19,0x9b,0x21,0xcc,0x1b,0x19,0x1d,0x5c,0x18,0x5a,0x14,0xba,0x0e,0x89,0x09,0xba,0x02,0x7d,0xfe,0xc4,0xf9,0x57,0xf2,0x55,0xee,0xda,0xe9,0x05,0xdf,0xb2,0xea,0xe4,0xdf,0xc0,0xe4,0x08,0xec,0x27,0xe5,0xbd,0xf4,0x95,0xf4,0x1c,0xfc,0xa8,0x07,0xae,0x0a,0xe8,0x13,0x4c,0x1b,0xab,0x18,0xc4,0x21,0xd6,0x19,0x7c,0x1c,0xe8,0x16,0xa7,0x11,0x82,0x0d,0x6c,0x06,0xa1,0x01,0x05,0xfd,0x71,0xf8,0xc6,0xf2,0x7a,0xee,0x1c,0xeb,0x9c,0xe1,0x9a,0xec,0xe9,0xe1,0x31,0xe8,0xe8,0xec,0x07,0xe8,0x00,0xf6,0x50,0xf4,0xa7,0xfd,0x50,0x06,0x4e,0x0a,0x7a,0x13,0x3b,0x19,0x63,0x18,0x71,0x20,0x6d,0x18,0x58,0x1d,0xf6,0x14,0x5d,0x12,0x7d,0x0e,0xf5,0x04,0x29,0x04,0xff,0xfb,0xd7,0xf8,0xb5,0xf4,0x23,0xec,0x4e,0xec,0x2f,0xe1,0x5b,0xeb,0x5b,0xe2,0x3c,0xe7,0x56,0xeb,0x50,0xe9,0x51,0xf4,0x8a,0xf6,0xdd,0xfd,0xf6,0x06,0xa7,0x0c,0xeb,0x12,0x05,0x1b,0xb8,0x18,0x1d,0x1f,0x4a,0x19,0xfe,0x1a,0xac,0x13,0xd7,0x11,0x88,0x0b,0x65,0x05,0xe9,0x01,0x69,0xfb,0x93,0xf8,0x98,0xf2,0xb3,0xed,0xbc,0xea,0xe7,0xe2,0xe0,0xec,0xaa,0xe1,0x74,0xeb,0x51,0xea,0x51,0xec,0x91,0xf5,0xfd,0xf6,0x63,0x00,0x2f,0x07,0x0e,0x0d,0xf4,0x14,0x47,0x18,0x95,0x1a,0x64,0x1d,0xac,0x18,0x5a,0x1b,0x24,0x11,0xcf,0x12,0x0d,0x09,0xb4,0x04,0xcd,0x00,0x06,0xf9,0x41,0xf8,0x58,0xf0,0x34,0xed,0x81,0xe9,0xe7,0xe2,0xca,0xed,0x89,0xe1,0x8e,0xed,0x6c,0xeb,0xbd,0xee,0xa8,0xf7,0x2a,0xf9,0xd7,0x02,0x39,0x09,0x17,0x0d,0x6b,0x16,0xe7,0x16,0xd0,0x19,0xad,0x1b,0xeb,0x16,0x11,0x18,0x82,0x0f,0x48,0x10,0x10,0x07,0x30,0x04,0x1c,0xff,0x53,0xfa,0x76,0xf8,0xc0,0xf0,0x95,0xef,0x04,0xe9,0x87,0xe5,0x5e,0xef,0xcb,0xe0,0xe3,0xf0,0x99,0xe9,0xb9,0xef,0xcf,0xf8,0xbb,0xf7,0x6e,0x04,0xb2,0x08,0xd9,0x0c,0xf4,0x17,0x63,0x16,0xaf,0x1a,0x02,0x1c,0xc8,0x16,0x0f,0x18,0x65,0x10,0x80,0x0e,0x0d,0x08,0xa4,0x02,0x01,0xfe,0x66,0xfa,0x5a,0xf5,0xbb,0xef,0x40,0xee,0x2e,0xe6,0x28,0xe7,0x11,0xed,0x85,0xe0,0xf5,0xf2,0x2b,0xe7,0x6a,0xf3,0x62,0xf8,0x3e,0xf9,0xf3,0x06,0xa1,0x08,0xb3,0x0f,0x94,0x18,0xd6,0x16,0xad,0x1c,0x97,0x1b,0xcd,0x17,0xdf,0x17,0x6a,0x10,0xdc,0x0d,0xd8,0x07,0x9d,0x01,0x23,0xfd,0x18,0xf9,0x76,0xf3,0xbd,0xed,0x15,0xed,0xbb,0xe2,0x89,0xe9,0xa4,0xe8,0x8e,0xe2,0x17,0xf3,0xfa,0xe5,0x92,0xf8,0x09,0xf7,0xe8,0xfd,0x16,0x09,0x05,0x0a,0xbf,0x13,0x66,0x18,0xff,0x17,0xbd,0x1d,0x55,0x19,0x6d,0x18,0x58,0x15,0xe4,0x0e,0x95,0x0c,0xff,0x04,0xec,0xff,0xde,0xfb,0x34,0xf7,0x27,0xf2,0x49,0xed,0xe7,0xeb,0x26,0xe2,0x00,0xec,0x5b,0xe5,0xd5,0xe6,0x3a,0xf0,0x70,0xe8,0xb4,0xf9,0xbf,0xf6,0xb6,0x01,0xe7,0x08,0xc9,0x0c,0x74,0x15,0x56,0x19,0x60,0x19,0x37,0x1e,0xba,0x18,0xbf,0x18,0xaf,0x14,0xd7,0x0d,0xfc,0x0b,0xd7,0x02,0xa5,0xfe,0x88,0xfa,0xd9,0xf4,0x88,0xf0,0xd6,0xec,0xa5,0xe8,0xc5,0xe3,0xb0,0xec,0x34,0xe3,0xba,0xec,0xf4,0xec,0x49,0xee,0x6f,0xfa,0x9b,0xf8,0x46,0x06,0xd2,0x08,0xca,0x0f,0xd1,0x16,0xed,0x17,0x28,0x1b,0x33,0x1b,0x28,0x17,0x4b,0x17,0x35,0x0f,0x32,0x0d,0xe2,0x07,0x99,0xff,0xa6,0xfe,0xf5,0xf6,0x6f,0xf5,0xe0,0xee,0x63,0xed,0xb3,0xe7,0x9e,0xe6,0x4c,0xed,0x03,0xe4,0x9e,0xf0,0x65,0xec,0x85,0xf2,0xa5,0xfa,0x90,0xfb,0xdb,0x06,0x86,0x0a,0x13,0x10,0xd4,0x17,0xd6,0x16,0x07,0x1b,0xca,0x19,0x75,0x15,0x55,0x16,0x85,0x0d,0xa2,0x0c,0x8a,0x06,0x93,0xfe,0xba,0xfe,0x0c,0xf6,0xde,0xf4,0x78,0xef,0x8a,0xed,0x11,0xe6,0xe2,0xeb,0xf7,0xe8,0x70,0xe8,0xab,0xf0,0x81,0xeb,0x74,0xf7,0x2e,0xf8,0x87,0xff,0xad,0x06,0x7a,0x0a,0xdf,0x11,0xb7,0x15,0x37,0x17,0x63,0x1a,0x38,0x17,0xba,0x16,0xce,0x12,0xae,0x0e,0xb3,0x0b,0xad,0x04,0x88,0x00,0x45,0xfc,0x23,0xf7,0x00,0xf3,0xcf,0xee,0xfe,0xeb,0xcd,0xe3,0x5b,0xee,0x2e,0xe3,0x97,0xeb,0x21,0xee,0xc9,0xeb,0xa5,0xf9,0xb3,0xf8,0x73,0x02,0x53,0x0a,0x97,0x0c,0xb2,0x16,0x27,0x18,0x0d,0x19,0xb4,0x1d,0xa3,0x16,0xbf,0x17,0x04,0x12,0x9b,0x0c,0x74,0x09,0xca,0x00,0x72,0xfc,0xc7,0xf8,0x6b,0xf2,0x9a,0xee,0x76,0xed,0xfa,0xe4,0x85,0xe8,0x60,0xeb,0x7a,0xe4,0xa1,0xf2,0x15,0xec,0xf2,0xf6,0x47,0xfb,0x80,0xff,0x4b,0x09,0x03,0x0c,0x3e,0x12,0x91,0x17,0x65,0x17,0xbd,0x19,0x7a,0x19,0xf1,0x14,0x5c,0x13,0xb7,0x0d,0xe2,0x09,0x31,0x04,0x9c,0xfe,0x77,0xf9,0x7e,0xf6,0x97,0xf0,0x5d,0xec,0xb3,0xec,0xfb,0xe1,0xd6,0xed,0x26,0xe6,0x99,0xe9,0x15,0xf2,0x0d,0xed,0x7e,0xfb,0x14,0xfb,0x73,0x04,0x1f,0x0b,0x31,0x0f,0xc6,0x14,0xea,0x19,0x27,0x16,0x83,0x1c,0x35,0x16,0xbd,0x13,0x6e,0x12,0x84,0x08,0x81,0x09,0x62,0xff,0xe3,0xfb,0x8e,0xf8,0x42,0xf2,0xa3,0xef,0x55,0xed,0x2d,0xe8,0x4f,0xe8,0xb9,0xed,0x16,0xe6,0xec,0xf2,0xc3,0xed,0x5f,0xf7,0xb5,0xfa,0x1f,0x00,0x3f,0x08,0xfd,0x0a,0x31,0x12,0x28,0x15,0x5a,0x17,0x10,0x17,0x2d,0x19,0xb4,0x12,0xee,0x13,0xa5,0x0b,0x6d,0x0a,0xe1,0x03,0x70,0xfe,0xe3,0xfa,0xb3,0xf5,0x03,0xf2,0xc2,0xed,0x99,0xec,0x2e,0xe6,0x3e,0xec,0x12,0xea,0x3b,0xea,0xd6,0xf2,0x1f,0xf0,0x5f,0xfa,0x5e,0xfd,0xa5,0x03,0x3d,0x0a,0xec,0x0e,0x9d,0x12,0x1e,0x18,0x60,0x15,0xe4,0x17,0xe4,0x15,0x1f,0x10,0x30,0x11,0x29,0x08,0xd5,0x06,0xa8,0x01,0x83,0xfa,0xe4,0xf9,0x90,0xf3,0x25,0xf0,0xb1,0xef,0x9a,0xe9,0x4a,0xea,0x9d,0xef,0xdd,0xe7,0x2e,0xf3,0x74,0xf0,0x5f,0xf6,0xe2,0xfd,0x74,0xfe,0x69,0x0a,0xbc,0x09,0x5f,0x12,0x24,0x14,0x30,0x16,0xab,0x15,0x1c,0x17,0x8f,0x10,0xc0,0x11,0xde,0x09,0x6e,0x07,0x96,0x03,0xc7,0xfb,0x46,0xfa,0xd1,0xf4,0x2f,0xf2,0x0f,0xef,0xb9,0xee,0x01,0xe8,0x01,0xf1,0x67,0xea,0x74,0xf0,0x02,0xf4,0x41,0xf3,0xd2,0xfd,0x0c,0xfd,0x2f,0x06,0xa9,0x09,0xf1,0x0d,0x55,0x12,0x6e,0x14,0x91,0x13,0xe7,0x15,0x52,0x11,0x04,0x10,0x80,0x0c,0x1c,0x07,0xa9,0x05,0x90,0xfe,0xbe,0xfb,0xb3,0xf6,0x06,0xf5,0xc0,0xee,0x01,0xf2,0x3e,0xea,0x2f,0xef,0xa1,0xf0,0x92,0xeb,0x5c,0xf8,0x73,0xf1,0x0c,0xfc,0xc4,0xfd,0x93,0x01,0xf8,0x08,0x2e,0x0b,0x43,0x0f,0x7e,0x12,0xb1,0x11,0x4a,0x12,0x93,0x11,0xbf,0x0d,0xdd,0x0d,0x92,0x06,0xa1,0x06,0x4e,0x00,0x2c,0xfd,0xa8,0xfa,0x87,0xf5,0xc7,0xf4,0xbf,0xf1,0xaa,0xf0,0x17,0xef,0xcc,0xf3,0x35,0xee,0x14,0xf5,0x22,0xf5,0xc8,0xf6,0xa8,0xfe,0x38,0xfd,0xa0,0x06,0xe1,0x06,0x7e,0x0c,0x27,0x0f,0xc9,0x0f,0x9b,0x10,0xa9,0x10,0xdd,0x0c,0x34,0x0e,0xe6,0x07,0xe9,0x05,0xf6,0x03,0xaf,0xfc,0xd2,0xfd,0x3a,0xf7,0xab,0xf6,0x64,0xf5,0x2a,0xf2,0x81,0xf2,0x0f,0xf2,0x9b,0xf4,0xc0,0xf1,0xfd,0xf7,0x66,0xf6,0x8d,0xfb,0x2e,0xfe,0x70,0x01,0x30,0x06,0x33,0x08,0xbe,0x0c,0xf5,0x0c,0x81,0x0f,0xf8,0x0d,0x93,0x0e,0x2e,0x0b,0x2f,0x0b,0x4c,0x05,0x9f,0x05,0xa7,0xff,0x0a,0xfe,0xc3,0xfa,0x50,0xf7,0x15,0xf8,0x0d,0xf3,0xd1,0xf5,0x70,0xf1,0x7e,0xf5,0x06,0xf5,0x7e,0xf3,0xd1,0xfa,0x83,0xf6,0x5c,0xfe,0x7e,0xfe,0x8d,0x02,0x65,0x06,0x22,0x08,0x2a,0x0b,0xf1,0x0c,0x4f,0x0c,0x4f,0x0e,0x46,0x0b,0x41,0x0b,0x96,0x08,0x8c,0x04,0x11,0x05,0x3a,0xfe,0x84,0xff,0x29,0xfa,0x15,0xf9,0xdc,0xf7,0xc9,0xf5,0xac,0xf4,0x05,0xf6,0x5c,0xf4,0xdd,0xf7,0x79,0xf6,0x1a,0xfa,0x38,0xfa,0x51,0xfe,0x95,0xfe,0x7d,0x03,0x1a,0x05,0x6a,0x06,0xcf,0x0a,0xdb,0x07,0x46,0x0d,0xe3,0x08,0xef,0x0a,0xce,0x08,0x54,0x06,0x1e,0x05,0x65,0x02,0xf0,0xff,0x5a,0xfe,0x66,0xfb,0xd1,0xf9,0x23,0xf9,0x84,0xf6,0x73,0xf7,0x7a,0xf5,0xb0,0xf6,0xbf,0xf8,0x1c,0xf7,0x56,0xfb,0x9d,0xfb,0xeb,0xfd,0xe7,0x00,0x19,0x02,0x3b,0x05,0x74,0x07,0xfa,0x07,0xfd,0x09,0x64,0x09,0x25,0x09,0xbb,0x08,0xda,0x05,0x63,0x05,0xb4,0x01,0xd3,0x00,0x77,0xfe,0xab,0xfc,0xd5,0xfb,0xac,0xfa,0x5f,0xf9,0xf9,0xf9,0xd9,0xf8,0x66,0xfa,0x42,0xfa,0xbc,0xfb,0x86,0xfc,0x9c,0xfc,0xce,0xfe,0x90,0xfe,0x93,0x00,0x44,0x01,0x6e,0x02,0xc2,0x03,0x52,0x04,0xc4,0x04,0x67,0x06,0xa0,0x04,0xb2,0x06,0xb0,0x04,0x2a,0x04,0x19,0x04,0xb3,0x01,0x0d,0x02,0x48,0x00,0x17,0xff,0xa8,0xfe,0xd2,0xfc,0x0b,0xfc,0x5f,0xfb,0xb9,0xf9,0xf4,0xf9,0x2e,0xf9,0x45,0xf9,0xf4,0xf9,0x85,0xfa,0xaf,0xfb,0x69,0xfd,0xe2,0xfe,0xca,0x00,0xae,0x02,0x6e,0x04,0x1d,0x06,0x5b,0x07,0x36,0x08,0x48,0x08,0xff,0x07,0x9d,0x06,0x31,0x05,0x8c,0x03,0x92,0x01,0x88,0x00,0x6b,0xfe,0xb3,0xfd,0x76,0xfc,0x2d,0xfb,0xb4,0xfa,0x26,0xfa,0x3b,0xf9,0x9e,0xf9,0x77,0xf9,0x02,0xfa,0x07,0xfb,0xd9,0xfb,0x79,0xfd,0xe0,0xfe,0x4a,0x00,0x05,0x02,0xcc,0x03,0x38,0x05,0xcb,0x06,0x54,0x07,0x20,0x08,0x0d,0x07,0xdf,0x06,0xec,0x04,0x11,0x03,0xcf,0x01,0x28,0xff,0xf5,0xfd,0x81,0xfc,0x26,0xfb,0x70,0xfa,0x08,0xfa,0xd7,0xf9,0x75,0xfa,0x12,0xfb,0x2d,0xfc,0x5b,0xfd,0x50,0xfe,0xe8,0xff,0xbe,0x00,0xe2,0x01,0x5a,0x03,0xaf,0x03,0xf7,0x04,0x23,0x05,0x08,0x05,0xfd,0x04,0x07,0x04,0x8a,0x03,0x57,0x02,0x1e,0x01,0x75,0x00,0x20,0xff,0x45,0xfe,0xbd,0xfd,0x69,0xfc,0xfb,0xfb,0x9b,0xfb,0xb7,0xfa,0x4d,0xfb,0x27,0xfa,0x21,0xfc,0x79,0xfc,0x80,0xfd,0x1d,0x00,0x57,0xff,0x50,0x02,0x7d,0x02,0xa2,0x03,0x92,0x04,0x8c,0x04,0xcb,0x04,0x64,0x04,0x57,0x03,0xeb,0x02,0x54,0x01,0x26,0x00,0x7f,0xff,0xd6,0xfd,0xd0,0xfd,0x15,0xfd,0xcb,0xfc,0x13,0xfd,0x6a,0xfd,0x8f,0xfd,0xe9,0xfe,0xe2,0xfe,0xf3,0xff,0x85,0x00,0xce,0x00,0xa1,0x01,0x81,0x01,0xfa,0x01,0xb8,0x01,0x8f,0x01,0x44,0x01,0xbe,0x00,0x8a,0x00,0xe0,0xff,0x98,0xff,0x8b,0xff,0x1f,0xff,0x8e,0xff,0x4a,0xff,0x68,0xff,0xcd,0xff,0xbc,0xff,0xef,0xff,0x33,0x00,0x00,0x00,0x38,0x00,0x5b,0x00,0xe3,0xff,0x87,0x00,0xe0,0xff,0x10,0x00,0x1a,0x00,0xb4,0xff,0x14,0x00,0xd0,0xff,0xd6,0xff,0x02,0x00,0xd3,0xff,0xd3,0xff,0x2e,0x00,0xcb,0xff,0x25,0x00,0x10,0x00,0xef,0xff,0x59,0x00,0x06,0x00,0x17,0x00,0x2a,0x00,0xcf,0xff,0x0f,0x00,0xca,0xff,0xc3,0xff,0xf5,0xff,0xaf,0xff,0x17,0x00,0xcf,0xff,0x21,0x00,0x06,0x00,0xfe,0xff,0x3f,0x00,0xfe,0xff,0x54,0x00,0x19,0x00,0x31,0x00,0x11,0x00,0x13,0x00,0x02,0x00,0xfb,0xff,0xe9,0xff,0xe1,0xff,0xe4,0xff,0xd8,0xff,0x04,0x00,0xe3,0xff,0x1b,0x00,0x12,0x00,0x0a,0x00,0x28,0x00,0x06,0x00,0x03,0x00,0x05,0x00,0xe4,0xff,0x00,0x00,0xe0,0xff,0xee,0xff,0xfd,0xff,0xef,0xff,0x07,0x00,0x0a,0x00,0x10,0x00,0x1c,0x00,0x1a,0x00,0x24,0x00,0x24,0x00,0x1b,0x00,0x13,0x00,0x07,0x00,0x04,0x00,0xeb,0xff,0xf4,0xff,0xd5,0xff,0xe9,0xff,0xd5,0xff,0xd8,0xff,0xec,0xff,0xd1,0xff,0xe9,0xff,0xeb,0xff,0xea,0xff,0xf7,0xff,0x02,0x00,0xf9,0xff,0x0c,0x00,0x0f,0x00,0x13,0x00,0x1d,0x00,0x11,0x00,0x1e,0x00,0x0e,0x00,0x12,0x00,0x11,0x00,0xfc,0xff,0x03,0x00,0xf6,0xff,0xee,0xff,0xf0,0xff,0xe8,0xff,0xe8,0xff,0xf2,0xff,0xef,0xff,0xfd,0xff,0xfc,0xff,0xfe,0xff,0x08,0x00,0x0d,0x00,0x0e,0x00,0x0b,0x00,0x12,0x00,0x05,0x00,0x0c,0x00,0x08,0x00,0x00,0x00,0x05,0x00,0xfc,0xff,0xf8,0xff,0xfb,0xff,0xfb,0xff,0xf6,0xff,0xff,0xff,0xf9,0xff,0xfd,0xff,0xff,0xff,0xf9,0xff,0x09,0x00,0x00,0x00,0x06,0x00,0x03,0x00,0xfc,0xff,0x04,0x00,0x02,0x00,0x03,0x00,0xff,0xff,0x03,0x00,0xfe,0xff,0x02,0x00,0xf9,0xff,0xfa,0xff,0xf5,0xff,0xee,0xff,0xf4,0xff,0xef,0xff,0xf0,0xff,0xf7,0xff,0xfc,0xff,0xfa,0xff,0x05,0x00,0x00,0x00,0x06,0x00,0x04,0x00,0x0e,0x00,0x0e,0x00,0x0d,0x00,0x15,0x00,0x0e,0x00,0x0a,0x00,0x0d,0x00,0x04,0x00,0x08,0x00,0xfe,0xff,0x00,0x00,0xfb,0xff,0xf4,0xff,0xfd,0xff,0xf1,0xff,0xfa,0xff,0xed,0xff,0xf2,0xff,0xed,0xff,0xee,0xff,0xef,0xff,0xf4,0xff,0xf9,0xff,0xf9,0xff,0x06,0x00,0xfd,0xff,0x07,0x00,0x04,0x00,0x09,0x00,0x08,0x00,0x0a,0x00,0x0d,0x00,0x03,0x00,0x0a,0x00,0x05,0x00,0x06,0x00,0x05,0x00,0x07,0x00,0x05,0x00,0x08,0x00,0x03,0x00,0x07,0x00,0x02,0x00,0x05,0x00,0x04,0x00,0xff,0xff,0x01,0x00,0x00,0x00,0xfe,0xff,0x02,0x00,0x01,0x00,0x00,0x00,0x06,0x00,0xff,0xff,0x04,0x00,0x05,0x00,0x08,0x00,0x04,0x00,0x0b,0x00,0x07,0x00,0x04,0x00,0x08,0x00,0x01,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0xfe,0xff,0xff,0xff,0xfb,0xff,0xfa,0xff,0xfa,0xff,0xf6,0xff,0xfc,0xff,0xf5,0xff,0xfd,0xff,0xfc,0xff,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x00,0x04,0x00,0x03,0x00,0x04,0x00,0x01,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0xfc,0xff,0xfa,0xff,0xfb,0xff,0xfa,0xff,0xfb,0xff,0xfc,0xff,0xfe,0xff,0xfc,0xff,0x01,0x00,0xfe,0xff,0x01,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x05,0x00,0x08,0x00,0x06,0x00,0x08,0x00,0x07,0x00,0x0a,0x00,0x07,0x00,0x06,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0xfc,0xff,0xfc,0xff,0xfb,0xff,0xfd,0xff,0xfd,0xff,0xfc,0xff,0xfd,0xff,0xfe,0xff,0xff,0xff,0x00,0x00,0x02,0x00,0x01,0x00,0x04,0x00,0x05,0x00,0x03,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xfc,0xff,0xfb,0xff,0xfa,0xff,0xf7,0xff,0xfa,0xff,0xfa,0xff,0xfa,0xff,0xfc,0xff,0xfd,0xff,0xfe,0xff,0xfd,0xff,0xfe,0xff,0xfd,0xff,0xfe,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xff,0xfe,0xff,0xff,0xff,0xfc,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xfe,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xfe,0xff,0xfe,0xff,0xfd,0xff,0xfd,0xff,0xfd,0xff,0xfd,0xff,0xfd,0xff,0xfe,0xff,0xfc,0xff,0xfd,0xff,0xfd,0xff,0xfd,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xfe,0xff,0x00,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x03,0x00,0x02,0x00,0x04,0x00,0x05,0x00,0x04,0x00,0x06,0x00,0x04,0x00,0x05,0x00,0x03,0x00,0x03,0x00 + }; + + static const rt_uint8_t _romfs_root_8_wav[] = { + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0xff,0xff,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0xfe,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xfd,0xff,0xfd,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x03,0x00,0x02,0x00,0x02,0x00,0x03,0x00,0x05,0x00,0x04,0x00,0x02,0x00,0x05,0x00,0x04,0x00,0x02,0x00,0x03,0x00,0x01,0x00,0x01,0x00,0x03,0x00,0x04,0x00,0x03,0x00,0x05,0x00,0x06,0x00,0x03,0x00,0x03,0x00,0x02,0x00,0x03,0x00,0x02,0x00,0x05,0x00,0x03,0x00,0x03,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x00,0x00,0x03,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xfe,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0xff,0xfa,0xff,0xfc,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xfe,0xff,0xfe,0xff,0xfd,0xff,0xfc,0xff,0xfc,0xff,0xfb,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x01,0x00,0x01,0x00,0xff,0xff,0x03,0x00,0x01,0x00,0x01,0x00,0x03,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x05,0x00,0x01,0x00,0xfe,0xff,0xff,0xff,0x03,0x00,0x01,0x00,0x02,0x00,0x03,0x00,0x02,0x00,0x04,0x00,0x02,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0xff,0xff,0xfd,0xff,0x00,0x00,0xfd,0xff,0xfb,0xff,0xff,0xff,0x00,0x00,0xfe,0xff,0xfb,0xff,0xfe,0xff,0xfd,0xff,0xfc,0xff,0xfc,0xff,0xfd,0xff,0xfd,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0x01,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x03,0x00,0x01,0x00,0x08,0x00,0x0a,0x00,0x0c,0x00,0x07,0x00,0x0a,0x00,0x02,0x00,0x05,0x00,0x01,0x00,0xff,0xff,0x01,0x00,0x09,0x00,0x05,0x00,0x03,0x00,0x02,0x00,0x05,0x00,0x04,0x00,0x02,0x00,0xff,0xff,0x04,0x00,0x07,0x00,0x00,0x00,0x0d,0x00,0x08,0x00,0x0b,0x00,0x1b,0x00,0x14,0x00,0x03,0x00,0x0f,0x00,0x13,0x00,0x18,0x00,0x21,0x00,0x19,0x00,0x11,0x00,0x1e,0x00,0xf0,0xff,0xfc,0xff,0x0b,0x00,0x00,0x00,0x0d,0x00,0x16,0x00,0x0a,0x00,0x13,0x00,0xfd,0xff,0xf1,0xff,0x11,0x00,0x17,0x00,0xf9,0xff,0xfb,0xff,0xfe,0xff,0xed,0xff,0x04,0x00,0xff,0xff,0xf3,0xff,0xe2,0xff,0xe8,0xff,0xe2,0xff,0xec,0xff,0xdd,0xff,0xf5,0xff,0x0f,0x00,0xf1,0xff,0xd9,0xff,0xce,0xff,0xbc,0xff,0xdd,0xff,0xfa,0xff,0xd8,0xff,0xfd,0xff,0xd4,0xff,0xcd,0xff,0xd0,0xff,0xc5,0xff,0xbe,0xff,0xc2,0xff,0xc8,0xff,0xbc,0xff,0xd3,0xff,0xf4,0xff,0xaf,0xff,0xc5,0xff,0xd4,0xff,0xfb,0xff,0xc8,0xff,0xe1,0xff,0xd0,0xff,0xef,0xff,0xec,0xff,0xbb,0xff,0xcc,0xff,0x96,0xff,0xf6,0xff,0x74,0xff,0xf0,0xff,0xba,0xff,0xc8,0xff,0x99,0xff,0xc3,0xff,0xab,0xff,0xea,0xff,0x5b,0xff,0xe5,0xff,0x67,0xff,0xdd,0xff,0x7e,0xff,0x50,0x00,0x1c,0x00,0xd4,0xff,0x15,0xfe,0xd7,0xff,0x79,0x02,0x97,0x09,0x06,0x0f,0x9e,0x02,0x4e,0x08,0x62,0x06,0xa8,0xff,0x25,0xff,0x59,0xfd,0x9e,0xff,0xf0,0x00,0x70,0xff,0x80,0xfd,0x6b,0xfd,0x59,0xfe,0xf3,0xff,0xef,0x00,0x70,0x03,0x79,0x03,0x26,0x03,0xc0,0x00,0xf3,0xff,0xc7,0xff,0x7e,0xfe,0x39,0xfc,0x41,0xfc,0x7c,0xfc,0x92,0xfd,0xe1,0xfd,0xbc,0xfc,0x45,0xfb,0xf7,0xf9,0x2d,0xfa,0xee,0xf9,0x9e,0xfb,0x1b,0xfd,0xaa,0xfd,0x10,0xfd,0x4e,0xfc,0xba,0xfe,0xb6,0xff,0x9e,0x01,0xb1,0x02,0x90,0x04,0x2f,0x05,0xb1,0x05,0x03,0x07,0x4d,0x05,0x30,0x06,0xcd,0x04,0xa4,0x05,0x31,0x03,0x3f,0x01,0x0c,0xfe,0xc7,0xfa,0x57,0xf5,0x4c,0xef,0x95,0xed,0xd4,0xe7,0xe6,0xe5,0x16,0xe4,0x4e,0xef,0xcf,0x00,0xa6,0x0c,0xbb,0x13,0x57,0x17,0xad,0x1b,0xab,0x16,0x97,0x0b,0x57,0x03,0x84,0x02,0x38,0x06,0xbb,0x0a,0xab,0x12,0x2d,0x1a,0x78,0x18,0xa2,0x0e,0x62,0x02,0xf8,0xf9,0xdf,0xf1,0x48,0xea,0xd4,0xde,0xa5,0xd5,0x63,0xc4,0x74,0xcb,0xf8,0xf6,0x93,0x1b,0x6c,0x2b,0xe1,0x1f,0x24,0x1d,0x0a,0x0e,0xfc,0xfb,0xe0,0xee,0x1d,0xf5,0xb4,0x09,0x6a,0x12,0x62,0x19,0x01,0x1c,0x47,0x1f,0x12,0x15,0xe8,0x08,0xc0,0x02,0xfb,0x06,0x91,0x05,0x64,0xfa,0xa0,0xed,0x41,0xe0,0xca,0xd3,0x96,0xc8,0x48,0xc4,0x83,0xdf,0x02,0x0d,0xc1,0x2f,0x3a,0x2f,0x82,0x1a,0xa5,0x05,0xe7,0xf2,0x05,0xe8,0xb6,0xe6,0x02,0x00,0xc2,0x1a,0x65,0x24,0x52,0x1b,0xe4,0x13,0x10,0x0e,0x32,0x0a,0x36,0x05,0x86,0x08,0x92,0x11,0xde,0x0d,0x8a,0xfb,0xd4,0xe5,0x6c,0xd9,0xc0,0xcf,0x1b,0xc8,0x4e,0xc4,0x29,0xe4,0x5b,0x16,0x6c,0x36,0x13,0x29,0x37,0x0d,0xb0,0xfb,0x03,0xef,0x9e,0xe9,0x8c,0xf1,0xa6,0x0c,0x3b,0x20,0x40,0x24,0xa6,0x16,0x69,0x0d,0x67,0x07,0xc8,0x07,0x79,0x0a,0xf7,0x12,0xf7,0x17,0x05,0x0c,0x06,0xf1,0x09,0xdd,0x90,0xd2,0x8f,0xcf,0xe5,0xcb,0x26,0xc8,0xb7,0xf0,0x62,0x23,0xc6,0x37,0x3a,0x1e,0x82,0x04,0xb2,0xf2,0x6a,0xea,0x87,0xe8,0x40,0xfc,0xbc,0x1b,0x96,0x26,0x84,0x1f,0x2f,0x0c,0x44,0x08,0xcf,0x05,0xda,0x09,0x81,0x0f,0x0a,0x1e,0x06,0x1a,0x2b,0x02,0x3b,0xe3,0x1b,0xd2,0xbd,0xd4,0xaa,0xd5,0xcb,0xd9,0x4b,0xdb,0x3b,0xf0,0x89,0x11,0x60,0x2a,0x2a,0x1d,0x9c,0xfe,0x76,0xf3,0xc6,0xf0,0xd0,0xf8,0x7c,0x04,0x13,0x19,0x3f,0x24,0xd1,0x14,0x55,0x09,0x6f,0x02,0x16,0x04,0x86,0x10,0x39,0x1a,0xfc,0x1d,0xbb,0x11,0xb9,0xf6,0x2d,0xe0,0x40,0xd5,0xb8,0xda,0x85,0xe5,0xe8,0xdd,0x7b,0xd6,0xe1,0xeb,0x56,0x14,0xe2,0x2a,0x86,0x19,0x0f,0xfc,0x5b,0xf3,0x0d,0xf3,0xd5,0xf7,0x06,0x09,0x64,0x21,0xe1,0x26,0x88,0x0f,0x45,0xfe,0xcc,0xfc,0x42,0x0a,0x88,0x14,0x8d,0x1d,0x16,0x21,0x2b,0x0c,0x62,0xf3,0x92,0xd6,0xc3,0xd5,0x04,0xe2,0x3b,0xee,0x41,0xe2,0xae,0xcc,0x4e,0xf2,0x7f,0x1b,0x77,0x25,0xd2,0x0e,0xa7,0xfa,0x6e,0xf8,0x13,0xf3,0x67,0xf8,0xd7,0x0d,0x8d,0x26,0x00,0x22,0x65,0x07,0x76,0xfc,0xac,0xfe,0x60,0x0a,0x37,0x13,0xdd,0x1e,0x47,0x21,0x2e,0x08,0x5c,0xea,0x38,0xd6,0xf0,0xda,0x59,0xe1,0x68,0xeb,0x24,0xe1,0xed,0xd6,0x8f,0xf6,0x2f,0x13,0x87,0x26,0x7d,0x0f,0x45,0xfd,0xf9,0xf3,0xa9,0xf1,0x0f,0x02,0xe0,0x12,0x34,0x2b,0xe2,0x18,0xc7,0x03,0xf4,0xf9,0x54,0x02,0x9d,0x13,0x45,0x1d,0xf9,0x1b,0x66,0x0f,0x29,0xfb,0x91,0xe7,0xae,0xd7,0x1a,0xe1,0x78,0xf2,0xb4,0xf1,0x47,0xd6,0xa5,0xc8,0x6c,0xf5,0xc9,0x20,0x3b,0x2d,0x18,0x09,0xde,0xf7,0xd0,0xf4,0xdc,0xf2,0x1f,0x03,0xeb,0x1a,0x20,0x2c,0xaa,0x16,0xbc,0xf9,0x1c,0xf8,0x21,0x08,0x9c,0x13,0x89,0x1a,0xce,0x1b,0x99,0x0d,0xc2,0xf3,0x57,0xe0,0x7a,0xdb,0x82,0xef,0x2e,0xf2,0x24,0xe8,0x4c,0xcf,0x61,0xd2,0x89,0x02,0x30,0x24,0xba,0x27,0x59,0x01,0xbb,0xf1,0x2d,0xef,0x77,0xfb,0x81,0x09,0x14,0x22,0x4c,0x2d,0xd5,0x0f,0x4b,0xf8,0x30,0xf5,0x49,0x09,0xfe,0x1a,0xd4,0x1d,0xf3,0x14,0x16,0x02,0xc5,0xed,0x53,0xe0,0xe0,0xe0,0x9c,0xed,0x1c,0xee,0xdd,0xe5,0xd5,0xc9,0xb7,0xe2,0x61,0x11,0x71,0x29,0xcf,0x17,0x93,0xf7,0xa3,0xf4,0x45,0xf3,0xbe,0x00,0xfe,0x10,0x9b,0x2c,0xee,0x21,0x7a,0xfe,0x06,0xee,0x72,0xfd,0xa3,0x18,0x85,0x23,0x74,0x1d,0xa4,0x0b,0x99,0xf4,0x34,0xe1,0x19,0xe1,0x17,0xf2,0x40,0xfd,0x4f,0xeb,0x1a,0xd5,0x6a,0xc7,0xde,0xe4,0x50,0x17,0x8f,0x2f,0x9d,0x18,0x47,0xfb,0x8c,0xf0,0x49,0xf6,0xcb,0x06,0x25,0x16,0x62,0x25,0xd3,0x17,0xd1,0x00,0x30,0xf3,0xba,0x06,0xae,0x16,0x84,0x1d,0xa6,0x16,0x4f,0x05,0x54,0xf5,0xdd,0xe6,0xa5,0xe7,0xb3,0xed,0x65,0xf3,0x1a,0xec,0x14,0xcc,0x38,0xc9,0xe1,0xf9,0x97,0x24,0x8c,0x27,0x03,0x07,0x96,0xf3,0xfc,0xf3,0xa3,0xff,0x40,0x0d,0x91,0x1c,0xc2,0x1f,0x98,0x0b,0x42,0xf3,0x46,0xfc,0xdd,0x13,0x28,0x1c,0xe2,0x15,0xc6,0x0a,0xbd,0xff,0x86,0xf4,0x46,0xec,0x8a,0xec,0x24,0xf7,0x60,0xea,0x10,0xdf,0x5c,0xcb,0xe9,0xda,0x9f,0x0d,0x0a,0x29,0xd7,0x1c,0x73,0xfc,0x39,0xf7,0x26,0xf5,0x33,0x01,0xf8,0x0d,0x4b,0x27,0x85,0x20,0x78,0xfd,0x12,0xec,0xb5,0xf8,0x49,0x18,0xc8,0x23,0x4b,0x1c,0xab,0x09,0x39,0xfa,0x35,0xe7,0xa9,0xe0,0xe1,0xee,0x38,0x01,0x28,0xf3,0x00,0xd6,0x90,0xc3,0x15,0xe0,0xc3,0x11,0x0f,0x2e,0xcb,0x1a,0x88,0xfd,0xb6,0xf9,0xf7,0xf6,0xe0,0x04,0x1b,0x11,0xee,0x20,0xd9,0x19,0x85,0xfb,0xeb,0xf4,0x2d,0x06,0xa2,0x19,0xea,0x1b,0x15,0x13,0x86,0x08,0x33,0xf0,0x85,0xe6,0xdc,0xea,0xe0,0xf5,0x14,0xf5,0x25,0xeb,0x4b,0xcf,0x14,0xbb,0x6f,0xf4,0x3c,0x28,0xc8,0x33,0x5a,0x09,0x06,0xf0,0x75,0xf1,0xeb,0xfb,0x6a,0x10,0x25,0x1b,0x2d,0x29,0xce,0x09,0xeb,0xef,0xbd,0xf3,0xf3,0x16,0x98,0x24,0xdb,0x15,0x55,0x09,0x9e,0xff,0x73,0xf7,0xac,0xe9,0xf1,0xe8,0xd4,0xf5,0xb1,0xf4,0x6d,0xe0,0x51,0xcc,0x5d,0xd5,0x72,0x00,0xb0,0x1f,0x2b,0x21,0x89,0x09,0xd0,0xf7,0x55,0xf4,0xea,0xfe,0x96,0x0d,0x12,0x22,0x49,0x1e,0x80,0x04,0x9c,0xf2,0xeb,0xfd,0x0f,0x16,0x7e,0x21,0xd0,0x16,0x09,0x03,0x76,0xfb,0x2f,0xf1,0xd4,0xed,0x84,0xef,0x19,0xfa,0x40,0xe7,0xea,0xd9,0x5b,0xc9,0xe1,0xdc,0xa5,0x0e,0x76,0x28,0x86,0x1e,0x4e,0xf9,0xd2,0xf6,0xb6,0xf1,0x80,0x07,0x40,0x18,0xdb,0x23,0x5e,0x1b,0x45,0xfb,0xe4,0xf1,0x70,0x02,0x94,0x1b,0xa7,0x1f,0x4b,0x15,0x5c,0x07,0x06,0xf7,0x89,0xe2,0x0a,0xe6,0x99,0xf9,0x3f,0xfc,0x3a,0xe7,0x6c,0xd5,0x95,0xc6,0x70,0xe2,0x2e,0x19,0x44,0x30,0x33,0x16,0x7d,0xf9,0xba,0xf0,0xbb,0xf5,0xf5,0x06,0xb8,0x16,0xd2,0x25,0x77,0x17,0x8d,0xff,0xb9,0xf5,0xef,0x04,0xc9,0x14,0xa3,0x1e,0x43,0x14,0xe7,0x05,0xc0,0xf1,0x7e,0xe7,0xb5,0xec,0xf0,0xf3,0x8a,0xf6,0x9a,0xe6,0xb5,0xd0,0xab,0xc1,0xe0,0xf7,0x64,0x26,0xa2,0x2d,0x35,0x0d,0x61,0xf2,0xfb,0xee,0xcc,0xf5,0x46,0x10,0xa8,0x25,0xa0,0x28,0xbb,0x08,0xdb,0xea,0x64,0xf3,0xfd,0x13,0x66,0x20,0x29,0x1e,0xd2,0x0c,0xc1,0xfe,0xcd,0xe8,0xf6,0xe4,0x12,0xf1,0x3d,0x02,0x44,0xf3,0x95,0xd6,0x2e,0xcd,0xc7,0xd7,0x38,0x03,0xa8,0x20,0x16,0x24,0xc5,0x05,0xb7,0xf6,0x1a,0xf5,0x02,0x04,0x7b,0x14,0x2a,0x1b,0x68,0x17,0xc5,0x00,0x70,0xf6,0x1a,0x02,0x23,0x15,0x6f,0x1b,0x65,0x14,0xfb,0x07,0x3d,0xff,0xed,0xef,0xc4,0xea,0x83,0xe9,0xf3,0xf6,0x82,0xed,0x60,0xde,0xfc,0xcf,0xab,0xd9,0x5d,0x0c,0xd5,0x27,0x51,0x1d,0x36,0xf9,0xe1,0xfa,0x75,0xf7,0xda,0x05,0x6c,0x12,0x13,0x20,0xc9,0x18,0x0a,0xf8,0x9c,0xfa,0x3c,0x0a,0x83,0x17,0x74,0x17,0xfb,0x12,0x83,0x04,0x79,0xf6,0x32,0xeb,0x1d,0xee,0xbc,0xf1,0xc6,0xf4,0xa6,0xec,0x55,0xd6,0x03,0xc7,0x35,0xe6,0xda,0x19,0x0f,0x2d,0xc4,0x15,0xc1,0xf7,0x5b,0xf2,0xb4,0xfd,0x63,0x08,0x0d,0x18,0xa4,0x22,0xa5,0x12,0x48,0xfa,0xba,0xf5,0x26,0x0b,0xc7,0x19,0xf7,0x18,0xb0,0x0e,0x46,0x02,0xf0,0xf1,0xe2,0xeb,0x98,0xef,0x52,0xf4,0x8a,0xf0,0x79,0xe9,0xc3,0xd2,0x6d,0xc7,0x43,0xf9,0xed,0x25,0xcc,0x29,0x03,0x00,0xda,0xf3,0x9e,0xf9,0xb8,0xfb,0x0f,0x11,0x5b,0x1b,0xa3,0x25,0x5b,0x07,0x61,0xf3,0x78,0xfa,0xba,0x12,0x36,0x1f,0x4b,0x16,0x9c,0x08,0x4f,0xfe,0xed,0xef,0xd2,0xe7,0x3f,0xf0,0x59,0xf9,0xf5,0xef,0x40,0xe3,0x34,0xcf,0x2c,0xce,0x7b,0x03,0x79,0x2b,0x99,0x23,0x65,0xfa,0x54,0xf2,0x3c,0xf7,0x34,0x07,0xee,0x12,0xb8,0x1f,0x19,0x18,0x91,0xfb,0xa2,0xf6,0xfc,0x08,0x6d,0x1a,0xdb,0x18,0x06,0x0f,0xd6,0x04,0x4b,0xfc,0x0b,0xef,0x2d,0xe8,0xc6,0xf0,0x57,0xfd,0xb5,0xeb,0x01,0xdb,0xd0,0xcf,0x78,0xe1,0x49,0x0c,0xdd,0x23,0x43,0x18,0x12,0xfe,0x1a,0xf8,0x53,0xfc,0x3e,0x0c,0x7c,0x12,0x99,0x17,0x9a,0x0c,0xfc,0xfc,0xed,0xfe,0xc8,0x0d,0x83,0x19,0x74,0x12,0xed,0x0b,0x26,0x03,0xaa,0xfa,0xeb,0xf0,0x2e,0xee,0x8d,0xf0,0xb3,0xf3,0xef,0xe2,0xdc,0xde,0x12,0xcf,0xe5,0xea,0x6a,0x1f,0x42,0x27,0x73,0x0c,0x0e,0xf2,0x7e,0xf7,0x78,0xfc,0x87,0x0d,0x0a,0x19,0xbc,0x21,0xfd,0x08,0x71,0xf3,0xa8,0xfb,0x65,0x13,0xa5,0x1f,0x9b,0x16,0xbf,0x06,0xa1,0xfa,0x18,0xef,0xe7,0xe8,0x20,0xf0,0xba,0xfd,0x25,0xf6,0x20,0xe5,0x81,0xd4,0x68,0xd3,0xd9,0xfb,0xc7,0x1e,0x20,0x23,0x8d,0x07,0x87,0xf7,0xd7,0xf6,0xff,0x01,0xae,0x0e,0xc0,0x18,0x15,0x18,0xb2,0x03,0x70,0xfa,0x6d,0x02,0x38,0x12,0xe7,0x15,0x59,0x10,0xa0,0x02,0xf1,0xff,0x12,0xf9,0x2e,0xf0,0x89,0xe9,0xdd,0xee,0x16,0xf0,0xd4,0xeb,0x24,0xd7,0x23,0xd4,0x23,0x06,0xbe,0x22,0x7b,0x1e,0x56,0xfd,0x4d,0xfb,0xea,0xfa,0x84,0x06,0x6f,0x0f,0xa1,0x18,0x37,0x15,0x06,0x00,0xd7,0xfa,0xc0,0x07,0x43,0x1a,0x46,0x13,0x92,0x09,0x92,0x00,0xd0,0xfd,0xe3,0xef,0x38,0xf0,0x40,0xf3,0x35,0xf3,0x64,0xe7,0xf8,0xdc,0xfb,0xd3,0x7f,0xe7,0x32,0x0f,0x07,0x23,0x7b,0x17,0x83,0xfb,0x1c,0xfd,0x25,0xfb,0x97,0x07,0xa5,0x0f,0x23,0x1c,0x83,0x15,0xb3,0xfa,0xd3,0xfb,0xf7,0x07,0xe3,0x1c,0xa2,0x16,0x69,0x0a,0x7f,0xfc,0x22,0xf4,0x2e,0xee,0x97,0xf0,0xb9,0xf8,0xee,0xf3,0x60,0xe7,0xf8,0xda,0x17,0xd2,0x13,0xe8,0x82,0x1d,0x1f,0x2d,0xfb,0x11,0xd9,0xea,0xaf,0xf0,0x84,0x01,0x55,0x10,0xcf,0x19,0x38,0x1c,0x46,0x0d,0x7a,0xf4,0xb0,0xfd,0x94,0x10,0xf3,0x17,0xb4,0x10,0x08,0x0b,0x19,0x01,0x4d,0xf5,0x87,0xea,0xf3,0xec,0xb2,0xf6,0xc8,0xf3,0xb3,0xe9,0x7f,0xdd,0x4d,0xd4,0xac,0xf4,0x67,0x1b,0xe2,0x1e,0xc0,0x02,0x2f,0xf7,0xf1,0xff,0x13,0x09,0x99,0x0d,0x7f,0x10,0xb9,0x14,0xa5,0x03,0xb4,0xfc,0xde,0x09,0x16,0x15,0x6f,0x0e,0xd0,0x0d,0x09,0x07,0xc8,0xff,0x89,0xf3,0xd3,0xed,0xaa,0xf1,0x23,0xf7,0x2e,0xf1,0x77,0xe6,0xee,0xd9,0xc3,0xd8,0xc2,0x01,0xc3,0x20,0x59,0x1c,0xac,0xff,0xf9,0xf3,0xf0,0xfd,0x86,0x04,0x11,0x0f,0xc5,0x17,0x59,0x0e,0xdc,0x02,0xa7,0xfb,0x96,0x08,0x9b,0x16,0x7d,0x14,0x05,0x07,0x29,0xff,0x45,0xfd,0x1a,0xf6,0x1a,0xf2,0x9a,0xf6,0xf5,0xf8,0x26,0xef,0xaa,0xe5,0xe7,0xd6,0x6d,0xdf,0xc2,0x0a,0x28,0x21,0x1f,0x14,0x90,0xfb,0xb6,0xf7,0xf1,0xf9,0xf4,0x02,0xc0,0x12,0x08,0x18,0xe0,0x12,0xc5,0x00,0x55,0xfc,0xe8,0x04,0xb9,0x12,0x70,0x11,0xa1,0x0a,0x8a,0x01,0x9a,0xfc,0x16,0xf4,0x59,0xef,0x6b,0xf3,0x7a,0xf6,0x3a,0xee,0x76,0xea,0x04,0xd9,0x7e,0xde,0x81,0x10,0xc9,0x28,0x28,0x14,0xf9,0xf4,0xf3,0xf5,0xc4,0x01,0x68,0x08,0x91,0x0d,0x71,0x18,0xa0,0x0b,0x83,0xfa,0xe0,0xfc,0x94,0x0c,0xa2,0x12,0xe8,0x0e,0xe0,0x08,0x01,0x04,0xd5,0xfb,0x92,0xec,0x48,0xef,0x2b,0xfb,0x68,0xfc,0x4b,0xeb,0x94,0xdd,0x20,0xdc,0x90,0xf1,0xbd,0x13,0x94,0x1b,0x13,0x0d,0x60,0xfa,0x42,0xf5,0x6c,0xfb,0x9b,0x09,0xe8,0x14,0xfc,0x12,0xde,0x08,0x96,0xfe,0x7a,0x00,0x05,0x0e,0xe1,0x13,0xf5,0x0f,0x48,0x05,0xe0,0xff,0x4b,0xf7,0x48,0xf3,0x03,0xf6,0x9e,0xf6,0x73,0xf4,0xef,0xe8,0x82,0xdf,0x3d,0xd9,0x80,0xf8,0xf7,0x18,0xb8,0x21,0xd3,0x08,0xe6,0xf1,0x26,0xf2,0xef,0x03,0x89,0x13,0x0d,0x17,0xf0,0x13,0x5e,0xfe,0xa9,0xf3,0xce,0x00,0xf0,0x17,0xa9,0x16,0x65,0x09,0x03,0xff,0xf0,0x02,0xde,0xf8,0x76,0xed,0x4a,0xef,0x12,0xff,0xce,0xf7,0xb4,0xe3,0xbc,0xe0,0x04,0xe6,0xfa,0xfe,0xc9,0x15,0xde,0x18,0x06,0x03,0x76,0xf2,0xfa,0xf9,0x2b,0x0f,0x49,0x11,0x34,0x0a,0x5a,0x05,0x5d,0x00,0x5a,0x04,0x54,0x0e,0x67,0x0f,0xf7,0x0c,0x3a,0x07,0x5c,0x04,0x89,0xfd,0xb7,0xf7,0xc3,0xf3,0x51,0xf0,0xa8,0xf8,0xf3,0xee,0x91,0xe9,0x03,0xdc,0xcd,0xe6,0xed,0x0e,0x40,0x1e,0xaa,0x0d,0x00,0xf5,0x95,0xfc,0xd1,0x00,0x7c,0x0b,0x83,0x0f,0xe9,0x15,0x34,0x0a,0x04,0xf7,0xba,0x00,0xfa,0x0c,0xca,0x12,0xcb,0x08,0x12,0x05,0x05,0x00,0xc7,0xf9,0xee,0xf5,0x03,0xf7,0x20,0xf6,0x67,0xf5,0xd2,0xed,0x3b,0xdf,0xd8,0xde,0x5d,0xf8,0x23,0x15,0x1e,0x1c,0xab,0x0a,0xda,0xf5,0x6b,0xf9,0xb5,0x01,0x74,0x06,0xb9,0x14,0x0b,0x16,0x59,0x07,0x02,0xf7,0xe9,0xfe,0xe0,0x0c,0x4c,0x0d,0x5e,0x0b,0xd1,0x0a,0x11,0x01,0x62,0xf0,0xfe,0xf3,0x9e,0xfa,0x29,0xf5,0x7b,0xf0,0xaa,0xf0,0xd3,0xe1,0x40,0xde,0x57,0x01,0xb0,0x1e,0xaa,0x15,0x83,0xff,0x39,0xf8,0xf7,0xfc,0x21,0x04,0x9c,0x0e,0xa1,0x12,0xaf,0x12,0xbe,0x04,0x5c,0xf7,0xf0,0xff,0x27,0x0e,0x36,0x10,0xa5,0x06,0xac,0x00,0xb2,0xfc,0xaa,0xf6,0x75,0xf1,0xb9,0xf1,0x38,0xfb,0x14,0xf4,0xc4,0xea,0xb2,0xe1,0xe0,0xef,0x24,0x0e,0x2f,0x12,0x91,0x07,0x8d,0xf7,0xd1,0x03,0x7c,0x0c,0xb4,0x0a,0xd8,0x08,0x92,0x0c,0xd7,0x0a,0x02,0xfe,0xb8,0xff,0x54,0x09,0xe4,0x10,0xec,0x08,0x0a,0x00,0xc8,0xfc,0x27,0xfa,0x3a,0xf6,0xc1,0xf0,0xa2,0xf5,0xae,0xfb,0x14,0xf2,0x93,0xe4,0xf0,0xe4,0x6c,0xfe,0xfe,0x17,0x79,0x0f,0x1a,0xfa,0xd3,0xf7,0xfd,0x03,0x42,0x0f,0xa9,0x0e,0xa1,0x0b,0xd6,0x07,0xf7,0x00,0x4e,0x00,0xef,0x06,0xd9,0x10,0xb1,0x0c,0x0d,0x01,0xe9,0xfa,0x77,0xfb,0x2e,0xfc,0x58,0xf7,0x1b,0xf2,0x06,0xfb,0x5e,0xf5,0x41,0xe6,0x06,0xe1,0x37,0xf3,0x1e,0x11,0xea,0x1a,0x6a,0x03,0x00,0xf2,0xea,0xfe,0x74,0x07,0x25,0x06,0x61,0x0a,0x09,0x1d,0xe8,0x0c,0xaf,0xf6,0x43,0xf3,0xa3,0x0b,0xbb,0x16,0x8f,0x09,0xb6,0x00,0x44,0x02,0x3d,0xfe,0x34,0xea,0x16,0xee,0x7c,0xfc,0x46,0xfe,0x5c,0xef,0xd4,0xea,0x5b,0xeb,0x3d,0xf9,0x2e,0x07,0x91,0x08,0x04,0x07,0x9b,0x0a,0x9c,0x06,0xe9,0xfc,0x9e,0x03,0xae,0x0d,0xa9,0x0e,0x9b,0x01,0x8e,0x00,0xa0,0x07,0xdc,0x0f,0xf4,0x0a,0xa6,0x00,0x76,0xfb,0x51,0xfb,0x6c,0xff,0x92,0xfb,0x94,0xf1,0x40,0xf3,0x70,0xf7,0x82,0xee,0x36,0xec,0x12,0xf0,0x2d,0x06,0x26,0x0d,0x81,0x07,0x84,0xfd,0xd8,0xff,0x2a,0x09,0x9f,0x0b,0xd2,0x0c,0xa1,0x05,0x16,0x05,0x2d,0x00,0xdc,0x02,0x98,0x06,0x37,0x0e,0x40,0x09,0x8a,0xfa,0x5d,0xf6,0xe3,0xfd,0x41,0x03,0x8a,0xf8,0xfd,0xf4,0x97,0xf0,0x7e,0xf0,0xa7,0xf0,0xca,0xea,0xc2,0x00,0x97,0x14,0x6e,0x0f,0xfb,0xf9,0xda,0xf6,0x9d,0x04,0xff,0x08,0xa5,0x09,0xec,0x0b,0x04,0x0e,0x15,0x06,0xdf,0xfd,0x05,0xfd,0x4b,0x06,0x23,0x0b,0xed,0x06,0x22,0x00,0x0f,0xfa,0x5a,0xf3,0x82,0xf6,0xbf,0xfb,0x07,0xfb,0xaf,0xf6,0x27,0xef,0xfc,0xe8,0x26,0xf7,0x1c,0x0e,0x28,0x10,0xcb,0xff,0xdf,0xf6,0x0a,0xff,0x2b,0x09,0x5f,0x0b,0xf3,0x0e,0x56,0x0d,0x2a,0x03,0x39,0xfb,0x4c,0xff,0x5c,0x0a,0x44,0x0b,0xbb,0x04,0x61,0xff,0xaa,0x01,0x28,0xfb,0x8e,0xf2,0x7a,0xf1,0x53,0xf9,0x0b,0xfd,0xe3,0xf6,0xc6,0xed,0x7d,0xf3,0xdf,0x01,0x79,0x08,0xb6,0x03,0xb5,0x01,0x8e,0x05,0xa6,0xff,0xc4,0x01,0xac,0x0b,0x22,0x0e,0x74,0x02,0xab,0xfb,0x43,0x01,0xbf,0x09,0x6a,0x10,0x8a,0x03,0x93,0xf8,0x94,0xfb,0x68,0x04,0x3c,0xfc,0x7a,0xf3,0x46,0xfa,0xfe,0xf9,0x34,0xf5,0xd8,0xef,0x41,0xf7,0x85,0x01,0x90,0x07,0xdf,0x07,0xad,0x02,0xee,0x01,0x7e,0x03,0x22,0x01,0x72,0x00,0x7c,0x07,0xba,0x10,0x55,0x01,0xb8,0xf7,0x79,0xfe,0x5e,0x0a,0x59,0x0a,0x8b,0x01,0x5e,0xfa,0x86,0xf7,0x69,0xfa,0x85,0xfc,0x85,0x01,0x9c,0xfb,0x69,0xf2,0x56,0xef,0x15,0xf1,0x8d,0xfb,0x9d,0x11,0xa7,0x18,0x09,0x06,0x1a,0xec,0x0a,0xf7,0x05,0x0a,0x2d,0x0d,0x76,0x05,0x8c,0x06,0xdd,0x08,0x7c,0xfe,0x38,0xfa,0xdf,0x01,0x9c,0x0c,0x36,0x06,0xf5,0xfc,0x70,0xf6,0xb7,0xfb,0x42,0xfe,0xd3,0xf9,0xbe,0xfa,0x00,0xf9,0x9f,0xf8,0x77,0xf9,0x48,0xf8,0x3c,0xff,0xec,0x06,0xc0,0x04,0x46,0xfb,0xca,0xfc,0x3d,0x07,0xb4,0x0c,0x7f,0x06,0x00,0x00,0x91,0x05,0x28,0x07,0x13,0x01,0xc7,0xfa,0x12,0xff,0x70,0x07,0xfb,0x08,0xa7,0x02,0xd5,0xfa,0xd0,0xf8,0x88,0xfb,0xff,0xfe,0x44,0xfd,0xd8,0xfb,0xcf,0xf7,0x54,0xf5,0xb5,0xfc,0xc0,0x03,0xc4,0x02,0xf4,0xfb,0x62,0xfc,0x5c,0x03,0x26,0x07,0x0b,0x02,0x8a,0x02,0x84,0x04,0xce,0x02,0x61,0x00,0xeb,0xfd,0x88,0x01,0xc0,0x03,0x1f,0x02,0x17,0x00,0x3d,0x02,0x0b,0x05,0xf7,0x01,0x0c,0xfa,0xf4,0xf6,0x9c,0xf9,0x87,0xfb,0x9e,0xfc,0x0a,0xfe,0x17,0x01,0xfe,0x07,0xbc,0x02,0xda,0xfb,0xe0,0xfd,0xa1,0x03,0x79,0xfc,0x50,0xfa,0xcc,0x01,0x93,0x09,0xf5,0x07,0x74,0xff,0x16,0x00,0x4f,0x01,0xdb,0x00,0xbb,0xfa,0x1d,0xfd,0xcd,0xff,0x5c,0x00,0x8e,0xfe,0xb6,0x01,0x9e,0x07,0x1b,0x06,0x34,0xfc,0x73,0xf9,0x29,0xfe,0xbc,0x03,0x29,0x02,0x49,0xfd,0xb7,0xfb,0xf5,0x01,0x5f,0x04,0xa2,0xff,0x7d,0xfe,0xad,0xfe,0x29,0x01,0x49,0xff,0x98,0xff,0x1b,0x01,0xa8,0x00,0x5b,0xfa,0x53,0xf8,0xab,0xf8,0x47,0xfd,0x53,0x01,0x70,0x01,0x67,0xfd,0x31,0x03,0xb1,0x08,0xfc,0x01,0x08,0x00,0x36,0x01,0xf2,0x02,0xe1,0xff,0x21,0xfe,0xfa,0xfd,0xba,0x00,0xac,0x02,0x04,0x03,0x4a,0x03,0x82,0x05,0x19,0x06,0x05,0xfd,0xd8,0xf8,0x7c,0xfa,0xc8,0xfe,0xdb,0xff,0xab,0xfe,0x0b,0xff,0x4a,0x01,0x56,0xff,0x88,0xfa,0xa5,0xfb,0x7f,0x01,0x09,0x06,0x7f,0x03,0x06,0x00,0xbf,0xfd,0x1a,0xff,0x7d,0xfc,0xc8,0xfe,0x0b,0x02,0x5d,0x02,0xed,0xfe,0x99,0xfd,0x96,0x03,0xc6,0x05,0xa4,0x01,0x7e,0xfa,0x31,0xfc,0x6a,0x01,0xf0,0x04,0x64,0x02,0x57,0x00,0xc5,0x04,0x67,0x07,0xae,0x02,0x37,0xfa,0x35,0xfc,0x6b,0x01,0xe2,0x02,0xc8,0xff,0x11,0xfd,0xb9,0xff,0xc5,0xfe,0xdb,0xfb,0x3e,0xfb,0x72,0xff,0x7b,0xff,0x08,0xfb,0x36,0xfa,0xc5,0xfe,0xb4,0x02,0xc9,0x02,0x66,0xff,0x3b,0xff,0xf5,0xff,0xc9,0xff,0xfe,0xfd,0x60,0xff,0x37,0x07,0xc3,0x06,0x07,0x03,0xac,0xff,0x63,0x00,0xad,0x01,0xec,0x01,0xfa,0xfd,0x39,0xfc,0xca,0xfd,0x02,0x01,0xf7,0x01,0x5a,0xff,0x15,0xfe,0x1f,0xfe,0x5f,0xff,0x3c,0xff,0x2b,0xff,0x20,0xff,0x47,0xfe,0x42,0xfe,0x98,0xfe,0x16,0xff,0xfa,0x02,0x3b,0x03,0x53,0x02,0x29,0x00,0x87,0x00,0x97,0x00,0xb4,0x00,0xe4,0xff,0x6e,0x01,0xbc,0x01,0x50,0xff,0x07,0x00,0x72,0x02,0xb5,0x01,0xf6,0xfd,0xec,0xfe,0x61,0x02,0x55,0x02,0x8e,0xfd,0x7e,0xfb,0x24,0xfd,0xf9,0xfe,0x14,0x01,0xbd,0x02,0xb8,0xff,0x31,0xff,0x8d,0x00,0xaa,0x00,0xf6,0xfe,0x7b,0xfe,0xbd,0xfe,0x8b,0xfe,0x1a,0xff,0x38,0xff,0x52,0x00,0x99,0x01,0xe8,0x00,0xc5,0xfd,0x26,0xfc,0xd2,0xff,0x59,0x01,0xcb,0x00,0xfb,0xff,0xa4,0x01,0xb3,0x03,0x4b,0x03,0x10,0x01,0x2b,0x00,0x67,0x01,0xbc,0x00,0xf3,0xff,0xb3,0xfe,0x93,0x00,0xe9,0x00,0xcb,0x00,0xcc,0xff,0xa5,0x00,0xcb,0xfe,0xb9,0xfd,0xb3,0xfb,0x3f,0xfb,0x1a,0x00,0x97,0x03,0x2e,0x00,0x47,0xfc,0xf5,0xfc,0xb3,0xff,0xa3,0x02,0x6c,0x00,0x36,0xff,0xf0,0xff,0x0c,0x04,0xc3,0x01,0xad,0xfe,0x51,0xff,0xb9,0x01,0x02,0x02,0xff,0xff,0xdd,0xff,0xdb,0x00,0x48,0x01,0xcc,0xff,0xf7,0xfe,0x56,0x00,0x61,0x02,0x14,0x01,0x95,0xfd,0x85,0xfd,0x78,0xff,0x24,0x00,0x2d,0xff,0xdc,0xff,0xbf,0x01,0x76,0x01,0xe7,0xfe,0xdd,0xfc,0x1b,0xff,0xf9,0x01,0xac,0x02,0xa0,0x00,0x13,0xff,0xe8,0xfe,0x40,0xff,0xa3,0xff,0x35,0x01,0x37,0x01,0xbe,0xff,0x5c,0xfe,0xc0,0xfe,0xcc,0x00,0x45,0x01,0x0b,0xff,0x2e,0xfe,0xd4,0xff,0x34,0x01,0xfa,0xff,0xb4,0xfe,0xcc,0x00,0x39,0x02,0x00,0x01,0x0c,0xff,0x4b,0xff,0xa1,0x00,0x39,0x00,0x4a,0x00,0x4b,0x00,0xd8,0x00,0x7d,0x00,0x61,0xfe,0xce,0xfe,0xc5,0x00,0x87,0x02,0xc2,0x00,0x95,0xfe,0xfa,0xfd,0xff,0xfe,0x44,0xff,0x01,0x00,0x86,0x01,0x68,0x01,0xc3,0xff,0x4d,0xfe,0x34,0xff,0x6b,0x00,0xf9,0xff,0x17,0xff,0x3e,0xfe,0xd1,0xfe,0xb8,0x00,0x77,0x01,0x43,0x01,0x44,0x00,0x70,0x00,0x68,0x00,0x32,0x00,0x55,0x00,0xe7,0xff,0x8c,0xff,0x37,0x00,0x57,0x00,0xf5,0xff,0xe8,0xff,0x48,0x00,0x3d,0x00,0x0c,0x00,0xca,0xff,0x66,0xff,0x64,0xff,0x5f,0xff,0xdd,0xff,0x8d,0x00,0xb2,0x00,0x1f,0x00,0xa5,0xff,0xf0,0xff,0x84,0x00,0x2c,0x00,0x3e,0xff,0xee,0xfe,0xba,0xff,0xd3,0x00,0xed,0x00,0x11,0x00,0x53,0xff,0xd6,0xff,0x87,0x00,0x34,0x00,0x69,0xff,0xa1,0xff,0x9b,0x00,0x9a,0x00,0x35,0x00,0xd9,0xff,0xd7,0xff,0x78,0xff,0xa6,0xff,0x2c,0x00,0xd6,0x00,0xef,0x00,0x42,0x00,0x7b,0xff,0x7f,0xff,0x28,0x00,0x1b,0x00,0xfb,0xff,0xc1,0xff,0xf5,0xff,0xf6,0xff,0xf3,0xff,0x04,0x00,0xed,0xff,0xa4,0xff,0x11,0x00,0x6c,0x00,0xe9,0xff,0x99,0xff,0xd5,0xff,0x27,0x00,0x17,0x00,0xf5,0xff,0x07,0x00,0x57,0x00,0x4b,0x00,0x02,0x00,0xbe,0xff,0xea,0xff,0x1e,0x00,0xea,0xff,0x8f,0xff,0xd9,0xff,0x11,0x00,0x46,0x00,0x0b,0x00,0xcd,0xff,0xd3,0xff,0xd9,0xff,0x14,0x00,0xd8,0xff,0xf7,0xff,0x25,0x00,0x2c,0x00,0xfd,0xff,0xec,0xff,0x04,0x00,0x34,0x00,0x1f,0x00,0x29,0x00,0x0b,0x00,0x01,0x00,0xfb,0xff,0xf6,0xff,0xf3,0xff,0xe9,0xff,0x00,0x00,0x16,0x00,0x2f,0x00,0x18,0x00,0xef,0xff,0xdc,0xff,0x22,0x00,0x41,0x00,0xff,0xff,0xa4,0xff,0xb8,0xff,0x0d,0x00,0x0c,0x00,0xdf,0xff,0xe2,0xff,0xfe,0xff,0x2b,0x00,0x00,0x00,0xc6,0xff,0xd5,0xff,0x0e,0x00,0x17,0x00,0xf1,0xff,0xed,0xff,0x12,0x00,0x16,0x00,0xf2,0xff,0xf1,0xff,0x20,0x00,0x29,0x00,0x0b,0x00,0xf1,0xff,0x00,0x00,0x0f,0x00,0x0c,0x00,0xf9,0xff,0xeb,0xff,0x03,0x00,0x20,0x00,0x10,0x00,0xdc,0xff,0xe7,0xff,0x1a,0x00,0x15,0x00,0xe6,0xff,0xec,0xff,0x11,0x00,0x14,0x00,0xf4,0xff,0xd9,0xff,0xe7,0xff,0x0a,0x00,0x14,0x00,0x01,0x00,0xf6,0xff,0x24,0x00,0x26,0x00,0xf9,0xff,0xdf,0xff,0xef,0xff,0x16,0x00,0x26,0x00,0x11,0x00,0xf5,0xff,0xec,0xff,0x03,0x00,0x1a,0x00,0x1c,0x00,0xff,0xff,0xef,0xff,0xf2,0xff,0x00,0x00,0x01,0x00,0xef,0xff,0xe2,0xff,0xf4,0xff,0x19,0x00,0x1f,0x00,0x0d,0x00,0xf1,0xff,0xf7,0xff,0x08,0x00,0x13,0x00,0xf6,0xff,0xe9,0xff,0xf7,0xff,0x08,0x00,0x0f,0x00,0x04,0x00,0x00,0x00,0xf7,0xff,0xec,0xff,0xf5,0xff,0x0f,0x00,0x1a,0x00,0x08,0x00,0xe7,0xff,0xe3,0xff,0xfc,0xff,0x05,0x00,0x00,0x00,0xff,0xff,0x04,0x00,0x02,0x00,0x02,0x00,0xfc,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0x04,0x00,0x0a,0x00,0x0f,0x00,0x0a,0x00,0xff,0xff,0xfb,0xff,0x05,0x00,0x0c,0x00,0x0e,0x00,0xff,0xff,0xf8,0xff,0xf7,0xff,0xf8,0xff,0xf0,0xff,0xf2,0xff,0x00,0x00,0x03,0x00,0x02,0x00,0xfb,0xff,0xff,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xf9,0xff,0xf9,0xff,0x00,0x00,0x06,0x00,0x03,0x00,0xfb,0xff,0xfc,0xff,0xfc,0xff,0x02,0x00,0x0d,0x00,0x0b,0x00,0x01,0x00,0x02,0x00,0x03,0x00,0x01,0x00,0x02,0x00,0xff,0xff,0x04,0x00,0x05,0x00,0x00,0x00,0xf6,0xff,0xf9,0xff,0xfe,0xff,0x06,0x00,0x05,0x00,0x01,0x00,0xfc,0xff,0xfc,0xff,0x05,0x00,0x05,0x00,0x04,0x00,0xff,0xff,0x03,0x00,0x03,0x00,0x02,0x00,0xfd,0xff,0xf7,0xff,0xfd,0xff,0x02,0x00,0x05,0x00,0x05,0x00,0xfe,0xff,0xf7,0xff,0xf8,0xff,0xfe,0xff,0x05,0x00,0x02,0x00,0xf9,0xff,0xfb,0xff,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0xfe,0xff,0xff,0xff,0x00,0x00,0x01,0x00,0xfe,0xff,0xfe,0xff,0x03,0x00,0x08,0x00,0x09,0x00,0x01,0x00,0xfe,0xff,0xfe,0xff,0x03,0x00,0x05,0x00,0x04,0x00,0x01,0x00,0x05,0x00,0x07,0x00,0x07,0x00,0x04,0x00,0x01,0x00,0xff,0xff,0x01,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0xfe,0xff,0xff,0xff,0xfe,0xff,0x01,0x00,0xfe,0xff,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x03,0x00,0x00,0x00,0x04,0x00,0x06,0x00,0x07,0x00,0x07,0x00,0x05,0x00,0x04,0x00,0x02,0x00,0x05,0x00,0x06,0x00,0x06,0x00,0x05,0x00,0x03,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x03,0x00,0x02,0x00,0x02,0x00,0x04,0x00,0x03,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0xff,0xff,0x01,0x00,0x02,0x00,0x01,0x00,0x03,0x00,0x05,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0xff,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00 + }; + + static const rt_uint8_t _romfs_root_9_wav[] = { + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0xff,0xff,0x01,0x00,0x02,0x00,0x00,0x00,0x01,0x00,0xfe,0xff,0x00,0x00,0x00,0x00,0xfe,0xff,0x00,0x00,0xfe,0xff,0xfe,0xff,0xfe,0xff,0x00,0x00,0xfd,0xff,0xfa,0xff,0x01,0x00,0xfc,0xff,0xfc,0xff,0xfc,0xff,0xfc,0xff,0xfb,0xff,0xfd,0xff,0xff,0xff,0xfa,0xff,0xfd,0xff,0xfd,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xfc,0xff,0xff,0xff,0xfa,0xff,0xfd,0xff,0xfc,0xff,0xf7,0xff,0xfa,0xff,0xf6,0xff,0xfd,0xff,0xff,0xff,0xfe,0xff,0xfe,0xff,0x01,0x00,0x02,0x00,0x02,0x00,0x05,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x02,0x00,0x04,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x03,0x00,0x03,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x05,0x00,0x03,0x00,0x01,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x03,0x00,0xff,0xff,0x02,0x00,0x01,0x00,0x05,0x00,0x06,0x00,0x03,0x00,0x03,0x00,0x03,0x00,0x02,0x00,0x03,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x02,0x00,0x04,0x00,0x04,0x00,0x07,0x00,0x05,0x00,0x02,0x00,0xfe,0xff,0x02,0x00,0x03,0x00,0x05,0x00,0x02,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x05,0x00,0x07,0x00,0x02,0x00,0x01,0x00,0x06,0x00,0x04,0x00,0x02,0x00,0x05,0x00,0x03,0x00,0x00,0x00,0xfe,0xff,0x04,0x00,0x02,0x00,0x02,0x00,0x08,0x00,0x02,0x00,0x02,0x00,0x04,0x00,0x00,0x00,0x03,0x00,0xfc,0xff,0x07,0x00,0x02,0x00,0xff,0xff,0x01,0x00,0x03,0x00,0x03,0x00,0xfd,0xff,0x08,0x00,0xfe,0xff,0x01,0x00,0x02,0x00,0x05,0x00,0x00,0x00,0x07,0x00,0x0a,0x00,0x00,0x00,0x05,0x00,0x03,0x00,0xfa,0xff,0x07,0x00,0xfa,0xff,0x04,0x00,0xfd,0xff,0xfc,0xff,0xfa,0xff,0xff,0xff,0x00,0x00,0xfd,0xff,0x06,0x00,0xf8,0xff,0xf9,0xff,0x01,0x00,0xfe,0xff,0xfa,0xff,0x00,0x00,0xf8,0xff,0xff,0xff,0xfc,0xff,0x07,0x00,0xfa,0xff,0xf9,0xff,0xf9,0xff,0xfc,0xff,0xfd,0xff,0x00,0x00,0xf8,0xff,0xfd,0xff,0x02,0x00,0xfe,0xff,0xf3,0xff,0x06,0x00,0xfb,0xff,0xff,0xff,0xfe,0xff,0xf5,0xff,0xff,0xff,0xfa,0xff,0xfb,0xff,0xfb,0xff,0x13,0x00,0x0b,0x00,0xf8,0xff,0xf4,0xff,0x10,0x00,0xf9,0xff,0x04,0x00,0xf2,0xff,0xee,0xff,0x06,0x00,0x1e,0x00,0xf3,0xff,0xfb,0xff,0x11,0x00,0xff,0xff,0x00,0x00,0x0b,0x00,0x06,0x00,0x02,0x00,0x04,0x00,0x04,0x00,0xe4,0xff,0x08,0x00,0x01,0x00,0xe1,0xff,0x12,0x00,0xec,0xff,0xfd,0xff,0x0b,0x00,0x0a,0x00,0xf7,0xff,0x0c,0x00,0xfc,0xff,0xf4,0xff,0x19,0x00,0x00,0x00,0x26,0x00,0x00,0x00,0xf3,0xff,0x0d,0x00,0xc9,0xff,0x11,0x00,0xdf,0xff,0xd9,0xff,0x10,0x00,0x27,0x00,0xf4,0xff,0x0e,0x00,0x02,0x00,0x22,0x00,0x04,0x00,0xd2,0xff,0x0a,0x00,0x24,0x00,0x1a,0x00,0xc3,0xff,0xe6,0xff,0xfa,0xff,0x01,0x00,0x01,0x00,0x0c,0x00,0x11,0x00,0xfa,0xff,0xd9,0xff,0x12,0x00,0xdf,0xff,0x45,0x00,0x11,0x00,0xf0,0xff,0x0a,0x00,0x15,0x00,0x14,0x00,0xea,0xff,0x19,0x00,0xcc,0xff,0x08,0x00,0xf2,0xff,0xd3,0xff,0x17,0x00,0xed,0xff,0xed,0xff,0xd6,0xff,0x1c,0x00,0xf7,0xff,0x27,0x00,0x15,0x00,0x26,0x00,0x1f,0x00,0xfa,0xff,0x12,0x00,0xee,0xff,0x00,0x00,0xd9,0xff,0x3b,0x00,0xe3,0xff,0xce,0xff,0xcd,0xff,0x57,0x00,0xb9,0xff,0x12,0x00,0xe3,0xff,0xfe,0xff,0x27,0x00,0xe3,0xff,0x2a,0x00,0x0c,0x00,0xf6,0xff,0xe8,0xff,0x4a,0x00,0xb4,0xff,0x1b,0x00,0xf3,0xff,0x1d,0x00,0xda,0xff,0x30,0x00,0x39,0x00,0xe8,0xff,0x04,0x00,0xb6,0xff,0xe5,0xff,0x1e,0x00,0xe2,0xff,0xf9,0xff,0xf5,0xff,0xe9,0xff,0x0f,0x00,0x17,0x00,0x09,0x00,0xf5,0xff,0x19,0x00,0xc9,0xff,0x37,0x00,0xf2,0xff,0xe6,0xff,0x0e,0x00,0x0c,0x00,0xef,0xff,0x48,0x00,0xdf,0xff,0xfb,0xff,0x15,0x00,0xf5,0xff,0xe2,0xff,0x09,0x00,0xf6,0xff,0xdb,0xff,0x02,0x00,0xed,0xff,0xd1,0xff,0x1b,0x00,0xf9,0xff,0x98,0xff,0x10,0x01,0xb3,0xff,0x09,0x00,0xf7,0xff,0x1d,0x00,0xb4,0xff,0x16,0x00,0x3e,0x00,0x91,0xff,0x44,0x00,0x75,0xff,0x86,0x00,0xe5,0xff,0x7d,0x00,0xb7,0xff,0xf2,0xff,0xec,0xff,0x98,0xff,0x7a,0x00,0x9f,0xff,0x64,0x00,0xbf,0xff,0x5a,0x00,0xe1,0xff,0x37,0x00,0xb7,0xff,0xaa,0xff,0x60,0x00,0x9c,0xff,0x37,0x00,0xdb,0xff,0x35,0x00,0x2b,0x00,0x8e,0xff,0xcc,0xff,0xf2,0xff,0x5c,0x00,0x7a,0xff,0x13,0x00,0xf9,0xff,0xf7,0xff,0x1e,0x00,0x35,0xff,0x1c,0x00,0xd3,0xff,0xd4,0x00,0x4c,0x00,0x59,0x00,0xaa,0x00,0x54,0x00,0x23,0x00,0xee,0xff,0x8c,0xff,0xc6,0xff,0xbb,0xff,0x64,0x00,0xae,0xff,0x49,0x00,0x6a,0xff,0x13,0x00,0x2c,0x00,0xc9,0xff,0xc0,0x00,0xd8,0xff,0x03,0x00,0xfa,0xff,0x70,0xff,0xc2,0xff,0x56,0x00,0x8a,0xff,0x24,0x00,0x70,0xff,0xab,0xff,0xcb,0xff,0x89,0x00,0x49,0xff,0x3d,0x01,0xa9,0xff,0xd0,0xff,0xd7,0x00,0x38,0xff,0x4c,0x00,0x70,0x00,0x33,0x00,0xbc,0xff,0x69,0x00,0x9f,0xff,0x4a,0x00,0xec,0xff,0x9b,0xff,0xc2,0x00,0xaf,0xff,0x39,0x00,0x48,0x00,0xcc,0x00,0xa9,0xff,0xb3,0x00,0x6b,0xff,0xcb,0xff,0x9e,0xff,0xc0,0xff,0xfe,0xff,0x2f,0x00,0x30,0x00,0x95,0xfe,0xd2,0x00,0xfe,0xfe,0x5e,0x01,0xb6,0xfe,0x7c,0x01,0x12,0xff,0xf5,0x00,0x4b,0xff,0x39,0xff,0xf0,0x00,0x94,0xff,0x64,0x01,0x9d,0xfe,0x7f,0x01,0x45,0xff,0x72,0x00,0xbf,0xff,0x22,0x00,0x9a,0xff,0xd7,0x00,0x9f,0xff,0x5c,0xff,0xba,0x00,0xd2,0xfe,0x90,0x00,0x5a,0xff,0x38,0x01,0x70,0xff,0x72,0x00,0x72,0x00,0x8b,0xff,0xad,0x00,0xd9,0xfe,0x8d,0x01,0x35,0xfe,0x2b,0x01,0xc8,0xff,0xec,0xff,0x44,0x01,0x2a,0xff,0x04,0x01,0xc3,0xff,0x05,0x00,0x54,0xff,0x83,0x00,0x3a,0xff,0x6b,0x00,0x30,0x00,0x85,0xfe,0x93,0x01,0xf7,0xff,0xfc,0xff,0xb0,0x00,0xee,0xff,0x07,0xff,0x26,0x00,0x2c,0x00,0x55,0xfe,0x94,0x01,0x2b,0xff,0x41,0xff,0x23,0x01,0x59,0xff,0x67,0xff,0x96,0x00,0x96,0x00,0x60,0xff,0xfa,0x00,0xad,0xff,0xb8,0xfe,0x11,0x01,0xd1,0xfe,0x2e,0x00,0xb3,0xff,0x0f,0x00,0x85,0xff,0xdc,0xff,0xe1,0xff,0xef,0xff,0x64,0x00,0xcc,0xff,0x9e,0x00,0x4e,0x00,0x90,0x00,0xc1,0xff,0x17,0x01,0x4b,0x00,0x2f,0x00,0x9c,0x00,0x64,0x00,0x32,0xff,0x10,0x00,0x89,0xff,0x7a,0xff,0x58,0xff,0xcf,0xff,0xb6,0xff,0x7d,0x00,0x6d,0xff,0x7e,0x00,0x22,0x00,0xf4,0xff,0x0d,0x00,0xee,0xff,0x53,0x00,0x78,0xff,0x5c,0x02,0x4d,0xfe,0x48,0x01,0x5a,0xff,0x36,0xff,0xff,0x00,0x50,0xff,0xc3,0xff,0x78,0xfe,0x9c,0x01,0x70,0xfc,0x66,0x02,0xc7,0xfe,0x88,0xfe,0x2c,0x01,0xfd,0x00,0xcf,0xff,0x15,0x01,0x76,0x01,0xa1,0xfc,0xef,0x04,0x34,0xfc,0x11,0x02,0x4c,0xfe,0xe8,0x01,0x2f,0xfd,0x7e,0x03,0x6a,0xfe,0x82,0xfe,0x07,0x04,0x91,0xfa,0x86,0x05,0x94,0xfa,0xd9,0x04,0x85,0xfb,0xf2,0x03,0x92,0xfc,0xbd,0x01,0x94,0x01,0xe2,0xfb,0x8b,0x05,0x3d,0xfa,0xf7,0x04,0xae,0xfb,0x0b,0x04,0x8d,0xfd,0x6a,0x01,0xd6,0x00,0x70,0xfd,0x1b,0x03,0x08,0xfc,0xf0,0x02,0xdc,0xfd,0x49,0x01,0x35,0x00,0x57,0x00,0xf7,0xff,0xf5,0xfe,0xfc,0x00,0x4f,0xfe,0xa3,0x00,0x89,0xfe,0xba,0x00,0x35,0xfe,0xdb,0xff,0xd3,0x00,0xd9,0xfe,0x74,0x01,0x74,0xff,0x65,0x01,0x56,0xfd,0x97,0x03,0x60,0xfe,0x11,0x00,0x16,0x03,0xf1,0xfd,0x73,0x03,0xf6,0xfc,0x79,0x04,0x3e,0xfe,0x7f,0xff,0xb2,0x01,0xc7,0xfd,0x42,0x00,0x73,0xff,0x1a,0x02,0x11,0xfb,0x66,0x04,0x6e,0xfc,0xe8,0x00,0x16,0x01,0x76,0xfc,0xf1,0x02,0xdd,0xfc,0x77,0x00,0x06,0xfd,0x8b,0x01,0x3c,0xfa,0xe0,0x01,0x75,0xfc,0x41,0xfd,0xc0,0x03,0xd1,0xfb,0x6a,0x04,0x17,0x01,0x36,0x03,0x0f,0x02,0xdf,0x05,0xe1,0xfe,0x55,0x05,0x23,0x05,0x45,0xfe,0x82,0x07,0xa1,0x00,0xbf,0x00,0x82,0x05,0xbd,0x00,0x97,0xfd,0x83,0x08,0x6d,0xfc,0x75,0xff,0xb7,0x05,0x87,0xf8,0x10,0xfd,0xde,0xfd,0x52,0xf8,0x30,0xf7,0xd0,0xfa,0x96,0xf4,0xe9,0xf3,0xe0,0xf4,0xdf,0xf4,0xfb,0xf4,0x03,0xf7,0x83,0xf9,0x73,0xfa,0x17,0xfe,0xfd,0x01,0x31,0x04,0x2b,0x08,0x3f,0x0e,0xe7,0x0d,0xa3,0x14,0x97,0x13,0xe2,0x13,0x47,0x14,0xfe,0x10,0x34,0x0f,0x3b,0x0e,0x15,0x09,0xe8,0x04,0x7e,0x03,0xf9,0xfd,0x1d,0xfd,0x1a,0xfa,0xdb,0xf6,0xb0,0xf1,0x20,0xf5,0x5e,0xeb,0xbe,0xea,0xb4,0xe8,0x3d,0xe1,0x23,0xe5,0xb9,0xe2,0xbc,0xe7,0xbb,0xe6,0x56,0xf5,0x96,0xf2,0x41,0xfc,0x9c,0x0a,0xa8,0x05,0x03,0x16,0x05,0x16,0xd0,0x1b,0xd2,0x1b,0x9b,0x1f,0x1f,0x1b,0xdb,0x18,0xd5,0x1a,0x06,0x0f,0xe5,0x14,0xa8,0x0a,0xe0,0x0b,0x79,0x08,0x57,0x07,0xdc,0x04,0xa5,0x03,0x7c,0x04,0x72,0xfb,0x05,0x00,0x95,0xf4,0xc1,0xf2,0x36,0xeb,0xaa,0xe2,0xd3,0xda,0x6a,0xda,0x3d,0xdd,0xda,0xd4,0x92,0xe1,0xf7,0xe2,0xd5,0xeb,0x8d,0xf6,0x25,0xfd,0xd9,0x0a,0x5f,0x0d,0xae,0x1d,0xe0,0x17,0x7e,0x1d,0x4e,0x21,0xdb,0x14,0x3e,0x19,0xc2,0x0f,0x4b,0x10,0x1e,0x04,0x68,0x09,0x5b,0x06,0xf3,0x00,0x73,0x0e,0x50,0x09,0xe2,0x10,0x3e,0x13,0xdd,0x15,0x4b,0x0d,0x4b,0x0e,0xe6,0x07,0x06,0xf9,0x9b,0xf8,0x81,0xe7,0x74,0xe0,0x30,0xce,0xf5,0xcf,0xfb,0xcb,0xb3,0xc9,0x58,0xda,0xd1,0xdb,0xf0,0xed,0xf9,0xf4,0xb8,0x09,0x06,0x0e,0x74,0x17,0x6a,0x21,0xab,0x1d,0xc1,0x21,0x0a,0x19,0xf9,0x15,0xd4,0x0b,0x9d,0x08,0x57,0x01,0x32,0xff,0x7f,0x00,0x21,0x01,0xe9,0x05,0x97,0x0b,0x25,0x14,0x31,0x16,0x75,0x1f,0xdd,0x1f,0x9c,0x19,0x1f,0x1b,0x95,0x0d,0x87,0x03,0x93,0xf5,0x76,0xef,0x3d,0xdf,0x1d,0xd2,0x6d,0xc9,0x3c,0xbd,0xe4,0xcb,0xae,0xc8,0xc8,0xdb,0x06,0xe7,0x40,0xf6,0x88,0x04,0xa3,0x0f,0xb5,0x1b,0x23,0x19,0x95,0x24,0x04,0x1d,0x88,0x19,0xe3,0x11,0xec,0x06,0xb8,0x01,0x95,0xf9,0x26,0xf9,0x2a,0xfb,0x86,0xfd,0xdd,0x04,0x8d,0x0a,0x7c,0x16,0x58,0x1a,0xc6,0x22,0x36,0x29,0x75,0x24,0xab,0x21,0x3b,0x1c,0x1f,0x0f,0x6a,0xff,0x5c,0xf7,0x3d,0xe5,0x33,0xdd,0x2f,0xd8,0xb1,0xca,0x53,0xc1,0x63,0xc1,0xe5,0xca,0xf8,0xd3,0x25,0xe5,0x1e,0xf6,0x2d,0x03,0x34,0x14,0x1d,0x18,0x41,0x21,0x3c,0x1a,0x41,0x17,0xde,0x15,0x8c,0x08,0xcb,0x05,0xc4,0xfb,0x99,0xfa,0xbb,0xf6,0xf2,0xf8,0x41,0xff,0xa3,0x06,0xb9,0x0c,0x9d,0x15,0xb8,0x1f,0x51,0x23,0xa5,0x25,0x53,0x26,0x26,0x22,0x78,0x1d,0xb5,0x12,0x31,0x0a,0x6f,0xff,0xb6,0xf2,0x30,0xea,0x54,0xe2,0xe9,0xe1,0x11,0xd8,0xa2,0xd3,0x34,0xc2,0xf8,0xc4,0x07,0xd0,0x11,0xd9,0xc4,0xeb,0xed,0xf9,0x71,0x0e,0xcb,0x14,0x90,0x1b,0x24,0x1f,0x5e,0x18,0x40,0x0f,0x41,0x0b,0xad,0x06,0x96,0xfe,0xd5,0xf8,0xce,0xf8,0xf8,0xf8,0xd6,0xfe,0xe2,0x04,0x2c,0x0c,0x28,0x13,0x85,0x16,0xca,0x1f,0xd1,0x21,0xb3,0x24,0x54,0x22,0xf5,0x1a,0x3a,0x19,0x6f,0x11,0x07,0x08,0xdb,0xfc,0x10,0xf8,0xec,0xf0,0x81,0xe4,0x0e,0xe8,0x22,0xdf,0x68,0xd6,0x0a,0xc5,0xe7,0xbe,0x56,0xcd,0xd0,0xd3,0x0e,0xe8,0x0f,0xf8,0x67,0x0c,0xc1,0x1b,0x57,0x1c,0x0a,0x20,0x6e,0x17,0x4b,0x10,0xcf,0x07,0x79,0xfe,0x4c,0x00,0xed,0xf8,0x5a,0xf7,0xd9,0xfa,0xe3,0x00,0x0b,0x07,0xd7,0x0b,0x1f,0x15,0x2e,0x19,0xeb,0x1a,0x3c,0x21,0x42,0x1f,0xbc,0x1e,0x3c,0x19,0x35,0x14,0xbe,0x12,0x82,0x0a,0xa2,0x03,0xc3,0xf9,0xa3,0xf5,0x34,0xeb,0xf1,0xec,0xea,0xe9,0xbd,0xde,0x13,0xd1,0x44,0xbe,0xb5,0xc4,0x05,0xcd,0xa8,0xdd,0x7e,0xf0,0xe3,0xfe,0x28,0x15,0x71,0x1b,0x0d,0x1b,0x6f,0x1b,0xc8,0x12,0x46,0x0a,0xeb,0x03,0xdb,0xfc,0xa8,0xfc,0x34,0xfa,0x90,0xfc,0xf8,0xff,0x74,0x07,0x71,0x0e,0x8f,0x10,0xad,0x13,0x18,0x16,0xba,0x18,0x78,0x19,0xbf,0x18,0xc2,0x15,0x86,0x17,0x4b,0x13,0x72,0x12,0xb4,0x09,0x56,0x01,0xb3,0xff,0x4e,0xf7,0x36,0xf2,0xc5,0xee,0x28,0xee,0xf4,0xe7,0x73,0xd4,0x2e,0xbf,0xe7,0xb9,0x4a,0xc9,0x0d,0xe0,0x41,0xf4,0x51,0x02,0x7f,0x11,0x60,0x20,0xbe,0x1f,0xbe,0x13,0xef,0x09,0x63,0x02,0x33,0x01,0xe5,0xfa,0x35,0xf8,0x6e,0xfb,0x1f,0x01,0xa1,0x0b,0x47,0x09,0x11,0x0e,0x9d,0x10,0x58,0x10,0x17,0x11,0x66,0x0c,0xfd,0x10,0xd5,0x11,0x0e,0x16,0xf3,0x14,0x9b,0x14,0xbe,0x16,0x75,0x14,0x0e,0x0e,0xcc,0x00,0x99,0xfc,0xd3,0xf7,0x9c,0xf5,0xec,0xef,0x4f,0xf1,0xe3,0xe8,0x81,0xd7,0x69,0xbe,0xb7,0xb3,0xc9,0xc7,0x50,0xe4,0x8e,0xfc,0x87,0x04,0xa1,0x0f,0xa3,0x1c,0x19,0x21,0xc1,0x14,0xe2,0x02,0xc4,0xfa,0x55,0xfe,0x1f,0x01,0x1a,0xfd,0x3a,0xfa,0x1b,0x02,0x1a,0x0e,0x41,0x13,0x50,0x10,0xd6,0x0a,0x0c,0x0b,0xfb,0x0c,0x35,0x0d,0xa0,0x09,0xcf,0x09,0x37,0x10,0x0d,0x16,0xa9,0x18,0xd4,0x14,0xeb,0x13,0x6b,0x0f,0x1e,0x09,0x3a,0x00,0x70,0xf8,0xc2,0xf4,0x3d,0xf1,0x74,0xf2,0xf2,0xee,0x49,0xe6,0x0d,0xd0,0xfc,0xb6,0x5e,0xb8,0xfe,0xd1,0x4b,0xf6,0xb2,0x09,0x3b,0x0f,0xa8,0x15,0xf1,0x1d,0xba,0x1f,0xa1,0x0d,0x35,0xf7,0x1f,0xee,0xcb,0xf7,0x1e,0x04,0x99,0x06,0x3b,0x01,0x7a,0x03,0xac,0x0e,0x34,0x17,0x6a,0x12,0xf4,0x06,0x86,0x01,0xe9,0x07,0x66,0x0f,0x43,0x0f,0xd2,0x0b,0xc7,0x0e,0xda,0x17,0xf4,0x1b,0x57,0x15,0xd1,0x0c,0xcd,0x05,0x55,0x03,0x8b,0x00,0x9c,0xf5,0x31,0xf4,0xda,0xf2,0x4e,0xf5,0x1a,0xef,0x67,0xdd,0x62,0xc6,0xf1,0xb6,0xd2,0xc5,0x40,0xe4,0x22,0x06,0x12,0x13,0xa9,0x16,0xf1,0x14,0x25,0x14,0xaa,0x0f,0xd5,0xfe,0xfa,0xf2,0x8a,0xed,0xd9,0xfc,0xa3,0x0b,0x01,0x13,0x9e,0x0d,0xd5,0x07,0x08,0x09,0x01,0x0e,0x6b,0x0c,0x98,0x01,0x38,0xfd,0x57,0x00,0x44,0x0e,0xbe,0x15,0x8f,0x14,0xa5,0x0f,0xea,0x0f,0x6d,0x17,0x32,0x19,0x04,0x11,0x8d,0x02,0x8d,0xfb,0xa6,0xfb,0x34,0xfb,0x96,0xf8,0x90,0xf1,0x3b,0xf1,0xa1,0xe9,0x72,0xdf,0x07,0xc7,0x27,0xb7,0x6f,0xc5,0x9d,0xe6,0x14,0x0f,0xc6,0x1a,0xe8,0x18,0x4a,0x0f,0xef,0x0d,0xa5,0x0b,0x99,0x00,0xfd,0xf2,0xcb,0xed,0xa3,0xfc,0xc1,0x0d,0x22,0x1a,0xe8,0x12,0x62,0x0a,0x12,0x06,0x18,0x0a,0x35,0x0b,0x4d,0x03,0x1b,0xfe,0x97,0xfe,0xfb,0x0a,0x58,0x14,0xf5,0x18,0x34,0x12,0xb0,0x0f,0x56,0x12,0x5b,0x16,0xb1,0x13,0xaf,0x05,0x19,0xf9,0xc5,0xf5,0x9e,0xf8,0x96,0xf7,0x89,0xf2,0xe8,0xed,0xa2,0xea,0x4c,0xe1,0x11,0xcc,0xec,0xb8,0x64,0xc1,0x38,0xe3,0x5a,0x0e,0x4c,0x20,0x69,0x1b,0xde,0x0b,0x66,0x04,0x00,0x06,0x03,0x01,0xea,0xf6,0x0c,0xec,0xeb,0xf3,0x1f,0x0a,0x6f,0x1d,0xbc,0x1e,0xbb,0x0f,0x44,0x03,0x94,0x01,0x27,0x09,0x98,0x08,0xa1,0x03,0x23,0xff,0x5f,0x08,0x10,0x16,0x33,0x1c,0x2e,0x19,0xbe,0x0e,0xa6,0x0c,0xac,0x0d,0x86,0x11,0x6d,0x0a,0x77,0x00,0xc2,0xf5,0x71,0xf7,0xa5,0xfa,0x00,0xfb,0x38,0xf5,0xf9,0xea,0x50,0xe0,0x87,0xcf,0x3b,0xc0,0x11,0xbf,0xff,0xd6,0x51,0xfb,0x67,0x19,0xec,0x1e,0x16,0x14,0xd4,0x05,0x82,0xff,0xd6,0xfd,0xa8,0xf9,0xfa,0xf4,0xf8,0xf4,0xb8,0x01,0xcd,0x12,0x01,0x1d,0x19,0x19,0x82,0x0b,0x84,0x01,0x41,0xff,0x63,0x04,0xc4,0x07,0x61,0x09,0xbb,0x08,0x09,0x0f,0xe7,0x14,0x6e,0x1a,0x86,0x16,0x88,0x0e,0x00,0x09,0x50,0x08,0xd5,0x0b,0x5e,0x0a,0xb6,0x06,0x5d,0xfd,0x14,0xf8,0x37,0xf3,0xab,0xf2,0x5e,0xef,0x81,0xea,0x6b,0xdf,0xd0,0xcf,0x05,0xc3,0x82,0xc6,0x76,0xdf,0x51,0x03,0xf6,0x1c,0xc1,0x1d,0x28,0x0e,0x05,0xfa,0x26,0xf4,0x9a,0xf5,0x8e,0xfd,0xa6,0xfe,0xb0,0x01,0x53,0x08,0x1c,0x13,0x13,0x1b,0xbc,0x16,0x3e,0x0c,0xf8,0xff,0x7b,0xff,0xbb,0x04,0xb6,0x0e,0x08,0x0f,0x75,0x0d,0xa2,0x08,0xa0,0x0b,0xeb,0x0f,0xef,0x13,0xd7,0x12,0x09,0x0e,0xff,0x0a,0x4f,0x07,0xfc,0x06,0x36,0x01,0x71,0xfc,0xeb,0xf2,0x84,0xf0,0xe9,0xee,0xa8,0xf1,0xe5,0xeb,0xcd,0xde,0x39,0xca,0x9d,0xc1,0x32,0xce,0x87,0xee,0xf9,0x11,0x40,0x21,0xeb,0x1a,0x34,0x04,0xda,0xf4,0x51,0xef,0x35,0xf7,0x6a,0xfc,0x15,0x01,0x1c,0x03,0x25,0x0a,0xbf,0x14,0xfc,0x1b,0x1e,0x18,0x61,0x0b,0x14,0x00,0x35,0xfd,0xa5,0x04,0x30,0x0d,0x62,0x11,0x01,0x0f,0x20,0x0c,0x2e,0x0b,0x89,0x10,0x2f,0x13,0x33,0x12,0xd2,0x0a,0x21,0x05,0xca,0x01,0x6b,0x01,0x43,0xff,0xd4,0xfa,0x53,0xf6,0x4a,0xf2,0x4f,0xf2,0x43,0xee,0xdf,0xe7,0x7d,0xd7,0x17,0xcb,0x9b,0xca,0x37,0xdf,0xf3,0xfc,0x6e,0x16,0xbf,0x1c,0xfb,0x11,0x84,0x00,0x86,0xf4,0x45,0xf3,0xe7,0xf7,0xf4,0xfe,0xf6,0x03,0xc0,0x08,0xd4,0x0c,0x41,0x11,0x70,0x12,0xf0,0x0e,0x04,0x09,0x7c,0x04,0x30,0x03,0xec,0x07,0xea,0x0b,0x01,0x0f,0x3e,0x0d,0xce,0x0b,0xb4,0x0a,0xb7,0x0c,0xbd,0x0d,0x45,0x0d,0xa9,0x0a,0x01,0x06,0x4e,0x02,0x6a,0xff,0xb5,0xff,0xb0,0xfd,0xf5,0xf8,0x54,0xf2,0x11,0xec,0x00,0xe9,0xd0,0xe3,0x46,0xdc,0xbd,0xd1,0x55,0xd5,0xa3,0xe5,0x39,0x04,0x45,0x19,0xd1,0x1d,0xb2,0x0c,0xf7,0xf7,0x5a,0xec,0x41,0xef,0xd3,0xfc,0x2c,0x07,0x01,0x0d,0xda,0x0a,0xdc,0x0d,0x4f,0x10,0xf8,0x13,0x57,0x0d,0x28,0x06,0xc3,0xfd,0x7e,0x00,0x54,0x07,0xeb,0x10,0x35,0x13,0x31,0x0f,0x49,0x08,0x5c,0x03,0x03,0x05,0xec,0x09,0x5c,0x0e,0xb5,0x0c,0x2f,0x06,0x68,0xff,0x49,0xfb,0x31,0xfc,0x7c,0xfa,0x22,0xf6,0xbe,0xed,0x62,0xe9,0x1d,0xe7,0x0b,0xe5,0x1e,0xdd,0x83,0xd7,0x47,0xde,0xf4,0xf1,0x7c,0x0e,0x48,0x1d,0x69,0x1a,0x85,0x03,0xc6,0xf0,0x65,0xe9,0x4a,0xf5,0x9c,0x05,0x9d,0x10,0xbf,0x0e,0x0e,0x08,0x69,0x05,0x75,0x0a,0x45,0x11,0x88,0x11,0xec,0x09,0xfa,0x01,0xfd,0xfe,0xea,0x04,0x69,0x0d,0xe5,0x11,0x78,0x0f,0x4d,0x07,0x3d,0x02,0xf3,0x01,0x34,0x09,0xcd,0x0c,0x23,0x0c,0x5b,0x04,0xe0,0xfc,0xcf,0xf7,0xc3,0xf7,0xdd,0xf8,0x54,0xf5,0x2b,0xf0,0xe8,0xe6,0x64,0xe1,0x55,0xd8,0x01,0xda,0xd7,0xe4,0x28,0xfb,0x8c,0x10,0x8c,0x1a,0x09,0x14,0x70,0x01,0xb8,0xf2,0xd4,0xeb,0xef,0xf3,0x7f,0xff,0x25,0x0d,0x26,0x10,0x61,0x0f,0x86,0x0a,0x74,0x0a,0xa3,0x09,0xf4,0x09,0x9f,0x06,0x02,0x06,0x14,0x06,0x30,0x09,0x1a,0x0b,0x80,0x0b,0xd9,0x09,0x70,0x05,0xb0,0x03,0x4e,0x03,0x91,0x08,0x65,0x0a,0x46,0x0a,0xf6,0x02,0x22,0xfd,0xcb,0xf7,0x7c,0xf7,0xc9,0xf6,0xc5,0xf5,0x56,0xf1,0xc3,0xeb,0x99,0xe5,0xfa,0xdf,0x9c,0xe0,0x29,0xea,0xf4,0xf9,0xa5,0x0a,0x95,0x12,0x30,0x0e,0xab,0x00,0x26,0xf6,0xa7,0xf3,0x4f,0xfb,0xdb,0x05,0x96,0x0d,0x97,0x0e,0x8a,0x0a,0xb7,0x07,0x60,0x07,0xa2,0x0a,0x27,0x0b,0x0b,0x0a,0xfa,0x05,0x61,0x05,0x1f,0x06,0x88,0x09,0x17,0x0b,0x68,0x0a,0x80,0x06,0xce,0x02,0x11,0x01,0x02,0x02,0x61,0x03,0x27,0x04,0x4f,0x02,0xb7,0xfe,0xa4,0xfa,0xd9,0xf6,0xc0,0xf2,0x41,0xef,0xb9,0xe9,0x1a,0xe4,0x49,0xdd,0x18,0xdf,0x04,0xea,0xcf,0xfe,0xec,0x11,0xd7,0x19,0x14,0x12,0xe8,0xff,0x65,0xf1,0xc7,0xed,0xe1,0xf8,0xdd,0x06,0x52,0x12,0x2b,0x12,0x0f,0x0c,0x7a,0x03,0xbe,0x02,0x77,0x06,0x89,0x0d,0x50,0x0f,0x99,0x0c,0xc0,0x05,0xe4,0x02,0x69,0x03,0x24,0x07,0x83,0x08,0x6f,0x06,0x30,0x01,0x23,0xfe,0x0e,0xff,0x39,0x03,0x6b,0x06,0x4b,0x05,0x29,0x00,0x14,0xf9,0x49,0xf5,0x39,0xf4,0x1d,0xf5,0xbb,0xf3,0xe4,0xef,0x88,0xe8,0x19,0xe1,0x6c,0xe1,0x21,0xed,0x0c,0xff,0x61,0x10,0x02,0x14,0x2f,0x0d,0xb0,0xfd,0x92,0xf4,0x4d,0xf4,0xfa,0xff,0xae,0x0b,0x8a,0x12,0x0b,0x0f,0xcd,0x07,0x87,0x02,0x03,0x04,0x9e,0x09,0xd7,0x0c,0xba,0x0b,0x50,0x06,0x29,0x03,0x3d,0x03,0xb3,0x07,0xd8,0x0a,0x5f,0x0a,0x84,0x04,0xca,0xfd,0x52,0xfa,0xbf,0xfc,0xc9,0x01,0x46,0x06,0xba,0x04,0x5c,0xff,0xa5,0xf7,0x2e,0xf2,0xe8,0xf0,0xb8,0xf0,0x55,0xf0,0xf6,0xec,0x89,0xe8,0xdb,0xe7,0x68,0xee,0xdb,0xfb,0xef,0x08,0xd3,0x0f,0xfb,0x0b,0x57,0x02,0xcb,0xf8,0x19,0xf8,0x22,0xff,0x26,0x0a,0xd6,0x10,0x97,0x0f,0xb3,0x08,0xd5,0x01,0xa1,0x00,0xe2,0x04,0x16,0x0b,0x08,0x0e,0x8c,0x0b,0x9d,0x06,0x08,0x03,0x12,0x03,0x4d,0x05,0x25,0x06,0x60,0x04,0x85,0xff,0xce,0xfc,0x89,0xfc,0x40,0x00,0x1e,0x02,0x11,0x01,0xd9,0xfa,0xa7,0xf4,0x86,0xf1,0xab,0xf3,0xd4,0xf8,0x96,0xf9,0x9c,0xf6,0xa0,0xee,0x5d,0xec,0xc2,0xef,0x71,0xfb,0xed,0x06,0x8b,0x0d,0x3d,0x0b,0xc3,0x02,0x11,0xfb,0x17,0xf9,0x12,0xff,0x8d,0x07,0x25,0x0e,0x7b,0x0d,0x49,0x08,0xa6,0x02,0xf7,0x01,0xb8,0x05,0x87,0x0a,0xfe,0x0b,0x6b,0x09,0x28,0x04,0xc8,0x00,0x8b,0x00,0xc2,0x03,0x1c,0x06,0x3b,0x06,0xa4,0x01,0xe6,0xfc,0xab,0xf9,0xa0,0xfa,0x67,0xfc,0x31,0xfd,0x98,0xfa,0x6d,0xf5,0xd6,0xef,0xee,0xeb,0x58,0xeb,0x85,0xed,0x7f,0xf4,0xfa,0xfc,0xde,0x06,0xe0,0x0c,0x6a,0x0d,0xd9,0x07,0x11,0x00,0xdc,0xfa,0x63,0xfb,0xdb,0x00,0xee,0x06,0x5a,0x0a,0x3f,0x09,0x66,0x06,0xed,0x03,0x9a,0x04,0xff,0x06,0xb9,0x08,0x40,0x08,0x3c,0x05,0x7c,0x02,0x9e,0x01,0xb5,0x03,0xe8,0x05,0x61,0x06,0xa2,0x03,0xd6,0xfe,0x96,0xfa,0xcc,0xf8,0x02,0xfa,0xbf,0xfb,0x59,0xfc,0x91,0xf8,0xe2,0xf1,0x4e,0xea,0x27,0xe5,0x86,0xe7,0x39,0xf3,0x77,0x04,0xf6,0x12,0x44,0x16,0x5b,0x0d,0xed,0xfd,0x69,0xf2,0x11,0xf2,0xb6,0xfb,0xde,0x08,0x30,0x10,0x2c,0x0f,0xfc,0x06,0x4a,0x00,0x43,0xfe,0xcf,0x03,0x49,0x0a,0xb6,0x0d,0x9e,0x0a,0x96,0x04,0xf0,0xff,0x47,0xff,0x28,0x02,0x8f,0x04,0x97,0x04,0x8e,0x01,0xbb,0xfe,0xc1,0xfd,0x6c,0xff,0x94,0x01,0xb8,0x01,0xeb,0xfe,0x67,0xfa,0xc7,0xf6,0x7f,0xf5,0xfd,0xf5,0x85,0xf6,0xee,0xf4,0x7b,0xf2,0xcf,0xef,0x5c,0xf3,0xdf,0xfa,0x2c,0x06,0xa6,0x0c,0x97,0x0c,0xca,0x04,0x62,0xfb,0xeb,0xf5,0x7e,0xf8,0x3f,0x01,0x4d,0x09,0x3a,0x0c,0x6e,0x08,0xed,0x02,0xb9,0xff,0x2c,0x02,0xcd,0x06,0xfa,0x0a,0x58,0x0a,0xea,0x06,0x79,0x02,0x10,0x01,0x05,0x02,0xa3,0x04,0x13,0x05,0x94,0x03,0xf4,0xff,0x97,0xfd,0x6f,0xfc,0x4f,0xfd,0x20,0xfd,0xb0,0xfb,0x27,0xf8,0xac,0xf4,0x3c,0xf3,0x48,0xf4,0x4b,0xf8,0x19,0xfc,0x7b,0xff,0x66,0x00,0xb2,0x00,0xb8,0xff,0xbe,0xff,0x54,0xff,0xb5,0xff,0xa5,0xff,0x0d,0x01,0xba,0x02,0x71,0x05,0x00,0x07,0x89,0x07,0x03,0x06,0x87,0x04,0x8a,0x03,0xde,0x03,0x66,0x04,0x0d,0x04,0xb7,0x02,0xcf,0x00,0x4b,0x00,0x7c,0x00,0xb9,0x01,0xd9,0x00,0x28,0xff,0x50,0xfc,0x69,0xfb,0xb9,0xfb,0xb3,0xfd,0x34,0xfe,0x34,0xfd,0xb0,0xfa,0x26,0xf9,0x97,0xf9,0xfa,0xfb,0x6e,0xfe,0x97,0xff,0xf9,0xfe,0xc6,0xfd,0x48,0xfd,0x2d,0xfe,0x2b,0x00,0x01,0x02,0xd8,0x02,0x4c,0x02,0xe0,0x01,0xf2,0x01,0x5b,0x03,0x77,0x04,0xdc,0x04,0x89,0x03,0xa3,0x01,0xe8,0xff,0x91,0xff,0x33,0x00,0x6f,0x01,0x42,0x02,0x96,0x02,0xcd,0x01,0xbe,0x00,0x88,0xff,0x2f,0xff,0x5c,0xff,0x70,0x00,0xf4,0x00,0xe2,0x00,0xc3,0xfe,0x3e,0xfb,0xb6,0xf6,0x0c,0xf4,0x83,0xf5,0xbc,0xfa,0x0e,0x02,0x26,0x07,0x9a,0x08,0x3a,0x05,0x47,0x00,0x1e,0xfc,0x6b,0xfb,0x9f,0xfd,0x25,0x01,0x48,0x03,0x8a,0x03,0x22,0x02,0xfe,0x00,0x1d,0x01,0xae,0x02,0x0e,0x04,0x30,0x04,0x73,0x02,0x6b,0x00,0x1e,0xff,0xd4,0xff,0x70,0x01,0xfc,0x02,0x0d,0x03,0x85,0x01,0x76,0xff,0x0a,0xfe,0xbd,0xfe,0x54,0x00,0x11,0x02,0xbf,0x01,0x0e,0x00,0x60,0xfd,0xf5,0xfb,0x52,0xfc,0xa2,0xfe,0x2e,0x01,0x80,0x02,0xce,0x01,0xa6,0xff,0x68,0xfd,0x67,0xfc,0x2b,0xfd,0x11,0xff,0xbb,0x00,0x26,0x01,0x67,0x00,0x4f,0xff,0x16,0xff,0xff,0xff,0x9b,0x01,0x88,0x02,0x40,0x02,0xce,0x00,0x6e,0xff,0xff,0xfe,0xd2,0xff,0xf9,0x00,0x87,0x01,0x1e,0x01,0x07,0x00,0x27,0xff,0xd9,0xfe,0x16,0xff,0x71,0xff,0x9e,0xff,0x6c,0xff,0x26,0xff,0x0c,0xff,0x28,0xff,0x7b,0xff,0xb8,0xff,0xc8,0xff,0x98,0xff,0x5e,0xff,0x50,0xff,0x95,0xff,0x07,0x00,0x74,0x00,0x86,0x00,0x54,0x00,0x12,0x00,0xfc,0xff,0x30,0x00,0x93,0x00,0xc2,0x00,0x9f,0x00,0x22,0x00,0xb4,0xff,0x9a,0xff,0x0c,0x00,0xc6,0x00,0x37,0x01,0x35,0x01,0x98,0x00,0xef,0xff,0x60,0xff,0x34,0xff,0x40,0xff,0x88,0xff,0xd0,0xff,0x24,0x00,0x65,0x00,0x7b,0x00,0x4c,0x00,0xf4,0xff,0x94,0xff,0x63,0xff,0x76,0xff,0xc1,0xff,0x0f,0x00,0x22,0x00,0xf7,0xff,0x9c,0xff,0x65,0xff,0x87,0xff,0x0a,0x00,0x91,0x00,0xe0,0x00,0xc3,0x00,0x65,0x00,0xf4,0xff,0xbb,0xff,0xa4,0xff,0xab,0xff,0xa3,0xff,0xa4,0xff,0xa4,0xff,0xd6,0xff,0x17,0x00,0x5e,0x00,0x74,0x00,0x67,0x00,0x41,0x00,0x20,0x00,0x0b,0x00,0xfe,0xff,0xf4,0xff,0xd7,0xff,0xc0,0xff,0xb3,0xff,0xc8,0xff,0xed,0xff,0x38,0x00,0x65,0x00,0x7f,0x00,0x4e,0x00,0x1e,0x00,0xe6,0xff,0xdf,0xff,0xe4,0xff,0xf1,0xff,0xd7,0xff,0xbb,0xff,0x8e,0xff,0x84,0xff,0xa1,0xff,0xee,0xff,0x55,0x00,0x9b,0x00,0xa0,0x00,0x48,0x00,0xcb,0xff,0x5f,0xff,0x49,0xff,0x6a,0xff,0xc6,0xff,0x04,0x00,0x3c,0x00,0x45,0x00,0x45,0x00,0x20,0x00,0x02,0x00,0xe4,0xff,0xe9,0xff,0xf4,0xff,0x0d,0x00,0x1e,0x00,0x26,0x00,0x1f,0x00,0x06,0x00,0xf4,0xff,0xf0,0xff,0x08,0x00,0x22,0x00,0x33,0x00,0x0e,0x00,0xeb,0xff,0xc9,0xff,0xda,0xff,0x01,0x00,0x2b,0x00,0x2c,0x00,0x0b,0x00,0xe1,0xff,0xc5,0xff,0xc1,0xff,0xdb,0xff,0xfd,0xff,0x05,0x00,0xf5,0xff,0xd3,0xff,0xba,0xff,0xb5,0xff,0xce,0xff,0xf1,0xff,0x13,0x00,0x2c,0x00,0x33,0x00,0x2c,0x00,0x16,0x00,0x04,0x00,0xf2,0xff,0xe9,0xff,0xdf,0xff,0xdf,0xff,0xe2,0xff,0xee,0xff,0xfe,0xff,0x1d,0x00,0x40,0x00,0x51,0x00,0x44,0x00,0x16,0x00,0xd9,0xff,0xad,0xff,0xb6,0xff,0xe4,0xff,0x1c,0x00,0x2f,0x00,0x1a,0x00,0xe9,0xff,0xcc,0xff,0xca,0xff,0xe7,0xff,0x05,0x00,0x17,0x00,0x0d,0x00,0xfb,0xff,0xe7,0xff,0xea,0xff,0xf7,0xff,0x0a,0x00,0x10,0x00,0x01,0x00,0xee,0xff,0xe5,0xff,0xe9,0xff,0xf3,0xff,0x06,0x00,0x13,0x00,0x1e,0x00,0x1d,0x00,0x1c,0x00,0x11,0x00,0x0c,0x00,0x0b,0x00,0x0d,0x00,0x09,0x00,0x06,0x00,0x01,0x00,0x00,0x00,0x06,0x00,0x12,0x00,0x18,0x00,0x15,0x00,0x05,0x00,0xed,0xff,0xdb,0xff,0xda,0xff,0xea,0xff,0x00,0x00,0x10,0x00,0x0d,0x00,0xff,0xff,0xf5,0xff,0xed,0xff,0xf4,0xff,0x04,0x00,0x0b,0x00,0x0f,0x00,0x04,0x00,0x00,0x00,0xfa,0xff,0xf9,0xff,0xfc,0xff,0xff,0xff,0xfa,0xff,0xf6,0xff,0xef,0xff,0xf1,0xff,0xfa,0xff,0x01,0x00,0x08,0x00,0x0b,0x00,0x0a,0x00,0x05,0x00,0x03,0x00,0x01,0x00,0x05,0x00,0x06,0x00,0x08,0x00,0x02,0x00,0x00,0x00,0xfc,0xff,0xfd,0xff,0x04,0x00,0x0b,0x00,0x09,0x00,0x07,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x00,0x00,0xfe,0xff,0xfc,0xff,0xff,0xff,0x00,0x00,0x09,0x00,0x09,0x00,0x06,0x00,0x02,0x00,0xfd,0xff,0xf8,0xff,0xfa,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xfd,0xff,0xfc,0xff,0xfa,0xff,0xfd,0xff,0xfe,0xff,0x01,0x00,0x04,0x00,0x01,0x00,0xfd,0xff,0xf5,0xff,0xf5,0xff,0xf9,0xff,0xfb,0xff,0xfd,0xff,0xfb,0xff,0xf9,0xff,0xf6,0xff,0xf9,0xff,0xfa,0xff,0xfb,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xfa,0xff,0xfc,0xff,0xfc,0xff,0xfe,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0xff,0xff,0xfc,0xff,0xff,0xff,0xfb,0xff,0x00,0x00,0xff,0xff,0x02,0x00,0x00,0x00,0xff,0xff,0xfc,0xff,0xf8,0xff,0xfb,0xff,0xf9,0xff,0xfb,0xff,0xf9,0xff,0xf9,0xff,0xf6,0xff,0xfa,0xff,0xf9,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xfd,0xff,0xff,0xff,0xfc,0xff,0xfc,0xff,0xfd,0xff,0xfe,0xff,0x01,0x00,0x03,0x00,0x02,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x03,0x00,0x04,0x00,0x05,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x02,0x00,0x03,0x00,0x02,0x00,0x03,0x00,0x03,0x00,0x05,0x00,0x03,0x00,0x03,0x00,0x03,0x00,0x01,0x00,0x01,0x00,0xff,0xff,0x00,0x00,0x01,0x00,0x04,0x00,0x02,0x00,0x03,0x00,0x04,0x00,0x05,0x00,0x02,0x00,0x03,0x00,0x04,0x00,0x03,0x00,0x06,0x00,0x04,0x00,0x03,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x03,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x04,0x00,0x05,0x00,0x03,0x00,0x00,0x00,0xfe,0xff,0xff,0xff,0x00,0x00,0x02,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0xfe,0xff,0xfc,0xff,0xfd,0xff,0xfd,0xff,0xfd,0xff,0xfd,0xff,0xfc,0xff,0xfc,0xff,0xfd,0xff,0xff,0xff,0xfe,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x03,0x00,0x03,0x00,0x06,0x00,0x05,0x00,0x05,0x00,0x04,0x00,0x07,0x00,0x08,0x00,0x08,0x00,0x09,0x00,0x07,0x00,0x05,0x00,0x01,0x00,0x00,0x00,0x03,0x00,0x04,0x00,0x04,0x00,0x05,0x00,0x03,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x05,0x00,0x03,0x00,0x01,0x00,0xff,0xff,0xfc,0xff,0xfa,0xff,0xfd,0xff,0xfc,0xff,0xfd,0xff,0xfd,0xff,0xfc,0xff,0xfb,0xff,0xfd,0xff,0xfd,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0x01,0x00,0xff,0xff,0xfd,0xff,0xff,0xff,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0xff,0xff,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xff,0xfd,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,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00 + }; + + static const rt_uint8_t _romfs_root_dian_wav[] = { + 0x52, 0x49, 0x46, 0x46, 0x82, 0x15, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45, 0x66, 0x6D, 0x74, 0x20, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x40, 0x1F, 0x00, 0x00, 0x80, 0x3E, 0x00, 0x00, 0x02, 0x00, 0x10, 0x00, 0x64, 0x61, 0x74, 0x61, + 0x5E, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0x00, 0x00, 0xFE, 0xFF, 0xFF, 0xFF, + 0xFE, 0xFF, 0xFD, 0xFF, 0xFD, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, 0xFD, 0xFF, 0xFB, 0xFF, 0xFE, 0xFF, 0xFD, 0xFF, 0xFD, 0xFF, + 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x02, 0x00, 0x02, 0x00, 0x03, 0x00, 0x02, 0x00, 0x03, 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, + 0x01, 0x00, 0x03, 0x00, 0x03, 0x00, 0x03, 0x00, 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x02, 0x00, 0x03, 0x00, 0x03, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x03, 0x00, 0x02, 0x00, + 0x02, 0x00, 0x01, 0x00, 0xFE, 0xFF, 0x02, 0x00, 0xFF, 0xFF, 0xFE, 0xFF, 0x00, 0x00, 0xFD, 0xFF, 0xFF, 0xFF, 0x01, 0x00, 0x03, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x03, 0x00, + 0x00, 0x00, 0xFB, 0xFF, 0xFE, 0xFF, 0xF6, 0xFF, 0xFC, 0xFF, 0xFD, 0xFF, 0xF9, 0xFF, 0x04, 0x00, 0xFD, 0xFF, 0xFC, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0xFC, 0xFF, 0xFE, 0xFF, 0xFD, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0x01, 0x00, 0x01, 0x00, + 0x03, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0x01, 0x00, 0xFC, 0xFF, 0x01, 0x00, 0xFE, 0xFF, 0x01, 0x00, 0x03, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0xFC, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFD, 0xFF, 0xFD, 0xFF, 0xFF, 0xFF, + 0x04, 0x00, 0x02, 0x00, 0xFF, 0xFF, 0xFD, 0xFF, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFD, 0xFF, 0xFC, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, 0xFD, 0xFF, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFD, 0xFF, 0xFC, 0xFF, 0xFB, 0xFF, 0xFC, 0xFF, 0xFD, 0xFF, 0xFE, 0xFF, 0xFD, 0xFF, 0xFC, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0xFB, 0xFF, 0xF9, 0xFF, + 0xF5, 0xFF, 0xF4, 0xFF, 0xF6, 0xFF, 0xF7, 0xFF, 0xF5, 0xFF, 0xF4, 0xFF, 0xF2, 0xFF, 0xF9, 0xFF, 0xFB, 0xFF, 0xFB, 0xFF, 0xFA, 0xFF, 0xFB, 0xFF, 0xF9, 0xFF, 0xFC, 0xFF, 0xFD, 0xFF, 0xFD, 0xFF, 0xFD, 0xFF, 0xF9, 0xFF, 0x00, 0x00, 0xFF, 0xFF, + 0x02, 0x00, 0x03, 0x00, 0xFE, 0xFF, 0xFD, 0xFF, 0xFD, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0xFD, 0xFF, 0xFB, 0xFF, 0xFC, 0xFF, 0xFA, 0xFF, 0xFE, 0xFF, 0xFB, 0xFF, 0xFD, 0xFF, 0xFF, 0xFF, 0xFA, 0xFF, 0xF8, 0xFF, 0xF5, 0xFF, 0xF9, 0xFF, + 0xF5, 0xFF, 0xF9, 0xFF, 0xF9, 0xFF, 0xFA, 0xFF, 0xF9, 0xFF, 0xF9, 0xFF, 0xF6, 0xFF, 0xF6, 0xFF, 0xF6, 0xFF, 0xF5, 0xFF, 0xFA, 0xFF, 0xF6, 0xFF, 0xF4, 0xFF, 0xED, 0xFF, 0xE4, 0xFF, 0xEE, 0xFF, 0xF4, 0xFF, 0xF1, 0xFF, 0xFB, 0xFF, 0xF6, 0xFF, + 0xF7, 0xFF, 0xFB, 0xFF, 0xF5, 0xFF, 0xF1, 0xFF, 0xF9, 0xFF, 0xEF, 0xFF, 0xF9, 0xFF, 0xFB, 0xFF, 0xF2, 0xFF, 0xF2, 0xFF, 0xF1, 0xFF, 0xFF, 0xFF, 0xE7, 0xFF, 0x08, 0x00, 0xFB, 0xFF, 0xEA, 0xFF, 0xF1, 0xFF, 0xFD, 0xFF, 0xFE, 0xFF, 0x02, 0x00, + 0xFA, 0xFF, 0xFC, 0xFF, 0xFC, 0xFF, 0xFF, 0xFF, 0x03, 0x00, 0x03, 0x00, 0x06, 0x00, 0x02, 0x00, 0xF7, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0xF4, 0xFF, 0x0D, 0x00, 0xF8, 0xFF, 0xFE, 0xFF, 0xF6, 0xFF, 0x0E, 0x00, 0x06, 0x00, 0xFE, 0xFF, 0x04, 0x00, + 0xFE, 0xFF, 0x04, 0x00, 0x08, 0x00, 0xFA, 0xFF, 0xFD, 0xFF, 0x0E, 0x00, 0x08, 0x00, 0x0F, 0x00, 0x04, 0x00, 0xFC, 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, 0xFD, 0xFF, 0xF1, 0xFF, 0x0F, 0x00, 0x0A, + 0x00, 0x05, 0x00, 0x10, 0x00, 0x09, 0x00, 0x1A, 0x00, 0x0C, 0x00, 0x16, 0x00, 0x14, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x22, 0x00, 0x0C, 0x00, 0x0A, + 0x00, 0x19, 0x00, 0x07, 0x00, 0x11, 0x00, 0x06, 0x00, 0x08, 0x00, 0xF9, 0xFF, 0xF8, 0xFF, 0xF2, 0xFF, 0xFB, 0xFF, 0x0C, 0x00, 0x14, 0x00, 0xFE, 0xFF, 0xF0, 0xFF, 0x11, 0x00, 0x09, 0x00, 0x16, 0x00, 0x14, 0x00, 0x2F, 0x00, 0x1B, 0x00, 0x31, + 0x00, 0x29, 0x00, 0x1D, 0x00, 0x1F, 0x00, 0xFE, 0xFF, 0x16, 0x00, 0x05, 0x00, 0x06, 0x00, 0xFF, 0xFF, 0xF9, 0xFF, 0x04, 0x00, 0xC3, 0xFF, 0xF2, 0xFF, 0xEE, 0xFF, 0xE3, 0xFF, 0xB7, 0xFF, 0x12, 0x00, 0xAA, 0xFF, 0xD1, 0xFF, 0xF5, 0xFF, 0xC3, + 0xFF, 0xA1, 0xFF, 0xE2, 0xFF, 0xB4, 0xFF, 0x8E, 0xFF, 0xD2, 0xFF, 0xC6, 0xFF, 0xB9, 0xFF, 0x97, 0xFF, 0xDC, 0xFF, 0x6F, 0xFF, 0xB7, 0xFF, 0x8E, 0xFF, 0xED, 0xFF, 0x62, 0xFF, 0xD3, 0xFF, 0xC3, 0xFF, 0x97, 0x01, 0xC0, 0xFD, 0xFC, 0x09, 0xA2, + 0x06, 0x85, 0xFE, 0x33, 0x0A, + 0xFD, 0x02, 0x18, 0xFE, 0x5B, 0x05, 0x47, 0x05, 0xA9, 0xFC, 0x50, 0x05, 0xB3, 0x00, 0x71, 0xFB, 0x3E, 0x01, 0x88, 0xFB, 0x6D, 0xFB, 0x16, 0xFE, 0x7D, 0xFC, 0xFC, 0xFB, 0xB5, 0xFF, 0x8D, 0xFD, 0x5B, 0xFD, 0x26, 0x03, 0xF2, 0xFF, 0x4F, 0x00, + 0x4D, 0x03, 0xD8, 0xFF, 0x7D, 0x00, 0xD2, 0xFF, 0xC5, 0xFC, 0x15, 0xFF, 0x80, 0xFD, 0x74, 0xFC, 0x07, 0xFF, 0x65, 0xFD, 0xC2, 0xFC, 0xAA, 0xFF, 0x67, 0xFE, 0xFF, 0xFE, 0x51, 0x00, 0x80, 0xFF, 0xD4, 0x00, 0xCF, 0x00, 0x1C, 0x01, 0x77, 0x00, + 0xF2, 0xFE, 0x41, 0x01, 0xD5, 0xFF, 0x17, 0x00, 0xB8, 0x01, 0xF6, 0xFF, 0x13, 0x02, 0x52, 0x01, 0x4E, 0x01, 0x00, 0x03, 0x20, 0x03, 0x23, 0x02, 0x26, 0x04, 0x88, 0x02, 0x5B, 0x01, 0x4A, 0x03, 0xA2, 0x00, 0x38, 0x01, 0x1E, 0x01, 0xEE, 0x00, + 0x07, 0x01, 0x75, 0x00, 0x97, 0x01, 0xBD, 0xFE, 0xBC, 0x01, 0x85, 0x00, 0xCF, 0x00, 0xFF, 0xFF, 0x4C, 0xFF, 0x8E, 0xFF, 0xD8, 0xFE, 0x8A, 0xFF, 0xA3, 0xFE, 0x2F, 0x00, 0x3C, 0xFE, 0x9D, 0x01, 0x51, 0xFF, 0x36, 0x01, 0x73, 0x02, 0xC9, 0x00, + 0x96, 0x03, 0xB5, 0x02, 0xED, 0x01, 0x03, 0x04, 0x24, 0x03, 0xF5, 0x01, 0x3E, 0x05, 0xA3, 0x00, 0xFF, 0x03, 0xDC, 0x02, 0x2A, 0x00, 0x04, 0x03, 0x76, 0xFF, 0x40, 0x01, 0xD6, 0x00, 0x72, 0x01, 0x0F, 0x01, 0x04, 0x03, 0x1A, 0x02, 0x1E, 0x04, + 0xE6, 0x01, 0x61, 0x03, 0x90, 0x02, 0x6F, 0x00, 0x76, 0x01, 0x84, 0xFE, 0x62, 0xFD, 0xB3, 0xFC, 0xAC, 0xF8, 0xC4, 0xF6, 0x98, 0xF7, 0x4C, 0xEE, 0xD9, 0xF4, 0x92, 0xEC, 0x55, 0xEF, 0xA9, 0xEF, 0x0A, + 0xED, 0x0C, 0xF3, 0x81, 0xF2, 0x30, 0xF7, 0x46, 0xFC, 0xCD, 0xFE, 0x65, 0x03, 0x41, 0x0B, 0xD0, 0x0A, + 0x25, 0x15, 0x8C, 0x14, 0xE0, 0x18, 0x23, 0x1B, 0x9E, 0x17, 0xBC, 0x19, 0x76, 0x14, 0x0A, + 0x12, 0x2C, 0x0E, 0x6D, 0x08, 0xB4, 0x04, 0xCD, 0xFF, 0x26, 0xF9, 0x63, 0xF9, 0x72, 0xF1, 0xA0, 0xF2, 0xE4, 0xEF, 0x4A, 0xE8, 0x36, 0xEC, 0x6D, 0xE2, 0x17, 0xE4, 0x9D, 0xE6, 0x40, 0xE1, 0xFE, 0xEB, 0xB9, 0xE8, 0x11, 0xEE, 0x00, 0xF5, 0x67, + 0xF5, 0x6F, 0x02, 0xB0, 0x04, 0x30, 0x0F, 0xFD, 0x13, 0x12, 0x1A, 0x29, 0x1E, 0xDA, 0x1F, 0x44, 0x1F, 0x0A, + 0x1F, 0x7C, 0x1A, 0xA5, 0x17, 0x4F, 0x13, 0x48, 0x0C, 0x1C, 0x0B, 0xEA, 0x03, 0xCA, 0x02, 0x34, 0x01, 0xCC, 0xFD, 0xFB, 0xFD, 0xFD, 0xF9, 0x92, 0xF6, 0x3F, 0xF6, 0xC6, 0xED, 0xAB, 0xED, 0xAD, 0xE3, 0xC9, 0xE1, 0x82, 0xDF, 0xD0, 0xDB, 0xF8, + 0xDF, 0x5C, 0xDE, 0x7A, 0xE4, 0x06, 0xEA, 0xC4, 0xF0, 0xCC, 0xFB, 0x04, 0x05, 0xB0, 0x0C, 0x60, 0x19, 0x85, 0x1A, 0x96, 0x24, 0xCD, 0x22, 0xFD, 0x21, 0x0C, 0x24, 0x93, 0x19, 0x46, 0x1A, 0x8A, 0x12, 0x13, 0x0C, 0xF2, 0x0A, + 0x7C, 0x05, 0xE8, 0x02, 0xCB, 0x05, 0x5E, 0xFF, 0xD5, 0x04, 0xB4, 0x01, 0xBE, 0xFC, 0x09, 0xFF, 0xFD, 0xF4, 0xD1, 0xF3, 0x0D, 0xED, 0xA9, 0xE3, 0x25, 0xE1, 0x0D, 0xDC, 0x9A, 0xD8, 0xB2, 0xDD, 0xB0, 0xD9, 0xD1, 0xE3, 0xAE, 0xE6, 0x47, 0xEF, + 0x9A, 0xFC, 0x66, 0x02, 0x91, 0x11, 0x6A, 0x17, 0x97, 0x20, 0x1C, 0x25, 0xFB, 0x25, 0x8F, 0x26, 0xDB, 0x22, 0x2A, 0x1D, 0xAB, 0x1A, 0x38, 0x10, 0x9B, 0x0E, 0xB3, 0x06, 0xA8, 0x03, 0x3F, 0x03, 0xEE, 0xFF, 0x0D, 0x02, 0xF7, 0x01, 0xFA, 0x00, + 0xB6, 0x01, 0x7B, 0xFC, 0x62, 0xFA, 0xDC, 0xF6, 0xCC, 0xED, 0xB2, 0xE7, 0x4A, 0xE1, 0x79, 0xDC, 0xC4, 0xD8, 0x73, 0xDA, 0x41, 0xD9, 0xDB, 0xDF, 0x22, 0xE2, 0xBB, 0xED, 0x3C, 0xF5, 0x20, 0x02, 0x78, 0x0C, 0x6F, 0x15, 0x57, 0x1F, 0xFA, 0x23, + 0x0E, 0x26, 0x7B, 0x26, 0x9D, 0x22, 0x23, 0x1E, 0xD1, 0x18, 0x96, 0x11, 0x13, 0x0D, 0x41, 0x06, 0xE5, 0x03, 0xFE, 0x01, 0xD2, 0x01, 0x7C, 0x02, 0x29, 0x05, 0xAB, 0x05, 0xB2, 0x05, 0x8D, 0x03, 0x29, 0x00, 0xE2, 0xFA, 0x97, 0xF4, 0x21, 0xEE, + 0x2A, 0xE2, 0xED, 0xD9, 0x79, 0xD8, 0x52, 0xCD, 0xC6, 0xD4, 0x06, 0xD2, 0x43, 0xDA, 0x76, 0xE3, 0xF3, 0xEA, 0xDC, 0xFB, 0x79, 0x05, 0xE8, 0x12, 0x08, 0x1F, 0xF2, 0x25, 0xAC, 0x2A, 0x56, 0x2C, 0x81, 0x27, 0xCA, 0x23, 0xDB, 0x1B, 0x8C, 0x17, + 0xAF, 0x0D, 0xA7, 0x09, 0xEC, 0x03, 0x02, 0x02, 0xE1, 0x00, 0xAB, 0x03, 0x61, 0x04, 0xFA, 0x09, 0xF2, 0x09, 0x4E, 0x0F, 0xBA, 0x09, 0xE4, 0x07, 0x72, 0x03, 0x8D, 0xF6, 0x6E, 0xF2, 0x39, 0xE2, 0x57, 0xD8, 0xA5, 0xCD, 0x55, 0xCD, 0x7A, 0xC6, + 0x27, 0xD0, 0x2D, 0xD1, 0x86, 0xDE, 0xD9, 0xE8, 0xCC, 0xF6, 0x62, 0x07, 0x0C, 0x13, 0x45, 0x21, 0xE5, 0x28, 0x57, 0x2E, 0x1B, 0x2E, 0x9D, 0x2A, 0x80, 0x22, 0xE3, 0x1C, 0x2D, 0x11, 0xB7, 0x0C, 0x58, 0x02, 0x0E, 0x00, 0x0F, 0xFD, 0xB5, 0xFE, + 0x1E, 0x01, 0x61, 0x08, 0x67, 0x0A, + 0x38, 0x13, 0x85, 0x12, 0x16, 0x15, 0x7D, 0x0F, 0xA3, 0x09, 0xF0, 0x01, 0x0F, 0xF5, 0x9C, 0xE9, 0x81, 0xDC, 0x65, 0xCC, 0x10, 0xC6, 0xDE, 0xC3, 0x83, 0xBE, 0x8E, 0xCE, 0x0B, 0xCE, 0x9D, 0xE3, 0x41, 0xED, 0x75, 0xFE, 0x6F, 0x0F, 0x73, 0x1B, + 0xBE, 0x27, 0x95, 0x31, 0x3E, 0x30, 0x4E, 0x32, 0x01, 0x2B, 0xE8, 0x1F, 0x1E, 0x1B, 0x5D, 0x0B, 0xBA, 0x06, 0x2D, 0xFE, 0xD7, 0xFA, 0xE3, 0xFA, 0x0B, 0xFF, 0x1B, 0x03, 0x4F, 0x0C, 0x11, 0x13, 0xDD, 0x16, 0x59, 0x1B, 0x3E, 0x18, 0xC3, 0x12, + 0x17, 0x0B, 0x64, 0xFE, 0x9D, 0xF3, 0xD7, 0xE4, 0xA1, 0xD8, 0xBE, 0xC9, 0x48, 0xBE, 0x93, 0xB9, 0x20, 0xBD, 0xAD, 0xC0, 0xE5, 0xD2, 0x18, 0xDD, 0xDC, 0xF1, 0x4E, 0x03, 0x37, 0x12, 0xC5, 0x23, 0x1C, 0x2A, 0x99, 0x33, 0x6A, 0x33, 0xB3, 0x2E, + 0xC8, 0x28, 0x6E, 0x1E, 0x18, 0x10, 0x71, 0x0C, 0x3D, 0xFC, 0xED, 0xFC, 0x56, 0xF8, 0xFE, 0xF7, 0x65, 0x01, 0x7D, 0x04, 0x06, 0x11, 0x3E, 0x19, 0x64, 0x1D, 0x79, 0x24, 0x9C, 0x1F, 0x42, 0x1A, 0x8F, 0x13, 0x4A, 0x03, 0xD8, 0xF9, 0x7E, 0xE8, + 0xE4, 0xDD, 0x9B, 0xCF, 0xED, 0xC3, 0x1B, 0xBA, 0x3F, 0xB4, 0xB5, 0xBF, 0x5B, 0xC2, 0x45, 0xD9, 0xFD, 0xE6, 0xC9, 0xFA, 0x48, 0x0E, 0xBE, 0x1A, 0x87, 0x28, 0xE5, 0x2D, 0xCA, 0x31, 0x31, 0x30, 0x19, 0x2A, 0x86, 0x20, 0x9E, 0x18, 0xF8, 0x09, + 0x5E, 0x06, 0x1E, 0xFB, 0x88, 0xF9, 0xDB, 0xFA, 0x10, 0xF9, 0x65, 0x04, 0x00, 0x09, 0xEE, 0x12, 0xDD, 0x1D, 0xC7, 0x20, 0xF5, 0x24, 0x40, 0x22, 0x53, 0x18, 0x9D, 0x10, 0xCA, 0x01, 0x4E, 0xF1, 0x48, 0xE8, 0x4A, 0xD6, 0xC4, 0xD1, 0x96, 0xC1, + 0xE1, 0xBD, 0x32, 0xB4, 0x77, 0xC0, 0xE0, 0xC6, 0x5B, 0xD7, 0xA7, 0xED, 0xF0, 0xFA, 0x7B, 0x12, 0x36, 0x1A, 0xA8, 0x29, 0x02, 0x2A, 0xAF, 0x2F, 0x1B, 0x28, 0xCE, 0x26, 0x08, 0x1B, 0xFC, 0x13, 0x57, 0x09, 0xD2, 0x01, 0xEC, 0xFD, 0x45, 0xFC, + 0xC1, 0xFB, 0x6E, 0x02, 0xD8, 0x03, 0x08, 0x0D, 0x49, 0x18, 0x61, 0x17, 0x8D, 0x25, 0x48, 0x21, 0x6D, 0x1E, 0x85, 0x1A, 0x54, 0x0D, 0xBB, 0x00, 0xDB, 0xF6, 0x97, 0xE3, 0x49, 0xDF, 0x37, 0xD2, 0x0B, 0xCC, 0x7A, 0xC9, 0xF9, 0xB9, 0xBF, 0xC1, + 0x83, 0xC7, 0x1C, 0xCF, 0xBD, 0xE4, 0xAC, 0xF4, 0x21, 0x01, 0x6E, 0x17, 0x8B, 0x1A, 0xE2, 0x24, 0x3C, 0x28, 0xE2, 0x22, 0x76, 0x26, 0xCA, 0x19, 0xF5, 0x15, 0xEA, 0x0F, 0x6C, 0x05, 0x63, 0x05, 0x99, 0x01, 0x73, 0xFF, 0x3D, 0x09, 0x56, 0x04, + 0x0F, 0x10, 0xDD, 0x13, 0xCF, 0x15, 0xB3, 0x21, 0x1E, 0x1D, 0x96, 0x1F, 0xE7, 0x1A, 0x96, 0x10, 0x3A, 0x09, 0x39, 0xFD, 0xCB, 0xEF, 0xC9, 0xE6, 0x29, 0xDA, 0xA3, 0xD9, 0xA7, 0xCE, 0x7B, 0xCD, 0x98, 0xC4, 0x55, 0xBF, 0x3D, 0xCC, 0xFA, 0xD1, + 0x7F, 0xDF, 0x4F, 0xF6, 0x6D, 0xFE, 0x68, 0x12, 0x67, 0x1C, 0xFA, 0x1D, 0x38, 0x27, 0x9D, 0x21, 0x50, 0x1E, 0xFD, 0x1B, 0x22, 0x11, 0xFB, 0x0C, 0xFF, 0x09, 0xA4, 0x01, 0x99, 0x09, 0x59, 0x02, 0xBB, 0x09, 0x9E, 0x0D, 0xD7, 0x0D, 0xFD, 0x15, + 0xBF, 0x1A, 0x01, 0x19, 0x0C, 0x21, 0x13, 0x1B, 0x1B, 0x16, 0xA5, 0x12, 0xE1, 0x03, 0xE4, 0xFC, 0xC0, 0xF1, 0xE9, 0xE4, 0x66, 0xE3, 0xAE, 0xD7, 0x5F, 0xD8, 0x8B, 0xD3, 0x84, 0xCC, 0x36, 0xC5, 0x3A, 0xCB, 0x91, 0xD2, 0xD5, 0xDC, 0xE2, 0xF1, + 0xDF, 0xF8, 0x07, 0x0F, 0x8F, 0x12, 0x00, 0x1E, 0xAC, 0x1E, 0x00, 0x20, 0xE9, 0x1B, 0x3F, 0x19, 0xD7, 0x10, 0x21, 0x10, 0x14, 0x08, 0x73, 0x06, 0x00, 0x08, 0x8D, 0x06, 0xBE, 0x0C, 0xC9, 0x0C, 0x8A, 0x10, 0xDA, 0x16, 0x65, 0x17, 0xAC, 0x19, + 0x14, 0x1F, 0x3D, 0x14, 0x14, 0x1A, 0xDD, 0x0B, 0x9A, 0x07, 0xF8, 0xFD, 0x2D, 0xF3, 0xAD, 0xEC, 0x94, 0xE4, 0x0D, 0xE0, 0xDE, 0xDC, 0x67, 0xDC, 0x08, 0xD3, 0xBC, 0xD0, 0x0B, 0xC4, 0x9F, 0xD2, 0xA5, 0xD1, 0x33, 0xE5, 0x71, 0xF6, 0xC0, 0xFE, + 0x81, 0x14, 0x72, 0x17, 0xD8, 0x1D, 0xD2, 0x20, 0x8C, 0x1C, 0x95, 0x17, 0x2E, 0x16, 0x1E, 0x0A, + 0x57, 0x0E, 0x3F, 0x05, 0x23, 0x05, 0xD1, 0x0B, 0xA4, 0x07, 0x8D, 0x11, 0x5D, 0x14, 0xB4, 0x14, 0xB8, 0x1A, 0xF8, 0x19, 0xA1, 0x18, 0xDB, 0x18, 0xDE, 0x13, 0x4D, 0x0E, 0x53, 0x08, 0x80, 0xFF, 0xF2, 0xFB, 0x49, 0xF0, 0xCC, 0xEC, 0x03, 0xE4, + 0xAC, 0xE5, 0xB3, 0xE3, 0x73, 0xDE, 0x01, 0xE1, 0x5E, 0xCD, 0x5F, 0xCA, 0x6A, 0xD0, 0x00, 0xD0, 0xE6, 0xDE, 0xE8, 0xF4, 0x3A, 0xFA, 0x73, 0x12, 0xA1, 0x18, 0xD3, 0x1B, 0xF3, 0x1E, 0x80, 0x1D, 0x44, 0x15, 0xCC, 0x13, 0x16, 0x0E, 0xD7, 0x06, + 0xC0, 0x09, 0xB7, 0x02, 0x3F, 0x0C, 0x19, 0x0C, 0xA1, 0x0F, 0xD8, 0x14, 0x64, 0x17, 0x05, 0x15, 0x89, 0x1E, 0xB3, 0x13, 0x6C, 0x17, 0x16, 0x15, 0x8B, 0x09, 0x91, 0x0D, 0x15, 0x00, 0xC8, 0xFD, 0xA7, 0xF6, 0x47, 0xEF, 0x77, 0xE6, 0x23, 0xE7, + 0x6F, 0xE3, 0xAD, 0xDF, 0x00, 0xDC, 0x37, 0xD4, 0x39, 0xC3, 0xAC, 0xCD, 0x58, 0xD1, 0xE0, 0xD9, 0xDA, 0xF7, 0x95, 0xFF, 0xE1, 0x11, 0x8D, 0x1C, 0xC6, 0x1E, 0xDF, 0x19, 0x3F, 0x1D, 0xD8, 0x0E, 0xB3, 0x0F, 0x50, 0x08, 0xD9, 0x04, 0x6C, 0x09, + 0x0D, 0x02, 0x6D, 0x0D, 0x44, 0x0F, 0x93, 0x14, 0x43, 0x1A, 0xFD, 0x19, 0xA8, 0x19, 0x57, 0x1C, 0x24, 0x11, 0x32, 0x16, 0x14, 0x0C, 0xAF, 0x08, 0x9F, 0x07, 0x1E, 0xFF, 0x7E, 0xFC, 0x81, 0xFA, 0x11, 0xF0, 0x9E, 0xEE, 0x82, 0xE9, 0xE0, 0xE4, + 0x29, 0xE8, 0x6D, 0xE0, 0x2D, 0xDC, 0x48, 0xCF, 0x78, 0xC9, 0x57, 0xCF, 0x07, 0xD7, 0xAE, 0xE7, 0x0D, 0xFD, 0x9E, 0x08, 0x17, 0x17, 0xB0, 0x1A, 0x54, 0x1E, 0x17, 0x19, 0x0B, 0x15, 0xF3, 0x0D, 0xD9, 0x09, 0xFD, 0x06, 0x15, 0x0B, 0x2E, 0x08, + 0x71, 0x0E, 0x93, 0x11, 0x1A, 0x14, 0x97, 0x1A, 0xB0, 0x17, 0x14, 0x14, 0x5A, 0x14, 0x05, 0x0F, 0x32, 0x0B, 0xCB, 0x09, 0xE8, 0x04, 0x0B, 0x06, 0xA8, 0x01, 0x66, 0x00, 0xCF, 0xFE, 0xCA, 0xF7, 0x42, 0xF8, 0x75, 0xEA, 0xF9, 0xEC, 0x8F, 0xE8, + 0x72, 0xE1, 0x79, 0xE5, 0x63, 0xD6, 0x1D, 0xCE, 0xF8, 0xC8, 0x4F, 0xD1, 0x4B, 0xDA, 0x34, 0xF0, 0xFE, 0x01, 0xE5, 0x14, 0x58, 0x19, 0x7B, 0x22, 0xB1, 0x1A, 0xF7, 0x13, 0x71, 0x0D, 0x87, 0x06, 0x06, 0x05, 0xA1, 0x08, 0x54, 0x0B, 0x39, 0x11, + 0xC9, 0x14, 0x78, 0x15, 0x6E, 0x1A, 0xB2, 0x14, 0x88, 0x16, 0xEB, 0x0E, 0x87, 0x10, 0x50, 0x08, 0x4C, 0x09, 0x59, 0x02, 0xB1, 0x04, 0x05, 0x03, 0xC3, 0x01, 0x34, 0x02, 0x4D, 0xFC, 0x46, 0xFD, 0x92, 0xF4, 0x2D, 0xF1, 0x4D, 0xEB, 0xDC, 0xE7, + 0x3E, 0xE3, 0xFF, 0xE7, 0x7F, 0xD6, 0x24, 0xD8, 0xD6, 0xCC, 0xD9, 0xD2, 0xEA, 0xE5, 0x66, 0xEE, 0xA3, 0x04, 0x2A, 0x13, 0xCA, 0x16, 0xE6, 0x19, 0xBC, 0x1A, 0xDB, 0x0D, 0x5F, 0x0E, 0xFB, 0x04, 0x64, 0x06, 0x20, 0x06, 0xAE, 0x0E, 0x5C, 0x0F, + 0x87, 0x15, 0x3F, 0x19, 0xC9, 0x15, 0x7D, 0x18, 0x7D, 0x13, 0x5D, 0x0C, 0x68, 0x0B, 0xAC, 0x07, 0x3E, 0x04, 0xE0, 0x07, 0x39, 0x04, 0x4A, 0x09, 0x50, 0x06, 0xF4, 0x03, 0xA0, 0x03, 0x1F, 0xFE, 0x3B, 0xF9, 0x8B, 0xF1, 0xC7, 0xEC, 0x61, 0xE7, + 0xC8, 0xE4, 0x72, 0xE5, 0x10, 0xDC, 0x0E, 0xDA, 0x24, 0xCF, 0x77, 0xD1, 0x74, 0xE1, 0xAB, 0xE8, 0xBE, 0x02, 0x85, 0x0E, 0x05, 0x17, 0x79, 0x19, 0xC3, 0x14, 0x84, 0x0E, 0xD5, 0x06, 0xD9, 0x03, 0x40, 0x03, 0xD8, 0x06, 0xE0, 0x0F, 0x06, 0x16, + 0xDA, 0x15, 0x4E, 0x1B, 0x33, 0x15, 0x3A, 0x10, 0x91, 0x0E, 0x57, 0x0B, 0xAF, 0x05, 0x41, 0x06, 0x45, 0x09, 0xF2, 0x05, 0xA6, 0x06, 0x41, 0x0A, + 0xEE, 0x07, 0x41, 0x02, 0xC8, 0x04, 0xC2, 0xFF, 0x04, 0xF9, 0x5E, 0xF5, 0x0B, 0xF1, 0x29, 0xE8, 0xE7, 0xE6, 0xF3, 0xE5, 0x5D, 0xE0, 0x73, 0xDD, 0x84, 0xDA, 0x7B, 0xD0, 0xB4, 0xDD, 0x1C, 0xEA, 0x5E, 0xF6, 0xBF, 0x0C, 0x85, 0x14, 0xBC, 0x17, + 0xCD, 0x13, 0xB7, 0x0E, 0xBC, 0x03, 0x9E, 0x00, 0x8E, 0x03, 0xAD, 0x05, 0xF3, 0x0C, 0x68, 0x19, 0x27, 0x14, 0xA3, 0x1A, 0xD0, 0x16, 0xC0, 0x0F, 0xBA, 0x0C, 0xB2, 0x0B, 0x07, 0x06, 0xE1, 0x03, 0xD7, 0x0A, + 0xE4, 0x08, 0x35, 0x07, 0x7F, 0x0A, + 0x8D, 0x08, 0x23, 0x02, 0x75, 0x04, 0x73, 0xFD, 0x03, 0xFC, 0x41, 0xF7, 0x56, 0xF6, 0x0C, 0xEB, 0x41, 0xE8, 0x93, 0xE7, 0x1D, 0xDE, 0x5E, 0xE1, 0xDF, 0xDC, 0x36, 0xD1, 0xA7, 0xDB, 0x22, 0xE9, 0x58, 0xF1, 0x4A, 0x08, 0x9F, 0x13, 0x5A, 0x16, + 0x78, 0x14, 0x9F, 0x0F, 0xCC, 0x04, 0xEC, 0xFF, 0x95, 0x03, 0xE5, 0x03, 0x54, 0x0D, 0x0D, 0x18, 0x29, 0x18, 0x3F, 0x1B, 0xCD, 0x18, 0x33, 0x11, 0x57, 0x0D, 0xCC, 0x09, 0x51, 0x05, 0x17, 0x03, 0xD8, 0x06, 0xAD, 0x06, 0x00, 0x07, 0x3A, 0x0A, + 0x2D, 0x0A, + 0x3A, 0x06, 0xAF, 0x06, 0xDF, 0x01, 0xD6, 0xF9, 0x6A, 0xFA, 0x6C, 0xF4, 0x5B, 0xEC, 0x18, 0xEE, 0x1A, 0xEC, 0xDC, 0xE3, 0xF4, 0xE7, 0x48, 0xE2, 0x98, 0xDB, 0xED, 0xD8, 0x04, 0xE3, 0x6A, 0xEF, 0xEF, 0xF7, 0x19, 0x0D, 0xB3, 0x14, 0xC9, 0x13, + 0x8D, 0x12, 0x58, 0x0D, 0xA3, 0x02, 0xD0, 0x00, 0x5C, 0x00, 0x18, 0x05, 0xBC, 0x0C, 0x7A, 0x14, 0x41, 0x18, 0x49, 0x16, 0x9B, 0x15, 0x60, 0x11, 0x02, 0x0A, + 0x0B, 0x08, 0x11, 0x05, 0x1B, 0x03, 0x71, 0x08, 0xCE, 0x06, 0xB6, 0x08, 0x45, 0x07, 0xA5, 0x05, 0xDC, 0x04, 0xFF, 0x00, 0x38, 0xFE, 0x66, 0xFE, 0xC3, 0xF7, 0xFD, 0xF5, 0x54, 0xEE, 0x51, 0xEB, 0xDC, 0xE5, 0xAF, 0xE5, 0x16, 0xE4, 0x32, 0xE1, + 0x1E, 0xDF, 0x0D, 0xDC, 0xD1, 0xEA, 0x07, 0xF3, 0xB1, 0x01, 0x5D, 0x0F, 0x2A, 0x18, 0x4F, 0x11, 0xF7, 0x0F, 0x3F, 0x09, 0x1F, 0x01, 0xCC, 0xFC, 0xA8, 0x05, 0xCF, 0x0A, + 0xF3, 0x11, 0x74, 0x1A, 0x9C, 0x19, 0x14, 0x15, 0x6F, 0x0F, 0x63, 0x0D, 0x8D, 0x03, 0x9B, 0x04, 0x7E, 0x04, 0x6E, 0x04, 0x20, 0x08, 0xCA, 0x0D, 0x2E, 0x08, 0xAA, 0x06, 0xAF, 0x07, 0x14, 0xFE, 0x98, 0xFC, 0x96, 0xFB, 0x89, 0xF8, 0x55, 0xF7, + 0xD8, 0xF4, 0x4A, 0xF1, 0x8C, 0xEE, 0x89, 0xE7, 0x12, 0xE8, 0x69, 0xE2, 0x8D, 0xE0, 0x03, 0xDF, 0xC2, 0xDB, 0x8D, 0xF1, 0x2A, 0xF8, 0x02, 0x05, 0x45, 0x13, 0xA3, 0x14, 0x51, 0x0E, 0x02, 0x0F, 0x44, 0x04, 0x8E, 0x00, 0xD4, 0x01, 0x08, 0x09, + 0x90, 0x0D, 0xAD, 0x11, 0xDA, 0x1A, 0x14, 0x16, 0xDC, 0x11, 0xCF, 0x0E, 0xA4, 0x0C, 0x0F, 0x06, 0xC5, 0x09, 0x09, 0x06, 0x12, 0x09, 0x87, 0x06, 0xBB, 0x07, 0xF2, 0x07, 0x44, 0x05, 0x15, 0x04, 0x64, 0x00, 0x47, 0xFC, 0xFD, 0xF8, 0x24, 0xF9, + 0x5E, 0xF2, 0xA8, 0xED, 0x84, 0xEC, 0xD0, 0xEB, 0x9A, 0xE4, 0x0D, 0xE8, 0x3E, 0xE4, 0xCB, 0xDB, 0x37, 0xDB, 0xFA, 0xE9, 0x20, 0xF4, 0x57, 0xFD, 0x63, 0x10, 0x08, 0x13, 0xF3, 0x12, 0x38, 0x0B, 0x56, 0x0A, + 0x25, 0xFF, 0x2D, 0x01, 0x91, 0x08, 0x20, 0x0A, + 0x9C, 0x11, 0xC1, 0x19, 0xAA, 0x18, 0x5D, 0x14, 0x64, 0x13, 0xD0, 0x0B, 0xF9, 0x06, 0xD5, 0x05, 0xE7, 0x07, 0x96, 0x04, 0x6D, 0x09, 0x93, 0x0A, + 0xD7, 0x07, 0x11, 0x08, 0xB7, 0x02, 0x56, 0xFC, 0x65, 0xFA, 0xB5, 0xF6, 0x65, 0xF7, 0xF3, 0xF6, 0x5F, 0xF4, 0x56, 0xF4, 0x13, 0xEE, 0xEF, 0xE5, 0x66, 0xE9, 0x2E, 0xE4, 0x06, 0xE0, 0x99, 0xE0, 0x13, 0xEA, 0x8B, 0xF2, 0x72, 0xF6, 0xCB, 0x02, + 0xE3, 0x10, 0x7F, 0x0F, 0x8D, 0x0D, 0x91, 0x10, 0xBA, 0x06, 0x7B, 0x03, 0xFD, 0x03, 0xDF, 0x06, 0x9D, 0x09, 0x26, 0x10, 0xED, 0x16, 0x96, 0x17, 0x26, 0x13, 0x57, 0x12, 0xB9, 0x09, 0x24, 0x06, 0x60, 0x03, 0x35, 0x06, 0x0A, + 0x06, 0xCA, 0x06, 0x97, 0x09, 0xF0, 0x06, 0xF2, 0x01, 0x87, 0xFF, 0xD0, 0xFB, 0xB6, 0xF6, 0xD2, 0xF7, 0x1B, 0xF8, 0x03, 0xF3, 0x88, 0xF1, 0xF7, 0xF0, 0x45, 0xEC, 0xBF, 0xE9, 0x0B, 0xE9, 0xC7, 0xE6, 0x44, 0xDF, 0xF8, 0xE2, 0x78, 0xEA, 0x78, + 0xF8, 0x93, 0xFD, 0x0A, + 0x0C, 0x3C, 0x13, 0x35, 0x11, 0xF4, 0x09, 0xAA, 0x07, 0x49, 0x03, 0xF7, 0xFF, 0x46, 0x08, 0x77, 0x0B, 0x62, 0x11, 0x67, 0x15, 0x8F, 0x18, 0x49, 0x0F, 0x91, 0x0E, 0xCE, 0x09, 0xDB, 0x06, 0xA0, 0x06, 0x6C, 0x09, 0xA4, 0x09, 0xCF, 0x07, 0xF5, + 0x09, 0x0C, 0x05, 0x0B, 0x02, 0x77, 0xFE, 0x49, 0xFC, 0xE4, 0xF7, 0xAB, 0xFA, 0xD0, 0xFB, 0x20, 0xF8, 0x00, 0xF5, 0x21, 0xF4, 0x52, 0xEE, 0x8B, 0xEC, 0x8F, 0xEC, 0x26, 0xE7, 0x1B, 0xE8, 0xC0, 0xE5, 0xE4, 0xE9, 0x2F, 0xF4, 0x8D, 0xFC, 0x57, + 0xFF, 0xDC, 0x0B, 0x81, 0x0D, 0xBA, 0x0B, 0x1B, 0x0A, + 0x75, 0x09, 0xAC, 0x05, 0x08, 0x04, 0xD7, 0x0A, + 0xFB, 0x0B, 0xA9, 0x0C, 0x9D, 0x0E, 0xBB, 0x14, 0x45, 0x0D, 0x71, 0x0E, 0xB4, 0x0E, 0x36, 0x0B, 0x2D, 0x05, 0x66, 0x07, 0x16, 0x08, 0x58, 0x03, 0x79, 0x06, 0x42, 0x05, 0xD6, 0x01, 0xC4, 0xFD, 0x7E, 0xFC, 0xA7, 0xF9, 0x91, 0xF5, 0x55, 0xF4, + 0x9D, 0xF6, 0xDF, 0xF2, 0x69, 0xF0, 0xB4, 0xF2, 0xF4, 0xF1, 0x40, 0xEE, 0x7E, 0xED, 0x22, 0xEE, 0x43, 0xE8, 0x21, 0xE6, 0xF4, 0xF1, 0x70, 0xF7, 0xA5, 0xFB, 0xDA, 0x09, 0xF2, 0x0C, 0xE3, 0x0A, + 0x24, 0x07, 0x10, 0x09, 0xC4, 0x05, 0x14, 0x04, 0x0D, 0x09, 0x38, 0x0A, + 0x92, 0x0E, 0x95, 0x0F, 0xA4, 0x10, 0x68, 0x0E, 0x86, 0x0D, 0xF0, 0x0D, 0xBC, 0x0D, 0xD9, 0x0A, + 0x68, 0x0A, + 0x31, 0x08, 0x29, 0x06, 0x94, 0x02, 0xCC, 0x00, 0x77, 0x00, 0xF7, 0xFB, 0x77, 0xFC, 0x9F, 0xFD, 0x6E, 0xF8, 0x94, 0xF6, 0x3A, 0xF7, 0x0D, 0xF1, 0xC7, 0xEC, 0x68, 0xED, 0xFF, 0xEC, 0x2A, 0xED, 0xCA, 0xED, 0xA2, 0xED, 0x75, 0xEB, 0x54, 0xF3, + 0x41, 0xF6, 0x7E, 0xF5, 0x92, 0x02, 0x31, 0x05, 0x33, 0x06, 0xCA, 0x08, 0xA8, 0x0B, 0xE3, 0x07, 0xC6, 0x06, 0xE1, 0x09, 0xE1, 0x0A, + 0x58, 0x0C, 0x3F, 0x11, 0xC1, 0x13, 0x94, 0x10, 0x32, 0x12, 0x4A, 0x12, 0x47, 0x0D, 0x11, 0x0A, + 0x41, 0x09, 0xC9, 0x05, 0x9C, 0x04, 0x46, 0x05, 0x62, 0x04, 0xEB, 0xFF, 0xB9, 0xFD, 0xFF, 0xFB, 0x3B, 0xF7, 0xB0, 0xF4, 0xFB, 0xF2, 0x71, 0xF1, 0xF8, 0xF0, 0x35, 0xF0, 0xF3, 0xF0, 0xB2, 0xEE, 0x7D, 0xEB, 0x75, 0xEE, 0xB7, 0xE9, 0x8E, 0xE8, + 0x5D, 0xF2, 0xD7, 0xF6, 0xAC, 0xF9, 0x4C, 0x03, 0x70, 0x09, 0x0C, 0x07, 0xFD, 0x04, 0x62, 0x09, 0xFD, 0x08, 0x13, 0x07, 0x38, 0x0C, 0xE8, 0x0F, 0xB8, 0x10, 0x41, 0x10, 0x0C, 0x12, 0xA9, 0x0F, 0xD8, 0x0D, 0xE2, 0x0D, 0x96, 0x0E, 0x2B, 0x0D, + 0x71, 0x0B, 0x41, 0x09, 0x64, 0x06, 0xD7, 0x02, 0x49, 0x00, 0x66, 0xFE, 0x33, 0xFC, 0x6F, 0xFA, 0xE0, 0xF8, 0x4A, 0xF5, 0x96, 0xF2, 0x42, 0xF3, 0xE7, 0xF1, 0x15, 0xF0, 0x50, 0xF0, 0x0C, 0xEE, 0x25, 0xED, 0x3C, 0xEE, 0x6D, 0xEB, 0xAB, 0xEC, + 0x3F, 0xF4, 0x52, 0xF8, 0x44, 0xFB, 0x4B, 0x02, 0x3D, 0x06, 0xFC, 0x07, 0x71, 0x07, 0xF8, 0x0B, 0xAF, 0x0A, + 0x94, 0x09, 0xE5, 0x0B, 0x69, 0x0F, 0x62, 0x0D, 0xDE, 0x0E, 0x28, 0x12, 0xA4, 0x0E, 0xC0, 0x0D, 0xD3, 0x0F, 0x7E, 0x0E, 0xF3, 0x08, 0x2A, 0x0A, + 0x17, 0x09, 0x30, 0x06, 0xA4, 0x02, 0x1D, 0x02, 0x70, 0xFC, 0x2F, 0xF7, 0xE4, 0xF5, 0x78, 0xF4, 0x84, 0xF1, 0xCD, 0xF1, 0xFF, 0xF2, 0x34, 0xF3, 0xF6, 0xF2, 0x78, 0xF0, 0x09, 0xEE, 0xF8, 0xEE, 0xD9, 0xEB, 0x0B, 0xEA, 0x9B, 0xF5, 0x7A, 0xF7, + 0x92, 0xF8, 0xEB, 0x00, 0x97, 0x06, 0x0C, 0x05, 0xE4, 0x06, 0x43, 0x0B, 0xC2, 0x09, 0x1A, 0x07, 0x04, 0x0B, 0xB2, 0x0D, 0x38, 0x0C, 0x6E, 0x0E, 0xAD, 0x11, 0x79, 0x0D, 0x95, 0x0D, 0x66, 0x11, 0x87, 0x0E, 0xAC, 0x0B, 0x34, 0x0B, 0x8D, 0x0A, + 0xEF, 0x04, 0x33, 0x02, 0x01, 0xFF, 0x48, 0xFA, 0xEF, 0xF7, 0x8D, 0xF7, 0x11, 0xF6, 0x73, 0xF4, 0xBC, 0xF3, 0xBA, 0xF2, 0x2D, 0xF3, 0xEA, 0xF0, 0xD8, 0xEE, 0xCD, 0xEE, 0x80, 0xEC, 0xA5, 0xED, 0xFF, 0xF1, 0x1B, 0xF5, 0xA8, 0xF6, 0xE1, 0xFC, + 0xE6, 0x02, 0xE1, 0x04, 0xA2, 0x06, 0xC9, 0x0B, 0x57, 0x0C, 0xE1, 0x09, 0xE5, 0x0B, 0xF8, 0x0B, 0x82, 0x0A, + 0x4E, 0x0B, 0x6B, 0x0D, 0x67, 0x0E, 0x90, 0x0F, 0xC1, 0x10, 0x37, 0x0F, 0x86, 0x0C, 0x91, 0x09, 0x10, 0x06, 0xF6, 0x02, 0x06, 0x00, 0xB5, 0xFD, 0xA6, 0xFA, 0x1A, 0xF9, 0xBE, 0xF7, 0x08, 0xF5, 0x72, 0xF2, 0xD1, 0xF2, 0x9D, 0xF1, 0x24, 0xF1, + 0x52, 0xF1, 0x32, 0xF1, 0xB7, 0xF0, 0x99, 0xF0, 0x01, 0xF3, 0x6F, 0xF4, 0x62, 0xF7, 0xB4, 0xF9, 0x5F, 0xFF, 0x82, 0x02, 0x21, 0x04, 0x30, 0x05, 0x73, 0x08, 0xEE, 0x08, 0xA6, 0x08, 0xD9, 0x0B, 0x7E, 0x0D, 0xCC, 0x0D, 0xB5, 0x0C, 0x8F, 0x0E, + 0x4A, 0x0D, 0x76, 0x0D, 0xB4, 0x0C, 0xEE, 0x0C, 0xFF, 0x0A, + 0x90, 0x08, 0x5D, 0x06, 0xFA, 0x03, 0x2C, 0x00, 0xE5, 0xFB, 0xCA, 0xF9, 0xE8, 0xF6, 0x0C, 0xF5, 0x67, 0xF4, 0x51, 0xF4, 0xDA, 0xF1, 0x9A, 0xF2, 0x78, 0xF2, 0x19, 0xF0, 0xBD, 0xEF, 0x3E, 0xF0, 0xC6, 0xF0, 0x90, 0xF3, 0xB0, 0xF7, 0x41, 0xFA, + 0x1B, 0xFD, 0xF7, 0x01, 0xF3, 0x04, 0x58, 0x05, 0x23, 0x08, 0x93, 0x0A, + 0x58, 0x0A, + 0xA0, 0x0A, + 0x31, 0x0C, 0x9C, 0x0C, 0xC6, 0x0C, 0x6B, 0x0D, 0x65, 0x0E, 0x72, 0x0E, 0xFA, 0x0D, 0x6F, 0x0D, 0x9E, 0x0B, 0x05, 0x08, 0xB4, 0x05, 0x27, 0x04, 0x1D, 0x00, 0x0C, 0xFD, 0xFC, 0xFA, 0xF6, 0xF8, 0xF0, 0xF5, 0x20, 0xF4, 0xD8, 0xF2, 0x83, 0xF2, + 0xE7, 0xF1, 0xE0, 0xF0, 0x8F, 0xEF, 0x2C, 0xEF, 0x20, 0xEF, 0xED, 0xF0, 0xD2, 0xF4, 0xBE, 0xF7, 0x6F, 0xFB, 0x75, 0xFE, 0xE1, 0x00, 0x19, 0x02, 0x55, 0x04, 0x15, 0x07, 0x28, 0x09, 0x0E, 0x09, 0x7F, 0x0A, + 0x27, 0x0C, 0xDA, 0x0C, 0x7A, 0x0C, 0xD6, 0x0C, 0x08, 0x0E, 0xD1, 0x0D, 0x70, 0x0D, 0x7E, 0x0D, 0x3E, 0x0C, 0xB6, 0x08, 0xA0, 0x06, 0x60, 0x04, 0xDC, 0x00, 0xBC, 0xFD, 0x9B, 0xFC, 0x71, 0xFA, 0x11, 0xF8, 0xB4, 0xF6, 0xBB, 0xF5, 0x25, 0xF4, + 0xB7, 0xF2, 0xDE, 0xF2, 0x34, 0xF2, 0x31, 0xF2, 0xF5, 0xF2, 0x2A, 0xF4, 0x91, 0xF5, 0x03, 0xF8, 0x59, 0xFA, 0x72, 0xFC, 0x1A, 0xFF, 0x4C, 0x01, 0xD5, 0x02, 0x46, 0x04, 0xCF, 0x06, 0x2A, 0x08, 0xE2, 0x08, 0xC0, 0x09, 0x81, 0x0B, 0xA2, 0x0B, + 0x61, 0x0B, 0x84, 0x0C, 0xF5, 0x0C, 0xB9, 0x0B, 0x18, 0x0B, 0xC0, 0x0A, + 0x27, 0x08, 0x2E, 0x05, 0x3B, 0x03, 0xFE, 0x00, 0x8D, 0xFD, 0xE7, 0xFB, 0x91, 0xFA, 0x43, 0xF8, 0x01, 0xF7, 0xCC, 0xF6, 0xED, 0xF4, 0xAB, 0xF3, 0x97, 0xF3, 0xED, 0xF1, 0xDA, 0xF1, 0xFB, 0xF4, 0x0B, 0xF6, 0x65, 0xF6, 0x00, 0xFA, 0x60, 0xFC, + 0xED, 0xFC, 0x65, 0xFE, 0x88, 0x01, 0xFA, 0x02, 0x82, 0x03, 0x87, 0x05, 0x86, 0x07, 0x99, 0x07, 0x4A, 0x08, 0x01, 0x0B, 0x28, 0x0B, 0x94, 0x0A, + 0xF5, 0x0A, + 0x23, 0x0B, 0x5C, 0x09, 0x2F, 0x08, 0x52, 0x07, 0xC9, 0x05, 0xF3, 0x03, 0xDA, 0x01, 0x4B, 0x00, 0x4E, 0xFE, 0xB3, 0xFC, 0x18, 0xFB, 0x6F, 0xFA, 0x1E, 0xF9, 0xF7, 0xF7, 0xED, 0xF6, 0x92, 0xF6, 0xD6, 0xF5, 0x98, 0xF5, 0x28, 0xF7, 0xAA, 0xF8, + 0xED, 0xF8, 0x9B, 0xFA, 0xF8, 0xFC, 0x35, 0xFD, 0x2A, 0xFE, 0x55, 0x00, 0x89, 0x01, 0xE7, 0x01, 0x86, 0x03, 0xD8, 0x04, 0xE8, 0x05, 0x7C, 0x06, 0xAB, 0x07, 0x1B, 0x08, 0x5E, 0x08, 0x8C, 0x08, 0x66, 0x08, 0x6A, 0x07, 0x3D, 0x06, 0x33, 0x05, + 0xBF, 0x03, 0x15, 0x02, 0x93, 0x00, 0x78, 0xFF, 0x32, 0xFE, 0x50, 0xFD, 0x82, 0xFC, 0xEB, 0xFB, 0x02, 0xFB, 0x5F, 0xFA, 0x9A, 0xF9, 0xAF, 0xF9, 0xB4, 0xF9, 0x06, 0xFA, 0x70, 0xFA, 0x37, 0xFB, 0xFD, 0xFB, 0xA0, 0xFC, 0x70, 0xFD, 0x55, 0xFE, + 0x4E, 0xFF, 0x31, 0x00, 0x51, 0x01, 0x17, 0x02, 0xAC, 0x02, 0x25, 0x03, 0x7F, 0x03, 0x94, 0x03, 0xEA, 0x03, 0xBA, 0x03, 0xA0, 0x03, 0xA1, 0x03, 0x7B, 0x03, 0xE9, 0x02, 0xC0, 0x02, 0x6E, 0x02, 0xAA, 0x01, 0xFA, 0x00, 0x65, 0x00, 0xC4, 0xFF, + 0x20, 0xFF, 0x69, 0xFE, 0xCC, 0xFD, 0xA8, 0xFD, 0x2C, 0xFD, 0x0B, 0xFD, 0x2B, 0xFD, 0x14, 0xFD, 0xD5, 0xFC, 0x50, 0xFD, 0xB5, 0xFD, 0xE8, 0xFD, 0xFC, 0xFD, 0x8F, 0xFE, 0x21, 0xFF, 0x28, 0xFF, 0xAB, 0xFF, 0x7E, 0x00, 0x0D, 0x01, 0x71, 0x01, + 0x47, 0x02, 0x9C, 0x02, 0xA1, 0x02, 0xAA, 0x02, 0x2F, 0x02, 0xC4, 0x01, 0xE0, 0x01, 0xF1, 0x01, 0x9D, 0x01, 0x9D, 0x01, 0x7D, 0x01, 0x08, 0x01, 0x88, 0x00, 0x38, 0x00, 0x9B, 0xFF, 0x1B, 0xFF, 0x03, 0xFF, 0xC7, 0xFE, 0x5F, 0xFE, 0x3C, 0xFE, + 0x83, 0xFE, 0x3F, 0xFE, 0x01, 0xFE, 0x44, 0xFE, 0x65, 0xFE, 0x33, 0xFE, 0x8C, 0xFE, 0x0D, 0xFF, 0x5E, 0xFF, 0x78, 0xFF, 0xE3, 0xFF, 0x2F, 0x00, 0x27, 0x00, 0x51, 0x00, 0xB9, 0x00, 0xE0, 0x00, 0x0C, 0x01, 0xAE, 0x01, 0xBE, 0x01, 0x8F, 0x01, + 0x98, 0x01, 0x92, 0x01, 0x21, 0x01, 0xD1, 0x00, 0xB1, 0x00, 0x5D, 0x00, 0x4B, 0x00, 0x4C, 0x00, 0x1D, 0x00, 0xE9, 0xFF, 0xC3, 0xFF, 0x8C, 0xFF, 0x54, 0xFF, 0x45, 0xFF, 0x0E, 0xFF, 0x05, 0xFF, 0x27, 0xFF, 0x1B, 0xFF, 0xFF, 0xFE, 0x21, 0xFF, + 0x4F, 0xFF, 0x45, 0xFF, 0x7A, 0xFF, 0xCB, 0xFF, 0xD4, 0xFF, 0xEB, 0xFF, 0x11, 0x00, 0x22, 0x00, 0x3B, 0x00, 0x5D, 0x00, 0x71, 0x00, 0x78, 0x00, 0x8D, 0x00, 0x9B, 0x00, 0xA4, 0x00, 0x80, 0x00, 0x71, 0x00, 0x6E, 0x00, 0x45, 0x00, 0x3D, 0x00, + 0x2E, 0x00, 0x15, 0x00, 0x12, 0x00, 0x11, 0x00, 0x00, 0x00, 0xE5, 0xFF, 0xE0, 0xFF, 0xD5, 0xFF, 0xAB, 0xFF, 0xA2, 0xFF, 0xB7, 0xFF, 0xB5, 0xFF, 0xA6, 0xFF, 0xBE, 0xFF, 0xE1, 0xFF, 0xCB, 0xFF, 0xC0, 0xFF, 0xDC, 0xFF, 0xD9, 0xFF, 0xDC, 0xFF, + 0xF6, 0xFF, 0xFC, 0xFF, 0x10, 0x00, 0x25, 0x00, 0x1F, 0x00, 0x1E, 0x00, 0x29, 0x00, 0x1D, 0x00, 0x12, 0x00, 0x21, 0x00, 0x2F, 0x00, 0x33, 0x00, 0x2A, 0x00, 0x2B, 0x00, 0x25, 0x00, 0x11, 0x00, 0x12, 0x00, 0x18, 0x00, 0xFE, 0xFF, 0xF6, 0xFF, + 0x00, 0x00, 0xFA, 0xFF, 0xF3, 0xFF, 0xF0, 0xFF, 0xE7, 0xFF, 0xE6, 0xFF, 0xE4, 0xFF, 0xE0, 0xFF, 0xE8, 0xFF, 0xF0, 0xFF, 0xEF, 0xFF, 0xF2, 0xFF, 0xF6, 0xFF, 0xEC, 0xFF, 0xEE, 0xFF, 0xED, 0xFF, 0xE6, 0xFF, 0xEC, 0xFF, 0xF6, 0xFF, 0xF7, 0xFF, + 0xFD, 0xFF, 0x02, 0x00, 0x03, 0x00, 0x03, 0x00, 0x01, 0x00, 0x03, 0x00, 0x06, 0x00, 0x07, 0x00, 0x09, 0x00, 0x08, 0x00, 0x09, 0x00, 0x06, 0x00, 0x03, 0x00, 0x09, 0x00, 0x05, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, + 0x01, 0x00, 0xFF, 0xFF, 0xFD, 0xFF, 0xFE, 0xFF, 0xFB, 0xFF, 0xF6, 0xFF, 0xF3, 0xFF, 0xF2, 0xFF, 0xF5, 0xFF, 0xF6, 0xFF, 0xF4, 0xFF, 0xF8, 0xFF, 0xFC, 0xFF, 0xF8, 0xFF, 0xFD, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, + 0x08, 0x00, 0x0F, 0x00, 0x0F, 0x00, 0x0F, 0x00, 0x09, 0x00, 0x0A, + 0x00, 0x08, 0x00, 0x03, 0x00, 0xFD, 0xFF, 0xFD, 0xFF, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0xFC, 0xFF, 0xFD, 0xFF, 0xFA, 0xFF, 0xFB, 0xFF, 0xFA, 0xFF, 0xF8, 0xFF, 0xF5, 0xFF, 0xF9, 0xFF, 0xF9, 0xFF, 0xF7, 0xFF, 0xFB, 0xFF, 0x00, 0x00, 0x02, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0x08, 0x00, 0x06, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0B, 0x00, 0x0B, 0x00, 0x0B, 0x00, 0x09, 0x00, 0x0B, 0x00, 0x0D, 0x00, 0x07, 0x00, 0x09, 0x00, 0x08, + 0x00, 0x08, 0x00, 0x04, 0x00, 0x05, 0x00, 0x02, 0x00, 0x00, 0x00, 0xFE, 0xFF, 0xFC, 0xFF, 0xFF, 0xFF, 0xFA, 0xFF, 0xFD, 0xFF, 0xF9, 0xFF, 0xFD, 0xFF, 0xFA, 0xFF, 0xF5, 0xFF, 0xF8, 0xFF, 0xF7, 0xFF, 0xF8, 0xFF, 0xFA, 0xFF, 0xFC, 0xFF, 0xF9, + 0xFF, 0xF9, 0xFF, 0xF6, 0xFF, 0xF9, 0xFF, 0xF8, 0xFF, 0xF7, 0xFF, 0xF7, 0xFF, 0xF5, 0xFF, 0xFC, 0xFF, 0xFC, 0xFF, 0xFC, 0xFF, 0xFD, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0xFD, 0xFF, 0xFC, 0xFF, 0xFD, 0xFF, 0x00, 0x00, 0xFF, + 0xFF, 0xFD, 0xFF, 0xFD, 0xFF, 0xFE, 0xFF, 0x00, 0x00, 0xFD, 0xFF, 0xFE, 0xFF, 0x00, 0x00, 0x01, 0x00, 0xFF, 0xFF, 0xFE, 0xFF, 0x00, 0x00, 0xFD, 0xFF, 0xFC, 0xFF, 0xF9, 0xFF, 0xFD, 0xFF, 0xFC, 0xFF, 0xFC, 0xFF, 0x01, 0x00, 0xFF, 0xFF, 0x01, + 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFA, 0xFF, 0xFC, 0xFF, 0xFA, 0xFF, 0xFE, 0xFF, 0xFC, 0xFF, 0xFD, 0xFF, 0xFB, 0xFF, 0xFB, 0xFF, 0xFA, 0xFF, 0xFC, 0xFF, 0xFA, 0xFF, 0xFB, 0xFF, 0xFD, 0xFF, 0xFA, 0xFF, 0xFD, + 0xFF, 0xFA, 0xFF, 0xFB, 0xFF, 0xFB, 0xFF, 0xFB, 0xFF, 0xF9, 0xFF, 0xF8, 0xFF, 0xF7, 0xFF, 0xF7, 0xFF, 0xF6, 0xFF, 0xF5, 0xFF, 0xF8, 0xFF, 0xF7, 0xFF, 0xFA, 0xFF, 0xFB, 0xFF, 0xFA, 0xFF, 0xFA, 0xFF, 0xFB, 0xFF, 0xFD, 0xFF, 0xFF, 0xFF, 0x00, + 0x00, 0x03, 0x00, 0x03, 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, 0x00, 0xFF, 0xFF, 0x03, 0x00, 0x03, 0x00, 0x01, 0x00, 0x03, 0x00, 0x02, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0xFE, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0xFD, + 0xFF, 0xFB, 0xFF, 0xFC, 0xFF, 0xFA, 0xFF, 0xFC, 0xFF, 0xFD, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x08, 0x00, 0x0A, + 0x00, 0x09, 0x00, 0x07, 0x00, 0x08, 0x00, 0x07, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, 0x00, 0x06, 0x00, 0x07, 0x00, 0x09, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xFF, 0xFF, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x03, 0x00, 0x03, 0x00, 0x05, 0x00, 0x06, 0x00, 0x06, 0x00, 0x04, 0x00, 0x05, 0x00, 0x04, 0x00, 0x03, 0x00, 0x04, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 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 + }; + + static const rt_uint8_t _romfs_root_du_wav[] = { + 0x52, 0x49, 0x46, 0x46, 0x34, 0x0F, 0x00, 0x00, 0x57, 0x41, 0x56, 0x45, 0x66, 0x6D, 0x74, 0x20, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x40, 0x1F, 0x00, 0x00, 0x80, 0x3E, 0x00, 0x00, 0x02, 0x00, 0x10, 0x00, 0x64, 0x61, 0x74, 0x61, + 0x10, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xFF, 0xFF, 0x01, 0x00, 0xFF, 0xFF, 0x02, 0x00, 0xFB, 0xFF, 0xF9, 0xFF, 0xFA, 0xFF, 0xF7, 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, 0x05, 0x00, 0xFF, 0xFF, 0xFE, 0xFF, 0xFB, 0xFF, 0xFE, 0xFF, + 0xFC, 0xFF, 0x02, 0x00, 0x07, 0x00, 0x0A, + 0x00, 0x05, 0x00, 0x03, 0x00, 0x04, 0x00, 0x07, 0x00, 0x0D, 0x00, 0x0C, 0x00, 0x0D, 0x00, 0x09, 0x00, 0x0B, 0x00, 0x07, 0x00, 0x09, 0x00, 0x04, 0x00, 0x10, 0x00, 0x12, 0x00, 0x16, 0x00, 0x0E, 0x00, 0x0E, 0x00, 0x08, 0x00, 0x14, 0x00, 0x10, + 0x00, 0x14, 0x00, 0x0C, 0x00, 0x08, 0x00, 0x0D, 0x00, 0x05, 0x00, 0x0B, 0x00, 0x00, 0x00, 0xF8, 0xFF, 0xF1, 0xFF, 0xEF, 0xFF, 0xF7, 0xFF, 0x09, 0x00, 0xF7, 0xFF, 0x0D, 0x00, 0x03, 0x00, 0x06, 0x00, 0x0A, + 0x00, 0x11, 0x00, 0x17, 0x00, 0x04, 0x00, 0xFF, 0xFF, 0x02, 0x00, 0xE6, 0xFF, 0x15, 0x00, 0xF0, 0xFF, 0xF9, 0xFF, 0xD0, 0xFF, 0x24, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x61, 0x00, 0xCE, 0xFF, 0x52, 0x00, 0x11, 0x00, 0x1F, 0x00, 0xF6, 0xFF, 0x08, + 0x00, 0xFC, 0xFF, 0xE1, 0xFF, 0x06, 0x00, 0xD1, 0xFF, 0xEB, 0xFF, 0x05, 0x00, 0x00, 0x00, 0x23, 0x00, 0xF3, 0xFF, 0x1F, 0x00, 0xE9, 0xFF, 0x29, 0x00, 0x0C, 0x00, 0x29, 0x00, 0xE9, 0xFF, 0xEE, 0xFF, 0xE4, 0xFF, 0xD1, 0xFF, 0x06, 0x00, 0xFC, + 0xFF, 0x01, 0x00, 0xD0, 0xFF, 0x05, 0x00, 0xDD, 0xFF, 0xDF, 0xFF, 0xC7, 0xFF, 0xE7, 0xFF, 0xEA, 0xFF, 0xDD, 0xFF, 0xBA, 0xFF, 0x34, 0x00, 0xAC, 0xFF, 0xFE, 0xFF, 0x78, 0xFF, 0xDF, 0xFF, 0x6B, 0xFF, 0xEA, 0xFF, 0x4E, 0xFF, 0xCD, 0xFF, 0x47, + 0xFF, 0xD8, 0xFF, 0x69, 0xFF, 0xB2, 0xFF, 0x16, 0xFF, 0x8E, 0xFF, 0xB4, 0xFE, 0xFE, 0xFF, 0xDE, 0xFE, 0x00, 0x00, 0x00, 0x00, 0xED, 0x00, 0x0E, 0xFE, 0xB1, 0xFF, 0xD7, 0x01, 0x69, 0x05, 0x5E, 0x14, 0x7C, 0x06, 0x21, 0x07, 0x10, 0x06, 0xF6, + 0x05, 0x67, 0x03, 0x23, 0x02, 0xBA, 0xFD, 0x4A, 0xFD, 0x2C, 0xFC, 0x5B, 0xF9, 0x4F, 0xFE, 0x40, 0x05, 0xC1, 0x05, 0x54, 0xFE, 0x56, 0x08, 0x7F, 0x03, 0x4F, 0x02, 0x6F, 0x02, 0xDC, 0x06, 0x23, 0x08, 0xF6, 0x02, 0x76, 0xFB, 0xD3, 0xF6, 0xB6, + 0xF6, 0xCD, 0xFA, 0xAA, 0xFD, 0x56, 0xFA, 0x06, 0xFC, 0xB6, 0xFE, 0xBB, 0xFE, 0xAE, 0xFC, 0x40, 0xFD, 0x7D, 0xFF, 0x0F, 0x02, 0x4C, 0x01, 0x75, 0xFE, 0x92, 0xFD, 0x67, 0xFF, 0x14, 0xFD, 0x38, 0xFC, 0x34, 0xFD, 0xC4, 0xFE, 0xDC, 0xFF, 0x11, + 0xFF, 0x99, 0xFE, 0xA9, 0xFE, 0xD6, 0x02, 0xBE, 0x01, 0x9B, 0x01, 0xB2, 0x01, 0xD0, 0x02, 0x89, 0x04, 0x75, 0x00, 0x6E, 0xFE, 0x88, 0xFF, 0x4B, 0x04, 0x4B, 0x01, 0x6F, 0x00, 0x07, 0x00, 0x90, 0x01, 0xFC, 0x06, 0x03, 0x04, 0x6D, 0xFC, 0x38, + 0xFF, 0x72, 0x06, 0xC1, 0x02, 0x4D, 0xFD, 0x34, 0xFE, 0xD3, 0x01, 0x23, 0xFE, 0x8E, 0xFD, 0xB9, 0x00, 0x57, 0x01, 0xB2, 0xFF, 0xB3, 0xFF, 0x34, 0x02, 0x11, 0x04, 0x3F, 0x02, 0x3C, 0x00, 0x41, 0x03, 0x12, 0x07, 0x2D, 0x06, 0xC1, 0x03, 0xD6, + 0x01, 0x29, 0x05, 0xA8, 0x08, 0x24, 0x06, 0x8F, 0x01, 0x7E, 0xFF, 0x4D, 0x03, 0x98, 0x02, 0x37, 0xFC, 0x30, 0xF7, 0x41, 0xF8, 0x2C, 0xFA, 0x0C, 0xF8, 0x37, 0xF4, 0x0B, 0xF4, 0x42, 0xF7, 0x17, 0xFA, 0x66, 0xFC, 0xD7, 0xFF, 0x89, 0x01, 0xD7, + 0x07, 0x68, 0x0D, 0x08, 0x12, 0x1D, 0x14, 0x31, 0x12, 0x51, 0x13, 0xF0, 0x10, 0xBD, 0x0F, 0x03, 0x0C, 0xA7, 0x06, 0x91, 0x00, 0x62, 0xFE, 0xEB, 0xFA, 0x5C, 0xF1, 0xC6, 0xE6, 0x65, 0xE0, 0xA2, 0xDD, 0xD7, 0xD9, 0x21, 0xD7, 0x2C, 0xDC, 0x26, + 0xEA, 0x51, 0xFB, 0x2A, 0x09, 0xF7, 0x11, 0x85, 0x1A, 0x9A, 0x23, 0xD8, 0x2B, 0x9B, 0x29, 0x31, 0x22, 0xF7, 0x1A, 0x56, 0x17, 0x5E, 0x14, 0x8F, 0x0F, 0x5A, 0x08, 0x3B, 0xFE, 0xE7, 0xF8, 0x8F, 0xF2, 0x49, 0xEB, 0x6E, 0xDF, 0x80, 0xD7, 0x8B, + 0xD0, 0x3D, 0xCA, 0xFF, 0xD1, 0x4D, 0xE1, 0xB1, 0xF7, 0x17, 0x06, 0xDE, 0x10, 0xA4, 0x18, 0xB9, 0x20, 0x30, 0x27, 0x17, 0x26, 0x35, 0x21, 0xB1, 0x19, 0xAA, 0x16, 0x5D, 0x14, 0x9A, 0x12, 0x15, 0x0C, 0x4A, 0x06, 0xFC, 0xFE, 0x66, 0xFB, 0xB2, + 0xF6, 0x29, 0xF0, 0x75, 0xE6, 0x3B, 0xDC, 0xEA, 0xD1, 0x1E, 0xC7, 0x87, 0xCC, 0x4E, 0xDA, 0x3D, 0xF2, 0xD8, 0x03, 0x0F, 0x0F, 0x57, 0x17, 0x9A, 0x1E, 0x2A, 0x26, 0x03, 0x27, 0x87, 0x22, 0xAC, 0x19, 0xC2, 0x14, 0x0E, 0x12, 0xAB, 0x12, 0xDA, + 0x0E, 0x46, 0x0A, + 0xFC, 0x02, 0x7C, 0xFD, 0xC3, 0xF7, 0xAE, 0xF1, 0x46, 0xEB, 0xBD, 0xDF, 0xF5, 0xD4, 0x82, 0xC6, 0xF2, 0xC7, 0xE2, 0xD3, 0xE8, 0xE9, 0x73, 0x00, 0x7E, 0x0F, 0x2B, 0x18, 0xF2, 0x1B, 0xA1, 0x22, 0xAF, 0x26, 0x3A, 0x25, 0x95, 0x1C, 0x53, 0x14, + 0x8D, 0x0E, 0xF1, 0x0E, 0x3C, 0x10, 0x87, 0x0F, 0x83, 0x07, 0xAF, 0xFE, 0x33, 0xF8, 0x50, 0xF2, 0x45, 0xEF, 0x87, 0xE6, 0x75, 0xDC, 0xC9, 0xCA, 0xE5, 0xC2, 0x0F, 0xCC, 0xA2, 0xE0, 0x00, 0xFD, 0xBC, 0x0D, 0x8B, 0x19, 0x46, 0x1B, 0x72, 0x1F, + 0x0F, 0x22, 0x02, 0x24, 0xC4, 0x1F, 0x03, 0x17, 0xBB, 0x10, 0x11, 0x0B, 0x5F, 0x0E, 0xC7, 0x0D, 0x5F, 0x0E, 0x0F, 0x05, 0xF2, 0xFD, 0x3D, 0xF3, 0x49, 0xEE, 0x3E, 0xE8, 0x17, 0xE0, 0xBE, 0xD3, 0x71, 0xC4, 0x07, 0xC9, 0x89, 0xD6, 0xA3, 0xF3, + 0x74, 0x08, 0x19, 0x18, 0xED, 0x1B, 0x33, 0x1D, 0x6E, 0x1F, 0xA6, 0x21, 0xDC, 0x22, 0x5E, 0x1C, 0x62, 0x16, 0x85, 0x0D, 0xA5, 0x0C, 0xD0, 0x0B, 0x76, 0x0D, 0x8B, 0x08, 0x09, 0x01, 0xDC, 0xF6, 0x77, 0xED, 0xC7, 0xE9, 0x41, 0xE3, 0x35, 0xDC, + 0x87, 0xCC, 0xC4, 0xC7, 0x20, 0xCF, 0x10, 0xE6, 0xEE, 0x00, 0xC3, 0x13, 0xC2, 0x1D, 0x17, 0x1D, 0x4F, 0x1D, 0x71, 0x1C, 0x65, 0x20, 0xE1, 0x1E, 0xED, 0x1A, 0x8B, 0x11, 0x67, 0x0B, 0x6F, 0x09, 0x36, 0x0B, 0x1D, 0x0C, 0x8E, 0x06, 0xBC, 0xFD, + 0x13, 0xF1, 0x19, 0xEB, 0xAE, 0xE4, 0x27, 0xE1, 0xB2, 0xD5, 0xA4, 0xC9, 0xE6, 0xC9, 0x26, 0xD8, 0x66, 0xF3, 0x54, 0x0B, 0xE3, 0x1B, 0x11, 0x1F, 0x59, 0x1D, 0x52, 0x1B, 0x8F, 0x1C, 0xB4, 0x1F, 0x00, 0x1D, 0x26, 0x17, 0x69, 0x0C, 0x90, 0x08, + 0x20, 0x07, 0x46, 0x0B, 0x2E, 0x0B, 0x78, 0x05, 0x49, 0xFA, 0x11, 0xED, 0x15, 0xE6, 0xC4, 0xDF, 0x7D, 0xDC, 0x09, 0xD0, 0x09, 0xCD, 0x8D, 0xD1, 0x26, 0xE5, 0x7A, 0xFE, 0xD3, 0x12, 0xE1, 0x1E, 0x8E, 0x1E, 0xAF, 0x1D, 0xDA, 0x1A, 0x72, 0x1D, + 0x04, 0x1D, 0x7D, 0x1B, 0x6B, 0x13, 0x8B, 0x0B, 0xD9, 0x07, 0xF9, 0x07, 0x48, 0x0A, + 0x84, 0x07, 0xCE, 0x00, 0x46, 0xF3, 0x7A, 0xE9, 0xE4, 0xE0, 0x9B, 0xDC, 0xC9, 0xD4, 0xA6, 0xCD, 0x18, 0xD1, 0x96, 0xDD, 0xD2, 0xF5, 0x8B, 0x0A, + 0x19, 0x1B, 0xFC, 0x1E, 0x49, 0x1E, 0x87, 0x1B, 0x7A, 0x1B, 0xD9, 0x1C, 0x77, 0x1B, 0xEE, 0x16, 0xD2, 0x0D, 0xE9, 0x08, 0x0A, + 0x06, 0x3F, 0x09, 0xE0, 0x08, 0x01, 0x05, 0x79, 0xF9, 0xDD, 0xED, 0xE0, 0xE4, 0xE4, 0xDE, 0xCA, 0xDA, 0xB3, 0xD0, 0x79, 0xCE, 0x53, 0xD4, 0x41, 0xE8, 0x30, 0x00, 0x7A, 0x14, 0x6E, 0x1F, 0x8C, 0x1F, 0x05, 0x1D, 0x4F, 0x1A, 0x79, 0x1B, 0xDB, + 0x1A, 0x9C, 0x18, 0x38, 0x12, 0xD0, 0x0B, 0x7A, 0x08, 0x75, 0x08, 0x6F, 0x0A, + 0xBD, 0x07, 0x21, 0x00, 0xE4, 0xF2, 0x72, 0xE8, 0xD5, 0xE1, 0x9E, 0xDE, 0xB1, 0xD9, 0x97, 0xD2, 0xDA, 0xD3, 0xB4, 0xDC, 0x6B, 0xF1, 0x3F, 0x06, 0x67, 0x18, 0x40, 0x1F, 0x71, 0x1F, 0x75, 0x1C, 0x33, 0x1A, 0x3E, 0x1A, 0x3C, 0x19, 0xDC, 0x16, + 0x5D, 0x10, 0x69, 0x0B, 0xBD, 0x06, 0x11, 0x07, 0xC8, 0x06, 0xD6, 0x04, 0x9D, 0xFC, 0x65, 0xF1, 0xCC, 0xE7, 0x90, 0xE0, 0x06, 0xDD, 0x1D, 0xD5, 0x9E, 0xD2, 0x7B, 0xD7, 0xDB, 0xE6, 0x51, 0xFC, 0x2D, 0x0F, 0x4F, 0x1C, 0xA1, 0x1E, 0xE0, 0x1D, + 0x22, 0x1A, 0xDB, 0x19, 0xF8, 0x18, 0x09, 0x18, 0x6B, 0x13, 0xC0, 0x0C, 0xA2, 0x07, 0x28, 0x05, 0x18, 0x06, 0xBE, 0x04, 0x28, 0x00, 0x02, 0xF6, 0x13, 0xEC, 0x85, 0xE4, 0x15, 0xE0, 0xD0, 0xDB, 0xA6, 0xD4, 0xD2, 0xD4, 0x3E, 0xDD, 0x14, 0xF1, + 0x9A, 0x07, 0x10, 0x1A, 0xA8, 0x22, 0x06, 0x21, 0x7C, 0x1C, 0x4B, 0x17, 0xE6, 0x16, 0x3E, 0x16, 0x75, 0x15, 0x4F, 0x0F, 0x00, 0x09, 0x89, 0x03, 0x5C, 0x02, 0xF9, 0x03, 0x22, 0x03, 0x8E, 0xFE, 0x50, 0xF4, 0x71, 0xEB, 0x9E, 0xE3, 0xD1, 0xDF, + 0x7B, 0xDA, 0x8D, 0xD5, 0x53, 0xD9, 0x51, 0xE4, 0xD8, 0xF8, 0x53, 0x0C, 0xD6, 0x1C, 0x1B, 0x22, 0xAB, 0x20, 0x02, 0x1B, 0xB5, 0x15, 0xCE, 0x13, 0x18, 0x12, 0x26, 0x11, 0x98, 0x0B, 0x6C, 0x07, 0x80, 0x02, 0x89, 0x02, 0xB3, 0x02, 0x94, 0x01, + 0x91, 0xFB, 0xDC, 0xF1, 0xF6, 0xE8, 0x52, 0xE1, 0x1B, 0xDE, 0x52, 0xD7, 0x21, 0xD7, 0xF5, 0xDC, 0xCD, 0xEB, 0x13, 0x00, 0x6A, 0x12, 0x7A, 0x20, 0x62, 0x23, 0x07, 0x21, 0x44, 0x1A, 0x87, 0x16, 0x9C, 0x13, 0x26, 0x12, 0x48, 0x0E, 0x9E, 0x08, + 0xF9, 0x03, 0x8A, 0x01, 0x9D, 0x02, 0xD3, 0x02, 0x4B, 0x00, 0x3E, 0xF8, 0xF5, 0xEE, 0xC4, 0xE7, 0x6F, 0xE2, 0x31, 0xDE, 0xAF, 0xD6, 0x0F, 0xD6, 0x23, 0xDD, 0xF7, 0xEE, 0x33, 0x05, 0xDE, 0x18, 0x89, 0x24, 0x02, 0x25, 0x10, 0x20, 0x1F, 0x18, + 0xF7, 0x13, 0x58, 0x11, 0xD8, 0x10, 0x16, 0x0D, 0x33, 0x08, 0x23, 0x03, 0x12, 0x01, 0x0A, + 0x02, 0xED, 0x02, 0x3F, 0x00, 0x90, 0xF8, 0x79, 0xEF, 0x09, 0xE8, 0xB1, 0xE2, 0x02, 0xDF, 0x1A, 0xD8, 0x28, 0xD9, 0x3F, 0xDF, 0xDF, 0xF0, 0xE8, 0x04, 0x78, 0x18, 0xA5, 0x23, 0x52, 0x24, 0x0E, 0x1F, 0x07, 0x16, 0xE3, 0x11, 0x7D, 0x0E, 0x9A, + 0x0F, 0x9E, 0x0B, 0x3E, 0x08, 0xD8, 0x02, 0xA4, 0x01, 0x8A, 0x02, 0x3F, 0x04, 0xD5, 0x01, 0x97, 0xFA, 0xDB, 0xF0, 0x31, 0xE8, 0x56, 0xE2, 0x78, 0xDD, 0x42, 0xD7, 0xC6, 0xD8, 0x21, 0xE1, 0x74, 0xF4, 0x08, 0x09, 0xE9, 0x1B, 0x67, 0x24, 0x07, + 0x23, 0xDD, 0x1C, 0xC2, 0x13, 0x26, 0x10, 0x7A, 0x0C, 0x7F, 0x0D, 0x31, 0x09, 0xDA, 0x06, 0xA0, 0x02, 0xB2, 0x02, 0x9D, 0x03, 0x4C, 0x04, 0x40, 0x01, 0x03, 0xF9, 0x77, 0xF0, 0x81, 0xE8, 0x74, 0xE3, 0x1E, 0xDE, 0xE7, 0xD7, 0x76, 0xD9, 0x35, + 0xE2, 0xA1, 0xF5, 0xB0, 0x09, 0x8E, 0x1B, 0xB9, 0x23, 0x6D, 0x22, 0xA4, 0x1B, 0xFD, 0x12, 0x18, 0x0F, 0xEE, 0x0B, 0x50, 0x0C, 0xDB, 0x08, 0x53, 0x06, 0x34, 0x02, 0x91, 0x01, 0x55, 0x02, 0xDF, 0x03, 0x15, 0x01, 0xBB, 0xFA, 0x31, 0xF2, 0xF7, + 0xEB, 0xBC, 0xE6, 0x6F, 0xE2, 0xE3, 0xDA, 0x41, 0xDA, 0xB2, 0xDF, 0xA1, 0xF0, 0x23, 0x05, 0x83, 0x18, 0xFE, 0x23, 0x35, 0x23, 0xCA, 0x1C, 0x27, 0x12, 0xA2, 0x0D, 0x43, 0x0A, + 0x6E, 0x0C, 0x2A, 0x0A, + 0x2A, 0x08, 0xEB, 0x02, 0x86, 0x01, 0x39, 0x01, 0x3C, 0x04, 0x02, 0x03, 0xB0, 0xFE, 0x8E, 0xF5, 0xD1, 0xED, 0xA5, 0xE6, 0x11, 0xE2, 0x3D, 0xDB, 0x1D, 0xD9, 0x6C, 0xDE, 0xEF, 0xEB, 0x24, 0x01, 0x3A, 0x13, 0x96, 0x22, 0xE7, 0x22, 0x36, 0x1F, + 0x60, 0x13, 0x5D, 0x0E, 0xA1, 0x09, 0x00, 0x0C, 0xB1, 0x0A, + 0xF2, 0x08, 0x14, 0x04, 0xFC, 0x00, 0xA4, 0x00, 0x2A, 0x02, 0xE5, 0x03, 0xA1, 0x00, 0x3E, 0xFB, 0x68, 0xF2, 0x9C, 0xEC, 0x49, 0xE5, 0xD1, 0xDF, 0x9C, 0xD9, 0x2F, 0xDD, 0x41, 0xE6, 0x51, 0xF9, 0xE0, 0x0A, + 0x7B, 0x1B, 0xBB, 0x20, 0x60, 0x1F, 0xB3, 0x17, 0xA2, 0x10, 0xA4, 0x0C, 0x48, 0x0B, 0x5A, 0x0B, 0xEA, 0x07, 0x91, 0x04, 0xE1, 0xFF, 0x19, 0x00, 0xE6, 0x00, 0xBA, 0x04, 0xD7, 0x02, 0x92, 0xFF, 0x5F, 0xF7, 0x0F, 0xF1, 0x2A, 0xEA, 0x3B, 0xE5, + 0x31, 0xDE, 0x32, 0xDC, 0x70, 0xE0, 0x75, 0xED, 0x82, 0xFF, 0x74, 0x11, 0x80, 0x1E, 0xE2, 0x20, 0xDD, 0x1C, 0x83, 0x13, 0xAF, 0x0D, 0x64, 0x09, 0x48, 0x0A, + 0xAD, 0x08, 0xC3, 0x07, 0xE7, 0x03, 0x20, 0x02, 0x19, 0x01, 0xF5, 0x02, 0xBF, 0x03, 0x80, 0x02, 0x3C, 0xFD, 0xF0, 0xF5, 0xCC, 0xEE, 0xBB, 0xE7, 0x92, 0xE1, 0x42, 0xDB, 0xAC, 0xDC, 0xDC, 0xE4, 0xDD, 0xF5, 0x6E, 0x07, 0x04, 0x17, 0x77, 0x1D, + 0xDB, 0x1C, 0xC1, 0x16, 0xF8, 0x10, 0x5F, 0x0D, 0xB7, 0x0B, 0xDB, 0x0A, + 0xAD, 0x07, 0x21, 0x05, 0xE6, 0x01, 0x0A, + 0x02, 0xA2, 0x02, 0x14, 0x05, 0xFD, 0x03, 0x8C, 0x00, 0xFC, 0xF9, 0xFD, 0xF3, 0x64, 0xEE, 0x29, 0xE9, 0xD7, 0xE2, 0x50, 0xDD, 0xC8, 0xDE, 0x3B, 0xE7, 0xD4, 0xF7, 0xDA, 0x08, 0xCA, 0x17, 0xCE, 0x1C, 0xE2, 0x1A, 0xA5, 0x13, 0x5E, 0x0E, 0x82, + 0x0B, 0x8B, 0x0B, 0x66, 0x0B, 0x84, 0x08, 0xE9, 0x04, 0x02, 0x02, 0x15, 0x02, 0x3B, 0x04, 0x50, 0x06, 0x45, 0x05, 0x58, 0x00, 0x34, 0xF9, 0xF8, 0xF2, 0xED, 0xEE, 0x8D, 0xEA, 0xC3, 0xE4, 0x20, 0xDE, 0xFD, 0xDC, 0x46, 0xE4, 0x4D, 0xF3, 0xF8, + 0x05, 0xD5, 0x15, 0xE3, 0x1D, 0x33, 0x1C, 0x16, 0x16, 0x71, 0x0E, 0x57, 0x0B, 0x61, 0x0A, + 0x36, 0x0C, 0x0C, 0x0A, + 0x38, 0x07, 0x9F, 0x02, 0x5F, 0x01, 0x4A, 0x02, 0x39, 0x05, 0x3F, 0x06, 0x19, 0x03, 0x0D, 0xFD, 0xF5, 0xF4, 0xCA, 0xEF, 0xE0, 0xEA, 0x15, 0xE7, 0xFE, 0xE0, 0xC7, 0xDE, 0xC1, 0xE2, 0x67, 0xEE, 0x26, 0xFF, 0x1F, 0x0F, 0xE7, 0x19, 0xB1, 0x1B, + 0x7B, 0x17, 0xE0, 0x10, 0x90, 0x0B, 0xE6, 0x09, 0x0B, 0x0A, + 0x0E, 0x0A, + 0xDE, 0x07, 0xC5, 0x05, 0xD2, 0x03, 0x51, 0x04, 0x5A, 0x05, 0x99, 0x06, 0x58, 0x04, 0xC4, 0xFF, 0xF9, 0xF8, 0xB1, 0xF2, 0x33, 0xED, 0x13, 0xE8, 0x36, 0xE1, 0xD6, 0xDB, 0xE1, 0xDC, 0x57, 0xE6, 0x40, 0xF7, 0x1E, 0x09, 0x73, 0x17, 0x54, 0x1C, + 0xE8, 0x19, 0xC0, 0x13, 0xFF, 0x0E, 0x0B, 0x0D, 0x6A, 0x0D, 0x2D, 0x0D, 0xC3, 0x0A, + 0xA1, 0x06, 0x9C, 0x03, 0xFB, 0x02, 0x89, 0x04, 0x63, 0x06, 0x34, 0x06, 0x85, 0x02, 0xB5, 0xFC, 0x06, 0xF6, 0x85, 0xF1, 0x57, 0xEC, 0x60, 0xE7, 0x1F, 0xDF, 0xA4, 0xDA, 0x0B, 0xDD, 0xFC, 0xE8, 0x2B, 0xFB, 0xDB, 0x0C, 0xAB, 0x18, 0xCB, 0x1A, + 0x4E, 0x17, 0x7E, 0x11, 0xC8, 0x0E, 0xE8, 0x0D, 0x43, 0x0F, 0x9B, 0x0D, 0xB8, 0x0A, + 0x66, 0x05, 0xDF, 0x02, 0x44, 0x02, 0x7B, 0x05, 0x2D, 0x08, 0xAD, 0x08, 0x6D, 0x04, 0x63, 0xFD, 0x72, 0xF5, 0x66, 0xEF, 0x47, 0xEA, 0xAE, 0xE4, 0xA0, 0xDD, 0x0D, 0xD9, 0x05, 0xDC, 0x46, 0xE7, 0x16, 0xFA, 0xEB, 0x0B, 0xCC, 0x19, 0xDB, 0x1B, + 0x2F, 0x19, 0x29, 0x12, 0x54, 0x0F, 0x26, 0x0E, 0xED, 0x0F, 0x10, 0x0F, 0xF4, 0x0B, 0xED, 0x06, 0x5B, 0x03, 0xCC, 0x02, 0x02, 0x05, 0x82, 0x08, 0xE0, 0x08, 0x86, 0x06, 0x61, 0xFF, 0x5F, 0xF8, 0xA4, 0xF0, 0xFE, 0xEB, 0x2D, 0xE5, 0xCE, 0xDD, + 0x20, 0xD6, 0x28, 0xD6, 0x8D, 0xDE, 0x8A, 0xF0, 0xC3, 0x04, 0xEE, 0x15, 0x82, 0x1D, 0x36, 0x1C, 0xB7, 0x16, 0x16, 0x11, 0x85, 0x0F, 0xDC, 0x0F, 0x8D, 0x11, 0xF5, 0x0E, 0xFD, 0x0A, + 0xFE, 0x04, 0xDF, 0x02, 0x38, 0x03, 0x8E, 0x07, 0x6C, 0x0A, + 0xA4, 0x0A, + 0xDD, 0x05, 0x1A, 0xFE, 0x2C, 0xF6, 0x09, 0xEF, 0x7E, 0xE9, 0xC3, 0xE1, 0xB9, 0xD9, 0x30, 0xD3, 0x95, 0xD6, 0x26, 0xE2, 0x69, 0xF6, 0x4F, 0x09, 0x44, 0x18, 0x86, 0x1C, 0x16, 0x1B, 0x0D, 0x16, 0x9F, 0x12, 0xD3, 0x11, 0x0A, + 0x12, 0x9E, 0x11, 0x90, 0x0D, 0x06, 0x09, 0x74, 0x03, 0x75, 0x02, 0x3A, 0x03, 0x45, 0x08, 0x45, 0x0A, + 0xDE, 0x0A, + 0x28, 0x05, 0x54, 0xFE, 0x29, 0xF5, 0x8C, 0xEE, 0xC2, 0xE7, 0x43, 0xE1, 0xB5, 0xD8, 0x36, 0xD3, 0x78, 0xD5, 0xAF, 0xE0, 0x51, 0xF3, 0x52, 0x06, 0x5E, 0x16, 0xD6, 0x1C, 0x62, 0x1D, 0xB3, 0x18, 0x68, 0x15, 0xB7, 0x12, 0x1F, 0x13, 0x0C, 0x12, + 0xED, 0x0F, 0xF5, 0x09, 0x6B, 0x04, 0xE8, 0xFF, 0x0F, 0x00, 0xFE, 0x02, 0xBB, 0x07, 0x13, 0x0A, + 0x3C, 0x09, 0xBE, 0x03, 0xFC, 0xFC, 0xF4, 0xF4, 0xCE, 0xEE, 0x62, 0xE8, 0x1C, 0xE1, 0xBF, 0xD8, 0x18, 0xD3, 0xBD, 0xD5, 0x3F, 0xE0, 0x56, 0xF3, 0x70, 0x06, 0xD3, 0x16, 0xE6, 0x1C, 0xB4, 0x1C, 0xA0, 0x17, 0x12, 0x15, 0x9D, 0x14, 0x10, 0x17, + 0xFE, 0x16, 0x3C, 0x13, 0x37, 0x0A, + 0x79, 0x01, 0x48, 0xFB, 0xE9, 0xFB, 0x86, 0x00, 0xD0, 0x06, 0x03, 0x0A, + 0x6F, 0x09, 0xB9, 0x04, 0x18, 0xFF, 0x86, 0xF9, 0x8B, 0xF4, 0x7E, 0xEF, 0x37, 0xE8, 0xAD, 0xDF, 0x55, 0xD6, 0x63, 0xD4, 0x92, 0xD9, 0xB5, 0xE8, 0x95, 0xFA, 0x64, 0x0C, 0xFB, 0x16, 0xDF, 0x1A, 0xD1, 0x18, 0x07, 0x16, 0x69, 0x14, 0xA2, 0x15, + 0x6A, 0x16, 0x35, 0x15, 0x7C, 0x0F, 0x0A, + 0x07, 0x44, 0xFE, 0xC8, 0xF9, 0xAA, 0xFA, 0xA4, 0x00, 0x52, 0x07, 0x23, 0x0C, 0x1F, 0x0C, 0x15, 0x08, 0xDC, 0x01, 0x97, 0xFB, 0x29, 0xF6, 0x5F, 0xF0, 0x1F, 0xE9, 0x19, 0xDF, 0x3B, 0xD6, 0xAE, 0xD2, 0x17, 0xD9, 0x7D, 0xE7, 0xE4, 0xFB, 0x52, + 0x0D, 0xB1, 0x18, 0xF1, 0x19, 0xC3, 0x16, 0x9D, 0x11, 0xE2, 0x10, 0xD5, 0x12, 0x3E, 0x16, 0x74, 0x15, 0x76, 0x0F, 0x55, 0x05, 0x8F, 0xFB, 0xD4, 0xF6, 0xA2, 0xF8, 0x16, 0x00, 0x2F, 0x08, 0xED, 0x0D, 0xB4, 0x0E, 0x75, 0x0B, 0x68, 0x06, 0x2F, + 0x02, 0x51, 0xFF, 0xA8, 0xFC, 0x98, 0xF7, 0x4E, 0xEF, 0x36, 0xE3, 0x85, 0xD7, 0x03, 0xD0, 0xE3, 0xD2, 0xB2, 0xDE, 0xAC, 0xF1, 0xA6, 0x04, 0x2A, 0x13, 0xFB, 0x18, 0x3A, 0x18, 0xC2, 0x14, 0x97, 0x12, 0xB8, 0x13, 0xEB, 0x15, 0x89, 0x16, 0x45, + 0x12, 0xD5, 0x09, 0x5C, 0xFF, 0xA0, 0xF7, 0xF4, 0xF5, 0x47, 0xFA, 0x36, 0x02, 0xFA, 0x08, 0xA2, 0x0C, 0x6D, 0x0B, 0xF5, 0x07, 0x74, 0x04, 0x47, 0x02, 0x33, 0x01, 0xE5, 0xFE, 0xEE, 0xF9, 0x4C, 0xF0, 0x7B, 0xE4, 0x43, 0xD8, 0xCC, 0xD0, 0xB0, + 0xD0, 0x31, 0xDA, 0xF5, 0xE9, 0x2D, 0xFD, 0xCD, 0x0D, 0x38, 0x19, 0x40, 0x1D, 0x9E, 0x1B, 0x41, 0x17, 0xF4, 0x12, 0x00, 0x11, 0x2B, 0x10, 0x0C, 0x10, 0xF1, 0x0C, 0xDB, 0x07, 0xC2, 0x00, 0xC9, 0xFB, 0x1F, 0xFA, 0xF2, 0xFD, 0xDC, 0x04, 0xAD, + 0x0C, 0x8F, 0x11, 0x30, 0x12, 0x44, 0x0F, 0xD4, 0x09, 0x11, 0x04, 0x5F, 0xFE, 0xC9, 0xF9, 0x5A, 0xF4, 0x37, 0xEE, 0xDB, 0xE6, 0x31, 0xDF, 0x52, 0xD8, 0x2F, 0xD4, 0x57, 0xD5, 0x7F, 0xDD, 0x35, 0xEB, 0x37, 0xFC, 0xA5, 0x0B, 0x70, 0x17, 0xF1, + 0x1B, 0x53, 0x1B, 0x77, 0x16, 0x71, 0x11, 0x80, 0x0D, 0x8F, 0x0B, 0xDA, 0x0A, + 0x60, 0x09, 0xF6, 0x06, 0x47, 0x02, 0x3D, 0xFE, 0x95, 0xFB, 0x08, 0xFE, 0x90, 0x03, 0xFB, 0x0B, 0x72, 0x12, 0x19, 0x16, 0x30, 0x15, 0xCA, 0x11, 0xB9, 0x0C, 0xAF, 0x07, 0xFF, 0x02, 0xFE, 0xFD, 0x02, 0xF8, 0x48, 0xF0, 0xD0, 0xE7, 0x03, 0xE0, + 0xEE, 0xD9, 0x74, 0xD5, 0xFC, 0xD3, 0xC4, 0xD6, 0xDF, 0xE0, 0x8A, 0xF0, 0x3B, 0x04, 0x48, 0x15, 0x91, 0x20, 0x08, 0x22, 0x6E, 0x1C, 0x08, 0x13, 0x55, 0x0B, 0x5C, 0x07, 0xA1, 0x06, 0x90, 0x06, 0x56, 0x04, 0x0F, 0x00, 0xE3, 0xFA, 0xA2, 0xF8, + 0x8E, 0xFA, 0x6E, 0x01, 0xB5, 0x09, 0x77, 0x11, 0x1F, 0x15, 0x39, 0x15, 0x16, 0x12, 0x56, 0x0E, 0xCC, 0x0A, + 0x52, 0x08, 0x88, 0x05, 0x1A, 0x01, 0x69, 0xFA, 0x34, 0xF2, 0xA0, 0xEA, 0x11, 0xE5, 0x03, 0xE3, 0x55, 0xE2, 0x50, 0xE2, 0xBC, 0xE0, 0x1D, 0xE1, 0xE0, 0xE4, 0xD1, 0xEE, 0x03, 0xFD, 0x64, 0x0C, 0xD7, 0x17, 0xDC, 0x1B, 0x03, 0x19, 0xCD, 0x11, + 0x1F, 0x0B, 0x64, 0x07, 0x7D, 0x07, 0xBF, 0x08, 0xF8, 0x08, 0x1B, 0x06, 0x0B, 0x01, 0xFB, 0xFB, 0x20, 0xFA, 0x9F, 0xFC, 0x0A, + 0x03, 0x9D, 0x0A, + 0x6A, 0x10, 0xB6, 0x12, 0x98, 0x11, 0x4C, 0x0E, 0x89, 0x0A, + 0x6C, 0x07, 0x06, 0x05, 0x1F, 0x02, 0xDC, 0xFD, 0xE9, 0xF7, 0x87, 0xF1, 0xF0, 0xEB, 0xA7, 0xE8, 0x6B, 0xE7, 0xAE, 0xE7, 0xCB, 0xE6, 0x70, 0xE4, 0xF1, 0xE1, 0xB3, 0xE4, 0x47, 0xED, 0x7A, 0xFB, 0x90, 0x0A, + 0xEC, 0x15, 0x13, 0x1A, 0xA3, 0x16, 0x08, 0x10, 0x88, 0x09, 0x99, 0x07, 0x75, 0x08, 0xBC, 0x0B, 0xF5, 0x0B, 0x23, 0x09, 0xE4, 0x01, 0xA3, 0xFA, 0x00, 0xF6, 0x45, 0xF7, 0x53, 0xFD, 0x2A, 0x06, 0x4B, 0x0E, 0xBE, 0x12, 0x1A, 0x13, 0x89, 0x0F, + 0xCE, 0x0A, + 0xD9, 0x05, 0xDA, 0x02, 0xAD, 0x00, 0x63, 0xFF, 0x1F, 0xFD, 0x61, 0xFA, 0xBB, 0xF6, 0xBF, 0xF3, 0x7B, 0xF1, 0xB7, 0xF0, 0xEA, 0xF0, 0x75, 0xF2, 0x99, 0xF4, 0xDD, 0xF6, 0x73, 0xF8, 0x3F, 0xF9, 0x7E, 0xF9, 0x9D, 0xF9, 0x52, 0xFA, 0x90, 0xFC, + 0x8C, 0x00, 0x4C, 0x05, 0x4B, 0x09, 0x1E, 0x0B, 0x92, 0x0A, + 0x4D, 0x08, 0x1D, 0x06, 0x24, 0x05, 0x01, 0x06, 0xBE, 0x07, 0x27, 0x09, 0xB8, 0x08, 0xDC, 0x06, 0x13, 0x04, 0x50, 0x02, 0xC1, 0x01, 0x27, 0x03, 0xCB, 0x04, 0x07, 0x06, 0x2F, 0x05, 0xFB, 0x02, 0xBF, 0xFF, 0xFD, 0xFC, 0x1B, 0xFB, 0xFF, 0xF9, + 0x11, 0xF9, 0x87, 0xF7, 0xD3, 0xF5, 0xCB, 0xF3, 0x1B, 0xF3, 0xD4, 0xF2, 0xDF, 0xF2, 0xE6, 0xF0, 0x7A, 0xEE, 0xDF, 0xEC, 0x13, 0xF0, 0xD5, 0xF7, 0xED, 0x02, 0x91, 0x0D, 0xEA, 0x13, 0x33, 0x14, 0xF6, 0x0E, 0x21, 0x08, 0xDB, 0x02, 0xB7, 0x01, + 0x61, 0x03, 0x1B, 0x06, 0xA0, 0x06, 0x87, 0x04, 0x38, 0x00, 0x93, 0xFC, 0xCB, 0xFB, 0xEF, 0xFE, 0xB6, 0x04, 0xEF, 0x0A, + 0xC7, 0x0E, 0xA8, 0x0E, 0x18, 0x0B, 0xA7, 0x05, 0x95, 0x00, 0x5B, 0xFD, 0x5D, 0xFC, 0xB6, 0xFC, 0x15, 0xFD, 0x68, 0xFC, 0xC9, 0xFA, 0x0C, 0xF9, 0x7A, 0xF8, 0x2E, 0xF9, 0x14, 0xFB, 0xB2, 0xFC, 0xA4, 0xFD, 0xA9, 0xFD, 0x6C, 0xFD, 0x60, 0xFD, + 0xC8, 0xFD, 0x93, 0xFE, 0x3A, 0xFF, 0xC7, 0xFF, 0xFC, 0xFF, 0x43, 0x00, 0xAB, 0x00, 0x86, 0x01, 0x55, 0x02, 0xFB, 0x02, 0x1F, 0x03, 0xB9, 0x02, 0x10, 0x02, 0x7A, 0x01, 0x69, 0x01, 0x97, 0x01, 0x1A, 0x02, 0x78, 0x02, 0x76, 0x02, 0xC5, 0x01, + 0x82, 0x00, 0xEF, 0xFE, 0x86, 0xFD, 0xAD, 0xFC, 0x6E, 0xFC, 0xDB, 0xFC, 0x86, 0xFD, 0x60, 0xFE, 0xFF, 0xFE, 0x4A, 0xFF, 0x29, 0xFF, 0xD5, 0xFE, 0x8F, 0xFE, 0x91, 0xFE, 0xC8, 0xFE, 0x1D, 0xFF, 0x5E, 0xFF, 0x8F, 0xFF, 0xB8, 0xFF, 0xF8, 0xFF, + 0x63, 0x00, 0xED, 0x00, 0x60, 0x01, 0x80, 0x01, 0x28, 0x01, 0x95, 0x00, 0x41, 0x00, 0x45, 0x00, 0xF4, 0x00, 0x9D, 0x01, 0x2C, 0x02, 0x1E, 0x02, 0x9E, 0x01, 0xA2, 0x00, 0xB9, 0xFF, 0x2E, 0xFF, 0x3C, 0xFF, 0xC8, 0xFF, 0x3C, 0x00, 0x4B, 0x00, + 0xB3, 0xFF, 0xE1, 0xFE, 0x09, 0xFE, 0xC4, 0xFD, 0x05, 0xFE, 0xE4, 0xFE, 0xD4, 0xFF, 0xB8, 0x00, 0x32, 0x01, 0x50, 0x01, 0x1C, 0x01, 0xBC, 0x00, 0x4E, 0x00, 0xDB, 0xFF, 0x82, 0xFF, 0x66, 0xFF, 0x96, 0xFF, 0x09, 0x00, 0x6C, 0x00, 0x99, 0x00, + 0x82, 0x00, 0x44, 0x00, 0x30, 0x00, 0x42, 0x00, 0x75, 0x00, 0x7F, 0x00, 0x68, 0x00, 0x13, 0x00, 0xE6, 0xFF, 0xD7, 0xFF, 0x1A, 0x00, 0x70, 0x00, 0xA8, 0x00, 0x78, 0x00, 0xF6, 0xFF, 0x54, 0xFF, 0xD8, 0xFE, 0xE1, 0xFE, 0x59, 0xFF, 0x0F, 0x00, + 0x95, 0x00, 0xBF, 0x00, 0x79, 0x00, 0x0B, 0x00, 0xAD, 0xFF, 0xA3, 0xFF, 0xE0, 0xFF, 0x3E, 0x00, 0x77, 0x00, 0x79, 0x00, 0x49, 0x00, 0x11, 0x00, 0xEA, 0xFF, 0xE7, 0xFF, 0xEE, 0xFF, 0x03, 0x00, 0x15, 0x00, 0x22, 0x00, 0x25, 0x00, 0x28, 0x00, + 0x1E, 0x00, 0x02, 0x00, 0xEC, 0xFF, 0xCD, 0xFF, 0xC3, 0xFF, 0xBA, 0xFF, 0xC2, 0xFF, 0xC0, 0xFF, 0xCE, 0xFF, 0xD6, 0xFF, 0xE9, 0xFF, 0xFB, 0xFF, 0x01, 0x00, 0xFF, 0xFF, 0xF2, 0xFF, 0xED, 0xFF, 0xEF, 0xFF, 0x06, 0x00, 0x2A, 0x00, 0x60, 0x00, + 0x8D, 0x00, 0xAC, 0x00, 0xA5, 0x00, 0x79, 0x00, 0x2A, 0x00, 0xE2, 0xFF, 0xAE, 0xFF, 0xA1, 0xFF, 0xBE, 0xFF, 0xE2, 0xFF, 0x09, 0x00, 0x1D, 0x00, 0x21, 0x00, 0x0C, 0x00, 0xF3, 0xFF, 0xD6, 0xFF, 0xC9, 0xFF, 0xCC, 0xFF, 0xE3, 0xFF, 0xFB, 0xFF, + 0x08, 0x00, 0x03, 0x00, 0xED, 0xFF, 0xD0, 0xFF, 0xAF, 0xFF, 0x9A, 0xFF, 0x8F, 0xFF, 0x95, 0xFF, 0xA3, 0xFF, 0xBC, 0xFF, 0xD1, 0xFF, 0xED, 0xFF, 0x00, 0x00, 0x0D, 0x00, 0x0C, 0x00, 0x05, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x06, 0x00, 0x16, 0x00, + 0x21, 0x00, 0x26, 0x00, 0x1E, 0x00, 0x0A, + 0x00, 0xEF, 0xFF, 0xD3, 0xFF, 0xC4, 0xFF, 0xC5, 0xFF, 0xD5, 0xFF, 0xEB, 0xFF, 0xFF, 0xFF, 0x02, 0x00, 0xFA, 0xFF, 0xEE, 0xFF, 0xEB, 0xFF, 0xF4, 0xFF, 0x06, 0x00, 0x0F, 0x00, 0x0D, 0x00, 0xFA, 0xFF, 0xE4, 0xFF, 0xD0, 0xFF, 0xCF, 0xFF, 0xDE, + 0xFF, 0xFC, 0xFF, 0x17, 0x00, 0x2C, 0x00, 0x30, 0x00, 0x2C, 0x00, 0x1B, 0x00, 0x10, 0x00, 0x06, 0x00, 0x06, 0x00, 0x08, 0x00, 0x05, 0x00, 0xFE, 0xFF, 0xEE, 0xFF, 0xEC, 0xFF, 0xEC, 0xFF, 0x02, 0x00, 0x10, 0x00, 0x1C, 0x00, 0x12, 0x00, 0xFF, + 0xFF, 0xE7, 0xFF, 0xDE, 0xFF, 0xDD, 0xFF, 0xE8, 0xFF, 0xFA, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xEB, 0xFF, 0xDC, 0xFF, 0xD0, 0xFF, 0xD4, 0xFF, 0xE7, 0xFF, 0xF7, 0xFF, 0x01, 0x00, 0x01, 0x00, 0xFF, 0xFF, 0xFB, 0xFF, 0x01, 0x00, 0x05, 0x00, 0x10, + 0x00, 0x17, 0x00, 0x1C, 0x00, 0x1E, 0x00, 0x19, 0x00, 0x13, 0x00, 0x0A, + 0x00, 0x02, 0x00, 0xFB, 0xFF, 0xF7, 0xFF, 0xF6, 0xFF, 0xFC, 0xFF, 0x04, 0x00, 0x0E, 0x00, 0x13, 0x00, 0x12, 0x00, 0x07, 0x00, 0xFE, 0xFF, 0xED, 0xFF, 0xE1, 0xFF, 0xDD, 0xFF, 0xEB, 0xFF, 0xF8, 0xFF, 0x01, 0x00, 0x05, 0x00, 0x02, 0x00, 0xFE, + 0xFF, 0xFD, 0xFF, 0x01, 0x00, 0x03, 0x00, 0x09, 0x00, 0x03, 0x00, 0xFC, 0xFF, 0xF3, 0xFF, 0xF6, 0xFF, 0xFD, 0xFF, 0x04, 0x00, 0x13, 0x00, 0x1D, 0x00, 0x23, 0x00, 0x25, 0x00, 0x20, 0x00, 0x17, 0x00, 0x10, 0x00, 0x0C, 0x00, 0x09, 0x00, 0x08, + 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x0A, + 0x00, 0x03, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x04, 0x00, 0x03, 0x00, 0x03, 0x00, 0xFF, 0xFF, 0xFD, 0xFF, 0xF9, 0xFF, 0xF4, 0xFF, 0xF1, 0xFF, 0xF2, 0xFF, 0xF8, 0xFF, 0x01, 0x00, 0x0A, + 0x00, 0x11, 0x00, 0x0E, 0x00, 0x02, 0x00, 0xF6, 0xFF, 0xE5, 0xFF, 0xE0, 0xFF, 0xE2, 0xFF, 0xEE, 0xFF, 0xFD, 0xFF, 0x06, 0x00, 0x0A, + 0x00, 0x07, 0x00, 0x05, 0x00, 0x02, 0x00, 0x03, 0x00, 0x08, 0x00, 0x10, 0x00, 0x16, 0x00, 0x15, 0x00, 0x0C, 0x00, 0x03, 0x00, 0xFC, 0xFF, 0xFC, 0xFF, 0xFE, 0xFF, 0x05, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x10, 0x00, 0x0A, + 0x00, 0x04, 0x00, 0xFF, 0xFF, 0xFD, 0xFF, 0xFB, 0xFF, 0xFA, 0xFF, 0xFD, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x03, 0x00, 0x04, 0x00, 0x06, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFD, 0xFF, 0xFC, + 0xFF, 0xFC, 0xFF, 0xFD, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0xFC, 0xFF, 0xF7, 0xFF, 0xF6, 0xFF, 0xF9, 0xFF, 0xF7, 0xFF, 0xF7, 0xFF, 0xFA, 0xFF, 0xFD, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0xFD, 0xFF, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0x00, 0x00, 0x00, + 0x00, 0xFF, 0xFF, 0x00 + }; + + + +/** + * 功放静音控制 + */ +void voice_player_mute(int en){ + if(en){ + bk_gpio_config_output(36); + bk_gpio_output(36,1); + }else{ + bk_gpio_config_output(36); + bk_gpio_output(36,0); + } +} + + +void voice_play(int sound){ + int index; + uint16_t *ptr; + uint16_t *buffer; + rt_uint8_t *pcm_buf = NULL; + rt_uint32_t pcm_size = 0; + int mp_block_size = 320; + rt_uint32_t read_bytes = 0; + + switch (sound) + { + case 0: + pcm_buf = (rt_uint8_t *)_romfs_root_dian_wav; + pcm_size = sizeof(_romfs_root_dian_wav); + break; + case 1: + pcm_buf = (rt_uint8_t *)_romfs_root_1_wav; + pcm_size = sizeof(_romfs_root_1_wav); + break; + case 2: + pcm_buf = (rt_uint8_t *)_romfs_root_2_wav; + pcm_size = sizeof(_romfs_root_1_wav); + break; + case 3: + pcm_buf = (rt_uint8_t *)_romfs_root_3_wav; + pcm_size = sizeof(_romfs_root_1_wav); + break; + case 4: + pcm_buf = (rt_uint8_t *)_romfs_root_4_wav; + pcm_size = sizeof(_romfs_root_1_wav); + break; + case 5: + pcm_buf = (rt_uint8_t *)_romfs_root_5_wav; + pcm_size = sizeof(_romfs_root_1_wav); + break; + case 6: + pcm_buf = (rt_uint8_t *)_romfs_root_6_wav; + pcm_size = sizeof(_romfs_root_1_wav); + break; + case 7: + pcm_buf = (rt_uint8_t *)_romfs_root_7_wav; + pcm_size = sizeof(_romfs_root_1_wav); + break; + case 8: + pcm_buf = (rt_uint8_t *)_romfs_root_8_wav; + pcm_size = sizeof(_romfs_root_1_wav); + break; + case 9: + pcm_buf = (rt_uint8_t *)_romfs_root_9_wav; + pcm_size = sizeof(_romfs_root_1_wav); + break; + case 10: + pcm_buf = (rt_uint8_t *)_romfs_root_10_wav; + pcm_size = sizeof(_romfs_root_10_wav); + break; + case 11: + pcm_buf = (rt_uint8_t *)_romfs_root_du_wav; + pcm_size = sizeof(_romfs_root_du_wav); + + break; + default: + break; + } + //移除WAV 头 + // int j = 0; + // for(j = 0 ; j< 100;j++){ + // *(pcm_buf+j) = 0x00; + // } + + while (1) { + + buffer = (uint16_t *)audio_device_get_buffer(RT_NULL); + /* read data from sound device */ + if (read_bytes >= pcm_size) + { + audio_device_put_buffer(buffer); + rt_kprintf("voice_play finish!! \n"); + break; + } + else + { + + + + memcpy((char *)buffer, pcm_buf + read_bytes, mp_block_size); + + + + //expand to 2 channels + ptr = (uint16_t *)((uint8_t *)buffer + mp_block_size * 2); + ptr -= 1; + for (index = 1; index < mp_block_size / 2; index ++) + { + *ptr = *(ptr - 1) = buffer[mp_block_size / 2 - index]; + ptr -= 2; + } + //expand to 2 channels + + audio_device_write((uint8_t *)buffer, mp_block_size * 2); + + + read_bytes += mp_block_size; + rt_kprintf("voice_play read_bytes--> %d\n", read_bytes); + } + } + rt_kprintf("voice_play finish! 222 \n"); +} + +void voice_player_init() +{ + audio_device_init(); + audio_device_set_rate(16000); + audio_device_set_volume(88); + audio_device_open(); + //voice_play(1); + +} +#endif //_APP_VOICE_PLAYER_H_ diff --git a/beken_rtt_sdk_release-SDK_3.0.76/applications/app_voice_player.h b/beken_rtt_sdk_release-SDK_3.0.76/applications/app_voice_player.h new file mode 100644 index 00000000..ce2abf30 --- /dev/null +++ b/beken_rtt_sdk_release-SDK_3.0.76/applications/app_voice_player.h @@ -0,0 +1,10 @@ +#ifndef _APP_VOICE_PLAYER_H_ +#define _APP_VOICE_PLAYER_H_ + +#include + +void voice_player_init(void); +void voice_play(int index); +void voice_player_mute(int en); + +#endif //_APP_VOICE_PLAYER_H_ diff --git a/beken_rtt_sdk_release-SDK_3.0.76/applications/drv_oled.c b/beken_rtt_sdk_release-SDK_3.0.76/applications/drv_oled.c index f7947216..d0bde458 100644 --- a/beken_rtt_sdk_release-SDK_3.0.76/applications/drv_oled.c +++ b/beken_rtt_sdk_release-SDK_3.0.76/applications/drv_oled.c @@ -349,6 +349,7 @@ const unsigned char asc2_2412[][36]={ {0x00,0x00,0x10,0x20,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x82,0x44,0x28,0x10,0x00,0x00,0x00,0x10,0x08,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00},/*">",30*/ {0x00,0xC0,0x20,0x20,0x10,0x10,0x10,0x10,0x30,0xE0,0xC0,0x00,0x00,0x03,0x03,0x00,0x00,0xF0,0x10,0x08,0x0C,0x07,0x03,0x00,0x00,0x00,0x00,0x00,0x1C,0x1C,0x1C,0x00,0x00,0x00,0x00,0x00},/*"?",31*/ {0x00,0x00,0x00,0xC0,0x40,0x60,0x20,0x20,0x20,0x40,0xC0,0x00,0x00,0xFC,0xFF,0x01,0xF0,0x0E,0x03,0xC1,0xFE,0x03,0x80,0x7F,0x00,0x01,0x07,0x0E,0x08,0x11,0x11,0x10,0x11,0x09,0x04,0x02},/*"@",32*/ +#if 1 {0x00,0x00,0x00,0x00,0x80,0xE0,0xE0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x7C,0x43,0x40,0x47,0x7F,0xF8,0x80,0x00,0x00,0x10,0x18,0x1F,0x10,0x00,0x00,0x00,0x00,0x13,0x1F,0x1C,0x10},/*"A",33*/ {0x20,0xE0,0xE0,0x20,0x20,0x20,0x20,0x60,0xC0,0x80,0x00,0x00,0x00,0xFF,0xFF,0x10,0x10,0x10,0x10,0x18,0x2F,0xE7,0x80,0x00,0x10,0x1F,0x1F,0x10,0x10,0x10,0x10,0x10,0x18,0x0F,0x07,0x00},/*"B",34*/ {0x00,0x00,0x80,0xC0,0x40,0x20,0x20,0x20,0x20,0x60,0xE0,0x00,0x00,0xFC,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x01,0x07,0x0E,0x18,0x10,0x10,0x10,0x08,0x04,0x03,0x00},/*"C",35*/ @@ -412,7 +413,7 @@ const unsigned char asc2_2412[][36]={ {0x00,0x00,0x04,0x0C,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xEF,0x28,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x60,0x3F,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*"}",93*/ {0x00,0x18,0x06,0x02,0x02,0x04,0x08,0x10,0x20,0x20,0x30,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},/*"~",94*/ - +#endif }; @@ -452,6 +453,7 @@ const unsigned char asc2_3216[][64]={ {0x00,0x40,0xE0,0xE0,0xC0,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x07,0x0F,0x0E,0x1C,0x38,0x70,0xE0,0xC0,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xC0,0xE0,0x70,0x38,0x1C,0x1E,0x0F,0x07,0x03,0x00,0x00,0x04,0x0E,0x0E,0x07,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*">",30*/ {0x00,0x00,0x00,0x80,0x80,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0x80,0x00,0x00,0x00,0x00,0x00,0x1E,0x1F,0x1F,0x1F,0x01,0x00,0x80,0xC1,0xF3,0xFF,0xFF,0x7F,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1C,0x1F,0x1F,0x1F,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x07,0x07,0x07,0x00,0x00,0x00,0x00,0x00,0x00},/*"?",31*/ {0x00,0x00,0x00,0x00,0x80,0x80,0xC0,0x40,0x40,0x40,0x40,0xC0,0x80,0x80,0x00,0x00,0x00,0xF8,0xFE,0x0F,0xC3,0xF1,0xF8,0x3C,0x0C,0xCC,0xFC,0xFC,0x3D,0x0F,0xFE,0xF8,0x00,0x7F,0xFF,0xC0,0x3F,0x7F,0x7F,0x60,0x70,0x3F,0x7F,0x67,0x60,0x3C,0x1F,0x07,0x00,0x00,0x01,0x03,0x07,0x06,0x04,0x0C,0x08,0x0C,0x04,0x06,0x02,0x02,0x00,0x00},/*"@",32*/ +#if 1 {0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0xC0,0xC0,0xC0,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFC,0xFF,0xFF,0x1F,0xFF,0xFF,0xF8,0xC0,0x00,0x00,0x00,0x00,0x80,0xF0,0xFE,0xFF,0x7F,0x1F,0x1C,0x1C,0x1C,0x1F,0xFF,0xFF,0xFE,0xE0,0x00,0x00,0x07,0x07,0x07,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x07,0x07,0x07},/*"A",33*/ {0x00,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0x80,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0x80,0x80,0x80,0x80,0x81,0xC1,0xFF,0xFF,0x7F,0x3E,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0x01,0x01,0x01,0x01,0x03,0x03,0x87,0xFF,0xFE,0xFC,0x78,0x00,0x07,0x07,0x07,0x07,0x06,0x06,0x06,0x06,0x06,0x07,0x07,0x07,0x03,0x01,0x00},/*"B",34*/ {0x00,0x00,0x00,0x00,0x80,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0x80,0x80,0x00,0x00,0x00,0xE0,0xFC,0xFF,0xFF,0x1F,0x03,0x01,0x00,0x00,0x01,0x03,0x3F,0x3F,0x3F,0x38,0x00,0x1F,0xFF,0xFF,0xFF,0xE0,0x00,0x00,0x00,0x00,0x00,0x80,0xF8,0xF8,0xF8,0x38,0x00,0x00,0x00,0x01,0x03,0x07,0x07,0x0E,0x0E,0x0E,0x0F,0x07,0x07,0x03,0x01,0x00},/*"C",35*/ @@ -514,38 +516,54 @@ const unsigned char asc2_3216[][64]={ {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00},/*"|",92*/ {0x00,0x00,0x08,0x08,0xF8,0xF8,0xF8,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF8,0xFF,0xFF,0xFF,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x60,0x7F,0x7F,0x3F,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*"}",93*/ {0x00,0x00,0x38,0x3C,0x1E,0x0E,0x0E,0x1E,0x1C,0x38,0x78,0x70,0x78,0x3E,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},/*"~",94*/ - +#endif }; + +//16*16 点阵 黑体 const unsigned char Hzk1[][32]={ - - -{0x10,0x60,0x02,0x8C,0x00,0x0E,0x22,0x12,0x0A,0xC2,0x0A,0x12,0x22,0x0E,0x00,0x00,0x04,0x04,0x7E,0x01,0x20,0x21,0x11,0x09,0x05,0xFF,0x05,0x09,0x11,0x21,0x20,0x00},/*"Éî",0*/ -{0x20,0x20,0x20,0xFF,0x20,0x20,0x00,0xFF,0x00,0x00,0xFE,0x00,0x00,0xFF,0x00,0x00,0x10,0x30,0x10,0x0F,0x08,0x88,0x60,0x1F,0x00,0x00,0x3F,0x00,0x00,0xFF,0x00,0x00},/*"ÛÚ",1*/ -{0x00,0x02,0x02,0xF2,0x12,0x12,0x12,0xF2,0x02,0x02,0x02,0xFE,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x0F,0x04,0x04,0x04,0x0F,0x00,0x40,0x80,0x7F,0x00,0x00,0x00,0x00},/*"¿É",2*/ -{0x80,0x64,0x2C,0x34,0x24,0x24,0xEC,0x32,0x22,0x22,0x32,0x2E,0x23,0xA2,0x60,0x00,0x00,0x41,0x21,0x91,0x89,0x87,0x4D,0x55,0x25,0x25,0x55,0x4D,0x81,0x80,0x80,0x00},/*"°®",3*/ -{0x10,0x10,0xD0,0xFF,0x90,0x42,0x2A,0x52,0x4E,0x40,0x47,0x58,0x24,0x52,0x88,0x00,0x04,0x03,0x00,0xFF,0x40,0x41,0x5F,0x69,0x49,0x49,0x49,0x69,0x5F,0x40,0x40,0x00},/*"³È",4*/ -{0x24,0x24,0xA4,0xFE,0xA3,0x22,0x00,0x22,0xCC,0x00,0x00,0xFF,0x00,0x00,0x00,0x00,0x08,0x06,0x01,0xFF,0x00,0x01,0x04,0x04,0x04,0x04,0x04,0xFF,0x02,0x02,0x02,0x00},/*"¿Æ",5*/ -{0x10,0x10,0x10,0xFF,0x10,0x90,0x08,0x88,0x88,0x88,0xFF,0x88,0x88,0x88,0x08,0x00,0x04,0x44,0x82,0x7F,0x01,0x80,0x80,0x40,0x43,0x2C,0x10,0x28,0x46,0x81,0x80,0x00},/*"¼¼",6*/ -{0x04,0x04,0x04,0x84,0xE4,0x3C,0x27,0x24,0x24,0x24,0x24,0xE4,0x04,0x04,0x04,0x00,0x04,0x02,0x01,0x00,0xFF,0x09,0x09,0x09,0x09,0x49,0x89,0x7F,0x00,0x00,0x00,0x00},/*"ÓÐ",7*/ -{0x00,0xFE,0x22,0x5A,0x86,0x00,0xFE,0x92,0x92,0x92,0x92,0x92,0xFE,0x00,0x00,0x00,0x00,0xFF,0x04,0x08,0x07,0x00,0xFF,0x40,0x20,0x03,0x0C,0x14,0x22,0x41,0x40,0x00},/*"ÏÞ",8*/ -{0x00,0x80,0x40,0x20,0x18,0x06,0x80,0x00,0x07,0x18,0x20,0x40,0x80,0x00,0x00,0x00,0x01,0x00,0x20,0x70,0x28,0x26,0x21,0x20,0x20,0x24,0x38,0x60,0x00,0x01,0x01,0x00},/*"¹«",9*/ -{0x00,0x10,0x12,0x92,0x92,0x92,0x92,0x92,0x92,0x12,0x12,0x02,0xFE,0x00,0x00,0x00,0x00,0x00,0x00,0x3F,0x10,0x10,0x10,0x10,0x3F,0x00,0x40,0x80,0x7F,0x00,0x00,0x00},/*"˾",10*/ - + //测(0) 量(1) 中(2) + {0x00,0x64,0xC4,0x0C,0x00,0xFC,0x04,0xE4,0x04,0xFC,0x00,0xF8,0x00,0xFE,0xFE,0x00,0x00,0x60,0x18,0x06,0x40,0x67,0x38,0x0F,0x18,0x67,0x00,0x0F,0x40,0x7F,0x7F,0x00},/*"测",0*/ + {0x00,0x40,0x40,0x7C,0x6C,0x6C,0x6C,0x6C,0x6C,0x6C,0x6C,0x6C,0x7C,0x40,0x40,0x00,0x00,0x40,0x50,0x5F,0x5B,0x5B,0x5B,0x7F,0x7F,0x5B,0x5B,0x5B,0x5F,0x40,0x40,0x00},/*"量",1*/ + {0x00,0x00,0xF0,0x10,0x10,0x10,0x10,0xFE,0xFE,0x10,0x10,0x10,0x10,0xF0,0x00,0x00,0x00,0x00,0x07,0x02,0x02,0x02,0x02,0xFF,0xFF,0x02,0x02,0x02,0x02,0x07,0x00,0x00},/*"中",2*/ }; const unsigned char Hzk2[][72]={ {0x00,0x00,0x00,0xC0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xFC,0x84,0x80,0x80,0x80,0x80,0x80,0x80,0xC0,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0x7F,0x40,0x40,0x40,0x40,0x40,0x40,0xFF,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*"ÖÐ",0*/ }; +//32*32 点阵 黑体加粗 const unsigned char Hzk3[][128]={ -{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFC,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFE,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0xFF,0xFF,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0xFF,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1F,0x1F,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0xFF,0xFF,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x3F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*"ÖÐ",0*/ - + {0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xFC,0xFC,0x7C,0x0C,0x00,0xE0,0xE0,0xE0,0x60,0x60,0x60,0x60,0x60,0xE0,0xF0,0xF0,0x30,0x30,0x38,0x38,0x38,0x20,0x00,0x00,0x00,0x00,0x80,0xC0,0xF0,0xFC,0x7F,0xFF,0xFF,0xFF,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xC0,0xC0,0xC0,0xC0,0xC0,0xFF,0xFF,0xFF,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0xFF,0xFF,0xFF,0x00,0x00,0x00,0xFF,0xFF,0xFF,0x00,0x80,0xC0,0xC0,0x80,0x07,0x7F,0xFF,0xFC,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x7F,0x00,0x00,0x1C,0x3F,0x3F,0x1F,0x0F,0x0F,0x1F,0x3D,0x78,0x70,0x20,0x03,0x0F,0x1F,0x3E,0x3C,0x70,0x7F,0x3F,0x1E,0x02},/*"低",0*/ + {0x00,0x00,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x7C,0x7C,0x7C,0x7C,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x7E,0x7E,0x7E,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x7E,0x7E,0x7E,0x7E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0xFE,0xFE,0xFE,0x06,0x06,0x06,0xE6,0xE6,0xE6,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0xE6,0xE6,0xE6,0x06,0x06,0x06,0x06,0xFE,0xFE,0xFE,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x7F,0x7F,0x00,0x00,0x00,0x07,0x07,0x07,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x07,0x07,0x07,0x00,0x30,0x70,0x70,0x7F,0x7F,0x3F,0x00,0x00},/*"高",1*/ + {0x00,0x00,0x00,0x10,0x38,0x38,0x70,0xF0,0xE0,0x40,0x00,0xF8,0xF8,0xF8,0xF8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0xF8,0xF8,0xF8,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x0C,0x1C,0x3C,0x78,0x70,0x70,0x20,0x00,0x00,0x7F,0x7F,0x7F,0x7F,0x67,0x67,0x67,0x67,0x67,0x67,0x67,0x67,0x67,0x7F,0x7F,0x7F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0xFC,0xFC,0x7C,0x08,0x00,0xFC,0xFC,0xFC,0x1C,0x1C,0xFC,0xFC,0xFC,0x1C,0x1C,0xFC,0xFC,0xFC,0xFC,0x1C,0x1C,0xFC,0xFC,0xFC,0x00,0x00,0x00,0x00,0x00,0x18,0x3F,0x3F,0x1F,0x03,0x30,0x30,0x30,0x3F,0x3F,0x3F,0x30,0x30,0x3F,0x3F,0x3F,0x30,0x30,0x3F,0x3F,0x3F,0x3F,0x30,0x30,0x3F,0x3F,0x3F,0x30,0x30,0x30},/*"温",2*/ + {0x00,0x00,0x00,0x00,0x00,0x80,0xF0,0xF8,0x78,0x18,0x00,0x00,0x80,0x80,0x80,0xFC,0xFC,0xFC,0x8C,0x80,0x80,0x80,0xE0,0xE0,0xE0,0x60,0x60,0xE0,0xE0,0xE0,0x60,0x00,0x00,0x00,0x70,0x78,0x7E,0x3F,0xA7,0xE1,0xF8,0xFE,0x3E,0x0E,0xC7,0xC1,0xC1,0xFF,0xFF,0xFF,0xC1,0xC1,0xC1,0x01,0xFF,0xFF,0xFF,0xE0,0xFC,0xFF,0x3F,0x03,0x00,0x00,0x00,0x00,0x10,0x70,0x78,0x7E,0x3F,0x37,0x31,0x30,0x18,0x18,0x30,0x30,0x30,0xFF,0xFF,0xFF,0x30,0x30,0x30,0x30,0xFF,0xFF,0xFF,0x00,0x03,0x0F,0xFF,0xFE,0xF8,0x00,0x00,0x00,0x04,0x0C,0x0C,0x0C,0x0E,0x06,0x06,0x06,0x07,0x63,0x73,0x7C,0x3F,0x1F,0x07,0x01,0x00,0x00,0x00,0x00,0x7F,0x7F,0x7F,0x02,0x07,0x07,0x07,0x03,0x01,0x00},/*"绑",3*/ + {0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x9C,0xFE,0xFE,0xB8,0x90,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x0F,0x0F,0x0F,0x71,0x71,0x71,0x71,0x71,0x71,0x71,0x71,0xF1,0xF1,0xF1,0xF1,0x71,0x71,0x71,0x71,0x71,0x71,0x71,0x7F,0x0F,0x0F,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0xF8,0xFE,0xFE,0x9C,0x04,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x00,0x00,0x00,0x00,0x00,0x20,0x30,0x78,0x7E,0x3F,0x0F,0x07,0x01,0x03,0x07,0x0F,0x0E,0x1C,0x1C,0x3F,0x3F,0x3F,0x3F,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x38,0x18,0x00},/*"定",4*/ + {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFC,0xFC,0xFC,0xFC,0x00,0x08,0x1C,0x3C,0xFC,0xF8,0x70,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xC3,0xC3,0xC3,0xC3,0xC3,0xC3,0xC3,0xC3,0x03,0x03,0xFF,0xFF,0xFF,0xC3,0x03,0x03,0x83,0xF3,0xF3,0xE3,0x63,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0xFC,0xFF,0xFF,0xFF,0x01,0x01,0x01,0x01,0xFF,0xFF,0xFF,0x3F,0x00,0x00,0x01,0x9F,0xFF,0xFF,0xF8,0xFE,0x3F,0x1F,0x07,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x38,0x7E,0x7F,0x1F,0x07,0x00,0x02,0x0E,0x0E,0x0E,0x27,0x77,0x77,0x78,0x3C,0x1E,0x1E,0x0F,0x07,0x03,0x07,0x1F,0x3F,0x3C,0x78,0x78,0x7F,0x7F,0x3F,0x02},/*"成",5*/ + {0x00,0x00,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0xC0,0x00,0x00,0x00,0x00,0xFC,0xFC,0xFC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0xFF,0xFF,0xFF,0x01,0x01,0x01,0x01,0x0F,0x0E,0x0E,0x0E,0x0E,0xFF,0xFF,0xFF,0x0E,0x0E,0x0E,0x0E,0x0E,0xFE,0xFE,0xFE,0x02,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0xFF,0xFF,0xFF,0xC0,0xE0,0xE0,0x60,0x60,0x00,0x80,0xE0,0xFE,0xFF,0x7F,0x07,0x00,0x00,0x00,0x00,0xFC,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x03,0x03,0x03,0x03,0x01,0x01,0x01,0x00,0x00,0x20,0x70,0x78,0x7C,0x3E,0x1F,0x07,0x03,0x01,0x00,0x10,0x30,0x38,0x38,0x38,0x3F,0x1F,0x1F,0x01,0x00,0x00},/*"功",6*/ + {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xE0,0xE0,0x60,0x00,0x00,0x00,0x00,0xF8,0xF8,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xF0,0xFC,0x7F,0x1F,0x07,0x07,0x06,0x06,0x06,0x06,0x06,0xFF,0xFF,0xFF,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x86,0xC6,0xF6,0xFF,0x7F,0x3F,0x7F,0xFE,0xF6,0xC6,0x86,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x00,0x00,0x00,0x00,0x00,0x70,0x70,0x70,0x78,0x38,0x1C,0x1E,0x0F,0x07,0x07,0x03,0x01,0x00,0x00,0x00,0x00,0x01,0x03,0x07,0x07,0x0F,0x1E,0x1E,0x3C,0x3C,0x38,0x38,0x08,0x00},/*"失",7*/ + {0x00,0x00,0x00,0xE0,0xE0,0xE0,0xE0,0x60,0x60,0x60,0x60,0x60,0x60,0xE0,0xE0,0xE0,0x00,0x00,0x00,0xC0,0xFC,0xFC,0x78,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0x00,0xFE,0xFE,0xFE,0x04,0x00,0xFF,0xFF,0xFF,0xC0,0xF0,0xFC,0xFF,0xFF,0x83,0x03,0x03,0x03,0xFF,0xFF,0xFF,0x0F,0x03,0x07,0x07,0x00,0x00,0x00,0x3F,0x3F,0x3F,0x3F,0xC0,0xFF,0xFF,0x3F,0x80,0x80,0x3F,0x3F,0x3F,0x00,0x01,0x01,0x07,0x3F,0xFF,0xF8,0xE0,0xFC,0xFF,0x3F,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x38,0x3C,0x1E,0x1F,0x0F,0x03,0x01,0x01,0x03,0x07,0x0F,0x3E,0x3C,0x78,0x70,0x38,0x3C,0x1C,0x0E,0x07,0x07,0x0F,0x1E,0x3C,0x38,0x70,0x70,0x60,0x00},/*"败",8*/ + // + {0x00,0x00,0x00,0xC0,0xC0,0xC0,0xC0,0xC0,0xFC,0xFC,0xFC,0xC0,0xC0,0xC0,0xC0,0xC0,0x30,0x30,0x30,0x30,0xF0,0xF0,0xF0,0x30,0x30,0x30,0x30,0xF0,0xF0,0xF0,0x00,0x00,0x00,0x00,0x70,0x71,0x71,0x71,0x71,0x71,0x7F,0xFF,0xFF,0xF1,0x71,0x71,0x71,0x71,0xE0,0xF0,0x7C,0x3F,0x1F,0x0F,0x03,0x60,0x60,0x70,0x7F,0x7F,0x3F,0x1F,0x00,0x00,0x00,0x00,0x00,0xC0,0xFE,0xFE,0xFE,0x82,0x00,0xFF,0xFF,0xFF,0x18,0x18,0x18,0x18,0x00,0x01,0xFF,0xFF,0xFF,0x03,0x03,0x03,0x03,0x03,0x03,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x10,0x3C,0x3F,0x3F,0x0F,0x03,0x07,0x0F,0x0F,0x1F,0x1F,0x38,0x38,0x38,0x30,0x30,0x30,0x73,0x73,0x73,0x73,0x73,0x73,0x73,0x73,0x73,0x73,0x73,0x73,0x70,0x10},/*"超",9*/ + + }; +const unsigned char f35x40_box_ico[]= +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xF0,0x38,0x1C,0x8C,0x8C,0x8C,0x8C,0x8C,0x8C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x8C,0xCC,0xCC,0xCC,0xCC,0x8C,0x0C,0x1C,0x38,0xF0,0xE0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0x00,0x20,0x31,0x31,0x31,0x31,0x3F,0x0E,0x00,0x00,0x00,0x00,0x1F,0x3F,0x7F,0x7F,0x7F,0x7F,0x3F,0x1F,0x00,0x80,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x07,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x07,0x03,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}; + +//小电池图标 40x20 +const unsigned char f40x20_box_batt[]= +{0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0xF0,0xF8,0x38,0x38,0x38,0xB8,0xB8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0xF8,0xF8,0xF0,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0xFF,0xFF,0xC0,0xC6,0xC6,0xDF,0xDF,0xC6,0xC6,0xC0,0xC0,0xC0,0xC6,0xC6,0xC6,0xC6,0xC6,0xC0,0xFF,0xFF,0xFF,0x1F,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 +}; + + + + + const unsigned char Hzk4[][512]={ {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF8,0xF8,0xF0,0xF0,0x70,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFE,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0xFF,0xFF,0xFF,0xFF,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0xFF,0xFF,0xFF,0xFF,0x07,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0xFF,0xFF,0xFF,0xFF,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,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,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1F,0x1F,0x0F,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*"ÖÐ",0*/ @@ -629,6 +647,8 @@ const unsigned char F8X16_bat5[]= const unsigned char F8X16_bat6[]= { 0x18,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF}; + + u8 OLED_GRAM[144][8]; //���Ժ��� @@ -932,6 +952,39 @@ void OLED_DrawCircle(u8 x,u8 y,u8 r) } } +void OLED_DrawFilledCircle(u8 x0, u8 y0, u8 r, u8 c) +{ + int16_t f = 1 - r; + int16_t ddF_x = 1; + int16_t ddF_y = -2 * r; + int16_t x = 0; + int16_t y = r; + + OLED_DrawPoint(x0, y0 + r, c); + OLED_DrawPoint(x0, y0 - r, c); + OLED_DrawPoint(x0 + r, y0, c); + OLED_DrawPoint(x0 - r, y0, c); + OLED_DrawLine(x0 - r, y0, x0 + r, y0, c); + + while (x < y) + { + if (f >= 0) + { + y--; + ddF_y += 2; + f += ddF_y; + } + x++; + ddF_x += 2; + f += ddF_x; + + OLED_DrawLine(x0 - x, y0 + y, x0 + x, y0 + y, c); + OLED_DrawLine(x0 + x, y0 - y, x0 - x, y0 - y, c); + + OLED_DrawLine(x0 + y, y0 + x, x0 - y, y0 + x, c); + OLED_DrawLine(x0 + y, y0 - x, x0 - y, y0 - x, c); + } +} //��ָ��λ����ʾһ���ַ�,���������ַ� @@ -1232,6 +1285,7 @@ void OLED_Init(void) OLED_WR_Byte(0xAF,OLED_CMD); /*display ON*/ OLED_Clear(); + OLED_Refresh(); } diff --git a/beken_rtt_sdk_release-SDK_3.0.76/applications/drv_oled.h b/beken_rtt_sdk_release-SDK_3.0.76/applications/drv_oled.h index a40fd6d3..0fa7d7e2 100644 --- a/beken_rtt_sdk_release-SDK_3.0.76/applications/drv_oled.h +++ b/beken_rtt_sdk_release-SDK_3.0.76/applications/drv_oled.h @@ -49,6 +49,7 @@ void OLED_Clear(void); void OLED_DrawPoint(u8 x,u8 y,u8 t); void OLED_DrawLine(u8 x1,u8 y1,u8 x2,u8 y2,u8 mode); void OLED_DrawCircle(u8 x,u8 y,u8 r); +void OLED_DrawFilledCircle(u8 x0, u8 y0, u8 r, u8 c); void OLED_ShowChar(u8 x,u8 y,u8 chr,u8 size1,u8 mode); void OLED_ShowChar6x8(u8 x,u8 y,u8 chr,u8 mode); void OLED_ShowString(u8 x,u8 y,u8 *chr,u8 size1,u8 mode); diff --git a/beken_rtt_sdk_release-SDK_3.0.76/applications/main.c b/beken_rtt_sdk_release-SDK_3.0.76/applications/main.c index 445cd80e..8bf29adb 100644 --- a/beken_rtt_sdk_release-SDK_3.0.76/applications/main.c +++ b/beken_rtt_sdk_release-SDK_3.0.76/applications/main.c @@ -74,45 +74,6 @@ extern int rt_hw_flash_disk_readonly_init(const char *name, uint32_t base, uint3 extern void rt_hw_wdg_start(int argc, char **argv); extern int bk_wlan_dtim_rf_ps_mode_enable(void ); -#define BUILD_UINT16(loByte, hiByte) \ - ((uint16_t)(((loByte) & 0x00FF) + (((hiByte) & 0x00FF) << 8))) - -#define BK_ATT_DECL_PRIMARY_SERVICE_128 {0x00,0x28,0,0,0,0,0,0,0,0,0,0,0,0,0,0} -#define BK_ATT_DECL_CHARACTERISTIC_128 {0x03,0x28,0,0,0,0,0,0,0,0,0,0,0,0,0,0} -#define BK_ATT_DESC_CLIENT_CHAR_CFG_128 {0x02,0x29,0,0,0,0,0,0,0,0,0,0,0,0,0,0} - -#define WRITE_REQ_CHARACTERISTIC_128 {0x01,0xFF,0,0,0x34,0x56,0,0,0,0,0x28,0x37,0,0,0,0} -#define INDICATE_CHARACTERISTIC_128 {0x02,0xFF,0,0,0x34,0x56,0,0,0,0,0x28,0x37,0,0,0,0} -#define NOTIFY_CHARACTERISTIC_128 {0x03,0xFF,0,0,0x34,0x56,0,0,0,0,0x28,0x37,0,0,0,0} - -static const uint8_t test_svc_uuid[16] = {0xFF,0xFF,0,0,0x34,0x56,0,0,0,0,0x28,0x37,0,0,0,0}; - -enum -{ - TEST_IDX_SVC, - TEST_IDX_FF01_VAL_CHAR, - TEST_IDX_FF01_VAL_VALUE, - TEST_IDX_FF02_VAL_CHAR, - TEST_IDX_FF02_VAL_VALUE, - TEST_IDX_FF02_VAL_IND_CFG, - TEST_IDX_FF03_VAL_CHAR, - TEST_IDX_FF03_VAL_VALUE, - TEST_IDX_FF03_VAL_NTF_CFG, - TEST_IDX_NB, -}; - -extern bk_attm_desc_t test_att_db[TEST_IDX_NB]; -extern void ble_set_notice_cb(ble_notice_cb_t func); -extern ble_err_t bk_ble_init(void); -extern void cli_ble_write_callback(write_req_t *write_req); -extern uint8_t cli_ble_read_callback(read_req_t *read_req); -extern void ble_notice_cb(ble_notice_t notice, void *param); -extern void ble_cmd_cb(ble_cmd_t cmd, ble_cmd_param_t *param); -extern uint8_t ble_active; -uint8_t actv_idx; - - - int main(int argc, char **argv) { diff --git a/beken_rtt_sdk_release-SDK_3.0.76/applications/ring_queue.c b/beken_rtt_sdk_release-SDK_3.0.76/applications/ring_queue.c new file mode 100644 index 00000000..4076f343 --- /dev/null +++ b/beken_rtt_sdk_release-SDK_3.0.76/applications/ring_queue.c @@ -0,0 +1,41 @@ +#include +#include +#include "common.h" +#include "param_config.h" +#include "ble_pub.h" +#include "drv_oled.h" +#include +#include +#include "ring_queue.h" + +void RingQueue_init(RingQueue *q) { + q->front = 0; + q->rear = 0; + q->size = 0; +} +bool RingQueue_isFull(RingQueue *q) { + return q->size == MAX_SIZE; +} + +int RingQueue_size(RingQueue* q) { + return q->size; +} +bool RingQueue_enqueue(RingQueue *q, int value) { + if (RingQueue_isFull(q)) { + return false; // 队列已满,返回失败 + } + q->data[q->rear] = value; // 将值放入队尾 + q->rear = (q->rear + 1) % MAX_SIZE; // 更新队尾指针,注意使用模运算实现循环 + q->size++; // 队列大小加一 + return true; // 成功入队返回true +} + +bool RingQueue_dequeue(RingQueue *q, int *value) { + if (q->size == 0) { // 队列为空,返回失败 + return false; + } + *value = q->data[q->front]; // 获取队头元素的值 + q->front = (q->front + 1) % MAX_SIZE; // 更新队头指针,注意使用模运算实现循环 + q->size--; // 队列大小减一 + return true; // 成功出队返回true +} \ No newline at end of file diff --git a/beken_rtt_sdk_release-SDK_3.0.76/applications/ring_queue.h b/beken_rtt_sdk_release-SDK_3.0.76/applications/ring_queue.h new file mode 100644 index 00000000..e74a40d8 --- /dev/null +++ b/beken_rtt_sdk_release-SDK_3.0.76/applications/ring_queue.h @@ -0,0 +1,18 @@ +#include +#include +#include + +#define MAX_SIZE 50 + +typedef struct { + int data[MAX_SIZE]; // 存储数据的数组 + int front; // 队头指针 + int rear; // 队尾指针 + int size; // 队列当前大小 +} RingQueue; + +void RingQueue_init(RingQueue *q); +bool RingQueue_isFull(RingQueue *q); +int RingQueue_size(RingQueue* q); +bool RingQueue_enqueue(RingQueue *q, int value); +bool RingQueue_dequeue(RingQueue *q, int *value); diff --git a/beken_rtt_sdk_release-SDK_3.0.76/beken378/app/config/sys_config_bk7252n.h b/beken_rtt_sdk_release-SDK_3.0.76/beken378/app/config/sys_config_bk7252n.h index a075632a..bc7a175c 100644 --- a/beken_rtt_sdk_release-SDK_3.0.76/beken378/app/config/sys_config_bk7252n.h +++ b/beken_rtt_sdk_release-SDK_3.0.76/beken378/app/config/sys_config_bk7252n.h @@ -247,10 +247,10 @@ #define CFG_IPERF_TEST IPERF_OPEN_ONLY #if CFG_WIFI_P2P -#define CFG_USE_APP_DEMO_VIDEO_TRANSFER 1 +#define CFG_USE_APP_DEMO_VIDEO_TRANSFER 0 #define CFG_USE_CAMERA_INTF 1 #else -#define CFG_USE_APP_DEMO_VIDEO_TRANSFER 1 +#define CFG_USE_APP_DEMO_VIDEO_TRANSFER 0 #define CFG_USE_CAMERA_INTF 1 #endif #define CFG_USE_HSLAVE_SPI 0