From a692ff75fb15a392a1af234bbdc3ba6649fc6a9f Mon Sep 17 00:00:00 2001 From: redwolf010 Date: Wed, 12 Oct 2022 21:35:36 +0800 Subject: [PATCH 1/9] Update HoloCubic_AIO.cpp --- HoloCubic_Firmware/src/HoloCubic_AIO.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/HoloCubic_Firmware/src/HoloCubic_AIO.cpp b/HoloCubic_Firmware/src/HoloCubic_AIO.cpp index 06d8747c..de936a11 100644 --- a/HoloCubic_Firmware/src/HoloCubic_AIO.cpp +++ b/HoloCubic_Firmware/src/HoloCubic_AIO.cpp @@ -28,6 +28,7 @@ #include "app/weather_old/weather_old.h" #include "app/anniversary/anniversary.h" #include "app/heartbeat/heartbeat.h" +#include "app/stockmarket/stockmarket.h" #include #include @@ -127,6 +128,7 @@ void setup() app_controller->app_install(&game_2048_app); app_controller->app_install(&anniversary_app); app_controller->app_install(&heartbeat_app, APP_TYPE_BACKGROUND); + app_controller->app_install(&stockmarket_app); // 自启动APP // app_controller->app_auto_start(); @@ -195,4 +197,4 @@ void loop() app_controller->main_process(act_info); // 运行当前进程 // Serial.println(ambLight.getLux() / 50.0); // rgb.setBrightness(ambLight.getLux() / 500.0); -} \ No newline at end of file +} From 99dcf6a0d877e76859df54c378c6f08ef917e82d Mon Sep 17 00:00:00 2001 From: redwolf010 Date: Thu, 13 Oct 2022 08:18:06 +0800 Subject: [PATCH 2/9] Create test.txt --- HoloCubic_Firmware/src/app/stockmarket/test.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 HoloCubic_Firmware/src/app/stockmarket/test.txt diff --git a/HoloCubic_Firmware/src/app/stockmarket/test.txt b/HoloCubic_Firmware/src/app/stockmarket/test.txt new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/HoloCubic_Firmware/src/app/stockmarket/test.txt @@ -0,0 +1 @@ + From f9e602a6bca1221b34fa0afa6c1de9e5e89049db Mon Sep 17 00:00:00 2001 From: redwolf010 Date: Thu, 13 Oct 2022 08:18:34 +0800 Subject: [PATCH 3/9] Add files via upload --- .../src/app/stockmarket/README.md | 11 + .../src/app/stockmarket/stockmarket.cpp | 290 +++++++++++++ .../src/app/stockmarket/stockmarket.h | 10 + .../src/app/stockmarket/stockmarket_gui.c | 238 ++++++++++ .../src/app/stockmarket/stockmarket_gui.h | 55 +++ .../src/app/stockmarket/stockmarket_ico.c | 407 ++++++++++++++++++ 6 files changed, 1011 insertions(+) create mode 100644 HoloCubic_Firmware/src/app/stockmarket/README.md create mode 100644 HoloCubic_Firmware/src/app/stockmarket/stockmarket.cpp create mode 100644 HoloCubic_Firmware/src/app/stockmarket/stockmarket.h create mode 100644 HoloCubic_Firmware/src/app/stockmarket/stockmarket_gui.c create mode 100644 HoloCubic_Firmware/src/app/stockmarket/stockmarket_gui.h create mode 100644 HoloCubic_Firmware/src/app/stockmarket/stockmarket_ico.c diff --git a/HoloCubic_Firmware/src/app/stockmarket/README.md b/HoloCubic_Firmware/src/app/stockmarket/README.md new file mode 100644 index 00000000..24c74cc0 --- /dev/null +++ b/HoloCubic_Firmware/src/app/stockmarket/README.md @@ -0,0 +1,11 @@ +# 股票行情实时查看功能 + +> 作者:redwolf + +> 时间:2022-10-07 12:58 +> 修改: + +> 功能描述:获取选择的股票的当前价格、最高价格、最低价格、今日开盘价、昨日收盘价、成交量、成交金额等 + +## 查看股票实时行情 +http://hq.sinajs.cn/list= + uid; \ No newline at end of file diff --git a/HoloCubic_Firmware/src/app/stockmarket/stockmarket.cpp b/HoloCubic_Firmware/src/app/stockmarket/stockmarket.cpp new file mode 100644 index 00000000..6ea0437d --- /dev/null +++ b/HoloCubic_Firmware/src/app/stockmarket/stockmarket.cpp @@ -0,0 +1,290 @@ +#include "stockmarket.h" +#include "stockmarket_gui.h" +#include "sys/app_controller.h" +#include "../../common.h" + +// STOCKmarket的持久化配置 +#define B_CONFIG_PATH "/stockmarket.cfg" +struct B_Config +{ + String stock_id; // bilibili的uid + unsigned long updataInterval; // 更新的时间间隔(s) +}; + +static void write_config(const B_Config *cfg) +{ + char tmp[16]; + // 将配置数据保存在文件中(持久化) + String w_data; + w_data = w_data + cfg->stock_id + "\n"; + memset(tmp, 0, 16); + snprintf(tmp, 16, "%u\n", cfg->updataInterval); + w_data += tmp; + g_flashCfg.writeFile(B_CONFIG_PATH, w_data.c_str()); +} + +static void read_config(B_Config *cfg) +{ + // 如果有需要持久化配置文件 可以调用此函数将数据存在flash中 + // 配置文件名最好以APP名为开头 以".cfg"结尾,以免多个APP读取混乱 + char info[128] = {0}; + uint16_t size = g_flashCfg.readFile(B_CONFIG_PATH, (uint8_t *)info); + info[size] = 0; + if (size == 0) + { + // 默认值 + cfg->stock_id = "sh601126"; // 股票代码 + cfg->updataInterval = 10000; // 更新的时间间隔10000(10s) + write_config(cfg); + } + else + { + // 解析数据 + char *param[2] = {0}; + analyseParam(info, 2, param); + cfg->stock_id = param[0]; + cfg->updataInterval = atol(param[1]); + } +// cfg->stock_id = "sh601126"; // 股票代码 +} + +struct StockmarketAppRunData +{ + unsigned int refresh_status; + unsigned long refresh_time_millis; + StockMarket stockdata; +}; + +struct MyHttpResult +{ + int httpCode = 0; + String httpResponse = ""; +}; + +static B_Config cfg_data; +static StockmarketAppRunData *run_data = NULL; + +static MyHttpResult http_request(String uid = "sh601126") +{ + String url = "http://hq.sinajs.cn/list=" + uid; + MyHttpResult result; + + HTTPClient httpClient; + httpClient.setTimeout(1000); + bool status = httpClient.begin(url); + if (status == false) + { + result.httpCode = -1; + return result; + } + + httpClient.addHeader("referer","https://finance.sina.com.cn"); + int httpCode = httpClient.GET(); + String httpResponse = httpClient.getString(); + httpClient.end(); + result.httpCode = httpCode; + result.httpResponse = httpResponse; + return result; +} + +static int stockmarket_init(AppController *sys) +{ + stockmarket_gui_init(); + // 获取配置信息 + read_config(&cfg_data); + // 初始化运行时参数 + run_data = (StockmarketAppRunData *)malloc(sizeof(StockmarketAppRunData)); + run_data->stockdata.OpenQuo = 0; + run_data->stockdata.CloseQuo = 0; + run_data->stockdata.NowQuo = 0; + run_data->stockdata.MaxQuo = 0; + run_data->stockdata.MinQuo = 0; + run_data->stockdata.ChgValue = 0; + run_data->stockdata.ChgPercent = 0; + run_data->stockdata.updownflag = 1; + run_data->stockdata.name[0] = '\0'; + run_data->stockdata.code[0] = '\0'; + run_data->refresh_status = 0; + run_data->stockdata.tradvolume =0; + run_data->stockdata.turnover = 0; + run_data->refresh_time_millis = millis() - cfg_data.updataInterval; +} + +static void stockmarket_process(AppController *sys, + const ImuAction *act_info) +{ + lv_scr_load_anim_t anim_type = LV_SCR_LOAD_ANIM_FADE_ON; + if (RETURN == act_info->active) + { + sys->send_to(STOCK_APP_NAME, CTRL_NAME, + APP_MESSAGE_WIFI_DISCONN, NULL, NULL); + sys->app_exit(); // 退出APP + return; + } + + // 以下减少网络请求的压力 + if (doDelayMillisTime(cfg_data.updataInterval, &run_data->refresh_time_millis, false)) + { + sys->send_to(STOCK_APP_NAME, CTRL_NAME, + APP_MESSAGE_WIFI_CONN, NULL, NULL); + } + display_stockmarket(run_data->stockdata, anim_type); + + delay(300); +} + +static void stockmarket_background_task(AppController *sys, + const ImuAction *act_info) +{ + // 本函数为后台任务,主控制器会间隔一分钟调用此函数 + // 本函数尽量只调用"常驻数据",其他变量可能会因为生命周期的缘故已经释放 +} + +static int stockmarket_exit_callback(void *param) +{ + stockmarket_gui_del(); + + // 释放运行数据 + if (NULL != run_data) + { + free(run_data); + run_data = NULL; + } +} + +static void update_stock_data() +{ + MyHttpResult result = http_request(cfg_data.stock_id); + if (-1 == result.httpCode) + { + Serial.println("[HTTP] Http request failed."); + return; + } + if (result.httpCode > 0) + { + if (result.httpCode == HTTP_CODE_OK || result.httpCode == HTTP_CODE_MOVED_PERMANENTLY) + { + String payload = result.httpResponse; + Serial.println("[HTTP] OK"); + Serial.println(payload); + int startIndex_1 = payload.indexOf(',')+1; + int endIndex_1 = payload.indexOf(',', startIndex_1); + int startIndex_2 = payload.indexOf(',',endIndex_1)+1; + int endIndex_2 = payload.indexOf(',', startIndex_2); + int startIndex_3 = payload.indexOf(',',endIndex_2)+1; + int endIndex_3 = payload.indexOf(',', startIndex_3); + int startIndex_4 = payload.indexOf(',',endIndex_3)+1; + int endIndex_4 = payload.indexOf(',', startIndex_4); + int startIndex_5 = payload.indexOf(',',endIndex_4)+1; + int endIndex_5 = payload.indexOf(',', startIndex_5); + String Stockname = payload.substring(payload.indexOf('"')+1, payload.indexOf(',')); //股票名称 + memset(run_data->stockdata.name,'\0',9); + for(int i=0;i<8;i++) + run_data->stockdata.name[i] = Stockname.charAt(i); + run_data->stockdata.name[8]='\0'; + run_data->stockdata.OpenQuo = payload.substring(startIndex_1, endIndex_1).toFloat(); //今日开盘价 + run_data->stockdata.CloseQuo = payload.substring(startIndex_2, endIndex_2).toFloat(); //昨日收盘价 + run_data->stockdata.NowQuo = payload.substring(startIndex_3, endIndex_3).toFloat(); //当前价 + run_data->stockdata.MaxQuo = payload.substring(startIndex_4, endIndex_4).toFloat(); //今日最高价 + run_data->stockdata.MinQuo = payload.substring(startIndex_5, endIndex_5).toFloat(); //今日最低价 + + run_data->stockdata.ChgValue = run_data->stockdata.NowQuo - run_data->stockdata.CloseQuo; + run_data->stockdata.ChgPercent = run_data->stockdata.ChgValue / run_data->stockdata.CloseQuo * 100; + for(int i=0;i<8;i++) + run_data->stockdata.code[i] = cfg_data.stock_id.charAt(i); + + if(run_data->stockdata.ChgValue >= 0 ) + { + run_data->stockdata.updownflag = 1; + } + else + { + run_data->stockdata.updownflag = 0; + } + int startIndex_6 = payload.indexOf(',',endIndex_5)+1; + int endIndex_6 = payload.indexOf(',', startIndex_6); + int startIndex_7 = payload.indexOf(',',endIndex_6)+1; + int endIndex_7 = payload.indexOf(',', startIndex_7); + int startIndex_8 = payload.indexOf(',',endIndex_7)+1; + int endIndex_8 = payload.indexOf(',', startIndex_8); + int startIndex_9 = payload.indexOf(',',endIndex_8)+1; + int endIndex_9 = payload.indexOf(',', startIndex_9); + run_data->stockdata.tradvolume = payload.substring(startIndex_8, endIndex_8).toFloat(); //成交量 + run_data->stockdata.turnover = payload.substring(startIndex_9, endIndex_9).toFloat(); //成交额 + // Serial.printf("chg= %.2f\r\n",run_data->stockdata.ChgValue); + // Serial.printf("chgpercent= %.2f%%\r\n",run_data->stockdata.ChgPercent); + + } + } + else + { + Serial.println("[HTTP] ERROR"); + } +} + +static void stockmarket_message_handle(const char *from, const char *to, + APP_MESSAGE_TYPE type, void *message, + void *ext_info) +{ + switch (type) + { + case APP_MESSAGE_WIFI_CONN: + { + Serial.print(millis()); + Serial.println("[SYS] stockmarket_event_notification"); + update_stock_data(); + } + break; + case APP_MESSAGE_UPDATE_TIME: + { + } + break; + case APP_MESSAGE_GET_PARAM: + { + char *param_key = (char *)message; + if (!strcmp(param_key, "stock_id")) + { + snprintf((char *)ext_info, 32, "%s", cfg_data.stock_id.c_str()); + } + else if (!strcmp(param_key, "updataInterval")) + { + snprintf((char *)ext_info, 32, "%u", cfg_data.updataInterval); + } + else + { + snprintf((char *)ext_info, 32, "%s", "NULL"); + } + } + break; + case APP_MESSAGE_SET_PARAM: + { + char *param_key = (char *)message; + char *param_val = (char *)ext_info; + if (!strcmp(param_key, "stock_id")) + { + cfg_data.stock_id = param_val; + } + else if (!strcmp(param_key, "updataInterval")) + { + cfg_data.updataInterval = atol(param_val); + } + } + break; + case APP_MESSAGE_READ_CFG: + { + read_config(&cfg_data); + } + break; + case APP_MESSAGE_WRITE_CFG: + { + write_config(&cfg_data); + } + break; + default: + break; + } +} + +APP_OBJ stockmarket_app = {STOCK_APP_NAME, &app_stockmarket, "", stockmarket_init, + stockmarket_process, stockmarket_background_task, + stockmarket_exit_callback, stockmarket_message_handle}; diff --git a/HoloCubic_Firmware/src/app/stockmarket/stockmarket.h b/HoloCubic_Firmware/src/app/stockmarket/stockmarket.h new file mode 100644 index 00000000..90415c57 --- /dev/null +++ b/HoloCubic_Firmware/src/app/stockmarket/stockmarket.h @@ -0,0 +1,10 @@ +#ifndef APP_STOCKMARKET_H +#define APP_STOCKMARKET_H + + +#define STOCK_APP_NAME "Stock" +#include "sys/interface.h" + +extern APP_OBJ stockmarket_app; + +#endif \ No newline at end of file diff --git a/HoloCubic_Firmware/src/app/stockmarket/stockmarket_gui.c b/HoloCubic_Firmware/src/app/stockmarket/stockmarket_gui.c new file mode 100644 index 00000000..524833e8 --- /dev/null +++ b/HoloCubic_Firmware/src/app/stockmarket/stockmarket_gui.c @@ -0,0 +1,238 @@ +#include "stockmarket_gui.h" + + +#include "driver/lv_port_indev.h" +#include "lvgl.h" + +LV_FONT_DECLARE(lv_font_ibmplex_115); +LV_FONT_DECLARE(ch_font20); + +static lv_obj_t *stockmarket_gui = NULL; + + +static lv_obj_t *nowQuoLabel = NULL; +static lv_obj_t *ArrowImg = NULL; +static lv_obj_t *ChgValueLabel = NULL; +static lv_obj_t *ChgPercentLabel = NULL; +static lv_obj_t *NameLabel = NULL; +static lv_obj_t *uplineLabel = NULL; +static lv_obj_t *lineLabel2 = NULL; +static lv_obj_t *OpenQuo = NULL; +static lv_obj_t *MaxQuo = NULL; +static lv_obj_t *MinQuo = NULL; +static lv_obj_t *CloseQuo = NULL; + +static lv_style_t default_style; +static lv_style_t numberBigRed_style; +static lv_style_t numberBigGreen_style; +static lv_style_t numberLittleGreen_style; +static lv_style_t numberLittleRed_style; +static lv_style_t chFont_style; +static lv_style_t splitline_style; + +// static lv_img_decoder_dsc_t img_dc_dsc; // 图片解码器 + +LV_FONT_DECLARE(lv_font_montserrat_40); +LV_IMG_DECLARE(bilibili_logo_ico); + +LV_IMG_DECLARE(imgbtn_green); +LV_IMG_DECLARE(imgbtn_blue); + +void stockmarket_gui_init(void) +{ + if(NULL == default_style.map) + { + + } + lv_style_init(&default_style); + lv_style_set_bg_color(&default_style, LV_STATE_DEFAULT, LV_COLOR_BLACK); + lv_style_set_bg_color(&default_style, LV_STATE_PRESSED, LV_COLOR_GRAY); + lv_style_set_bg_color(&default_style, LV_STATE_FOCUSED, LV_COLOR_BLACK); + lv_style_set_bg_color(&default_style, LV_STATE_FOCUSED | LV_STATE_PRESSED, lv_color_hex(0xf88)); + + lv_style_init(&numberBigRed_style); + lv_style_set_text_opa(&numberBigRed_style, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_text_color(&numberBigRed_style, LV_STATE_DEFAULT, lv_color_hex(0xff0000)); + lv_style_set_text_font(&numberBigRed_style, LV_STATE_DEFAULT, &lv_font_montserrat_48); + + lv_style_init(&numberBigGreen_style); + lv_style_set_text_opa(&numberBigGreen_style, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_text_color(&numberBigGreen_style, LV_STATE_DEFAULT, lv_color_hex(0x00ff00)); + lv_style_set_text_font(&numberBigGreen_style, LV_STATE_DEFAULT, &lv_font_montserrat_48); + + lv_style_init(&numberLittleRed_style); + lv_style_set_text_opa(&numberLittleRed_style, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_text_color(&numberLittleRed_style, LV_STATE_DEFAULT, lv_color_hex(0xff0000)); + lv_style_set_text_font(&numberLittleRed_style, LV_STATE_DEFAULT, &lv_font_montserrat_20); + + + lv_style_init(&numberLittleGreen_style); + lv_style_set_text_opa(&numberLittleGreen_style, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_text_color(&numberLittleGreen_style, LV_STATE_DEFAULT, lv_color_hex(0x00ff00)); + lv_style_set_text_font(&numberLittleGreen_style, LV_STATE_DEFAULT, &lv_font_montserrat_20); + + lv_style_init(&chFont_style); + lv_style_set_text_opa(&chFont_style, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_text_color(&chFont_style, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_text_font(&chFont_style, LV_STATE_DEFAULT, &ch_font20); + + lv_style_init(&splitline_style); + lv_style_set_text_opa(&splitline_style, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_text_color(&splitline_style, LV_STATE_DEFAULT, lv_color_hex(0x0000ff)); + lv_style_set_text_font(&splitline_style, LV_STATE_DEFAULT, &lv_font_montserrat_20); +} + +void display_stockmarket_init(void) +{ + lv_obj_t *act_obj = lv_scr_act(); // 获取当前活动页 + if (act_obj == stockmarket_gui) + return; + + stockmarket_obj_del(); // 清空对象 + lv_obj_clean(act_obj); // 清空此前页面 + + stockmarket_gui = lv_obj_create(NULL, NULL); + nowQuoLabel = lv_label_create(stockmarket_gui, NULL); + ArrowImg = lv_img_create(stockmarket_gui, NULL); + ChgValueLabel = lv_label_create(stockmarket_gui, NULL); + ChgPercentLabel = lv_label_create(stockmarket_gui, NULL); + NameLabel = lv_label_create(stockmarket_gui, NULL); + uplineLabel = lv_label_create(stockmarket_gui, NULL); + lineLabel2 = lv_label_create(stockmarket_gui, NULL); + OpenQuo = lv_label_create(stockmarket_gui, NULL); + MaxQuo = lv_label_create(stockmarket_gui, NULL); + MinQuo = lv_label_create(stockmarket_gui, NULL); + CloseQuo = lv_label_create(stockmarket_gui, NULL); +} + +/* + * 其他函数请根据需要添加 + */ + +void display_stockmarket(struct StockMarket stockInfo, lv_scr_load_anim_t anim_type) +{ + display_stockmarket_init(); + lv_obj_add_style(stockmarket_gui, LV_BTN_PART_MAIN, &default_style); + + //股票名称 NameLabel + lv_obj_add_style(NameLabel, LV_LABEL_PART_MAIN, &chFont_style); + lv_label_set_text_fmt(NameLabel,"股票代码:%s",stockInfo.code); + + if(stockInfo.updownflag == 0) //股价下跌 + { + //当前价 + lv_obj_add_style(nowQuoLabel, LV_LABEL_PART_MAIN, &numberBigGreen_style); + lv_label_set_recolor(nowQuoLabel, true); + lv_label_set_text_fmt(nowQuoLabel,"%.2f",stockInfo.NowQuo); + //箭头 + lv_img_set_src(ArrowImg, &down); + //涨跌幅 + lv_obj_add_style(ChgValueLabel, LV_LABEL_PART_MAIN, &numberLittleGreen_style); + lv_label_set_text_fmt(ChgValueLabel,"%.2f",stockInfo.ChgValue); + lv_obj_add_style(ChgPercentLabel, LV_LABEL_PART_MAIN, &numberLittleGreen_style); + lv_label_set_text_fmt(ChgPercentLabel,"%.2f%%",stockInfo.ChgPercent); + } + else //股价上涨 + { + //当前价 + lv_obj_add_style(nowQuoLabel, LV_LABEL_PART_MAIN, &numberBigRed_style); + lv_label_set_recolor(nowQuoLabel, true); + lv_label_set_text_fmt(nowQuoLabel,"%.2f",stockInfo.NowQuo); + //箭头 + lv_img_set_src(ArrowImg, &up); + //涨跌幅 + lv_obj_add_style(ChgValueLabel, LV_LABEL_PART_MAIN, &numberLittleRed_style); + lv_label_set_text_fmt(ChgValueLabel,"%.2f",stockInfo.ChgValue); + lv_obj_add_style(ChgPercentLabel, LV_LABEL_PART_MAIN, &numberLittleRed_style); + lv_label_set_text_fmt(ChgPercentLabel,"%.2f%%",stockInfo.ChgPercent); + } + + //分隔符 + lv_obj_add_style(uplineLabel, LV_LABEL_PART_MAIN, &splitline_style); + lv_label_set_recolor(uplineLabel, true); + lv_label_set_text_fmt(uplineLabel,"___________________________"); + lv_obj_add_style(lineLabel2, LV_LABEL_PART_MAIN, &splitline_style); + lv_label_set_recolor(lineLabel2, true); + lv_label_set_text_fmt(lineLabel2,"___________________________"); + + //今开 最高 + lv_obj_add_style(OpenQuo, LV_LABEL_PART_MAIN, &chFont_style); + lv_label_set_recolor(OpenQuo, true); + lv_label_set_text_fmt(OpenQuo,"今 开:#ffa500 %0.2f# 最高:#ffa500 %0.2f#",stockInfo.OpenQuo,stockInfo.MaxQuo); + //昨收 最低 + lv_obj_add_style(MaxQuo, LV_LABEL_PART_MAIN, &chFont_style); + lv_label_set_recolor(MaxQuo, true); + lv_label_set_text_fmt(MaxQuo,"昨 收:#ffa500 %0.2f# 最低:#ffa500 %0.2f#",stockInfo.CloseQuo,stockInfo.MinQuo); + //成交量 + lv_obj_add_style(MinQuo, LV_LABEL_PART_MAIN, &chFont_style); + lv_label_set_recolor(MinQuo, true); + lv_label_set_text_fmt(MinQuo,"成交量:#ffa500 %0.2f#万手",stockInfo.tradvolume/1000000); + //成交额 + lv_obj_add_style(CloseQuo, LV_LABEL_PART_MAIN, &chFont_style); + lv_label_set_recolor(CloseQuo, true); + lv_label_set_text_fmt(CloseQuo,"成交额:#ffa500 %0.2f#亿元",stockInfo.turnover/100000000); + + //绘制图形 + lv_obj_align(NameLabel, NULL, LV_ALIGN_IN_TOP_LEFT, 0, 0); + lv_obj_align(uplineLabel, NULL, LV_ALIGN_IN_LEFT_MID, 0, -70); + lv_obj_align(nowQuoLabel, uplineLabel, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 0); + lv_obj_align(ArrowImg, nowQuoLabel, LV_ALIGN_OUT_RIGHT_MID, 10, 0); + lv_obj_align(ChgValueLabel, ArrowImg, LV_ALIGN_OUT_RIGHT_TOP, 10, -5); + lv_obj_align(ChgPercentLabel, ChgValueLabel, LV_ALIGN_OUT_BOTTOM_MID, 0, 0); + lv_obj_align(lineLabel2, nowQuoLabel, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 0); + + lv_obj_align(OpenQuo, lineLabel2, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 0); + lv_obj_align(MaxQuo, OpenQuo, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 0); + lv_obj_align(MinQuo, MaxQuo, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 0); + lv_obj_align(CloseQuo, MinQuo, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 0); + lv_scr_load(stockmarket_gui); +} + +void stockmarket_obj_del(void) +{ + if (NULL != nowQuoLabel) + { + lv_obj_clean(nowQuoLabel); + lv_obj_clean(ArrowImg); + lv_obj_clean(ChgValueLabel); + lv_obj_clean(ChgPercentLabel); + lv_obj_clean(NameLabel); + lv_obj_clean(uplineLabel); + lv_obj_clean(lineLabel2); + lv_obj_clean(OpenQuo); + lv_obj_clean(MaxQuo); + lv_obj_clean(MinQuo); + lv_obj_clean(CloseQuo); + + nowQuoLabel = NULL; + ChgValueLabel = NULL; + ChgPercentLabel = NULL; + ArrowImg = NULL; + NameLabel = NULL; + uplineLabel = NULL; + lineLabel2 = NULL; + OpenQuo = NULL; + MaxQuo = NULL; + MinQuo = NULL; + CloseQuo = NULL; + } +} + +void stockmarket_gui_del(void) +{ + stockmarket_obj_del(); + if (NULL != stockmarket_gui) + { + lv_obj_clean(stockmarket_gui); + stockmarket_gui = NULL; + } + + // 手动清除样式,防止内存泄漏 + lv_style_reset(&default_style); + lv_style_reset(&numberBigRed_style); + lv_style_reset(&numberBigGreen_style); + lv_style_reset(&numberLittleGreen_style); + lv_style_reset(&numberLittleRed_style); + lv_style_reset(&chFont_style); + lv_style_reset(&splitline_style); +} \ No newline at end of file diff --git a/HoloCubic_Firmware/src/app/stockmarket/stockmarket_gui.h b/HoloCubic_Firmware/src/app/stockmarket/stockmarket_gui.h new file mode 100644 index 00000000..4b6153dd --- /dev/null +++ b/HoloCubic_Firmware/src/app/stockmarket/stockmarket_gui.h @@ -0,0 +1,55 @@ +#ifndef APP_STOCKMARKET_GUI_H +#define APP_STOCKMARKET_GUI_H + + +struct StockMarket +{ + float OpenQuo; //今日开盘价 + float CloseQuo; //昨日收盘价 + float NowQuo; //当前价 + float MaxQuo; //今日最高价 + float MinQuo; //今日最低价 + float ChgValue; //涨跌幅 + float ChgPercent; //涨跌率 + unsigned int updownflag; //升降标志 1:上涨 0:下跌 + char name[13]; //股票名称 + char code[9]; //股票代码 + float tradvolume; //成交量 + float turnover; //成交额 +}; + +#ifdef __cplusplus +extern "C" +{ +#endif + +#include "lvgl.h" +#define ANIEND \ + while (lv_anim_count_running()) \ + lv_task_handler(); //等待动画完成 + + void stockmarket_gui_init(void); + void display_stockmarket(struct StockMarket stockInfo, lv_scr_load_anim_t anim_type); + void stockmarket_obj_del(void); + void stockmarket_gui_del(void); + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#ifdef __cplusplus +extern "C" +{ +#endif + +#include "lvgl.h" + extern const lv_img_dsc_t app_stockmarket; + extern const lv_img_dsc_t stockmarket_logo_ico; + extern const lv_img_dsc_t down; + extern const lv_img_dsc_t up; + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif \ No newline at end of file diff --git a/HoloCubic_Firmware/src/app/stockmarket/stockmarket_ico.c b/HoloCubic_Firmware/src/app/stockmarket/stockmarket_ico.c new file mode 100644 index 00000000..7bd1ecf0 --- /dev/null +++ b/HoloCubic_Firmware/src/app/stockmarket/stockmarket_ico.c @@ -0,0 +1,407 @@ +#if defined(LV_LVGL_H_INCLUDE_SIMPLE) +#include "lvgl.h" +#else +#include "lvgl/lvgl.h" +#endif + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +#ifndef LV_ATTRIBUTE_IMG_APP_STOCK +#define LV_ATTRIBUTE_IMG_APP_STOCK +#endif + +#ifndef LV_ATTRIBUTE_IMG_AVATAR_ICO +#define LV_ATTRIBUTE_IMG_AVATAR_ICO +#endif + +#ifndef LV_ATTRIBUTE_IMG_STOCK +#define LV_ATTRIBUTE_IMG_STOCK +#endif + +#ifndef LV_ATTRIBUTE_IMG_DOWN +#define LV_ATTRIBUTE_IMG_DOWN +#endif + +#ifndef LV_ATTRIBUTE_IMG_UP +#define LV_ATTRIBUTE_IMG_UP +#endif + +const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_APP_STOCK uint8_t app_stockmarket_map[] = { + 0x00, 0x00, 0x00, 0x00, /*Color of index 0*/ + 0xfe, 0xfe, 0xfe, 0xff, /*Color of index 1*/ + 0xff, 0x00, 0x00, 0x12, /*Color of index 2*/ + 0xf8, 0xdd, 0xe1, 0xff, /*Color of index 3*/ + 0xfd, 0x00, 0x01, 0x41, /*Color of index 4*/ + 0xf7, 0xba, 0xbf, 0xff, /*Color of index 5*/ + 0xf6, 0xa0, 0xa5, 0xff, /*Color of index 6*/ + 0xff, 0x00, 0x00, 0x6f, /*Color of index 7*/ + 0xf4, 0x80, 0x87, 0xff, /*Color of index 8*/ + 0xf1, 0x67, 0x6f, 0xff, /*Color of index 9*/ + 0xfe, 0x00, 0x00, 0x9f, /*Color of index 10*/ + 0xf7, 0x55, 0x5a, 0xff, /*Color of index 11*/ + 0xf6, 0x36, 0x3b, 0xff, /*Color of index 12*/ + 0xfe, 0x00, 0x00, 0xd0, /*Color of index 13*/ + 0xf9, 0x17, 0x1b, 0xff, /*Color of index 14*/ + 0xfe, 0x00, 0x00, 0xfe, /*Color of index 15*/ + + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x24, 0x77, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x77, 0x42, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x47, 0xad, 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0xaa, 0x74, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x7a, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0xa4, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x4a, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x74, 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, 0x00, 0x00, 0x00, 0x00, 0x04, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xec, 0xcb, 0xbb, 0xbb, 0xbc, 0xce, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xcb, 0x85, 0x53, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x35, 0x59, 0xbe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc9, 0x53, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x36, 0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 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, 0x02, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x63, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x58, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x15, 0xbe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc6, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x35, 0x69, 0x9c, 0xce, 0xee, 0xee, 0xcc, 0xb9, 0x86, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0x8e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0x11, 0x11, 0x11, 0x11, 0x11, 0x38, 0x9e, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc9, 0x63, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0x11, 0x11, 0x11, 0x11, 0x15, 0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc8, 0x31, 0x11, 0x11, 0x11, 0x11, 0x8e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, 0x11, 0x11, 0x11, 0x11, 0x58, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x63, 0x11, 0x11, 0x11, 0x13, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x31, 0x11, 0x11, 0x11, 0x5b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x93, 0x11, 0x11, 0x11, 0x15, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x61, 0x11, 0x11, 0x11, 0x6c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb5, 0x11, 0x11, 0x11, 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb3, 0x11, 0x11, 0x11, 0x5c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, 0x11, 0x11, 0x11, 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x3b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x81, 0x11, 0x11, 0x13, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x61, 0x11, 0x11, 0x16, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x51, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x11, 0x11, 0x13, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x31, 0x11, 0x11, 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0x11, 0x11, 0x16, 0xff, 0xfe, 0xc8, 0x59, 0xff, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xc3, 0x11, 0x11, 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x51, 0x11, 0x11, 0x58, 0x53, 0x11, 0x1c, 0xff, 0xf7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x31, 0x11, 0x11, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x11, 0x11, 0x11, 0x11, 0x11, 0x3f, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x11, 0x11, 0x3b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0x86, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x8f, 0xff, 0xff, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xdf, 0xff, 0xff, 0xff, 0xfe, 0x31, 0x11, 0x11, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb, 0x85, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0xcf, 0xff, 0xff, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x85, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xff, 0xff, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0xff, 0xff, 0xff, 0xff, 0x61, 0x11, 0x11, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x16, 0xff, 0xff, 0xff, 0xff, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xdf, 0xff, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xcf, 0xff, 0xff, 0xff, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0a, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x5e, 0xff, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2f, 0xff, 0xff, 0xff, 0xfe, 0x51, 0x11, 0x16, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x18, 0xff, 0xff, 0xff, 0xff, 0xd2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xdf, 0xff, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0xbf, 0xff, 0xff, 0xff, 0xf7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x11, 0x11, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x3e, 0xff, 0xff, 0xff, 0xfd, 0x20, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0d, 0xff, 0xff, 0xff, 0xff, 0x31, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x15, 0x61, 0x11, 0x18, 0xff, 0xff, 0xff, 0xff, 0x70, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x4f, 0xff, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xe1, 0x11, 0x11, 0xcf, 0xff, 0xff, 0xff, 0xd2, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0xaf, 0xff, 0xff, 0xff, 0xe3, 0x11, 0x11, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0x1e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1e, 0xf9, 0x11, 0x11, 0x6f, 0xff, 0xff, 0xff, 0xf7, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x04, 0xff, 0xff, 0xff, 0xff, 0x81, 0x11, 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, 0x11, 0x15, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x5f, 0xff, 0x51, 0x11, 0x1c, 0xff, 0xff, 0xff, 0xfd, 0x20, 0x00, 0x00, + 0x00, 0x00, 0x0a, 0xff, 0xff, 0xff, 0xfe, 0x11, 0x11, 0x3e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x31, 0x11, 0x11, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x15, 0x31, 0x11, 0x11, 0x8f, 0xff, 0xb1, 0x11, 0x15, 0xff, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, + 0x00, 0x00, 0x2f, 0xff, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb3, 0x11, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xc3, 0x11, 0x11, 0xcf, 0xff, 0xf5, 0x11, 0x11, 0xcf, 0xff, 0xff, 0xff, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x7f, 0xff, 0xff, 0xff, 0xe3, 0x11, 0x13, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x11, 0x11, 0x13, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x18, 0xff, 0xfc, 0x31, 0x13, 0xff, 0xff, 0xfc, 0x11, 0x11, 0x5f, 0xff, 0xff, 0xff, 0xf2, 0x00, 0x00, + 0x00, 0x00, 0xdf, 0xff, 0xff, 0xff, 0x91, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x61, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x8f, 0xff, 0xff, 0xe5, 0x18, 0xff, 0xff, 0xff, 0x51, 0x11, 0x1c, 0xff, 0xff, 0xff, 0xf7, 0x00, 0x00, + 0x00, 0x04, 0xff, 0xff, 0xff, 0xff, 0x31, 0x11, 0x3e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xfe, 0x5c, 0xff, 0xff, 0xff, 0xc1, 0x11, 0x18, 0xff, 0xff, 0xff, 0xfd, 0x20, 0x00, + 0x00, 0x07, 0xff, 0xff, 0xff, 0xfc, 0x11, 0x11, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x61, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x11, 0x13, 0xef, 0xff, 0xff, 0xff, 0x40, 0x00, + 0x00, 0x2d, 0xff, 0xff, 0xff, 0xf6, 0x11, 0x11, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb3, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x3c, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x11, 0x11, 0xbf, 0xff, 0xff, 0xff, 0x70, 0x00, + 0x00, 0x2f, 0xff, 0xff, 0xff, 0xe3, 0x11, 0x15, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xcf, 0xff, 0xff, 0xff, 0xf9, 0x16, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x11, 0x11, 0x6f, 0xff, 0xff, 0xff, 0xd2, 0x00, + 0x00, 0x7f, 0xff, 0xff, 0xff, 0xb1, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x61, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xc3, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x5e, 0xff, 0xff, 0xff, 0xff, 0x91, 0x11, 0x5e, 0xff, 0xff, 0xff, 0xff, 0x61, 0x11, 0x1e, 0xff, 0xff, 0xff, 0xf2, 0x00, + 0x00, 0xaf, 0xff, 0xff, 0xff, 0x61, 0x11, 0x3e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x15, 0xef, 0xff, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x13, 0xcf, 0xff, 0xff, 0xff, 0xb1, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xf4, 0x00, + 0x02, 0xdf, 0xff, 0xff, 0xff, 0x31, 0x11, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x18, 0xff, 0xff, 0xff, 0xb3, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0xff, 0xff, 0x61, 0x11, 0x11, 0x11, 0x3c, 0xff, 0xff, 0xff, 0xe3, 0x11, 0x16, 0xff, 0xff, 0xff, 0xfa, 0x00, + 0x02, 0xff, 0xff, 0xff, 0xfc, 0x11, 0x11, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xb1, 0x11, 0x11, 0x11, 0x11, 0x11, 0xbf, 0xff, 0xfb, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x18, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xf5, 0x11, 0x13, 0xff, 0xff, 0xff, 0xfd, 0x20, + 0x04, 0xff, 0xff, 0xff, 0xf9, 0x11, 0x11, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xcf, 0xf6, 0x11, 0x11, 0x11, 0x11, 0x11, 0x3e, 0xff, 0x91, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x9f, 0xff, 0xff, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xf9, 0x11, 0x11, 0xef, 0xff, 0xff, 0xfd, 0x20, + 0x07, 0xff, 0xff, 0xff, 0xf6, 0x11, 0x13, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x3c, 0xff, 0xff, 0x31, 0x11, 0x11, 0x11, 0x11, 0x16, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xfc, 0x11, 0x11, 0xbf, 0xff, 0xff, 0xff, 0x40, + 0x2d, 0xff, 0xff, 0xff, 0xf3, 0x11, 0x16, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x15, 0xef, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0xcf, 0xff, 0xff, 0xff, 0xff, 0x61, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0x31, 0x11, 0x8f, 0xff, 0xff, 0xff, 0x72, + 0x2d, 0xff, 0xff, 0xff, 0xe1, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0x51, 0x11, 0x5f, 0xff, 0xff, 0xff, 0x72, + 0x4f, 0xff, 0xff, 0xff, 0xc1, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x91, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0x81, 0x11, 0x3f, 0xff, 0xff, 0xff, 0xa4, + 0x4f, 0xff, 0xff, 0xff, 0xb1, 0x11, 0x1e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0x91, 0x11, 0x1e, 0xff, 0xff, 0xff, 0xd7, + 0x7f, 0xff, 0xff, 0xff, 0x81, 0x11, 0x3e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x16, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x11, 0x1c, 0xff, 0xff, 0xff, 0xd7, + 0xaf, 0xff, 0xff, 0xff, 0x61, 0x11, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xcb, 0xff, 0xff, 0x61, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0xe1, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xfa, + 0xaf, 0xff, 0xff, 0xff, 0x51, 0x11, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xef, 0xff, 0xe3, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xe1, 0x11, 0x19, 0xff, 0xff, 0xff, 0xfa, + 0xaf, 0xff, 0xff, 0xff, 0x51, 0x11, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x16, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x6f, 0xff, 0xfc, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x8f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x11, 0x18, 0xff, 0xff, 0xff, 0xfa, + 0xaf, 0xff, 0xff, 0xff, 0x31, 0x11, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0xff, 0xee, 0xff, 0xff, 0xc1, 0x19, 0xff, 0xff, 0x81, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x11, 0x18, 0xff, 0xff, 0xff, 0xfa, + 0xaf, 0xff, 0xff, 0xff, 0x31, 0x11, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xfb, 0x3c, 0xff, 0xff, 0xc1, 0x11, 0xcf, 0xff, 0xe5, 0x11, 0x11, 0x11, 0x13, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x11, 0x16, 0xff, 0xff, 0xff, 0xfa, + 0xaf, 0xff, 0xff, 0xff, 0x31, 0x11, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xc3, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0xbf, 0xff, 0xff, 0xff, 0x81, 0x1e, 0xff, 0xff, 0xc1, 0x11, 0x3f, 0xff, 0xfc, 0x11, 0x11, 0x11, 0x3c, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x51, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x11, 0x16, 0xff, 0xff, 0xff, 0xfa, + 0xaf, 0xff, 0xff, 0xfe, 0x31, 0x11, 0x8f, 0xff, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x3c, 0xff, 0xff, 0xff, 0xc3, 0x11, 0x1c, 0xff, 0xff, 0xc1, 0x11, 0x16, 0xff, 0xff, 0x91, 0x11, 0x13, 0xef, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x11, 0x16, 0xff, 0xff, 0xff, 0xfa, + 0xaf, 0xff, 0xff, 0xff, 0x31, 0x11, 0x8f, 0xff, 0xff, 0xff, 0x61, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xef, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x1e, 0xff, 0xff, 0xc1, 0x11, 0x11, 0xbf, 0xff, 0xf5, 0x11, 0x5e, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x11, 0x16, 0xff, 0xff, 0xff, 0xfa, + 0xaf, 0xff, 0xff, 0xff, 0x31, 0x11, 0x8f, 0xff, 0xff, 0xe5, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x5e, 0xff, 0xff, 0xfe, 0x51, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x3c, 0xff, 0xfe, 0x35, 0xff, 0xff, 0xff, 0xff, 0xff, 0x91, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x11, 0x16, 0xff, 0xff, 0xff, 0xfa, + 0xaf, 0xff, 0xff, 0xff, 0x31, 0x11, 0x6f, 0xff, 0xfc, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x16, 0xff, 0xff, 0xff, 0xb3, 0x11, 0x11, 0x11, 0x1e, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x15, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x11, 0x18, 0xff, 0xff, 0xff, 0xfa, + 0xaf, 0xff, 0xff, 0xff, 0x51, 0x11, 0x6f, 0xff, 0xf5, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x8f, 0xff, 0xff, 0xf6, 0x11, 0x11, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x61, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x11, 0x18, 0xff, 0xff, 0xff, 0xfa, + 0xaf, 0xff, 0xff, 0xff, 0x61, 0x11, 0x5f, 0xff, 0xf3, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xfc, 0x31, 0x11, 0x11, 0x11, 0x11, 0x1e, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xe1, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xfa, + 0x7f, 0xff, 0xff, 0xff, 0x61, 0x11, 0x3f, 0xff, 0xf3, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0xcf, 0xff, 0xff, 0x91, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x13, 0xef, 0xff, 0xff, 0xff, 0xfe, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0xe1, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xf7, + 0x7f, 0xff, 0xff, 0xff, 0x81, 0x11, 0x3e, 0xff, 0xf3, 0x11, 0x11, 0x11, 0x11, 0x11, 0x3c, 0xff, 0xff, 0xfe, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1e, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x5f, 0xff, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xb1, 0x11, 0x1c, 0xff, 0xff, 0xff, 0xd4, + 0x4f, 0xff, 0xff, 0xff, 0xb1, 0x11, 0x1e, 0xff, 0xf3, 0x11, 0x11, 0x11, 0x11, 0x15, 0xef, 0xff, 0xff, 0xfe, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x18, 0xff, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0x91, 0x11, 0x1e, 0xff, 0xff, 0xff, 0xd7, + 0x2d, 0xff, 0xff, 0xff, 0xc1, 0x11, 0x1b, 0xff, 0xf3, 0x11, 0x11, 0x11, 0x11, 0x6e, 0xff, 0xff, 0xff, 0xff, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1e, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0xcf, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0x81, 0x11, 0x3f, 0xff, 0xff, 0xff, 0x72, + 0x2d, 0xff, 0xff, 0xff, 0xe1, 0x11, 0x18, 0xff, 0xf3, 0x11, 0x11, 0x11, 0x18, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x3e, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0x51, 0x11, 0x5f, 0xff, 0xff, 0xff, 0xa2, + 0x27, 0xff, 0xff, 0xff, 0xf5, 0x11, 0x16, 0xff, 0xf3, 0x11, 0x11, 0x11, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1e, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x16, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xfe, 0x31, 0x11, 0x8f, 0xff, 0xff, 0xff, 0x42, + 0x07, 0xff, 0xff, 0xff, 0xf6, 0x11, 0x13, 0xff, 0xf3, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xfe, 0xbf, 0xff, 0xfe, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xfc, 0x11, 0x11, 0xbf, 0xff, 0xff, 0xff, 0x20, + 0x04, 0xff, 0xff, 0xff, 0xf9, 0x11, 0x11, 0xcf, 0xf3, 0x11, 0x13, 0xcf, 0xff, 0xff, 0xc5, 0x5f, 0xff, 0xff, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1e, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xf9, 0x11, 0x11, 0xef, 0xff, 0xff, 0xfd, 0x20, + 0x02, 0xdf, 0xff, 0xff, 0xfc, 0x11, 0x11, 0x9f, 0xf3, 0x11, 0x3e, 0xff, 0xff, 0xfb, 0x11, 0x6f, 0xff, 0xfe, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xf5, 0x11, 0x13, 0xff, 0xff, 0xff, 0xfa, 0x00, + 0x00, 0xaf, 0xff, 0xff, 0xff, 0x31, 0x11, 0x5f, 0xf3, 0x15, 0xff, 0xff, 0xfe, 0x61, 0x11, 0x6f, 0xff, 0xff, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1e, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xe3, 0x11, 0x18, 0xff, 0xff, 0xff, 0xf7, 0x00, + 0x00, 0x7f, 0xff, 0xff, 0xff, 0x81, 0x11, 0x1e, 0xf3, 0x6f, 0xff, 0xff, 0xc5, 0x11, 0x11, 0x6f, 0xff, 0xfe, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xb1, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xf2, 0x00, + 0x00, 0x4f, 0xff, 0xff, 0xff, 0xb1, 0x11, 0x1b, 0xfb, 0xff, 0xff, 0xf9, 0x31, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1e, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0x61, 0x11, 0x3e, 0xff, 0xff, 0xff, 0xd2, 0x00, + 0x00, 0x2d, 0xff, 0xff, 0xff, 0xf3, 0x11, 0x15, 0xff, 0xff, 0xff, 0x61, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xfe, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xfe, 0x11, 0x11, 0x6f, 0xff, 0xff, 0xff, 0xa0, 0x00, + 0x00, 0x07, 0xff, 0xff, 0xff, 0xf6, 0x11, 0x11, 0xcf, 0xff, 0xc3, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1e, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xf9, 0x11, 0x11, 0xbf, 0xff, 0xff, 0xff, 0x40, 0x00, + 0x00, 0x04, 0xff, 0xff, 0xff, 0xfc, 0x11, 0x11, 0x8f, 0xfe, 0x31, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xfe, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0xf3, 0x11, 0x13, 0xff, 0xff, 0xff, 0xff, 0x20, 0x00, + 0x00, 0x02, 0xdf, 0xff, 0xff, 0xff, 0x51, 0x11, 0x3e, 0xfe, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1e, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xb1, 0x11, 0x18, 0xff, 0xff, 0xff, 0xfa, 0x00, 0x00, + 0x00, 0x00, 0xaf, 0xff, 0xff, 0xff, 0x91, 0x11, 0x19, 0xfe, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xfe, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xff, 0x51, 0x11, 0x1e, 0xff, 0xff, 0xff, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x2f, 0xff, 0xff, 0xff, 0xe3, 0x11, 0x13, 0xee, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1e, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xfc, 0x11, 0x11, 0x6f, 0xff, 0xff, 0xff, 0xd2, 0x00, 0x00, + 0x00, 0x00, 0x0d, 0xff, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x9f, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xfe, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0xf5, 0x11, 0x11, 0xcf, 0xff, 0xff, 0xff, 0x70, 0x00, 0x00, + 0x00, 0x00, 0x04, 0xff, 0xff, 0xff, 0xfe, 0x31, 0x11, 0x3c, 0x31, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1e, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xff, 0xb1, 0x11, 0x16, 0xff, 0xff, 0xff, 0xff, 0x20, 0x00, 0x00, + 0x00, 0x00, 0x02, 0xdf, 0xff, 0xff, 0xff, 0x81, 0x11, 0x16, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xfe, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x19, 0xff, 0x31, 0x11, 0x1c, 0xff, 0xff, 0xff, 0xfa, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x7f, 0xff, 0xff, 0xff, 0xf3, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1e, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xf8, 0x11, 0x11, 0x6f, 0xff, 0xff, 0xff, 0xf2, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x2d, 0xff, 0xff, 0xff, 0xfb, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xfe, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0xe1, 0x11, 0x11, 0xef, 0xff, 0xff, 0xff, 0xa0, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x07, 0xff, 0xff, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1e, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x6f, 0xff, 0xff, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x1b, 0x51, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0x20, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0xdf, 0xff, 0xff, 0xff, 0xc1, 0x11, 0x11, 0x13, 0x33, 0x33, 0x33, 0x6f, 0xff, 0xff, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x3e, 0xff, 0xff, 0xc3, 0x33, 0x33, 0x33, 0x33, 0x33, 0x35, 0xff, 0xff, 0xf9, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x8f, 0xff, 0xff, 0x63, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x11, 0x11, 0x3f, 0xff, 0xff, 0xff, 0xfa, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x4f, 0xff, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x3e, 0xef, 0xef, 0xef, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xef, 0xef, 0xef, 0xef, 0xef, 0xef, 0xef, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xc1, 0x11, 0x11, 0xcf, 0xff, 0xff, 0xff, 0xd2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0d, 0xff, 0xff, 0xff, 0xff, 0x51, 0x11, 0x16, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x31, 0x11, 0x18, 0xff, 0xff, 0xff, 0xff, 0x70, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x04, 0xff, 0xff, 0xff, 0xff, 0xe1, 0x11, 0x11, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x11, 0x11, 0x5f, 0xff, 0xff, 0xff, 0xfd, 0x20, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xff, 0xff, 0xff, 0xfb, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x51, 0x11, 0x13, 0xef, 0xff, 0xff, 0xff, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0xff, 0xff, 0xff, 0xff, 0x81, 0x11, 0x11, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x11, 0x11, 0x1c, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0x11, 0x11, 0x9f, 0xff, 0xff, 0xff, 0xfd, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xff, 0xff, 0xff, 0xfe, 0x51, 0x11, 0x11, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x11, 0x11, 0x18, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2a, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x11, 0x11, 0x19, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x61, 0x11, 0x11, 0x6f, 0xff, 0xff, 0xff, 0xff, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xdf, 0xff, 0xff, 0xff, 0xfe, 0x31, 0x11, 0x11, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, 0x11, 0x11, 0x16, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x11, 0x11, 0x16, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x31, 0x11, 0x11, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x51, 0x11, 0x11, 0x5c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb1, 0x11, 0x11, 0x16, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x11, 0x11, 0x13, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x11, 0x11, 0x11, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0xff, 0xff, 0xff, 0xff, 0xff, 0x61, 0x11, 0x11, 0x16, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x31, 0x11, 0x11, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x11, 0x11, 0x11, 0x39, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x61, 0x11, 0x11, 0x13, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0x11, 0x11, 0x11, 0x3b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x83, 0x11, 0x11, 0x11, 0x6e, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x61, 0x11, 0x11, 0x11, 0x5b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x93, 0x11, 0x11, 0x11, 0x39, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x31, 0x11, 0x11, 0x11, 0x59, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x83, 0x11, 0x11, 0x11, 0x16, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9, 0x11, 0x11, 0x11, 0x11, 0x36, 0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb, 0x61, 0x11, 0x11, 0x11, 0x13, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, 0x11, 0x11, 0x11, 0x11, 0x15, 0x8c, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xb6, 0x31, 0x11, 0x11, 0x11, 0x13, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc6, 0x11, 0x11, 0x11, 0x11, 0x11, 0x36, 0x8c, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0xb8, 0x51, 0x11, 0x11, 0x11, 0x11, 0x13, 0x8e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x15, 0x58, 0x89, 0xcc, 0xcc, 0xcc, 0xcb, 0x98, 0x65, 0x31, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x16, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 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, 0x27, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x95, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0x5b, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb, 0x65, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0x58, 0xbe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb, 0x96, 0x53, 0x31, 0x11, 0x11, 0x11, 0x11, 0x33, 0x36, 0x6b, 0xce, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x7d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0xec, 0xcc, 0xcc, 0xce, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x7d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x7a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2a, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0xad, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x47, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xda, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x47, 0x7d, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0xaa, 0x42, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x24, 0x77, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x77, 0x42, 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, +}; + +const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_STOCK uint8_t stockmarket_map[] = { + 0x10, 0x4F, 0x6A, 0xFF, /*Color of index 0*/ + 0x21, 0x6F, 0x8F, 0xFF, /*Color of index 1*/ + 0x29, 0xA3, 0xD2, 0xFF, /*Color of index 2*/ + 0x31, 0x8B, 0xAF, 0xFF, /*Color of index 3*/ + 0x01, 0x20, 0x32, 0xFF, /*Color of index 4*/ + 0x01, 0x2B, 0x45, 0xFF, /*Color of index 5*/ + 0x48, 0x93, 0xB3, 0xFF, /*Color of index 6*/ + 0x43, 0x9F, 0xC7, 0xFF, /*Color of index 7*/ + 0x46, 0x78, 0x90, 0xFF, /*Color of index 8*/ + 0x01, 0x02, 0x04, 0xFF, /*Color of index 9*/ + 0x26, 0xAC, 0xE4, 0xFF, /*Color of index 10*/ + 0x34, 0xAA, 0xD8, 0xFF, /*Color of index 11*/ + 0x26, 0xB0, 0xE5, 0xFF, /*Color of index 12*/ + 0x00, 0x17, 0x29, 0xFF, /*Color of index 13*/ + 0x45, 0xA7, 0xD0, 0xFF, /*Color of index 14*/ + 0x05, 0x37, 0x4D, 0xFF, /*Color of index 15*/ + + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD0, 0x23, 0x59, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0x23, 0xF9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xFE, 0xBE, 0x34, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x06, 0xBB, 0x6D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x0E, 0xAA, 0xB3, 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0x7B, 0xBB, 0x6D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x43, 0xBA, 0xAB, 0x34, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x02, 0xBC, 0xBE, 0x04, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x94, 0x3B, 0xAA, 0xB3, 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0xBB, 0xCB, 0xE1, 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD4, 0x59, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xDF, 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x43, 0xBA, 0xCB, 0x34, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x07, 0x2C, 0xBB, 0x1D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD0, 0x16, 0x89, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x40, 0x66, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x94, 0x3B, 0xAB, 0xB3, 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x4F, 0x2A, 0xAB, 0xE1, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x94, 0x51, 0x3B, 0xBE, 0x69, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x01, 0x2B, 0xBE, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x53, 0xBA, 0xBB, 0x35, 0x99, 0x99, 0x99, 0x99, 0x99, 0x0E, 0xAA, 0xAB, 0x1D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0xF1, 0x7B, 0xBA, 0xAB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x94, 0x03, 0xEB, 0xAA, 0x22, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x49, 0x94, 0x4F, 0x3A, 0xAA, 0xB3, 0x59, 0x44, 0x99, 0x9D, 0xD0, 0xBA, 0xAA, 0xB1, 0xD4, 0x44, 0x49, 0x99, 0x94, 0x44, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x56, 0xEB, 0xBB, 0xCA, 0xAA, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x07, 0xBB, 0xBB, 0xA2, 0x2B, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x40, 0x11, 0x33, 0x11, 0x13, 0x13, 0x31, 0x33, 0x2B, 0xAA, 0xAA, 0x33, 0x11, 0x11, 0x11, 0x32, 0xCA, 0x2C, 0xB3, 0x13, 0x11, 0x13, 0x31, 0x11, 0x11, 0x10, 0xF4, 0x99, 0x99, 0x99, 0x99, 0x99, 0x57, 0xBA, 0xAA, 0xAA, 0xAB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x0E, 0xAA, 0xAA, 0xAC, 0x2B, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0xD1, 0x2E, 0xBB, 0xBB, 0xBA, 0xAA, 0xBB, 0xBB, 0xCB, 0xBC, 0xAA, 0x2A, 0xAB, 0xBA, 0xAA, 0xCB, 0xBC, 0xAA, 0x2C, 0xBB, 0xAA, 0xBA, 0xBA, 0xAB, 0xBB, 0xAB, 0xBB, 0xB1, 0xF9, 0x99, 0x99, 0x99, 0x99, 0xD3, 0xBA, 0xAA, 0xAA, 0xAB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x94, 0xDD, 0xDD, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x0E, 0xBA, 0xCA, 0xAA, 0xAB, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0xDD, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x94, 0x3B, 0xAA, 0xCA, 0xCC, 0xAA, 0xAA, 0xC2, 0xCC, 0xAC, 0xCA, 0xCA, 0xAA, 0xAA, 0xAA, 0xA2, 0xAA, 0xAA, 0xAA, 0xC2, 0xCC, 0xAA, 0xC2, 0xCA, 0xAA, 0xA2, 0x2A, 0xAA, 0xAB, 0xE0, 0x99, 0x99, 0x99, 0x99, 0x91, 0xBA, 0xAA, 0xAA, 0xCB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x40, 0x13, 0x36, 0x60, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x47, 0xBA, 0xAA, 0xAA, 0xAB, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x01, 0x13, 0x66, 0x64, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x43, 0xBA, 0xAA, 0xAB, 0xAC, 0x2A, 0xCA, 0xAA, 0xAA, 0x22, 0xAA, 0xA2, 0xAC, 0xCC, 0xAA, 0xAA, 0xAA, 0xAA, 0xCA, 0xCA, 0xAA, 0xAA, 0xCC, 0xAA, 0xAA, 0xA2, 0x2C, 0xAA, 0xAA, 0xBE, 0x09, 0x99, 0x99, 0x99, 0x90, 0xBA, 0xAA, 0xAA, 0xCB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xFE, 0xEA, 0xAA, 0xE1, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD6, 0xBA, 0xAA, 0xAA, 0xAB, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x1E, 0xBB, 0xBB, 0xEF, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x1B, 0xAC, 0xAA, 0xAA, 0xBB, 0x2B, 0xBB, 0xAA, 0xBA, 0xAA, 0xAA, 0xBA, 0xAA, 0xBB, 0xAA, 0xBA, 0xAA, 0xAA, 0xBC, 0xBA, 0xAA, 0xAB, 0xBB, 0xBB, 0xAB, 0xBB, 0xA2, 0xAC, 0xAA, 0xCB, 0x65, 0x99, 0x99, 0x99, 0x90, 0xBC, 0xAA, 0xAA, 0xCB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x46, 0xB2, 0x2A, 0xA1, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x91, 0xAA, 0xAA, 0xAA, 0xAB, 0xF9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x0E, 0xBC, 0xCB, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x9F, 0xEA, 0xAA, 0xCB, 0xAA, 0xAB, 0xBB, 0xB2, 0xBB, 0xBB, 0xBB, 0xAB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xB2, 0xBB, 0xBB, 0xBB, 0xB2, 0xBB, 0xBB, 0xBB, 0xBB, 0xAC, 0xAA, 0xC2, 0xAA, 0xB1, 0x49, 0x99, 0x99, 0x94, 0xBC, 0xCA, 0xAA, 0xAB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD3, 0xBA, 0xAA, 0xC1, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0xEA, 0xAA, 0xAA, 0xAB, 0xF9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xFE, 0xB2, 0x2B, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0xD1, 0xBA, 0xAC, 0xBB, 0xB2, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x10, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x13, 0xBB, 0xC2, 0xAA, 0xAE, 0xF9, 0x99, 0x99, 0x9D, 0x2B, 0xCA, 0xAA, 0xAB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x91, 0xBA, 0xAA, 0xA3, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0xBA, 0xAA, 0xAA, 0xAE, 0xF9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x52, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0xF7, 0xBA, 0xAA, 0xAB, 0x35, 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x1B, 0xB2, 0xCA, 0xAB, 0x19, 0x99, 0x99, 0x99, 0x3C, 0xAA, 0xAA, 0xAB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0xBC, 0xAA, 0xA3, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x94, 0xBC, 0xAA, 0xAA, 0xAB, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD3, 0xBA, 0xAA, 0xB1, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x1B, 0xAA, 0xAA, 0xA2, 0x59, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x41, 0xCA, 0xBC, 0xAB, 0x3D, 0x99, 0x99, 0x99, 0x1B, 0xBA, 0xAA, 0xCB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0xBC, 0xCA, 0xA3, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2C, 0xAA, 0xAA, 0xAB, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x91, 0xCA, 0xAC, 0xB1, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x3B, 0xAC, 0xAA, 0xB1, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9F, 0xBC, 0xCC, 0xAA, 0x64, 0x99, 0x99, 0x99, 0x0B, 0xBA, 0xAA, 0xAB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9F, 0xBB, 0xAA, 0xA3, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x3C, 0xAA, 0xAA, 0xAB, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x91, 0xBC, 0xCA, 0xB1, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x2A, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2C, 0xAA, 0xAB, 0xEF, 0x99, 0x99, 0x99, 0xFE, 0xBA, 0xAA, 0xAB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x94, 0x2A, 0xAC, 0xCB, 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x12, 0xBA, 0xAA, 0xAB, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0xBC, 0xAB, 0xA1, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x2A, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xCA, 0xAA, 0xE0, 0x99, 0x99, 0x99, 0x57, 0xBA, 0xAA, 0xAB, 0x34, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x3A, 0xAA, 0xAB, 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x0B, 0xBA, 0xAA, 0xAB, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9F, 0xBA, 0xAA, 0xA3, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x2A, 0xBA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2C, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0xD6, 0xBA, 0xAA, 0xAA, 0x3D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x94, 0xFF, 0x49, 0x99, 0x3A, 0xAA, 0xAB, 0xF9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x0E, 0xBA, 0xAA, 0xAB, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x94, 0xFF, 0x99, 0x94, 0xBA, 0xAA, 0xA3, 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x2A, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2C, 0xBA, 0xCB, 0xB0, 0x99, 0x99, 0x99, 0xD1, 0xBC, 0xAA, 0xAA, 0x3D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0x11, 0xD1, 0xEE, 0x09, 0x99, 0x1B, 0xAA, 0xAB, 0xF9, 0x99, 0x4F, 0xFD, 0x40, 0xFF, 0x99, 0x99, 0xF7, 0xBA, 0xAA, 0xAB, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x40, 0x10, 0x46, 0xEE, 0xF9, 0x9D, 0x3A, 0xAA, 0xA2, 0xD9, 0x99, 0x4F, 0xFD, 0xF0, 0xF4, + 0x2A, 0xAA, 0xAA, 0xE0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xCA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x91, 0xBC, 0xAA, 0xAA, 0x3D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD6, 0xEE, 0xF0, 0xAA, 0x19, 0x99, 0x0B, 0xBA, 0xCB, 0x09, 0x99, 0x1E, 0x6F, 0x0E, 0xE6, 0x99, 0x99, 0xD6, 0xBA, 0xAA, 0xAB, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xF6, 0x73, 0xD6, 0xBE, 0x09, 0x99, 0x3A, 0xAA, 0xA2, 0xD9, 0x9D, 0x6E, 0x6D, 0x1E, 0xE1, + 0x2A, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD4, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x90, 0xBA, 0xAA, 0xAB, 0x3D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x91, 0xEB, 0x00, 0xAA, 0x34, 0x99, 0x0B, 0xAA, 0xAB, 0x09, 0x99, 0x1E, 0xE0, 0x0E, 0xB3, 0xD9, 0x99, 0xD3, 0xBA, 0xAA, 0xAB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x46, 0xB2, 0x51, 0xB2, 0x09, 0x99, 0x1B, 0xBC, 0xA2, 0xD9, 0x9D, 0x3E, 0x65, 0x1E, 0xE1, + 0x2A, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x4F, 0x01, 0x60, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x01, 0x10, 0xFD, 0x49, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xAA, 0xAB, 0xE0, 0x99, 0x99, 0x99, 0x90, 0xBA, 0xAA, 0xAA, 0x34, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0xBB, 0x0F, 0xBA, 0x3D, 0x99, 0xFE, 0xBC, 0xCB, 0x09, 0x99, 0x1B, 0xE0, 0x0E, 0xA3, 0x99, 0x99, 0x91, 0xB2, 0xCA, 0xAB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD3, 0xBB, 0x51, 0xCB, 0x09, 0x99, 0x1B, 0xBA, 0xAB, 0x49, 0x9D, 0x3B, 0x65, 0x1B, 0xB1, + 0x2A, 0xAA, 0xAA, 0xE0, 0x99, 0x99, 0x99, 0xD5, 0x01, 0x13, 0x2B, 0xBB, 0xB1, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x94, 0x3C, 0xBB, 0xB2, 0x31, 0x0F, 0x5D, 0x99, 0x99, 0x9D, 0x2C, 0xAC, 0xAA, 0xE0, 0x99, 0x99, 0x99, 0x9F, 0xBA, 0xAA, 0xAA, 0xB5, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0xBB, 0x1F, 0xBA, 0x6D, 0x99, 0x57, 0xBC, 0xAB, 0x19, 0x99, 0x0E, 0xB0, 0x0E, 0xB3, 0x49, 0x99, 0x90, 0xBA, 0xCA, 0xAB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x91, 0xBB, 0xF0, 0xBB, 0x19, 0x99, 0x0B, 0xBA, 0xAB, 0xF9, 0x94, 0x3B, 0x65, 0x12, 0xB1, + 0x2A, 0xAC, 0xAA, 0xE0, 0x99, 0x94, 0x01, 0x37, 0xBA, 0x2B, 0xAA, 0xAA, 0xC3, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x94, 0x2C, 0xCA, 0xAA, 0xAA, 0xBE, 0x63, 0x10, 0x99, 0x9D, 0x2C, 0xAC, 0xAA, 0xE0, 0x99, 0x99, 0x99, 0x94, 0x2A, 0xAA, 0xAB, 0xBF, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x94, 0xBB, 0x15, 0x2C, 0x75, 0x99, 0xD3, 0xBA, 0xAB, 0x19, 0x99, 0x0E, 0xE0, 0xFE, 0xA3, 0x99, 0x99, 0x90, 0xBA, 0xCC, 0xAB, 0x3D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0xBB, 0x00, 0xB2, 0x19, 0x99, 0xFB, 0xBA, 0xAB, 0xF9, 0x99, 0x3B, 0x65, 0x1B, 0xB1, + 0x2A, 0xAA, 0xAA, 0xE0, 0x99, 0x9D, 0x67, 0xBB, 0xBB, 0xBC, 0xAA, 0xAA, 0xC3, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9F, 0xBB, 0xAC, 0xAA, 0xAA, 0xBB, 0xBB, 0xE1, 0x99, 0x9D, 0x2C, 0xAC, 0xAA, 0xE0, 0x99, 0x99, 0x99, 0x9D, 0x3A, 0xAA, 0xAB, 0xBF, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x3B, 0x35, 0x2B, 0xEF, 0x99, 0x93, 0xBA, 0xAB, 0x19, 0x99, 0x0E, 0xE0, 0xFE, 0xB3, 0x49, 0x99, 0x9F, 0xBA, 0xAA, 0xAB, 0x3D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9F, 0xBB, 0x0F, 0xBA, 0x3D, 0x99, 0x4E, 0xBA, 0xAB, 0x09, 0x99, 0x1E, 0x65, 0x1B, 0xB1, + 0x2A, 0xAA, 0xAA, 0xE0, 0x99, 0x99, 0x3B, 0xAA, 0xAB, 0xBB, 0xBA, 0xAB, 0xB6, 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0xEB, 0xBB, 0xBB, 0xAB, 0xAB, 0xAB, 0xB0, 0x99, 0x9D, 0x3C, 0xAA, 0xAA, 0xE0, 0x99, 0x99, 0x99, 0x99, 0x3A, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x1E, 0x6D, 0x3E, 0xE0, 0x99, 0x91, 0xBC, 0xAB, 0x3D, 0x99, 0xFE, 0xE0, 0xFE, 0xB3, 0x99, 0x99, 0x94, 0xBA, 0xAA, 0xAB, 0x3D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x94, 0x7E, 0x15, 0xEE, 0x6D, 0x99, 0x46, 0xBA, 0xAB, 0x09, 0x99, 0x1E, 0x65, 0x1E, 0xE1, + 0x2A, 0xC2, 0xAA, 0xB0, 0x99, 0x99, 0x1B, 0xAB, 0xCB, 0xBE, 0x76, 0x10, 0x04, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0xF0, 0x01, 0x37, 0xBB, 0x22, 0xCB, 0xBF, 0x99, 0x9D, 0x3C, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x1A, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x1E, 0x6D, 0x08, 0x1F, 0x99, 0x90, 0xBA, 0xCB, 0x3D, 0x99, 0xF6, 0xE0, 0xF6, 0xE3, 0xD9, 0x99, 0x9D, 0x3C, 0xAA, 0xAB, 0x64, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x6E, 0x0D, 0x11, 0x0D, 0x99, 0xD3, 0xBA, 0xAB, 0x09, 0x99, 0x0E, 0x65, 0x1E, 0xE1, + 0x2A, 0xCC, 0xAA, 0xB0, 0x99, 0x99, 0x0E, 0xE2, 0x31, 0x00, 0x5D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x94, 0xDF, 0x01, 0x13, 0xBE, 0x64, 0x99, 0x9D, 0x2A, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x1B, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x40, 0x49, 0xD9, 0x99, 0x99, 0x90, 0xBC, 0x2C, 0x3D, 0x99, 0xD1, 0x15, 0x40, 0x10, 0x49, 0x99, 0x94, 0x3C, 0xAA, 0xAB, 0x75, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x0F, 0xD9, 0x99, 0x99, 0x99, 0x91, 0xBA, 0xAB, 0x19, 0x99, 0x01, 0x0D, 0xF0, 0x00, + 0x2A, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x40, 0xFD, 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x4F, 0x09, 0x99, 0x9D, 0x2A, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x0E, 0xAA, 0xAA, 0xB1, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9F, 0xBC, 0xAB, 0x64, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x1B, 0xAA, 0xAB, 0xEF, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x91, 0xBA, 0xCB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x2A, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xAA, 0xAB, 0xE0, 0x99, 0x99, 0x99, 0x99, 0xFE, 0xBA, 0xAA, 0xA1, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x4D, 0xFF, 0x0F, 0x99, 0x95, 0xBA, 0xAB, 0x75, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x1B, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD4, 0xFF, 0x04, 0x99, 0x90, 0xBA, 0xAB, 0x14, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x2A, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xAA, 0xAB, 0xE0, 0x99, 0x99, 0x99, 0x99, 0x57, 0xBA, 0xCA, 0x23, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x40, 0x32, 0xBB, 0xB6, 0x49, 0x9D, 0x2A, 0xAB, 0xEF, 0x99, 0x9F, 0x00, 0x00, 0x0F, 0x99, 0x99, 0x99, 0x0B, 0xBA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xF1, 0x3B, 0xBB, 0xE1, 0x99, 0x90, 0xEA, 0xAA, 0x3D, 0x99, 0x40, 0x00, 0x00, 0x04, + 0x2A, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xAA, 0xAB, 0xE0, 0x99, 0x99, 0x99, 0x99, 0xD3, 0xBA, 0xCA, 0xC3, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD6, 0xBA, 0xAC, 0x2B, 0xF9, 0x9D, 0x3A, 0xAA, 0xE0, 0x99, 0xD6, 0xEB, 0xEE, 0xE6, 0x49, 0x99, 0x99, 0x0E, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xFE, 0xCA, 0xAA, 0xC3, 0xD9, 0x9F, 0xEA, 0xAA, 0x3D, 0x99, 0x0E, 0xEE, 0xBE, 0xE1, + 0x2A, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xAA, 0xAB, 0xE0, 0x99, 0x99, 0x99, 0x99, 0xD3, 0xBA, 0xAA, 0xA3, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x91, 0xBC, 0xCA, 0xAB, 0x09, 0x94, 0x3A, 0xAA, 0xE0, 0x99, 0xD6, 0xBB, 0xAB, 0xBB, 0x49, 0x99, 0x99, 0xFE, 0xBA, 0xAA, 0xB1, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x46, 0xBC, 0xAA, 0xC2, 0x49, 0x95, 0xBA, 0xAA, 0x34, 0x99, 0x0E, 0xBA, 0xBB, 0xB3, + 0x2A, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xAA, 0xAB, 0xE0, 0x99, 0x99, 0x99, 0x99, 0x91, 0xBA, 0xAA, 0xA2, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0xB2, 0xAA, 0xAB, 0x09, 0x99, 0x1A, 0xAA, 0xB0, 0x99, 0x93, 0xBC, 0xAA, 0xAB, 0x49, 0x99, 0x99, 0x52, 0xAA, 0xAA, 0xA1, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD3, 0xBC, 0xAC, 0xAB, 0xF9, 0x94, 0x2A, 0xAB, 0x25, 0x99, 0xFE, 0xA2, 0x2C, 0xB3, + 0x2A, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x4D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xAA, 0xAB, 0xE0, 0x99, 0x99, 0x99, 0x99, 0x91, 0xBA, 0xAA, 0xAB, 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9F, 0xEA, 0xAA, 0xAB, 0x19, 0x99, 0x1A, 0xAA, 0xB1, 0x99, 0x91, 0xBC, 0xAA, 0xCB, 0x59, 0x99, 0x99, 0xD3, 0xBA, 0xAA, 0xA3, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x91, 0xBA, 0xAC, 0xAB, 0x09, 0x9D, 0x2A, 0xAB, 0xEF, 0x99, 0xFE, 0xAC, 0xCA, 0xB2, + 0x2A, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x60, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xAA, 0xAA, 0xE0, 0x99, 0x99, 0x99, 0x99, 0x90, 0xBA, 0xAA, 0xAB, 0xF9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x94, 0xBA, 0xAA, 0xAB, 0x39, 0x99, 0x0B, 0xAA, 0xA1, 0x99, 0x91, 0xBA, 0xAA, 0x2B, 0x59, 0x99, 0x99, 0x43, 0xBA, 0xAA, 0xC3, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0xEA, 0xAA, 0xAB, 0x09, 0x9D, 0x3A, 0xAB, 0xEF, 0x99, 0x57, 0xBA, 0xCA, 0xC2, + 0x2A, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD0, 0x09, 0x99, 0x91, 0xE3, 0x49, 0x99, 0x40, 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xAA, 0xAA, 0xE0, 0x99, 0x99, 0x99, 0x99, 0x90, 0xBA, 0xAA, 0xAA, 0x10, 0x00, 0x00, 0x00, 0xF4, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x3C, 0xAC, 0xAB, 0x3D, 0x99, 0x0B, 0xAA, 0xA3, 0x99, 0x90, 0xBC, 0xAA, 0xAB, 0xF9, 0x99, 0x99, 0x91, 0xBA, 0xCA, 0x2B, 0x00, 0x01, 0x10, 0x00, 0xF4, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9F, 0xEA, 0xAA, 0xAA, 0x19, 0x99, 0x1A, 0xC2, 0xB0, 0x99, 0xD3, 0xBA, 0xAB, 0xB2, + 0x2A, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x0E, 0x60, 0xDD, 0x0E, 0xBB, 0x34, 0xD5, 0x3E, 0x6D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xAA, 0xAA, 0xE0, 0x99, 0x99, 0x99, 0x99, 0x9F, 0xBA, 0xAA, 0xAA, 0xBB, 0xBB, 0xBB, 0xBE, 0xE7, 0x61, 0x00, 0x44, 0x99, 0x99, 0x99, 0x99, 0x99, 0x12, 0xAA, 0xAB, 0x34, 0x99, 0x0B, 0xAA, 0xA3, 0x99, 0x90, 0xBA, 0xAA, 0xAB, 0x59, 0x99, 0x99, 0x91, 0xBA, 0xAC, 0x2B, 0xBB, 0xBB, 0xBB, 0xEB, 0xB6, 0x31, 0x0F, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x94, 0xBA, 0xAA, 0xAA, 0x19, 0x99, 0x1B, 0xB2, 0xB0, 0x99, 0xD3, 0xBA, 0xAA, 0x22, + 0x2A, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xF6, 0xEB, 0x33, 0xBA, 0x2E, 0xE2, 0x32, 0xBE, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x95, 0xBA, 0xAA, 0xAA, 0xAB, 0xCB, 0xBB, 0xAA, 0xBB, 0xBB, 0xBB, 0x23, 0x0F, 0x49, 0x99, 0x99, 0x99, 0x1B, 0xAC, 0xAB, 0xEF, 0x99, 0xFB, 0xBA, 0xA3, 0x49, 0x90, 0xBA, 0xAA, 0xAB, 0xF9, 0x99, 0x99, 0x90, 0xBA, 0xAA, 0x2B, 0xAA, 0xAA, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0x21, 0x04, 0x99, 0x99, 0x99, 0x9D, 0x3A, 0xAA, 0xAB, 0x34, 0x99, 0x1B, 0xBB, 0xB1, 0x99, 0x93, 0xBA, 0xAA, 0x22, + 0x2A, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9F, 0x3E, 0xEE, 0xE3, 0x51, 0xE7, 0xB7, 0x20, 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xAA, 0xAC, 0xAA, 0xAA, 0xAC, 0xAA, 0xAA, 0xAA, 0xAA, 0xAB, 0xBE, 0x30, 0xD9, 0x99, 0x99, 0x0B, 0xAA, 0xAB, 0xE0, 0x99, 0x46, 0xBA, 0xA3, 0xD9, 0x9F, 0xBA, 0xAA, 0xAB, 0xF9, 0x99, 0x99, 0x90, 0xBA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xBB, 0xCB, 0xAA, 0xAA, 0xAA, 0xB3, 0x1F, 0x99, 0x99, 0x99, 0x1B, 0xBB, 0xAB, 0x3D, 0x99, 0x0E, 0xBB, 0xB1, 0x99, 0x91, 0xBA, 0xAA, 0xB2, + 0x2A, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD0, 0x11, 0x0D, 0x99, 0xF0, 0x10, 0xF9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xAA, 0xAA, 0xE0, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x3A, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAC, 0xAA, 0xAA, 0xAA, 0xAA, 0xAB, 0xBE, 0x30, 0xD9, 0x99, 0x5E, 0xAA, 0xAB, 0xB0, 0x99, 0xD6, 0xBA, 0xA2, 0xD9, 0x9F, 0xBC, 0x22, 0xCB, 0xF9, 0x99, 0x99, 0x9F, 0xBA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAC, 0x2A, 0xCA, 0xAA, 0xAA, 0xAA, 0xAC, 0xBB, 0x3F, 0x99, 0x99, 0x02, 0xBA, 0xCB, 0x74, 0x99, 0x0E, 0xBB, 0xB1, 0x99, 0x91, 0xBA, 0xAA, 0xB2, + 0x2A, 0xAA, 0xAA, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xAA, 0xAB, 0xE0, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x3A, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xBB, 0xBB, 0xAA, 0xAC, 0xCA, 0xAA, 0xCA, 0xBE, 0x6F, 0x99, 0xD3, 0xBA, 0xAB, 0xB1, 0x99, 0xD3, 0xBA, 0xAB, 0x49, 0x94, 0x2C, 0xA2, 0xCB, 0xF9, 0x99, 0x99, 0x95, 0xBA, 0xAA, 0xAA, 0xAA, 0xAA, 0xBB, 0xBA, 0xBB, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0x2E, 0x14, 0x99, 0x0B, 0xBA, 0xAB, 0xEF, 0x99, 0xFE, 0xBB, 0xB3, 0x99, 0x90, 0xBA, 0xAA, 0xC2, + 0x2A, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2A, 0xAA, 0xAB, 0xE0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x1A, 0xAA, 0xAA, 0xAA, 0xCB, 0x21, 0x13, 0xEB, 0xAA, 0xAC, 0xAA, 0xAA, 0xAA, 0xAB, 0xB7, 0x0D, 0x41, 0xCA, 0xAA, 0xB1, 0x99, 0x91, 0xBA, 0xAB, 0xF9, 0x9D, 0x3A, 0xAA, 0xCB, 0xF9, 0x99, 0x99, 0x94, 0x2A, 0xCA, 0xAA, 0xAA, 0xAA, 0x31, 0x37, 0xBC, 0xCA, 0xAA, 0xAA, 0xAA, 0xAA, 0xBB, 0xB3, 0x49, 0x57, 0xBA, 0xAB, 0xE0, 0x99, 0x52, 0xBA, 0xB3, 0xD9, 0x90, 0xBA, 0xAA, 0xC2, + 0x2B, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9D, 0x2C, 0xAA, 0xAB, 0xEF, 0x99, 0x99, 0x99, 0x99, 0x99, 0x1A, 0xAA, 0xAA, 0xCA, 0xAB, 0x25, 0x44, 0x01, 0xBA, 0xBB, 0xAA, 0xAA, 0xAA, 0xCA, 0xAB, 0xEF, 0x40, 0xBA, 0xAA, 0xB1, 0x99, 0x91, 0x2C, 0xAB, 0xF9, 0x94, 0x3A, 0xAA, 0xAB, 0xF9, 0x99, 0x99, 0x9D, 0x3C, 0xAA, 0xAA, 0xAA, 0xAA, 0x1D, 0xD5, 0x03, 0xBB, 0xBA, 0xAA, 0xAA, 0xAA, 0xAA, 0xCB, 0x6D, 0xD3, 0xBA, 0xAB, 0xE0, 0x99, 0x42, 0xBA, 0xC3, 0xD9, 0x90, 0xBA, 0xAA, 0xC2, + 0x2B, 0xAA, 0xAA, 0x21, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x94, 0xBC, 0xCC, 0xAB, 0x75, 0x99, 0x99, 0x99, 0x99, 0x99, 0x0B, 0xAA, 0xAA, 0xAA, 0xAB, 0xEF, 0x99, 0x99, 0x40, 0x3B, 0xBC, 0xAA, 0xAA, 0xAA, 0xAB, 0xB1, 0x90, 0xBA, 0xAA, 0xB3, 0x99, 0x91, 0xBA, 0xAB, 0x09, 0x99, 0x3B, 0xAA, 0xAB, 0xF9, 0x99, 0x99, 0x9D, 0x32, 0xAA, 0xAA, 0xAA, 0xAB, 0x3D, 0x99, 0x94, 0xF1, 0x3E, 0xBA, 0xAC, 0xBC, 0xAA, 0xCB, 0xEF, 0x41, 0xAA, 0xAB, 0xB0, 0x99, 0xD3, 0xAA, 0xB3, 0xD9, 0x9F, 0xBC, 0x2C, 0xA2, + 0x12, 0xBA, 0xAC, 0xB3, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0xBC, 0x2A, 0xAB, 0x6D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x0B, 0xBA, 0xAA, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0xD0, 0x3B, 0xAA, 0xAC, 0xAA, 0xAB, 0xB1, 0x44, 0xBA, 0xAA, 0xA3, 0xD9, 0x90, 0xBA, 0x22, 0x09, 0x99, 0x1B, 0xAA, 0xAB, 0xF9, 0x99, 0x99, 0x99, 0x3B, 0xAA, 0xAA, 0xAA, 0xAB, 0x64, 0x99, 0x99, 0x99, 0x50, 0x2C, 0xCA, 0xCB, 0xAA, 0xAB, 0xE0, 0x90, 0xBA, 0xAB, 0xB1, 0x99, 0xD3, 0xBA, 0xCB, 0x49, 0x94, 0xBC, 0xAA, 0xA2, + 0x0B, 0xBA, 0xAA, 0xAB, 0x14, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x57, 0xBA, 0xCA, 0xAB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x0B, 0xBA, 0xAA, 0xAA, 0xAB, 0xB1, 0x99, 0x99, 0x99, 0x9D, 0x1A, 0xAA, 0xAA, 0xAC, 0xCB, 0xB0, 0x9D, 0x3B, 0xAA, 0xA2, 0x49, 0x90, 0xBC, 0x22, 0x09, 0x99, 0x1B, 0xAA, 0xAB, 0xF9, 0x99, 0x99, 0x99, 0x1B, 0xBA, 0xAA, 0xAA, 0xAA, 0x2F, 0x99, 0x99, 0x99, 0x95, 0x3C, 0xAA, 0xAA, 0xAA, 0xAB, 0x75, 0x9F, 0xBC, 0xAA, 0xA1, 0x99, 0x91, 0xAA, 0xCB, 0xF9, 0x9D, 0x2A, 0xAA, 0xA2, + 0xD3, 0xBC, 0xAA, 0xCA, 0x21, 0xF4, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x45, 0x44, 0x55, 0x55, 0x44, 0xF0, 0x2B, 0xAC, 0xAA, 0xAB, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0xFE, 0xBA, 0xAA, 0xAA, 0xAA, 0xA1, 0x99, 0x99, 0x99, 0x41, 0xBA, 0xAA, 0xAB, 0xCA, 0xBB, 0x64, 0x99, 0x1C, 0xAA, 0xAB, 0x49, 0x9F, 0xBC, 0x2B, 0x19, 0x99, 0x1B, 0xAA, 0xAB, 0xF9, 0x99, 0x99, 0x99, 0x1B, 0xBC, 0xAA, 0xAA, 0xAA, 0xE0, 0x99, 0x99, 0x99, 0xF3, 0xBA, 0xAA, 0xAA, 0xAA, 0xAB, 0x14, 0x94, 0xBC, 0xAA, 0xA3, 0x99, 0x91, 0xAA, 0xAB, 0xF9, 0x9D, 0x2A, 0xBA, 0xA2, + 0x90, 0xEA, 0xAA, 0xAA, 0xAA, 0xBB, 0x2B, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBA, 0xAA, 0xCC, 0xC3, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x57, 0xBA, 0xCB, 0xBA, 0xAA, 0xA3, 0x99, 0x99, 0x9F, 0x3B, 0xAA, 0xAA, 0xCB, 0xAA, 0xBE, 0x09, 0x99, 0x1B, 0xB2, 0xCB, 0xF9, 0x9F, 0xBC, 0x2B, 0x19, 0x99, 0x0B, 0xAA, 0xAB, 0x09, 0x99, 0x99, 0x99, 0x0B, 0xBA, 0x2C, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0xD0, 0x2C, 0xAA, 0xAA, 0xAA, 0xAA, 0xB2, 0x59, 0x94, 0x32, 0xAA, 0xA3, 0xD9, 0x90, 0xBA, 0xCB, 0x09, 0x9D, 0x3A, 0xAA, 0xA2, + 0x9D, 0x3A, 0xAA, 0xAC, 0xAA, 0x2C, 0xAA, 0xAA, 0xAB, 0xAA, 0xAA, 0xAA, 0xAA, 0xCC, 0xCA, 0xAA, 0xAC, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAC, 0xCA, 0xAA, 0x22, 0x2C, 0xAA, 0xAB, 0xB0, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x43, 0xB2, 0xCB, 0xBA, 0xAA, 0xA2, 0xD9, 0x99, 0x07, 0xBC, 0xAA, 0xCA, 0xBA, 0xAB, 0xE1, 0x99, 0x99, 0x0B, 0xA2, 0xAB, 0x09, 0x94, 0x2B, 0xAB, 0x34, 0x99, 0x0B, 0xAA, 0xAB, 0x09, 0x99, 0x99, 0x99, 0x0B, 0xAA, 0xCA, 0xAA, 0xAB, 0x21, 0x99, 0x94, 0x1E, 0xBA, 0xAC, 0xAA, 0xAA, 0xAB, 0xE0, 0x99, 0x99, 0x12, 0xAC, 0xA2, 0xD9, 0x90, 0xEA, 0xAE, 0x09, 0x99, 0x3A, 0xAA, 0xA2, + 0x99, 0xF6, 0xBA, 0xAB, 0xAA, 0xCA, 0xAC, 0xAC, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAC, 0xC2, 0x2A, 0xAA, 0xAB, 0x19, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD3, 0xBA, 0xAC, 0xAC, 0xAA, 0xA2, 0x49, 0x43, 0xEA, 0xAA, 0xAA, 0xAC, 0xCA, 0xAB, 0x1D, 0x99, 0x99, 0x5E, 0xAA, 0xAB, 0x09, 0x9D, 0x6E, 0xCE, 0x6D, 0x99, 0xFE, 0xBA, 0xAB, 0x09, 0x99, 0x99, 0x99, 0x0B, 0xAA, 0xAA, 0xAA, 0xAA, 0xB1, 0x49, 0x53, 0xBB, 0xAA, 0xAA, 0xAA, 0xAA, 0xB2, 0x09, 0x99, 0x99, 0x0B, 0xAA, 0xAB, 0x49, 0x90, 0xEB, 0xAE, 0x09, 0x99, 0x1B, 0xAC, 0xA2, + 0x99, 0x90, 0xEB, 0xBB, 0xBA, 0xAA, 0xCA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAB, 0xAA, 0xCA, 0xBA, 0xB1, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD3, 0xBC, 0xAA, 0xAC, 0xAA, 0xAB, 0xF0, 0x3B, 0xBA, 0xCA, 0xAA, 0xAB, 0xBB, 0x20, 0x49, 0x99, 0x99, 0xD3, 0xBA, 0xAE, 0x09, 0x99, 0x01, 0x11, 0x14, 0x99, 0x4E, 0xBA, 0xCB, 0x09, 0x99, 0x99, 0x99, 0xFE, 0xAA, 0xAA, 0xAA, 0xAA, 0xA3, 0x51, 0xEA, 0xAA, 0xAA, 0xAA, 0xAA, 0xBB, 0x3F, 0x99, 0x99, 0x99, 0x0E, 0xBA, 0xBE, 0xF9, 0x94, 0x01, 0x11, 0x09, 0x99, 0x1B, 0xAA, 0xA2, + 0x99, 0x99, 0xF3, 0xEB, 0xAA, 0xAC, 0xAC, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xCB, 0xBC, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xCB, 0x2E, 0x1D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x91, 0xAA, 0xAA, 0xAA, 0xAA, 0xAB, 0x3B, 0x2B, 0xAA, 0xAA, 0xBC, 0xBB, 0xE1, 0x59, 0x99, 0x99, 0x99, 0x91, 0xEA, 0xBE, 0x89, 0x99, 0x99, 0x99, 0x99, 0x99, 0x47, 0xBA, 0xCB, 0x09, 0x99, 0x99, 0x99, 0x47, 0xBC, 0xAA, 0xAA, 0xB2, 0xAB, 0x2B, 0xBA, 0xAA, 0xAA, 0xCA, 0xA7, 0x30, 0xD9, 0x99, 0x99, 0x99, 0x46, 0xB2, 0xBE, 0xF9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x0B, 0xAA, 0xC2, + 0x99, 0x99, 0x9D, 0x03, 0x2B, 0xBB, 0xBA, 0xAA, 0xAC, 0xAB, 0xBB, 0xEE, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBC, 0xAA, 0xAA, 0xBB, 0xBE, 0xB3, 0x1F, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x91, 0xBA, 0xAA, 0xAC, 0xAA, 0xAA, 0xCA, 0xAA, 0xAA, 0xAB, 0xBB, 0xB3, 0xF9, 0x99, 0x99, 0x99, 0x99, 0x90, 0x31, 0x10, 0xF9, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD6, 0xEB, 0xBE, 0x09, 0x99, 0x99, 0x99, 0xD6, 0xBA, 0xAA, 0xAC, 0x22, 0xAA, 0xAC, 0xAA, 0xAA, 0xAB, 0xBB, 0x21, 0x59, 0x99, 0x99, 0x99, 0x99, 0xD1, 0x11, 0x00, 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x0E, 0xEB, 0xBB, + 0x99, 0x99, 0x99, 0x9D, 0x44, 0xFF, 0x02, 0xBC, 0xAA, 0xCB, 0x05, 0x5F, 0xF4, 0x45, 0xFF, 0xFF, 0xFF, 0x55, 0x5F, 0xFF, 0xFF, 0x45, 0xF1, 0xAC, 0xAC, 0x2B, 0x3F, 0xF5, 0x4D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0xBA, 0xAA, 0xAA, 0x22, 0xCA, 0xAA, 0xAA, 0xAA, 0xAE, 0x31, 0xF9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x40, 0x00, 0x00, 0x49, 0x99, 0x99, 0x99, 0xD3, 0xBA, 0xAC, 0xAA, 0xAA, 0xCA, 0xAA, 0xA2, 0xCB, 0xBE, 0x30, 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x40, 0x00, 0x00, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x91, 0xBA, 0xAB, 0xB3, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9F, 0xEB, 0xAA, 0xBE, 0x09, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0xBA, 0xAA, 0xAB, 0xBB, 0xBB, 0xAB, 0xBB, 0xE2, 0x10, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD3, 0xBB, 0xBB, 0xAB, 0xAA, 0xBB, 0xBB, 0xBB, 0xB3, 0x1F, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9F, 0x7B, 0xBB, 0x6F, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x1E, 0xBB, 0xE3, 0xD9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x90, 0xEA, 0xAA, 0xBB, 0xBB, 0xBB, 0x23, 0x10, 0xFD, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x91, 0xBA, 0xCC, 0xAA, 0xBB, 0xB7, 0x33, 0x00, 0x5D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xF3, 0x23, 0xF9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xD0, 0x32, 0x1D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9F, 0x32, 0x22, 0x33, 0x11, 0x05, 0x5D, 0x49, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x91, 0x22, 0x22, 0x31, 0x11, 0x0F, 0x4D, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99 +}; + +const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DOWN uint8_t down_map[] = { + 0x00, 0x00, 0x00, 0x00, /*Color of index 0*/ + 0x02, 0xfd, 0x02, 0x85, /*Color of index 1*/ + 0x13, 0xf1, 0x15, 0x94, /*Color of index 2*/ + 0x01, 0xfe, 0x04, 0xe7, /*Color of index 3*/ + 0x01, 0xfe, 0x06, 0xef, /*Color of index 4*/ + 0x0c, 0xfa, 0x1e, 0xfc, /*Color of index 5*/ + 0x0d, 0xfa, 0x1f, 0xff, /*Color of index 6*/ + 0x09, 0xfc, 0x13, 0xff, /*Color of index 7*/ + 0x01, 0xfe, 0x04, 0xf7, /*Color of index 8*/ + 0x01, 0xfd, 0x09, 0xff, /*Color of index 9*/ + 0x00, 0xfe, 0x00, 0xfe, /*Color of index 10*/ + 0x07, 0xf7, 0x0a, 0xf7, /*Color of index 11*/ + 0x00, 0x00, 0x00, 0x00, /*Color of index 12*/ + 0x00, 0x00, 0x00, 0x00, /*Color of index 13*/ + 0x00, 0x00, 0x00, 0x00, /*Color of index 14*/ + 0x00, 0x00, 0x00, 0x00, /*Color of index 15*/ + + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x30, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x80, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x0a, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x0a, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, + 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x00, + 0x00, 0x0a, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x00, + 0x00, 0x0a, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, + 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x00, 0x00, + 0x00, 0x00, 0x0a, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0a, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0xa0, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x99, 0x99, 0x99, 0x99, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0a, 0x99, 0x99, 0xa0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0xaa, 0xa0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, +}; + +const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_UP uint8_t up_map[] = { + 0x00, 0x00, 0x00, 0x00, /*Color of index 0*/ + 0x01, 0x0c, 0xf5, 0xff, /*Color of index 1*/ + 0x00, 0x08, 0xf8, 0xff, /*Color of index 2*/ + 0x00, 0x00, 0xfe, 0xfe, /*Color of index 3*/ + 0x00, 0x00, 0x00, 0x00, /*Color of index 4*/ + 0x00, 0x00, 0x00, 0x00, /*Color of index 5*/ + 0x00, 0x00, 0x00, 0x00, /*Color of index 6*/ + 0x00, 0x00, 0x00, 0x00, /*Color of index 7*/ + 0x00, 0x00, 0x00, 0x00, /*Color of index 8*/ + 0x00, 0x00, 0x00, 0x00, /*Color of index 9*/ + 0x00, 0x00, 0x00, 0x00, /*Color of index 10*/ + 0x00, 0x00, 0x00, 0x00, /*Color of index 11*/ + 0x00, 0x00, 0x00, 0x00, /*Color of index 12*/ + 0x00, 0x00, 0x00, 0x00, /*Color of index 13*/ + 0x00, 0x00, 0x00, 0x00, /*Color of index 14*/ + 0x00, 0x00, 0x00, 0x00, /*Color of index 15*/ + + 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x03, 0x33, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x03, 0x33, 0x33, 0x30, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x30, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x30, 0x00, 0x00, + 0x00, 0x00, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, + 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x30, 0x00, + 0x00, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x30, 0x00, + 0x00, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, + 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x30, + 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x30, + 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, + 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x31, 0x22, 0x22, 0x22, 0x22, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x33, 0x33, 0x33, 0x33, 0x33, 0x23, 0x00, 0x00, 0x00, +}; + + +const lv_img_dsc_t app_stockmarket = { + .header.cf = LV_IMG_CF_INDEXED_4BIT, + .header.always_zero = 0, + .header.reserved = 0, + .header.w = 128, + .header.h = 128, + .data_size = 8256, + .data = app_stockmarket_map, +}; + +const lv_img_dsc_t stockmarket_logo_ico = { + .header.always_zero = 0, + .header.w = 200, + .header.h = 62, + .data_size = 6264, + .header.cf = LV_IMG_CF_INDEXED_4BIT, + .data = stockmarket_map, +}; + +const lv_img_dsc_t down = { + .header.cf = LV_IMG_CF_INDEXED_4BIT, + .header.always_zero = 0, + .header.reserved = 0, + .header.w = 24, + .header.h = 34, + .data_size = 472, + .data = down_map, +}; + +const lv_img_dsc_t up = { + .header.cf = LV_IMG_CF_INDEXED_4BIT, + .header.always_zero = 0, + .header.reserved = 0, + .header.w = 24, + .header.h = 34, + .data_size = 472, + .data = up_map, +}; \ No newline at end of file From 30e53b4dea850b93296cc8506f5a137748b0ece2 Mon Sep 17 00:00:00 2001 From: redwolf010 Date: Thu, 13 Oct 2022 08:19:36 +0800 Subject: [PATCH 4/9] Delete test.txt --- HoloCubic_Firmware/src/app/stockmarket/test.txt | 1 - 1 file changed, 1 deletion(-) delete mode 100644 HoloCubic_Firmware/src/app/stockmarket/test.txt diff --git a/HoloCubic_Firmware/src/app/stockmarket/test.txt b/HoloCubic_Firmware/src/app/stockmarket/test.txt deleted file mode 100644 index 8b137891..00000000 --- a/HoloCubic_Firmware/src/app/stockmarket/test.txt +++ /dev/null @@ -1 +0,0 @@ - From 01f3a11fc0db50fd8f0792a3543d5e171516872d Mon Sep 17 00:00:00 2001 From: redwolf010 Date: Thu, 13 Oct 2022 08:22:04 +0800 Subject: [PATCH 5/9] Update lv_conf.h --- HoloCubic_Firmware/lib/lvgl/lv_conf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HoloCubic_Firmware/lib/lvgl/lv_conf.h b/HoloCubic_Firmware/lib/lvgl/lv_conf.h index 4fbe3e34..4189dfbc 100644 --- a/HoloCubic_Firmware/lib/lvgl/lv_conf.h +++ b/HoloCubic_Firmware/lib/lvgl/lv_conf.h @@ -399,7 +399,7 @@ typedef void * lv_indev_drv_user_data_t; /*Type of user data in the i #define LV_FONT_MONTSERRAT_42 0 #define LV_FONT_MONTSERRAT_44 0 #define LV_FONT_MONTSERRAT_46 0 -#define LV_FONT_MONTSERRAT_48 0 +#define LV_FONT_MONTSERRAT_48 1 /* Demonstrate special features */ #define LV_FONT_MONTSERRAT_12_SUBPX 0 @@ -531,7 +531,7 @@ typedef void * lv_font_user_data_t; #define LV_USE_ARABIC_PERSIAN_CHARS 0 /*Change the built in (v)snprintf functions*/ -#define LV_SPRINTF_CUSTOM 0 +#define LV_SPRINTF_CUSTOM 1 #if LV_SPRINTF_CUSTOM # define LV_SPRINTF_INCLUDE # define lv_snprintf snprintf From 60c8d4da9dae1d7f8f34bc6c34a65f0cc94f0179 Mon Sep 17 00:00:00 2001 From: redwolf010 Date: Thu, 13 Oct 2022 08:23:53 +0800 Subject: [PATCH 6/9] Update server.cpp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加股票行情配置服务 --- HoloCubic_Firmware/src/app/server/server.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/HoloCubic_Firmware/src/app/server/server.cpp b/HoloCubic_Firmware/src/app/server/server.cpp index cc1093bf..0cfddf31 100644 --- a/HoloCubic_Firmware/src/app/server/server.cpp +++ b/HoloCubic_Firmware/src/app/server/server.cpp @@ -37,6 +37,7 @@ void start_web_config() server.on("/weather_setting", weather_setting); server.on("/weather_old_setting", weather_old_setting); server.on("/bili_setting", bili_setting); + server.on("/stock_setting", stock_setting); server.on("/picture_setting", picture_setting); server.on("/media_setting", media_setting); server.on("/screen_setting", screen_setting); @@ -54,6 +55,7 @@ void start_web_config() server.on("/saveWeatherConf", saveWeatherConf); server.on("/saveWeatherOldConf", saveWeatherOldConf); server.on("/saveBiliConf", saveBiliConf); + server.on("/saveStockConf", saveStockConf); server.on("/savePictureConf", savePictureConf); server.on("/saveMediaConf", saveMediaConf); server.on("/saveScreenConf", saveScreenConf); @@ -181,4 +183,4 @@ static void server_message_handle(const char *from, const char *to, APP_OBJ server_app = {SERVER_APP_NAME, &app_server, "", server_init, server_process, server_background_task, - server_exit_callback, server_message_handle}; \ No newline at end of file + server_exit_callback, server_message_handle}; From 093e69c485091866305a5768f164329a434874b5 Mon Sep 17 00:00:00 2001 From: redwolf010 Date: Thu, 13 Oct 2022 08:25:06 +0800 Subject: [PATCH 7/9] Update web_setting.cpp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 增加股票行情配置页面处理 --- .../src/app/server/web_setting.cpp | 42 ++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) diff --git a/HoloCubic_Firmware/src/app/server/web_setting.cpp b/HoloCubic_Firmware/src/app/server/web_setting.cpp index 8584d1ed..c1642be6 100644 --- a/HoloCubic_Firmware/src/app/server/web_setting.cpp +++ b/HoloCubic_Firmware/src/app/server/web_setting.cpp @@ -89,6 +89,11 @@ String file_size(int bytes) "" \ "" +#define STOCK_SETTING "
" \ + "" \ + "" \ + "
" + #define PICTURE_SETTING "
" \ "" \ "
" @@ -173,6 +178,7 @@ void init_page_header() webpage_header += F("
  • 屏幕分享
  • "); webpage_header += F("
  • 心跳
  • "); webpage_header += F("
  • 纪念日
  • "); + webpage_header += F("
  • 股票行情
  • "); webpage_header += F(""); } @@ -350,6 +356,24 @@ void bili_setting() Send_HTML(webpage); } + +void stock_setting() +{ + char buf[2048]; + char bili_uid[32]; + char updataInterval[32]; + // 读取数据 + app_controller->send_to(SERVER_APP_NAME, "Stock", APP_MESSAGE_READ_CFG, + NULL, NULL); + app_controller->send_to(SERVER_APP_NAME, "Stock", APP_MESSAGE_GET_PARAM, + (void *)"stock_id", bili_uid); + app_controller->send_to(SERVER_APP_NAME, "Stock", APP_MESSAGE_GET_PARAM, + (void *)"updataInterval", updataInterval); + sprintf(buf, STOCK_SETTING, bili_uid, updataInterval); + webpage = buf; + Send_HTML(webpage); +} + void picture_setting() { char buf[2048]; @@ -589,6 +613,22 @@ void saveBiliConf(void) NULL, NULL); } +void saveStockConf(void) +{ + Send_HTML(F("

    设置成功! 退出APP或者继续其他设置.

    ")); + app_controller->send_to(SERVER_APP_NAME, "Stock", + APP_MESSAGE_SET_PARAM, + (void *)"stock_id", + (void *)server.arg("stock_id").c_str()); + app_controller->send_to(SERVER_APP_NAME, "Stock", + APP_MESSAGE_SET_PARAM, + (void *)"updataInterval", + (void *)server.arg("updataInterval").c_str()); + // 持久化数据 + app_controller->send_to(SERVER_APP_NAME, "Stock", APP_MESSAGE_WRITE_CFG, + NULL, NULL); +} + void savePictureConf(void) { Send_HTML(F("

    设置成功! 退出APP或者继续其他设置.

    ")); @@ -843,4 +883,4 @@ void ReportCouldNotCreateFile(const String &target) webpage += F("[Back]

    "; Send_HTML(webpage); -} \ No newline at end of file +} From a429069cfaaaab6fa619c5c2b894805f65bd0692 Mon Sep 17 00:00:00 2001 From: redwolf010 Date: Thu, 13 Oct 2022 08:25:49 +0800 Subject: [PATCH 8/9] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=82=A1=E7=A5=A8?= =?UTF-8?q?=E8=A1=8C=E6=83=85=E9=85=8D=E7=BD=AE=E5=A4=84=E7=90=86=E5=87=BD?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HoloCubic_Firmware/src/app/server/web_setting.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/HoloCubic_Firmware/src/app/server/web_setting.h b/HoloCubic_Firmware/src/app/server/web_setting.h index 9ccd8152..7994c23c 100644 --- a/HoloCubic_Firmware/src/app/server/web_setting.h +++ b/HoloCubic_Firmware/src/app/server/web_setting.h @@ -13,6 +13,7 @@ void rgb_setting(void); void weather_setting(void); void weather_old_setting(void); void bili_setting(void); +void stock_setting(void); void picture_setting(void); void media_setting(void); void screen_setting(void); @@ -28,6 +29,7 @@ void saveRgbConf(void); void saveWeatherConf(void); void saveWeatherOldConf(void); void saveBiliConf(void); +void saveStockConf(void); void savePictureConf(void); void saveMediaConf(void); void saveScreenConf(void); @@ -40,4 +42,4 @@ void ReportSDNotPresent(void); void ReportFileNotPresent(const String &target); void ReportCouldNotCreateFile(const String &target); -#endif \ No newline at end of file +#endif From 35715a852c41bcddfcca62d1c0ce8b615721bf55 Mon Sep 17 00:00:00 2001 From: redwolf010 Date: Thu, 13 Oct 2022 08:28:24 +0800 Subject: [PATCH 9/9] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E9=83=A8=E5=88=86?= =?UTF-8?q?=E6=B1=89=E5=AD=97=E7=9A=84=E5=AD=97=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/app/weather/ch_Font_20.c | 1696 ++++++++++------- 1 file changed, 998 insertions(+), 698 deletions(-) diff --git a/HoloCubic_Firmware/src/app/weather/ch_Font_20.c b/HoloCubic_Firmware/src/app/weather/ch_Font_20.c index c0409121..d20f4760 100644 --- a/HoloCubic_Firmware/src/app/weather/ch_Font_20.c +++ b/HoloCubic_Firmware/src/app/weather/ch_Font_20.c @@ -13,6 +13,25 @@ static const uint8_t glyph_bitmap[] = { +/* + */ +0xff,0xff,0xff,0xff,0xff,0xf0, //@@@@@@@@@@@ +0xff,0x88,0x88,0x88,0x8f,0xf0, //@@%%%%%%%@@ +0xff,0x00,0x00,0x00,0x0f,0xf0, //@@.......@@ +0xff,0x00,0x00,0x00,0x0f,0xf0, //@@.......@@ +0xff,0x00,0x00,0x00,0x0f,0xf0, //@@.......@@ +0xff,0x00,0x00,0x00,0x0f,0xf0, //@@.......@@ +0xff,0x00,0x00,0x00,0x0f,0xf0, //@@.......@@ +0xff,0x00,0x00,0x00,0x0f,0xf0, //@@.......@@ +0xff,0x00,0x00,0x00,0x0f,0xf0, //@@.......@@ +0xff,0x00,0x00,0x00,0x0f,0xf0, //@@.......@@ +0xff,0x00,0x00,0x00,0x0f,0xf0, //@@.......@@ +0xff,0x00,0x00,0x00,0x0f,0xf0, //@@.......@@ +0xff,0x00,0x00,0x00,0x0f,0xf0, //@@.......@@ +0xff,0x88,0x88,0x88,0x8f,0xf0, //@@%%%%%%%@@ +0xff,0xff,0xff,0xff,0xff,0xf0, //@@@@@@@@@@@ + + /* */ @@ -1604,15 +1623,6 @@ static const uint8_t glyph_bitmap[] = { 0x08,0xdd,0x70, //+%@@%+ -/* 。 */ -0x09,0xec,0x40, //+%@@*. -0x8f,0xde,0xe1, //%@@@@+ -0xde,0x06,0xf5, //@@+*@* -0xde,0x17,0xf5, //@@+%@* -0x6f,0xff,0xd0, //*@@@@+ -0x06,0xb9,0x20, //+*%%+. - - /* 一 */ 0x6f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf6, //*@@@@@@@@@@@@@@@@@@* 0x6f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf6, //*@@@@@@@@@@@@@@@@@@* @@ -2230,6 +2240,29 @@ static const uint8_t glyph_bitmap[] = { 0x00,0x00,0x00,0x00,0x07,0xdf,0xff,0xff,0xed,0x40, //.........*@@@@@@@@*. +/* 亿 */ +0x00,0x00,0xba,0x60,0x00,0x00,0x00,0x00,0x00,0x00, //....%%*+............ +0x00,0x02,0xff,0xc9,0xff,0xff,0xff,0xff,0xff,0x20, //...+@@@%@@@@@@@@@@+. +0x00,0x07,0xff,0x69,0xff,0xff,0xff,0xff,0xff,0x20, //...%@@*%@@@@@@@@@@+. +0x00,0x0d,0xfe,0x06,0xaa,0xaa,0xaa,0xef,0xfe,0x10, //..+@@@+*%%%%%%@@@@+. +0x00,0x5f,0xf9,0x00,0x00,0x00,0x06,0xff,0xf5,0x00, //..*@@%.......*@@@*.. +0x00,0xcf,0xf4,0x00,0x00,0x00,0x3e,0xff,0x80,0x00, //..@@@*......+@@@%... +0x04,0xff,0xf4,0x00,0x00,0x01,0xdf,0xfa,0x00,0x00, //.*@@@*.....+@@@%+... +0x0c,0xff,0xf4,0x00,0x00,0x0b,0xff,0xc1,0x00,0x00, //+@@@@*....+%@@@+.... +0x5f,0xff,0xf4,0x00,0x00,0x7f,0xfe,0x20,0x00,0x00, //*@@@@*....*@@@+..... +0x9f,0xff,0xf4,0x00,0x02,0xef,0xf5,0x00,0x00,0x00, //%@@@@*...+@@@*...... +0x5f,0xcf,0xf4,0x00,0x0c,0xff,0x90,0x00,0x00,0x00, //*@@@@*..+@@@%....... +0x1d,0x5f,0xf4,0x00,0x6f,0xfd,0x00,0x00,0x00,0x00, //+@*@@*..*@@@+....... +0x05,0x5f,0xf4,0x00,0xdf,0xf4,0x00,0x00,0x0c,0x61, //.**@@*.+@@@*....+@*+ +0x00,0x5f,0xf4,0x07,0xff,0xa0,0x00,0x00,0x1f,0xf9, //..*@@*.*@@%.....+@@% +0x00,0x5f,0xf4,0x0c,0xff,0x30,0x00,0x00,0x3f,0xf7, //..*@@*.@@@+.....+@@* +0x00,0x5f,0xf4,0x0f,0xfd,0x00,0x00,0x00,0x6f,0xf4, //..*@@*+@@@......*@@* +0x00,0x5f,0xf4,0x0e,0xfe,0x51,0x00,0x03,0xdf,0xe1, //..*@@*+@@@*++.++@@@+ +0x00,0x5f,0xf4,0x0b,0xff,0xff,0xff,0xff,0xff,0xa0, //..*@@*.%@@@@@@@@@@%. +0x00,0x5f,0xf4,0x01,0xcf,0xff,0xff,0xff,0xfd,0x20, //..*@@*.+@@@@@@@@@@+. +0x00,0x5f,0xf4,0x00,0x04,0x78,0x88,0x87,0x50,0x00, //..*@@*..+**%%%%%*+.. + + /* 什 */ 0x00,0x00,0xba,0x50,0x00,0x06,0xff,0x70,0x00,0x00, //....%%*+...*@@%..... 0x00,0x02,0xff,0xd0,0x00,0x06,0xff,0x70,0x00,0x00, //...+@@@+...*@@%..... @@ -2274,6 +2307,28 @@ static const uint8_t glyph_bitmap[] = { 0x00,0x3f,0xf7,0x00,0x00,0x00,0x00,0x00,0x00,0x00, //..+@@*.............. +/* 今 */ +0x00,0x00,0x00,0x00,0x9f,0xff,0x30,0x00,0x00,0x00, //........%@@@+....... +0x00,0x00,0x00,0x07,0xff,0xff,0xa0,0x00,0x00,0x00, //.......*@@@@%+...... +0x00,0x00,0x00,0x6e,0xfe,0xdf,0xf8,0x00,0x00,0x00, //......*@@@@@@%...... +0x00,0x00,0x07,0xff,0xf5,0x2e,0xff,0x80,0x00,0x00, //.....%@@@*+@@@%+.... +0x00,0x01,0xaf,0xfe,0x60,0x04,0xef,0xfa,0x10,0x00, //...+%@@@*..*@@@%+... +0x00,0x5d,0xff,0xe5,0x4b,0x10,0x4e,0xff,0xd4,0x00, //.+*@@@@**@+.*@@@@*.. +0x4c,0xff,0xfc,0x34,0xff,0xb0,0x02,0xcf,0xff,0xb3, //*@@@@@+*@@@+.+@@@@@+ +0x3e,0xfe,0x80,0x00,0xbf,0xf9,0x00,0x08,0xef,0xe4, //*@@@%+.+@@@%..+%@@@* +0x06,0xa2,0x00,0x00,0x1e,0xfe,0x10,0x00,0x2a,0x60, //.*%+....+@@@+...+%*. +0x00,0x00,0x00,0x00,0x05,0xa1,0x00,0x00,0x00,0x00, //.........*%+........ +0x00,0x6f,0xff,0xff,0xff,0xff,0xff,0xff,0xf1,0x00, //..*@@@@@@@@@@@@@@+.. +0x00,0x6f,0xff,0xff,0xff,0xff,0xff,0xff,0xf1,0x00, //..*@@@@@@@@@@@@@@+.. +0x00,0x49,0x99,0x99,0x99,0x99,0x9e,0xff,0xd0,0x00, //..*%%%%%%%%%%@@@@+.. +0x00,0x00,0x00,0x00,0x00,0x00,0x5f,0xfe,0x40,0x00, //............*@@@*... +0x00,0x00,0x00,0x00,0x00,0x03,0xef,0xf7,0x00,0x00, //...........+@@@%.... +0x00,0x00,0x00,0x00,0x00,0x1d,0xff,0xa0,0x00,0x00, //..........+@@@%+.... +0x00,0x00,0x00,0x00,0x01,0xcf,0xfc,0x00,0x00,0x00, //.........+@@@@+..... +0x00,0x00,0x00,0x00,0x07,0xff,0xd2,0x00,0x00,0x00, //.........*@@@+...... +0x00,0x00,0x00,0x00,0x00,0x4b,0x30,0x00,0x00,0x00, //..........*@+....... + + /* 介 */ 0x00,0x00,0x00,0x00,0x9f,0xfe,0x20,0x00,0x00,0x00, //........%@@@+....... 0x00,0x00,0x00,0x05,0xff,0xff,0x50,0x00,0x00,0x00, //.......*@@@@*....... @@ -2341,6 +2396,30 @@ static const uint8_t glyph_bitmap[] = { 0x00,0x4e,0xe4,0x07,0x77,0x77,0x77,0x77,0xbf,0xe0, //..*@@*.%%%%%%%%%@@@ +/* 代 */ +0x00,0x00,0x8a,0x60,0x01,0xcc,0x60,0x5b,0x20,0x00, //....%%*+.+@@*.*@+... +0x00,0x00,0xdf,0xe0,0x01,0xff,0x82,0xef,0xe7,0x00, //...+@@@+.+@@%+@@@%+. +0x00,0x04,0xff,0x90,0x01,0xff,0x80,0x2c,0xfe,0x30, //...*@@%..+@@%.+@@@*. +0x00,0x0a,0xff,0x40,0x00,0xff,0x90,0x00,0xa4,0x00, //...%@@*..+@@%..+%*.. +0x00,0x2e,0xfc,0x00,0x00,0xef,0xa0,0x00,0x00,0x00, //..+@@@+...@@%....... +0x00,0x9f,0xf7,0x00,0x00,0xdf,0xc5,0x68,0xac,0xd2, //..%@@%....@@@**%%@@+ +0x02,0xef,0xf7,0x69,0xbd,0xef,0xff,0xff,0xff,0xf3, //.+@@@**%@@@@@@@@@@@* +0x0a,0xff,0xf7,0xaf,0xff,0xff,0xff,0xed,0xb9,0x82, //.%@@@*%@@@@@@@@@@%%+ +0x5f,0xff,0xf7,0x8d,0xb9,0xcf,0xf3,0x00,0x00,0x00, //*@@@@*%@@%@@@++..... +0x9f,0xef,0xf7,0x00,0x00,0x6f,0xf3,0x00,0x00,0x00, //%@@@@*....*@@+...... +0x7f,0x8f,0xf7,0x00,0x00,0x4f,0xf5,0x00,0x00,0x00, //*@%@@*....*@@*...... +0x4c,0x1f,0xf7,0x00,0x00,0x2f,0xf8,0x00,0x00,0x00, //*@+@@*....+@@%...... +0x14,0x1f,0xf7,0x00,0x00,0x0e,0xfb,0x00,0x00,0x00, //+*+@@*....+@@%...... +0x00,0x1f,0xf7,0x00,0x00,0x0b,0xfe,0x00,0x00,0x00, //..+@@*.....@@@+..... +0x00,0x1f,0xf7,0x00,0x00,0x08,0xff,0x30,0x09,0x50, //..+@@*.....%@@+..%*+ +0x00,0x1f,0xf7,0x00,0x00,0x04,0xff,0x80,0x0d,0xf9, //..+@@*.....*@@%..@@% +0x00,0x1f,0xf7,0x00,0x00,0x00,0xdf,0xe0,0x0e,0xf8, //..+@@*.....+@@@++@@% +0x00,0x1f,0xf7,0x00,0x00,0x00,0x7f,0xf9,0x5f,0xf4, //..+@@*......%@@%*@@* +0x00,0x1f,0xf7,0x00,0x00,0x00,0x0d,0xff,0xff,0xe0, //..+@@*......+@@@@@@+ +0x00,0x1f,0xf7,0x00,0x00,0x00,0x04,0xef,0xff,0x80, //..+@@*.......*@@@@%. +0x00,0x1f,0xf7,0x00,0x00,0x00,0x00,0x2a,0xc9,0x00, //..+@@*........+%@%+. + + /* 令 */ 0x00,0x00,0x00,0x00,0x9f,0xfc,0x00,0x00,0x00,0x00, //........%@@@+....... 0x00,0x00,0x00,0x06,0xff,0xff,0x50,0x00,0x00,0x00, //.......*@@@@*....... @@ -2412,6 +2491,29 @@ static const uint8_t glyph_bitmap[] = { 0x00,0x5f,0xf3,0x0e,0xf9,0x00,0x9a,0x98,0x60,0x00, //..*@@+.@@%..%%%%*+. +/* 价 */ +0x00,0x00,0xb9,0x50,0x00,0x0a,0xff,0x80,0x00,0x00, //....%%*....%@@%..... +0x00,0x01,0xff,0xb0,0x00,0x3f,0xff,0xc0,0x00,0x00, //...+@@@...*@@@@+.... +0x00,0x06,0xff,0x60,0x00,0xcf,0xef,0xf7,0x00,0x00, //...*@@*..+@@@@@*.... +0x00,0x0c,0xfe,0x10,0x08,0xff,0x69,0xfe,0x20,0x00, //...@@@+..%@@*%@@+... +0x00,0x2f,0xfa,0x00,0x5f,0xfb,0x01,0xef,0xc1,0x00, //..+@@%..*@@%++@@@+.. +0x00,0x9f,0xf6,0x03,0xef,0xd1,0x00,0x5f,0xfb,0x00, //..%@@*.+@@@+..*@@@+. +0x01,0xef,0xf6,0x3d,0xfe,0x30,0x00,0x07,0xff,0xc1, //.+@@@*+@@@+....%@@@+ +0x08,0xff,0xf7,0xef,0xe4,0x00,0x00,0x00,0x9f,0xf8, //.%@@@%@@@*......%@@% +0x1e,0xff,0xf6,0xbe,0xbf,0xf4,0x00,0xcf,0xeb,0xe2, //+@@@@*@@@@@*..@@@%@+ +0x8f,0xff,0xf6,0x37,0x7f,0xf4,0x00,0xcf,0xe1,0x80, //%@@@@*+**@@*..@@@+%. +0x6f,0xef,0xf6,0x00,0x7f,0xf4,0x00,0xcf,0xe0,0x00, //*@@@@*..*@@*..@@@... +0x2f,0x8f,0xf6,0x00,0x7f,0xf4,0x00,0xcf,0xe0,0x00, //+@%@@*..%@@*..@@@... +0x07,0x4f,0xf6,0x00,0x8f,0xf3,0x00,0xcf,0xe0,0x00, //.**@@*..%@@+..@@@... +0x00,0x4f,0xf6,0x00,0xaf,0xf2,0x00,0xcf,0xe0,0x00, //..*@@*..%@@+..@@@... +0x00,0x4f,0xf6,0x00,0xef,0xe0,0x00,0xcf,0xe0,0x00, //..*@@*.+@@@+..@@@... +0x00,0x4f,0xf6,0x04,0xff,0xb0,0x00,0xcf,0xe0,0x00, //..*@@*.*@@%...@@@... +0x00,0x4f,0xf6,0x0c,0xff,0x60,0x00,0xcf,0xe0,0x00, //..*@@*+@@@*...@@@... +0x00,0x4f,0xf6,0x8f,0xfd,0x00,0x00,0xcf,0xe0,0x00, //..*@@*%@@@+...@@@... +0x00,0x4f,0xf6,0x6e,0xf6,0x00,0x00,0xcf,0xe0,0x00, //..*@@**@@*....@@@... +0x00,0x4f,0xf6,0x05,0x80,0x00,0x00,0xcf,0xe0,0x00, //..*@@*.*%.....@@@... + + /* 任 */ 0x00,0x00,0xb9,0x50,0x00,0x00,0x00,0x00,0x00,0x00, //....@%*+............ 0x00,0x02,0xff,0xc0,0x01,0x23,0x45,0x67,0x9a,0x50, //...+@@@+++++***%%%*. @@ -2736,6 +2838,28 @@ static const uint8_t glyph_bitmap[] = { 0x00,0xbf,0xb0,0x3f,0xf9,0x44,0x44,0x46,0xff,0x70, //..%@@.+@@%******@@%. +/* 值 */ +0x00,0x09,0xb7,0x00,0x00,0x0d,0xfa,0x00,0x00,0x00, //...%%*+....@@%...... +0x00,0x0e,0xfb,0xdf,0xff,0xff,0xff,0xff,0xff,0xf4, //..+@@@@@@@@@@@@@@@@* +0x00,0x4f,0xf6,0xdf,0xff,0xff,0xff,0xff,0xff,0xf4, //..*@@*@@@@@@@@@@@@@* +0x00,0x9f,0xe1,0x22,0x22,0x2d,0xfb,0x22,0x22,0x20, //..%@@++++++@@%++++++ +0x01,0xef,0xa0,0x6f,0xff,0xff,0xff,0xff,0xff,0x60, //.+@@%.*@@@@@@@@@@@*. +0x06,0xff,0x60,0x6f,0xfe,0xee,0xee,0xee,0xff,0x60, //.*@@*.*@@@@@@@@@@@*. +0x0c,0xff,0x60,0x6f,0xf0,0x00,0x00,0x00,0xff,0x60, //+@@@*.*@@+.....+@@*. +0x5f,0xff,0x60,0x6f,0xff,0xff,0xff,0xff,0xff,0x60, //*@@@*.*@@@@@@@@@@@*. +0xaf,0xff,0x60,0x6f,0xfd,0xdd,0xdd,0xdd,0xff,0x60, //%@@@*.*@@@@@@@@@@@*. +0x8e,0xff,0x60,0x6f,0xf0,0x00,0x00,0x00,0xff,0x60, //%@@@*.*@@+.....+@@*. +0x58,0xff,0x60,0x6f,0xff,0xff,0xff,0xff,0xff,0x60, //*%@@*.*@@@@@@@@@@@*. +0x32,0xff,0x60,0x6f,0xfd,0xdd,0xdd,0xdd,0xff,0x60, //++@@*.*@@@@@@@@@@@*. +0x00,0xff,0x60,0x6f,0xf0,0x00,0x00,0x00,0xff,0x60, //.+@@*.*@@+.....+@@*. +0x00,0xff,0x60,0x6f,0xff,0xff,0xff,0xff,0xff,0x60, //.+@@*.*@@@@@@@@@@@*. +0x00,0xff,0x60,0x6f,0xfd,0xdd,0xdd,0xdd,0xff,0x60, //.+@@*.*@@@@@@@@@@@*. +0x00,0xff,0x60,0x6f,0xf0,0x00,0x00,0x00,0xff,0x60, //.+@@*.*@@+.....+@@*. +0x00,0xff,0x6d,0xff,0xff,0xff,0xff,0xff,0xff,0xfb, //.+@@*@@@@@@@@@@@@@@@ +0x00,0xff,0x6d,0xff,0xff,0xff,0xff,0xff,0xff,0xfb, //.+@@*@@@@@@@@@@@@@@@ +0x00,0xff,0x62,0x22,0x22,0x22,0x22,0x22,0x22,0x22, //.+@@*+++++++++++++++ + + /* 偃 */ 0x00,0x06,0xc8,0x00,0x00,0x00,0x00,0x00,0x00,0x00, //...*@%+............. 0x00,0x0b,0xfb,0x9f,0xff,0xff,0xff,0xff,0xff,0xf4, //...@@@%@@@@@@@@@@@@* @@ -6601,6 +6725,29 @@ static const uint8_t glyph_bitmap[] = { 0x00,0x7f,0xf2,0x00,0x00,0x0a,0xfe,0x00,0x00,0x00, //..*@@+.....%@@...... +/* 总 */ +0x00,0x00,0x05,0xb7,0x00,0x00,0x4d,0xa6,0x00,0x00, //....+*@*....*@%*.... +0x00,0x00,0x0d,0xfe,0x30,0x01,0xdf,0xe3,0x00,0x00, //....+@@@*..+@@@*.... +0x00,0x00,0x04,0xee,0x80,0x0a,0xff,0x60,0x00,0x00, //.....*@@%..%@@*..... +0x00,0x2f,0xff,0xff,0xff,0xff,0xff,0xff,0xf4,0x00, //..+@@@@@@@@@@@@@@*.. +0x00,0x2f,0xff,0xff,0xff,0xff,0xff,0xff,0xf4,0x00, //..+@@@@@@@@@@@@@@*.. +0x00,0x2f,0xfc,0x66,0x66,0x66,0x66,0xbf,0xf4,0x00, //..+@@@********@@@*.. +0x00,0x2f,0xfa,0x00,0x00,0x00,0x00,0x9f,0xf4,0x00, //..+@@%........%@@*.. +0x00,0x2f,0xfa,0x00,0x00,0x00,0x00,0x9f,0xf4,0x00, //..+@@%........%@@*.. +0x00,0x2f,0xfa,0x00,0x00,0x00,0x00,0x9f,0xf4,0x00, //..+@@%........%@@*.. +0x00,0x2f,0xff,0xff,0xff,0xff,0xff,0xff,0xf4,0x00, //..+@@@@@@@@@@@@@@*.. +0x00,0x2f,0xff,0xff,0xff,0xff,0xff,0xff,0xf4,0x00, //..+@@@@@@@@@@@@@@*.. +0x00,0x16,0x66,0x66,0x6e,0xc6,0x66,0x66,0x61,0x00, //..+******@@******+.. +0x00,0x00,0x00,0x00,0x9f,0xf5,0x00,0x00,0x00,0x00, //........%@@*........ +0x02,0xc7,0x4f,0xf6,0x2e,0xfe,0x30,0x01,0x7c,0x20, //.+@%*@@*+@@@+..+*@+. +0x08,0xff,0x5f,0xf6,0x05,0xff,0x66,0x23,0xff,0x80, //.%@@*@@*.*@@**+*@@%. +0x1e,0xfb,0x2f,0xf6,0x00,0x85,0x0a,0xe3,0xbf,0xe1, //+@@@+@@*..%*.%@+@@@+ +0x7f,0xf5,0x2f,0xf9,0x00,0x00,0x3e,0xfe,0x5f,0xf7, //%@@*+@@%+..++@@@*@@% +0x17,0xb0,0x0f,0xff,0xff,0xff,0xff,0xf9,0x0c,0x82, //+%@++@@@@@@@@@@%+@%+ +0x00,0x00,0x09,0xff,0xff,0xff,0xff,0xd1,0x00,0x00, //.....%@@@@@@@@@+.... +0x00,0x00,0x00,0x46,0x77,0x77,0x64,0x00,0x00,0x00, //......********+..... + + /* 恩 */ 0x00,0xcf,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00, //..@@@@@@@@@@@@@@@@.. 0x00,0xcf,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00, //..@@@@@@@@@@@@@@@@.. @@ -6738,6 +6885,30 @@ static const uint8_t glyph_bitmap[] = { 0x02,0x90,0x05,0x90,0x00,0x05,0x99,0x86,0x00,0x00, //.+%..*%+...*%%%*+... +/* 手 */ +0x00,0x00,0x11,0x22,0x34,0x56,0x78,0x9b,0xcc,0x00, //..+++++++****%%%@@.. +0x05,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x30, //.*@@@@@@@@@@@@@@@@+. +0x02,0xff,0xff,0xff,0xff,0xff,0xfe,0xdc,0xb9,0x40, //.+@@@@@@@@@@@@@@%%*. +0x00,0x88,0x76,0x65,0x4f,0xfd,0x00,0x00,0x00,0x00, //..%%%****@@@+....... +0x00,0x00,0x00,0x00,0x0f,0xfd,0x00,0x00,0x00,0x00, //........+@@@........ +0x00,0x00,0x00,0x00,0x0f,0xfd,0x00,0x00,0x00,0x00, //........+@@@........ +0x03,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x40, //.+@@@@@@@@@@@@@@@@*. +0x03,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x40, //.+@@@@@@@@@@@@@@@@*. +0x02,0x88,0x88,0x88,0x9f,0xfe,0x88,0x88,0x88,0x20, //.+%%%%%%%@@@%%%%%%+. +0x00,0x00,0x00,0x00,0x0f,0xfd,0x00,0x00,0x00,0x00, //........+@@@........ +0x00,0x00,0x00,0x00,0x0f,0xfd,0x00,0x00,0x00,0x00, //........+@@@........ +0xaf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfa, //%@@@@@@@@@@@@@@@@@@% +0xaf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfa, //%@@@@@@@@@@@@@@@@@@% +0x69,0x99,0x99,0x99,0x9f,0xfe,0x99,0x99,0x99,0x96, //*%%%%%%%%@@@%%%%%%%* +0x00,0x00,0x00,0x00,0x0f,0xfd,0x00,0x00,0x00,0x00, //........+@@@........ +0x00,0x00,0x00,0x00,0x0f,0xfd,0x00,0x00,0x00,0x00, //........+@@@........ +0x00,0x00,0x00,0x00,0x1f,0xfd,0x00,0x00,0x00,0x00, //........+@@@........ +0x00,0x00,0x11,0x00,0x7f,0xfc,0x00,0x00,0x00,0x00, //....++++%@@@........ +0x00,0x00,0x5f,0xff,0xff,0xf8,0x00,0x00,0x00,0x00, //....*@@@@@@%........ +0x00,0x00,0x2f,0xff,0xff,0xd1,0x00,0x00,0x00,0x00, //....+@@@@@@+........ +0x00,0x00,0x0b,0xbb,0xa7,0x10,0x00,0x00,0x00,0x00, //....+@@%%%+......... + + /* 扎 */ 0x00,0x03,0xff,0x90,0x00,0x1f,0xfa,0x00,0x00,0x00, //...+@@%...+@@%...... 0x00,0x03,0xff,0x90,0x00,0x1f,0xfa,0x00,0x00,0x00, //...+@@%...+@@%...... @@ -6948,6 +7119,29 @@ static const uint8_t glyph_bitmap[] = { 0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00, //......+++........... +/* 收 */ +0x00,0x00,0x0d,0xf9,0x00,0x2d,0xa4,0x00,0x00,0x00, //.....@@%..+@%*...... +0x00,0x00,0x0d,0xf9,0x00,0x7f,0xf4,0x00,0x00,0x00, //.....@@%..*@@*...... +0x0e,0xf6,0x0d,0xf9,0x00,0xbf,0xe0,0x00,0x00,0x00, //.@@*.@@%..@@@+...... +0x0e,0xf6,0x0d,0xf9,0x02,0xff,0xff,0xff,0xff,0xf8, //.@@*.@@%.+@@@@@@@@@% +0x0e,0xf6,0x0d,0xf9,0x08,0xff,0xff,0xff,0xff,0xf8, //.@@*.@@%.%@@@@@@@@@% +0x0e,0xf6,0x0d,0xf9,0x1e,0xfd,0x88,0x8a,0xff,0xa5, //.@@*.@@%+@@@%%%%@@%* +0x0e,0xf6,0x0d,0xf9,0x8f,0xfa,0x00,0x06,0xff,0x10, //.@@*.@@%%@@%...*@@+. +0x0e,0xf6,0x0d,0xfc,0xef,0xfd,0x00,0x09,0xfe,0x00, //.@@*.@@@@@@@+..%@@.. +0x0e,0xf6,0x0d,0xfb,0xef,0xff,0x20,0x0d,0xfb,0x00, //.@@*.@@@@@@@+..@@%.. +0x0e,0xf6,0x0d,0xf9,0x7c,0xef,0x60,0x2f,0xf7,0x00, //.@@*.@@%*@@@*.+@@*.. +0x0e,0xf6,0x0d,0xf9,0x05,0xaf,0xc0,0x7f,0xf3,0x00, //.@@*.@@%+*%@@+%@@+.. +0x0e,0xf6,0x0d,0xf9,0x00,0x5f,0xf5,0xdf,0xc0,0x00, //.@@*+@@%..*@@*@@@... +0x0e,0xfa,0xdf,0xf9,0x00,0x0d,0xfe,0xff,0x60,0x00, //.@@%@@@%..+@@@@@*... +0x1f,0xff,0xff,0xf9,0x00,0x07,0xff,0xfd,0x00,0x00, //+@@@@@@%...*@@@@+... +0x8f,0xff,0xbe,0xf9,0x00,0x03,0xff,0xfb,0x00,0x00, //%@@@@@@%...+@@@@+... +0x3f,0xe6,0x0d,0xf9,0x00,0x3e,0xff,0xff,0xa0,0x00, //+@@*+@@%..*@@@@@%+.. +0x09,0x20,0x0d,0xf9,0x07,0xef,0xfb,0xef,0xfb,0x20, //.%+..@@%+*@@@%@@@@+. +0x00,0x00,0x0d,0xfb,0xcf,0xff,0x90,0x3e,0xff,0xe6, //.....@@%@@@@%++@@@@* +0x00,0x00,0x0d,0xf9,0xaf,0xe7,0x00,0x02,0xcf,0xe2, //.....@@%%@@%+..+@@@+ +0x00,0x00,0x0d,0xf9,0x2b,0x20,0x00,0x00,0x09,0x50, //.....@@%+@+.....+%*. + + /* 政 */ 0x00,0x00,0x00,0x00,0x00,0x00,0xd9,0x40,0x00,0x00, //...........+@%*..... 0x00,0x00,0x00,0x00,0x00,0x04,0xff,0x70,0x00,0x00, //...........*@@*..... @@ -7297,6 +7491,30 @@ static const uint8_t glyph_bitmap[] = { 0x00,0x03,0xff,0x50,0x00,0x00,0x05,0xff,0x20,0x00, //...+@@*......*@@+... +/* 昨 */ +0x00,0x00,0x00,0x00,0x4c,0x92,0x00,0x00,0x00,0x00, //........*@%+....... +0x00,0x00,0x00,0x00,0x7f,0xf1,0x00,0x00,0x00,0x00, //........%@@+....... +0xcf,0xff,0xff,0x80,0xcf,0xc0,0x00,0x00,0x00,0x00, //@@@@@@%.@@@........ +0xcf,0xff,0xff,0x82,0xff,0xff,0xff,0xff,0xff,0x90, //@@@@@@%+@@@@@@@@@@% +0xcf,0xb5,0xdf,0x88,0xff,0xff,0xff,0xff,0xff,0x90, //@@%*@@%%@@@@@@@@@@% +0xcf,0x80,0xdf,0x9e,0xfd,0xff,0xc7,0x77,0x77,0x50, //@@%.@@%@@@@@@%%%%%* +0xcf,0x80,0xdf,0xef,0xf8,0xff,0x90,0x00,0x00,0x00, //@@%.@@@@@%@@%...... +0xcf,0x80,0xdf,0xdf,0xf4,0xff,0x90,0x00,0x00,0x00, //@@%.@@@@@*@@%...... +0xcf,0xff,0xff,0x8e,0xd1,0xff,0x90,0x00,0x00,0x00, //@@@@@@%@@+@@%...... +0xcf,0xff,0xff,0x88,0x80,0xff,0xff,0xff,0xff,0x00, //@@@@@@%%%+@@@@@@@@+ +0xcf,0xb5,0xdf,0x82,0x20,0xff,0xff,0xff,0xff,0x00, //@@%*@@%+++@@@@@@@@+ +0xcf,0x80,0xdf,0x80,0x00,0xff,0xb7,0x77,0x77,0x00, //@@%.@@%..+@@@*****+ +0xcf,0x80,0xdf,0x80,0x00,0xff,0x90,0x00,0x00,0x00, //@@%.@@%..+@@%...... +0xcf,0x80,0xdf,0x80,0x00,0xff,0x90,0x00,0x00,0x00, //@@%.@@%..+@@%...... +0xcf,0x80,0xdf,0x80,0x00,0xff,0xff,0xff,0xff,0x50, //@@%.@@%..+@@@@@@@@* +0xcf,0x80,0xdf,0x80,0x00,0xff,0xff,0xff,0xff,0x50, //@@%.@@%..+@@@@@@@@* +0xcf,0xff,0xff,0x80,0x00,0xff,0xb7,0x77,0x77,0x20, //@@@@@@%..+@@@*****+ +0xcf,0xff,0xff,0x80,0x00,0xff,0x90,0x00,0x00,0x00, //@@@@@@%..+@@%...... +0xcf,0xb5,0xdf,0x80,0x00,0xff,0x90,0x00,0x00,0x00, //@@%*@@%..+@@%...... +0xcf,0x80,0xdf,0x80,0x00,0xff,0x90,0x00,0x00,0x00, //@@%.@@%..+@@%...... +0x00,0x00,0x00,0x00,0x00,0xff,0x90,0x00,0x00,0x00, //.........+@@%...... + + /* 昭 */ 0x00,0x00,0x00,0x00,0x9f,0xff,0xff,0xff,0xff,0xd0, //........%@@@@@@@@@@ 0x0f,0xff,0xff,0xf9,0x9f,0xff,0xff,0xff,0xff,0xc0, //+@@@@@@%%@@@@@@@@@@ @@ -10730,6 +10948,29 @@ static const uint8_t glyph_bitmap[] = { 0x00,0x00,0xaf,0xf1,0x00,0x00,0x00,0x0c,0xfe,0x00, //....%@@+.......@@@.. +/* 码 */ +0x4f,0xff,0xff,0xff,0x5f,0xff,0xff,0xff,0xfd,0x00, //*@@@@@@@*@@@@@@@@@. +0x4f,0xff,0xff,0xff,0x5f,0xff,0xff,0xff,0xfc,0x00, //*@@@@@@@*@@@@@@@@@. +0x27,0x8f,0xfa,0x77,0x27,0x77,0x77,0x7e,0xfa,0x00, //+*%@@%**+******@@%. +0x00,0x5f,0xf3,0x00,0x06,0xff,0x10,0x0e,0xf9,0x00, //..*@@+...*@@+..@@%. +0x00,0x9f,0xe0,0x00,0x08,0xfe,0x00,0x0f,0xf8,0x00, //..%@@+...%@@+.+@@%. +0x00,0xdf,0xb0,0x00,0x09,0xfd,0x00,0x2f,0xf7,0x00, //.+@@%....%@@..+@@*. +0x03,0xff,0x60,0x00,0x0a,0xfc,0x00,0x3f,0xf5,0x00, //.+@@*....%@@..+@@*. +0x09,0xff,0xff,0xff,0x0c,0xfb,0x00,0x4f,0xf4,0x00, //.%@@@@@@+@@@..*@@*. +0x0e,0xff,0xff,0xff,0x0d,0xff,0xff,0xff,0xff,0xd0, //+@@@@@@@+@@@@@@@@@@ +0x6f,0xff,0x8a,0xff,0x0d,0xff,0xff,0xff,0xff,0xc0, //*@@@%%@@+@@@@@@@@@@ +0x9f,0xff,0x47,0xff,0x06,0x77,0x77,0x77,0xdf,0xc0, //%@@@**@@+*******@@@ +0x3f,0xff,0x47,0xff,0x00,0x00,0x00,0x00,0xcf,0xb0, //+@@@**@@+.......@@@ +0x0a,0xff,0x47,0xff,0x00,0x00,0x00,0x00,0xdf,0xa0, //.%@@**@@+.......@@% +0x03,0xff,0x47,0xff,0x6f,0xff,0xff,0xf0,0xdf,0xa0, //.+@@**@@*@@@@@@.@@% +0x03,0xff,0x47,0xff,0x6f,0xff,0xff,0xf0,0xef,0x90, //.+@@**@@*@@@@@@.@@% +0x03,0xff,0xff,0xff,0x37,0x77,0x77,0x70,0xff,0x90, //.+@@@@@@+******+@@% +0x03,0xff,0xff,0xff,0x00,0x00,0x00,0x04,0xff,0x80, //.+@@@@@@+......*@@% +0x03,0xff,0x8a,0xff,0x00,0x06,0xff,0xff,0xff,0x60, //.+@@%%@@+..*@@@@@@* +0x00,0x00,0x00,0x00,0x00,0x04,0xff,0xff,0xfd,0x10, //...........*@@@@@@+ +0x00,0x00,0x00,0x00,0x00,0x01,0xbb,0xba,0x82,0x00, //...........+%%%%%+. + + /* 碑 */ 0x00,0x00,0x00,0x00,0x00,0x04,0xdc,0x60,0x00,0x00, //...........*@@*..... 0x2f,0xff,0xff,0xf7,0x00,0x08,0xff,0x40,0x00,0x00, //+@@@@@@*...%@@*..... @@ -11286,6 +11527,29 @@ static const uint8_t glyph_bitmap[] = { 0x00,0x00,0x00,0x00,0xbf,0xc0,0x00,0x00,0x00,0x00, //........@@@......... +/* 股 */ +0x0a,0xff,0xff,0xfe,0x00,0xdf,0xff,0xff,0xf9,0x00, //.%@@@@@@..@@@@@@@%.. +0x0a,0xff,0xff,0xfe,0x00,0xdf,0xff,0xff,0xf9,0x00, //.%@@@@@@..@@@@@@@%.. +0x0a,0xfc,0x7a,0xfe,0x00,0xef,0xa6,0x6c,0xf9,0x00, //.%@@%%@@..@@%**@@%.. +0x0a,0xfa,0x06,0xfe,0x00,0xff,0x50,0x0a,0xf9,0x00, //.%@%.*@@.+@@*..%@%.. +0x0a,0xfa,0x06,0xfe,0x03,0xff,0x40,0x0a,0xfc,0x00, //.%@%.*@@.+@@*..%@@+. +0x0a,0xff,0xff,0xfe,0x09,0xfe,0x00,0x09,0xff,0xf9, //.%@@@@@@+%@@+..%@@@% +0x0a,0xff,0xff,0xfe,0x2e,0xf9,0x00,0x04,0xff,0xf6, //.%@@@@@@+@@%...*@@@* +0x0a,0xfb,0x49,0xfe,0x03,0xb1,0x00,0x00,0x36,0x61, //.%@@*%@@.+%+....+**+ +0x0a,0xfa,0x06,0xfe,0x4f,0xff,0xff,0xff,0xff,0xd0, //.%@%.*@@*@@@@@@@@@@. +0x0a,0xf9,0x06,0xfe,0x4f,0xff,0xff,0xff,0xff,0xd0, //.%@%.*@@*@@@@@@@@@@. +0x0b,0xff,0xff,0xfe,0x16,0xdf,0x66,0x67,0xef,0xb0, //.@@@@@@@+*@@****@@@. +0x0b,0xff,0xff,0xfe,0x05,0xff,0x60,0x09,0xff,0x30, //.@@@@@@@.*@@*..%@@+. +0x0d,0xfa,0x49,0xfe,0x00,0xcf,0xe5,0x7f,0xf9,0x00, //.@@%*%@@.+@@@*%@@%.. +0x0e,0xf7,0x06,0xfe,0x00,0x2d,0xfe,0xff,0xc0,0x00, //+@@*.*@@..+@@@@@@+.. +0x2f,0xf5,0x06,0xfe,0x00,0x04,0xff,0xfe,0x20,0x00, //+@@*.*@@...*@@@@+... +0x6f,0xf2,0x0a,0xfe,0x00,0x5e,0xff,0xff,0xd4,0x00, //*@@++%@@..*@@@@@@*.. +0xaf,0xd9,0xff,0xfe,0x5c,0xff,0xfc,0xcf,0xff,0xb3, //%@@%@@@@*@@@@@@@@@@+ +0x2e,0x94,0xff,0xf9,0x6f,0xfe,0x80,0x08,0xef,0xe3, //+@%*@@@%*@@@%++%@@@+ +0x05,0x30,0x76,0x40,0x0d,0xa2,0x00,0x00,0x3a,0x80, //.*++%**++@%+....+%%. +0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00, //.........+.......... + + /* 肥 */ 0x08,0xff,0xff,0xfc,0x4f,0xff,0xff,0xff,0xff,0xc0, //.%@@@@@@*@@@@@@@@@@. 0x08,0xff,0xff,0xfc,0x4f,0xff,0xff,0xff,0xff,0xc0, //.%@@@@@@*@@@@@@@@@@. @@ -13188,6 +13452,28 @@ static const uint8_t glyph_bitmap[] = { 0x7b,0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xb8, //%@@@@@@@@@@@@@@@@@@% +/* 量 */ +0x00,0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0x00, //..%@@@@@@@@@@@@@@%.. +0x00,0xbf,0xe5,0x55,0x55,0x55,0x55,0x5e,0xfb,0x00, //..%@@**********@@%.. +0x00,0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0x00, //..%@@@@@@@@@@@@@@%.. +0x00,0xbf,0xe2,0x22,0x22,0x22,0x22,0x2e,0xfb,0x00, //..%@@++++++++++@@%.. +0x00,0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0x00, //..%@@@@@@@@@@@@@@%.. +0x00,0x45,0x55,0x55,0x55,0x55,0x55,0x55,0x54,0x00, //..****************.. +0x8f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf9, //%@@@@@@@@@@@@@@@@@@% +0x36,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x64, //******************** +0x00,0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0x00, //..@@@@@@@@@@@@@@@@.. +0x00,0xbf,0xc5,0x55,0x8f,0xf8,0x55,0x5c,0xfb,0x00, //..@@@***%@@%***@@@.. +0x00,0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0x00, //..@@@@@@@@@@@@@@@@.. +0x00,0xbf,0xb2,0x22,0x6f,0xf6,0x22,0x2c,0xfb,0x00, //..@@@+++*@@*+++@@@.. +0x00,0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0x00, //..@@@@@@@@@@@@@@@@.. +0x00,0x45,0x55,0x55,0x8f,0xf8,0x55,0x55,0x54,0x00, //..******%@@%******.. +0x06,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x70, //.*@@@@@@@@@@@@@@@@%. +0x02,0x55,0x55,0x55,0x8f,0xf8,0x55,0x55,0x55,0x20, //.+******%@@%******+. +0x9f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfa, //%@@@@@@@@@@@@@@@@@@% +0x9f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfa, //%@@@@@@@@@@@@@@@@@@% +0x46,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x64, //******************** + + /* 金 */ 0x00,0x00,0x00,0x00,0x9f,0xfe,0x40,0x00,0x00,0x00, //........%@@@*....... 0x00,0x00,0x00,0x06,0xff,0xff,0x60,0x00,0x00,0x00, //.......*@@@@*....... @@ -14522,693 +14808,699 @@ static const uint8_t glyph_bitmap[] = { 0x07,0x70,0x00,0x00,0x00,0x04,0x67,0x76,0x51,0x00, //.**.......+******+.. -/* , */ -0x0c,0xfe,0x10, //.@@@+ -0x0d,0xfc,0x00, //.@@@. -0x0e,0xf7,0x00, //+@@*. -0x1f,0xf2,0x00, //+@@+. -0x3f,0xd0,0x00, //+@@.. - - }; static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { - {.bitmap_index = 0, .adv_w = 6, .box_h = 0, .box_w = 6, .ofs_x = 0, .ofs_y = 5},/*( )*/ - {.bitmap_index = 0, .adv_w = 7, .box_h = 15, .box_w = 6, .ofs_x = 2, .ofs_y = 5},/*(!)*/ - {.bitmap_index = 45, .adv_w = 9, .box_h = 5, .box_w = 4, .ofs_x = 5, .ofs_y = 15},/*(")*/ - {.bitmap_index = 55, .adv_w = 14, .box_h = 14, .box_w = 16, .ofs_x = -1, .ofs_y = 6},/*(#)*/ - {.bitmap_index = 167, .adv_w = 11, .box_h = 19, .box_w = 10, .ofs_x = 1, .ofs_y = 3},/*($)*/ - {.bitmap_index = 262, .adv_w = 18, .box_h = 15, .box_w = 18, .ofs_x = 1, .ofs_y = 5},/*(%)*/ - {.bitmap_index = 397, .adv_w = 19, .box_h = 15, .box_w = 18, .ofs_x = 1, .ofs_y = 5},/*(&)*/ - {.bitmap_index = 532, .adv_w = 5, .box_h = 5, .box_w = 4, .ofs_x = 1, .ofs_y = 15},/*(')*/ - {.bitmap_index = 542, .adv_w = 9, .box_h = 18, .box_w = 8, .ofs_x = 2, .ofs_y = 2},/*(()*/ - {.bitmap_index = 614, .adv_w = 6, .box_h = 18, .box_w = 8, .ofs_x = -1, .ofs_y = 2},/*())*/ - {.bitmap_index = 686, .adv_w = 9, .box_h = 8, .box_w = 10, .ofs_x = 0, .ofs_y = 12},/*(*)*/ - {.bitmap_index = 726, .adv_w = 13, .box_h = 10, .box_w = 10, .ofs_x = 3, .ofs_y = 6},/*(+)*/ - {.bitmap_index = 776, .adv_w = 3, .box_h = 5, .box_w = 4, .ofs_x = -1, .ofs_y = 2},/*(,)*/ - {.bitmap_index = 786, .adv_w = 8, .box_h = 3, .box_w = 6, .ofs_x = 2, .ofs_y = 9},/*(-)*/ - {.bitmap_index = 795, .adv_w = 5, .box_h = 4, .box_w = 4, .ofs_x = 1, .ofs_y = 5},/*(.)*/ - {.bitmap_index = 803, .adv_w = 10, .box_h = 18, .box_w = 12, .ofs_x = -1, .ofs_y = 2},/*(/)*/ - {.bitmap_index = 911, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(0)*/ - {.bitmap_index = 986, .adv_w = 8, .box_h = 15, .box_w = 6, .ofs_x = 2, .ofs_y = 5},/*(1)*/ - {.bitmap_index = 1031, .adv_w = 10, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(2)*/ - {.bitmap_index = 1106, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(3)*/ - {.bitmap_index = 1181, .adv_w = 12, .box_h = 15, .box_w = 12, .ofs_x = 0, .ofs_y = 5},/*(4)*/ - {.bitmap_index = 1271, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 2, .ofs_y = 5},/*(5)*/ - {.bitmap_index = 1346, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(6)*/ - {.bitmap_index = 1421, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(7)*/ - {.bitmap_index = 1496, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(8)*/ - {.bitmap_index = 1571, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(9)*/ - {.bitmap_index = 1646, .adv_w = 5, .box_h = 11, .box_w = 4, .ofs_x = 1, .ofs_y = 5},/*(:)*/ - {.bitmap_index = 1668, .adv_w = 5, .box_h = 13, .box_w = 6, .ofs_x = -1, .ofs_y = 3},/*(;)*/ - {.bitmap_index = 1707, .adv_w = 13, .box_h = 12, .box_w = 10, .ofs_x = 3, .ofs_y = 6},/*(<)*/ - {.bitmap_index = 1767, .adv_w = 12, .box_h = 8, .box_w = 10, .ofs_x = 2, .ofs_y = 7},/*(=)*/ - {.bitmap_index = 1807, .adv_w = 13, .box_h = 13, .box_w = 10, .ofs_x = 3, .ofs_y = 5},/*(>)*/ - {.bitmap_index = 1872, .adv_w = 9, .box_h = 15, .box_w = 10, .ofs_x = 0, .ofs_y = 5},/*(?)*/ - {.bitmap_index = 1947, .adv_w = 19, .box_h = 17, .box_w = 18, .ofs_x = 1, .ofs_y = 3},/*(@)*/ - {.bitmap_index = 2100, .adv_w = 15, .box_h = 15, .box_w = 14, .ofs_x = 1, .ofs_y = 5},/*(A)*/ - {.bitmap_index = 2205, .adv_w = 13, .box_h = 15, .box_w = 12, .ofs_x = 2, .ofs_y = 5},/*(B)*/ - {.bitmap_index = 2295, .adv_w = 13, .box_h = 15, .box_w = 12, .ofs_x = 1, .ofs_y = 5},/*(C)*/ - {.bitmap_index = 2385, .adv_w = 15, .box_h = 15, .box_w = 14, .ofs_x = 2, .ofs_y = 5},/*(D)*/ - {.bitmap_index = 2490, .adv_w = 10, .box_h = 15, .box_w = 8, .ofs_x = 2, .ofs_y = 5},/*(E)*/ - {.bitmap_index = 2550, .adv_w = 10, .box_h = 15, .box_w = 8, .ofs_x = 2, .ofs_y = 5},/*(F)*/ - {.bitmap_index = 2610, .adv_w = 14, .box_h = 15, .box_w = 14, .ofs_x = 1, .ofs_y = 5},/*(G)*/ - {.bitmap_index = 2715, .adv_w = 14, .box_h = 15, .box_w = 12, .ofs_x = 2, .ofs_y = 5},/*(H)*/ - {.bitmap_index = 2805, .adv_w = 5, .box_h = 15, .box_w = 4, .ofs_x = 2, .ofs_y = 5},/*(I)*/ - {.bitmap_index = 2835, .adv_w = 7, .box_h = 15, .box_w = 8, .ofs_x = 0, .ofs_y = 5},/*(J)*/ - {.bitmap_index = 2895, .adv_w = 14, .box_h = 15, .box_w = 12, .ofs_x = 2, .ofs_y = 5},/*(K)*/ - {.bitmap_index = 2985, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 2, .ofs_y = 5},/*(L)*/ - {.bitmap_index = 3060, .adv_w = 19, .box_h = 15, .box_w = 18, .ofs_x = 2, .ofs_y = 5},/*(M)*/ - {.bitmap_index = 3195, .adv_w = 15, .box_h = 15, .box_w = 14, .ofs_x = 2, .ofs_y = 5},/*(N)*/ - {.bitmap_index = 3300, .adv_w = 15, .box_h = 15, .box_w = 14, .ofs_x = 1, .ofs_y = 5},/*(O)*/ - {.bitmap_index = 3405, .adv_w = 12, .box_h = 15, .box_w = 10, .ofs_x = 2, .ofs_y = 5},/*(P)*/ - {.bitmap_index = 3480, .adv_w = 17, .box_h = 17, .box_w = 16, .ofs_x = 1, .ofs_y = 3},/*(Q)*/ - {.bitmap_index = 3616, .adv_w = 14, .box_h = 15, .box_w = 12, .ofs_x = 2, .ofs_y = 5},/*(R)*/ - {.bitmap_index = 3706, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(S)*/ - {.bitmap_index = 3781, .adv_w = 13, .box_h = 15, .box_w = 14, .ofs_x = 0, .ofs_y = 5},/*(T)*/ - {.bitmap_index = 3886, .adv_w = 14, .box_h = 15, .box_w = 12, .ofs_x = 2, .ofs_y = 5},/*(U)*/ - {.bitmap_index = 3976, .adv_w = 14, .box_h = 15, .box_w = 14, .ofs_x = 0, .ofs_y = 5},/*(V)*/ - {.bitmap_index = 4081, .adv_w = 23, .box_h = 15, .box_w = 24, .ofs_x = 0, .ofs_y = 5},/*(W)*/ - {.bitmap_index = 4261, .adv_w = 14, .box_h = 15, .box_w = 14, .ofs_x = 0, .ofs_y = 5},/*(X)*/ - {.bitmap_index = 4366, .adv_w = 13, .box_h = 15, .box_w = 14, .ofs_x = 0, .ofs_y = 5},/*(Y)*/ - {.bitmap_index = 4471, .adv_w = 12, .box_h = 15, .box_w = 12, .ofs_x = 0, .ofs_y = 5},/*(Z)*/ - {.bitmap_index = 4561, .adv_w = 7, .box_h = 19, .box_w = 6, .ofs_x = 2, .ofs_y = 1},/*([)*/ - {.bitmap_index = 4618, .adv_w = 11, .box_h = 18, .box_w = 12, .ofs_x = -1, .ofs_y = 2},/*(\)*/ - {.bitmap_index = 4726, .adv_w = 6, .box_h = 19, .box_w = 6, .ofs_x = 1, .ofs_y = 1},/*(])*/ - {.bitmap_index = 4783, .adv_w = 14, .box_h = 9, .box_w = 14, .ofs_x = 1, .ofs_y = 11},/*(^)*/ - {.bitmap_index = 4846, .adv_w = 9, .box_h = 2, .box_w = 10, .ofs_x = 0, .ofs_y = 0},/*(_)*/ - {.bitmap_index = 4856, .adv_w = 7, .box_h = 3, .box_w = 6, .ofs_x = 1, .ofs_y = 18},/*(`)*/ - {.bitmap_index = 4865, .adv_w = 11, .box_h = 11, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(a)*/ - {.bitmap_index = 4920, .adv_w = 12, .box_h = 16, .box_w = 12, .ofs_x = 1, .ofs_y = 5},/*(b)*/ - {.bitmap_index = 5016, .adv_w = 11, .box_h = 11, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(c)*/ - {.bitmap_index = 5071, .adv_w = 12, .box_h = 16, .box_w = 12, .ofs_x = 1, .ofs_y = 5},/*(d)*/ - {.bitmap_index = 5167, .adv_w = 11, .box_h = 11, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(e)*/ - {.bitmap_index = 5222, .adv_w = 8, .box_h = 16, .box_w = 8, .ofs_x = 0, .ofs_y = 5},/*(f)*/ - {.bitmap_index = 5286, .adv_w = 12, .box_h = 16, .box_w = 12, .ofs_x = 1, .ofs_y = 0},/*(g)*/ - {.bitmap_index = 5382, .adv_w = 12, .box_h = 16, .box_w = 12, .ofs_x = 1, .ofs_y = 5},/*(h)*/ - {.bitmap_index = 5478, .adv_w = 5, .box_h = 16, .box_w = 4, .ofs_x = 1, .ofs_y = 5},/*(i)*/ - {.bitmap_index = 5510, .adv_w = 5, .box_h = 22, .box_w = 8, .ofs_x = -2, .ofs_y = 0},/*(j)*/ - {.bitmap_index = 5598, .adv_w = 12, .box_h = 16, .box_w = 12, .ofs_x = 1, .ofs_y = 5},/*(k)*/ - {.bitmap_index = 5694, .adv_w = 4, .box_h = 16, .box_w = 4, .ofs_x = 1, .ofs_y = 5},/*(l)*/ - {.bitmap_index = 5726, .adv_w = 19, .box_h = 11, .box_w = 18, .ofs_x = 1, .ofs_y = 5},/*(m)*/ - {.bitmap_index = 5825, .adv_w = 11, .box_h = 11, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(n)*/ - {.bitmap_index = 5880, .adv_w = 12, .box_h = 11, .box_w = 12, .ofs_x = 1, .ofs_y = 5},/*(o)*/ - {.bitmap_index = 5946, .adv_w = 12, .box_h = 16, .box_w = 12, .ofs_x = 1, .ofs_y = 0},/*(p)*/ - {.bitmap_index = 6042, .adv_w = 12, .box_h = 16, .box_w = 12, .ofs_x = 1, .ofs_y = 0},/*(q)*/ - {.bitmap_index = 6138, .adv_w = 8, .box_h = 11, .box_w = 8, .ofs_x = 1, .ofs_y = 5},/*(r)*/ - {.bitmap_index = 6182, .adv_w = 9, .box_h = 11, .box_w = 8, .ofs_x = 1, .ofs_y = 5},/*(s)*/ - {.bitmap_index = 6226, .adv_w = 7, .box_h = 14, .box_w = 8, .ofs_x = 0, .ofs_y = 5},/*(t)*/ - {.bitmap_index = 6282, .adv_w = 11, .box_h = 11, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(u)*/ - {.bitmap_index = 6337, .adv_w = 12, .box_h = 11, .box_w = 12, .ofs_x = 0, .ofs_y = 5},/*(v)*/ - {.bitmap_index = 6403, .adv_w = 18, .box_h = 11, .box_w = 20, .ofs_x = -1, .ofs_y = 5},/*(w)*/ - {.bitmap_index = 6513, .adv_w = 11, .box_h = 11, .box_w = 12, .ofs_x = 0, .ofs_y = 5},/*(x)*/ - {.bitmap_index = 6579, .adv_w = 12, .box_h = 17, .box_w = 12, .ofs_x = 0, .ofs_y = 0},/*(y)*/ - {.bitmap_index = 6681, .adv_w = 10, .box_h = 11, .box_w = 10, .ofs_x = 0, .ofs_y = 5},/*(z)*/ - {.bitmap_index = 6736, .adv_w = 7, .box_h = 18, .box_w = 6, .ofs_x = 1, .ofs_y = 2},/*({)*/ - {.bitmap_index = 6790, .adv_w = 5, .box_h = 22, .box_w = 4, .ofs_x = 2, .ofs_y = 0},/*(|)*/ - {.bitmap_index = 6834, .adv_w = 7, .box_h = 18, .box_w = 6, .ofs_x = 1, .ofs_y = 2},/*(})*/ - {.bitmap_index = 6888, .adv_w = 13, .box_h = 5, .box_w = 12, .ofs_x = 2, .ofs_y = 8},/*(~)*/ - {.bitmap_index = 6918, .adv_w = 6, .box_h = 0, .box_w = 6, .ofs_x = 0, .ofs_y = 5},/*()*/ - {.bitmap_index = 6918, .adv_w = 7, .box_h = 6, .box_w = 6, .ofs_x = 1, .ofs_y = 14},/*(°)*/ - {.bitmap_index = 6936, .adv_w = 7, .box_h = 6, .box_w = 6, .ofs_x = 1, .ofs_y = 2},/*(。)*/ - {.bitmap_index = 6954, .adv_w = 20, .box_h = 3, .box_w = 20, .ofs_x = 0, .ofs_y = 10},/*(一)*/ - {.bitmap_index = 6984, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(七)*/ - {.bitmap_index = 7184, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(万)*/ - {.bitmap_index = 7384, .adv_w = 20, .box_h = 17, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(三)*/ - {.bitmap_index = 7554, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(上)*/ - {.bitmap_index = 7744, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(丘)*/ - {.bitmap_index = 7944, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(东)*/ - {.bitmap_index = 8154, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(严)*/ - {.bitmap_index = 8354, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(个)*/ - {.bitmap_index = 8554, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 2},/*(中)*/ - {.bitmap_index = 8734, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(丰)*/ - {.bitmap_index = 8944, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(临)*/ - {.bitmap_index = 9144, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(丹)*/ - {.bitmap_index = 9344, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(主)*/ - {.bitmap_index = 9544, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(丽)*/ - {.bitmap_index = 9724, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(义)*/ - {.bitmap_index = 9934, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(乌)*/ - {.bitmap_index = 10134, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(乐)*/ - {.bitmap_index = 10344, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(九)*/ - {.bitmap_index = 10544, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(乡)*/ - {.bitmap_index = 10744, .adv_w = 20, .box_h = 15, .box_w = 20, .ofs_x = 0, .ofs_y = 4},/*(二)*/ - {.bitmap_index = 10894, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(云)*/ - {.bitmap_index = 11084, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(五)*/ - {.bitmap_index = 11274, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(井)*/ - {.bitmap_index = 11484, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(亚)*/ - {.bitmap_index = 11674, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(交)*/ - {.bitmap_index = 11874, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(京)*/ - {.bitmap_index = 12084, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(亳)*/ - {.bitmap_index = 12264, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(什)*/ - {.bitmap_index = 12464, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(仁)*/ - {.bitmap_index = 12644, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(介)*/ - {.bitmap_index = 12844, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(仓)*/ - {.bitmap_index = 13044, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(仙)*/ - {.bitmap_index = 13224, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(令)*/ - {.bitmap_index = 13424, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(仪)*/ - {.bitmap_index = 13634, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(们)*/ - {.bitmap_index = 13844, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(任)*/ - {.bitmap_index = 14044, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(伊)*/ - {.bitmap_index = 14244, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(休)*/ - {.bitmap_index = 14444, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(优)*/ - {.bitmap_index = 14654, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(伦)*/ - {.bitmap_index = 14854, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(低)*/ - {.bitmap_index = 15054, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(余)*/ - {.bitmap_index = 15264, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(佛)*/ - {.bitmap_index = 15464, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(作)*/ - {.bitmap_index = 15664, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(佳)*/ - {.bitmap_index = 15864, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(依)*/ - {.bitmap_index = 16064, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(侯)*/ - {.bitmap_index = 16264, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(保)*/ - {.bitmap_index = 16464, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(信)*/ - {.bitmap_index = 16664, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(偃)*/ - {.bitmap_index = 16844, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(儋)*/ - {.bitmap_index = 17024, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(元)*/ - {.bitmap_index = 17224, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(充)*/ - {.bitmap_index = 17434, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(光)*/ - {.bitmap_index = 17644, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(克)*/ - {.bitmap_index = 17854, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(兖)*/ - {.bitmap_index = 18034, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(公)*/ - {.bitmap_index = 18244, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(六)*/ - {.bitmap_index = 18444, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(兰)*/ - {.bitmap_index = 18644, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(共)*/ - {.bitmap_index = 18844, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(关)*/ - {.bitmap_index = 19044, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(兴)*/ - {.bitmap_index = 19244, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(兵)*/ - {.bitmap_index = 19444, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(冀)*/ - {.bitmap_index = 19624, .adv_w = 19, .box_h = 21, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(内)*/ - {.bitmap_index = 19813, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(冈)*/ - {.bitmap_index = 19993, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(冶)*/ - {.bitmap_index = 20173, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(冷)*/ - {.bitmap_index = 20373, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(凉)*/ - {.bitmap_index = 20563, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(凌)*/ - {.bitmap_index = 20763, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(凤)*/ - {.bitmap_index = 20943, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(凭)*/ - {.bitmap_index = 21153, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(凯)*/ - {.bitmap_index = 21353, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(则)*/ - {.bitmap_index = 21563, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(利)*/ - {.bitmap_index = 21773, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(别)*/ - {.bitmap_index = 21983, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(力)*/ - {.bitmap_index = 22193, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(勒)*/ - {.bitmap_index = 22403, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(匀)*/ - {.bitmap_index = 22613, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(包)*/ - {.bitmap_index = 22813, .adv_w = 20, .box_h = 22, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(化)*/ - {.bitmap_index = 23033, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(北)*/ - {.bitmap_index = 23243, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(区)*/ - {.bitmap_index = 23433, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(十)*/ - {.bitmap_index = 23633, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(华)*/ - {.bitmap_index = 23843, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(南)*/ - {.bitmap_index = 24053, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(博)*/ - {.bitmap_index = 24263, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(卫)*/ - {.bitmap_index = 24453, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(原)*/ - {.bitmap_index = 24653, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(厦)*/ - {.bitmap_index = 24853, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(县)*/ - {.bitmap_index = 25053, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(双)*/ - {.bitmap_index = 25243, .adv_w = 19, .box_h = 19, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(口)*/ - {.bitmap_index = 25414, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(古)*/ - {.bitmap_index = 25614, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(句)*/ - {.bitmap_index = 25824, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(台)*/ - {.bitmap_index = 26034, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(叶)*/ - {.bitmap_index = 26234, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(合)*/ - {.bitmap_index = 26424, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(吉)*/ - {.bitmap_index = 26634, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(同)*/ - {.bitmap_index = 26814, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(名)*/ - {.bitmap_index = 27014, .adv_w = 19, .box_h = 18, .box_w = 18, .ofs_x = 1, .ofs_y = 3},/*(吕)*/ - {.bitmap_index = 27176, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(启)*/ - {.bitmap_index = 27376, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(吴)*/ - {.bitmap_index = 27556, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(吾)*/ - {.bitmap_index = 27736, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(周)*/ - {.bitmap_index = 27936, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(呼)*/ - {.bitmap_index = 28136, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(和)*/ - {.bitmap_index = 28336, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(咸)*/ - {.bitmap_index = 28516, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(哈)*/ - {.bitmap_index = 28716, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(唐)*/ - {.bitmap_index = 28916, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(商)*/ - {.bitmap_index = 29126, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(喀)*/ - {.bitmap_index = 29326, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(嘉)*/ - {.bitmap_index = 29516, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(嘴)*/ - {.bitmap_index = 29716, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(四)*/ - {.bitmap_index = 29896, .adv_w = 19, .box_h = 19, .box_w = 18, .ofs_x = 1, .ofs_y = 2},/*(回)*/ - {.bitmap_index = 30067, .adv_w = 19, .box_h = 19, .box_w = 18, .ofs_x = 1, .ofs_y = 2},/*(固)*/ - {.bitmap_index = 30238, .adv_w = 19, .box_h = 19, .box_w = 18, .ofs_x = 1, .ofs_y = 2},/*(国)*/ - {.bitmap_index = 30409, .adv_w = 19, .box_h = 19, .box_w = 18, .ofs_x = 1, .ofs_y = 2},/*(图)*/ - {.bitmap_index = 30580, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(地)*/ - {.bitmap_index = 30780, .adv_w = 19, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(圳)*/ - {.bitmap_index = 30970, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(坊)*/ - {.bitmap_index = 31150, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(坛)*/ - {.bitmap_index = 31360, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 0},/*(城)*/ - {.bitmap_index = 31570, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(埠)*/ - {.bitmap_index = 31770, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(堰)*/ - {.bitmap_index = 31950, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(塔)*/ - {.bitmap_index = 32150, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(壁)*/ - {.bitmap_index = 32350, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(壮)*/ - {.bitmap_index = 32530, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(夏)*/ - {.bitmap_index = 32730, .adv_w = 19, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(多)*/ - {.bitmap_index = 32920, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(大)*/ - {.bitmap_index = 33120, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(天)*/ - {.bitmap_index = 33310, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(太)*/ - {.bitmap_index = 33510, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(头)*/ - {.bitmap_index = 33700, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(夷)*/ - {.bitmap_index = 33910, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(奉)*/ - {.bitmap_index = 34100, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(奎)*/ - {.bitmap_index = 34280, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(如)*/ - {.bitmap_index = 34480, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(姚)*/ - {.bitmap_index = 34660, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(姜)*/ - {.bitmap_index = 34840, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(威)*/ - {.bitmap_index = 35040, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(娄)*/ - {.bitmap_index = 35230, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(子)*/ - {.bitmap_index = 35420, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(孝)*/ - {.bitmap_index = 35610, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(孟)*/ - {.bitmap_index = 35800, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(宁)*/ - {.bitmap_index = 36000, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(安)*/ - {.bitmap_index = 36200, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(定)*/ - {.bitmap_index = 36400, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(宜)*/ - {.bitmap_index = 36600, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(宝)*/ - {.bitmap_index = 36800, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(宣)*/ - {.bitmap_index = 37000, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(宫)*/ - {.bitmap_index = 37200, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(家)*/ - {.bitmap_index = 37400, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(容)*/ - {.bitmap_index = 37600, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(宾)*/ - {.bitmap_index = 37800, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(宿)*/ - {.bitmap_index = 38000, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(密)*/ - {.bitmap_index = 38200, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(富)*/ - {.bitmap_index = 38390, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(察)*/ - {.bitmap_index = 38590, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(封)*/ - {.bitmap_index = 38800, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(尔)*/ - {.bitmap_index = 39010, .adv_w = 19, .box_h = 21, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(尚)*/ - {.bitmap_index = 39199, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(尾)*/ - {.bitmap_index = 39399, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(屯)*/ - {.bitmap_index = 39579, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 2},/*(山)*/ - {.bitmap_index = 39759, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(岑)*/ - {.bitmap_index = 39939, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 2},/*(岗)*/ - {.bitmap_index = 40119, .adv_w = 19, .box_h = 21, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(岛)*/ - {.bitmap_index = 40308, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(岩)*/ - {.bitmap_index = 40488, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(岭)*/ - {.bitmap_index = 40668, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(岳)*/ - {.bitmap_index = 40848, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(峡)*/ - {.bitmap_index = 41048, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(峨)*/ - {.bitmap_index = 41228, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(峪)*/ - {.bitmap_index = 41408, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(峰)*/ - {.bitmap_index = 41598, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 1, .ofs_y = 3},/*(崃)*/ - {.bitmap_index = 41778, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(崇)*/ - {.bitmap_index = 41988, .adv_w = 21, .box_h = 18, .box_w = 20, .ofs_x = 1, .ofs_y = 3},/*(嵊)*/ - {.bitmap_index = 42168, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(川)*/ - {.bitmap_index = 42368, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(州)*/ - {.bitmap_index = 42568, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(左)*/ - {.bitmap_index = 42768, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(巩)*/ - {.bitmap_index = 42948, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(差)*/ - {.bitmap_index = 43148, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(巴)*/ - {.bitmap_index = 43338, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(市)*/ - {.bitmap_index = 43548, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(布)*/ - {.bitmap_index = 43748, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 1, .ofs_y = 1},/*(师)*/ - {.bitmap_index = 43958, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(常)*/ - {.bitmap_index = 44158, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(平)*/ - {.bitmap_index = 44348, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(年)*/ - {.bitmap_index = 44558, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(广)*/ - {.bitmap_index = 44758, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(庄)*/ - {.bitmap_index = 44958, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(庆)*/ - {.bitmap_index = 45158, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(库)*/ - {.bitmap_index = 45358, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(应)*/ - {.bitmap_index = 45568, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(底)*/ - {.bitmap_index = 45768, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(店)*/ - {.bitmap_index = 45978, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(度)*/ - {.bitmap_index = 46188, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(康)*/ - {.bitmap_index = 46388, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(廊)*/ - {.bitmap_index = 46598, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(延)*/ - {.bitmap_index = 46798, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(建)*/ - {.bitmap_index = 46998, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(开)*/ - {.bitmap_index = 47198, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(张)*/ - {.bitmap_index = 47408, .adv_w = 19, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(弱)*/ - {.bitmap_index = 47598, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(强)*/ - {.bitmap_index = 47798, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(当)*/ - {.bitmap_index = 47978, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(彦)*/ - {.bitmap_index = 48168, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(彭)*/ - {.bitmap_index = 48348, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(征)*/ - {.bitmap_index = 48548, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(徐)*/ - {.bitmap_index = 48748, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(德)*/ - {.bitmap_index = 48958, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(徽)*/ - {.bitmap_index = 49158, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(志)*/ - {.bitmap_index = 49358, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(忠)*/ - {.bitmap_index = 49538, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(忻)*/ - {.bitmap_index = 49718, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(怀)*/ - {.bitmap_index = 49918, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(恩)*/ - {.bitmap_index = 50108, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(惠)*/ - {.bitmap_index = 50308, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(感)*/ - {.bitmap_index = 50508, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(慈)*/ - {.bitmap_index = 50688, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(成)*/ - {.bitmap_index = 50898, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(房)*/ - {.bitmap_index = 51108, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(扎)*/ - {.bitmap_index = 51318, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(扬)*/ - {.bitmap_index = 51528, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(承)*/ - {.bitmap_index = 51728, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(抚)*/ - {.bitmap_index = 51908, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(拉)*/ - {.bitmap_index = 52118, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(指)*/ - {.bitmap_index = 52328, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(掖)*/ - {.bitmap_index = 52508, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(揭)*/ - {.bitmap_index = 52718, .adv_w = 20, .box_h = 22, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(攀)*/ - {.bitmap_index = 52938, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(政)*/ - {.bitmap_index = 53148, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(敦)*/ - {.bitmap_index = 53358, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(文)*/ - {.bitmap_index = 53558, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(斯)*/ - {.bitmap_index = 53758, .adv_w = 20, .box_h = 22, .box_w = 20, .ofs_x = 0, .ofs_y = 0},/*(新)*/ - {.bitmap_index = 53978, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(方)*/ - {.bitmap_index = 54188, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(施)*/ - {.bitmap_index = 54398, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(族)*/ - {.bitmap_index = 54598, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(无)*/ - {.bitmap_index = 54798, .adv_w = 18, .box_h = 20, .box_w = 16, .ofs_x = 2, .ofs_y = 1},/*(日)*/ - {.bitmap_index = 54958, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(旧)*/ - {.bitmap_index = 55138, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 1},/*(昆)*/ - {.bitmap_index = 55338, .adv_w = 19, .box_h = 18, .box_w = 18, .ofs_x = 1, .ofs_y = 3},/*(昌)*/ - {.bitmap_index = 55500, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(明)*/ - {.bitmap_index = 55680, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(春)*/ - {.bitmap_index = 55880, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(昭)*/ - {.bitmap_index = 56080, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(晋)*/ - {.bitmap_index = 56260, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(普)*/ - {.bitmap_index = 56460, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(景)*/ - {.bitmap_index = 56660, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(暨)*/ - {.bitmap_index = 56850, .adv_w = 19, .box_h = 21, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(曲)*/ - {.bitmap_index = 57039, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(更)*/ - {.bitmap_index = 57239, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(最)*/ - {.bitmap_index = 57439, .adv_w = 18, .box_h = 20, .box_w = 18, .ofs_x = 0, .ofs_y = 1},/*(月)*/ - {.bitmap_index = 57619, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(有)*/ - {.bitmap_index = 57829, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(朔)*/ - {.bitmap_index = 58009, .adv_w = 19, .box_h = 22, .box_w = 20, .ofs_x = 0, .ofs_y = 0},/*(朝)*/ - {.bitmap_index = 58229, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(木)*/ - {.bitmap_index = 58429, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(本)*/ - {.bitmap_index = 58639, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(来)*/ - {.bitmap_index = 58839, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(杭)*/ - {.bitmap_index = 59049, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(松)*/ - {.bitmap_index = 59249, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(林)*/ - {.bitmap_index = 59449, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(枝)*/ - {.bitmap_index = 59629, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(枣)*/ - {.bitmap_index = 59809, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(染)*/ - {.bitmap_index = 60009, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(查)*/ - {.bitmap_index = 60209, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(柳)*/ - {.bitmap_index = 60389, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(树)*/ - {.bitmap_index = 60599, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(株)*/ - {.bitmap_index = 60799, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(根)*/ - {.bitmap_index = 60999, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(格)*/ - {.bitmap_index = 61199, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(桂)*/ - {.bitmap_index = 61399, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(桃)*/ - {.bitmap_index = 61609, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(桐)*/ - {.bitmap_index = 61789, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(桥)*/ - {.bitmap_index = 61989, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(桦)*/ - {.bitmap_index = 62169, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(梁)*/ - {.bitmap_index = 62369, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(梅)*/ - {.bitmap_index = 62579, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(梧)*/ - {.bitmap_index = 62759, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(棱)*/ - {.bitmap_index = 62939, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(楚)*/ - {.bitmap_index = 63139, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(榆)*/ - {.bitmap_index = 63319, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(樟)*/ - {.bitmap_index = 63499, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(武)*/ - {.bitmap_index = 63699, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(毕)*/ - {.bitmap_index = 63899, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 1},/*(民)*/ - {.bitmap_index = 64099, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(气)*/ - {.bitmap_index = 64309, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(水)*/ - {.bitmap_index = 64489, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(永)*/ - {.bitmap_index = 64699, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(汉)*/ - {.bitmap_index = 64899, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(汕)*/ - {.bitmap_index = 65079, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(汝)*/ - {.bitmap_index = 65259, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(江)*/ - {.bitmap_index = 65439, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(池)*/ - {.bitmap_index = 65639, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(污)*/ - {.bitmap_index = 65849, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(汨)*/ - {.bitmap_index = 66029, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(汾)*/ - {.bitmap_index = 66209, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(沁)*/ - {.bitmap_index = 66389, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(沂)*/ - {.bitmap_index = 66569, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(沅)*/ - {.bitmap_index = 66749, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(沈)*/ - {.bitmap_index = 66929, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(沙)*/ - {.bitmap_index = 67129, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(没)*/ - {.bitmap_index = 67329, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(沧)*/ - {.bitmap_index = 67509, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(河)*/ - {.bitmap_index = 67719, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(油)*/ - {.bitmap_index = 67929, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(治)*/ - {.bitmap_index = 68119, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(泉)*/ - {.bitmap_index = 68329, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(泊)*/ - {.bitmap_index = 68539, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(波)*/ - {.bitmap_index = 68739, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(泰)*/ - {.bitmap_index = 68939, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(泸)*/ - {.bitmap_index = 69119, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(泽)*/ - {.bitmap_index = 69329, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(洛)*/ - {.bitmap_index = 69529, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(津)*/ - {.bitmap_index = 69729, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(洪)*/ - {.bitmap_index = 69929, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(洮)*/ - {.bitmap_index = 70109, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(洱)*/ - {.bitmap_index = 70289, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(洲)*/ - {.bitmap_index = 70489, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(流)*/ - {.bitmap_index = 70699, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(济)*/ - {.bitmap_index = 70899, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(浏)*/ - {.bitmap_index = 71079, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(浙)*/ - {.bitmap_index = 71259, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(浩)*/ - {.bitmap_index = 71439, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(浮)*/ - {.bitmap_index = 71649, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(海)*/ - {.bitmap_index = 71849, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(涟)*/ - {.bitmap_index = 72029, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(涿)*/ - {.bitmap_index = 72219, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(淄)*/ - {.bitmap_index = 72399, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(淖)*/ - {.bitmap_index = 72579, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(淮)*/ - {.bitmap_index = 72759, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(深)*/ - {.bitmap_index = 72959, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(清)*/ - {.bitmap_index = 73159, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(温)*/ - {.bitmap_index = 73359, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(渭)*/ - {.bitmap_index = 73539, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(港)*/ - {.bitmap_index = 73749, .adv_w = 19, .box_h = 22, .box_w = 20, .ofs_x = 0, .ofs_y = 0},/*(湖)*/ - {.bitmap_index = 73969, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(湘)*/ - {.bitmap_index = 74149, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(湛)*/ - {.bitmap_index = 74329, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(湾)*/ - {.bitmap_index = 74539, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(源)*/ - {.bitmap_index = 74749, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(溧)*/ - {.bitmap_index = 74929, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(溪)*/ - {.bitmap_index = 75109, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(滁)*/ - {.bitmap_index = 75289, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(滋)*/ - {.bitmap_index = 75469, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(滕)*/ - {.bitmap_index = 75659, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(满)*/ - {.bitmap_index = 75859, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(滦)*/ - {.bitmap_index = 76039, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(滨)*/ - {.bitmap_index = 76239, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(漯)*/ - {.bitmap_index = 76429, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(漳)*/ - {.bitmap_index = 76609, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(潍)*/ - {.bitmap_index = 76789, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(潜)*/ - {.bitmap_index = 76989, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(潞)*/ - {.bitmap_index = 77169, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(潭)*/ - {.bitmap_index = 77349, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(潮)*/ - {.bitmap_index = 77529, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(澳)*/ - {.bitmap_index = 77739, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(濮)*/ - {.bitmap_index = 77919, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(灌)*/ - {.bitmap_index = 78109, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(灯)*/ - {.bitmap_index = 78309, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(灵)*/ - {.bitmap_index = 78499, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(烟)*/ - {.bitmap_index = 78699, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(焦)*/ - {.bitmap_index = 78899, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(煌)*/ - {.bitmap_index = 79079, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(照)*/ - {.bitmap_index = 79269, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(熟)*/ - {.bitmap_index = 79469, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(牙)*/ - {.bitmap_index = 79669, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(牡)*/ - {.bitmap_index = 79849, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(特)*/ - {.bitmap_index = 80059, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(狮)*/ - {.bitmap_index = 80269, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(玉)*/ - {.bitmap_index = 80459, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(玛)*/ - {.bitmap_index = 80659, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(珠)*/ - {.bitmap_index = 80859, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(珲)*/ - {.bitmap_index = 81039, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(理)*/ - {.bitmap_index = 81229, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(琼)*/ - {.bitmap_index = 81419, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(瑞)*/ - {.bitmap_index = 81629, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(瓦)*/ - {.bitmap_index = 81829, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(瓯)*/ - {.bitmap_index = 82009, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(甘)*/ - {.bitmap_index = 82219, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(田)*/ - {.bitmap_index = 82399, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(甸)*/ - {.bitmap_index = 82609, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(界)*/ - {.bitmap_index = 82799, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(疆)*/ - {.bitmap_index = 82999, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(登)*/ - {.bitmap_index = 83199, .adv_w = 19, .box_h = 21, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(白)*/ - {.bitmap_index = 83388, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(百)*/ - {.bitmap_index = 83588, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(皇)*/ - {.bitmap_index = 83778, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(皋)*/ - {.bitmap_index = 83958, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(益)*/ - {.bitmap_index = 84158, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(盐)*/ - {.bitmap_index = 84358, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(盖)*/ - {.bitmap_index = 84558, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(盘)*/ - {.bitmap_index = 84758, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(省)*/ - {.bitmap_index = 84958, .adv_w = 19, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(眉)*/ - {.bitmap_index = 85148, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(看)*/ - {.bitmap_index = 85338, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(石)*/ - {.bitmap_index = 85538, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(碑)*/ - {.bitmap_index = 85718, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(磐)*/ - {.bitmap_index = 85898, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(祥)*/ - {.bitmap_index = 86078, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(票)*/ - {.bitmap_index = 86278, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(福)*/ - {.bitmap_index = 86478, .adv_w = 19, .box_h = 18, .box_w = 18, .ofs_x = 1, .ofs_y = 3},/*(禹)*/ - {.bitmap_index = 86640, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(秦)*/ - {.bitmap_index = 86820, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(穆)*/ - {.bitmap_index = 87000, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(穴)*/ - {.bitmap_index = 87200, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(竹)*/ - {.bitmap_index = 87400, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(简)*/ - {.bitmap_index = 87610, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(米)*/ - {.bitmap_index = 87800, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(级)*/ - {.bitmap_index = 88000, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(纳)*/ - {.bitmap_index = 88210, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(绍)*/ - {.bitmap_index = 88420, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(绥)*/ - {.bitmap_index = 88600, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(维)*/ - {.bitmap_index = 88800, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(绵)*/ - {.bitmap_index = 88980, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(编)*/ - {.bitmap_index = 89190, .adv_w = 19, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(罗)*/ - {.bitmap_index = 89380, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(老)*/ - {.bitmap_index = 89580, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(耒)*/ - {.bitmap_index = 89760, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(聊)*/ - {.bitmap_index = 89970, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(肃)*/ - {.bitmap_index = 90150, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(肇)*/ - {.bitmap_index = 90330, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(肥)*/ - {.bitmap_index = 90510, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(胶)*/ - {.bitmap_index = 90720, .adv_w = 18, .box_h = 21, .box_w = 16, .ofs_x = 2, .ofs_y = 1},/*(自)*/ - {.bitmap_index = 90888, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(舒)*/ - {.bitmap_index = 91098, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(舞)*/ - {.bitmap_index = 91298, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(舟)*/ - {.bitmap_index = 91508, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(良)*/ - {.bitmap_index = 91708, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(色)*/ - {.bitmap_index = 91908, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(节)*/ - {.bitmap_index = 92118, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(芜)*/ - {.bitmap_index = 92298, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(芝)*/ - {.bitmap_index = 92478, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(芦)*/ - {.bitmap_index = 92658, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(芬)*/ - {.bitmap_index = 92868, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(花)*/ - {.bitmap_index = 93078, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(苏)*/ - {.bitmap_index = 93288, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(茂)*/ - {.bitmap_index = 93498, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(荆)*/ - {.bitmap_index = 93678, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(荥)*/ - {.bitmap_index = 93868, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(莆)*/ - {.bitmap_index = 94058, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(莞)*/ - {.bitmap_index = 94238, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(莱)*/ - {.bitmap_index = 94438, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(菏)*/ - {.bitmap_index = 94618, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(萍)*/ - {.bitmap_index = 94798, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(营)*/ - {.bitmap_index = 94998, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(萨)*/ - {.bitmap_index = 95198, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(葛)*/ - {.bitmap_index = 95388, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(葫)*/ - {.bitmap_index = 95568, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(蒙)*/ - {.bitmap_index = 95778, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(蓥)*/ - {.bitmap_index = 95958, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(藏)*/ - {.bitmap_index = 96168, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(虎)*/ - {.bitmap_index = 96368, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(虞)*/ - {.bitmap_index = 96558, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(蚌)*/ - {.bitmap_index = 96738, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(蛟)*/ - {.bitmap_index = 96918, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(行)*/ - {.bitmap_index = 97128, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(衡)*/ - {.bitmap_index = 97338, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(衢)*/ - {.bitmap_index = 97518, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(襄)*/ - {.bitmap_index = 97698, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(西)*/ - {.bitmap_index = 97898, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(讷)*/ - {.bitmap_index = 98078, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(许)*/ - {.bitmap_index = 98288, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(语)*/ - {.bitmap_index = 98488, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(诸)*/ - {.bitmap_index = 98698, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(调)*/ - {.bitmap_index = 98908, .adv_w = 19, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(贝)*/ - {.bitmap_index = 99098, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(贡)*/ - {.bitmap_index = 99278, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(贵)*/ - {.bitmap_index = 99488, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(贺)*/ - {.bitmap_index = 99688, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(资)*/ - {.bitmap_index = 99898, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(赣)*/ - {.bitmap_index = 100078, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(赤)*/ - {.bitmap_index = 100288, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(轻)*/ - {.bitmap_index = 100488, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(辉)*/ - {.bitmap_index = 100668, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(辑)*/ - {.bitmap_index = 100878, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(辛)*/ - {.bitmap_index = 101088, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(辽)*/ - {.bitmap_index = 101268, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(达)*/ - {.bitmap_index = 101468, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(迁)*/ - {.bitmap_index = 101668, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(运)*/ - {.bitmap_index = 101868, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(远)*/ - {.bitmap_index = 102078, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(连)*/ - {.bitmap_index = 102288, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(通)*/ - {.bitmap_index = 102488, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(遂)*/ - {.bitmap_index = 102668, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(遵)*/ - {.bitmap_index = 102868, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(邓)*/ - {.bitmap_index = 103048, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(邛)*/ - {.bitmap_index = 103228, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(邡)*/ - {.bitmap_index = 103408, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(邢)*/ - {.bitmap_index = 103588, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(那)*/ - {.bitmap_index = 103778, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(邮)*/ - {.bitmap_index = 103978, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(邯)*/ - {.bitmap_index = 104158, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(邳)*/ - {.bitmap_index = 104338, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(邵)*/ - {.bitmap_index = 104518, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(邹)*/ - {.bitmap_index = 104698, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(郏)*/ - {.bitmap_index = 104878, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(郑)*/ - {.bitmap_index = 105078, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(郭)*/ - {.bitmap_index = 105258, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(郴)*/ - {.bitmap_index = 105438, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(郸)*/ - {.bitmap_index = 105618, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(都)*/ - {.bitmap_index = 105818, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(鄂)*/ - {.bitmap_index = 105998, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(酒)*/ - {.bitmap_index = 106198, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(醴)*/ - {.bitmap_index = 106378, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(里)*/ - {.bitmap_index = 106568, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(重)*/ - {.bitmap_index = 106758, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(金)*/ - {.bitmap_index = 106958, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(钟)*/ - {.bitmap_index = 107158, .adv_w = 19, .box_h = 22, .box_w = 20, .ofs_x = 0, .ofs_y = 0},/*(钢)*/ - {.bitmap_index = 107378, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(钦)*/ - {.bitmap_index = 107558, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(铁)*/ - {.bitmap_index = 107758, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(铜)*/ - {.bitmap_index = 107968, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(银)*/ - {.bitmap_index = 108168, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(锡)*/ - {.bitmap_index = 108378, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(锦)*/ - {.bitmap_index = 108578, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(镇)*/ - {.bitmap_index = 108788, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(长)*/ - {.bitmap_index = 108988, .adv_w = 19, .box_h = 21, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(门)*/ - {.bitmap_index = 109177, .adv_w = 19, .box_h = 21, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(间)*/ - {.bitmap_index = 109366, .adv_w = 19, .box_h = 18, .box_w = 18, .ofs_x = 1, .ofs_y = 3},/*(阆)*/ - {.bitmap_index = 109528, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(阜)*/ - {.bitmap_index = 109708, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 1, .ofs_y = 1},/*(防)*/ - {.bitmap_index = 109918, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(阳)*/ - {.bitmap_index = 110098, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(阴)*/ - {.bitmap_index = 110278, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 1},/*(阿)*/ - {.bitmap_index = 110478, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(陆)*/ - {.bitmap_index = 110678, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 1, .ofs_y = 3},/*(陇)*/ - {.bitmap_index = 110858, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 1, .ofs_y = 3},/*(陕)*/ - {.bitmap_index = 111038, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(陵)*/ - {.bitmap_index = 111238, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 1, .ofs_y = 1},/*(随)*/ - {.bitmap_index = 111448, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(雄)*/ - {.bitmap_index = 111648, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(雅)*/ - {.bitmap_index = 111848, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(集)*/ - {.bitmap_index = 112048, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(霍)*/ - {.bitmap_index = 112228, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(霸)*/ - {.bitmap_index = 112428, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(青)*/ - {.bitmap_index = 112628, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(靖)*/ - {.bitmap_index = 112828, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(鞍)*/ - {.bitmap_index = 113008, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(韩)*/ - {.bitmap_index = 113208, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(音)*/ - {.bitmap_index = 113408, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(韶)*/ - {.bitmap_index = 113588, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(顶)*/ - {.bitmap_index = 113778, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(项)*/ - {.bitmap_index = 113968, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(顺)*/ - {.bitmap_index = 114158, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(额)*/ - {.bitmap_index = 114358, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(风)*/ - {.bitmap_index = 114558, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(饶)*/ - {.bitmap_index = 114738, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(首)*/ - {.bitmap_index = 114938, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(香)*/ - {.bitmap_index = 115138, .adv_w = 19, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(马)*/ - {.bitmap_index = 115328, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(驻)*/ - {.bitmap_index = 115538, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(骅)*/ - {.bitmap_index = 115718, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(高)*/ - {.bitmap_index = 115918, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(鲁)*/ - {.bitmap_index = 116108, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(鸡)*/ - {.bitmap_index = 116288, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 1, .ofs_y = 3},/*(鸭)*/ - {.bitmap_index = 116468, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(鹤)*/ - {.bitmap_index = 116648, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(鹰)*/ - {.bitmap_index = 116828, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(鹿)*/ - {.bitmap_index = 117038, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(麻)*/ - {.bitmap_index = 117238, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(黄)*/ - {.bitmap_index = 117448, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(黑)*/ - {.bitmap_index = 117638, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(鼎)*/ - {.bitmap_index = 117818, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(齐)*/ - {.bitmap_index = 118018, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(龙)*/ - {.bitmap_index = 118228, .adv_w = 7, .box_h = 5, .box_w = 6, .ofs_x = 2, .ofs_y = 2},/*(,)*/ + {.bitmap_index = 0, .adv_w = 13, .box_h = 15, .box_w = 12, .ofs_x = 2, .ofs_y = 5},/*( +)*/ + {.bitmap_index = 90, .adv_w = 6, .box_h = 0, .box_w = 6, .ofs_x = 0, .ofs_y = 5},/*( )*/ + {.bitmap_index = 90, .adv_w = 7, .box_h = 15, .box_w = 6, .ofs_x = 2, .ofs_y = 5},/*(!)*/ + {.bitmap_index = 135, .adv_w = 9, .box_h = 5, .box_w = 4, .ofs_x = 5, .ofs_y = 15},/*(")*/ + {.bitmap_index = 145, .adv_w = 14, .box_h = 14, .box_w = 16, .ofs_x = -1, .ofs_y = 6},/*(#)*/ + {.bitmap_index = 257, .adv_w = 11, .box_h = 19, .box_w = 10, .ofs_x = 1, .ofs_y = 3},/*($)*/ + {.bitmap_index = 352, .adv_w = 18, .box_h = 15, .box_w = 18, .ofs_x = 1, .ofs_y = 5},/*(%)*/ + {.bitmap_index = 487, .adv_w = 19, .box_h = 15, .box_w = 18, .ofs_x = 1, .ofs_y = 5},/*(&)*/ + {.bitmap_index = 622, .adv_w = 5, .box_h = 5, .box_w = 4, .ofs_x = 1, .ofs_y = 15},/*(')*/ + {.bitmap_index = 632, .adv_w = 9, .box_h = 18, .box_w = 8, .ofs_x = 2, .ofs_y = 2},/*(()*/ + {.bitmap_index = 704, .adv_w = 6, .box_h = 18, .box_w = 8, .ofs_x = -1, .ofs_y = 2},/*())*/ + {.bitmap_index = 776, .adv_w = 9, .box_h = 8, .box_w = 10, .ofs_x = 0, .ofs_y = 12},/*(*)*/ + {.bitmap_index = 816, .adv_w = 13, .box_h = 10, .box_w = 10, .ofs_x = 3, .ofs_y = 6},/*(+)*/ + {.bitmap_index = 866, .adv_w = 3, .box_h = 5, .box_w = 4, .ofs_x = -1, .ofs_y = 2},/*(,)*/ + {.bitmap_index = 876, .adv_w = 8, .box_h = 3, .box_w = 6, .ofs_x = 2, .ofs_y = 9},/*(-)*/ + {.bitmap_index = 885, .adv_w = 5, .box_h = 4, .box_w = 4, .ofs_x = 1, .ofs_y = 5},/*(.)*/ + {.bitmap_index = 893, .adv_w = 10, .box_h = 18, .box_w = 12, .ofs_x = -1, .ofs_y = 2},/*(/)*/ + {.bitmap_index = 1001, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(0)*/ + {.bitmap_index = 1076, .adv_w = 8, .box_h = 15, .box_w = 6, .ofs_x = 2, .ofs_y = 5},/*(1)*/ + {.bitmap_index = 1121, .adv_w = 10, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(2)*/ + {.bitmap_index = 1196, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(3)*/ + {.bitmap_index = 1271, .adv_w = 12, .box_h = 15, .box_w = 12, .ofs_x = 0, .ofs_y = 5},/*(4)*/ + {.bitmap_index = 1361, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 2, .ofs_y = 5},/*(5)*/ + {.bitmap_index = 1436, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(6)*/ + {.bitmap_index = 1511, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(7)*/ + {.bitmap_index = 1586, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(8)*/ + {.bitmap_index = 1661, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(9)*/ + {.bitmap_index = 1736, .adv_w = 5, .box_h = 11, .box_w = 4, .ofs_x = 1, .ofs_y = 5},/*(:)*/ + {.bitmap_index = 1758, .adv_w = 5, .box_h = 13, .box_w = 6, .ofs_x = -1, .ofs_y = 3},/*(;)*/ + {.bitmap_index = 1797, .adv_w = 13, .box_h = 12, .box_w = 10, .ofs_x = 3, .ofs_y = 6},/*(<)*/ + {.bitmap_index = 1857, .adv_w = 12, .box_h = 8, .box_w = 10, .ofs_x = 2, .ofs_y = 7},/*(=)*/ + {.bitmap_index = 1897, .adv_w = 13, .box_h = 13, .box_w = 10, .ofs_x = 3, .ofs_y = 5},/*(>)*/ + {.bitmap_index = 1962, .adv_w = 9, .box_h = 15, .box_w = 10, .ofs_x = 0, .ofs_y = 5},/*(?)*/ + {.bitmap_index = 2037, .adv_w = 19, .box_h = 17, .box_w = 18, .ofs_x = 1, .ofs_y = 3},/*(@)*/ + {.bitmap_index = 2190, .adv_w = 15, .box_h = 15, .box_w = 14, .ofs_x = 1, .ofs_y = 5},/*(A)*/ + {.bitmap_index = 2295, .adv_w = 13, .box_h = 15, .box_w = 12, .ofs_x = 2, .ofs_y = 5},/*(B)*/ + {.bitmap_index = 2385, .adv_w = 13, .box_h = 15, .box_w = 12, .ofs_x = 1, .ofs_y = 5},/*(C)*/ + {.bitmap_index = 2475, .adv_w = 15, .box_h = 15, .box_w = 14, .ofs_x = 2, .ofs_y = 5},/*(D)*/ + {.bitmap_index = 2580, .adv_w = 10, .box_h = 15, .box_w = 8, .ofs_x = 2, .ofs_y = 5},/*(E)*/ + {.bitmap_index = 2640, .adv_w = 10, .box_h = 15, .box_w = 8, .ofs_x = 2, .ofs_y = 5},/*(F)*/ + {.bitmap_index = 2700, .adv_w = 14, .box_h = 15, .box_w = 14, .ofs_x = 1, .ofs_y = 5},/*(G)*/ + {.bitmap_index = 2805, .adv_w = 14, .box_h = 15, .box_w = 12, .ofs_x = 2, .ofs_y = 5},/*(H)*/ + {.bitmap_index = 2895, .adv_w = 5, .box_h = 15, .box_w = 4, .ofs_x = 2, .ofs_y = 5},/*(I)*/ + {.bitmap_index = 2925, .adv_w = 7, .box_h = 15, .box_w = 8, .ofs_x = 0, .ofs_y = 5},/*(J)*/ + {.bitmap_index = 2985, .adv_w = 14, .box_h = 15, .box_w = 12, .ofs_x = 2, .ofs_y = 5},/*(K)*/ + {.bitmap_index = 3075, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 2, .ofs_y = 5},/*(L)*/ + {.bitmap_index = 3150, .adv_w = 19, .box_h = 15, .box_w = 18, .ofs_x = 2, .ofs_y = 5},/*(M)*/ + {.bitmap_index = 3285, .adv_w = 15, .box_h = 15, .box_w = 14, .ofs_x = 2, .ofs_y = 5},/*(N)*/ + {.bitmap_index = 3390, .adv_w = 15, .box_h = 15, .box_w = 14, .ofs_x = 1, .ofs_y = 5},/*(O)*/ + {.bitmap_index = 3495, .adv_w = 12, .box_h = 15, .box_w = 10, .ofs_x = 2, .ofs_y = 5},/*(P)*/ + {.bitmap_index = 3570, .adv_w = 17, .box_h = 17, .box_w = 16, .ofs_x = 1, .ofs_y = 3},/*(Q)*/ + {.bitmap_index = 3706, .adv_w = 14, .box_h = 15, .box_w = 12, .ofs_x = 2, .ofs_y = 5},/*(R)*/ + {.bitmap_index = 3796, .adv_w = 11, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(S)*/ + {.bitmap_index = 3871, .adv_w = 13, .box_h = 15, .box_w = 14, .ofs_x = 0, .ofs_y = 5},/*(T)*/ + {.bitmap_index = 3976, .adv_w = 14, .box_h = 15, .box_w = 12, .ofs_x = 2, .ofs_y = 5},/*(U)*/ + {.bitmap_index = 4066, .adv_w = 14, .box_h = 15, .box_w = 14, .ofs_x = 0, .ofs_y = 5},/*(V)*/ + {.bitmap_index = 4171, .adv_w = 23, .box_h = 15, .box_w = 24, .ofs_x = 0, .ofs_y = 5},/*(W)*/ + {.bitmap_index = 4351, .adv_w = 14, .box_h = 15, .box_w = 14, .ofs_x = 0, .ofs_y = 5},/*(X)*/ + {.bitmap_index = 4456, .adv_w = 13, .box_h = 15, .box_w = 14, .ofs_x = 0, .ofs_y = 5},/*(Y)*/ + {.bitmap_index = 4561, .adv_w = 12, .box_h = 15, .box_w = 12, .ofs_x = 0, .ofs_y = 5},/*(Z)*/ + {.bitmap_index = 4651, .adv_w = 7, .box_h = 19, .box_w = 6, .ofs_x = 2, .ofs_y = 1},/*([)*/ + {.bitmap_index = 4708, .adv_w = 11, .box_h = 18, .box_w = 12, .ofs_x = -1, .ofs_y = 2},/*(\)*/ + {.bitmap_index = 4816, .adv_w = 6, .box_h = 19, .box_w = 6, .ofs_x = 1, .ofs_y = 1},/*(])*/ + {.bitmap_index = 4873, .adv_w = 14, .box_h = 9, .box_w = 14, .ofs_x = 1, .ofs_y = 11},/*(^)*/ + {.bitmap_index = 4936, .adv_w = 9, .box_h = 2, .box_w = 10, .ofs_x = 0, .ofs_y = 0},/*(_)*/ + {.bitmap_index = 4946, .adv_w = 7, .box_h = 3, .box_w = 6, .ofs_x = 1, .ofs_y = 18},/*(`)*/ + {.bitmap_index = 4955, .adv_w = 11, .box_h = 11, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(a)*/ + {.bitmap_index = 5010, .adv_w = 12, .box_h = 16, .box_w = 12, .ofs_x = 1, .ofs_y = 5},/*(b)*/ + {.bitmap_index = 5106, .adv_w = 11, .box_h = 11, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(c)*/ + {.bitmap_index = 5161, .adv_w = 12, .box_h = 16, .box_w = 12, .ofs_x = 1, .ofs_y = 5},/*(d)*/ + {.bitmap_index = 5257, .adv_w = 11, .box_h = 11, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(e)*/ + {.bitmap_index = 5312, .adv_w = 8, .box_h = 16, .box_w = 8, .ofs_x = 0, .ofs_y = 5},/*(f)*/ + {.bitmap_index = 5376, .adv_w = 12, .box_h = 16, .box_w = 12, .ofs_x = 1, .ofs_y = 0},/*(g)*/ + {.bitmap_index = 5472, .adv_w = 12, .box_h = 16, .box_w = 12, .ofs_x = 1, .ofs_y = 5},/*(h)*/ + {.bitmap_index = 5568, .adv_w = 5, .box_h = 16, .box_w = 4, .ofs_x = 1, .ofs_y = 5},/*(i)*/ + {.bitmap_index = 5600, .adv_w = 5, .box_h = 22, .box_w = 8, .ofs_x = -2, .ofs_y = 0},/*(j)*/ + {.bitmap_index = 5688, .adv_w = 12, .box_h = 16, .box_w = 12, .ofs_x = 1, .ofs_y = 5},/*(k)*/ + {.bitmap_index = 5784, .adv_w = 4, .box_h = 16, .box_w = 4, .ofs_x = 1, .ofs_y = 5},/*(l)*/ + {.bitmap_index = 5816, .adv_w = 19, .box_h = 11, .box_w = 18, .ofs_x = 1, .ofs_y = 5},/*(m)*/ + {.bitmap_index = 5915, .adv_w = 11, .box_h = 11, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(n)*/ + {.bitmap_index = 5970, .adv_w = 12, .box_h = 11, .box_w = 12, .ofs_x = 1, .ofs_y = 5},/*(o)*/ + {.bitmap_index = 6036, .adv_w = 12, .box_h = 16, .box_w = 12, .ofs_x = 1, .ofs_y = 0},/*(p)*/ + {.bitmap_index = 6132, .adv_w = 12, .box_h = 16, .box_w = 12, .ofs_x = 1, .ofs_y = 0},/*(q)*/ + {.bitmap_index = 6228, .adv_w = 8, .box_h = 11, .box_w = 8, .ofs_x = 1, .ofs_y = 5},/*(r)*/ + {.bitmap_index = 6272, .adv_w = 9, .box_h = 11, .box_w = 8, .ofs_x = 1, .ofs_y = 5},/*(s)*/ + {.bitmap_index = 6316, .adv_w = 7, .box_h = 14, .box_w = 8, .ofs_x = 0, .ofs_y = 5},/*(t)*/ + {.bitmap_index = 6372, .adv_w = 11, .box_h = 11, .box_w = 10, .ofs_x = 1, .ofs_y = 5},/*(u)*/ + {.bitmap_index = 6427, .adv_w = 12, .box_h = 11, .box_w = 12, .ofs_x = 0, .ofs_y = 5},/*(v)*/ + {.bitmap_index = 6493, .adv_w = 18, .box_h = 11, .box_w = 20, .ofs_x = -1, .ofs_y = 5},/*(w)*/ + {.bitmap_index = 6603, .adv_w = 11, .box_h = 11, .box_w = 12, .ofs_x = 0, .ofs_y = 5},/*(x)*/ + {.bitmap_index = 6669, .adv_w = 12, .box_h = 17, .box_w = 12, .ofs_x = 0, .ofs_y = 0},/*(y)*/ + {.bitmap_index = 6771, .adv_w = 10, .box_h = 11, .box_w = 10, .ofs_x = 0, .ofs_y = 5},/*(z)*/ + {.bitmap_index = 6826, .adv_w = 7, .box_h = 18, .box_w = 6, .ofs_x = 1, .ofs_y = 2},/*({)*/ + {.bitmap_index = 6880, .adv_w = 5, .box_h = 22, .box_w = 4, .ofs_x = 2, .ofs_y = 0},/*(|)*/ + {.bitmap_index = 6924, .adv_w = 7, .box_h = 18, .box_w = 6, .ofs_x = 1, .ofs_y = 2},/*(})*/ + {.bitmap_index = 6978, .adv_w = 13, .box_h = 5, .box_w = 12, .ofs_x = 2, .ofs_y = 8},/*(~)*/ + {.bitmap_index = 7008, .adv_w = 6, .box_h = 0, .box_w = 6, .ofs_x = 0, .ofs_y = 5},/*()*/ + {.bitmap_index = 7008, .adv_w = 7, .box_h = 6, .box_w = 6, .ofs_x = 1, .ofs_y = 14},/*(°)*/ + {.bitmap_index = 7026, .adv_w = 20, .box_h = 3, .box_w = 20, .ofs_x = 0, .ofs_y = 10},/*(一)*/ + {.bitmap_index = 7056, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(七)*/ + {.bitmap_index = 7256, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(万)*/ + {.bitmap_index = 7456, .adv_w = 20, .box_h = 17, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(三)*/ + {.bitmap_index = 7626, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(上)*/ + {.bitmap_index = 7816, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(丘)*/ + {.bitmap_index = 8016, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(东)*/ + {.bitmap_index = 8226, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(严)*/ + {.bitmap_index = 8426, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(个)*/ + {.bitmap_index = 8626, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 2},/*(中)*/ + {.bitmap_index = 8806, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(丰)*/ + {.bitmap_index = 9016, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(临)*/ + {.bitmap_index = 9216, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(丹)*/ + {.bitmap_index = 9416, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(主)*/ + {.bitmap_index = 9616, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(丽)*/ + {.bitmap_index = 9796, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(义)*/ + {.bitmap_index = 10006, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(乌)*/ + {.bitmap_index = 10206, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(乐)*/ + {.bitmap_index = 10416, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(九)*/ + {.bitmap_index = 10616, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(乡)*/ + {.bitmap_index = 10816, .adv_w = 20, .box_h = 15, .box_w = 20, .ofs_x = 0, .ofs_y = 4},/*(二)*/ + {.bitmap_index = 10966, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(云)*/ + {.bitmap_index = 11156, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(五)*/ + {.bitmap_index = 11346, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(井)*/ + {.bitmap_index = 11556, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(亚)*/ + {.bitmap_index = 11746, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(交)*/ + {.bitmap_index = 11946, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(京)*/ + {.bitmap_index = 12156, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(亳)*/ + {.bitmap_index = 12336, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(亿)*/ + {.bitmap_index = 12536, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(什)*/ + {.bitmap_index = 12736, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(仁)*/ + {.bitmap_index = 12916, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(今)*/ + {.bitmap_index = 13106, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(介)*/ + {.bitmap_index = 13306, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(仓)*/ + {.bitmap_index = 13506, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(仙)*/ + {.bitmap_index = 13686, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(代)*/ + {.bitmap_index = 13896, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(令)*/ + {.bitmap_index = 14096, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(仪)*/ + {.bitmap_index = 14306, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(们)*/ + {.bitmap_index = 14516, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(价)*/ + {.bitmap_index = 14716, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(任)*/ + {.bitmap_index = 14916, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(伊)*/ + {.bitmap_index = 15116, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(休)*/ + {.bitmap_index = 15316, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(优)*/ + {.bitmap_index = 15526, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(伦)*/ + {.bitmap_index = 15726, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(低)*/ + {.bitmap_index = 15926, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(余)*/ + {.bitmap_index = 16136, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(佛)*/ + {.bitmap_index = 16336, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(作)*/ + {.bitmap_index = 16536, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(佳)*/ + {.bitmap_index = 16736, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(依)*/ + {.bitmap_index = 16936, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(侯)*/ + {.bitmap_index = 17136, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(保)*/ + {.bitmap_index = 17336, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(信)*/ + {.bitmap_index = 17536, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(值)*/ + {.bitmap_index = 17726, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(偃)*/ + {.bitmap_index = 17906, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(儋)*/ + {.bitmap_index = 18086, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(元)*/ + {.bitmap_index = 18286, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(充)*/ + {.bitmap_index = 18496, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(光)*/ + {.bitmap_index = 18706, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(克)*/ + {.bitmap_index = 18916, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(兖)*/ + {.bitmap_index = 19096, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(公)*/ + {.bitmap_index = 19306, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(六)*/ + {.bitmap_index = 19506, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(兰)*/ + {.bitmap_index = 19706, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(共)*/ + {.bitmap_index = 19906, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(关)*/ + {.bitmap_index = 20106, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(兴)*/ + {.bitmap_index = 20306, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(兵)*/ + {.bitmap_index = 20506, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(冀)*/ + {.bitmap_index = 20686, .adv_w = 19, .box_h = 21, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(内)*/ + {.bitmap_index = 20875, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(冈)*/ + {.bitmap_index = 21055, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(冶)*/ + {.bitmap_index = 21235, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(冷)*/ + {.bitmap_index = 21435, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(凉)*/ + {.bitmap_index = 21625, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(凌)*/ + {.bitmap_index = 21825, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(凤)*/ + {.bitmap_index = 22005, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(凭)*/ + {.bitmap_index = 22215, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(凯)*/ + {.bitmap_index = 22415, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(则)*/ + {.bitmap_index = 22625, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(利)*/ + {.bitmap_index = 22835, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(别)*/ + {.bitmap_index = 23045, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(力)*/ + {.bitmap_index = 23255, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(勒)*/ + {.bitmap_index = 23465, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(匀)*/ + {.bitmap_index = 23675, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(包)*/ + {.bitmap_index = 23875, .adv_w = 20, .box_h = 22, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(化)*/ + {.bitmap_index = 24095, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(北)*/ + {.bitmap_index = 24305, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(区)*/ + {.bitmap_index = 24495, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(十)*/ + {.bitmap_index = 24695, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(华)*/ + {.bitmap_index = 24905, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(南)*/ + {.bitmap_index = 25115, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(博)*/ + {.bitmap_index = 25325, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(卫)*/ + {.bitmap_index = 25515, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(原)*/ + {.bitmap_index = 25715, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(厦)*/ + {.bitmap_index = 25915, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(县)*/ + {.bitmap_index = 26115, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(双)*/ + {.bitmap_index = 26305, .adv_w = 19, .box_h = 19, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(口)*/ + {.bitmap_index = 26476, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(古)*/ + {.bitmap_index = 26676, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(句)*/ + {.bitmap_index = 26886, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(台)*/ + {.bitmap_index = 27096, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(叶)*/ + {.bitmap_index = 27296, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(合)*/ + {.bitmap_index = 27486, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(吉)*/ + {.bitmap_index = 27696, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(同)*/ + {.bitmap_index = 27876, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(名)*/ + {.bitmap_index = 28076, .adv_w = 19, .box_h = 18, .box_w = 18, .ofs_x = 1, .ofs_y = 3},/*(吕)*/ + {.bitmap_index = 28238, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(启)*/ + {.bitmap_index = 28438, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(吴)*/ + {.bitmap_index = 28618, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(吾)*/ + {.bitmap_index = 28798, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(周)*/ + {.bitmap_index = 28998, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(呼)*/ + {.bitmap_index = 29198, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(和)*/ + {.bitmap_index = 29398, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(咸)*/ + {.bitmap_index = 29578, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(哈)*/ + {.bitmap_index = 29778, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(唐)*/ + {.bitmap_index = 29978, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(商)*/ + {.bitmap_index = 30188, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(喀)*/ + {.bitmap_index = 30388, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(嘉)*/ + {.bitmap_index = 30578, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(嘴)*/ + {.bitmap_index = 30778, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(四)*/ + {.bitmap_index = 30958, .adv_w = 19, .box_h = 19, .box_w = 18, .ofs_x = 1, .ofs_y = 2},/*(回)*/ + {.bitmap_index = 31129, .adv_w = 19, .box_h = 19, .box_w = 18, .ofs_x = 1, .ofs_y = 2},/*(固)*/ + {.bitmap_index = 31300, .adv_w = 19, .box_h = 19, .box_w = 18, .ofs_x = 1, .ofs_y = 2},/*(国)*/ + {.bitmap_index = 31471, .adv_w = 19, .box_h = 19, .box_w = 18, .ofs_x = 1, .ofs_y = 2},/*(图)*/ + {.bitmap_index = 31642, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(地)*/ + {.bitmap_index = 31842, .adv_w = 19, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(圳)*/ + {.bitmap_index = 32032, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(坊)*/ + {.bitmap_index = 32212, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(坛)*/ + {.bitmap_index = 32422, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 0},/*(城)*/ + {.bitmap_index = 32632, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(埠)*/ + {.bitmap_index = 32832, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(堰)*/ + {.bitmap_index = 33012, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(塔)*/ + {.bitmap_index = 33212, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(壁)*/ + {.bitmap_index = 33412, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(壮)*/ + {.bitmap_index = 33592, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(夏)*/ + {.bitmap_index = 33792, .adv_w = 19, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(多)*/ + {.bitmap_index = 33982, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(大)*/ + {.bitmap_index = 34182, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(天)*/ + {.bitmap_index = 34372, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(太)*/ + {.bitmap_index = 34572, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(头)*/ + {.bitmap_index = 34762, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(夷)*/ + {.bitmap_index = 34972, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(奉)*/ + {.bitmap_index = 35162, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(奎)*/ + {.bitmap_index = 35342, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(如)*/ + {.bitmap_index = 35542, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(姚)*/ + {.bitmap_index = 35722, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(姜)*/ + {.bitmap_index = 35902, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(威)*/ + {.bitmap_index = 36102, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(娄)*/ + {.bitmap_index = 36292, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(子)*/ + {.bitmap_index = 36482, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(孝)*/ + {.bitmap_index = 36672, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(孟)*/ + {.bitmap_index = 36862, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(宁)*/ + {.bitmap_index = 37062, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(安)*/ + {.bitmap_index = 37262, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(定)*/ + {.bitmap_index = 37462, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(宜)*/ + {.bitmap_index = 37662, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(宝)*/ + {.bitmap_index = 37862, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(宣)*/ + {.bitmap_index = 38062, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(宫)*/ + {.bitmap_index = 38262, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(家)*/ + {.bitmap_index = 38462, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(容)*/ + {.bitmap_index = 38662, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(宾)*/ + {.bitmap_index = 38862, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(宿)*/ + {.bitmap_index = 39062, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(密)*/ + {.bitmap_index = 39262, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(富)*/ + {.bitmap_index = 39452, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(察)*/ + {.bitmap_index = 39652, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(封)*/ + {.bitmap_index = 39862, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(尔)*/ + {.bitmap_index = 40072, .adv_w = 19, .box_h = 21, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(尚)*/ + {.bitmap_index = 40261, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(尾)*/ + {.bitmap_index = 40461, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(屯)*/ + {.bitmap_index = 40641, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 2},/*(山)*/ + {.bitmap_index = 40821, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(岑)*/ + {.bitmap_index = 41001, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 2},/*(岗)*/ + {.bitmap_index = 41181, .adv_w = 19, .box_h = 21, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(岛)*/ + {.bitmap_index = 41370, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(岩)*/ + {.bitmap_index = 41550, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(岭)*/ + {.bitmap_index = 41730, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(岳)*/ + {.bitmap_index = 41910, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(峡)*/ + {.bitmap_index = 42110, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(峨)*/ + {.bitmap_index = 42290, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(峪)*/ + {.bitmap_index = 42470, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(峰)*/ + {.bitmap_index = 42660, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 1, .ofs_y = 3},/*(崃)*/ + {.bitmap_index = 42840, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(崇)*/ + {.bitmap_index = 43050, .adv_w = 21, .box_h = 18, .box_w = 20, .ofs_x = 1, .ofs_y = 3},/*(嵊)*/ + {.bitmap_index = 43230, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(川)*/ + {.bitmap_index = 43430, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(州)*/ + {.bitmap_index = 43630, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(左)*/ + {.bitmap_index = 43830, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(巩)*/ + {.bitmap_index = 44010, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(差)*/ + {.bitmap_index = 44210, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(巴)*/ + {.bitmap_index = 44400, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(市)*/ + {.bitmap_index = 44610, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(布)*/ + {.bitmap_index = 44810, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 1, .ofs_y = 1},/*(师)*/ + {.bitmap_index = 45020, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(常)*/ + {.bitmap_index = 45220, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(平)*/ + {.bitmap_index = 45410, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(年)*/ + {.bitmap_index = 45620, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(广)*/ + {.bitmap_index = 45820, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(庄)*/ + {.bitmap_index = 46020, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(庆)*/ + {.bitmap_index = 46220, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(库)*/ + {.bitmap_index = 46420, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(应)*/ + {.bitmap_index = 46630, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(底)*/ + {.bitmap_index = 46830, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(店)*/ + {.bitmap_index = 47040, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(度)*/ + {.bitmap_index = 47250, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(康)*/ + {.bitmap_index = 47450, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(廊)*/ + {.bitmap_index = 47660, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(延)*/ + {.bitmap_index = 47860, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(建)*/ + {.bitmap_index = 48060, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(开)*/ + {.bitmap_index = 48260, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(张)*/ + {.bitmap_index = 48470, .adv_w = 19, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(弱)*/ + {.bitmap_index = 48660, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(强)*/ + {.bitmap_index = 48860, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(当)*/ + {.bitmap_index = 49040, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(彦)*/ + {.bitmap_index = 49230, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(彭)*/ + {.bitmap_index = 49410, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(征)*/ + {.bitmap_index = 49610, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(徐)*/ + {.bitmap_index = 49810, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(德)*/ + {.bitmap_index = 50020, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(徽)*/ + {.bitmap_index = 50220, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(志)*/ + {.bitmap_index = 50420, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(忠)*/ + {.bitmap_index = 50600, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(忻)*/ + {.bitmap_index = 50780, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(怀)*/ + {.bitmap_index = 50980, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(总)*/ + {.bitmap_index = 51180, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(恩)*/ + {.bitmap_index = 51370, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(惠)*/ + {.bitmap_index = 51570, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(感)*/ + {.bitmap_index = 51770, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(慈)*/ + {.bitmap_index = 51950, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(成)*/ + {.bitmap_index = 52160, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(房)*/ + {.bitmap_index = 52370, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(手)*/ + {.bitmap_index = 52580, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(扎)*/ + {.bitmap_index = 52790, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(扬)*/ + {.bitmap_index = 53000, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(承)*/ + {.bitmap_index = 53200, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(抚)*/ + {.bitmap_index = 53380, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(拉)*/ + {.bitmap_index = 53590, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(指)*/ + {.bitmap_index = 53800, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(掖)*/ + {.bitmap_index = 53980, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(揭)*/ + {.bitmap_index = 54190, .adv_w = 20, .box_h = 22, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(攀)*/ + {.bitmap_index = 54410, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(收)*/ + {.bitmap_index = 54610, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(政)*/ + {.bitmap_index = 54820, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(敦)*/ + {.bitmap_index = 55030, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(文)*/ + {.bitmap_index = 55230, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(斯)*/ + {.bitmap_index = 55430, .adv_w = 20, .box_h = 22, .box_w = 20, .ofs_x = 0, .ofs_y = 0},/*(新)*/ + {.bitmap_index = 55650, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(方)*/ + {.bitmap_index = 55860, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(施)*/ + {.bitmap_index = 56070, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(族)*/ + {.bitmap_index = 56270, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(无)*/ + {.bitmap_index = 56470, .adv_w = 18, .box_h = 20, .box_w = 16, .ofs_x = 2, .ofs_y = 1},/*(日)*/ + {.bitmap_index = 56630, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(旧)*/ + {.bitmap_index = 56810, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 1},/*(昆)*/ + {.bitmap_index = 57010, .adv_w = 19, .box_h = 18, .box_w = 18, .ofs_x = 1, .ofs_y = 3},/*(昌)*/ + {.bitmap_index = 57172, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(明)*/ + {.bitmap_index = 57352, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(春)*/ + {.bitmap_index = 57552, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 1, .ofs_y = 1},/*(昨)*/ + {.bitmap_index = 57762, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(昭)*/ + {.bitmap_index = 57962, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(晋)*/ + {.bitmap_index = 58142, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(普)*/ + {.bitmap_index = 58342, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(景)*/ + {.bitmap_index = 58542, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(暨)*/ + {.bitmap_index = 58732, .adv_w = 19, .box_h = 21, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(曲)*/ + {.bitmap_index = 58921, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(更)*/ + {.bitmap_index = 59121, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(最)*/ + {.bitmap_index = 59321, .adv_w = 18, .box_h = 20, .box_w = 18, .ofs_x = 0, .ofs_y = 1},/*(月)*/ + {.bitmap_index = 59501, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(有)*/ + {.bitmap_index = 59711, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(朔)*/ + {.bitmap_index = 59891, .adv_w = 19, .box_h = 22, .box_w = 20, .ofs_x = 0, .ofs_y = 0},/*(朝)*/ + {.bitmap_index = 60111, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(木)*/ + {.bitmap_index = 60311, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(本)*/ + {.bitmap_index = 60521, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(来)*/ + {.bitmap_index = 60721, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(杭)*/ + {.bitmap_index = 60931, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(松)*/ + {.bitmap_index = 61131, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(林)*/ + {.bitmap_index = 61331, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(枝)*/ + {.bitmap_index = 61511, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(枣)*/ + {.bitmap_index = 61691, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(染)*/ + {.bitmap_index = 61891, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(查)*/ + {.bitmap_index = 62091, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(柳)*/ + {.bitmap_index = 62271, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(树)*/ + {.bitmap_index = 62481, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(株)*/ + {.bitmap_index = 62681, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(根)*/ + {.bitmap_index = 62881, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(格)*/ + {.bitmap_index = 63081, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(桂)*/ + {.bitmap_index = 63281, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(桃)*/ + {.bitmap_index = 63491, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(桐)*/ + {.bitmap_index = 63671, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(桥)*/ + {.bitmap_index = 63871, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(桦)*/ + {.bitmap_index = 64051, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(梁)*/ + {.bitmap_index = 64251, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(梅)*/ + {.bitmap_index = 64461, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(梧)*/ + {.bitmap_index = 64641, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(棱)*/ + {.bitmap_index = 64821, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(楚)*/ + {.bitmap_index = 65021, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(榆)*/ + {.bitmap_index = 65201, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(樟)*/ + {.bitmap_index = 65381, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(武)*/ + {.bitmap_index = 65581, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(毕)*/ + {.bitmap_index = 65781, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 1},/*(民)*/ + {.bitmap_index = 65981, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(气)*/ + {.bitmap_index = 66191, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(水)*/ + {.bitmap_index = 66371, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(永)*/ + {.bitmap_index = 66581, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(汉)*/ + {.bitmap_index = 66781, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(汕)*/ + {.bitmap_index = 66961, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(汝)*/ + {.bitmap_index = 67141, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(江)*/ + {.bitmap_index = 67321, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(池)*/ + {.bitmap_index = 67521, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(污)*/ + {.bitmap_index = 67731, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(汨)*/ + {.bitmap_index = 67911, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(汾)*/ + {.bitmap_index = 68091, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(沁)*/ + {.bitmap_index = 68271, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(沂)*/ + {.bitmap_index = 68451, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(沅)*/ + {.bitmap_index = 68631, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(沈)*/ + {.bitmap_index = 68811, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(沙)*/ + {.bitmap_index = 69011, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(没)*/ + {.bitmap_index = 69211, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(沧)*/ + {.bitmap_index = 69391, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(河)*/ + {.bitmap_index = 69601, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(油)*/ + {.bitmap_index = 69811, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(治)*/ + {.bitmap_index = 70001, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(泉)*/ + {.bitmap_index = 70211, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(泊)*/ + {.bitmap_index = 70421, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(波)*/ + {.bitmap_index = 70621, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(泰)*/ + {.bitmap_index = 70821, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(泸)*/ + {.bitmap_index = 71001, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(泽)*/ + {.bitmap_index = 71211, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(洛)*/ + {.bitmap_index = 71411, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(津)*/ + {.bitmap_index = 71611, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(洪)*/ + {.bitmap_index = 71811, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(洮)*/ + {.bitmap_index = 71991, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(洱)*/ + {.bitmap_index = 72171, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(洲)*/ + {.bitmap_index = 72371, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(流)*/ + {.bitmap_index = 72581, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(济)*/ + {.bitmap_index = 72781, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(浏)*/ + {.bitmap_index = 72961, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(浙)*/ + {.bitmap_index = 73141, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(浩)*/ + {.bitmap_index = 73321, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(浮)*/ + {.bitmap_index = 73531, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(海)*/ + {.bitmap_index = 73731, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(涟)*/ + {.bitmap_index = 73911, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(涿)*/ + {.bitmap_index = 74101, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(淄)*/ + {.bitmap_index = 74281, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(淖)*/ + {.bitmap_index = 74461, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(淮)*/ + {.bitmap_index = 74641, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(深)*/ + {.bitmap_index = 74841, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(清)*/ + {.bitmap_index = 75041, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(温)*/ + {.bitmap_index = 75241, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(渭)*/ + {.bitmap_index = 75421, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(港)*/ + {.bitmap_index = 75631, .adv_w = 19, .box_h = 22, .box_w = 20, .ofs_x = 0, .ofs_y = 0},/*(湖)*/ + {.bitmap_index = 75851, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(湘)*/ + {.bitmap_index = 76031, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(湛)*/ + {.bitmap_index = 76211, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(湾)*/ + {.bitmap_index = 76421, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(源)*/ + {.bitmap_index = 76631, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(溧)*/ + {.bitmap_index = 76811, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(溪)*/ + {.bitmap_index = 76991, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(滁)*/ + {.bitmap_index = 77171, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(滋)*/ + {.bitmap_index = 77351, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(滕)*/ + {.bitmap_index = 77541, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(满)*/ + {.bitmap_index = 77741, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(滦)*/ + {.bitmap_index = 77921, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(滨)*/ + {.bitmap_index = 78121, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(漯)*/ + {.bitmap_index = 78311, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(漳)*/ + {.bitmap_index = 78491, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(潍)*/ + {.bitmap_index = 78671, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(潜)*/ + {.bitmap_index = 78871, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(潞)*/ + {.bitmap_index = 79051, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(潭)*/ + {.bitmap_index = 79231, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(潮)*/ + {.bitmap_index = 79411, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(澳)*/ + {.bitmap_index = 79621, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(濮)*/ + {.bitmap_index = 79801, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(灌)*/ + {.bitmap_index = 79991, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(灯)*/ + {.bitmap_index = 80191, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(灵)*/ + {.bitmap_index = 80381, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(烟)*/ + {.bitmap_index = 80581, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(焦)*/ + {.bitmap_index = 80781, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(煌)*/ + {.bitmap_index = 80961, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(照)*/ + {.bitmap_index = 81151, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(熟)*/ + {.bitmap_index = 81351, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(牙)*/ + {.bitmap_index = 81551, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(牡)*/ + {.bitmap_index = 81731, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(特)*/ + {.bitmap_index = 81941, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(狮)*/ + {.bitmap_index = 82151, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(玉)*/ + {.bitmap_index = 82341, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(玛)*/ + {.bitmap_index = 82541, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(珠)*/ + {.bitmap_index = 82741, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(珲)*/ + {.bitmap_index = 82921, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(理)*/ + {.bitmap_index = 83111, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(琼)*/ + {.bitmap_index = 83301, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(瑞)*/ + {.bitmap_index = 83511, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(瓦)*/ + {.bitmap_index = 83711, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(瓯)*/ + {.bitmap_index = 83891, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(甘)*/ + {.bitmap_index = 84101, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(田)*/ + {.bitmap_index = 84281, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(甸)*/ + {.bitmap_index = 84491, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(界)*/ + {.bitmap_index = 84681, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(疆)*/ + {.bitmap_index = 84881, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(登)*/ + {.bitmap_index = 85081, .adv_w = 19, .box_h = 21, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(白)*/ + {.bitmap_index = 85270, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(百)*/ + {.bitmap_index = 85470, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(皇)*/ + {.bitmap_index = 85660, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(皋)*/ + {.bitmap_index = 85840, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(益)*/ + {.bitmap_index = 86040, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(盐)*/ + {.bitmap_index = 86240, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(盖)*/ + {.bitmap_index = 86440, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(盘)*/ + {.bitmap_index = 86640, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(省)*/ + {.bitmap_index = 86840, .adv_w = 19, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(眉)*/ + {.bitmap_index = 87030, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(看)*/ + {.bitmap_index = 87220, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(石)*/ + {.bitmap_index = 87420, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(码)*/ + {.bitmap_index = 87620, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(碑)*/ + {.bitmap_index = 87800, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(磐)*/ + {.bitmap_index = 87980, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(祥)*/ + {.bitmap_index = 88160, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(票)*/ + {.bitmap_index = 88360, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(福)*/ + {.bitmap_index = 88560, .adv_w = 19, .box_h = 18, .box_w = 18, .ofs_x = 1, .ofs_y = 3},/*(禹)*/ + {.bitmap_index = 88722, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(秦)*/ + {.bitmap_index = 88902, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(穆)*/ + {.bitmap_index = 89082, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(穴)*/ + {.bitmap_index = 89282, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(竹)*/ + {.bitmap_index = 89482, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(简)*/ + {.bitmap_index = 89692, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(米)*/ + {.bitmap_index = 89882, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(级)*/ + {.bitmap_index = 90082, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(纳)*/ + {.bitmap_index = 90292, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(绍)*/ + {.bitmap_index = 90502, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(绥)*/ + {.bitmap_index = 90682, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(维)*/ + {.bitmap_index = 90882, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(绵)*/ + {.bitmap_index = 91062, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(编)*/ + {.bitmap_index = 91272, .adv_w = 19, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(罗)*/ + {.bitmap_index = 91462, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(老)*/ + {.bitmap_index = 91662, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(耒)*/ + {.bitmap_index = 91842, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(聊)*/ + {.bitmap_index = 92052, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(肃)*/ + {.bitmap_index = 92232, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(肇)*/ + {.bitmap_index = 92412, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(股)*/ + {.bitmap_index = 92612, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(肥)*/ + {.bitmap_index = 92792, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(胶)*/ + {.bitmap_index = 93002, .adv_w = 18, .box_h = 21, .box_w = 16, .ofs_x = 2, .ofs_y = 1},/*(自)*/ + {.bitmap_index = 93170, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(舒)*/ + {.bitmap_index = 93380, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(舞)*/ + {.bitmap_index = 93580, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(舟)*/ + {.bitmap_index = 93790, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(良)*/ + {.bitmap_index = 93990, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(色)*/ + {.bitmap_index = 94190, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(节)*/ + {.bitmap_index = 94400, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(芜)*/ + {.bitmap_index = 94580, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(芝)*/ + {.bitmap_index = 94760, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(芦)*/ + {.bitmap_index = 94940, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(芬)*/ + {.bitmap_index = 95150, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(花)*/ + {.bitmap_index = 95360, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(苏)*/ + {.bitmap_index = 95570, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(茂)*/ + {.bitmap_index = 95780, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(荆)*/ + {.bitmap_index = 95960, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(荥)*/ + {.bitmap_index = 96150, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(莆)*/ + {.bitmap_index = 96340, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(莞)*/ + {.bitmap_index = 96520, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(莱)*/ + {.bitmap_index = 96720, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(菏)*/ + {.bitmap_index = 96900, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(萍)*/ + {.bitmap_index = 97080, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(营)*/ + {.bitmap_index = 97280, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(萨)*/ + {.bitmap_index = 97480, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(葛)*/ + {.bitmap_index = 97670, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(葫)*/ + {.bitmap_index = 97850, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(蒙)*/ + {.bitmap_index = 98060, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(蓥)*/ + {.bitmap_index = 98240, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(藏)*/ + {.bitmap_index = 98450, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(虎)*/ + {.bitmap_index = 98650, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(虞)*/ + {.bitmap_index = 98840, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(蚌)*/ + {.bitmap_index = 99020, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(蛟)*/ + {.bitmap_index = 99200, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(行)*/ + {.bitmap_index = 99410, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(衡)*/ + {.bitmap_index = 99620, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(衢)*/ + {.bitmap_index = 99800, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(襄)*/ + {.bitmap_index = 99980, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(西)*/ + {.bitmap_index = 100180, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(讷)*/ + {.bitmap_index = 100360, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(许)*/ + {.bitmap_index = 100570, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(语)*/ + {.bitmap_index = 100770, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(诸)*/ + {.bitmap_index = 100980, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(调)*/ + {.bitmap_index = 101190, .adv_w = 19, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(贝)*/ + {.bitmap_index = 101380, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(贡)*/ + {.bitmap_index = 101560, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(贵)*/ + {.bitmap_index = 101770, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(贺)*/ + {.bitmap_index = 101970, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(资)*/ + {.bitmap_index = 102180, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(赣)*/ + {.bitmap_index = 102360, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(赤)*/ + {.bitmap_index = 102570, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(轻)*/ + {.bitmap_index = 102770, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(辉)*/ + {.bitmap_index = 102950, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(辑)*/ + {.bitmap_index = 103160, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(辛)*/ + {.bitmap_index = 103370, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(辽)*/ + {.bitmap_index = 103550, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(达)*/ + {.bitmap_index = 103750, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(迁)*/ + {.bitmap_index = 103950, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(运)*/ + {.bitmap_index = 104150, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(远)*/ + {.bitmap_index = 104360, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(连)*/ + {.bitmap_index = 104570, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(通)*/ + {.bitmap_index = 104770, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(遂)*/ + {.bitmap_index = 104950, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(遵)*/ + {.bitmap_index = 105150, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(邓)*/ + {.bitmap_index = 105330, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(邛)*/ + {.bitmap_index = 105510, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(邡)*/ + {.bitmap_index = 105690, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(邢)*/ + {.bitmap_index = 105870, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(那)*/ + {.bitmap_index = 106060, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(邮)*/ + {.bitmap_index = 106260, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(邯)*/ + {.bitmap_index = 106440, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(邳)*/ + {.bitmap_index = 106620, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(邵)*/ + {.bitmap_index = 106800, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(邹)*/ + {.bitmap_index = 106980, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(郏)*/ + {.bitmap_index = 107160, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(郑)*/ + {.bitmap_index = 107360, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(郭)*/ + {.bitmap_index = 107540, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(郴)*/ + {.bitmap_index = 107720, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(郸)*/ + {.bitmap_index = 107900, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(都)*/ + {.bitmap_index = 108100, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(鄂)*/ + {.bitmap_index = 108280, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(酒)*/ + {.bitmap_index = 108480, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(醴)*/ + {.bitmap_index = 108660, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(里)*/ + {.bitmap_index = 108850, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(重)*/ + {.bitmap_index = 109040, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(量)*/ + {.bitmap_index = 109230, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(金)*/ + {.bitmap_index = 109430, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(钟)*/ + {.bitmap_index = 109630, .adv_w = 19, .box_h = 22, .box_w = 20, .ofs_x = 0, .ofs_y = 0},/*(钢)*/ + {.bitmap_index = 109850, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(钦)*/ + {.bitmap_index = 110030, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(铁)*/ + {.bitmap_index = 110230, .adv_w = 19, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(铜)*/ + {.bitmap_index = 110440, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(银)*/ + {.bitmap_index = 110640, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(锡)*/ + {.bitmap_index = 110850, .adv_w = 19, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(锦)*/ + {.bitmap_index = 111050, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(镇)*/ + {.bitmap_index = 111260, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(长)*/ + {.bitmap_index = 111460, .adv_w = 19, .box_h = 21, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(门)*/ + {.bitmap_index = 111649, .adv_w = 19, .box_h = 21, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(间)*/ + {.bitmap_index = 111838, .adv_w = 19, .box_h = 18, .box_w = 18, .ofs_x = 1, .ofs_y = 3},/*(阆)*/ + {.bitmap_index = 112000, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(阜)*/ + {.bitmap_index = 112180, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 1, .ofs_y = 1},/*(防)*/ + {.bitmap_index = 112390, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(阳)*/ + {.bitmap_index = 112570, .adv_w = 19, .box_h = 20, .box_w = 18, .ofs_x = 1, .ofs_y = 1},/*(阴)*/ + {.bitmap_index = 112750, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 1},/*(阿)*/ + {.bitmap_index = 112950, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(陆)*/ + {.bitmap_index = 113150, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 1, .ofs_y = 3},/*(陇)*/ + {.bitmap_index = 113330, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 1, .ofs_y = 3},/*(陕)*/ + {.bitmap_index = 113510, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 1, .ofs_y = 2},/*(陵)*/ + {.bitmap_index = 113710, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 1, .ofs_y = 1},/*(随)*/ + {.bitmap_index = 113920, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(雄)*/ + {.bitmap_index = 114120, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(雅)*/ + {.bitmap_index = 114320, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(集)*/ + {.bitmap_index = 114520, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(霍)*/ + {.bitmap_index = 114700, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(霸)*/ + {.bitmap_index = 114900, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(青)*/ + {.bitmap_index = 115100, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(靖)*/ + {.bitmap_index = 115300, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(鞍)*/ + {.bitmap_index = 115480, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(韩)*/ + {.bitmap_index = 115680, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(音)*/ + {.bitmap_index = 115880, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(韶)*/ + {.bitmap_index = 116060, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(顶)*/ + {.bitmap_index = 116250, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(项)*/ + {.bitmap_index = 116440, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(顺)*/ + {.bitmap_index = 116630, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(额)*/ + {.bitmap_index = 116830, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(风)*/ + {.bitmap_index = 117030, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(饶)*/ + {.bitmap_index = 117210, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(首)*/ + {.bitmap_index = 117410, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(香)*/ + {.bitmap_index = 117610, .adv_w = 19, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(马)*/ + {.bitmap_index = 117800, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(驻)*/ + {.bitmap_index = 118010, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(骅)*/ + {.bitmap_index = 118190, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(高)*/ + {.bitmap_index = 118390, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(鲁)*/ + {.bitmap_index = 118580, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(鸡)*/ + {.bitmap_index = 118760, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 1, .ofs_y = 3},/*(鸭)*/ + {.bitmap_index = 118940, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(鹤)*/ + {.bitmap_index = 119120, .adv_w = 20, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(鹰)*/ + {.bitmap_index = 119300, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(鹿)*/ + {.bitmap_index = 119510, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(麻)*/ + {.bitmap_index = 119710, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(黄)*/ + {.bitmap_index = 119920, .adv_w = 20, .box_h = 19, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(黑)*/ + {.bitmap_index = 120110, .adv_w = 19, .box_h = 18, .box_w = 20, .ofs_x = 0, .ofs_y = 3},/*(鼎)*/ + {.bitmap_index = 120290, .adv_w = 20, .box_h = 20, .box_w = 20, .ofs_x = 0, .ofs_y = 2},/*(齐)*/ + {.bitmap_index = 120490, .adv_w = 20, .box_h = 21, .box_w = 20, .ofs_x = 0, .ofs_y = 1},/*(龙)*/ }; static const uint16_t unicode_list_1[] = { + 0x000a, /*( +)*/ 0x0020, /*( )*/ 0x0021, /*(!)*/ 0x0022, /*(")*/ @@ -15306,7 +15598,6 @@ static const uint16_t unicode_list_1[] = { 0x007e, /*(~)*/ 0x007f, /*()*/ 0x00b0, /*(°)*/ - 0x3002, /*(。)*/ 0x4e00, /*(一)*/ 0x4e03, /*(七)*/ 0x4e07, /*(万)*/ @@ -15335,14 +15626,18 @@ static const uint16_t unicode_list_1[] = { 0x4ea4, /*(交)*/ 0x4eac, /*(京)*/ 0x4eb3, /*(亳)*/ + 0x4ebf, /*(亿)*/ 0x4ec0, /*(什)*/ 0x4ec1, /*(仁)*/ + 0x4eca, /*(今)*/ 0x4ecb, /*(介)*/ 0x4ed3, /*(仓)*/ 0x4ed9, /*(仙)*/ + 0x4ee3, /*(代)*/ 0x4ee4, /*(令)*/ 0x4eea, /*(仪)*/ 0x4eec, /*(们)*/ + 0x4ef7, /*(价)*/ 0x4efb, /*(任)*/ 0x4f0a, /*(伊)*/ 0x4f11, /*(休)*/ @@ -15357,6 +15652,7 @@ static const uint16_t unicode_list_1[] = { 0x4faf, /*(侯)*/ 0x4fdd, /*(保)*/ 0x4fe1, /*(信)*/ + 0x503c, /*(值)*/ 0x5043, /*(偃)*/ 0x510b, /*(儋)*/ 0x5143, /*(元)*/ @@ -15527,12 +15823,14 @@ static const uint16_t unicode_list_1[] = { 0x5fe0, /*(忠)*/ 0x5ffb, /*(忻)*/ 0x6000, /*(怀)*/ + 0x603b, /*(总)*/ 0x6069, /*(恩)*/ 0x60e0, /*(惠)*/ 0x611f, /*(感)*/ 0x6148, /*(慈)*/ 0x6210, /*(成)*/ 0x623f, /*(房)*/ + 0x624b, /*(手)*/ 0x624e, /*(扎)*/ 0x626c, /*(扬)*/ 0x627f, /*(承)*/ @@ -15542,6 +15840,7 @@ static const uint16_t unicode_list_1[] = { 0x6396, /*(掖)*/ 0x63ed, /*(揭)*/ 0x6500, /*(攀)*/ + 0x6536, /*(收)*/ 0x653f, /*(政)*/ 0x6566, /*(敦)*/ 0x6587, /*(文)*/ @@ -15557,6 +15856,7 @@ static const uint16_t unicode_list_1[] = { 0x660c, /*(昌)*/ 0x660e, /*(明)*/ 0x6625, /*(春)*/ + 0x6628, /*(昨)*/ 0x662d, /*(昭)*/ 0x664b, /*(晋)*/ 0x666e, /*(普)*/ @@ -15710,6 +16010,7 @@ static const uint16_t unicode_list_1[] = { 0x7709, /*(眉)*/ 0x770b, /*(看)*/ 0x77f3, /*(石)*/ + 0x7801, /*(码)*/ 0x7891, /*(碑)*/ 0x78d0, /*(磐)*/ 0x7965, /*(祥)*/ @@ -15735,6 +16036,7 @@ static const uint16_t unicode_list_1[] = { 0x804a, /*(聊)*/ 0x8083, /*(肃)*/ 0x8087, /*(肇)*/ + 0x80a1, /*(股)*/ 0x80a5, /*(肥)*/ 0x80f6, /*(胶)*/ 0x81ea, /*(自)*/ @@ -15820,6 +16122,7 @@ static const uint16_t unicode_list_1[] = { 0x91b4, /*(醴)*/ 0x91cc, /*(里)*/ 0x91cd, /*(重)*/ + 0x91cf, /*(量)*/ 0x91d1, /*(金)*/ 0x949f, /*(钟)*/ 0x94a2, /*(钢)*/ @@ -15879,20 +16182,19 @@ static const uint16_t unicode_list_1[] = { 0x9f0e, /*(鼎)*/ 0x9f50, /*(齐)*/ 0x9f99, /*(龙)*/ - 0xff0c, /*(,)*/ 0x0000, /*End indicator*/ }; static const lv_font_fmt_txt_cmap_t cmaps[] = { { - .range_start = 0x0020, - .range_length = 0xff0c, + .range_start = 0x000a, + .range_length = 0x9f99, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY, .glyph_id_start = 0, .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, - .list_length = 671, + .list_length = 682, } }; @@ -15908,8 +16210,8 @@ static lv_font_fmt_txt_dsc_t font_dsc = { .kern_dsc = NULL, .kern_classes = 0, - .last_letter = 0xff0c, - .last_glyph_id = 670, + .last_letter = 0x9f99, + .last_glyph_id = 681, }; @@ -15980,8 +16282,7 @@ static bool __user_font_get_glyph_dsc(const lv_font_t * font, lv_font_glyph_dsc_ return false; } - -//微软雅黑,Regular,12 +//Microsoft YaHei,,-1 //字模高度:26 //内部字体 //使用排序和二分查表 @@ -15992,4 +16293,3 @@ lv_font_t ch_font20 = { .line_height = 26, .base_line = 0, }; -