From 20b5497dbb685ee342d0c9c10a1ff0614dffd72d Mon Sep 17 00:00:00 2001 From: Master92 Date: Tue, 4 Mar 2025 10:19:05 +0100 Subject: [PATCH 01/10] Add method building a language list --- src/lang/language.c | 26 ++++++++++++++++++++++++++ src/lang/language.h | 1 + 2 files changed, 27 insertions(+) diff --git a/src/lang/language.c b/src/lang/language.c index b6847136..635e32a9 100644 --- a/src/lang/language.c +++ b/src/lang/language.c @@ -148,4 +148,30 @@ bool language_config() { } } return false; +} + +/** + * Build a '\n'-separated list of all available languages + */ +char *languageList(char *buffer, size_t len) { + for (size_t i = 0; i < ARRAY_SIZE(languages) && len > 0; i++) { + const char * const currentLanguageName = languages[i].name; + const size_t nameLength = strlen(currentLanguageName); + + if (nameLength >= len) { + char tmp[256]; + snprintf(tmp, len, "%s", currentLanguageName); + strcat(buffer, tmp); + len = 0; + } else { + strcat(buffer, currentLanguageName); + len -= nameLength; + if (i < ARRAY_SIZE(languages) - 1 && len > 1) { + strcat(buffer, "\n"); + len--; + } + } + } + + return buffer; } \ No newline at end of file diff --git a/src/lang/language.h b/src/lang/language.h index 6dd4a536..45d7ebb2 100644 --- a/src/lang/language.h +++ b/src/lang/language.h @@ -23,6 +23,7 @@ typedef struct { void language_init(); const char *translate_string(const char *str, lang_e lang); bool language_config(); +char *languageList(char *buffer, size_t len); #define _str(string, lang) translate_string(string, lang) #define _(string) _str(string, g_setting.language.lang) From 66b0bffc578568df5b1652e1d34f6c9518206e9b Mon Sep 17 00:00:00 2001 From: Master92 Date: Tue, 4 Mar 2025 10:36:17 +0100 Subject: [PATCH 02/10] Re-introduce language selection dropdown This partly reverts 0df01b7b --- src/ui/page_version.c | 62 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/src/ui/page_version.c b/src/ui/page_version.c index ced67aa7..d49dc285 100644 --- a/src/ui/page_version.c +++ b/src/ui/page_version.c @@ -35,6 +35,7 @@ enum { ROW_GOGGLE_UPDATE_VTX, ROW_GOGGLE_UPDATE_GOGGLE, ROW_GOGGLE_UPDATE_ESP32, + ROW_GOGGLE_LANGUAGE, ROW_GOGGLE_BACK, ROW_GOGGLE_COUNT }; @@ -45,6 +46,7 @@ enum { ROW_BOXPRO_RESET_ALL_SETTINGS, ROW_BOXPRO_UPDATE_GOGGLE, ROW_BOXPRO_UPDATE_ESP32, + ROW_BOXPRO_LANGUAGE, ROW_BOXPRO_BACK, ROW_BOXPRO_COUNT }; @@ -55,6 +57,7 @@ enum { ROW_BOXLITE_CUR_VERSION = 0, ROW_BOXLITE_RESET_ALL_SETTINGS, ROW_BOXLITE_UPDATE_GOGGLE, + ROW_BOXLITE_LANGUAGE, ROW_BOXLITE_BACK, ROW_BOXLITE_COUNT }; @@ -65,6 +68,7 @@ enum { #define ROW_UPDATE_VTX ROW_GOGGLE_UPDATE_VTX #define ROW_UPDATE_GOGGLE ROW_GOGGLE_UPDATE_GOGGLE #define ROW_UPDATE_ESP32 ROW_GOGGLE_UPDATE_ESP32 +#define ROW_LANGUAGE ROW_GOGGLE_LANGUAGE #define ROW_BACK ROW_GOGGLE_BACK #define ROW_COUNT ROW_GOGGLE_COUNT #elif defined HDZBOXPRO @@ -73,6 +77,7 @@ enum { #define ROW_UPDATE_VTX (g_setting.has_all_features ? ROW_BOXPRO_UPDATE_VTX : ROW_BOXLITE_UPDATE_VTX) #define ROW_UPDATE_GOGGLE (g_setting.has_all_features ? ROW_BOXPRO_UPDATE_GOGGLE : ROW_BOXLITE_UPDATE_GOGGLE) #define ROW_UPDATE_ESP32 (g_setting.has_all_features ? ROW_BOXPRO_UPDATE_ESP32 : ROW_BOXLITE_UPDATE_ESP32) +#define ROW_LANGUAGE (g_setting.has_all_features ? ROW_BOXPRO_LANGUAGE : ROW_BOXLITE_LANGUAGE) #define ROW_BACK (g_setting.has_all_features ? ROW_BOXPRO_BACK : ROW_BOXLITE_BACK) #define ROW_COUNT (g_setting.has_all_features ? ROW_BOXPRO_COUNT : ROW_BOXLITE_COUNT) #endif @@ -122,6 +127,10 @@ static lv_obj_t *alert_img = NULL; static fw_select_t fw_select_goggle; static fw_select_t fw_select_vtx; static fw_select_t *fw_select_current = &fw_select_vtx; +static lv_obj_t *dropdown_lang; +static lv_obj_t *msgbox_language_changed = NULL; + +static bool dropdown_lang_is_opened = false; #define ADDR_AL 0x65 #define ADDR_FPGA 0x64 @@ -839,6 +848,7 @@ static void page_version_fw_select_create(const char *device, fw_select_t *fw_se page_version_fw_select_hide(fw_select); } +char language_options_str[256]; static lv_obj_t *page_version_create(lv_obj_t *parent, panel_arr_t *arr) { char buf[128]; static char page_name[32]; @@ -897,6 +907,21 @@ static lv_obj_t *page_version_create(lv_obj_t *parent, panel_arr_t *arr) { lv_obj_add_flag(bar_esp, LV_OBJ_FLAG_HIDDEN); } + sprintf(buf, "%s", _lang("Language")); + create_label_item(cont, buf, 1, ROW_LANGUAGE, 1); + + dropdown_lang = lv_dropdown_create(cont); + lv_dropdown_set_options(dropdown_lang, languageList(language_options_str, 256)); + lv_obj_set_style_text_font(dropdown_lang, &lv_font_montserrat_26, 0); + lv_obj_set_size(dropdown_lang, 360, 60); + lv_obj_set_grid_cell(dropdown_lang, LV_GRID_ALIGN_START, 3, 2, LV_GRID_ALIGN_CENTER, ROW_LANGUAGE, 1); + + lv_dropdown_set_selected(dropdown_lang, g_setting.language.lang); + + lv_obj_t *list = lv_dropdown_get_list(dropdown_lang); + lv_obj_add_style(list, &style_dropdown, LV_PART_MAIN); // The dropdown consists of a button and a list. You need to add a style to the list separately. + lv_obj_set_style_text_color(list, lv_color_make(0, 0, 0), LV_PART_SELECTED | LV_STATE_CHECKED); + snprintf(buf, sizeof(buf), "< %s", _lang("Back")); create_label_item(cont, buf, 1, ROW_BACK, 1); @@ -912,6 +937,12 @@ static lv_obj_t *page_version_create(lv_obj_t *parent, panel_arr_t *arr) { msgbox_settings_reset = create_msgbox_item(_lang("Settings reset"), buf); lv_obj_add_flag(msgbox_settings_reset, LV_OBJ_FLAG_HIDDEN); + snprintf(buf, sizeof(buf), "%s.\n%s.", + _lang("Language has been changed"), + _lang("Please repower goggle now")); + msgbox_language_changed = create_msgbox_item(_lang("Set Language"), buf); + lv_obj_add_flag(msgbox_language_changed, LV_OBJ_FLAG_HIDDEN); + msgbox_release_notes = create_msgbox_item(_lang("Release Notes"), _lang("Empty")); lv_obj_add_flag(msgbox_release_notes, LV_OBJ_FLAG_HIDDEN); @@ -1045,6 +1076,16 @@ static void page_version_on_roller(uint8_t key) { version_update_title(); + if (dropdown_lang_is_opened) { + if (key == DIAL_KEY_UP) { + uint32_t evt = LV_KEY_DOWN; + lv_event_send(dropdown_lang, LV_EVENT_KEY, &evt); + } else if (key == DIAL_KEY_DOWN) { + uint32_t evt = LV_KEY_UP; + lv_event_send(dropdown_lang, LV_EVENT_KEY, &evt); + } + } + if (reset_all_settings_confirm == CONFIRMATION_CONFIRMED) { reset_all_settings_reset_label_text(); reset_all_settings_confirm = CONFIRMATION_UNCONFIRMED; @@ -1056,6 +1097,27 @@ static void page_version_on_click(uint8_t key, int sel) { FILE *fp; int dat[16]; + if (sel == ROW_LANGUAGE) { + if (dropdown_lang_is_opened) { + lv_event_send(dropdown_lang, LV_EVENT_RELEASED, NULL); + lv_dropdown_close(dropdown_lang); + lv_obj_remove_style(dropdown_lang, &style_dropdown, LV_PART_MAIN); + dropdown_lang_is_opened = false; + pp_version.p_arr.max = ROW_COUNT; // enable roller operation on input_device.c + uint16_t selected = lv_dropdown_get_selected(dropdown_lang); + if (selected != g_setting.language.lang) { + ini_putl("language", "lang", selected, SETTING_INI); + lv_obj_clear_flag(msgbox_language_changed, LV_OBJ_FLAG_HIDDEN); + app_state_push(APP_STATE_USER_INPUT_DISABLED); + } + } else { + lv_dropdown_open(dropdown_lang); + lv_obj_add_style(dropdown_lang, &style_dropdown, LV_PART_MAIN); + dropdown_lang_is_opened = true; + pp_version.p_arr.max = 0; // disable roller operation on input_device.c + } + } + if (!page_version_release_notes_active()) { version_update_title(); if (sel == ROW_CUR_VERSION) { From 2d23710db62e80028d16f92f6cedeaa65561b54d Mon Sep 17 00:00:00 2001 From: Master92 Date: Tue, 4 Mar 2025 10:37:24 +0100 Subject: [PATCH 03/10] Try to localize language names --- src/lang/language.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lang/language.c b/src/lang/language.c index 635e32a9..cf698c07 100644 --- a/src/lang/language.c +++ b/src/lang/language.c @@ -155,7 +155,7 @@ bool language_config() { */ char *languageList(char *buffer, size_t len) { for (size_t i = 0; i < ARRAY_SIZE(languages) && len > 0; i++) { - const char * const currentLanguageName = languages[i].name; + const char * const currentLanguageName = _lang(languages[i].name); const size_t nameLength = strlen(currentLanguageName); if (nameLength >= len) { From 4a8f83d4e9eb731559c2f8f96ef10ee289432171 Mon Sep 17 00:00:00 2001 From: Master92 Date: Tue, 4 Mar 2025 10:37:43 +0100 Subject: [PATCH 04/10] Add localizations of language names --- mkapp/app/language/de_de.ini | 7 +++++++ mkapp/app/language/es_es.ini | 7 +++++++ mkapp/app/language/ru_ru.ini | 7 +++++++ mkapp/app/language/zh_hans.ini | 10 ++++++++++ src/lang/language.h | 2 +- 5 files changed, 32 insertions(+), 1 deletion(-) diff --git a/mkapp/app/language/de_de.ini b/mkapp/app/language/de_de.ini index 47acccf5..47c280eb 100644 --- a/mkapp/app/language/de_de.ini +++ b/mkapp/app/language/de_de.ini @@ -1,3 +1,10 @@ +; Languages +Simplified Chinese = "Chinesisch (vereinfacht)" +English = "Englisch" +Russian = "Russisch" +Spanish = "Spanisch" +German = "Deutsch" + SD Card = "SD-Karte" Off = "Aus" On = "Ein" diff --git a/mkapp/app/language/es_es.ini b/mkapp/app/language/es_es.ini index bc9acd33..30a106e9 100644 --- a/mkapp/app/language/es_es.ini +++ b/mkapp/app/language/es_es.ini @@ -1,3 +1,10 @@ +; Languages +Simplified Chinese = "chino simplificado" +English = "Inglés" +Russian = "Ruso" +Spanish = "Español" +German = "Alemán" + SD Card = "SDCard" Off = "Off" On = "On" diff --git a/mkapp/app/language/ru_ru.ini b/mkapp/app/language/ru_ru.ini index e55a1fc6..b56d81d9 100644 --- a/mkapp/app/language/ru_ru.ini +++ b/mkapp/app/language/ru_ru.ini @@ -1,3 +1,10 @@ +; Languages +Simplified Chinese = "Упрощенный китайский" +English = "Английский" +Russian = "Русский" +Spanish = "испанский" +German = "немецкий" + Off = "Выкл." On = "Вкл." In = "Вход" diff --git a/mkapp/app/language/zh_hans.ini b/mkapp/app/language/zh_hans.ini index 8b46ccf5..d470f301 100644 --- a/mkapp/app/language/zh_hans.ini +++ b/mkapp/app/language/zh_hans.ini @@ -1,3 +1,10 @@ +; Languages +Simplified Chinese = "简体中文" +English = "英语" +Russian = "俄语" +Spanish = "西班牙语" +German = "德语" + Off = "关" On = "开" In = "输入" @@ -244,8 +251,11 @@ Goggle update completed successfully = "眼镜更新完成" Please repower goggle now = "现在请重启眼镜" Settings reset = "重置设置" All settings have been reset = "所有设置已被重置" +; Set Language = "Set Language" +; Language has been changed = "Language has been changed" Empty = "无" Goggle = "眼镜" +Language = "语言" ; focus chart Focus Chart = "对焦图" diff --git a/src/lang/language.h b/src/lang/language.h index 45d7ebb2..caac6752 100644 --- a/src/lang/language.h +++ b/src/lang/language.h @@ -3,7 +3,7 @@ #include "core/settings.h" -#define TRANSLATE_STRING_NUM 300 +#define TRANSLATE_STRING_NUM 305 #define LANG_FOLDER "/mnt/app/language" typedef enum { From 015063f85f70d6b39c34210a767c7ec5155cfe6d Mon Sep 17 00:00:00 2001 From: Master92 Date: Fri, 31 Oct 2025 16:15:27 +0100 Subject: [PATCH 05/10] Update font files --- .../lvgl/src/font/lv_font_montserrat_10.c | 973 ++++---- .../lvgl/src/font/lv_font_montserrat_12.c | 966 ++++---- .../lvgl/src/font/lv_font_montserrat_14.c | 1018 ++++---- .../lvgl/src/font/lv_font_montserrat_16.c | 1055 ++++---- .../lvgl/src/font/lv_font_montserrat_18.c | 1080 +++++---- .../lvgl/src/font/lv_font_montserrat_20.c | 1134 +++++---- .../lvgl/src/font/lv_font_montserrat_22.c | 1178 +++++---- .../lvgl/src/font/lv_font_montserrat_24.c | 1235 ++++++---- .../lvgl/src/font/lv_font_montserrat_26.c | 1282 ++++++---- .../lvgl/src/font/lv_font_montserrat_28.c | 1325 +++++++---- .../lvgl/src/font/lv_font_montserrat_30.c | 1403 +++++++---- .../lvgl/src/font/lv_font_montserrat_32.c | 1452 ++++++++---- .../lvgl/src/font/lv_font_montserrat_34.c | 1518 ++++++++---- .../lvgl/src/font/lv_font_montserrat_36.c | 1589 +++++++++---- .../lvgl/src/font/lv_font_montserrat_38.c | 1678 +++++++++---- .../lvgl/src/font/lv_font_montserrat_40.c | 1755 ++++++++++---- .../lvgl/src/font/lv_font_montserrat_42.c | 1837 ++++++++++---- .../lvgl/src/font/lv_font_montserrat_44.c | 1922 +++++++++++---- .../lvgl/src/font/lv_font_montserrat_46.c | 2016 ++++++++++++---- .../lvgl/src/font/lv_font_montserrat_48.c | 2112 +++++++++++++---- lib/lvgl/lvgl/src/font/lv_font_montserrat_8.c | 884 +++---- 21 files changed, 20298 insertions(+), 9114 deletions(-) diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_10.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_10.c index 3dddcdf8..41cf9c77 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_10.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_10.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 10 px * Bpp: 4 - * Opts: --bpp 4 --size 10 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_10.c + * Opts: --bpp 4 --size 10 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_10.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -2037,6 +2037,15 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0xb3, 0xe9, 0x1a, 0x6a, 0x0, 0xc1, 0x33, 0x71, 0xa3, + /* U+4F53 "体" */ + 0x0, 0x93, 0x0, 0xb0, 0x0, 0x0, 0xc, 0x0, + 0xb, 0x0, 0x0, 0x6, 0x95, 0xae, 0xfc, 0xa6, + 0x0, 0xc9, 0x0, 0xbc, 0xa0, 0x0, 0x26, 0x90, + 0x76, 0xb9, 0x30, 0x0, 0x19, 0x4c, 0xb, 0x1c, + 0x30, 0x1, 0xab, 0x6a, 0xea, 0x47, 0x0, 0x19, + 0x0, 0xb, 0x0, 0x0, 0x1, 0x90, 0x0, 0xc0, + 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x20, 0x0, 0x40, 0x0, 0x0, 0xc1, 0x11, 0xc1, 0x10, 0x3, 0xa6, 0x99, 0xe9, 0x95, 0xb, @@ -2064,6 +2073,16 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xa, 0xc, 0x2b, 0x30, 0x93, 0xb, 0x67, 0x2, 0x45, 0xd1, + /* U+4FC4 "俄" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x70, + 0x22, 0xb0, 0x0, 0x0, 0xd1, 0xac, 0x2b, 0xa3, + 0x0, 0x5b, 0x1, 0x90, 0xa2, 0x20, 0x1c, 0xb3, + 0xad, 0xae, 0xa8, 0x0, 0x3b, 0x1, 0x91, 0xa2, + 0x20, 0x0, 0xb4, 0xad, 0x4a, 0xb2, 0x0, 0xb, + 0x32, 0x90, 0xa7, 0x0, 0x0, 0xb0, 0x19, 0xa8, + 0xb8, 0x0, 0xb, 0xc, 0x41, 0x6, 0xa0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4FDD "保" */ 0x0, 0x21, 0x0, 0x0, 0x0, 0x0, 0x92, 0xba, 0xaa, 0xb0, 0x0, 0xb0, 0xb0, 0x0, 0xb0, 0x7, @@ -2967,6 +2986,15 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x9, 0x79, 0xd, 0x99, 0xa0, 0x9, 0x43, 0xb, 0x0, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x1, 0x0, 0x0, 0x4, 0x93, 0x3a, + 0x63, 0x30, 0x1c, 0x16, 0x6c, 0x66, 0x60, 0x63, + 0xa8, 0x9d, 0xb9, 0x70, 0x7, 0x59, 0x3a, 0xa3, + 0x90, 0x5f, 0x25, 0x88, 0x88, 0x40, 0x59, 0x29, + 0x99, 0x99, 0xa0, 0x9, 0x22, 0x25, 0x50, 0x20, + 0x9, 0x2b, 0x92, 0x63, 0xc1, 0x9, 0x44, 0x6a, + 0x9b, 0x20, + /* U+5FC3 "心" */ 0x0, 0x0, 0x90, 0x0, 0x0, 0x0, 0x0, 0x87, 0x0, 0x0, 0x0, 0x0, 0x16, 0x0, 0x0, 0x8, @@ -3747,6 +3775,15 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x56, 0xb, 0x76, 0xc4, 0xc4, 0x0, 0x0, 0x2, 0x0, 0x10, + /* U+7259 "牙" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xaa, 0xaa, + 0xea, 0x60, 0x0, 0x54, 0x0, 0xc0, 0x0, 0x0, + 0xc1, 0x0, 0xc0, 0x0, 0x6, 0xda, 0xaa, 0xea, + 0xa4, 0x0, 0x10, 0x3a, 0xc0, 0x0, 0x0, 0x1, + 0xc1, 0xc0, 0x0, 0x0, 0x3c, 0x30, 0xc0, 0x0, + 0x1a, 0xb1, 0x2, 0xc0, 0x0, 0x3, 0x0, 0xa, + 0x50, 0x0, + /* U+72B6 "状" */ 0x0, 0x2a, 0x0, 0xa1, 0x0, 0x14, 0x2a, 0x0, 0xd2, 0xb1, 0xb, 0x4a, 0x0, 0xc0, 0x20, 0x1, @@ -3781,6 +3818,15 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x6, 0xb1, 0x1e, 0xe4, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x11, 0xa, + 0x22, 0x21, 0x19, 0xd7, 0x9, 0x6c, 0x83, 0x0, + 0xb0, 0x79, 0x9, 0x10, 0x0, 0xb0, 0xa8, 0x9, + 0x20, 0x9, 0xe6, 0xa8, 0x7d, 0x92, 0x0, 0xb0, + 0x8, 0x9, 0x10, 0x0, 0xb1, 0x27, 0x9, 0x10, + 0x5, 0xe9, 0x92, 0x9, 0x10, 0x28, 0x13, 0xa2, + 0x99, 0x95, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7406 "理" */ 0x38, 0x87, 0xca, 0xea, 0xe1, 0x26, 0xb5, 0xc0, 0xb0, 0xa1, 0x1, 0x90, 0xc9, 0xe9, 0xd1, 0x16, @@ -4023,6 +4069,15 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0xb0, 0x1, 0xb, 0x0, 0x0, 0xc0, 0x0, 0xba, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb1, 0x10, + 0xb0, 0x0, 0x8, 0x9d, 0x87, 0xae, 0x92, 0x26, + 0x46, 0x17, 0x5, 0x10, 0x3, 0x84, 0x98, 0x88, + 0xa0, 0xa, 0x8, 0x88, 0x80, 0xa0, 0xa, 0xb, + 0x66, 0xa0, 0xa0, 0xa, 0xa, 0x33, 0xa0, 0xa0, + 0xa, 0x8, 0x99, 0x70, 0xa0, 0xa, 0x0, 0x0, + 0xb, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x40, 0x3a, 0x2, 0x40, 0x0, 0xc4, 0x2a, 0xc, 0x40, 0x0, 0x25, 0x2a, 0x16, 0x0, 0x3a, @@ -4191,6 +4246,14 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x94, 0x25, 0xd, 0x0, 0x2b, 0x0, 0x0, 0x7, 0xaa, 0xa3, 0x0, + /* U+82F1 "英" */ + 0x0, 0xc, 0x0, 0x90, 0x0, 0x1a, 0xaf, 0xaa, + 0xea, 0xa3, 0x0, 0x7, 0x18, 0x60, 0x0, 0x0, + 0xba, 0xbe, 0xaa, 0x0, 0x0, 0xb0, 0x29, 0xb, + 0x0, 0x3a, 0xea, 0xad, 0xae, 0xa2, 0x0, 0x0, + 0xb9, 0x70, 0x0, 0x0, 0x4c, 0x50, 0x8a, 0x10, + 0xb, 0x81, 0x0, 0x4, 0xb1, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x0, 0xc0, 0x0, 0x1a, 0xae, 0xaa, 0xea, 0xa1, 0x3, @@ -4262,6 +4325,14 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x39, 0x3a, 0x30, 0xb, 0x7b, 0x63, 0xc8, 0x0, 0x0, 0xb, 0x50, 0x6, 0xb1, + /* U+897F "西" */ + 0x69, 0x99, 0x99, 0x99, 0x80, 0x0, 0xa0, 0xa0, + 0x0, 0x0, 0xa, 0xa, 0x0, 0x0, 0xaa, 0xd9, + 0xd9, 0xd0, 0xa, 0xb, 0xa, 0xa, 0x0, 0xa3, + 0x90, 0xa5, 0xa0, 0xa, 0x71, 0x3, 0x7a, 0x0, + 0xa9, 0x99, 0x99, 0xd0, 0xa, 0x0, 0x0, 0xa, + 0x10, 0x0, 0x0, 0x0, 0x0, + /* U+8981 "要" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0x9c, 0xbb, 0xb9, 0x92, 0x0, 0x7, 0x44, 0x60, 0x0, 0x9, @@ -4307,6 +4378,15 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xc2, 0xc0, 0x0, 0xc0, 0xc9, 0x0, 0x0, 0x0, 0x1, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x30, 0x0, 0x0, 0x2, 0x22, 0xb5, + 0x22, 0x20, 0x18, 0x77, 0x77, 0x77, 0x81, 0x1, + 0x99, 0x99, 0x99, 0x0, 0x0, 0x11, 0x11, 0x12, + 0x0, 0x1, 0x88, 0x88, 0x88, 0x0, 0x0, 0x99, + 0x99, 0x99, 0x0, 0x1, 0xb0, 0x0, 0xc, 0x0, + 0x0, 0xd9, 0x99, 0x9e, 0x0, 0x1, 0xb1, 0x11, + 0x1c, 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xd9, 0xc6, 0xba, 0xc9, 0x5, 0xd8, 0x98, 0x91, 0xa0, 0x3e, @@ -4395,6 +4475,15 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xa, 0xb7, 0xea, 0xc, 0x84, 0x5, 0x3, 0x0, 0x6, 0xe1, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BED "语" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x63, 0x8b, + 0xc8, 0x83, 0x0, 0x70, 0x38, 0x83, 0x20, 0x0, + 0x0, 0x7d, 0x87, 0xc0, 0x4a, 0xc0, 0xd, 0x2, + 0xb0, 0x0, 0xc5, 0x88, 0x88, 0x87, 0x0, 0xc0, + 0x7a, 0xaa, 0xa0, 0x0, 0xd9, 0xb0, 0x0, 0xc0, + 0x1, 0xe1, 0xb0, 0x0, 0xc0, 0x3, 0x50, 0xc9, + 0x99, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BF7 "请" */ 0x7, 0x1, 0x22, 0xc2, 0x20, 0x6, 0xa2, 0x66, 0xd6, 0x71, 0x0, 0x10, 0x88, 0xe8, 0x80, 0x7b, @@ -5749,392 +5838,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 8856, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 8911, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 8956, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9006, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9061, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9006, .adv_w = 160, .box_w = 11, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9056, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 9111, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 9161, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9211, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9261, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9316, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9371, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9421, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9476, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9521, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9576, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9626, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9671, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 9716, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9766, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9816, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9866, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9921, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9971, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10021, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 10062, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10107, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10157, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10207, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10252, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10302, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10352, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10397, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10452, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10502, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10552, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10607, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10662, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10717, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10767, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10817, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 10862, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10907, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10957, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11002, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11057, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11107, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11152, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11197, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11247, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11297, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11347, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11397, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11442, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11492, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11537, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11587, .adv_w = 160, .box_w = 8, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 11623, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 11668, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 11713, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11763, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11813, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11858, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11903, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11948, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11998, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12043, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12098, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12143, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12198, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12248, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12298, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12348, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12393, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12443, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12488, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12538, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12593, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 12643, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12693, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 12738, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12788, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12843, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12898, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12953, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13014, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13064, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13114, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13164, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13219, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 13260, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13305, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13355, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13400, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13445, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13495, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13545, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13590, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13640, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13685, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13730, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13780, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13835, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13890, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13945, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13995, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14045, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14095, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14145, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 14186, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14236, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14291, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14341, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14391, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14441, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14491, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14541, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14591, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14641, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14691, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14746, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14801, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14851, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14906, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14951, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14996, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15051, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15101, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15156, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15206, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15256, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15306, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15351, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15401, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15451, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15501, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15546, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15591, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15646, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15701, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15756, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15811, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15861, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15906, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15951, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16006, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16061, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16111, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16161, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16211, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16266, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16316, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16371, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16421, .adv_w = 160, .box_w = 7, .box_h = 9, .ofs_x = 2, .ofs_y = -1}, - {.bitmap_index = 16453, .adv_w = 160, .box_w = 11, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16508, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16553, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16603, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16653, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16703, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16758, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16803, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16848, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16893, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16943, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16998, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17043, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17093, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17138, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17183, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17238, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17288, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17338, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17388, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17438, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17488, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17543, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17593, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17638, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17688, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17743, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17788, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17838, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17888, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17938, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17983, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18033, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18083, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18138, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18188, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18238, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18288, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18343, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18398, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18453, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18503, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18548, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18598, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18653, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18703, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18753, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18798, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18843, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18893, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18943, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18993, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19034, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19079, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 19120, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19170, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19220, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19270, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 19315, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19360, .adv_w = 160, .box_w = 8, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 19396, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19446, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19496, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19541, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 19582, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19637, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19687, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19737, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19787, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19837, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19892, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19937, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19992, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20042, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20097, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20147, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20202, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20252, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20307, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20352, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20407, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20457, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20502, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20552, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20597, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20652, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20702, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20757, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20812, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20857, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20902, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20947, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20992, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21033, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9211, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9272, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9322, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9372, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9427, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9482, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9532, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9587, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9632, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9687, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9737, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9782, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 9827, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9877, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9927, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9977, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10032, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10082, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10132, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 10173, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10218, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10268, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10318, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10363, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10413, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10463, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10508, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10563, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10613, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10663, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10718, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10773, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10828, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10878, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10928, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 10973, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11018, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11068, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11113, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11168, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11218, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11263, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11308, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11358, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11408, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11458, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11508, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11553, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11603, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11648, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11698, .adv_w = 160, .box_w = 8, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 11734, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 11779, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 11824, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11874, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11924, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11969, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12014, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12059, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12109, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12154, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12209, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12254, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12309, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12359, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12409, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12459, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12504, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12554, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12599, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12649, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12704, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 12754, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12804, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 12849, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12899, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12954, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13009, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13064, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13125, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13175, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13225, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13275, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13330, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 13371, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13416, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13466, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13511, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13556, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13606, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13656, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13701, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13751, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13796, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13841, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13891, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13946, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14001, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14056, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14106, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14156, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14206, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14256, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 14297, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14347, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14402, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14452, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14502, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14552, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14602, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14652, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14702, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14752, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14802, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14852, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14907, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14962, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15012, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15067, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15112, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15157, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15212, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15262, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15317, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15367, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15417, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15467, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15512, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15562, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15612, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15662, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15707, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15752, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15807, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15862, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15917, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15972, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16022, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16067, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16112, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16167, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16222, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16272, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16322, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16372, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16427, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16477, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16532, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16582, .adv_w = 160, .box_w = 7, .box_h = 9, .ofs_x = 2, .ofs_y = -1}, + {.bitmap_index = 16614, .adv_w = 160, .box_w = 11, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16669, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16714, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16764, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16814, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16864, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16919, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16964, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17009, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17054, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17104, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17159, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17204, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17254, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17299, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17344, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17399, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17449, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17499, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17549, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17599, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17649, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17704, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17754, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17799, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17849, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17904, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17949, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17999, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18049, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18099, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18144, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18194, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18244, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18299, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18349, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18399, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18449, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18504, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18559, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18614, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18664, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18709, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18759, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18814, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18864, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18914, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18964, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19009, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19054, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19104, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19154, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19209, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19259, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19300, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19345, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 19386, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19436, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19486, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19536, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 19581, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19626, .adv_w = 160, .box_w = 8, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 19662, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19712, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19762, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19807, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 19848, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19903, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19953, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20003, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20053, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20103, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20158, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20203, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20258, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20308, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20363, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20413, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20468, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20518, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20573, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20628, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20673, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20728, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20778, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20823, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20873, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20918, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20973, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21023, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 21078, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21133, .adv_w = 160, .box_w = 8, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 21173, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21133, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21178, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 21223, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21268, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21318, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21368, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21423, .adv_w = 160, .box_w = 11, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21478, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21528, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21578, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21628, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21673, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21728, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21783, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21838, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21893, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21943, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21993, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22038, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22088, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22143, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22188, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22243, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22298, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22348, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22398, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22453, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22503, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22558, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22608, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22658, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22708, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22758, .adv_w = 160, .box_w = 11, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22813, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22863, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22918, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22968, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23023, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23078, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23133, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23183, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23238, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23293, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 23343, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23393, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 23443, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 23504, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23559, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23609, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23659, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23709, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23764, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23814, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 23864, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 23914, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23964, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24009, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24054, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24099, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24149, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24199, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24254, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24299, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 24349, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 24399, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24454, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 24504, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24559, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24609, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24659, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24714, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24764, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24819, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24874, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24929, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24984, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25029, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25079, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25134, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25184, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25234, .adv_w = 160, .box_w = 11, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25289, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25350, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 25390, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25440, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 25480, .adv_w = 110, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 25508, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25563, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25618, .adv_w = 180, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25678, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25733, .adv_w = 180, .box_w = 12, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 25781, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25836, .adv_w = 80, .box_w = 5, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 25856, .adv_w = 120, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 25888, .adv_w = 180, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25948, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 25988, .adv_w = 110, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26027, .adv_w = 140, .box_w = 7, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 26062, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26112, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 26157, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 26202, .adv_w = 140, .box_w = 7, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 26237, .adv_w = 140, .box_w = 10, .box_h = 10, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 26287, .adv_w = 100, .box_w = 6, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 26317, .adv_w = 100, .box_w = 6, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 26347, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 26392, .adv_w = 140, .box_w = 9, .box_h = 3, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 26406, .adv_w = 180, .box_w = 12, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 26454, .adv_w = 200, .box_w = 13, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26526, .adv_w = 180, .box_w = 13, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 26598, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 26648, .adv_w = 140, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 26675, .adv_w = 140, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 26702, .adv_w = 200, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 26754, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 26794, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26849, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 26910, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 26955, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27005, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27050, .adv_w = 140, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27091, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 27131, .adv_w = 100, .box_w = 8, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 27175, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27225, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27275, .adv_w = 180, .box_w = 12, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 27323, .adv_w = 160, .box_w = 12, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 27389, .adv_w = 120, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27433, .adv_w = 200, .box_w = 13, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27498, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 27544, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 27590, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 27636, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 27682, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 27728, .adv_w = 200, .box_w = 13, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27787, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27837, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27887, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 27948, .adv_w = 200, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 28000, .adv_w = 120, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28044, .adv_w = 161, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 0} + {.bitmap_index = 21268, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21313, .adv_w = 160, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21354, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21399, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21454, .adv_w = 160, .box_w = 8, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 21494, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21544, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21589, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21634, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21684, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21734, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21789, .adv_w = 160, .box_w = 11, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21844, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21894, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21944, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21994, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22039, .adv_w = 160, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22084, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22139, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22194, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22249, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22304, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22354, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22404, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22454, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22499, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22549, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22604, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22649, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22704, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22759, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22809, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22859, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22914, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22969, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23019, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23074, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23124, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23174, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23224, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23274, .adv_w = 160, .box_w = 11, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23329, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23379, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23434, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23484, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23539, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23594, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23649, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23699, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23754, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23809, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23859, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23909, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23959, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 24020, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24075, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24125, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24175, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24225, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24280, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24330, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24380, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24430, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24480, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24525, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24570, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24615, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24665, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24715, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24770, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24815, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 24865, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 24915, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24970, .adv_w = 160, .box_w = 9, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 25020, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25075, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25125, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25175, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25230, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25280, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25335, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25390, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25445, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25500, .adv_w = 160, .box_w = 10, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25545, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25595, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25650, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25700, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25750, .adv_w = 160, .box_w = 11, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25805, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25866, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 25906, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25956, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 25996, .adv_w = 110, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 26024, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26079, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26134, .adv_w = 180, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26194, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26249, .adv_w = 180, .box_w = 12, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 26297, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26352, .adv_w = 80, .box_w = 5, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 26372, .adv_w = 120, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 26404, .adv_w = 180, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26464, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 26504, .adv_w = 110, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26543, .adv_w = 140, .box_w = 7, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 26578, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26628, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26673, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26718, .adv_w = 140, .box_w = 7, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 26753, .adv_w = 140, .box_w = 10, .box_h = 10, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 26803, .adv_w = 100, .box_w = 6, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26833, .adv_w = 100, .box_w = 6, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26863, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26908, .adv_w = 140, .box_w = 9, .box_h = 3, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 26922, .adv_w = 180, .box_w = 12, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 26970, .adv_w = 200, .box_w = 13, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27042, .adv_w = 180, .box_w = 13, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 27114, .adv_w = 160, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27164, .adv_w = 140, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 27191, .adv_w = 140, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 27218, .adv_w = 200, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 27270, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 27310, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27365, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 27426, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27471, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27521, .adv_w = 140, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27566, .adv_w = 140, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27607, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 27647, .adv_w = 100, .box_w = 8, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 27691, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27741, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27791, .adv_w = 180, .box_w = 12, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 27839, .adv_w = 160, .box_w = 12, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 27905, .adv_w = 120, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27949, .adv_w = 200, .box_w = 13, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28014, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 28060, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 28106, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 28152, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 28198, .adv_w = 200, .box_w = 13, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 28244, .adv_w = 200, .box_w = 13, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28303, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28353, .adv_w = 140, .box_w = 9, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28403, .adv_w = 160, .box_w = 11, .box_h = 11, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 28464, .adv_w = 200, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 28516, .adv_w = 120, .box_w = 8, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28560, .adv_w = 161, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 0} }; /*--------------------- @@ -6155,55 +6254,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -6235,7 +6336,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -6340,7 +6441,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -6439,7 +6541,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_12.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_12.c index aa3fe83a..6996d879 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_12.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_12.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 12 px * Bpp: 4 - * Opts: --bpp 4 --size 12 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_12.c + * Opts: --bpp 4 --size 12 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_12.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -2661,6 +2661,17 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xea, 0x90, 0x98, 0xb2, 0x0, 0xe0, 0x40, 0x66, 0xb, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4F53 "体" */ + 0x0, 0x69, 0x0, 0xe, 0x0, 0x0, 0x0, 0xb7, + 0x0, 0xd, 0x0, 0x0, 0x1, 0xf1, 0x0, 0xd, + 0x0, 0x0, 0x6, 0xd1, 0xcc, 0xff, 0xec, 0xc3, + 0xd, 0xd0, 0x1, 0xdd, 0xd0, 0x0, 0x58, 0xd0, + 0x8, 0x7d, 0x86, 0x0, 0x0, 0xd0, 0x3e, 0x1d, + 0xd, 0x30, 0x0, 0xd5, 0xe4, 0xd, 0x3, 0xe6, + 0x0, 0xd6, 0x49, 0xcf, 0xc8, 0x22, 0x0, 0xd0, + 0x0, 0xd, 0x0, 0x0, 0x0, 0xd0, 0x0, 0xe, + 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x75, 0x0, 0xe, 0x0, 0x0, 0x0, 0xd4, 0x66, 0x7e, @@ -2695,6 +2706,17 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xd2, 0x4d, 0x10, 0x77, 0x0, 0xd7, 0x80, 0x6, 0x26, 0xd3, + /* U+4FC4 "俄" */ + 0x0, 0x25, 0x0, 0x0, 0x70, 0x0, 0x0, 0x78, + 0x47, 0xc2, 0xe3, 0x30, 0x0, 0xd2, 0x7e, 0x10, + 0xd4, 0xd0, 0x5, 0xf0, 0xc, 0x0, 0xc0, 0x30, + 0x1d, 0xe4, 0xcf, 0xcc, 0xfc, 0xc4, 0x26, 0xd0, + 0xc, 0x0, 0xc0, 0x20, 0x0, 0xd0, 0x2d, 0xb4, + 0xb5, 0xc0, 0x0, 0xd7, 0xbe, 0x10, 0x8e, 0x20, + 0x0, 0xd0, 0xc, 0x1, 0xdb, 0x0, 0x0, 0xd0, + 0x3d, 0x2e, 0x4c, 0x88, 0x0, 0xe0, 0xa8, 0x0, + 0x2, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4FDD "保" */ 0x0, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x59, 0xf, 0xcc, 0xcf, 0x0, 0x0, 0xc1, 0xd, 0x0, @@ -3823,6 +3845,17 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x70, 0xeb, 0xbb, 0xc0, 0x0, 0xe3, 0x20, 0xd0, 0x0, 0xd0, 0x0, 0x10, 0x0, 0x10, 0x0, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x44, 0x0, 0xc, 0x0, 0x0, 0x0, 0xd3, + 0xba, 0xbe, 0xaa, 0xa1, 0xa, 0x70, 0x11, 0x5a, + 0x11, 0x10, 0x19, 0x2c, 0x9b, 0xea, 0xeb, 0xa0, + 0x0, 0xb3, 0x93, 0xb1, 0xc2, 0xa0, 0x7, 0xe0, + 0x7b, 0xcb, 0xcb, 0x80, 0x4c, 0xd0, 0x21, 0x11, + 0x11, 0x20, 0x1, 0xd0, 0x99, 0x9a, 0x99, 0x91, + 0x0, 0xd0, 0x84, 0x5c, 0x21, 0x70, 0x0, 0xd2, + 0xc5, 0x73, 0x17, 0xc4, 0x0, 0xe2, 0x43, 0xdb, + 0xc9, 0x10, + /* U+5FC3 "心" */ 0x0, 0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x70, 0x0, 0x0, 0x0, 0x0, 0x2, 0xf2, @@ -4810,6 +4843,17 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x74, 0xac, 0x19, 0xd1, 0x0, 0x0, 0x0, 0x30, 0x0, 0x20, + /* U+7259 "牙" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xcc, + 0xcc, 0xcf, 0xdd, 0x30, 0x0, 0x7, 0x0, 0xd, + 0x10, 0x0, 0x0, 0x4c, 0x0, 0xd, 0x10, 0x0, + 0x0, 0xd5, 0x22, 0x2e, 0x32, 0x20, 0x1, 0xca, + 0xaa, 0xff, 0xaa, 0xa2, 0x0, 0x0, 0x7, 0x9d, + 0x10, 0x0, 0x0, 0x0, 0x4d, 0x1d, 0x10, 0x0, + 0x0, 0x6, 0xd2, 0xd, 0x10, 0x0, 0x4, 0xcb, + 0x10, 0xd, 0x10, 0x0, 0x1b, 0x50, 0x1, 0xbe, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x41, 0x0, 0x0, + /* U+72B6 "状" */ 0x0, 0xe, 0x10, 0x5, 0x10, 0x0, 0x0, 0xd, 0x10, 0xe, 0x27, 0x0, 0x47, 0xd, 0x10, 0xe, @@ -4854,6 +4898,17 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xd7, 0x0, 0xda, 0xc3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x33, + 0x0, 0xa6, 0x44, 0x42, 0x16, 0xe6, 0x10, 0xa5, + 0x4e, 0x42, 0x0, 0xd0, 0x38, 0xa2, 0xd, 0x0, + 0x0, 0xd0, 0x48, 0xa1, 0xd, 0x0, 0xc, 0xfc, + 0x78, 0xb6, 0xbf, 0xb2, 0x0, 0xd0, 0x22, 0xb0, + 0xd, 0x0, 0x0, 0xd0, 0x0, 0xc0, 0xd, 0x0, + 0x0, 0xd3, 0x45, 0x80, 0xd, 0x0, 0x6, 0xeb, + 0x4d, 0x20, 0xd, 0x0, 0x39, 0x20, 0xb8, 0xb, + 0xbb, 0xb7, 0x0, 0x0, 0x20, 0x0, 0x0, 0x0, + /* U+7406 "理" */ 0x36, 0x66, 0x2f, 0xcf, 0xcc, 0xe0, 0x35, 0xe5, 0x2e, 0xc, 0x20, 0xe0, 0x0, 0xd0, 0xf, 0xbe, @@ -5154,6 +5209,17 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xb3, 0x0, 0x0, 0xc2, 0x0, 0xe, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0xb, 0x0, 0x7, 0x40, 0x0, 0x0, 0x8e, + 0xcb, 0x3e, 0xbb, 0xb6, 0x7, 0xb0, 0xd0, 0xa5, + 0x2e, 0x0, 0x5, 0x17, 0x31, 0x60, 0x5, 0x0, + 0x0, 0x5a, 0x4a, 0xbb, 0xbb, 0xd0, 0x1, 0xc0, + 0x89, 0x99, 0x0, 0xc0, 0x0, 0xc0, 0xc1, 0x1c, + 0x0, 0xc0, 0x0, 0xc0, 0xcb, 0xbe, 0x0, 0xc0, + 0x0, 0xc0, 0xc0, 0xc, 0x0, 0xc0, 0x0, 0xc0, + 0x9b, 0xbb, 0x0, 0xc0, 0x1, 0xc0, 0x0, 0x0, + 0x5c, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x4, 0xc0, 0x2, 0x0, 0x0, 0xa7, 0x3, 0xb0, 0x1f, 0x30, 0x0, 0x2f, 0x13, 0xb0, @@ -5370,6 +5436,17 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xe0, 0x0, 0x6a, 0x0, 0x0, 0x0, 0xac, 0xcc, 0xb2, 0x0, + /* U+82F1 "英" */ + 0x0, 0x7, 0x20, 0xa, 0x10, 0x0, 0xa, 0xbe, + 0xcb, 0xbf, 0xbb, 0xb1, 0x1, 0x1a, 0x44, 0x2d, + 0x21, 0x10, 0x0, 0x1, 0xe, 0x22, 0x0, 0x0, + 0x0, 0x9c, 0xcf, 0xdc, 0xc4, 0x0, 0x0, 0xb2, + 0xd, 0x0, 0x95, 0x0, 0x0, 0xb2, 0xd, 0x0, + 0x95, 0x0, 0x5c, 0xcc, 0xcf, 0xfc, 0xcc, 0xc1, + 0x0, 0x0, 0x97, 0xc7, 0x0, 0x0, 0x0, 0x1a, + 0xa0, 0x1b, 0xb3, 0x0, 0xb, 0xe6, 0x0, 0x0, + 0x5d, 0xc0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xc0, 0xd, 0x10, 0x0, 0xa, 0xbb, 0xeb, 0xbf, @@ -5459,6 +5536,16 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xca, 0x36, 0xd5, 0x10, 0x0, 0x3, 0xb3, 0x0, 0x28, 0xa0, + /* U+897F "西" */ + 0x9b, 0xbb, 0xdb, 0xdb, 0xbb, 0x10, 0x0, 0x2a, + 0xc, 0x0, 0x0, 0x1, 0x13, 0xa1, 0xc1, 0x10, + 0x0, 0xfb, 0xbe, 0xbe, 0xbe, 0x20, 0xd, 0x4, + 0x80, 0xc0, 0xa2, 0x0, 0xd0, 0x94, 0xc, 0xa, + 0x20, 0xd, 0x4c, 0x0, 0xdd, 0xc2, 0x0, 0xd2, + 0x20, 0x0, 0x2a, 0x20, 0xe, 0xbb, 0xbb, 0xbb, + 0xe2, 0x0, 0xe0, 0x0, 0x0, 0xa, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8981 "要" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2b, 0xbb, 0xeb, 0xbe, 0xbb, 0xb1, 0x3, 0xaa, 0xeb, 0xbe, @@ -5515,6 +5602,16 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x80, 0x0, 0xe0, 0xb, 0x21, 0xe1, 0x0, 0x1e, 0xc, 0xe1, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x6, 0x0, 0x0, 0x0, 0x11, 0x11, + 0xc5, 0x11, 0x11, 0xb, 0xaa, 0xaa, 0xaa, 0xaa, + 0xa0, 0x4, 0x55, 0x55, 0x55, 0x30, 0x0, 0x34, + 0x44, 0x44, 0x43, 0x0, 0x9, 0xbb, 0xbb, 0xbb, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xbb, 0xbb, 0xbb, 0x80, 0x0, 0xa3, 0x0, 0x0, + 0x59, 0x0, 0xa, 0xba, 0xaa, 0xac, 0x90, 0x0, + 0xb5, 0x11, 0x11, 0x6a, 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x84, 0x66, 0x6, 0x90, 0x0, 0x1a, 0xdb, 0xbc, 0x8e, @@ -5627,6 +5724,17 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xbd, 0x91, 0x69, 0xd3, 0x1, 0x40, 0x20, 0x0, 0xc, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BED "语" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xa0, + 0x9a, 0xcd, 0xaa, 0xa0, 0x0, 0x20, 0x5b, 0xdd, + 0xaa, 0x30, 0x35, 0x50, 0x0, 0xc3, 0xc, 0x30, + 0x59, 0xf0, 0x0, 0xe0, 0xd, 0x20, 0x0, 0xe2, + 0xcb, 0xdb, 0xbd, 0xb6, 0x0, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe2, 0xf, 0xcc, 0xce, 0x60, + 0x0, 0xed, 0x3e, 0x0, 0x7, 0x60, 0x0, 0xf5, + 0xe, 0x11, 0x18, 0x60, 0x3, 0x70, 0xf, 0xbb, + 0xbd, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BF7 "请" */ 0x3, 0x30, 0x0, 0xe, 0x0, 0x0, 0x2, 0xd2, 0x8b, 0xbf, 0xbb, 0xb0, 0x0, 0x43, 0x49, 0x9f, @@ -7228,392 +7336,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 13771, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 13843, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 13909, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13981, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14059, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13981, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14047, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 14125, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 14191, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14257, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14323, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14395, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14467, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14257, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14329, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14395, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14461, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 14533, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 14605, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 14671, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14743, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14743, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 14809, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14881, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14953, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14881, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14947, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 15019, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15091, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15163, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15235, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15307, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15373, .adv_w = 192, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 15428, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15494, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15566, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15626, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15692, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15758, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15824, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15890, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15962, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16034, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15091, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15157, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15229, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15301, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15373, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15445, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15511, .adv_w = 192, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 15566, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15632, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15704, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15764, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15830, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15896, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15962, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16028, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 16100, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16172, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16244, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16316, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16382, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16448, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16514, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16580, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16646, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16718, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16790, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16856, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16922, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16988, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17054, .adv_w = 192, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 17109, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17175, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17247, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17308, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17374, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17435, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17501, .adv_w = 192, .box_w = 10, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 17551, .adv_w = 192, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 17606, .adv_w = 192, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 17661, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17727, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17793, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17859, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17919, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17980, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18052, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18118, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18196, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18268, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 16172, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16238, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16310, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16382, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16454, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16520, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16586, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16652, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16718, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16784, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16856, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16928, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16994, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17060, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17126, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17192, .adv_w = 192, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 17247, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17313, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17385, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17446, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17512, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17573, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17639, .adv_w = 192, .box_w = 10, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 17689, .adv_w = 192, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 17744, .adv_w = 192, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 17799, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17865, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17931, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17997, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18057, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18118, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18190, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18256, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 18334, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18406, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18472, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18544, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18616, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18688, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18760, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18832, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18904, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 18970, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19036, .adv_w = 192, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 19091, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19163, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19241, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19313, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19385, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19463, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19535, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19607, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19679, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19751, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 19812, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19878, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19950, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20022, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20088, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20154, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20226, .adv_w = 192, .box_w = 11, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 20281, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20347, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20413, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20479, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20545, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20617, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20695, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20767, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20839, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20905, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20983, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21049, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 21110, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21182, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21254, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21326, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21398, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21464, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21536, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18406, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 18472, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18544, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18610, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18682, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18754, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18826, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18898, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18970, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19042, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 19108, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19174, .adv_w = 192, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 19229, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19301, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19379, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19451, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19523, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19601, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19673, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19745, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19817, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19889, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 19950, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20016, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20088, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20160, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20226, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20292, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20364, .adv_w = 192, .box_w = 11, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 20419, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20485, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20551, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20617, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20683, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20755, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20833, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20905, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20977, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21043, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21121, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21187, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 21248, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21320, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21392, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21458, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21530, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 21602, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21668, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21740, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21818, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21896, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21962, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22034, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22112, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22178, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22250, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22328, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22400, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22478, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22550, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22616, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22682, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22748, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22820, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22898, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22970, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23042, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 23108, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23186, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23264, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23342, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23420, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23492, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 23558, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21668, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21740, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21806, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21872, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21944, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22022, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22100, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22166, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22238, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22316, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22382, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22454, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22532, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22604, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22682, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22754, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22820, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22886, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22952, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23024, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23102, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23174, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23246, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23312, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23390, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23468, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23546, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 23624, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23696, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23768, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23846, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23918, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 23990, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24062, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24134, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24206, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24272, .adv_w = 192, .box_w = 8, .box_h = 10, .ofs_x = 2, .ofs_y = -1}, - {.bitmap_index = 24312, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24378, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24438, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24504, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24570, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24636, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24708, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24780, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24846, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23696, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23762, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23828, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23900, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23972, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24050, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24122, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24194, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24266, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24338, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24410, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24476, .adv_w = 192, .box_w = 8, .box_h = 10, .ofs_x = 2, .ofs_y = -1}, + {.bitmap_index = 24516, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24582, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24642, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24708, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24774, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24840, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 24912, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24984, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25056, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25116, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25188, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25254, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25320, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25398, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25464, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25530, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25602, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25674, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25746, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25824, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25896, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25956, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24984, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25050, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25116, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25188, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25260, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25320, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25392, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25458, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25524, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25602, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25668, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25734, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25806, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25878, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25950, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 26028, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26100, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 26166, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26100, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26160, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 26232, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 26304, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 26370, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 26436, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26514, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26586, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26658, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26724, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26796, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26868, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26940, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27012, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27090, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27162, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27234, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27306, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27378, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27450, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27516, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27582, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27648, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27714, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27780, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27846, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27907, .adv_w = 192, .box_w = 11, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27962, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 28023, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 28084, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28156, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 28217, .adv_w = 192, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 28272, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 28338, .adv_w = 192, .box_w = 10, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 28388, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 28454, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 28520, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28586, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 28647, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28719, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28791, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28869, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28935, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 29007, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29079, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 29145, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29223, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 29289, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29361, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 29427, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29499, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29571, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29649, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 29715, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29787, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29853, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29925, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29997, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 30063, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26436, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26508, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26574, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26640, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26718, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26790, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26862, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26928, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27000, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27072, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27144, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27216, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27294, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27366, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27438, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27510, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27582, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27654, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27720, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27792, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27858, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27924, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27990, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28056, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28128, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28194, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28255, .adv_w = 192, .box_w = 11, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28310, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 28371, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 28432, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28504, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28565, .adv_w = 192, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 28620, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28686, .adv_w = 192, .box_w = 10, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 28736, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28802, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28868, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28934, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 28995, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29067, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29139, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29217, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29283, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 29355, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29427, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 29493, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29571, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 29637, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29709, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 29775, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29847, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29919, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29997, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30069, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 30135, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30207, .adv_w = 192, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30285, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30357, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 30423, .adv_w = 192, .box_w = 11, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 30478, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 30538, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 30604, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 30664, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 30730, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30808, .adv_w = 192, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 30863, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30935, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 31001, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 31073, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 31145, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31223, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 31295, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 31361, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31433, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 31505, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 31571, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 31637, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31709, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31781, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31859, .adv_w = 192, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31931, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 32003, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 32069, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32147, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32219, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 32285, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32357, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32435, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32507, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32579, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32651, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32723, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32795, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32867, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32939, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 33005, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 33071, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 33137, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 33203, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33275, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 33341, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33419, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33497, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33569, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33641, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33713, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33785, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 33857, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33929, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 33995, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34067, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34139, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34211, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34283, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34355, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34427, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34499, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 34565, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 34631, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34703, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 34764, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 34824, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 34885, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34957, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35029, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35101, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35173, .adv_w = 192, .box_w = 10, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 35233, .adv_w = 192, .box_w = 10, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 35293, .adv_w = 192, .box_w = 10, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 35353, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 35419, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 35485, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35557, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 35623, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35701, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35773, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35845, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35917, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35989, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36061, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36127, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 36193, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36265, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 36331, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36403, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36475, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36553, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 36607, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 36673, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 36727, .adv_w = 132, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 36768, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36846, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36924, .adv_w = 216, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 37001, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37079, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 37142, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37220, .adv_w = 96, .box_w = 6, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 37250, .adv_w = 144, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 37295, .adv_w = 216, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37386, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 37440, .adv_w = 132, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37499, .adv_w = 168, .box_w = 8, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 37547, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37619, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 37680, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 37741, .adv_w = 168, .box_w = 8, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 37789, .adv_w = 168, .box_w = 12, .box_h = 11, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 37855, .adv_w = 120, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 37894, .adv_w = 120, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 37933, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 37994, .adv_w = 168, .box_w = 11, .box_h = 3, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 38011, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 38074, .adv_w = 240, .box_w = 16, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38178, .adv_w = 216, .box_w = 15, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 38276, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 38342, .adv_w = 168, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 38381, .adv_w = 168, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 38420, .adv_w = 240, .box_w = 16, .box_h = 10, .ofs_x = -1, .ofs_y = 0}, - {.bitmap_index = 38500, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 38554, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38632, .adv_w = 192, .box_w = 13, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 38717, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 38778, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38850, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 38911, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 38972, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 39026, .adv_w = 120, .box_w = 9, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 39085, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39157, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39229, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 39292, .adv_w = 192, .box_w = 14, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 39383, .adv_w = 144, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39442, .adv_w = 240, .box_w = 15, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 39532, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 39600, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 39668, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 39736, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 39804, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 39872, .adv_w = 240, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 39960, .adv_w = 168, .box_w = 10, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40025, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40097, .adv_w = 192, .box_w = 13, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 40182, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 40250, .adv_w = 144, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40309, .adv_w = 193, .box_w = 13, .box_h = 9, .ofs_x = 0, .ofs_y = 0} + {.bitmap_index = 30207, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30273, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30345, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30417, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 30483, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30555, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30627, .adv_w = 192, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30705, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30777, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 30843, .adv_w = 192, .box_w = 11, .box_h = 10, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 30898, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 30958, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 31024, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 31084, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 31150, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31228, .adv_w = 192, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 31283, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31355, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 31421, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31493, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 31565, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 31637, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31715, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 31787, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 31853, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31925, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 31997, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 32063, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 32124, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 32190, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32262, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32334, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32412, .adv_w = 192, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32484, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 32545, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 32617, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 32683, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32761, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32833, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 32899, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32971, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33049, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33121, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33193, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33265, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33337, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33409, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33481, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33553, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33625, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 33691, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 33757, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 33823, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 33889, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33961, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 34027, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34105, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34183, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34255, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34327, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34399, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34471, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 34543, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34615, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 34681, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34753, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34825, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34897, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34969, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35041, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35113, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35185, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 35251, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 35317, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35389, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 35450, .adv_w = 192, .box_w = 12, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 35510, .adv_w = 192, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 35571, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35643, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35715, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35787, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35859, .adv_w = 192, .box_w = 10, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 35919, .adv_w = 192, .box_w = 10, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 35979, .adv_w = 192, .box_w = 10, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 36039, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 36105, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 36171, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36243, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 36309, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36387, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36459, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36531, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36603, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36675, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36747, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36813, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 36879, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36951, .adv_w = 192, .box_w = 11, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 37017, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37089, .adv_w = 192, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37161, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37239, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 37293, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 37359, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 37413, .adv_w = 132, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 37454, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37532, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37610, .adv_w = 216, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 37687, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37765, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 37828, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37906, .adv_w = 96, .box_w = 6, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 37936, .adv_w = 144, .box_w = 9, .box_h = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 37981, .adv_w = 216, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38072, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 38126, .adv_w = 132, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38185, .adv_w = 168, .box_w = 8, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 38233, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38305, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 38366, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 38427, .adv_w = 168, .box_w = 8, .box_h = 12, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 38475, .adv_w = 168, .box_w = 12, .box_h = 11, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 38541, .adv_w = 120, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 38580, .adv_w = 120, .box_w = 7, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 38619, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 38680, .adv_w = 168, .box_w = 11, .box_h = 3, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 38697, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 38760, .adv_w = 240, .box_w = 16, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38864, .adv_w = 216, .box_w = 15, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 38962, .adv_w = 192, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 39028, .adv_w = 168, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 39067, .adv_w = 168, .box_w = 11, .box_h = 7, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 39106, .adv_w = 240, .box_w = 16, .box_h = 10, .ofs_x = -1, .ofs_y = 0}, + {.bitmap_index = 39186, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 39240, .adv_w = 192, .box_w = 12, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39318, .adv_w = 192, .box_w = 13, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 39403, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 39464, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39536, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 39597, .adv_w = 168, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 39658, .adv_w = 192, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 39712, .adv_w = 120, .box_w = 9, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 39771, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39843, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39915, .adv_w = 216, .box_w = 14, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 39978, .adv_w = 192, .box_w = 14, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 40069, .adv_w = 144, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40128, .adv_w = 240, .box_w = 15, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 40218, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 40286, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 40354, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 40422, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 40490, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 40558, .adv_w = 240, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 40646, .adv_w = 168, .box_w = 10, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40711, .adv_w = 168, .box_w = 11, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40783, .adv_w = 192, .box_w = 13, .box_h = 13, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 40868, .adv_w = 240, .box_w = 15, .box_h = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 40936, .adv_w = 144, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40995, .adv_w = 193, .box_w = 13, .box_h = 9, .ofs_x = 0, .ofs_y = 0} }; /*--------------------- @@ -7634,55 +7752,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -7714,7 +7834,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -7819,7 +7939,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -7918,7 +8039,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_14.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_14.c index 6f840921..ceb97ac9 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_14.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_14.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 14 px * Bpp: 4 - * Opts: --bpp 4 --size 14 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_14.c + * Opts: --bpp 4 --size 14 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_14.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -3162,6 +3162,19 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x70, 0x7f, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4F53 "体" */ + 0x0, 0x3c, 0x10, 0x1, 0xf0, 0x0, 0x0, 0x0, + 0x7c, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0xd4, + 0x23, 0x34, 0xf3, 0x33, 0x30, 0x4, 0xf2, 0x8a, + 0xbf, 0xff, 0xaa, 0xa0, 0xc, 0xf2, 0x0, 0x5c, + 0xed, 0x20, 0x0, 0x6c, 0xd2, 0x0, 0xb7, 0xe8, + 0x90, 0x0, 0x22, 0xd2, 0x4, 0xe1, 0xe1, 0xe3, + 0x0, 0x0, 0xd2, 0x3f, 0x51, 0xe0, 0x5e, 0x30, + 0x0, 0xd7, 0xf8, 0x23, 0xe2, 0x27, 0xf2, 0x0, + 0xd3, 0x61, 0xcc, 0xfb, 0xc0, 0x20, 0x0, 0xd2, + 0x0, 0x1, 0xf0, 0x0, 0x0, 0x0, 0xd2, 0x0, + 0x1, 0xf0, 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x24, 0x0, 0x1, 0x90, 0x0, 0x0, 0x0, 0x8a, 0x0, 0x2, 0xf0, 0x0, 0x0, 0x0, 0xd4, @@ -3204,6 +3217,21 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xe, 0xa, 0xa0, 0x3f, 0x20, 0x4e, 0x0, 0xf3, 0xc1, 0x0, 0x51, 0x3e, 0x70, + /* U+4FC4 "俄" */ + 0x0, 0x1, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, + 0x2f, 0x30, 0x3, 0xf, 0x20, 0x0, 0x0, 0x6c, + 0x2b, 0xec, 0x2f, 0x3c, 0x0, 0x0, 0xd6, 0x4, + 0xe0, 0xf, 0xc, 0x60, 0x5, 0xf3, 0x0, 0xe0, + 0xe, 0x1, 0x0, 0xe, 0xe3, 0xae, 0xfe, 0xef, + 0xee, 0xe0, 0x49, 0xc3, 0x0, 0xe0, 0xd, 0x10, + 0x0, 0x0, 0xc3, 0x0, 0xe6, 0x3b, 0x3b, 0x50, + 0x0, 0xc4, 0x8c, 0xf8, 0x28, 0xbd, 0x0, 0x0, + 0xc3, 0x72, 0xe0, 0x6, 0xf2, 0x0, 0x0, 0xc3, + 0x0, 0xe0, 0x5e, 0xe2, 0x30, 0x0, 0xc3, 0x16, + 0xf2, 0xd2, 0x6b, 0xd3, 0x0, 0xc4, 0x1c, 0x70, + 0x0, 0xa, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+4FDD "保" */ 0x0, 0x6, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x24, 0xfe, 0xee, 0xed, 0x0, 0x0, 0x79, @@ -4645,6 +4673,20 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x11, 0x1b, 0x40, 0x0, 0x10, 0x0, 0x1, 0x0, 0x0, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x0, 0x0, 0x51, 0x0, 0x0, 0x0, + 0x6e, 0x10, 0x0, 0xf1, 0x0, 0x0, 0x1, 0xe6, + 0x5e, 0xee, 0xfd, 0xdd, 0xd0, 0xc, 0x90, 0x0, + 0x4, 0xc0, 0x0, 0x0, 0x2b, 0xd, 0x5e, 0xcf, + 0xcf, 0xce, 0x50, 0x0, 0x8b, 0xe, 0xc, 0x2b, + 0x39, 0x50, 0x4, 0xf2, 0xe, 0x9e, 0xae, 0xad, + 0x50, 0x4e, 0xf1, 0x2, 0x22, 0x22, 0x22, 0x10, + 0x34, 0xe1, 0x5e, 0xdd, 0xdd, 0xdd, 0xe0, 0x0, + 0xe1, 0x1, 0x11, 0x81, 0x0, 0x0, 0x0, 0xe1, + 0x5c, 0x87, 0x79, 0x8, 0xa0, 0x0, 0xe2, 0xb6, + 0x77, 0x0, 0x85, 0xe3, 0x0, 0xe2, 0x51, 0x4e, + 0xdd, 0xe2, 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -5893,6 +5935,20 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x65, 0xf8, 0x8, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x30, + /* U+7259 "牙" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1, 0x0, + 0x0, 0xd4, 0x0, 0x0, 0x0, 0xb9, 0x0, 0xd, + 0x40, 0x0, 0x0, 0x2f, 0x10, 0x0, 0xd4, 0x0, + 0x0, 0xb, 0x90, 0x0, 0xd, 0x40, 0x0, 0x0, + 0xfe, 0xdd, 0xef, 0xfe, 0xdd, 0xd0, 0x0, 0x0, + 0x8, 0xcd, 0x40, 0x0, 0x0, 0x0, 0x3, 0xf2, + 0xd4, 0x0, 0x0, 0x0, 0x3, 0xe5, 0xd, 0x40, + 0x0, 0x0, 0x6, 0xe6, 0x0, 0xd4, 0x0, 0x0, + 0x5c, 0xd3, 0x0, 0xd, 0x40, 0x0, 0x1c, 0x70, + 0x0, 0x3b, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x73, 0x0, 0x0, + /* U+72B6 "状" */ 0x0, 0x3, 0xf0, 0x0, 0xb7, 0x0, 0x0, 0x1, 0x2, 0xe0, 0x0, 0xb6, 0x8a, 0x0, 0x1e, 0x22, @@ -5948,6 +6004,21 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xa1, 0x0, 0xde, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xc0, 0x0, 0x0, 0xa, 0xcc, + 0xc2, 0x5, 0xbd, 0xdd, 0xd9, 0x2, 0x5c, 0x20, + 0x5, 0xb0, 0x2d, 0x0, 0x0, 0x4b, 0x2, 0x95, + 0xa0, 0x2d, 0x0, 0x0, 0x4b, 0x4, 0xb5, 0xa0, + 0x2d, 0x0, 0x6, 0xad, 0x85, 0xb6, 0x97, 0x9e, + 0x83, 0x4, 0x8d, 0x56, 0xa7, 0x84, 0x6d, 0x52, + 0x0, 0x4b, 0x0, 0x9, 0x60, 0x2d, 0x0, 0x0, + 0x4b, 0x0, 0xe, 0x20, 0x2d, 0x0, 0x0, 0x4c, + 0x75, 0x5e, 0x0, 0x2d, 0x0, 0x5, 0xbf, 0x93, + 0xd6, 0x1, 0x3d, 0x11, 0xc, 0x70, 0xc, 0xc0, + 0x6c, 0xcc, 0xcb, 0x0, 0x0, 0x4, 0x10, 0x0, + 0x0, 0x0, + /* U+7406 "理" */ 0x0, 0x0, 0x3, 0xfe, 0xfe, 0xef, 0x40, 0xbf, 0xff, 0xe3, 0xd0, 0xb4, 0xc, 0x40, 0x0, 0xd2, @@ -6326,6 +6397,20 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x4f, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x2, 0x10, 0x0, 0x21, 0x0, 0x0, 0x0, + 0xd9, 0x12, 0xb, 0x70, 0x0, 0x0, 0x8d, 0xec, + 0xc3, 0xed, 0xfd, 0xc0, 0x9c, 0x5, 0xb0, 0xc4, + 0xe, 0x20, 0x5, 0x9, 0x25, 0x15, 0x0, 0x41, + 0x0, 0x7, 0x6e, 0x9d, 0xdd, 0xdd, 0xf0, 0x0, + 0xf0, 0x30, 0x0, 0x0, 0xe, 0x0, 0xe, 0x2, + 0xfc, 0xcf, 0x20, 0xe0, 0x0, 0xe0, 0x2d, 0x22, + 0xd2, 0xe, 0x0, 0xe, 0x2, 0xfb, 0xbf, 0x20, + 0xe0, 0x0, 0xe0, 0x2c, 0x0, 0xc2, 0xe, 0x0, + 0xf, 0x2, 0xcc, 0xcc, 0x20, 0xe0, 0x0, 0xf0, + 0x0, 0x0, 0x4, 0xb9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x6d, 0x0, 0x1, 0x0, 0x0, 0x4e, 0x10, 0x4d, 0x0, 0x8e, 0x0, 0x0, 0xc, @@ -6594,6 +6679,21 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x35, 0x17, 0x0, 0xd5, 0x0, 0xc, 0x70, 0x0, 0x0, 0x9, 0xef, 0xfe, 0xc1, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x11, 0x0, 0x1, 0x0, 0x0, 0x0, + 0x0, 0xb7, 0x0, 0x4b, 0x0, 0x0, 0xb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xb6, + 0x12, 0x3b, 0x0, 0x0, 0x0, 0x0, 0x31, 0x4e, + 0x3, 0x0, 0x0, 0x0, 0x1e, 0xee, 0xef, 0xee, + 0xe1, 0x0, 0x0, 0xf, 0x0, 0x4b, 0x0, 0xf0, + 0x0, 0x0, 0xf, 0x0, 0x5b, 0x0, 0xf0, 0x0, + 0x1e, 0xef, 0xee, 0xef, 0xee, 0xfe, 0xe0, 0x0, + 0x0, 0x1, 0xea, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x2c, 0x80, 0x9c, 0x10, 0x0, 0x0, 0x38, 0xe7, + 0x0, 0x8, 0xe8, 0x20, 0x7, 0xe8, 0x10, 0x0, + 0x0, 0x3b, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4d, 0x0, 0x4d, 0x0, 0x0, 0x8, 0xee, @@ -6710,6 +6810,19 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x4, 0xce, 0x90, 0x0, 0x0, 0x21, 0x0, 0x0, 0x1, 0x20, + /* U+897F "西" */ + 0x3, 0x22, 0x22, 0x22, 0x22, 0x22, 0x30, 0xba, + 0xaa, 0xfa, 0xaf, 0xaa, 0xaa, 0x0, 0x0, 0xd, + 0x10, 0xe0, 0x0, 0x0, 0x1, 0x11, 0xd2, 0x2e, + 0x11, 0x10, 0x0, 0xec, 0xcf, 0xcc, 0xfc, 0xce, + 0x0, 0xe, 0x10, 0xe0, 0xe, 0x1, 0xd0, 0x0, + 0xe1, 0x2c, 0x0, 0xe0, 0x1d, 0x0, 0xe, 0x1a, + 0x70, 0xf, 0x54, 0xd0, 0x0, 0xe6, 0xd0, 0x0, + 0x9c, 0x8d, 0x0, 0xe, 0x10, 0x0, 0x0, 0x1, + 0xd0, 0x0, 0xed, 0xdd, 0xdd, 0xdd, 0xdd, 0x0, + 0xe, 0x10, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8981 "要" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xdd, 0xdf, 0xdd, 0xfd, 0xdd, 0xd0, 0x0, 0x0, @@ -6784,6 +6897,18 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x3f, 0x5, 0xfd, 0x0, 0x10, 0x0, 0x0, 0x0, 0x2, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x17, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0x40, 0x0, 0x0, 0xde, 0xee, 0xef, 0xee, + 0xee, 0xeb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xbb, 0xbb, 0xbb, 0xbb, 0x20, 0x0, 0x21, + 0x11, 0x11, 0x12, 0x0, 0x1, 0x22, 0x22, 0x22, + 0x22, 0x0, 0x5, 0xba, 0xaa, 0xaa, 0xab, 0x10, + 0x0, 0x11, 0x11, 0x11, 0x11, 0x0, 0x5, 0xfc, + 0xcc, 0xcc, 0xcf, 0x30, 0x4, 0xc0, 0x0, 0x0, + 0xe, 0x30, 0x4, 0xeb, 0xbb, 0xbb, 0xbf, 0x30, + 0x5, 0xc2, 0x22, 0x22, 0x2e, 0x30, + /* U+8B66 "警" */ 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0xb, 0xbf, 0xbd, 0xc9, 0x3f, 0xcb, 0xb8, 0x0, 0x4d, @@ -6928,6 +7053,21 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x6f, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, + /* U+8BED "语" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd3, 0xb, 0xcc, 0xfd, 0xcc, 0xc1, 0x0, 0x5e, + 0x0, 0x0, 0xf1, 0x0, 0x0, 0x0, 0x2, 0x4, + 0xaa, 0xf9, 0x99, 0x30, 0x1, 0x0, 0x2, 0x48, + 0xc4, 0x4e, 0x30, 0x4e, 0xed, 0x0, 0x9, 0x70, + 0xf, 0x20, 0x0, 0x4c, 0x29, 0x9e, 0xb9, 0xaf, + 0xa6, 0x0, 0x4c, 0x1, 0x11, 0x11, 0x11, 0x11, + 0x0, 0x4c, 0x0, 0xbd, 0xdd, 0xdd, 0x60, 0x0, + 0x4c, 0xb3, 0xd4, 0x11, 0x1a, 0x60, 0x0, 0x4f, + 0xc0, 0xd3, 0x0, 0xa, 0x60, 0x0, 0x6e, 0x10, + 0xd4, 0x11, 0x1a, 0x60, 0x0, 0x84, 0x0, 0xdd, + 0xcc, 0xce, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+8BF7 "请" */ 0x3, 0x40, 0x0, 0x0, 0xf2, 0x0, 0x0, 0x2, 0xe5, 0x2c, 0xcc, 0xfc, 0xcc, 0x70, 0x0, 0x39, @@ -8891,392 +9031,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 17846, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 17944, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 18035, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18133, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18231, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18322, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18407, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18498, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18589, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18687, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18785, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18876, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 18974, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19058, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19149, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19240, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19331, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 19416, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19514, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19605, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19696, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19794, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 19892, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 19983, .adv_w = 224, .box_w = 12, .box_h = 12, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 20055, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20139, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20237, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20328, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20419, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20504, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20595, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20680, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20778, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 20863, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 20954, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21052, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21150, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21248, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21339, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21430, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 21515, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21599, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21690, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21781, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 21879, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 21970, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18133, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18217, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18315, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18406, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18491, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18589, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18680, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18771, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18869, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 18967, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19058, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19156, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 19240, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19331, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19422, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19513, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 19598, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19696, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19787, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19878, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 19976, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20074, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20165, .adv_w = 224, .box_w = 12, .box_h = 12, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 20237, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 20321, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20419, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20510, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20601, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20686, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20777, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20862, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 20960, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21045, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21136, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21234, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21332, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21430, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21521, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21612, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 21697, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 21781, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21872, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 21963, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 22061, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 22152, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22243, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 22321, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22412, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22510, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22595, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22686, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 22764, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 22855, .adv_w = 224, .box_w = 12, .box_h = 12, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 22927, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 23005, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 23083, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 23174, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 23265, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 23349, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 23433, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 23511, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23609, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22243, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22334, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22425, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 22503, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22594, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 22692, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22777, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22868, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 22946, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23037, .adv_w = 224, .box_w = 12, .box_h = 12, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 23109, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 23187, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 23265, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23356, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23447, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23531, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23615, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 23693, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23791, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23889, .adv_w = 224, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 23791, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23875, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 23973, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24071, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24169, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24260, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24351, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24449, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24534, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24625, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24723, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24814, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24905, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 24983, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 25074, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25172, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25270, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25368, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25466, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 25557, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25648, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25739, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25837, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 25922, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26007, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 26092, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26190, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26275, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26366, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 26457, .adv_w = 224, .box_w = 12, .box_h = 12, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 26529, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 26620, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 26704, .adv_w = 224, .box_w = 12, .box_h = 12, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 26776, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 26861, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26952, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27050, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27148, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27239, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27330, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27428, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27526, .adv_w = 224, .box_w = 12, .box_h = 12, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 27598, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27696, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27794, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27892, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27983, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 28074, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 28165, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 24071, .adv_w = 224, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 24155, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24253, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24351, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24442, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24533, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24631, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24716, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24807, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24905, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24996, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25087, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 25165, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 25256, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25354, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25452, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25550, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25648, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25739, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25830, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25921, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26019, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 26104, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26189, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 26274, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26372, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26457, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26548, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26639, .adv_w = 224, .box_w = 12, .box_h = 12, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 26711, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26802, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26886, .adv_w = 224, .box_w = 12, .box_h = 12, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 26958, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 27043, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27134, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27232, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27330, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27421, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27512, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27610, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27708, .adv_w = 224, .box_w = 12, .box_h = 12, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 27780, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27878, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27976, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28067, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28165, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 28256, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 28347, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28445, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28543, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 28634, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28725, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28816, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28914, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29005, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29096, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29194, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29279, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29377, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29468, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29559, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 29650, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 29734, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29825, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29923, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30014, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30105, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 30189, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30287, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30378, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30476, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30567, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30658, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 30742, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30827, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30918, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31016, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31114, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31205, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 31296, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31394, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 31485, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31583, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31674, .adv_w = 224, .box_w = 10, .box_h = 12, .ofs_x = 2, .ofs_y = -1}, - {.bitmap_index = 31734, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 31819, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 31903, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 31981, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32066, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32151, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32249, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32340, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 32424, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 32508, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32599, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32697, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 32775, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 32866, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 32950, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 33034, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33132, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 33223, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33314, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28347, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28438, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 28529, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28620, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28718, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28816, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 28907, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28998, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29089, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29187, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29278, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29369, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29467, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29552, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29650, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29741, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29832, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 29923, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 30007, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30098, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30196, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30287, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30378, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 30462, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30560, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30651, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30749, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30840, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30931, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 31015, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31100, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31191, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31289, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31387, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31478, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 31569, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31667, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 31758, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31856, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31947, .adv_w = 224, .box_w = 10, .box_h = 12, .ofs_x = 2, .ofs_y = -1}, + {.bitmap_index = 32007, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 32092, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 32176, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 32254, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32339, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32424, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32522, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32613, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 32697, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 32781, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32872, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32970, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 33048, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 33139, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 33223, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 33307, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 33405, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 33496, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33587, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33685, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33783, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 33861, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 33952, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34050, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 34128, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 34212, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34310, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34408, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34499, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34597, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34688, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34786, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34877, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34968, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35053, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35151, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35249, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35347, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35438, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35529, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35627, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35725, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35823, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35914, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 35998, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 36089, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 36180, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36271, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36362, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 36440, .adv_w = 224, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 36512, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 36590, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 36668, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36759, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 36844, .adv_w = 224, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 36928, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 37019, .adv_w = 224, .box_w = 10, .box_h = 12, .ofs_x = 2, .ofs_y = -1}, - {.bitmap_index = 37079, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 37170, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 37261, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37352, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 37437, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37535, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37633, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37724, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 37809, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 37900, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 37991, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 38075, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38173, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 38264, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38362, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 38440, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38538, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38629, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38727, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 38811, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38909, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38994, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39079, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39177, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 39261, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39359, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39450, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39548, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39646, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 39730, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 39808, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 39892, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 39976, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 40054, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 40138, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 40229, .adv_w = 224, .box_w = 10, .box_h = 13, .ofs_x = 2, .ofs_y = -1}, - {.bitmap_index = 40294, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40385, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 40463, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40561, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 40652, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40750, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 40841, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 40939, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41030, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 41121, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41219, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41317, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41415, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41513, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41611, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41702, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 41793, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 41877, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41975, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42073, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 42157, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42255, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42353, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42451, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42549, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42640, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42731, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42829, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42927, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43012, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 43103, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 43194, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 43285, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43383, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43481, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 43572, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43670, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43768, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43866, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43957, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44048, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44146, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 44237, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44322, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 44413, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44511, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44609, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44700, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44798, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44889, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44987, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45078, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 45169, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 45260, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45345, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 45430, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 45514, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 45592, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45683, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45774, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45872, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45963, .adv_w = 224, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 46047, .adv_w = 224, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 46131, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46222, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 46313, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46411, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46502, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 46593, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46691, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46782, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46880, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46971, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47069, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47167, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47258, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 47349, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47447, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 47532, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47623, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47721, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 47834, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 47911, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 48002, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 48079, .adv_w = 154, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 48134, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 48239, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 48344, .adv_w = 252, .box_w = 16, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 48448, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 48553, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 48641, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 48746, .adv_w = 112, .box_w = 7, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 48788, .adv_w = 168, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 48854, .adv_w = 252, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 48966, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 49043, .adv_w = 154, .box_w = 10, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49118, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 49188, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49286, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 49371, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 49456, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 49526, .adv_w = 196, .box_w = 14, .box_h = 13, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 49617, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 49676, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 49735, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 49820, .adv_w = 196, .box_w = 13, .box_h = 4, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 49846, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 49934, .adv_w = 280, .box_w = 18, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50069, .adv_w = 252, .box_w = 17, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 50197, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 50288, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 50340, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 50392, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 50491, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 50568, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50673, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 50786, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 50871, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50969, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 51054, .adv_w = 196, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 51132, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 51209, .adv_w = 140, .box_w = 10, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 51284, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51382, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51480, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 51568, .adv_w = 224, .box_w = 16, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 51688, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51771, .adv_w = 280, .box_w = 18, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 51888, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 51978, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 52068, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 52158, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 52248, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 52338, .adv_w = 280, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 52446, .adv_w = 196, .box_w = 12, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 52536, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 52634, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 52747, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 52846, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 52929, .adv_w = 225, .box_w = 15, .box_h = 10, .ofs_x = 0, .ofs_y = 0} + {.bitmap_index = 33587, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33678, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 33769, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33860, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33958, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34056, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 34134, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 34225, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34323, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 34401, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 34485, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34583, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34681, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34772, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34870, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34961, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35059, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35150, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35241, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35326, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35424, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35522, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35620, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35711, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35802, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35900, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35998, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36096, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36187, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36278, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 36362, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 36453, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 36544, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36635, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36733, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36824, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 36902, .adv_w = 224, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 36974, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 37052, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 37130, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37221, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 37306, .adv_w = 224, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 37390, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 37481, .adv_w = 224, .box_w = 10, .box_h = 12, .ofs_x = 2, .ofs_y = -1}, + {.bitmap_index = 37541, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 37632, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 37723, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37814, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 37899, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37997, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38095, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38186, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 38271, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 38362, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 38453, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 38537, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38635, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 38726, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38824, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 38902, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39000, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39091, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39189, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39280, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 39364, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39462, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39547, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39632, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39730, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 39814, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39912, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40003, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40101, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40199, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 40283, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 40361, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 40445, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 40529, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 40607, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 40691, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 40782, .adv_w = 224, .box_w = 10, .box_h = 13, .ofs_x = 2, .ofs_y = -1}, + {.bitmap_index = 40847, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40938, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 41016, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 41114, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 41212, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 41303, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 41401, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 41492, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 41590, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 41681, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 41772, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 41870, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 41955, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42053, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42151, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42249, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42347, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42438, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 42516, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 42607, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 42691, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42789, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42887, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 42971, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43069, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43167, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43265, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43363, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43454, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43552, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43643, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43741, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43839, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43924, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 44015, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 44106, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 44197, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44295, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44393, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 44484, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44582, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44680, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44778, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44869, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44960, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45058, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 45149, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45234, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 45325, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45423, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45521, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45612, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45710, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45801, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45899, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45990, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 46081, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 46172, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46257, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 46342, .adv_w = 224, .box_w = 14, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 46426, .adv_w = 224, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 46504, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46595, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46686, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46784, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46875, .adv_w = 224, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 46959, .adv_w = 224, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 47043, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47134, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 47225, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47323, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47414, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 47505, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47603, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47694, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47792, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47883, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47981, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 48079, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 48170, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 48261, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 48359, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 48444, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 48535, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 48633, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 48746, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 48823, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 48914, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 48991, .adv_w = 154, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 49046, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49151, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49256, .adv_w = 252, .box_w = 16, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 49360, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49465, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 49553, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49658, .adv_w = 112, .box_w = 7, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 49700, .adv_w = 168, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 49766, .adv_w = 252, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49878, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 49955, .adv_w = 154, .box_w = 10, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 50030, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 50100, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 50198, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 50283, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 50368, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 50438, .adv_w = 196, .box_w = 14, .box_h = 13, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 50529, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 50588, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 50647, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 50732, .adv_w = 196, .box_w = 13, .box_h = 4, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 50758, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 50846, .adv_w = 280, .box_w = 18, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 50981, .adv_w = 252, .box_w = 17, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 51109, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 51200, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 51252, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 51304, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 51403, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 51480, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51585, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 51698, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 51783, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51881, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 51966, .adv_w = 196, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 52044, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 52121, .adv_w = 140, .box_w = 10, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 52196, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 52294, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 52392, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 52480, .adv_w = 224, .box_w = 16, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 52600, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 52683, .adv_w = 280, .box_w = 18, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 52800, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 52890, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 52980, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 53070, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 53160, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 53250, .adv_w = 280, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 53358, .adv_w = 196, .box_w = 12, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 53448, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 53546, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 53659, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 53758, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 53841, .adv_w = 225, .box_w = 15, .box_h = 10, .ofs_x = 0, .ofs_y = 0} }; /*--------------------- @@ -9297,55 +9447,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -9377,7 +9529,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -9482,7 +9634,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -9581,7 +9734,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_16.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_16.c index 67376838..43b682f2 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_16.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_16.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 16 px * Bpp: 4 - * Opts: --bpp 4 --size 16 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_16.c + * Opts: --bpp 4 --size 16 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_16.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -3874,6 +3874,22 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x3f, 0x5, 0xe2, 0x8e, 0x10, 0xde, 0xe0, 0x0, 0x3f, 0x0, 0x10, 0xa, 0x30, 0x18, 0x30, + /* U+4F53 "体" */ + 0x0, 0x6, 0x90, 0x0, 0xe, 0x40, 0x0, 0x0, + 0x0, 0xb, 0x80, 0x0, 0xd, 0x40, 0x0, 0x0, + 0x0, 0x1f, 0x30, 0x0, 0xd, 0x40, 0x0, 0x0, + 0x0, 0x7f, 0xe, 0xdd, 0xdf, 0xed, 0xdd, 0xb0, + 0x0, 0xee, 0x3, 0x24, 0xfe, 0xe8, 0x22, 0x20, + 0x7, 0xfe, 0x0, 0x6, 0xcd, 0xac, 0x0, 0x0, + 0x1f, 0x7e, 0x0, 0xc, 0x7d, 0x5e, 0x40, 0x0, + 0x5, 0x3e, 0x0, 0x5e, 0xd, 0x47, 0xd0, 0x0, + 0x0, 0x3e, 0x2, 0xf6, 0xd, 0x40, 0xcb, 0x0, + 0x0, 0x3e, 0x3e, 0xa0, 0xd, 0x40, 0x1e, 0xd2, + 0x0, 0x3e, 0x9a, 0x3d, 0xcf, 0xdc, 0x81, 0x80, + 0x0, 0x3e, 0x0, 0x14, 0x3e, 0x63, 0x20, 0x0, + 0x0, 0x3e, 0x0, 0x0, 0xe, 0x40, 0x0, 0x0, + 0x0, 0x3e, 0x0, 0x0, 0xe, 0x50, 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x9, 0x70, 0x0, 0xc, 0x80, 0x0, 0x0, @@ -3926,6 +3942,23 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xf3, 0x0, 0xe4, 0x88, 0x0, 0x3, 0x0, 0xda, 0x0, + /* U+4FC4 "俄" */ + 0x0, 0x5, 0xa1, 0x0, 0x0, 0x4b, 0x10, 0x0, + 0x0, 0x9, 0xc0, 0x25, 0xa7, 0x4f, 0x5, 0x0, + 0x0, 0xe, 0x66, 0xff, 0x84, 0x3e, 0x2f, 0x50, + 0x0, 0x6f, 0x0, 0xe, 0x20, 0x3e, 0x8, 0x90, + 0x0, 0xdf, 0x1, 0xe, 0x20, 0x3e, 0x1, 0x10, + 0x8, 0xef, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf4, + 0x1e, 0x6f, 0x0, 0xe, 0x20, 0x1f, 0x0, 0x0, + 0x0, 0x3f, 0x0, 0xe, 0x24, 0xf, 0x17, 0x60, + 0x0, 0x3f, 0x2, 0x6f, 0xfb, 0xd, 0x6f, 0x50, + 0x0, 0x3f, 0x4f, 0xaf, 0x20, 0x9, 0xf9, 0x0, + 0x0, 0x3f, 0x0, 0xe, 0x20, 0x1c, 0xf0, 0x0, + 0x0, 0x3f, 0x0, 0xe, 0x25, 0xdb, 0xe5, 0x54, + 0x0, 0x3f, 0x4, 0x9f, 0x19, 0x70, 0x5e, 0xc7, + 0x0, 0x3f, 0x3, 0xb6, 0x0, 0x0, 0x8, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4FDD "保" */ 0x0, 0x2, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc0, 0x4f, 0xff, 0xff, 0xf5, 0x0, @@ -5675,6 +5708,23 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x4f, 0x7, 0x0, 0xe5, 0x11, 0x1e, 0x20, 0x0, 0x1, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x0, 0x0, 0x3, 0x30, 0x0, 0x0, + 0x0, 0x8, 0xb0, 0x0, 0xb, 0x90, 0x0, 0x0, + 0x0, 0x1f, 0x67, 0xcc, 0xcf, 0xdb, 0xbb, 0xb0, + 0x0, 0xbb, 0x2, 0x43, 0x3f, 0x63, 0x33, 0x40, + 0x7, 0xe1, 0x30, 0x11, 0x1f, 0x31, 0x11, 0x0, + 0x9, 0x42, 0xf4, 0xfc, 0xee, 0xdf, 0xcf, 0x40, + 0x0, 0xc, 0x70, 0xf0, 0x97, 0x4c, 0xd, 0x30, + 0x0, 0x7e, 0x0, 0xfb, 0xed, 0xcf, 0xbf, 0x40, + 0x5, 0xfe, 0x0, 0x33, 0x33, 0x33, 0x33, 0x10, + 0x1f, 0x7e, 0x2, 0x43, 0x33, 0x33, 0x33, 0x40, + 0x3, 0x3e, 0x7, 0xcb, 0xbb, 0xbb, 0xbb, 0xc0, + 0x0, 0x3e, 0x3, 0x64, 0x76, 0xa0, 0x6, 0x20, + 0x0, 0x3e, 0x9, 0x96, 0xb0, 0xc1, 0x9, 0xd0, + 0x0, 0x3f, 0xf, 0x45, 0xb0, 0x1, 0xf4, 0xd3, + 0x0, 0x4f, 0x4, 0x2, 0xef, 0xff, 0xc0, 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6d, 0x0, 0x0, 0x0, 0x0, @@ -7197,6 +7247,23 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x1e, 0x20, 0xe, 0x65, 0x8f, 0x90, 0x4e, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x24, 0x0, 0x1, 0x30, + /* U+7259 "牙" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x0, 0x1, + 0x12, 0x11, 0x11, 0x5e, 0x11, 0x10, 0x0, 0x0, + 0xd8, 0x0, 0x5, 0xe0, 0x0, 0x0, 0x0, 0x5e, + 0x10, 0x0, 0x5e, 0x0, 0x0, 0x0, 0x1e, 0x70, + 0x0, 0x5, 0xe0, 0x0, 0x10, 0x6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x20, 0x2, 0x0, 0x2, + 0xfa, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbb, + 0x5e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9e, 0x15, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0xae, 0x20, 0x5e, + 0x0, 0x0, 0x0, 0x3, 0xdd, 0x20, 0x5, 0xe0, + 0x0, 0x0, 0x4c, 0xf9, 0x0, 0x0, 0x6e, 0x0, + 0x0, 0x5, 0xc3, 0x0, 0x1, 0xcf, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0x51, 0x0, 0x0, + 0x0, + /* U+72B6 "状" */ 0x0, 0x0, 0xe6, 0x0, 0x5, 0x80, 0x0, 0x0, 0x0, 0x0, 0xd6, 0x0, 0x8, 0xe0, 0x80, 0x0, @@ -7264,6 +7331,23 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x8, 0xe6, 0x0, 0xd, 0xbc, 0x80, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, + 0x1, 0x11, 0x11, 0x0, 0xe7, 0x22, 0x22, 0x20, + 0xe, 0xff, 0xfa, 0x0, 0xe6, 0xcc, 0xfc, 0xc1, + 0x0, 0x2f, 0x0, 0x0, 0xe3, 0x2, 0xf0, 0x0, + 0x0, 0x2f, 0x0, 0xc4, 0xe3, 0x2, 0xf0, 0x0, + 0x0, 0x2f, 0x0, 0xd4, 0xe2, 0x2, 0xf0, 0x0, + 0x5, 0x7f, 0x63, 0xd3, 0xe2, 0x67, 0xf6, 0x50, + 0x7, 0xaf, 0xa5, 0xf2, 0xf1, 0x99, 0xf8, 0x70, + 0x0, 0x2f, 0x0, 0x51, 0xf0, 0x2, 0xf0, 0x0, + 0x0, 0x2f, 0x0, 0x4, 0xd0, 0x2, 0xf0, 0x0, + 0x0, 0x2f, 0x0, 0x8, 0x90, 0x2, 0xf0, 0x0, + 0x0, 0x2f, 0x8d, 0xe, 0x40, 0x2, 0xf0, 0x0, + 0x6, 0xcf, 0x93, 0x7d, 0x1, 0x13, 0xf1, 0x10, + 0x1e, 0x81, 0x5, 0xf4, 0xa, 0xdd, 0xdd, 0xe5, + 0x0, 0x0, 0x2, 0x70, 0x0, 0x0, 0x0, 0x0, + /* U+7406 "理" */ 0x2, 0x11, 0x12, 0x4f, 0xff, 0xff, 0xff, 0xd0, 0x5f, 0xff, 0xff, 0x4e, 0x0, 0xf3, 0x5, 0xd0, @@ -7728,6 +7812,24 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0xe, 0x60, 0x0, 0x2, 0xfc, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x1, 0x10, 0x0, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x8c, 0x0, 0x0, 0x9c, 0x0, 0x0, 0x0, + 0x2f, 0xed, 0xdb, 0xf, 0xdb, 0xbb, 0xb0, 0x1d, + 0x85, 0xe2, 0x19, 0xb3, 0xcb, 0x33, 0xd, 0xa0, + 0xc, 0x56, 0xe1, 0x5, 0xf1, 0x0, 0x30, 0x87, + 0x10, 0x13, 0x0, 0x1, 0x0, 0x0, 0x4, 0xf3, + 0xaf, 0xff, 0xff, 0xff, 0x0, 0x8, 0x27, 0x20, + 0x0, 0x0, 0x2, 0xe0, 0x0, 0xe3, 0xe, 0xee, + 0xee, 0x50, 0x2e, 0x0, 0xd, 0x30, 0xe2, 0x0, + 0xc4, 0x2, 0xe0, 0x0, 0xd3, 0xe, 0xff, 0xff, + 0x40, 0x2e, 0x0, 0xd, 0x30, 0xe2, 0x0, 0xc4, + 0x2, 0xe0, 0x0, 0xd3, 0xe, 0x53, 0x3d, 0x40, + 0x2e, 0x0, 0xd, 0x30, 0xbb, 0xbb, 0xb4, 0x2, + 0xe0, 0x0, 0xe3, 0x0, 0x0, 0x0, 0x16, 0x9d, + 0x0, 0xe, 0x30, 0x0, 0x0, 0x0, 0xed, 0x60, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x7, 0xf0, 0x0, 0x10, 0x0, 0x0, 0xc, 0x50, 0x6, 0xe0, 0x0, 0xe9, 0x0, @@ -8064,6 +8166,23 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xfb, 0x0, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x37, 0x0, 0x3, 0x70, 0x0, 0x0, + 0x12, 0x27, 0xd2, 0x22, 0x7e, 0x22, 0x33, 0x8, + 0xee, 0xef, 0xee, 0xee, 0xfe, 0xee, 0xd0, 0x0, + 0x6, 0xc0, 0x20, 0x5d, 0x0, 0x0, 0x0, 0x0, + 0x24, 0xe, 0x81, 0x40, 0x0, 0x0, 0x0, 0xcd, + 0xdd, 0xfe, 0xdd, 0xd7, 0x0, 0x0, 0xd, 0x73, + 0x3e, 0x73, 0x3c, 0x80, 0x0, 0x0, 0xd4, 0x0, + 0xe4, 0x0, 0xb8, 0x0, 0x1, 0x1d, 0x50, 0xe, + 0x40, 0xb, 0x80, 0x13, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x9c, 0xda, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0x21, 0xea, + 0x10, 0x0, 0x0, 0x2, 0xbe, 0x30, 0x1, 0xce, + 0x60, 0x0, 0x5c, 0xfa, 0x10, 0x0, 0x0, 0x7e, + 0xf7, 0x0, 0x72, 0x0, 0x0, 0x0, 0x0, 0x5, + 0x0, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd6, 0x0, 0x6d, 0x0, 0x0, 0x1, @@ -8205,6 +8324,22 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x4a, 0xf9, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, + /* U+897F "西" */ + 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, + 0x0, 0x0, 0xd3, 0xd, 0x30, 0x0, 0x0, 0x0, + 0x0, 0xd, 0x30, 0xd3, 0x0, 0x0, 0x0, 0x2, + 0x22, 0xd5, 0x2e, 0x52, 0x22, 0x0, 0x5, 0xfd, + 0xdf, 0xed, 0xfe, 0xdd, 0xf0, 0x0, 0x4d, 0x0, + 0xe2, 0xd, 0x30, 0x2e, 0x0, 0x4, 0xd0, 0x1f, + 0x0, 0xd3, 0x2, 0xe0, 0x0, 0x4d, 0x7, 0xb0, + 0xd, 0x30, 0x2e, 0x0, 0x4, 0xd2, 0xf4, 0x0, + 0xce, 0xd8, 0xe0, 0x0, 0x4d, 0x68, 0x0, 0x2, + 0x66, 0x4e, 0x0, 0x4, 0xd0, 0x0, 0x0, 0x0, + 0x2, 0xe0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x0, 0x5, 0xd0, 0x0, 0x0, 0x0, 0x2, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + /* U+8981 "要" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, @@ -8292,6 +8427,22 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xe, 0xf9, 0x0, 0x10, 0x0, 0x0, 0x0, 0x2, 0x10, + /* U+8A00 "言" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0xc0, 0x0, 0x0, 0x0, 0x11, 0x11, + 0x13, 0xf4, 0x11, 0x11, 0x10, 0xef, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xdc, 0xcc, 0xcc, 0xcc, + 0xc8, 0x0, 0x0, 0x32, 0x22, 0x22, 0x22, 0x32, + 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x10, 0x0, + 0x3, 0xee, 0xee, 0xee, 0xee, 0xe8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x0, 0x1, 0xf2, 0x0, + 0x0, 0x0, 0x9a, 0x0, 0x0, 0xf2, 0x0, 0x0, + 0x0, 0x9a, 0x0, 0x1, 0xfc, 0xcc, 0xcc, 0xcc, + 0xea, 0x0, 0x1, 0xf5, 0x33, 0x33, 0x33, 0xbb, + 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0x60, 0xd3, 0x0, 0xc7, 0x0, 0x0, @@ -8466,6 +8617,24 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x23, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x10, + /* U+8BED "语" */ + 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd6, 0x7, 0xee, 0xef, 0xee, 0xee, 0x80, + 0x0, 0x2d, 0x20, 0x0, 0x3f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfa, 0x0, + 0x13, 0x33, 0x0, 0x0, 0xb8, 0x0, 0xa9, 0x0, + 0x7f, 0xff, 0x10, 0x0, 0xe5, 0x0, 0xd8, 0x0, + 0x0, 0x2f, 0x14, 0x45, 0xf6, 0x44, 0xf9, 0x51, + 0x0, 0x2f, 0x1a, 0xaa, 0xaa, 0xaa, 0xaa, 0xa3, + 0x0, 0x2f, 0x10, 0x1, 0x11, 0x11, 0x11, 0x0, + 0x0, 0x2f, 0x11, 0x5f, 0xff, 0xff, 0xfd, 0x0, + 0x0, 0x2f, 0xa9, 0x4e, 0x0, 0x0, 0x5d, 0x0, + 0x0, 0x2f, 0xf3, 0x4e, 0x0, 0x0, 0x5d, 0x0, + 0x0, 0x5f, 0x60, 0x4e, 0x22, 0x22, 0x7d, 0x0, + 0x0, 0xab, 0x0, 0x4f, 0xdd, 0xdd, 0xed, 0x0, + 0x0, 0x1, 0x0, 0x5e, 0x0, 0x0, 0x5d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BF7 "请" */ 0x0, 0x41, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0, 0xad, 0x10, 0xbb, 0xbc, 0xfb, 0xbb, 0xa0, @@ -10708,392 +10877,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 23321, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 23449, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 23569, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23697, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23825, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 23945, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24058, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24170, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24298, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 24426, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 24562, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24674, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 24802, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 24914, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25042, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 25155, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25275, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 25380, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25500, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 23697, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 23809, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 23937, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24057, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24170, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24290, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24402, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24530, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 24658, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 24794, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 24906, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 25034, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25146, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25274, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 25387, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25507, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 25612, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25732, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 25860, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 25980, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26100, .adv_w = 256, .box_w = 13, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 26198, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 26310, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 26430, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26535, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26647, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26760, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26873, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 26986, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27099, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27212, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27340, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27460, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27580, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 27708, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 27813, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 27918, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28038, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28158, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28271, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28391, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28504, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28624, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28729, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 28842, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 28962, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 29067, .adv_w = 256, .box_w = 14, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 29186, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29299, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29411, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29539, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 29644, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29756, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 29854, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 29952, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 30057, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30177, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 30289, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 30401, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30513, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 30618, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30738, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 30850, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30978, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31098, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 31203, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31323, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31443, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31571, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31691, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31811, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 31916, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32036, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 32172, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 32292, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32420, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 32525, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 32637, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32765, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32893, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 33029, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 33149, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33269, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33389, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 33502, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 33630, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 33735, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33848, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 33953, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34073, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34185, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34297, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 34417, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 34515, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34643, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 34741, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 34846, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34959, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35087, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35207, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35335, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35455, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 35567, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35695, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 35800, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 35905, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36025, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36145, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36273, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36393, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 36513, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36641, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36761, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 36873, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37001, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37129, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 37249, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37369, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37482, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37595, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37715, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37835, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37963, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38076, .adv_w = 256, .box_w = 15, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 38204, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38324, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38444, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38564, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38684, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38804, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38932, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39052, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39172, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39292, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39420, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39548, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39676, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 39812, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39932, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40052, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40157, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40277, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40405, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40533, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40646, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 40766, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40894, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41022, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 41150, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41270, .adv_w = 256, .box_w = 11, .box_h = 13, .ofs_x = 3, .ofs_y = -1}, - {.bitmap_index = 41342, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 41455, .adv_w = 256, .box_w = 15, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 41553, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 41651, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 41764, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 41869, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41997, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42110, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 42222, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42335, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42455, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 42591, .adv_w = 256, .box_w = 15, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 42689, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42817, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 42929, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 25732, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 25844, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 25964, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 26092, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26212, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26332, .adv_w = 256, .box_w = 13, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 26430, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 26542, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 26662, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26767, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26879, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 26992, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27105, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27218, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27331, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27444, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27572, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27692, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27812, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 27940, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 28045, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 28150, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28270, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28390, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28503, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28623, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28736, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28856, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 28961, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29074, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 29194, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 29299, .adv_w = 256, .box_w = 14, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 29418, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29531, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29643, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29771, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 29876, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29988, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 30086, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 30184, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 30289, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30409, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 30521, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 30633, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30745, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 30850, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30970, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 31082, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31210, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31330, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 31435, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31555, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31675, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31803, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31923, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32043, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 32148, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32268, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 32404, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 32524, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32652, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 32757, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 32869, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32997, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33125, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 33261, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 33381, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33501, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33621, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 33734, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 33862, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 33967, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34080, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 34185, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34305, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34417, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34529, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 34649, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 34747, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34875, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 34973, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 35078, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35191, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35319, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35439, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35567, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35687, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 35799, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35927, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 36032, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 36137, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36257, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36377, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 36497, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36625, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36745, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 36865, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36993, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37113, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 37225, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37353, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37481, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 37601, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37721, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37834, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37947, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38067, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38187, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38315, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38428, .adv_w = 256, .box_w = 15, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 38556, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38676, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38796, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38916, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39036, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39156, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39284, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39404, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39524, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39644, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39772, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39900, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40028, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 40164, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40284, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40404, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40509, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40629, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40757, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40885, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40998, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 41118, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 41246, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 41374, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 41502, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 41622, .adv_w = 256, .box_w = 11, .box_h = 13, .ofs_x = 3, .ofs_y = -1}, + {.bitmap_index = 41694, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 41807, .adv_w = 256, .box_w = 15, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 41905, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 42003, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 42116, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 42221, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42349, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42462, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 42574, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42687, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42807, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 42943, .adv_w = 256, .box_w = 15, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, {.bitmap_index = 43041, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43169, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43297, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43409, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43529, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43657, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43777, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 43913, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44033, .adv_w = 256, .box_w = 15, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 44131, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 44244, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 44372, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 44477, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44597, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44717, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44830, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44943, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45071, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45184, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45312, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45425, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 45553, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 45673, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45793, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45913, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46033, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 46161, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46281, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46401, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46529, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46649, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46761, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43169, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 43281, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 43393, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43521, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43649, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43761, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43881, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44009, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44129, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 44265, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44385, .adv_w = 256, .box_w = 15, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 44483, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 44596, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 44724, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 44829, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44949, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45069, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45182, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45295, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45423, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45536, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45664, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45777, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 45905, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 46025, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46145, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46265, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46385, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 46513, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46633, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46753, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 46881, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47001, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47121, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47233, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47345, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 47450, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47548, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 47661, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 47766, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 47894, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 47999, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 48111, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 48231, .adv_w = 256, .box_w = 12, .box_h = 13, .ofs_x = 2, .ofs_y = -1}, - {.bitmap_index = 48309, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 48421, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 48541, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 48653, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 48751, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 48871, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 48991, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49111, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 49216, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49344, .adv_w = 256, .box_w = 14, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 49463, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49583, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49711, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49831, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 49951, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 50063, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50191, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 50311, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 50447, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50567, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50687, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50800, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50913, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51033, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 51145, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 51273, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51393, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 51521, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51649, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51769, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 51874, .adv_w = 256, .box_w = 15, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 51972, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 52092, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 52212, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 52332, .adv_w = 256, .box_w = 15, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 52460, .adv_w = 256, .box_w = 12, .box_h = 15, .ofs_x = 2, .ofs_y = -1}, - {.bitmap_index = 52550, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 52663, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 52768, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 52888, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 53016, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 53152, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 53280, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 53408, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 53528, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 53656, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 53761, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 53881, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 54009, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 54137, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 54265, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 54370, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 54498, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 54610, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 54738, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 54866, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 54978, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 55098, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 55226, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 55354, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 55474, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 55602, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 55722, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 55835, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 55963, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56083, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 56195, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 56307, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56427, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56547, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56675, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56803, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56923, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 57051, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 57187, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 57307, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 57420, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 57540, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 57653, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 57773, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 57885, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58005, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58125, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58245, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58365, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58485, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58605, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58725, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 58845, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 58965, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 59085, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 59190, .adv_w = 256, .box_w = 15, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 59288, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 59401, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 59521, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 59641, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 59769, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 59882, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 59987, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 60099, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 60211, .adv_w = 256, .box_w = 15, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 60339, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 60459, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 60564, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 60662, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 60774, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 60879, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 60999, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 61119, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 61239, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 61359, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 61479, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 61591, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 61719, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 61839, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 61959, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 62079, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 62215, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 62311, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 62423, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 62519, .adv_w = 176, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 62585, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 62713, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 62841, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 62967, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 63095, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 63203, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 63331, .adv_w = 128, .box_w = 8, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 63387, .adv_w = 192, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 63471, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 63615, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 63711, .adv_w = 176, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 63799, .adv_w = 224, .box_w = 10, .box_h = 16, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 63879, .adv_w = 224, .box_w = 14, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 64005, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 64110, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 64208, .adv_w = 224, .box_w = 10, .box_h = 16, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 64288, .adv_w = 224, .box_w = 16, .box_h = 14, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 64400, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 64470, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 64540, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 64638, .adv_w = 224, .box_w = 14, .box_h = 4, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 64666, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 64774, .adv_w = 320, .box_w = 20, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 64934, .adv_w = 288, .box_w = 20, .box_h = 16, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 65094, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 65222, .adv_w = 224, .box_w = 14, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 65292, .adv_w = 224, .box_w = 14, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 65362, .adv_w = 320, .box_w = 20, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 65502, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 65598, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 65726, .adv_w = 256, .box_w = 17, .box_h = 17, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 65871, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 65976, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 66088, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 66186, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 66284, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 66380, .adv_w = 160, .box_w = 12, .box_h = 16, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 66476, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 66588, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 66700, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 66808, .adv_w = 256, .box_w = 18, .box_h = 18, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 66970, .adv_w = 192, .box_w = 12, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 67066, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 67216, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 67316, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 67416, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 67516, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 67616, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 67716, .adv_w = 320, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 67863, .adv_w = 224, .box_w = 12, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 67959, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 68071, .adv_w = 256, .box_w = 17, .box_h = 17, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 68216, .adv_w = 320, .box_w = 20, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 68336, .adv_w = 192, .box_w = 12, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 68432, .adv_w = 258, .box_w = 17, .box_h = 11, .ofs_x = 0, .ofs_y = 1} + {.bitmap_index = 47001, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47113, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 47226, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47346, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47466, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47586, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47698, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47818, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47930, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 48035, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 48133, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 48246, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 48351, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 48479, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 48584, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 48696, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 48816, .adv_w = 256, .box_w = 12, .box_h = 13, .ofs_x = 2, .ofs_y = -1}, + {.bitmap_index = 48894, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 49006, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49126, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49238, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 49336, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49456, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49576, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49696, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 49801, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49929, .adv_w = 256, .box_w = 14, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 50048, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 50168, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 50296, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 50416, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 50536, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 50648, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 50776, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 50896, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 51032, .adv_w = 256, .box_w = 15, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 51160, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51280, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51400, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51513, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51626, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51746, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 51858, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 51986, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 52106, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 52234, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 52362, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 52482, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 52587, .adv_w = 256, .box_w = 15, .box_h = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 52685, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 52805, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 52925, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 53045, .adv_w = 256, .box_w = 15, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 53173, .adv_w = 256, .box_w = 12, .box_h = 15, .ofs_x = 2, .ofs_y = -1}, + {.bitmap_index = 53263, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 53376, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 53481, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 53594, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 53714, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 53842, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 53978, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 54106, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 54234, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 54354, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 54482, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 54587, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 54692, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 54812, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 54940, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 55068, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 55196, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 55301, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 55406, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 55534, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 55646, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 55774, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 55902, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 56014, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56134, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56262, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56390, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56510, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56638, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 56766, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56886, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56999, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 57127, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 57247, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 57359, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 57471, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 57591, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 57711, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 57839, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 57967, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58087, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58215, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 58351, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58471, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58584, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58704, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 58817, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58937, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 59049, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59169, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59289, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59409, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59529, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59649, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59769, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59889, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 60009, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 60129, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 60249, .adv_w = 256, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 60354, .adv_w = 256, .box_w = 15, .box_h = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 60452, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 60565, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 60685, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 60805, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 60933, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 61046, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 61151, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 61263, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 61375, .adv_w = 256, .box_w = 15, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 61503, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 61623, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 61728, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 61826, .adv_w = 256, .box_w = 14, .box_h = 16, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 61938, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 62043, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 62163, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 62283, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 62403, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 62523, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 62643, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 62755, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 62883, .adv_w = 256, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 63003, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 63123, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 63243, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 63379, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 63475, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 63587, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 63683, .adv_w = 176, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 63749, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 63877, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 64005, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 64131, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 64259, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 64367, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 64495, .adv_w = 128, .box_w = 8, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 64551, .adv_w = 192, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 64635, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 64779, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 64875, .adv_w = 176, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 64963, .adv_w = 224, .box_w = 10, .box_h = 16, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 65043, .adv_w = 224, .box_w = 14, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 65169, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 65274, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 65372, .adv_w = 224, .box_w = 10, .box_h = 16, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 65452, .adv_w = 224, .box_w = 16, .box_h = 14, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 65564, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 65634, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 65704, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 65802, .adv_w = 224, .box_w = 14, .box_h = 4, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 65830, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 65938, .adv_w = 320, .box_w = 20, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 66098, .adv_w = 288, .box_w = 20, .box_h = 16, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 66258, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 66386, .adv_w = 224, .box_w = 14, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 66456, .adv_w = 224, .box_w = 14, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 66526, .adv_w = 320, .box_w = 20, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 66666, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 66762, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 66890, .adv_w = 256, .box_w = 17, .box_h = 17, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 67035, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 67140, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 67252, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 67350, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 67448, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 67544, .adv_w = 160, .box_w = 12, .box_h = 16, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 67640, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 67752, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 67864, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 67972, .adv_w = 256, .box_w = 18, .box_h = 18, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 68134, .adv_w = 192, .box_w = 12, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 68230, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 68380, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 68480, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 68580, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 68680, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 68780, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 68880, .adv_w = 320, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 69027, .adv_w = 224, .box_w = 12, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 69123, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 69235, .adv_w = 256, .box_w = 17, .box_h = 17, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 69380, .adv_w = 320, .box_w = 20, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 69500, .adv_w = 192, .box_w = 12, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 69596, .adv_w = 258, .box_w = 17, .box_h = 11, .ofs_x = 0, .ofs_y = 1} }; /*--------------------- @@ -11114,55 +11293,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -11194,7 +11375,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -11299,7 +11480,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -11398,7 +11580,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_18.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_18.c index cb1f2e29..8360ff7b 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_18.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_18.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 18 px * Bpp: 4 - * Opts: --bpp 4 --size 18 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_18.c + * Opts: --bpp 4 --size 18 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_18.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -4536,6 +4536,28 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0xe, 0x80, 0x0, 0x0, 0x86, 0x0, 0x49, 0x20, + /* U+4F53 "体" */ + 0x0, 0x0, 0x50, 0x0, 0x0, 0x74, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xf4, 0x0, 0x0, 0xe6, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xe0, 0x0, 0x0, 0xd6, + 0x0, 0x0, 0x0, 0x0, 0xe, 0x80, 0x0, 0x0, + 0xd6, 0x0, 0x0, 0x0, 0x0, 0x4f, 0x48, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xbf, 0x42, + 0x32, 0x5f, 0xee, 0xc2, 0x23, 0x20, 0x4, 0xff, + 0x40, 0x0, 0x8c, 0xda, 0xf1, 0x0, 0x0, 0xd, + 0xaf, 0x40, 0x0, 0xd8, 0xd6, 0xe7, 0x0, 0x0, + 0x1c, 0x1f, 0x40, 0x6, 0xf1, 0xd6, 0x7e, 0x10, + 0x0, 0x0, 0xf, 0x40, 0x1e, 0x90, 0xd6, 0xd, + 0xb0, 0x0, 0x0, 0xf, 0x40, 0xcd, 0x0, 0xd6, + 0x3, 0xfa, 0x0, 0x0, 0xf, 0x6c, 0xf3, 0x0, + 0xd6, 0x0, 0x5f, 0xd1, 0x0, 0xf, 0x8d, 0x37, + 0xee, 0xfe, 0xee, 0x14, 0x50, 0x0, 0xf, 0x40, + 0x2, 0x44, 0xe8, 0x34, 0x0, 0x0, 0x0, 0xf, + 0x40, 0x0, 0x0, 0xd6, 0x0, 0x0, 0x0, 0x0, + 0xf, 0x40, 0x0, 0x0, 0xe7, 0x0, 0x0, 0x0, + 0x0, 0xe, 0x40, 0x0, 0x0, 0xe7, 0x0, 0x0, + 0x0, + /* U+4F7F "使" */ 0x0, 0x2, 0x40, 0x0, 0x0, 0x68, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf2, 0x0, 0x0, 0x9d, 0x0, @@ -4601,6 +4623,28 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x5f, 0x19, 0x70, 0x0, 0x12, 0x1, 0xe9, 0x0, + /* U+4FC4 "俄" */ + 0x0, 0x0, 0x73, 0x0, 0x0, 0x1, 0x62, 0x0, + 0x0, 0x0, 0x1, 0xfa, 0x0, 0x3, 0x33, 0xf3, + 0x0, 0x0, 0x0, 0x5, 0xf3, 0x6a, 0xef, 0xb2, + 0xf2, 0xb8, 0x0, 0x0, 0xc, 0xc0, 0x59, 0xf4, + 0x1, 0xf2, 0x7f, 0x20, 0x0, 0x3f, 0x70, 0x0, + 0xe4, 0x1, 0xf2, 0xb, 0x20, 0x0, 0xbf, 0x60, + 0x32, 0xe6, 0x23, 0xf4, 0x22, 0x30, 0x5, 0xfe, + 0x64, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xe, + 0x9d, 0x60, 0x0, 0xe4, 0x0, 0xf3, 0x0, 0x0, + 0x3, 0x1d, 0x60, 0x0, 0xe4, 0x0, 0xe4, 0x4, + 0x0, 0x0, 0xd, 0x60, 0x0, 0xe9, 0xc0, 0xc6, + 0x5f, 0x30, 0x0, 0xd, 0x63, 0x8c, 0xfd, 0x70, + 0xaa, 0xd9, 0x0, 0x0, 0xd, 0x69, 0xe8, 0xf4, + 0x0, 0x6f, 0xe0, 0x0, 0x0, 0xd, 0x61, 0x0, + 0xe4, 0x0, 0x8f, 0x60, 0x0, 0x0, 0xd, 0x60, + 0x0, 0xe4, 0x8, 0xfe, 0x90, 0x30, 0x0, 0xd, + 0x60, 0x0, 0xf4, 0xbf, 0x54, 0xf3, 0xf4, 0x0, + 0xd, 0x70, 0x9f, 0xf2, 0x34, 0x0, 0xaf, 0xf0, + 0x0, 0xe, 0x80, 0x4a, 0x50, 0x0, 0x0, 0xa, + 0x60, + /* U+4FDD "保" */ 0x0, 0x0, 0x73, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0xe, 0xff, 0xff, 0xff, @@ -6798,6 +6842,28 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x2, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x50, 0x0, 0x0, 0x89, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xf4, 0x0, 0x0, 0xba, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0x91, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x90, 0x0, 0xcd, 0x0, 0x22, 0x11, + 0xf6, 0x11, 0x12, 0x10, 0x9, 0xf2, 0x32, 0x24, + 0x45, 0xf7, 0x44, 0x43, 0x0, 0x9, 0x50, 0xdb, + 0x7e, 0xbe, 0xdb, 0xfb, 0xde, 0x0, 0x0, 0x8, + 0xf1, 0x7c, 0xb, 0x81, 0xf1, 0x5d, 0x0, 0x0, + 0x4f, 0x60, 0x7c, 0x1b, 0x82, 0xf2, 0x6d, 0x0, + 0x2, 0xef, 0x30, 0x7f, 0xff, 0xff, 0xff, 0xfd, + 0x0, 0x2e, 0xcf, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9, 0x1f, 0x31, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb0, 0x0, 0xf, 0x30, 0x11, 0x11, + 0x13, 0x11, 0x11, 0x10, 0x0, 0xf, 0x30, 0x0, + 0x0, 0x7d, 0x0, 0x1, 0x0, 0x0, 0xf, 0x30, + 0xe6, 0xaa, 0x3f, 0x50, 0x4f, 0x20, 0x0, 0x1f, + 0x33, 0xf2, 0xa9, 0x7, 0x23, 0x1d, 0xc0, 0x0, + 0x1f, 0x49, 0xc0, 0x9b, 0x10, 0x1d, 0xc3, 0xb0, + 0x0, 0x1f, 0x40, 0x20, 0x4e, 0xff, 0xfe, 0x40, + 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x3, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xf8, 0x0, 0x0, @@ -8731,6 +8797,24 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xb0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x50, 0x0, 0x3, 0x10, + /* U+7259 "牙" */ + 0x9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, + 0x3, 0x44, 0x44, 0x44, 0x47, 0xf6, 0x44, 0x20, + 0x0, 0x4, 0x91, 0x0, 0x3, 0xf2, 0x0, 0x0, + 0x0, 0xa, 0xe1, 0x0, 0x3, 0xf2, 0x0, 0x0, + 0x0, 0x2f, 0x50, 0x0, 0x3, 0xf2, 0x0, 0x0, + 0x0, 0xcd, 0x0, 0x0, 0x3, 0xf2, 0x0, 0x1, + 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x0, 0x53, 0x11, 0x13, 0xfb, 0xf4, 0x11, 0x12, + 0x0, 0x0, 0x0, 0xb, 0xe4, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7f, 0x43, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xf7, 0x3, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0x9f, 0x80, 0x3, 0xf2, 0x0, 0x0, + 0x0, 0x4d, 0xf5, 0x0, 0x3, 0xf2, 0x0, 0x0, + 0x4c, 0xfc, 0x20, 0x0, 0x5, 0xf2, 0x0, 0x0, + 0x3d, 0x50, 0x0, 0x2, 0xef, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x97, 0x20, 0x0, 0x0, + /* U+72B6 "状" */ 0x0, 0x0, 0x16, 0x10, 0x0, 0x13, 0x10, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x30, 0x0, 0x5f, 0x50, @@ -8817,6 +8901,26 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0xd, 0x60, 0x0, 0x0, + 0x0, 0x4, 0x44, 0x44, 0x10, 0xe, 0x86, 0x66, + 0x66, 0x50, 0xe, 0xef, 0xee, 0x30, 0xe, 0x7b, + 0xaf, 0xcb, 0x80, 0x0, 0xe, 0x50, 0x0, 0xe, + 0x50, 0xe, 0x50, 0x0, 0x0, 0xe, 0x50, 0x2f, + 0x1e, 0x50, 0xe, 0x50, 0x0, 0x0, 0xe, 0x50, + 0x3f, 0xe, 0x40, 0xe, 0x50, 0x0, 0x1, 0x2e, + 0x62, 0x3f, 0xe, 0x42, 0x1e, 0x62, 0x10, 0xc, + 0xff, 0xff, 0x5f, 0xf, 0x4f, 0xff, 0xff, 0x60, + 0x0, 0xe, 0x50, 0x5c, 0x1f, 0x10, 0xe, 0x50, + 0x0, 0x0, 0xe, 0x50, 0x0, 0x3f, 0x0, 0xe, + 0x50, 0x0, 0x0, 0xe, 0x50, 0x0, 0x8c, 0x0, + 0xe, 0x50, 0x0, 0x0, 0xe, 0x50, 0x20, 0xc8, + 0x0, 0xe, 0x50, 0x0, 0x0, 0xe, 0xcf, 0x83, + 0xf2, 0x0, 0xe, 0x50, 0x0, 0x18, 0xdf, 0xa4, + 0xd, 0xb0, 0x33, 0x3e, 0x73, 0x30, 0x1e, 0x92, + 0x0, 0xaf, 0x20, 0xde, 0xee, 0xee, 0xe0, 0x0, + 0x0, 0x0, 0x85, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7406 "理" */ 0x0, 0x0, 0x0, 0x6, 0xdd, 0xdd, 0xdd, 0xdd, 0x40, 0x5f, 0xff, 0xff, 0x97, 0xf4, 0x4f, 0x94, @@ -9399,6 +9503,28 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x5, 0x60, 0x0, 0x0, 0x65, 0x0, 0x0, + 0x0, 0x0, 0xea, 0x11, 0x20, 0xf, 0x80, 0x0, + 0x0, 0x0, 0x9f, 0xff, 0xff, 0x47, 0xff, 0xff, + 0xff, 0x0, 0x7f, 0x35, 0xf1, 0x3, 0xf6, 0x1d, + 0x91, 0x20, 0x7f, 0x50, 0xc, 0x71, 0xea, 0x0, + 0x7e, 0x0, 0x0, 0x30, 0xb5, 0x20, 0x5, 0x0, + 0x1, 0x10, 0x0, 0x0, 0x7, 0xf4, 0x8e, 0xee, + 0xee, 0xee, 0xd0, 0x0, 0x3a, 0x8, 0x22, 0x33, + 0x33, 0x33, 0x6e, 0x0, 0x4, 0xf0, 0xe, 0xee, + 0xee, 0xe3, 0x4, 0xe0, 0x0, 0x4e, 0x0, 0xe5, + 0x11, 0x1f, 0x20, 0x4e, 0x0, 0x4, 0xe0, 0xe, + 0x51, 0x12, 0xf2, 0x4, 0xe0, 0x0, 0x4e, 0x0, + 0xef, 0xff, 0xff, 0x20, 0x4e, 0x0, 0x4, 0xe0, + 0xe, 0x40, 0x0, 0xf2, 0x4, 0xe0, 0x0, 0x4e, + 0x0, 0xfe, 0xdd, 0xdf, 0x30, 0x4e, 0x0, 0x4, + 0xe0, 0x3, 0x33, 0x33, 0x30, 0x4, 0xe0, 0x0, + 0x4f, 0x0, 0x0, 0x0, 0x0, 0x3b, 0xdd, 0x0, + 0x5, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xfd, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x0, 0x7b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x60, 0x0, 0x8f, 0x0, 0x4, @@ -9815,6 +9941,25 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x11, 0x11, 0x10, 0x0, 0x0, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x47, 0x0, 0x0, 0x74, 0x0, 0x0, + 0x0, 0x0, 0x8e, 0x0, 0x0, 0xe7, 0x0, 0x0, + 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0x14, 0x44, 0xae, 0x44, 0x44, 0xe9, 0x44, 0x43, + 0x0, 0x0, 0x7c, 0x6, 0xa1, 0xc7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x15, 0x55, 0x5a, 0xf5, 0x55, 0x51, 0x0, + 0x0, 0x4f, 0xdd, 0xde, 0xfd, 0xdd, 0xf3, 0x0, + 0x0, 0x3f, 0x10, 0x8, 0xc0, 0x0, 0xf3, 0x0, + 0x0, 0x3f, 0x10, 0x8, 0xb0, 0x0, 0xf3, 0x0, + 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x33, 0x33, 0x33, 0x5f, 0xee, 0x43, 0x33, 0x32, + 0x0, 0x0, 0x1, 0xdb, 0xc, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0x3d, 0xd1, 0x1, 0xdd, 0x30, 0x0, + 0x0, 0x5b, 0xfb, 0x0, 0x0, 0xb, 0xfb, 0x51, + 0x2f, 0xfb, 0x40, 0x0, 0x0, 0x0, 0x5d, 0xf4, + 0x3, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, + /* U+83B7 "获" */ 0x0, 0x0, 0x2, 0xa2, 0x0, 0x3b, 0x10, 0x0, 0x0, 0x0, 0x0, 0x2f, 0x20, 0x4, 0xf1, 0x0, @@ -9988,6 +10133,25 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x2, 0x0, 0x6f, 0xf9, 0x20, 0x6, 0xef, 0xd7, 0x0, 0x0, 0x1a, 0x20, 0x0, 0x0, 0x4, 0x92, + /* U+897F "西" */ + 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, + 0xbf, 0xee, 0xee, 0xfe, 0xef, 0xee, 0xee, 0xeb, + 0x0, 0x0, 0x5, 0xe0, 0xe, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xe0, 0xe, 0x50, 0x0, 0x0, + 0x0, 0x33, 0x37, 0xe3, 0x3e, 0x73, 0x33, 0x10, + 0x3, 0xfe, 0xef, 0xfe, 0xef, 0xfe, 0xef, 0x40, + 0x3, 0xf1, 0x6, 0xc0, 0xe, 0x50, 0xf, 0x40, + 0x3, 0xf1, 0x8, 0xa0, 0xe, 0x50, 0xf, 0x40, + 0x3, 0xf1, 0xd, 0x60, 0xe, 0x50, 0xf, 0x40, + 0x3, 0xf1, 0x5f, 0x10, 0xd, 0x95, 0x4f, 0x40, + 0x3, 0xf4, 0xf8, 0x0, 0x9, 0xff, 0x9f, 0x40, + 0x3, 0xf1, 0x70, 0x0, 0x0, 0x1, 0xf, 0x40, + 0x3, 0xf1, 0x0, 0x0, 0x0, 0x0, 0xf, 0x40, + 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, + 0x3, 0xf2, 0x11, 0x11, 0x11, 0x11, 0x1f, 0x40, + 0x3, 0xf1, 0x0, 0x0, 0x0, 0x0, 0xf, 0x40, + 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8981 "要" */ 0x1, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x10, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, @@ -10100,6 +10264,25 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xe1, 0x0, 0x0, 0x5f, 0x20, 0x4f, 0xf7, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x0, 0x14, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xaf, 0x0, 0x0, 0x0, 0x0, + 0x34, 0x44, 0x44, 0x7f, 0x84, 0x44, 0x44, 0x41, + 0xce, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xe3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcd, 0xdd, 0xdd, 0xdd, 0xdd, 0xe2, 0x0, + 0x0, 0x33, 0x33, 0x33, 0x33, 0x33, 0x41, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, + 0x0, 0x21, 0x11, 0x11, 0x11, 0x11, 0x20, 0x0, + 0x0, 0x11, 0x11, 0x11, 0x11, 0x11, 0x10, 0x0, + 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0xba, 0x0, 0x0, 0x0, 0x3, 0xf3, 0x0, + 0x0, 0xba, 0x0, 0x0, 0x0, 0x3, 0xf3, 0x0, + 0x0, 0xbf, 0xdd, 0xdd, 0xdd, 0xde, 0xf3, 0x0, + 0x0, 0xbb, 0x44, 0x44, 0x44, 0x46, 0xf3, 0x0, + 0x0, 0xca, 0x0, 0x0, 0x0, 0x3, 0xf4, 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xe0, 0x1e, 0x20, 0x6, 0xc0, @@ -10323,6 +10506,29 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BED "语" */ + 0x0, 0x10, 0x0, 0x22, 0x11, 0x11, 0x11, 0x12, + 0x0, 0x0, 0xda, 0x0, 0xce, 0xee, 0xff, 0xee, + 0xee, 0x50, 0x0, 0x4f, 0x70, 0x0, 0x0, 0xf5, + 0x0, 0x0, 0x0, 0x0, 0x7, 0x60, 0x2, 0x24, + 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xff, 0xff, 0xff, 0xf6, 0x0, 0x12, 0x22, 0x10, + 0x0, 0xb, 0xb0, 0x2, 0xf4, 0x0, 0x8f, 0xff, + 0x70, 0x0, 0xe, 0x80, 0x5, 0xf2, 0x0, 0x1, + 0xe, 0x71, 0x32, 0x3f, 0x72, 0x28, 0xf4, 0x30, + 0x0, 0xe, 0x64, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xe2, 0x0, 0xe, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0x60, 0x7, 0xdd, 0xdd, + 0xdd, 0xd8, 0x0, 0x0, 0xe, 0x6b, 0x18, 0xe5, + 0x55, 0x55, 0xd8, 0x0, 0x0, 0xe, 0xdf, 0x47, + 0xd0, 0x0, 0x0, 0xd8, 0x0, 0x0, 0xf, 0xf8, + 0x7, 0xd0, 0x0, 0x0, 0xd8, 0x0, 0x0, 0x3f, + 0xb0, 0x7, 0xe3, 0x33, 0x33, 0xd8, 0x0, 0x0, + 0x7e, 0x10, 0x8, 0xfe, 0xee, 0xee, 0xf8, 0x0, + 0x0, 0x2, 0x0, 0x8, 0xd0, 0x0, 0x0, 0xd9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+8BF7 "请" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x29, 0x10, 0x0, 0x0, 0x0, 0x98, 0x0, 0x12, 0x11, 0x4f, 0x41, @@ -13091,134 +13297,134 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 28769, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 28922, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 29067, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29220, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 29382, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29527, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29672, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29220, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29373, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 29535, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29680, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 29825, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 29978, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 30140, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 30302, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30447, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 30609, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 30762, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 30933, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 31069, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31222, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 31366, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31519, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 31655, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 31800, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 31962, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32115, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32268, .adv_w = 288, .box_w = 15, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 32396, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32549, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 32702, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32847, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 32992, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 33145, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33290, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33435, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33580, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 33733, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 33886, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34031, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 34193, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 34355, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34508, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 34644, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 34780, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 34925, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35070, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35214, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35359, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 35495, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35631, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35776, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 35912, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 36048, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 36192, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 36345, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36481, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36634, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36779, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 36932, .adv_w = 288, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 37045, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 37189, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 37325, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37478, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37631, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 37775, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37928, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38073, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38226, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38379, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 38541, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 38694, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 38838, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38983, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39136, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39289, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39434, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 39579, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 39715, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39860, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 40022, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 40167, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40320, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 40456, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 40592, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 40763, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 40925, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 41087, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 41240, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41393, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 29978, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30131, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30284, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 30446, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 30608, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 30753, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 30915, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31068, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 31239, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 31375, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31528, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 31672, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 31825, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 31961, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32106, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 32268, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32421, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32574, .adv_w = 288, .box_w = 15, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 32702, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 32855, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 33008, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33153, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33298, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 33451, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33596, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33741, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 33886, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 34039, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34192, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34337, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 34499, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 34661, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34814, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 34950, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 35086, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 35231, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35376, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35520, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35665, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 35801, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35937, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36082, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 36218, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 36354, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 36498, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 36651, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36787, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36940, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37085, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 37238, .adv_w = 288, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 37351, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 37495, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 37631, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37784, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37937, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 38081, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38234, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38379, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38532, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38685, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 38847, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 39000, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 39144, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39289, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39442, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39595, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39740, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 39885, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 40021, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40166, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 40328, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 40473, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40626, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 40762, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 40898, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 41069, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 41231, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 41393, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 41546, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41699, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 41861, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 41997, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42142, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 42286, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42439, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 42592, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 42736, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42881, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 43009, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43154, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 43290, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 43426, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 43562, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 43724, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43877, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 44039, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 44201, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44346, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44499, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 44644, .adv_w = 288, .box_w = 15, .box_h = 17, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 44772, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44916, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 45078, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 45231, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 45393, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45538, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45691, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 45844, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45997, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 46159, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 46321, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 46466, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46611, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 46756, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46901, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 47046, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47199, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47352, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 47505, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 47658, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 47820, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47973, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 48126, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 41699, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 41852, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42005, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 42167, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 42303, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42448, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 42592, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42745, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 42898, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 43042, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43187, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 43315, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43460, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 43596, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 43732, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 43868, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 44030, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44183, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 44345, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 44507, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44652, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44805, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 44950, .adv_w = 288, .box_w = 15, .box_h = 17, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 45078, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45222, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 45384, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45537, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 45690, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 45852, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45997, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46150, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 46303, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46456, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 46618, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 46780, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 46925, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47070, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 47215, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47360, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 47505, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47658, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47811, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 47964, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 48117, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 48279, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 48432, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 48585, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, @@ -13226,257 +13432,267 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 48891, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 49044, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 49197, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49350, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 49512, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 49665, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 49827, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49980, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 50116, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 50269, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 50431, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 50593, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50738, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50891, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51044, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51197, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 51359, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 51487, .adv_w = 288, .box_w = 13, .box_h = 17, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 51598, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 51743, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51879, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 52015, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 52160, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 52296, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 52449, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 52594, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 52747, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 52892, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 53054, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 53216, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 53361, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 53506, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 53651, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 53804, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 53966, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 54119, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 54272, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 54434, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 54587, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 54749, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 54911, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 55073, .adv_w = 288, .box_w = 16, .box_h = 15, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 55193, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 55346, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 55508, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 55636, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 55789, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 55951, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 56096, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56249, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 56402, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 56555, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 56708, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56853, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 57015, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 57168, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 57330, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 57483, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 57645, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 57807, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 57960, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 58105, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58258, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58411, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 58573, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58726, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58879, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 59023, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 59176, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 59329, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 59465, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 59593, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 59738, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 59866, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 60028, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 60164, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 60300, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 60453, .adv_w = 288, .box_w = 14, .box_h = 16, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 60565, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 60709, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 60862, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 61024, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 61169, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 61331, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 61467, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 61612, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 61748, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 61901, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 62045, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 62190, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 62343, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 62496, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 62649, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 62785, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 62947, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 63109, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 63271, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 63424, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 63569, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 63714, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 63850, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 64012, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 64157, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 64310, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 64472, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 64634, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 64796, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 64949, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 65077, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 65205, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 65350, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 65478, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 65631, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 65775, .adv_w = 288, .box_w = 14, .box_h = 17, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 65894, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 66039, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 66184, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 66329, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 66482, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 66644, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 66797, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 66950, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 67103, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 67256, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 67392, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 67545, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 67716, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 67878, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 68040, .adv_w = 288, .box_w = 15, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 68183, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 68345, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 68498, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 68643, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 68796, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 68949, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 69102, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 69264, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 69417, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 69579, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 69741, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 69903, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 70048, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 70201, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 70346, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 70499, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 70652, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 70805, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 70958, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 71120, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 71273, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 71426, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 71579, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 71741, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 71903, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 72056, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 72218, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 72363, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 72525, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 72678, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 72840, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 73002, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 73164, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 73317, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 73479, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 73641, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 73803, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 73956, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 74101, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 74263, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 74408, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 74544, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 74689, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 74842, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 75004, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 75166, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 75302, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 75446, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 75590, .adv_w = 288, .box_w = 16, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 75742, .adv_w = 288, .box_w = 17, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 75904, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 76057, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 76201, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 76329, .adv_w = 288, .box_w = 16, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 76481, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 76609, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 76762, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 76898, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 77043, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 77196, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 77340, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 77502, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 77655, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 77800, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 77962, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 78115, .adv_w = 288, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 78296, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 78422, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 78575, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 78701, .adv_w = 198, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 78786, .adv_w = 288, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 78957, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 79128, .adv_w = 324, .box_w = 21, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 79307, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 79478, .adv_w = 324, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 79625, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 79796, .adv_w = 144, .box_w = 9, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 79864, .adv_w = 216, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 79969, .adv_w = 324, .box_w = 21, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 80158, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 80284, .adv_w = 198, .box_w = 13, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 80408, .adv_w = 252, .box_w = 12, .box_h = 17, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 80510, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 80662, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 80798, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 80934, .adv_w = 252, .box_w = 12, .box_h = 17, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 81036, .adv_w = 252, .box_w = 18, .box_h = 17, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 81189, .adv_w = 180, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 81277, .adv_w = 180, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 81365, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 81501, .adv_w = 252, .box_w = 16, .box_h = 4, .ofs_x = 0, .ofs_y = 5}, - {.bitmap_index = 81533, .adv_w = 324, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 81680, .adv_w = 360, .box_w = 23, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 81899, .adv_w = 324, .box_w = 22, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 82108, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 82261, .adv_w = 252, .box_w = 16, .box_h = 10, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 82341, .adv_w = 252, .box_w = 16, .box_h = 10, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 82421, .adv_w = 360, .box_w = 24, .box_h = 15, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 82601, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 82727, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 82898, .adv_w = 288, .box_w = 19, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 83079, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 83215, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 83367, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 83503, .adv_w = 252, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 83623, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 83749, .adv_w = 180, .box_w = 13, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 83873, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 84025, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 84177, .adv_w = 324, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 84324, .adv_w = 288, .box_w = 20, .box_h = 20, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 84524, .adv_w = 216, .box_w = 14, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 84657, .adv_w = 360, .box_w = 23, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 84864, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 85002, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 85140, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 85278, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 85416, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 85554, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 85727, .adv_w = 252, .box_w = 14, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 85860, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 86012, .adv_w = 288, .box_w = 19, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 86193, .adv_w = 360, .box_w = 23, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 86354, .adv_w = 216, .box_w = 14, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 86487, .adv_w = 290, .box_w = 19, .box_h = 12, .ofs_x = 0, .ofs_y = 1} + {.bitmap_index = 49350, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49503, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49656, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49809, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 49971, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 50124, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 50286, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 50439, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 50575, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 50728, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 50890, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 51052, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51197, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51350, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51503, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51656, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 51818, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 51946, .adv_w = 288, .box_w = 13, .box_h = 17, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 52057, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 52202, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 52338, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 52474, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 52619, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 52755, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 52908, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 53053, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 53206, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 53351, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 53513, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 53675, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 53820, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 53965, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 54110, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 54263, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 54425, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 54578, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 54731, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 54893, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 55046, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 55208, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 55370, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 55532, .adv_w = 288, .box_w = 16, .box_h = 15, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 55652, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 55805, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 55967, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 56095, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56248, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 56410, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 56555, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56708, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 56861, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 57014, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 57167, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 57312, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 57474, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 57627, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 57789, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 57942, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58104, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 58266, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58419, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 58564, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58717, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58870, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 59032, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 59160, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59313, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59466, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59610, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 59763, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59907, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 60060, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 60196, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 60324, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 60469, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 60597, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 60759, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 60895, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 61031, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 61184, .adv_w = 288, .box_w = 14, .box_h = 16, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 61296, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 61440, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 61593, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 61755, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 61900, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 62062, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 62198, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 62343, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 62479, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 62632, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 62776, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 62921, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 63074, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 63227, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 63380, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 63516, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 63678, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 63840, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 64002, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 64155, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 64308, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 64453, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 64598, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 64734, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 64896, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 65041, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 65194, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 65356, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 65518, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 65680, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 65833, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 65961, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 66089, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 66234, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 66362, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 66515, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 66659, .adv_w = 288, .box_w = 14, .box_h = 17, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 66778, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 66923, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 67068, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 67204, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 67349, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 67502, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 67664, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 67817, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 67970, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 68123, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 68276, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 68412, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 68548, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 68701, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 68872, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 69034, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 69196, .adv_w = 288, .box_w = 15, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 69339, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 69475, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 69637, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 69790, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 69935, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 70088, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 70241, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 70394, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 70556, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 70709, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 70871, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 71033, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 71195, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 71357, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 71502, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 71655, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 71800, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 71953, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 72106, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 72259, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 72412, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 72574, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 72727, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 72880, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 73033, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 73195, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 73357, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 73510, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 73672, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 73817, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 73979, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 74132, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 74294, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 74456, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 74618, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 74771, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 74933, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 75095, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 75257, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 75410, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 75555, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 75717, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 75862, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 75998, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 76143, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 76296, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 76458, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 76620, .adv_w = 288, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 76756, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 76900, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77044, .adv_w = 288, .box_w = 16, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77196, .adv_w = 288, .box_w = 17, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77358, .adv_w = 288, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77511, .adv_w = 288, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77655, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 77783, .adv_w = 288, .box_w = 16, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77935, .adv_w = 288, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 78063, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 78216, .adv_w = 288, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 78352, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 78497, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 78650, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 78794, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 78956, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 79109, .adv_w = 288, .box_w = 17, .box_h = 17, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 79254, .adv_w = 288, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 79416, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 79569, .adv_w = 288, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 79750, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 79876, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 80029, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 80155, .adv_w = 198, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 80240, .adv_w = 288, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 80411, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 80582, .adv_w = 324, .box_w = 21, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 80761, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 80932, .adv_w = 324, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 81079, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 81250, .adv_w = 144, .box_w = 9, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 81318, .adv_w = 216, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 81423, .adv_w = 324, .box_w = 21, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 81612, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 81738, .adv_w = 198, .box_w = 13, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 81862, .adv_w = 252, .box_w = 12, .box_h = 17, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 81964, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 82116, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 82252, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 82388, .adv_w = 252, .box_w = 12, .box_h = 17, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 82490, .adv_w = 252, .box_w = 18, .box_h = 17, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 82643, .adv_w = 180, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 82731, .adv_w = 180, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 82819, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 82955, .adv_w = 252, .box_w = 16, .box_h = 4, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 82987, .adv_w = 324, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 83134, .adv_w = 360, .box_w = 23, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 83353, .adv_w = 324, .box_w = 22, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 83562, .adv_w = 288, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 83715, .adv_w = 252, .box_w = 16, .box_h = 10, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 83795, .adv_w = 252, .box_w = 16, .box_h = 10, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 83875, .adv_w = 360, .box_w = 24, .box_h = 15, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 84055, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 84181, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 84352, .adv_w = 288, .box_w = 19, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 84533, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 84669, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 84821, .adv_w = 252, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 84957, .adv_w = 252, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 85077, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 85203, .adv_w = 180, .box_w = 13, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 85327, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 85479, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 85631, .adv_w = 324, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 85778, .adv_w = 288, .box_w = 20, .box_h = 20, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 85978, .adv_w = 216, .box_w = 14, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 86111, .adv_w = 360, .box_w = 23, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 86318, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 86456, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 86594, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 86732, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 86870, .adv_w = 360, .box_w = 23, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 87008, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 87181, .adv_w = 252, .box_w = 14, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 87314, .adv_w = 252, .box_w = 16, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 87466, .adv_w = 288, .box_w = 19, .box_h = 19, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 87647, .adv_w = 360, .box_w = 23, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 87808, .adv_w = 216, .box_w = 14, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 87941, .adv_w = 290, .box_w = 19, .box_h = 12, .ofs_x = 0, .ofs_y = 1} }; /*--------------------- @@ -13497,55 +13713,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -13577,7 +13795,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -13682,7 +13900,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -13781,7 +14000,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_20.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_20.c index a1ddcdcb..dbf4ac81 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_20.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_20.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 20 px * Bpp: 4 - * Opts: --bpp 4 --size 20 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_20.c + * Opts: --bpp 4 --size 20 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_20.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -5235,6 +5235,32 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x90, 0x1d, 0xff, 0x50, 0x0, 0x8, 0xf1, 0x0, 0x0, 0x8, 0x60, 0x1, 0x87, 0x0, + /* U+4F53 "体" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7a, 0x20, 0x0, 0x7, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xce, 0x0, + 0x0, 0x7, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xf8, 0x0, 0x0, 0x7, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xf2, 0x0, 0x0, 0x7, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xe0, 0xaf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa0, 0x0, 0x5f, 0xe0, 0x33, + 0x33, 0xfe, 0xff, 0x83, 0x33, 0x20, 0x0, 0xdf, + 0xe0, 0x0, 0x4, 0xfa, 0xfa, 0xb0, 0x0, 0x0, + 0x6, 0xfb, 0xe0, 0x0, 0x9, 0xf7, 0xf6, 0xf1, + 0x0, 0x0, 0xd, 0xa7, 0xe0, 0x0, 0x2f, 0x87, + 0xf0, 0xea, 0x0, 0x0, 0x2, 0x17, 0xe0, 0x0, + 0xaf, 0x17, 0xf0, 0x6f, 0x40, 0x0, 0x0, 0x7, + 0xe0, 0x7, 0xf7, 0x7, 0xf0, 0xb, 0xf3, 0x0, + 0x0, 0x7, 0xe0, 0x6f, 0xb0, 0x7, 0xf0, 0x1, + 0xef, 0x60, 0x0, 0x7, 0xe9, 0xfd, 0x34, 0x38, + 0xf3, 0x33, 0x2d, 0xe3, 0x0, 0x7, 0xe2, 0xb1, + 0x6f, 0xff, 0xff, 0xff, 0x1, 0x30, 0x0, 0x7, + 0xe0, 0x0, 0x1, 0x17, 0xf0, 0x1, 0x0, 0x0, + 0x0, 0x7, 0xe0, 0x0, 0x0, 0x7, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xf0, 0x0, 0x0, 0x7, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, + 0x0, 0x8, 0xf0, 0x0, 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x0, 0x31, 0x0, 0x0, 0x3, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0xde, 0x0, 0x0, 0x4, @@ -5312,6 +5338,33 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x30, 0xcf, 0xf4, 0x0, 0x1f, 0x55, 0xb0, 0x0, 0x0, 0x20, 0x8, 0xc7, 0x0, + /* U+4FC4 "俄" */ + 0x0, 0x0, 0x11, 0x0, 0x0, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0x60, 0x0, 0x0, + 0xf, 0xa0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x10, + 0x26, 0xbb, 0xf, 0x80, 0x60, 0x0, 0x0, 0x1, + 0xf9, 0xd, 0xff, 0xc7, 0xe, 0x76, 0xf6, 0x0, + 0x0, 0x8, 0xf3, 0x4, 0x4f, 0x50, 0xe, 0x70, + 0xce, 0x0, 0x0, 0xe, 0xe0, 0x0, 0xf, 0x50, + 0xe, 0x70, 0x46, 0x0, 0x0, 0x8f, 0xe0, 0x24, + 0x4f, 0x73, 0x3e, 0x93, 0x34, 0x30, 0x2, 0xfe, + 0xe0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, + 0xd, 0xe8, 0xe0, 0x0, 0xf, 0x50, 0xc, 0x80, + 0x0, 0x0, 0x3, 0x47, 0xe0, 0x0, 0xf, 0x50, + 0xb, 0xa0, 0x10, 0x0, 0x0, 0x7, 0xe0, 0x0, + 0xf, 0x67, 0x19, 0xc0, 0xbc, 0x0, 0x0, 0x7, + 0xe0, 0x2, 0x7f, 0xfe, 0x27, 0xe3, 0xf8, 0x0, + 0x0, 0x7, 0xe1, 0xef, 0xff, 0x70, 0x3, 0xfd, + 0xc0, 0x0, 0x0, 0x7, 0xe0, 0x85, 0xf, 0x50, + 0x0, 0xff, 0x30, 0x0, 0x0, 0x7, 0xe0, 0x0, + 0xf, 0x50, 0x9, 0xfc, 0x0, 0x0, 0x0, 0x7, + 0xe0, 0x0, 0xf, 0x51, 0xaf, 0xaf, 0x43, 0x60, + 0x0, 0x8, 0xe0, 0x1, 0x4f, 0x4a, 0xf6, 0xc, + 0xd8, 0xf1, 0x0, 0x8, 0xf0, 0xe, 0xff, 0x21, + 0x40, 0x2, 0xff, 0xc0, 0x0, 0x8, 0xf0, 0x7, + 0x94, 0x0, 0x0, 0x0, 0x4c, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4FDD "保" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4e, 0x40, 0x44, 0x44, @@ -7914,6 +7967,31 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xf5, 0x0, 0x0, 0xba, 0x0, 0x0, 0x21, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x30, 0x0, + 0x0, 0x0, 0x0, 0xc, 0x60, 0x0, 0x0, 0xeb, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xf4, 0x56, 0x66, + 0x6f, 0xa4, 0x44, 0x55, 0x0, 0x4, 0xf8, 0xb, + 0xee, 0xee, 0xfe, 0xee, 0xee, 0xe1, 0x2, 0xfb, + 0x0, 0x0, 0x0, 0x4f, 0x30, 0x0, 0x0, 0x0, + 0xcd, 0x14, 0xc3, 0xdd, 0xde, 0xfd, 0xdd, 0xdd, + 0x40, 0x3, 0x20, 0xcc, 0x1f, 0x64, 0xf7, 0x5f, + 0x64, 0xf4, 0x0, 0x0, 0x6f, 0x31, 0xf4, 0xf, + 0x42, 0xf3, 0x1f, 0x30, 0x0, 0x1e, 0xb0, 0x1f, + 0x52, 0xf6, 0x3f, 0x43, 0xf4, 0x0, 0xc, 0xf9, + 0x2, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0xa, + 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xf6, 0xd9, 0x4, 0x65, 0x55, 0x55, 0x55, + 0x55, 0x61, 0x5, 0xd, 0x90, 0xbe, 0xdd, 0xdd, + 0xdd, 0xdd, 0xde, 0x20, 0x0, 0xd9, 0x0, 0x0, + 0x0, 0x25, 0x0, 0x0, 0x0, 0x0, 0xd, 0x90, + 0x35, 0x18, 0x2b, 0xe0, 0x0, 0x71, 0x0, 0x0, + 0xd9, 0xa, 0xd1, 0xf5, 0x2f, 0x60, 0x1f, 0xc0, + 0x0, 0xd, 0x90, 0xf7, 0xf, 0x40, 0x40, 0x55, + 0x5f, 0x70, 0x0, 0xe9, 0x4f, 0x20, 0xf9, 0x22, + 0x3c, 0xf0, 0x93, 0x0, 0xe, 0xa0, 0x10, 0x9, + 0xff, 0xff, 0xe6, 0x0, 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x0, 0x35, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0x10, @@ -10178,6 +10256,29 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x9f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x51, 0x0, + /* U+7259 "牙" */ + 0x1, 0x43, 0x33, 0x33, 0x33, 0x33, 0x33, 0x34, + 0x0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x30, 0x0, 0x11, 0x11, 0x11, 0x11, 0x2f, + 0x81, 0x12, 0x0, 0x0, 0x0, 0xb8, 0x0, 0x0, + 0xf, 0x80, 0x0, 0x0, 0x0, 0x3, 0xfa, 0x0, + 0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0xb, 0xe0, + 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x6f, + 0x60, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0x0, 0x67, 0x54, 0x44, 0x5f, 0xdf, 0xa4, 0x44, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x9f, 0x4f, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xf9, 0xf, + 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0xd0, + 0xf, 0x80, 0x0, 0x0, 0x0, 0x0, 0x4, 0xee, + 0x20, 0xf, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7f, + 0xd2, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x4c, + 0xfb, 0x10, 0x0, 0xf, 0x80, 0x0, 0x0, 0x4c, + 0xfe, 0x50, 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0, + 0x1d, 0x91, 0x0, 0x0, 0x3e, 0xff, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0x95, 0x0, + 0x0, 0x0, + /* U+72B6 "状" */ 0x0, 0x0, 0x2, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xf0, 0x0, 0x1, @@ -10280,6 +10381,32 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x1, 0xdf, 0xfd, 0x40, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5c, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0x22, 0x11, 0x12, 0x20, 0xa, 0xff, 0xff, 0xf1, + 0x0, 0x6f, 0xaf, 0xff, 0xff, 0xe0, 0x3, 0x59, + 0xf4, 0x50, 0x0, 0x6f, 0x11, 0x3f, 0x41, 0x10, + 0x0, 0x6, 0xf0, 0x0, 0x10, 0x6f, 0x0, 0x2f, + 0x40, 0x0, 0x0, 0x6, 0xf0, 0x4, 0xf2, 0x6f, + 0x0, 0x2f, 0x40, 0x0, 0x0, 0x6, 0xf0, 0x4, + 0xf1, 0x6e, 0x0, 0x2f, 0x40, 0x0, 0x0, 0x6, + 0xf0, 0x4, 0xf1, 0x6e, 0x0, 0x2f, 0x40, 0x0, + 0x6, 0xef, 0xfe, 0xd5, 0xf0, 0x7d, 0x8e, 0xef, + 0xee, 0x70, 0x3, 0x6a, 0xf6, 0x57, 0xf0, 0x8c, + 0x35, 0x6f, 0x75, 0x20, 0x0, 0x6, 0xf0, 0x2, + 0x40, 0xba, 0x0, 0x2f, 0x40, 0x0, 0x0, 0x6, + 0xf0, 0x0, 0x0, 0xe7, 0x0, 0x2f, 0x40, 0x0, + 0x0, 0x6, 0xf0, 0x0, 0x3, 0xf3, 0x0, 0x2f, + 0x40, 0x0, 0x0, 0x6, 0xf0, 0x63, 0xa, 0xe0, + 0x0, 0x2f, 0x40, 0x0, 0x0, 0x7, 0xfe, 0xf5, + 0x2f, 0x70, 0x0, 0x2f, 0x40, 0x0, 0x8, 0xdf, + 0xd7, 0x10, 0xde, 0x2, 0x54, 0x6f, 0x74, 0x51, + 0xc, 0xc4, 0x0, 0x1c, 0xf4, 0x6, 0xee, 0xee, + 0xee, 0xe3, 0x0, 0x0, 0x0, 0x1a, 0x70, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7406 "理" */ 0x0, 0x0, 0x0, 0x0, 0x12, 0x22, 0x22, 0x22, 0x22, 0x0, 0x2, 0x22, 0x22, 0x21, 0x9f, 0xff, @@ -10976,6 +11103,31 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x7f, 0xc4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xf5, 0x0, 0x0, 0xa, 0xc0, + 0x0, 0x0, 0x0, 0xd, 0xf6, 0x66, 0x61, 0x1f, + 0xa3, 0x33, 0x32, 0x0, 0x9f, 0xdf, 0xdd, 0xd2, + 0x9f, 0xff, 0xff, 0xf9, 0x8, 0xf6, 0xc, 0xb0, + 0x6, 0xf6, 0x9, 0xd0, 0x0, 0x6f, 0x60, 0x3, + 0xf3, 0x3f, 0x90, 0x3, 0xf4, 0x0, 0x3, 0x7, + 0xc0, 0x10, 0x4, 0x0, 0x0, 0x10, 0x0, 0x0, + 0x3, 0xfa, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x60, + 0x1, 0xb3, 0x7c, 0x13, 0x32, 0x22, 0x22, 0x2f, + 0x50, 0x2, 0xf4, 0x1, 0x33, 0x33, 0x33, 0x10, + 0xf, 0x50, 0x1, 0xf3, 0x6, 0xfe, 0xee, 0xef, + 0x60, 0xf, 0x50, 0x1, 0xf3, 0x5, 0xf0, 0x0, + 0xf, 0x50, 0xf, 0x50, 0x1, 0xf3, 0x5, 0xff, + 0xff, 0xff, 0x50, 0xf, 0x50, 0x1, 0xf3, 0x5, + 0xf3, 0x33, 0x3f, 0x50, 0xf, 0x50, 0x1, 0xf3, + 0x5, 0xf0, 0x0, 0xf, 0x50, 0xf, 0x50, 0x1, + 0xf3, 0x6, 0xff, 0xff, 0xff, 0x60, 0xf, 0x50, + 0x1, 0xf3, 0x1, 0x33, 0x33, 0x33, 0x10, 0xf, + 0x50, 0x2, 0xf3, 0x0, 0x0, 0x0, 0x0, 0xb, + 0xcf, 0x40, 0x2, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xe9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x0, 0x67, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0xb, 0xf0, 0x0, @@ -11471,6 +11623,29 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0x33, 0x33, 0x20, 0x0, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x1d, 0x60, 0x0, 0xb, 0xa0, 0x0, + 0x0, 0x2, 0x22, 0x3f, 0x82, 0x22, 0x2d, 0xb2, + 0x22, 0x21, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf9, 0x3, 0x33, 0x3f, 0x83, 0x33, + 0x3d, 0xc3, 0x33, 0x32, 0x0, 0x0, 0x1f, 0x60, + 0x98, 0xc, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xed, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0x66, 0x66, 0xed, 0x66, 0x66, 0x40, 0x0, 0x0, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, + 0x0, 0xe, 0x70, 0x0, 0xd9, 0x0, 0xc, 0xb0, + 0x0, 0x0, 0xe, 0x70, 0x0, 0xd8, 0x0, 0xc, + 0xb0, 0x0, 0x44, 0x3f, 0x93, 0x33, 0xe9, 0x33, + 0x3c, 0xc3, 0x42, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0x10, 0x0, 0x0, 0x9, + 0xfd, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0x71, 0xdd, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xfa, 0x0, 0x2e, 0xf5, 0x0, 0x0, 0x0, + 0x6, 0xdf, 0x90, 0x0, 0x1, 0xcf, 0xc5, 0x0, + 0x2b, 0xff, 0xc3, 0x0, 0x0, 0x0, 0x6, 0xef, + 0xf3, 0x6, 0x93, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0x60, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xf0, 0x0, 0x1f, 0x70, @@ -11675,6 +11850,30 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xff, 0xf5, 0x0, 0x0, 0x5, 0x60, 0x0, 0x0, 0x0, 0x4, 0x80, + /* U+897F "西" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf9, 0x24, 0x33, 0x33, 0x9e, 0x33, 0xe9, + 0x33, 0x33, 0x32, 0x0, 0x0, 0x0, 0x7d, 0x0, + 0xd7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7d, + 0x0, 0xd7, 0x0, 0x0, 0x0, 0x0, 0x44, 0x44, + 0xae, 0x44, 0xea, 0x44, 0x44, 0x0, 0x0, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, + 0xe8, 0x0, 0x8c, 0x0, 0xd7, 0x0, 0x6f, 0x0, + 0x0, 0xe8, 0x0, 0xba, 0x0, 0xd7, 0x0, 0x6f, + 0x0, 0x0, 0xe8, 0x0, 0xf7, 0x0, 0xd7, 0x0, + 0x6f, 0x0, 0x0, 0xe8, 0x6, 0xf2, 0x0, 0xd8, + 0x0, 0x6f, 0x0, 0x0, 0xe8, 0x2e, 0xa0, 0x0, + 0xcf, 0xde, 0x8f, 0x0, 0x0, 0xe8, 0xbe, 0x10, + 0x0, 0x3a, 0xba, 0x6f, 0x0, 0x0, 0xe8, 0x2, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0x0, 0x0, 0xe8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0x0, 0x0, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, + 0x0, 0xe9, 0x22, 0x22, 0x22, 0x22, 0x22, 0x7f, + 0x0, 0x0, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + /* U+8981 "要" */ 0x5, 0x76, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x67, 0x40, 0xa, 0xcc, 0xcc, 0xcf, 0xec, 0xce, @@ -11805,6 +12004,30 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xfd, 0x10, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x32, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xf5, 0x0, + 0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf1, 0x35, 0x44, 0x44, 0x44, + 0x44, 0x44, 0x44, 0x45, 0x50, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, + 0xee, 0xee, 0xee, 0xee, 0xef, 0xc0, 0x0, 0x0, + 0x24, 0x44, 0x44, 0x44, 0x44, 0x44, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8e, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xb0, 0x0, 0x0, 0x35, 0x44, 0x44, 0x44, 0x44, + 0x45, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5e, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xc0, 0x0, 0x0, 0x5f, 0x64, + 0x44, 0x44, 0x44, 0x4d, 0xd0, 0x0, 0x0, 0x5f, + 0x30, 0x0, 0x0, 0x0, 0xc, 0xd0, 0x0, 0x0, + 0x4f, 0x30, 0x0, 0x0, 0x0, 0xc, 0xd0, 0x0, + 0x0, 0x5f, 0xee, 0xee, 0xee, 0xee, 0xef, 0xd0, + 0x0, 0x0, 0x5f, 0x75, 0x55, 0x55, 0x55, 0x5d, + 0xd0, 0x0, 0x0, 0x5f, 0x30, 0x0, 0x0, 0x0, + 0xc, 0xe0, 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x42, 0x1, 0x50, 0x0, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe7, 0x4, 0xf0, 0x0, @@ -12063,6 +12286,33 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x2, 0xca, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BED "语" */ + 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6e, 0x10, 0x1f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x30, 0x0, 0x2f, 0xb0, 0x3, + 0x22, 0x2e, 0xb2, 0x22, 0x23, 0x0, 0x0, 0x6, + 0xf5, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x70, 0x2, 0x55, 0x5f, 0x83, 0x33, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, + 0xff, 0xff, 0xf1, 0x0, 0x13, 0x22, 0x20, 0x0, + 0x0, 0xae, 0x0, 0x9, 0xf0, 0x0, 0x4f, 0xff, + 0xf2, 0x0, 0x0, 0xdb, 0x0, 0xc, 0xe0, 0x0, + 0x1, 0x17, 0xf1, 0x12, 0x22, 0xf9, 0x22, 0x2e, + 0xc2, 0x20, 0x0, 0x6, 0xf1, 0xaf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf1, 0x0, 0x6, 0xf1, 0x11, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x6, + 0xf1, 0x0, 0x12, 0x22, 0x22, 0x22, 0x20, 0x0, + 0x0, 0x6, 0xf1, 0x10, 0xaf, 0xff, 0xff, 0xff, + 0xf5, 0x0, 0x0, 0x6, 0xf5, 0xd0, 0xae, 0x22, + 0x22, 0x25, 0xf4, 0x0, 0x0, 0x6, 0xfe, 0xe1, + 0xad, 0x0, 0x0, 0x3, 0xf4, 0x0, 0x0, 0x7, + 0xff, 0x20, 0xad, 0x0, 0x0, 0x3, 0xf4, 0x0, + 0x0, 0xc, 0xf4, 0x0, 0xae, 0x44, 0x44, 0x47, + 0xf4, 0x0, 0x0, 0x2e, 0x90, 0x0, 0xaf, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x1, 0x0, 0x0, + 0xad, 0x0, 0x0, 0x3, 0xf5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BF7 "请" */ 0x0, 0x11, 0x0, 0x0, 0x0, 0x3, 0xf5, 0x0, 0x0, 0x0, 0xa, 0xe2, 0x0, 0x55, 0x55, 0x7f, @@ -15277,392 +15527,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 34023, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 34223, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 34413, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34603, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 34803, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 34984, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35165, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35355, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 35536, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 35736, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 35926, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 36116, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 34603, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 34793, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 34993, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35174, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35355, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 35555, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35745, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 35926, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 36126, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 36316, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 36506, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 36706, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 36868, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37048, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 37228, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 37418, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 37589, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 37770, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 37960, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 38160, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38341, .adv_w = 320, .box_w = 16, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 38493, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 38683, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 38873, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39044, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 39206, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 39396, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 39577, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 39758, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 39939, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 40129, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 40319, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 40499, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 40689, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 40889, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41069, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 41240, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 41411, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41592, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 41773, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 41944, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 42125, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 42296, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 42458, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42639, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 42810, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 42981, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 43161, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 43342, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43513, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43703, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43874, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 44055, .adv_w = 320, .box_w = 16, .box_h = 18, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 44199, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 44370, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 44541, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44722, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44912, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 45092, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45272, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 45443, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 45643, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36706, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 36896, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 37096, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 37258, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37438, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 37618, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 37808, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 37979, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 38160, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 38350, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 38550, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 38731, .adv_w = 320, .box_w = 16, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 38883, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39073, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 39263, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 39434, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 39596, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 39786, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 39967, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40148, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 40329, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 40519, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 40709, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 40889, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 41079, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 41279, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 41459, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 41630, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 41801, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 41982, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 42163, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 42334, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 42515, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 42686, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 42848, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43029, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 43200, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 43371, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 43551, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 43732, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43903, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44093, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44264, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 44445, .adv_w = 320, .box_w = 16, .box_h = 18, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 44589, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 44760, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 44931, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45112, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45302, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 45482, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45662, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 45833, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 46033, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 46223, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 46403, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46584, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46764, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46954, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 47125, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 47315, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 47486, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47667, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 47857, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 48037, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 48218, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 48389, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 48560, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 48750, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 48940, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 49140, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 49330, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49520, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 49710, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 49891, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 50091, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 50262, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 50433, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 50613, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50803, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 50984, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 51155, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51336, .adv_w = 320, .box_w = 17, .box_h = 18, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 51489, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51670, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 51841, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 52012, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 52174, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 52364, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 52564, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 52764, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 52964, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 53126, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 53307, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 53478, .adv_w = 320, .box_w = 16, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 53630, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 53811, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 54001, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 54191, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 46033, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46223, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 46423, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 46613, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 46793, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46974, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47154, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47344, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 47515, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 47705, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 47876, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 48057, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 48247, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 48427, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 48608, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 48779, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 48950, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 49140, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 49330, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 49530, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 49720, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49910, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 50100, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 50281, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 50481, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 50652, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 50823, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 51003, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51193, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 51374, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 51545, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51726, .adv_w = 320, .box_w = 17, .box_h = 18, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 51879, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 52060, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 52231, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 52402, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 52564, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 52754, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 52954, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 53154, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 53354, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 53516, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 53697, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 53868, .adv_w = 320, .box_w = 16, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 54020, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 54201, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 54391, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 54572, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 54753, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 54924, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 55114, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 55314, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 55514, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 55694, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 55884, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 56055, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 56245, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 56416, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56606, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 56806, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 56996, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 57186, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 57386, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 57586, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 57776, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 57966, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 58166, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58347, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 58547, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58737, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58927, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 59127, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 59317, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 59517, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 59707, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 59907, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 60097, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 60259, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 60449, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 60649, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 60849, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 61030, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 61220, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 61400, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 61590, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 61780, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 61951, .adv_w = 320, .box_w = 14, .box_h = 18, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 62077, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 62258, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 62429, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 62600, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 62771, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 62942, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 63132, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 63303, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 63493, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 63674, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 63864, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 64064, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 64226, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 64407, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 64578, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 64768, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 64968, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 65149, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 65339, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 65520, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 65710, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 65910, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 66100, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 66290, .adv_w = 320, .box_w = 18, .box_h = 16, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 66434, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 66605, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 66795, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 66957, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 67128, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 67318, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 67489, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 67660, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 67850, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 68021, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 68221, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 68402, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 68602, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 68792, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 68982, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 69172, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 69372, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 69562, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 69743, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 69905, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 70105, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 70295, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 70476, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 70666, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 70847, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 71027, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 71217, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 71407, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 71578, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 71740, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 71911, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 72073, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 72263, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 72434, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 72605, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 72795, .adv_w = 320, .box_w = 14, .box_h = 18, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 72921, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 73092, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 73282, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 73472, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 73643, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 73843, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 74014, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 74195, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 74366, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 74547, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 74727, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 74908, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 75108, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 75298, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 75488, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 75659, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 75859, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 76049, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 76249, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 76430, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 76610, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 76781, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 76943, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 77143, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 77314, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 77514, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 77714, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 77914, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 78114, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 78304, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 78466, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 78628, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 78799, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 78961, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 79151, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 79341, .adv_w = 320, .box_w = 14, .box_h = 19, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 79474, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 79655, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 79826, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 79997, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 80187, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 80387, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 80577, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 80767, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 80948, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 81138, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 81309, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 81489, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 81689, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 81889, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 82089, .adv_w = 320, .box_w = 17, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 82259, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 82449, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 82629, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 82819, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 83019, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 83190, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 83380, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 83560, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 83750, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 83950, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 84140, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 84321, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 84502, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 84692, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 84873, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 85063, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 85243, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 85433, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 85623, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 85813, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 86003, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 86193, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 86383, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 86583, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 86773, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 86954, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 87154, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 87335, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 87535, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 87725, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 87925, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 88125, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 88325, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 88505, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 88695, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 88895, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 89095, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 89285, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 89466, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 89656, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 89818, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 89980, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 90151, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 90351, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 90551, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 90751, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 90922, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 91102, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 91282, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 91462, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 91652, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 91842, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 92022, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 92184, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 92364, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 92535, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 92725, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 92906, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 93087, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 93287, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 93477, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 93667, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 93867, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 94029, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 94229, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 94410, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 94620, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 94770, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 94960, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 95110, .adv_w = 220, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 95215, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 95425, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 95635, .adv_w = 360, .box_w = 23, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 95854, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 96064, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 96237, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 96447, .adv_w = 160, .box_w = 10, .box_h = 16, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 96527, .adv_w = 240, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 96647, .adv_w = 360, .box_w = 23, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 96866, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 97016, .adv_w = 220, .box_w = 14, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 97163, .adv_w = 280, .box_w = 13, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 97287, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 97476, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 97647, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 97818, .adv_w = 280, .box_w = 13, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 97942, .adv_w = 280, .box_w = 19, .box_h = 19, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 98123, .adv_w = 200, .box_w = 11, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 98228, .adv_w = 200, .box_w = 11, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 98333, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 98504, .adv_w = 280, .box_w = 18, .box_h = 5, .ofs_x = 0, .ofs_y = 5}, - {.bitmap_index = 98549, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 98722, .adv_w = 400, .box_w = 26, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 98995, .adv_w = 360, .box_w = 24, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 99247, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 99437, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 99536, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 99635, .adv_w = 400, .box_w = 26, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 99843, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 99993, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 100203, .adv_w = 320, .box_w = 21, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 100424, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 100595, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 100784, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 100955, .adv_w = 280, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 101108, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 101258, .adv_w = 200, .box_w = 14, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 101405, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 101594, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 101783, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 101956, .adv_w = 320, .box_w = 22, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 102187, .adv_w = 240, .box_w = 15, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 102345, .adv_w = 400, .box_w = 25, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 102583, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 102746, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 102909, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 103072, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 103235, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 103398, .adv_w = 400, .box_w = 26, .box_h = 17, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 103619, .adv_w = 280, .box_w = 16, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 103787, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 103976, .adv_w = 320, .box_w = 21, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 104197, .adv_w = 400, .box_w = 25, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 104385, .adv_w = 240, .box_w = 15, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 104543, .adv_w = 322, .box_w = 21, .box_h = 13, .ofs_x = 0, .ofs_y = 1} + {.bitmap_index = 54572, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 54762, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 54962, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 55143, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 55324, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 55495, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 55685, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 55885, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 56085, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 56265, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 56455, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 56626, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 56816, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 56987, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 57177, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 57377, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 57567, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 57757, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 57957, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 58157, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58347, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58537, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 58737, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 58918, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 59118, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59308, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59498, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 59698, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59888, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 60088, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 60278, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 60478, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 60668, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 60830, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 61020, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 61220, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 61420, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 61601, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 61791, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 61971, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 62161, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 62351, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 62522, .adv_w = 320, .box_w = 14, .box_h = 18, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 62648, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 62829, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 63000, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 63171, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 63342, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 63513, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 63703, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 63874, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 64064, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 64245, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 64435, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 64635, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 64797, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 64978, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 65149, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 65339, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 65539, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 65720, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 65910, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 66091, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 66281, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 66481, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 66671, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 66861, .adv_w = 320, .box_w = 18, .box_h = 16, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 67005, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 67176, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 67366, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 67528, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 67699, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 67889, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 68060, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 68231, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 68421, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 68592, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 68792, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 68973, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 69173, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 69363, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 69553, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 69743, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 69943, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 70133, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 70314, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 70476, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 70676, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 70866, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 71047, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 71209, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 71399, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 71580, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 71760, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 71950, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 72140, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 72330, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 72501, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 72663, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 72834, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 72996, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 73186, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 73357, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 73528, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 73718, .adv_w = 320, .box_w = 14, .box_h = 18, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 73844, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 74015, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 74205, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 74395, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 74566, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 74766, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 74937, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 75118, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 75289, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 75470, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 75650, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 75831, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 76031, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 76221, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 76411, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 76582, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 76782, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 76972, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 77172, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77352, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 77533, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77713, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77884, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 78046, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 78246, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 78417, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 78617, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 78817, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 79017, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 79217, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 79407, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 79569, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 79731, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 79902, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 80064, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 80254, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 80444, .adv_w = 320, .box_w = 14, .box_h = 19, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 80577, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 80758, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 80929, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 81091, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 81262, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 81452, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 81652, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 81842, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 82032, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 82213, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 82403, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 82574, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 82745, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 82925, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 83125, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 83325, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 83525, .adv_w = 320, .box_w = 17, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 83695, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 83866, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 84056, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 84236, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 84426, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 84626, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 84797, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 84987, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 85167, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 85357, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 85557, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 85747, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 85947, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 86128, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 86309, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 86499, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 86680, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 86870, .adv_w = 320, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 87050, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 87240, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 87430, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 87620, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 87810, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 88000, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 88190, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 88390, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 88580, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 88761, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 88961, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 89142, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 89342, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 89532, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 89732, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 89932, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 90132, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 90312, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 90502, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 90702, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 90902, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 91092, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 91273, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 91463, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 91625, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 91787, .adv_w = 320, .box_w = 19, .box_h = 18, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 91958, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 92158, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 92358, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 92558, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 92729, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 92909, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 93089, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 93269, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 93459, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 93649, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 93829, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 93991, .adv_w = 320, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 94171, .adv_w = 320, .box_w = 18, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 94342, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 94532, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 94713, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 94894, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 95094, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 95284, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 95474, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 95674, .adv_w = 320, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 95836, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 96036, .adv_w = 320, .box_w = 19, .box_h = 19, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 96217, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 96427, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 96577, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 96767, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 96917, .adv_w = 220, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 97022, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 97232, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 97442, .adv_w = 360, .box_w = 23, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 97661, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 97871, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 98044, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 98254, .adv_w = 160, .box_w = 10, .box_h = 16, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 98334, .adv_w = 240, .box_w = 15, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 98454, .adv_w = 360, .box_w = 23, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 98673, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 98823, .adv_w = 220, .box_w = 14, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 98970, .adv_w = 280, .box_w = 13, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 99094, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 99283, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 99454, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 99625, .adv_w = 280, .box_w = 13, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 99749, .adv_w = 280, .box_w = 19, .box_h = 19, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 99930, .adv_w = 200, .box_w = 11, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 100035, .adv_w = 200, .box_w = 11, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 100140, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 100311, .adv_w = 280, .box_w = 18, .box_h = 5, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 100356, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 100529, .adv_w = 400, .box_w = 26, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 100802, .adv_w = 360, .box_w = 24, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 101054, .adv_w = 320, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 101244, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 101343, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 101442, .adv_w = 400, .box_w = 26, .box_h = 16, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 101650, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 101800, .adv_w = 320, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 102010, .adv_w = 320, .box_w = 21, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 102231, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 102402, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 102591, .adv_w = 280, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 102762, .adv_w = 280, .box_w = 18, .box_h = 17, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 102915, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 103065, .adv_w = 200, .box_w = 14, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 103212, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 103401, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 103590, .adv_w = 360, .box_w = 23, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 103763, .adv_w = 320, .box_w = 22, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 103994, .adv_w = 240, .box_w = 15, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 104152, .adv_w = 400, .box_w = 25, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 104390, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 104553, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 104716, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 104879, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 105042, .adv_w = 400, .box_w = 25, .box_h = 13, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 105205, .adv_w = 400, .box_w = 26, .box_h = 17, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 105426, .adv_w = 280, .box_w = 16, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 105594, .adv_w = 280, .box_w = 18, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 105783, .adv_w = 320, .box_w = 21, .box_h = 21, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 106004, .adv_w = 400, .box_w = 25, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 106192, .adv_w = 240, .box_w = 15, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 106350, .adv_w = 322, .box_w = 21, .box_h = 13, .ofs_x = 0, .ofs_y = 1} }; /*--------------------- @@ -15683,55 +15943,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -15763,7 +16025,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -15868,7 +16130,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -15967,7 +16230,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_22.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_22.c index b34b6a64..b37e3bbc 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_22.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_22.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 22 px * Bpp: 4 - * Opts: --bpp 4 --size 22 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_22.c + * Opts: --bpp 4 --size 22 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_22.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -6077,6 +6077,36 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x30, 0x2e, 0xff, 0x60, 0x0, 0x1, 0xfb, 0x0, 0x0, 0x0, 0x2b, 0x10, 0x2, 0x98, 0x0, + /* U+4F53 "体" */ + 0x0, 0x0, 0x35, 0x0, 0x0, 0x0, 0x69, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0x70, 0x0, + 0x0, 0xaf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0x10, 0x0, 0x0, 0xaf, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xf9, 0x0, 0x0, 0x0, 0xae, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xf4, 0x14, + 0x33, 0x33, 0xbf, 0x33, 0x33, 0x34, 0x10, 0x0, + 0xe, 0xf1, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x30, 0x0, 0x6f, 0xf1, 0x12, 0x22, 0x6f, + 0xef, 0xf9, 0x22, 0x23, 0x0, 0x0, 0xef, 0xf1, + 0x0, 0x0, 0x9f, 0xae, 0xbd, 0x0, 0x0, 0x0, + 0x8, 0xfc, 0xf1, 0x0, 0x0, 0xec, 0xae, 0x6f, + 0x30, 0x0, 0x0, 0x2f, 0xb7, 0xf1, 0x0, 0x6, + 0xf5, 0xae, 0xe, 0xb0, 0x0, 0x0, 0x8, 0x27, + 0xf1, 0x0, 0xe, 0xe0, 0xae, 0x7, 0xf5, 0x0, + 0x0, 0x0, 0x7, 0xf1, 0x0, 0xaf, 0x60, 0xae, + 0x0, 0xdf, 0x30, 0x0, 0x0, 0x7, 0xf1, 0x7, + 0xfb, 0x0, 0xae, 0x0, 0x3f, 0xe3, 0x0, 0x0, + 0x7, 0xf1, 0x9f, 0xe1, 0x0, 0xae, 0x0, 0x5, + 0xff, 0x80, 0x0, 0x7, 0xf8, 0xfe, 0x28, 0x88, + 0xdf, 0x88, 0x81, 0x4f, 0x60, 0x0, 0x7, 0xf1, + 0x71, 0xd, 0xee, 0xff, 0xdd, 0xe2, 0x1, 0x0, + 0x0, 0x7, 0xf1, 0x0, 0x0, 0x0, 0xae, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xf1, 0x0, 0x0, + 0x0, 0xaf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, + 0xf1, 0x0, 0x0, 0x0, 0xaf, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xe2, 0x0, 0x0, 0x0, 0xbf, + 0x0, 0x0, 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x71, 0x0, 0x0, @@ -6166,6 +6196,36 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0xeb, 0x1a, 0x60, 0x0, 0x0, 0x30, 0x1, 0xea, 0x30, + /* U+4FC4 "俄" */ + 0x0, 0x0, 0xa9, 0x20, 0x0, 0x0, 0x7, 0xa3, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xf1, 0x0, 0x2, + 0x60, 0x8f, 0x30, 0x0, 0x0, 0x0, 0x4, 0xf9, + 0x16, 0x9d, 0xff, 0x47, 0xf1, 0x7c, 0x0, 0x0, + 0x0, 0xaf, 0x20, 0xef, 0xfa, 0x20, 0x7f, 0x18, + 0xf8, 0x0, 0x0, 0x2f, 0xc0, 0x1, 0xf, 0x70, + 0x7, 0xf1, 0xe, 0xf0, 0x0, 0x9, 0xf9, 0x0, + 0x0, 0xf7, 0x0, 0x6f, 0x10, 0x42, 0x0, 0x2, + 0xff, 0x90, 0x44, 0x4f, 0x94, 0x48, 0xf5, 0x44, + 0x43, 0x0, 0xce, 0xf9, 0xd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb0, 0x8f, 0x7f, 0x90, 0x22, + 0x1f, 0x81, 0x16, 0xf3, 0x11, 0x22, 0x2, 0xb0, + 0xf9, 0x0, 0x0, 0xf7, 0x0, 0x4f, 0x30, 0x0, + 0x0, 0x0, 0xf, 0x90, 0x0, 0xf, 0x71, 0x32, + 0xf5, 0xb, 0x70, 0x0, 0x0, 0xf9, 0x0, 0x1, + 0xfe, 0xf8, 0xf, 0x83, 0xfa, 0x0, 0x0, 0xf, + 0x93, 0x9d, 0xff, 0xd6, 0x10, 0xdb, 0xce, 0x10, + 0x0, 0x0, 0xf9, 0x2f, 0xd7, 0xf7, 0x0, 0x9, + 0xff, 0x40, 0x0, 0x0, 0xf, 0x90, 0x30, 0xf, + 0x70, 0x0, 0x9f, 0xa0, 0x0, 0x0, 0x0, 0xf9, + 0x0, 0x0, 0xf7, 0x0, 0x7f, 0xfa, 0x0, 0x0, + 0x0, 0xf, 0x90, 0x0, 0xf, 0x71, 0xbf, 0xa9, + 0xf3, 0x6b, 0x10, 0x0, 0xf9, 0x0, 0x36, 0xf7, + 0x4f, 0x90, 0x1e, 0xca, 0xf1, 0x0, 0xf, 0x90, + 0xf, 0xff, 0x40, 0x30, 0x0, 0x4f, 0xfb, 0x0, + 0x0, 0xfa, 0x0, 0x78, 0x40, 0x0, 0x0, 0x0, + 0x6d, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4FDD "保" */ 0x0, 0x0, 0x9, 0x71, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe1, 0xe, @@ -9196,6 +9256,36 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x1f, 0x70, 0x0, 0x1, 0x20, 0x0, 0x0, 0x2, 0x10, 0x0, 0x0, 0x0, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0, + 0x8, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0x40, 0x0, 0x0, 0x9f, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x7f, 0x80, 0xef, 0xff, 0xff, 0xfd, 0xdd, + 0xde, 0xe2, 0x0, 0x3f, 0xc0, 0x7, 0x76, 0x66, + 0xfd, 0x66, 0x66, 0x77, 0x10, 0x2e, 0xe1, 0x10, + 0x0, 0x0, 0xf, 0x90, 0x0, 0x0, 0x0, 0xa, + 0xf4, 0xc, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0x0, 0x15, 0x4, 0xf8, 0x2f, 0x74, 0xdc, + 0x4b, 0xe4, 0x7f, 0x30, 0x0, 0x0, 0xed, 0x2, + 0xf5, 0xc, 0xa0, 0x9d, 0x4, 0xf3, 0x0, 0x0, + 0x9f, 0x40, 0x2f, 0x50, 0xca, 0x9, 0xd0, 0x4f, + 0x30, 0x0, 0x6f, 0xf1, 0x3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x5f, 0xff, 0x10, 0x15, + 0x55, 0x55, 0x55, 0x55, 0x55, 0x10, 0x1f, 0xe8, + 0xf1, 0x2, 0x22, 0x11, 0x11, 0x11, 0x12, 0x22, + 0x0, 0x83, 0x7f, 0x10, 0xef, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x0, 0x7, 0xf1, 0x3, 0x33, + 0x33, 0x35, 0x33, 0x33, 0x33, 0x0, 0x0, 0x7f, + 0x10, 0x0, 0x0, 0x4, 0xf3, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xf1, 0x9, 0xc0, 0xf9, 0x2f, 0xc0, + 0x2, 0xd4, 0x0, 0x0, 0x7f, 0x10, 0xec, 0xf, + 0x90, 0x8d, 0x10, 0x1e, 0xe1, 0x0, 0x7, 0xf1, + 0x4f, 0x60, 0xe9, 0x0, 0x0, 0xb7, 0x4f, 0xa0, + 0x0, 0x8f, 0x27, 0xf1, 0xd, 0xd5, 0x44, 0x6f, + 0xc0, 0x72, 0x0, 0x8, 0xf2, 0x1, 0x0, 0x7f, + 0xff, 0xff, 0xd3, 0x0, 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xe1, @@ -11850,6 +11940,33 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x3e, 0xf6, 0x0, 0x10, 0x0, 0x0, 0x0, 0x1, 0x90, 0x0, 0x0, 0x16, 0x0, + /* U+7259 "牙" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x0, 0x0, 0x98, 0x88, 0x88, + 0x88, 0x88, 0xef, 0x88, 0x88, 0x0, 0x0, 0x0, + 0x13, 0x0, 0x0, 0x0, 0xce, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xa0, 0x0, 0x0, 0xce, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0x20, 0x0, 0x0, + 0xce, 0x0, 0x0, 0x0, 0x0, 0x5, 0xf7, 0x0, + 0x0, 0x0, 0xce, 0x0, 0x0, 0x0, 0x0, 0x2e, + 0xe0, 0x0, 0x0, 0x0, 0xce, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0x0, 0x3b, 0x87, 0x66, 0x66, 0xff, + 0xef, 0x66, 0x66, 0x75, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xf8, 0xce, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xe1, 0xce, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0x40, 0xce, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xf7, 0x0, + 0xce, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xdf, + 0x80, 0x0, 0xce, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0xf7, 0x0, 0x0, 0xce, 0x0, 0x0, 0x0, + 0x0, 0x4d, 0xfe, 0x40, 0x0, 0x0, 0xce, 0x0, + 0x0, 0x0, 0x3d, 0xff, 0x90, 0x0, 0x0, 0x2, + 0xee, 0x0, 0x0, 0x0, 0xa, 0xb3, 0x0, 0x0, + 0x3, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcb, 0x71, 0x0, 0x0, 0x0, + /* U+72B6 "状" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, @@ -11966,6 +12083,37 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x10, 0x0, 0x0, 0x0, 0x0, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x2, 0x43, + 0x33, 0x33, 0x0, 0x8, 0xf4, 0x66, 0x66, 0x66, + 0x60, 0x8, 0xff, 0xff, 0xfd, 0x0, 0x7, 0xf6, + 0xfe, 0xff, 0xef, 0xd0, 0x2, 0x33, 0xf9, 0x23, + 0x0, 0x7, 0xf0, 0x0, 0xae, 0x0, 0x0, 0x0, + 0x0, 0xf8, 0x0, 0x0, 0x7, 0xf0, 0x0, 0xae, + 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x7f, 0x7, + 0xf0, 0x0, 0xae, 0x0, 0x0, 0x0, 0x0, 0xf8, + 0x0, 0x7f, 0x7, 0xf0, 0x0, 0xae, 0x0, 0x0, + 0x0, 0x0, 0xf8, 0x0, 0x8f, 0x8, 0xe0, 0x0, + 0xae, 0x0, 0x0, 0x2, 0x99, 0xfc, 0x95, 0x9f, + 0x8, 0xe2, 0x98, 0xdf, 0x88, 0x40, 0x4, 0xed, + 0xfe, 0xe8, 0xae, 0xa, 0xd3, 0xdc, 0xef, 0xcc, + 0x50, 0x0, 0x0, 0xf8, 0x0, 0x9b, 0xc, 0xb0, + 0x0, 0xae, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, + 0x0, 0xf, 0x90, 0x0, 0xae, 0x0, 0x0, 0x0, + 0x0, 0xf8, 0x0, 0x0, 0x3f, 0x50, 0x0, 0xae, + 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0, 0x8f, + 0x10, 0x0, 0xae, 0x0, 0x0, 0x0, 0x0, 0xf8, + 0x5c, 0x10, 0xec, 0x0, 0x0, 0xae, 0x0, 0x0, + 0x0, 0x4, 0xff, 0xfb, 0x28, 0xf5, 0x0, 0x0, + 0xae, 0x0, 0x0, 0x9, 0xef, 0xe8, 0x20, 0x4f, + 0xc0, 0x17, 0x77, 0xcf, 0x77, 0x71, 0x9, 0xd6, + 0x0, 0x3, 0xff, 0x20, 0x3e, 0xed, 0xdd, 0xde, + 0xe2, 0x0, 0x0, 0x0, 0x4, 0xd5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7406 "理" */ 0x0, 0x0, 0x0, 0x0, 0x9, 0xaa, 0xaa, 0xaa, 0xaa, 0xa7, 0x3, 0x88, 0x88, 0x88, 0x80, 0xef, @@ -12776,6 +12924,36 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xac, 0x20, 0x0, 0x0, + 0x8c, 0x30, 0x0, 0x0, 0x0, 0x3, 0xfb, 0x22, + 0x23, 0x0, 0xdd, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0xf7, + 0x0, 0xaf, 0x65, 0xf7, 0x23, 0x1d, 0xc5, 0x8f, + 0x85, 0x62, 0x1b, 0xf6, 0x0, 0xbd, 0x0, 0xaf, + 0x20, 0xf, 0xa0, 0x0, 0x3e, 0x70, 0x20, 0x4d, + 0x24, 0xf6, 0x0, 0xa, 0xa0, 0x0, 0x1, 0x2, + 0xfa, 0x0, 0x0, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9f, 0x85, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x20, 0x0, 0xb8, 0xc, 0x92, 0x54, 0x44, + 0x44, 0x44, 0x8f, 0x10, 0x0, 0xda, 0x0, 0x12, + 0x22, 0x22, 0x21, 0x0, 0x6f, 0x10, 0x0, 0xda, + 0x0, 0x9f, 0xff, 0xff, 0xf9, 0x0, 0x6f, 0x10, + 0x0, 0xda, 0x0, 0x8e, 0x0, 0x0, 0xe8, 0x0, + 0x6f, 0x10, 0x0, 0xda, 0x0, 0x8f, 0x44, 0x44, + 0xf8, 0x0, 0x6f, 0x10, 0x0, 0xda, 0x0, 0x8f, + 0xff, 0xff, 0xf8, 0x0, 0x6f, 0x10, 0x0, 0xda, + 0x0, 0x8e, 0x0, 0x0, 0xe8, 0x0, 0x6f, 0x10, + 0x0, 0xda, 0x0, 0x8e, 0x0, 0x0, 0xe8, 0x0, + 0x6f, 0x10, 0x0, 0xda, 0x0, 0x9f, 0xff, 0xff, + 0xf9, 0x0, 0x6f, 0x10, 0x0, 0xda, 0x0, 0x35, + 0x55, 0x55, 0x53, 0x0, 0x6f, 0x0, 0x0, 0xda, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8a, 0xef, 0x0, + 0x0, 0xeb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, + 0xc5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x0, 0x3, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, @@ -13347,6 +13525,33 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x35, 0x66, 0x66, 0x65, 0x10, 0x0, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x3, 0x72, 0x0, 0x0, 0x47, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xf4, 0x0, 0x0, + 0x9f, 0x20, 0x0, 0x0, 0x9, 0x99, 0x9b, 0xfa, + 0x99, 0x99, 0xcf, 0x99, 0x99, 0x94, 0xf, 0xee, + 0xef, 0xfe, 0xee, 0xee, 0xff, 0xee, 0xee, 0xf7, + 0x0, 0x0, 0x6, 0xf3, 0x0, 0x0, 0x8f, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x6, 0xe3, 0xc, 0xb1, + 0x7e, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0x77, 0x77, 0x7f, 0xe7, 0x77, 0x77, 0x20, 0x0, + 0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x0, 0x7, 0xf1, 0x0, 0xe, 0xb0, + 0x0, 0x4f, 0x40, 0x0, 0x0, 0x7, 0xf1, 0x0, + 0xe, 0xa0, 0x0, 0x4f, 0x40, 0x0, 0x0, 0x7, + 0xf1, 0x0, 0xf, 0x90, 0x0, 0x4f, 0x40, 0x0, + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf6, 0x57, 0x66, 0x66, 0x66, 0xcf, 0xff, + 0x76, 0x66, 0x66, 0x73, 0x0, 0x0, 0x0, 0x2, + 0xfd, 0x5f, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2e, 0xf3, 0x6, 0xfb, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xff, 0x40, 0x0, 0x7f, 0xe5, + 0x0, 0x0, 0x0, 0x16, 0xdf, 0xd3, 0x0, 0x0, + 0x4, 0xef, 0xd7, 0x20, 0xb, 0xff, 0xe6, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xff, 0xe1, 0x2, 0xb5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x17, 0x30, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x87, 0x0, 0x0, 0x98, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xec, 0x0, 0x0, @@ -13590,6 +13795,33 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+897F "西" */ + 0x26, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, + 0x55, 0x62, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0xd, + 0xa0, 0x8, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xa0, 0x8, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xa0, 0x8, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x46, 0x66, 0x6e, 0xc6, 0x6b, + 0xf6, 0x66, 0x64, 0x0, 0x0, 0x9f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x9f, + 0x0, 0xe, 0x90, 0x8, 0xe0, 0x0, 0xe8, 0x0, + 0x0, 0x9f, 0x0, 0xf, 0x70, 0x8, 0xe0, 0x0, + 0xe8, 0x0, 0x0, 0x9f, 0x0, 0x4f, 0x40, 0x8, + 0xe0, 0x0, 0xe8, 0x0, 0x0, 0x9f, 0x0, 0xaf, + 0x0, 0x8, 0xe0, 0x0, 0xe8, 0x0, 0x0, 0x9f, + 0x3, 0xf9, 0x0, 0x8, 0xf7, 0x75, 0xe8, 0x0, + 0x0, 0x9f, 0x2e, 0xf1, 0x0, 0x4, 0xff, 0xf8, + 0xe8, 0x0, 0x0, 0x9f, 0x1b, 0x50, 0x0, 0x0, + 0x24, 0x41, 0xe8, 0x0, 0x0, 0x9f, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe8, 0x0, 0x0, 0x9f, + 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0xe8, 0x0, + 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0x0, 0x0, 0x9f, 0x22, 0x22, 0x22, 0x22, + 0x22, 0x22, 0xe9, 0x0, 0x0, 0xaf, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe9, 0x0, 0x0, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8981 "要" */ 0x2, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x10, 0xa, 0xff, 0xff, 0xff, 0xff, @@ -13745,6 +13977,33 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x3f, 0x90, 0x9, 0xff, 0x80, 0x1, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, 0x0, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0x60, + 0x0, 0x0, 0x0, 0x0, 0x14, 0x33, 0x33, 0x33, + 0x6f, 0xc3, 0x33, 0x33, 0x33, 0x40, 0x4f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, + 0x13, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, + 0x22, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x5, + 0x55, 0x55, 0x55, 0x55, 0x55, 0x56, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0x76, 0x66, 0x66, 0x66, + 0x66, 0x67, 0x40, 0x0, 0x0, 0xe, 0xed, 0xdd, + 0xdd, 0xdd, 0xdd, 0xee, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, + 0x10, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb0, 0x0, 0x0, 0xb, 0xf2, 0x22, + 0x22, 0x22, 0x22, 0x3f, 0xa0, 0x0, 0x0, 0xb, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xa0, 0x0, + 0x0, 0xb, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xa0, 0x0, 0x0, 0xb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa0, 0x0, 0x0, 0xc, 0xf7, 0x77, + 0x77, 0x77, 0x77, 0x7f, 0xa0, 0x0, 0x0, 0xc, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xb0, 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x6c, 0x10, 0x6b, 0x0, 0x0, 0xa7, 0x0, 0x0, 0x0, 0x2, 0x54, 0x9f, 0x44, 0xae, @@ -14049,6 +14308,37 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BED "语" */ + 0x0, 0x6, 0x0, 0x2, 0x65, 0x55, 0x55, 0x55, + 0x55, 0x56, 0x0, 0x0, 0x3f, 0xb0, 0x4, 0xee, + 0xee, 0xff, 0xee, 0xee, 0xee, 0x20, 0x0, 0x7, + 0xfa, 0x0, 0x0, 0x0, 0xbf, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9a, 0x0, 0x0, 0x0, 0xdc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xaf, 0xff, 0xff, 0xee, 0xee, 0xd0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x46, 0x6a, 0xf9, 0x66, 0x6f, + 0xd0, 0x0, 0x29, 0x88, 0x85, 0x0, 0x0, 0x9, + 0xf2, 0x0, 0xf, 0xc0, 0x0, 0x3f, 0xff, 0xfa, + 0x0, 0x0, 0xc, 0xf0, 0x0, 0x2f, 0xa0, 0x0, + 0x1, 0x11, 0xfa, 0x0, 0x0, 0xf, 0xc0, 0x0, + 0x5f, 0x80, 0x0, 0x0, 0x0, 0xf9, 0xe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, + 0xf9, 0x6, 0x65, 0x55, 0x55, 0x55, 0x55, 0x55, + 0x60, 0x0, 0x0, 0xf9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf9, 0x0, + 0x6, 0x88, 0x88, 0x88, 0x88, 0x81, 0x0, 0x0, + 0x0, 0xf9, 0x22, 0xb, 0xff, 0xff, 0xff, 0xff, + 0xf2, 0x0, 0x0, 0x0, 0xf9, 0xcc, 0xb, 0xf0, + 0x0, 0x0, 0x8, 0xf1, 0x0, 0x0, 0x0, 0xff, + 0xf9, 0xb, 0xf0, 0x0, 0x0, 0x8, 0xf1, 0x0, + 0x0, 0x2, 0xff, 0xa0, 0xb, 0xf0, 0x0, 0x0, + 0x8, 0xf1, 0x0, 0x0, 0x9, 0xfc, 0x0, 0xb, + 0xf6, 0x66, 0x66, 0x6b, 0xf1, 0x0, 0x0, 0xa, + 0xe1, 0x0, 0xb, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0x0, 0x0, 0x0, 0x20, 0x0, 0xc, 0xf0, 0x0, + 0x0, 0x8, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BF7 "请" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xa0, 0x0, 0x0, 0x0, 0x4, 0xe4, 0x0, 0x0, 0x0, @@ -17769,392 +18059,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 41204, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 41425, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 41635, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 41866, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 42097, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42307, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42517, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42737, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 42947, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 43189, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 43420, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 43630, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 43861, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44081, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 44312, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 44512, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 44722, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 44932, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 45152, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 45352, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 45573, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 45804, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 46025, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 46235, .adv_w = 352, .box_w = 18, .box_h = 20, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 46415, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 46625, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 46846, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 47056, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 47266, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 47476, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 47697, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 47907, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 48117, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 48338, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 48569, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 48779, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 49000, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 49242, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49452, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 49652, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 49862, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50072, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 50293, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 50503, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 50713, .adv_w = 352, .box_w = 21, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 50913, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 51123, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51333, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 51533, .adv_w = 352, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 51723, .adv_w = 352, .box_w = 18, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 51921, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 52142, .adv_w = 352, .box_w = 19, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 52342, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 52563, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 52773, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 52994, .adv_w = 352, .box_w = 18, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 53165, .adv_w = 352, .box_w = 19, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 53365, .adv_w = 352, .box_w = 18, .box_h = 21, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 53554, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 53775, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 53985, .adv_w = 352, .box_w = 21, .box_h = 19, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 54185, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 54405, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 54605, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 54836, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 55046, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 55267, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 55498, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 55708, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 55918, .adv_w = 352, .box_w = 22, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56127, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 56337, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 56547, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 56767, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 56977, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 57187, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 57418, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 57638, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 57848, .adv_w = 352, .box_w = 18, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 58037, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 58257, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 58488, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 58719, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 58961, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 59181, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 59391, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 59612, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 59822, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 41866, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42086, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 42317, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42527, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 42737, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 42958, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43178, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 43388, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 43630, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 43861, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44071, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 44302, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 44522, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 44753, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 44953, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45163, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 45373, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 45593, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 45793, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 46014, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 46245, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 46466, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 46676, .adv_w = 352, .box_w = 18, .box_h = 20, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 46856, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 47066, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 47287, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 47497, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 47707, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 47917, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 48138, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 48348, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 48558, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 48779, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49010, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 49220, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 49441, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 49683, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49893, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 50093, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 50303, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 50513, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 50734, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 50944, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 51154, .adv_w = 352, .box_w = 21, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 51354, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 51564, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51774, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 51974, .adv_w = 352, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 52164, .adv_w = 352, .box_w = 18, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 52362, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 52583, .adv_w = 352, .box_w = 19, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 52783, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 53004, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 53214, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 53435, .adv_w = 352, .box_w = 18, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 53606, .adv_w = 352, .box_w = 19, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 53806, .adv_w = 352, .box_w = 18, .box_h = 21, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 53995, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 54216, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 54426, .adv_w = 352, .box_w = 21, .box_h = 19, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 54626, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 54846, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 55046, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 55277, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 55487, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 55708, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 55939, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 56149, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56359, .adv_w = 352, .box_w = 22, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56568, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56778, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 56988, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 57208, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 57418, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 57628, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 57859, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 58079, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 58289, .adv_w = 352, .box_w = 18, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 58478, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 58698, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 58929, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 59160, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 59402, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 59622, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59832, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 60053, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 60263, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 60463, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 60673, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 60915, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 61136, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 61346, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 61556, .adv_w = 352, .box_w = 19, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 61737, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 61958, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 62158, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 62358, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 62548, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 62768, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 62989, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 63210, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 63452, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 63662, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 63883, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 64104, .adv_w = 352, .box_w = 18, .box_h = 20, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 64284, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 64484, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 64705, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 64926, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 65157, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 65367, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 65577, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 65787, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 65987, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 66218, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 66449, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 66670, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 66890, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 67100, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 67331, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 67531, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 67752, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 67983, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 68193, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 68403, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 68634, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 68865, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 69085, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 69295, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 69526, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 69757, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 69999, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 70220, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 70441, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 70683, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 70914, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 71156, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 71377, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 71608, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 71828, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 72028, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 72249, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 72491, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 72733, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 72954, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 73175, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 73395, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 73626, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 73868, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 74068, .adv_w = 352, .box_w = 15, .box_h = 20, .ofs_x = 4, .ofs_y = -2}, - {.bitmap_index = 74218, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 74439, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 74629, .adv_w = 352, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 74819, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 75019, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 75229, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 75450, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 75671, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 75891, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 76101, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 76322, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 76564, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 76764, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 76974, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 77184, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 77404, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 77646, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 77856, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 78087, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 78308, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 78528, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 78759, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 78980, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 79211, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 79401, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 79622, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 79843, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 80043, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 80243, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 80464, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 80674, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 80884, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 81115, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 81325, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 81556, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 81777, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 82008, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 82218, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 60263, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 60494, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 60704, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 60904, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 61114, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 61356, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 61577, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 61787, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 61997, .adv_w = 352, .box_w = 19, .box_h = 19, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 62178, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 62399, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 62599, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 62799, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 62989, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 63209, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 63430, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 63651, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 63893, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 64103, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 64324, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 64545, .adv_w = 352, .box_w = 18, .box_h = 20, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 64725, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 64925, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 65146, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 65367, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 65588, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 65819, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 66029, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 66239, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 66449, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 66649, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 66880, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 67111, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 67332, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 67552, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 67762, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 67993, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 68193, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 68414, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 68645, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 68855, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 69065, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 69296, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 69527, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 69747, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 69957, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 70188, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 70419, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 70661, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 70882, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 71103, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 71345, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 71576, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 71818, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 72039, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 72270, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 72490, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 72690, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 72911, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 73153, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 73395, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 73616, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 73837, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 74057, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 74288, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 74530, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 74730, .adv_w = 352, .box_w = 15, .box_h = 20, .ofs_x = 4, .ofs_y = -2}, + {.bitmap_index = 74880, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 75101, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 75291, .adv_w = 352, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 75481, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 75681, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 75891, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 76112, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 76333, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 76553, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 76763, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 76984, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 77226, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 77426, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 77636, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 77846, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 78066, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 78308, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 78518, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 78749, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 78970, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 79190, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 79421, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 79642, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 79873, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 80063, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 80284, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 80505, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 80705, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 80905, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 81126, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 81336, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 81546, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 81777, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 81987, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 82218, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 82439, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 82670, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 82901, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 83111, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 83321, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 83531, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 83773, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 84004, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 84225, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 84446, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 84646, .adv_w = 352, .box_w = 22, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 84855, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 85075, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 85285, .adv_w = 352, .box_w = 21, .box_h = 19, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 85485, .adv_w = 352, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 85665, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 85865, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 86055, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 86286, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 86486, .adv_w = 352, .box_w = 19, .box_h = 21, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 86686, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 86917, .adv_w = 352, .box_w = 16, .box_h = 19, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 87069, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 87269, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 87489, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 87710, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 87920, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 88151, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 88361, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 88592, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 88792, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 88992, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 89212, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 89433, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 89664, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 89895, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 90126, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 90336, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 90578, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 90799, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 91041, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 91262, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 91472, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 91672, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 91882, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 92113, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 92313, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 92523, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 92754, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 92985, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 93216, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 93436, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 93626, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 93826, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 94036, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 94226, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 94446, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 94656, .adv_w = 352, .box_w = 16, .box_h = 20, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 94816, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 95037, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 95237, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 95447, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 95667, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 95909, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 96129, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 96360, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 96581, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 96812, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97022, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 97253, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 97495, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 97737, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97968, .adv_w = 352, .box_w = 19, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 98168, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 98388, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 98598, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 98819, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 99061, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 99271, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 99502, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 99722, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 99942, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 100184, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 100394, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 100615, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 100825, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 101056, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 101277, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 101497, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 101707, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 101938, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 102169, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 102390, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 102621, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 102852, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 103094, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 103336, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 103567, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 103777, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 103998, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 104198, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 104429, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 104639, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 104870, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 105091, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 105322, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 105532, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 105753, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 105984, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 106226, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 106447, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 106668, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 106889, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 107089, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 107289, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 107499, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 107730, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 107972, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 108214, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 108414, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 108634, .adv_w = 352, .box_w = 18, .box_h = 21, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 108823, .adv_w = 352, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 109032, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 109253, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 109473, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 109683, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 109873, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 110083, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 110283, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 110483, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 110693, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 110903, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 111134, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 111365, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 111596, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 111827, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 112027, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 112269, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 112490, .adv_w = 352, .box_w = 23, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 112755, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 112942, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 113162, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 113349, .adv_w = 242, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 113477, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 113730, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 113983, .adv_w = 396, .box_w = 25, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 114233, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 114486, .adv_w = 396, .box_w = 25, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 114699, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 114952, .adv_w = 176, .box_w = 11, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 115051, .adv_w = 264, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 115204, .adv_w = 396, .box_w = 25, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 115479, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 115666, .adv_w = 242, .box_w = 16, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 115850, .adv_w = 308, .box_w = 15, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 116008, .adv_w = 308, .box_w = 20, .box_h = 24, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 116248, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 116448, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 116648, .adv_w = 308, .box_w = 15, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 116806, .adv_w = 308, .box_w = 21, .box_h = 20, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 117016, .adv_w = 220, .box_w = 12, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 117136, .adv_w = 220, .box_w = 12, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 117256, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 117456, .adv_w = 308, .box_w = 20, .box_h = 5, .ofs_x = 0, .ofs_y = 6}, - {.bitmap_index = 117506, .adv_w = 396, .box_w = 25, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 117719, .adv_w = 440, .box_w = 28, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 118041, .adv_w = 396, .box_w = 27, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 118352, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 118583, .adv_w = 308, .box_w = 19, .box_h = 12, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 118697, .adv_w = 308, .box_w = 19, .box_h = 12, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 118811, .adv_w = 440, .box_w = 28, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 119063, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 119250, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 119503, .adv_w = 352, .box_w = 23, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 119768, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 119968, .adv_w = 308, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 120198, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 120398, .adv_w = 308, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 120578, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 120765, .adv_w = 220, .box_w = 15, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 120938, .adv_w = 308, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 121168, .adv_w = 308, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 121398, .adv_w = 396, .box_w = 25, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 121611, .adv_w = 352, .box_w = 24, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 121887, .adv_w = 264, .box_w = 17, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 122083, .adv_w = 440, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 122377, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 122587, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 122797, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 123007, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 123217, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 123427, .adv_w = 440, .box_w = 28, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 123679, .adv_w = 308, .box_w = 17, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 123875, .adv_w = 308, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 124105, .adv_w = 352, .box_w = 23, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 124370, .adv_w = 440, .box_w = 28, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 124608, .adv_w = 264, .box_w = 17, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 124804, .adv_w = 354, .box_w = 23, .box_h = 14, .ofs_x = 0, .ofs_y = 1} + {.bitmap_index = 82670, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 82880, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 83101, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 83332, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 83563, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 83773, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 83983, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 84193, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 84435, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 84666, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 84887, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 85087, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 85308, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 85508, .adv_w = 352, .box_w = 22, .box_h = 19, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 85717, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 85937, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 86168, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 86378, .adv_w = 352, .box_w = 21, .box_h = 19, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 86578, .adv_w = 352, .box_w = 18, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 86758, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 86958, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 87148, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 87379, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 87579, .adv_w = 352, .box_w = 19, .box_h = 21, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 87779, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 88010, .adv_w = 352, .box_w = 16, .box_h = 19, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 88162, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 88362, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 88582, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 88803, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 89013, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 89244, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 89454, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 89685, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 89885, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 90085, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 90305, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 90526, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 90757, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 90988, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 91219, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 91429, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 91671, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 91892, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 92134, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 92354, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 92575, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 92785, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 92985, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 93195, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 93426, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 93626, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 93836, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 94067, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 94298, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 94529, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 94749, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 94939, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 95139, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 95349, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 95539, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 95759, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 95969, .adv_w = 352, .box_w = 16, .box_h = 20, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 96129, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 96350, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 96550, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 96750, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 96960, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 97180, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 97422, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 97642, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 97873, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98094, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 98325, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98535, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98735, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 98966, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 99208, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 99450, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 99681, .adv_w = 352, .box_w = 19, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 99881, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 100081, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 100301, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 100511, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 100732, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 100974, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 101184, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 101415, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 101635, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 101855, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 102097, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 102307, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 102538, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 102759, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 102969, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 103200, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 103421, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 103641, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 103851, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 104082, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 104313, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 104534, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 104765, .adv_w = 352, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 104996, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 105238, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 105480, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 105711, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 105921, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 106142, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 106342, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 106573, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 106783, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 107014, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 107235, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 107466, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 107676, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 107897, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 108128, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 108370, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 108591, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 108812, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 109033, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 109233, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 109433, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 109643, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 109874, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 110116, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 110358, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 110558, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 110778, .adv_w = 352, .box_w = 18, .box_h = 21, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 110967, .adv_w = 352, .box_w = 19, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 111176, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 111397, .adv_w = 352, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 111617, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 111827, .adv_w = 352, .box_w = 20, .box_h = 19, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 112017, .adv_w = 352, .box_w = 20, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 112227, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 112427, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 112627, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 112837, .adv_w = 352, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 113047, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 113278, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 113509, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 113740, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 113971, .adv_w = 352, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 114171, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 114413, .adv_w = 352, .box_w = 21, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 114634, .adv_w = 352, .box_w = 23, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 114899, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 115086, .adv_w = 352, .box_w = 22, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 115306, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 115493, .adv_w = 242, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 115621, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 115874, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 116127, .adv_w = 396, .box_w = 25, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 116377, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 116630, .adv_w = 396, .box_w = 25, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 116843, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 117096, .adv_w = 176, .box_w = 11, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 117195, .adv_w = 264, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 117348, .adv_w = 396, .box_w = 25, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 117623, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 117810, .adv_w = 242, .box_w = 16, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 117994, .adv_w = 308, .box_w = 15, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 118152, .adv_w = 308, .box_w = 20, .box_h = 24, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 118392, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 118592, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 118792, .adv_w = 308, .box_w = 15, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 118950, .adv_w = 308, .box_w = 21, .box_h = 20, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 119160, .adv_w = 220, .box_w = 12, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 119280, .adv_w = 220, .box_w = 12, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 119400, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 119600, .adv_w = 308, .box_w = 20, .box_h = 5, .ofs_x = 0, .ofs_y = 6}, + {.bitmap_index = 119650, .adv_w = 396, .box_w = 25, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 119863, .adv_w = 440, .box_w = 28, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 120185, .adv_w = 396, .box_w = 27, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 120496, .adv_w = 352, .box_w = 22, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 120727, .adv_w = 308, .box_w = 19, .box_h = 12, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 120841, .adv_w = 308, .box_w = 19, .box_h = 12, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 120955, .adv_w = 440, .box_w = 28, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 121207, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 121394, .adv_w = 352, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 121647, .adv_w = 352, .box_w = 23, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 121912, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 122112, .adv_w = 308, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 122342, .adv_w = 308, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 122542, .adv_w = 308, .box_w = 20, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 122722, .adv_w = 352, .box_w = 22, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 122909, .adv_w = 220, .box_w = 15, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 123082, .adv_w = 308, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 123312, .adv_w = 308, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 123542, .adv_w = 396, .box_w = 25, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 123755, .adv_w = 352, .box_w = 24, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 124031, .adv_w = 264, .box_w = 17, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 124227, .adv_w = 440, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 124521, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 124731, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 124941, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 125151, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 125361, .adv_w = 440, .box_w = 28, .box_h = 15, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 125571, .adv_w = 440, .box_w = 28, .box_h = 18, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 125823, .adv_w = 308, .box_w = 17, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 126019, .adv_w = 308, .box_w = 20, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 126249, .adv_w = 352, .box_w = 23, .box_h = 23, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 126514, .adv_w = 440, .box_w = 28, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 126752, .adv_w = 264, .box_w = 17, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 126948, .adv_w = 354, .box_w = 23, .box_h = 14, .ofs_x = 0, .ofs_y = 1} }; /*--------------------- @@ -18175,55 +18475,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -18255,7 +18557,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -18360,7 +18662,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -18459,7 +18762,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_24.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_24.c index 939d180c..79ee4320 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_24.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_24.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 24 px * Bpp: 4 - * Opts: --bpp 4 --size 24 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_24.c + * Opts: --bpp 4 --size 24 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_24.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -7006,6 +7006,41 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x6f, 0xff, 0x60, 0x0, 0x0, 0xdf, 0x10, 0x0, 0x0, 0x0, 0xa4, 0x0, 0x4, 0xa9, 0x0, + /* U+4F53 "体" */ + 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x2, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xb1, + 0x0, 0x0, 0x9, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xd0, 0x0, 0x0, 0x8, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0x70, + 0x0, 0x0, 0x8, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0x20, 0x0, 0x0, 0x8, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xfd, 0x6, + 0x77, 0x77, 0x7b, 0xf8, 0x77, 0x77, 0x78, 0x0, + 0x0, 0x9, 0xfb, 0xd, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xfb, 0x1, + 0x10, 0x6, 0xfe, 0xfe, 0xe0, 0x0, 0x11, 0x0, + 0x0, 0x8f, 0xfb, 0x0, 0x0, 0xa, 0xfa, 0xf9, + 0xf3, 0x0, 0x0, 0x0, 0x2, 0xfd, 0xfb, 0x0, + 0x0, 0xf, 0xd8, 0xf5, 0xf9, 0x0, 0x0, 0x0, + 0xc, 0xf4, 0xfb, 0x0, 0x0, 0x6f, 0x78, 0xf2, + 0xcf, 0x20, 0x0, 0x0, 0x7, 0xa0, 0xfb, 0x0, + 0x0, 0xef, 0x18, 0xf2, 0x4f, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0xfb, 0x0, 0x8, 0xf8, 0x8, 0xf2, + 0xb, 0xf6, 0x0, 0x0, 0x0, 0x0, 0xfb, 0x0, + 0x5f, 0xe0, 0x8, 0xf2, 0x1, 0xef, 0x50, 0x0, + 0x0, 0x0, 0xfb, 0x4, 0xff, 0x30, 0x8, 0xf2, + 0x0, 0x4f, 0xf8, 0x0, 0x0, 0x0, 0xfb, 0x6f, + 0xf6, 0x0, 0x8, 0xf2, 0x0, 0x5, 0xff, 0xa0, + 0x0, 0x0, 0xfc, 0xaf, 0x61, 0xee, 0xee, 0xfe, + 0xde, 0xa0, 0x4c, 0x0, 0x0, 0x0, 0xfb, 0x4, + 0x1, 0xbb, 0xad, 0xfb, 0xaa, 0x80, 0x0, 0x0, + 0x0, 0x0, 0xfb, 0x0, 0x0, 0x0, 0x8, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfb, 0x0, + 0x0, 0x0, 0x8, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xfb, 0x0, 0x0, 0x0, 0x9, 0xf3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xeb, 0x0, + 0x0, 0x0, 0x9, 0xf3, 0x0, 0x0, 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x0, 0x7, 0x10, 0x0, 0x0, 0x2, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xfe, 0x0, @@ -7110,6 +7145,42 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xfc, 0x0, 0x0, 0x9f, 0x24, 0xc2, 0x0, 0x0, 0x3, 0x0, 0x5, 0xd9, 0x20, + /* U+4FC4 "俄" */ + 0x0, 0x0, 0x47, 0x30, 0x0, 0x0, 0x0, 0x27, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x9, 0xfd, 0x0, + 0x0, 0x2, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xef, 0x50, 0x3, 0x7c, 0xf4, 0x1f, 0xa0, + 0x45, 0x0, 0x0, 0x0, 0x3f, 0xd0, 0x6f, 0xff, + 0xea, 0x61, 0xf9, 0x2f, 0xf1, 0x0, 0x0, 0xa, + 0xf6, 0x0, 0xb8, 0xf8, 0x0, 0x1f, 0x90, 0x8f, + 0xa0, 0x0, 0x1, 0xff, 0x10, 0x0, 0x1f, 0x80, + 0x0, 0xf9, 0x0, 0xeb, 0x0, 0x0, 0x9f, 0xe0, + 0x0, 0x1, 0xf8, 0x0, 0xf, 0x90, 0x1, 0x0, + 0x0, 0x2f, 0xfe, 0x1, 0x87, 0x8f, 0xb7, 0x77, + 0xfc, 0x77, 0x77, 0x50, 0xc, 0xfe, 0xe0, 0x2f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x9, + 0xfa, 0xce, 0x0, 0x11, 0x2f, 0x80, 0x0, 0xfa, + 0x0, 0x11, 0x10, 0x3d, 0x1c, 0xe0, 0x0, 0x1, + 0xf8, 0x0, 0xd, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0xce, 0x0, 0x0, 0x1f, 0x80, 0x20, 0xbe, 0x0, + 0xc4, 0x0, 0x0, 0xc, 0xe0, 0x0, 0x1, 0xfc, + 0xdc, 0x9, 0xf0, 0x7f, 0xb0, 0x0, 0x0, 0xce, + 0x1, 0x59, 0xef, 0xfc, 0x60, 0x6f, 0x4e, 0xe1, + 0x0, 0x0, 0xc, 0xe0, 0xcf, 0xfd, 0xf8, 0x0, + 0x3, 0xfe, 0xf4, 0x0, 0x0, 0x0, 0xce, 0x5, + 0x92, 0x1f, 0x80, 0x0, 0xf, 0xfa, 0x0, 0x0, + 0x0, 0xc, 0xe0, 0x0, 0x1, 0xf8, 0x0, 0x8, + 0xff, 0x20, 0x0, 0x0, 0x0, 0xce, 0x0, 0x0, + 0x1f, 0x80, 0x9, 0xfe, 0xf8, 0x3, 0x0, 0x0, + 0xc, 0xe0, 0x0, 0x1, 0xf8, 0x3d, 0xfc, 0x1d, + 0xf1, 0x9e, 0x20, 0x0, 0xcf, 0x0, 0x37, 0xaf, + 0x71, 0xda, 0x0, 0x4f, 0xcd, 0xf0, 0x0, 0xc, + 0xf0, 0x3, 0xff, 0xf3, 0x1, 0x0, 0x0, 0x8f, + 0xfa, 0x0, 0x0, 0xdf, 0x10, 0x9, 0x72, 0x0, + 0x0, 0x0, 0x0, 0x8c, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + /* U+4FDD "保" */ 0x0, 0x0, 0x1, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xfa, @@ -10639,6 +10710,41 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x3f, 0x60, 0x0, 0x3, 0x20, 0x0, 0x0, 0x2, 0x20, 0x0, 0x0, 0x0, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x4, 0x20, 0x0, 0x0, 0x2, 0xea, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf2, + 0x0, 0x0, 0x3, 0xfa, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9f, 0x90, 0x99, 0x88, 0x8a, 0xfb, + 0x77, 0x77, 0x78, 0x10, 0x0, 0x4, 0xfd, 0x0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, + 0x0, 0x1e, 0xf3, 0x0, 0x0, 0x0, 0x9, 0xf3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x60, 0x20, + 0x0, 0x0, 0xb, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xfa, 0x2, 0xfa, 0x4f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x0, 0x0, 0x70, 0xa, 0xf6, + 0x3f, 0x95, 0xbf, 0x56, 0xfa, 0x59, 0xf3, 0x0, + 0x0, 0x0, 0x4f, 0xa0, 0x3f, 0x60, 0x8f, 0x1, + 0xf8, 0x6, 0xf2, 0x0, 0x0, 0x1, 0xee, 0x10, + 0x3f, 0x60, 0x8f, 0x1, 0xf8, 0x6, 0xf3, 0x0, + 0x0, 0xb, 0xfb, 0x0, 0x4f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x0, 0x0, 0x9f, 0xfb, 0x0, + 0x27, 0x77, 0x77, 0x77, 0x77, 0x77, 0x71, 0x0, + 0xa, 0xfa, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa, 0xe1, 0xfb, 0x0, + 0xa9, 0x98, 0x88, 0x88, 0x88, 0x89, 0x99, 0x30, + 0x1, 0x30, 0xfb, 0x0, 0xee, 0xed, 0xdd, 0xdd, + 0xdd, 0xdd, 0xee, 0x40, 0x0, 0x0, 0xfb, 0x0, + 0x0, 0x0, 0x0, 0x34, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xfb, 0x0, 0x43, 0x5, 0x60, 0xfd, + 0x0, 0x0, 0x60, 0x0, 0x0, 0x0, 0xfb, 0x0, + 0xcf, 0xd, 0xe0, 0x7f, 0x80, 0x7, 0xf9, 0x0, + 0x0, 0x0, 0xfb, 0x2, 0xfa, 0xc, 0xd0, 0xb, + 0x40, 0x10, 0xdf, 0x40, 0x0, 0x0, 0xfb, 0x8, + 0xf4, 0xc, 0xd0, 0x0, 0x3, 0xf9, 0x3f, 0xc0, + 0x0, 0x0, 0xfc, 0x9, 0xe0, 0xa, 0xf8, 0x66, + 0x6b, 0xf9, 0x6, 0x10, 0x0, 0x1, 0xfc, 0x0, + 0x0, 0x4, 0xef, 0xff, 0xff, 0xb1, 0x0, 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -13739,6 +13845,39 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x93, 0x0, 0x0, 0x2, 0x70, + /* U+7259 "牙" */ + 0x0, 0x21, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, + 0x11, 0x11, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x8e, 0xf9, 0x88, 0x94, + 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0xc, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe3, + 0x0, 0x0, 0xc, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7f, 0xb0, 0x0, 0x0, 0xc, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xef, 0x10, 0x0, 0x0, + 0xc, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x9, 0xf7, + 0x0, 0x0, 0x0, 0xc, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0x7f, 0xf9, 0x88, 0x88, 0x88, 0x8e, 0xf9, + 0x88, 0x88, 0x94, 0x0, 0x5f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x5, + 0x10, 0x0, 0x0, 0x4f, 0xcc, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0x4c, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0xfa, 0xc, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6f, 0xe1, 0xc, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0x30, + 0xc, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xf4, 0x0, 0xc, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2c, 0xfe, 0x30, 0x0, 0xc, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x19, 0xff, 0xb1, 0x0, + 0x0, 0xc, 0xf1, 0x0, 0x0, 0x0, 0x29, 0xff, + 0xf6, 0x0, 0x0, 0x0, 0xe, 0xf1, 0x0, 0x0, + 0x0, 0x2d, 0xfa, 0x10, 0x0, 0x0, 0x5b, 0xef, + 0xf0, 0x0, 0x0, 0x0, 0x2, 0x30, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0x20, 0x0, 0x0, + 0x0, 0x0, + /* U+72B6 "状" */ 0x0, 0x0, 0x0, 0xbd, 0x20, 0x0, 0x0, 0x33, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xf1, @@ -13873,6 +14012,41 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xd6, 0x0, 0x0, 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7b, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xa9, 0x99, 0x9a, 0x50, 0x0, 0x7f, 0x5d, + 0xdc, 0xcc, 0xcd, 0xa0, 0x6, 0xfe, 0xff, 0xef, + 0x80, 0x0, 0x7f, 0x4b, 0xaa, 0xfd, 0xaa, 0x80, + 0x0, 0x0, 0xbf, 0x0, 0x0, 0x0, 0x7f, 0x20, + 0x1, 0xf9, 0x0, 0x0, 0x0, 0x0, 0xbf, 0x0, + 0x3, 0x40, 0x7f, 0x20, 0x1, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0x0, 0xb, 0xf0, 0x7f, 0x10, + 0x1, 0xf9, 0x0, 0x0, 0x0, 0x0, 0xbf, 0x0, + 0xb, 0xe0, 0x7f, 0x10, 0x1, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0x0, 0xc, 0xe0, 0x7f, 0x0, + 0x1, 0xf9, 0x0, 0x0, 0x1, 0x87, 0xdf, 0x78, + 0x2d, 0xd0, 0x8f, 0x8, 0x78, 0xfc, 0x78, 0x20, + 0x2, 0xff, 0xff, 0xff, 0x4e, 0xc0, 0x9f, 0xf, + 0xff, 0xff, 0xff, 0x50, 0x0, 0x11, 0xbf, 0x1, + 0xf, 0xb0, 0xbd, 0x0, 0x1, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0x0, 0x2, 0x10, 0xeb, 0x0, + 0x1, 0xf9, 0x0, 0x0, 0x0, 0x0, 0xbf, 0x0, + 0x0, 0x1, 0xf9, 0x0, 0x1, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0x0, 0x0, 0x6, 0xf5, 0x0, + 0x1, 0xf9, 0x0, 0x0, 0x0, 0x0, 0xbf, 0x0, + 0x10, 0xb, 0xf1, 0x0, 0x1, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0x5c, 0xe0, 0x2f, 0xb0, 0x0, + 0x1, 0xf9, 0x0, 0x0, 0x0, 0x5, 0xdf, 0xfd, + 0x70, 0xcf, 0x40, 0x0, 0x1, 0xf9, 0x0, 0x0, + 0x9, 0xff, 0xfa, 0x40, 0x8, 0xfb, 0x0, 0x87, + 0x78, 0xfc, 0x78, 0x81, 0x7, 0xf9, 0x20, 0x0, + 0x7f, 0xe1, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0x0, 0x10, 0x0, 0x0, 0x8f, 0x40, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7406 "理" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0x33, 0x33, 0x33, 0x33, 0x32, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -14822,6 +14996,40 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x61, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x90, 0x0, + 0x0, 0x4, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xff, 0x77, 0x77, 0x81, 0xb, 0xf7, 0x44, 0x44, + 0x42, 0x0, 0xb, 0xff, 0xff, 0xff, 0xf3, 0x3f, + 0xff, 0xff, 0xff, 0xf6, 0x0, 0x9f, 0x90, 0xaf, + 0x20, 0x1, 0xdf, 0x42, 0xcf, 0x33, 0x31, 0x1b, + 0xfa, 0x0, 0x2f, 0xa0, 0xc, 0xf5, 0x0, 0x5f, + 0x70, 0x0, 0x1c, 0xa0, 0x3, 0x9, 0x90, 0x4f, + 0x80, 0x0, 0xd, 0x70, 0x0, 0x0, 0x0, 0xaf, + 0x30, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0xe2, 0x6f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x0, 0x8d, 0x16, 0xe4, 0x37, + 0x66, 0x66, 0x66, 0x66, 0xcf, 0x0, 0x0, 0x9f, + 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0xae, + 0x0, 0x0, 0x8f, 0x10, 0x1f, 0xff, 0xff, 0xff, + 0xf1, 0x0, 0xae, 0x0, 0x0, 0x8f, 0x10, 0xf, + 0xb5, 0x55, 0x5b, 0xf0, 0x0, 0xae, 0x0, 0x0, + 0x8f, 0x10, 0xf, 0x90, 0x0, 0x9, 0xf0, 0x0, + 0xae, 0x0, 0x0, 0x8f, 0x10, 0xf, 0xff, 0xff, + 0xff, 0xf0, 0x0, 0xae, 0x0, 0x0, 0x8f, 0x10, + 0xf, 0xc7, 0x77, 0x7c, 0xf0, 0x0, 0xae, 0x0, + 0x0, 0x8f, 0x10, 0xf, 0x90, 0x0, 0x9, 0xf0, + 0x0, 0xae, 0x0, 0x0, 0x8f, 0x10, 0xf, 0xa2, + 0x22, 0x2a, 0xf0, 0x0, 0xae, 0x0, 0x0, 0x8f, + 0x10, 0x1f, 0xff, 0xff, 0xff, 0xf1, 0x0, 0xae, + 0x0, 0x0, 0x8f, 0x10, 0x4, 0x44, 0x44, 0x44, + 0x40, 0x0, 0xbe, 0x0, 0x0, 0x9f, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xbb, 0xfc, 0x0, 0x0, + 0x9f, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0xee, + 0xa2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0xaa, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, @@ -15489,6 +15697,40 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x6, 0x88, 0x88, 0x88, 0x87, 0x10, 0x0, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x20, + 0x0, 0x4, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xbf, 0x10, 0x0, 0x3, 0xf9, 0x0, 0x0, + 0x0, 0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf5, 0x9, 0xaa, 0xaa, 0xef, + 0xaa, 0xaa, 0xab, 0xfd, 0xaa, 0xaa, 0xb3, 0x0, + 0x0, 0x0, 0xbf, 0x10, 0x0, 0x3, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9c, 0x10, 0xee, + 0x42, 0xc8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xef, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x88, 0x88, 0x88, 0xef, 0x98, 0x88, + 0x88, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0x0, 0x0, 0xde, 0x0, 0x0, 0xcf, 0x0, + 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0xdd, 0x0, + 0x0, 0xcf, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, + 0x0, 0xec, 0x0, 0x0, 0xcf, 0x0, 0x0, 0x48, + 0x77, 0xfd, 0x77, 0x77, 0xfd, 0x77, 0x77, 0xdf, + 0x77, 0x81, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf3, 0x11, 0x10, 0x0, + 0x0, 0xb, 0xfe, 0xf8, 0x0, 0x0, 0x1, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0xc1, 0xdf, 0x60, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xfe, + 0x10, 0x2e, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xaf, 0xe3, 0x0, 0x2, 0xef, 0xc3, 0x0, + 0x0, 0x0, 0x4, 0xaf, 0xfc, 0x10, 0x0, 0x0, + 0x1b, 0xff, 0xb5, 0x0, 0x9, 0xff, 0xfd, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x4d, 0xff, 0xd0, 0x1, + 0xda, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5b, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x13, 0x20, 0x0, 0x3, 0x51, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0x90, @@ -15767,6 +16009,39 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xae, 0x90, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+897F "西" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x8, 0x77, + 0x77, 0x77, 0xed, 0x77, 0xbf, 0x87, 0x77, 0x77, + 0x74, 0x0, 0x0, 0x0, 0x0, 0xeb, 0x0, 0x8f, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xeb, 0x0, 0x8f, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xeb, 0x0, 0x8f, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x18, 0x88, 0x88, 0xfd, 0x88, + 0xcf, 0x98, 0x88, 0x85, 0x0, 0x0, 0x1f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, + 0x0, 0x1f, 0xa0, 0x0, 0xfa, 0x0, 0x8f, 0x10, + 0x0, 0xf9, 0x0, 0x0, 0xf, 0xa0, 0x1, 0xf8, + 0x0, 0x8f, 0x10, 0x0, 0xf9, 0x0, 0x0, 0xf, + 0xa0, 0x4, 0xf6, 0x0, 0x8f, 0x10, 0x0, 0xf9, + 0x0, 0x0, 0xf, 0xa0, 0x9, 0xf2, 0x0, 0x8f, + 0x10, 0x0, 0xf9, 0x0, 0x0, 0xf, 0xa0, 0x2f, + 0xd0, 0x0, 0x7f, 0x30, 0x11, 0xf9, 0x0, 0x0, + 0xf, 0xa0, 0xcf, 0x40, 0x0, 0x7f, 0xff, 0xf6, + 0xf9, 0x0, 0x0, 0xf, 0xa8, 0xfb, 0x0, 0x0, + 0x1a, 0xdd, 0xd3, 0xf9, 0x0, 0x0, 0xf, 0xa0, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf9, 0x0, + 0x0, 0xf, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf9, 0x0, 0x0, 0xf, 0xb3, 0x33, 0x33, + 0x33, 0x33, 0x33, 0x33, 0xf9, 0x0, 0x0, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0x0, 0x0, 0x1f, 0xb3, 0x33, 0x33, 0x33, 0x33, + 0x33, 0x33, 0xf9, 0x0, 0x0, 0x1f, 0xa0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xfa, 0x0, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+8981 "要" */ 0x5, 0x99, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x99, 0x30, 0x7, 0xee, 0xdd, 0xdd, @@ -15943,6 +16218,37 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x43, 0x0, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x0, 0x0, 0x1, 0x60, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xa9, 0x99, 0x99, 0x99, 0xbf, 0xf9, 0x99, 0x99, + 0x99, 0xaa, 0x1f, 0xfe, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xef, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x0, 0x0, 0x4, 0x87, 0x77, + 0x77, 0x77, 0x77, 0x77, 0x89, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x11, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x11, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, 0x4, + 0x66, 0x55, 0x55, 0x55, 0x55, 0x55, 0x66, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x77, 0x77, 0x77, + 0x77, 0x77, 0x77, 0x77, 0x20, 0x0, 0x0, 0x6f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x5, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xaf, 0x40, 0x0, 0x0, 0x5f, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xf3, 0x0, 0x0, 0x5, 0xf7, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0x30, 0x0, + 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf3, 0x0, 0x0, 0x5, 0xfc, 0x88, 0x88, 0x88, + 0x88, 0x88, 0xdf, 0x40, 0x0, 0x0, 0x6f, 0x70, + 0x0, 0x0, 0x0, 0x0, 0xa, 0xf4, 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x19, 0x60, 0x7, 0x80, 0x0, 0x5, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x90, @@ -16292,6 +16598,43 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, + /* U+8BED "语" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xb0, 0x0, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, + 0x0, 0xa, 0xf9, 0x0, 0x46, 0x65, 0x5a, 0xf9, + 0x55, 0x66, 0x66, 0x0, 0x0, 0x0, 0xcf, 0x60, + 0x0, 0x0, 0x9, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2c, 0x20, 0x1, 0x11, 0x1b, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6, 0x76, 0x9f, 0xc7, + 0x77, 0x9f, 0xa0, 0x0, 0x1a, 0x99, 0x99, 0x10, + 0x0, 0x0, 0x7f, 0x60, 0x0, 0x6f, 0x80, 0x0, + 0x2f, 0xff, 0xff, 0x20, 0x0, 0x0, 0xaf, 0x30, + 0x0, 0x8f, 0x60, 0x0, 0x1, 0x0, 0xbf, 0x10, + 0x0, 0x0, 0xdf, 0x0, 0x0, 0xbf, 0x50, 0x0, + 0x0, 0x0, 0xbf, 0x12, 0xa9, 0x88, 0xff, 0x88, + 0x88, 0xef, 0xa9, 0x90, 0x0, 0x0, 0xbf, 0x13, + 0xee, 0xed, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xe0, + 0x0, 0x0, 0xbf, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0x10, 0x0, 0xdf, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xbf, 0x1b, + 0x20, 0xdf, 0x88, 0x88, 0x88, 0x8f, 0xe0, 0x0, + 0x0, 0x0, 0xbf, 0x9f, 0xa0, 0xcf, 0x0, 0x0, + 0x0, 0xe, 0xe0, 0x0, 0x0, 0x0, 0xbf, 0xfe, + 0x20, 0xcf, 0x0, 0x0, 0x0, 0xe, 0xe0, 0x0, + 0x0, 0x0, 0xdf, 0xe2, 0x0, 0xcf, 0x0, 0x0, + 0x0, 0xe, 0xe0, 0x0, 0x0, 0x6, 0xff, 0x30, + 0x0, 0xcf, 0x88, 0x88, 0x88, 0x8f, 0xe0, 0x0, + 0x0, 0x6, 0xf7, 0x0, 0x0, 0xdf, 0xff, 0xff, + 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x20, 0x0, + 0x0, 0xdf, 0x0, 0x0, 0x0, 0xe, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + /* U+8BF7 "请" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0x61, 0x0, 0x0, 0x0, 0x0, 0x64, 0x0, 0x0, 0x0, @@ -20508,392 +20851,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 48284, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 48549, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 48802, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49066, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 49331, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49584, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 49837, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50101, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 50354, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 50642, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 50907, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51160, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 51425, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 51689, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 51954, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 52196, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 52461, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 52714, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 52967, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 53220, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 53473, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 53726, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 53991, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 54233, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 54453, .adv_w = 384, .box_w = 24, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 54705, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 54970, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 55212, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 55454, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 55707, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 55972, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 56225, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 56478, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 56743, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 57007, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 57260, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 57513, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 57789, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 58031, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 58273, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 58515, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 58768, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 59010, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 59263, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 59516, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 59758, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 59989, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 60242, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 60484, .adv_w = 384, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 60715, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 60945, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 61210, .adv_w = 384, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 61441, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 61683, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 61914, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 62156, .adv_w = 384, .box_w = 20, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 62366, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 62586, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 62806, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 63059, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 63301, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 63554, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 63796, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 64038, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 64303, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 64545, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 64821, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 65086, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 65328, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 65593, .adv_w = 384, .box_w = 24, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 65845, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 66110, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 66363, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 66616, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 66869, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 67122, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 67387, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 67640, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 67882, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 68102, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 68355, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 68608, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 68884, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 69160, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 69425, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 69678, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 69954, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 70219, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 70495, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 70748, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 71001, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 71254, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 71530, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 71772, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 72014, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 72267, .adv_w = 384, .box_w = 21, .box_h = 20, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 72477, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 72730, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 72972, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 73214, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 73445, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 73698, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 73963, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 74239, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 74504, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 74735, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 74988, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 75241, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 75461, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 75703, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 75956, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 76221, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 76486, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 76728, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 76981, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 77223, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 77465, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 77730, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 78006, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 78271, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 78513, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 78755, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 79020, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 79262, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 79527, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 79803, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 80068, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 80321, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 80597, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 80873, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 81137, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 81379, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 81655, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 81920, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 82196, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 82461, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 82714, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 82990, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 83266, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 83542, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 83818, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 84094, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 84358, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 84589, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 84854, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 85130, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 85406, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 85671, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 85924, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 86177, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 86441, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 86717, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 86948, .adv_w = 384, .box_w = 17, .box_h = 21, .ofs_x = 4, .ofs_y = -2}, - {.bitmap_index = 87127, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 87392, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 87623, .adv_w = 384, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 87854, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 88096, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 88338, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 88603, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 88868, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 89132, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 89374, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 89650, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 89915, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 90146, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 90399, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 90641, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 90905, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 91181, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 91434, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 91687, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 91963, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 92227, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 92503, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 92768, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 93044, .adv_w = 384, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 93254, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 93496, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 93761, .adv_w = 384, .box_w = 21, .box_h = 22, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 93992, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 94234, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 94499, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 94752, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 95005, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 95258, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 95511, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 95776, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 96041, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 96317, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 96570, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 96835, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97100, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97365, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 97630, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97883, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 98136, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 98412, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 98688, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 98930, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 99183, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 99425, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 99667, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 99920, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 100184, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 100437, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 100657, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 100899, .adv_w = 384, .box_w = 21, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 101120, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 101385, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 101627, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 101857, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 102121, .adv_w = 384, .box_w = 18, .box_h = 21, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 102310, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 102552, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 102805, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 103070, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 103312, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 103577, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 103830, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 104095, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 104337, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 104579, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 104832, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 105085, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 105350, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 105603, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 105879, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 106121, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 106397, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 106662, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 106938, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 107191, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 107444, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 107697, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 107950, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 108226, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 108457, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 108710, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 108975, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 109251, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 109516, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 109780, .adv_w = 384, .box_w = 20, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 109990, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 110221, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 110463, .adv_w = 384, .box_w = 22, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 110683, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 110936, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 111189, .adv_w = 384, .box_w = 18, .box_h = 22, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 111387, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 111640, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 111882, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 112135, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 112388, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 112664, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 112917, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 113181, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 113446, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 113699, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 113952, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 114216, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 114492, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 114768, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 115021, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 115263, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 115527, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 115769, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 116034, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 116299, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 116541, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 116794, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 117047, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 117311, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 117587, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 117852, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 118105, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 118347, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 118623, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 118876, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 119140, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 119382, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 119646, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 119910, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 120175, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 120439, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 120704, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 120980, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 121256, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 121521, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 121763, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 122028, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 122270, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 122535, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 122788, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 123064, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 123329, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 123594, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 123847, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 124112, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 124377, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 124653, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 124917, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 125170, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 125446, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 125688, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 125919, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 126172, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 126448, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 126724, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 127000, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 127242, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 127472, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 127702, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 127932, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 128185, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 128450, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 128703, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 128934, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 129187, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 129429, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 129671, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 129913, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 130155, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 130431, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 130684, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 130937, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 131202, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 131444, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 131709, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 131962, .adv_w = 384, .box_w = 24, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 132262, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 132478, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 132742, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 132958, .adv_w = 264, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 133111, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 133399, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 133687, .adv_w = 432, .box_w = 27, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 133984, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 134272, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 134515, .adv_w = 384, .box_w = 24, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 134827, .adv_w = 192, .box_w = 12, .box_h = 19, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 134941, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 135112, .adv_w = 432, .box_w = 27, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 135436, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 135652, .adv_w = 264, .box_w = 17, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 135856, .adv_w = 336, .box_w = 15, .box_h = 22, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 136021, .adv_w = 336, .box_w = 21, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 136294, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 136525, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 136756, .adv_w = 336, .box_w = 15, .box_h = 22, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 136921, .adv_w = 336, .box_w = 23, .box_h = 22, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 137174, .adv_w = 240, .box_w = 13, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 137317, .adv_w = 240, .box_w = 13, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 137460, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 137691, .adv_w = 336, .box_w = 21, .box_h = 6, .ofs_x = 0, .ofs_y = 6}, - {.bitmap_index = 137754, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 137997, .adv_w = 480, .box_w = 31, .box_h = 24, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 138369, .adv_w = 432, .box_w = 29, .box_h = 24, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 138717, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 138981, .adv_w = 336, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 139128, .adv_w = 336, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 139275, .adv_w = 480, .box_w = 31, .box_h = 19, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 139570, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 139786, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 140074, .adv_w = 384, .box_w = 25, .box_h = 25, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 140387, .adv_w = 336, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 140629, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 140881, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 141112, .adv_w = 336, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 141322, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 141538, .adv_w = 240, .box_w = 17, .box_h = 24, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 141742, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 141994, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 142246, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 142489, .adv_w = 384, .box_w = 26, .box_h = 26, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 142827, .adv_w = 288, .box_w = 18, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 143043, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 143388, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 143628, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 143868, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 144108, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 144348, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 144588, .adv_w = 480, .box_w = 31, .box_h = 20, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 144898, .adv_w = 336, .box_w = 19, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 145126, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 145378, .adv_w = 384, .box_w = 25, .box_h = 25, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 145691, .adv_w = 480, .box_w = 30, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 145961, .adv_w = 288, .box_w = 18, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 146177, .adv_w = 386, .box_w = 25, .box_h = 16, .ofs_x = 0, .ofs_y = 1} + {.bitmap_index = 49066, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49330, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 49595, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 49848, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 50101, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 50366, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 50630, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 50883, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 51171, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 51436, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 51689, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 51954, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 52218, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 52483, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 52725, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 52990, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 53243, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 53496, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 53749, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 54002, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 54255, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 54520, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 54762, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 54982, .adv_w = 384, .box_w = 24, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 55234, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 55499, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 55741, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 55983, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 56236, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 56501, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 56754, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 57007, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 57272, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 57536, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 57789, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 58042, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 58318, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 58560, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 58802, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 59044, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 59297, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 59539, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 59792, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 60045, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 60287, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 60518, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 60771, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 61013, .adv_w = 384, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 61244, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 61474, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 61739, .adv_w = 384, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 61970, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 62212, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 62443, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 62685, .adv_w = 384, .box_w = 20, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 62895, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 63115, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 63335, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 63588, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 63830, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 64083, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 64325, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 64567, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 64832, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 65074, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 65350, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 65615, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 65857, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 66122, .adv_w = 384, .box_w = 24, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 66374, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 66639, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 66892, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 67145, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 67398, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 67651, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 67916, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 68169, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 68411, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 68631, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 68884, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 69137, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 69413, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 69689, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 69954, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 70207, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 70483, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 70748, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 71024, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 71277, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 71530, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 71783, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 72059, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 72301, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 72543, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 72796, .adv_w = 384, .box_w = 21, .box_h = 20, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 73006, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 73259, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 73501, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 73743, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 73974, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 74227, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 74492, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 74768, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 75033, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 75264, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 75517, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 75770, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 75990, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 76232, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 76485, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 76749, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77014, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77279, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 77521, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 77774, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 78016, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 78258, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 78523, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 78799, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 79064, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 79306, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 79548, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 79813, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 80055, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 80320, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 80596, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 80861, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 81114, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 81390, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 81666, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 81930, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 82172, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 82448, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 82713, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 82989, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 83254, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 83507, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 83783, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 84059, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 84335, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 84611, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 84887, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 85151, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 85382, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 85647, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 85923, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 86199, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 86464, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 86717, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 86970, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 87234, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 87510, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 87741, .adv_w = 384, .box_w = 17, .box_h = 21, .ofs_x = 4, .ofs_y = -2}, + {.bitmap_index = 87920, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 88185, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 88416, .adv_w = 384, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 88647, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 88889, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 89131, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 89396, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 89661, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 89925, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 90167, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 90443, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 90708, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 90939, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 91192, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 91434, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 91698, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 91974, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 92227, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 92480, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 92756, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 93020, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 93296, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 93561, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 93837, .adv_w = 384, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 94047, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 94289, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 94554, .adv_w = 384, .box_w = 21, .box_h = 22, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 94785, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 95027, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 95292, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 95545, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 95798, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 96051, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 96304, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 96569, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 96834, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 97110, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 97363, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 97628, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 97893, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98158, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 98423, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98676, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98929, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 99205, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 99481, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 99723, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 99965, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 100218, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 100460, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 100702, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 100955, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 101219, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 101483, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 101736, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 101956, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 102198, .adv_w = 384, .box_w = 21, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 102419, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 102684, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 102926, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 103156, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 103420, .adv_w = 384, .box_w = 18, .box_h = 21, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 103609, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 103851, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 104104, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 104369, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 104611, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 104876, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 105129, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 105394, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 105636, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 105878, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 106131, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 106384, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 106649, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 106902, .adv_w = 384, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 107178, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 107420, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 107696, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 107961, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 108237, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 108490, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 108743, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 108996, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 109249, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 109502, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 109778, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 110009, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 110262, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 110527, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 110803, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 111068, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 111332, .adv_w = 384, .box_w = 20, .box_h = 21, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 111542, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 111773, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 112015, .adv_w = 384, .box_w = 22, .box_h = 20, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 112235, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 112488, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 112741, .adv_w = 384, .box_w = 18, .box_h = 22, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 112939, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 113192, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 113434, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 113687, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 113940, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 114193, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 114469, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 114722, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 114986, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 115251, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 115504, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 115757, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 115999, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 116263, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 116539, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 116815, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 117068, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 117310, .adv_w = 384, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 117541, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 117805, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 118047, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 118312, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 118577, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 118819, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 119072, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 119325, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 119589, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 119865, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 120130, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 120406, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 120659, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 120901, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 121177, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 121430, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 121694, .adv_w = 384, .box_w = 23, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 121936, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 122200, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 122464, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 122729, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 122993, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 123258, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 123534, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 123810, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 124075, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 124317, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 124582, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 124824, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 125089, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 125342, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 125618, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 125883, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 126148, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 126401, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 126666, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 126931, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 127207, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 127471, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 127724, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 128000, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 128242, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 128473, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 128726, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 129002, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 129278, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 129554, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 129796, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 130026, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 130256, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 130486, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 130739, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 131004, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 131257, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 131488, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 131741, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 131983, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 132225, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 132467, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 132709, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 132985, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 133238, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 133491, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 133756, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 133998, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 134263, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 134516, .adv_w = 384, .box_w = 24, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 134816, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 135032, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 135296, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 135512, .adv_w = 264, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 135665, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 135953, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 136241, .adv_w = 432, .box_w = 27, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 136538, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 136826, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 137069, .adv_w = 384, .box_w = 24, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 137381, .adv_w = 192, .box_w = 12, .box_h = 19, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 137495, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 137666, .adv_w = 432, .box_w = 27, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 137990, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 138206, .adv_w = 264, .box_w = 17, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 138410, .adv_w = 336, .box_w = 15, .box_h = 22, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 138575, .adv_w = 336, .box_w = 21, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 138848, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 139079, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 139310, .adv_w = 336, .box_w = 15, .box_h = 22, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 139475, .adv_w = 336, .box_w = 23, .box_h = 22, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 139728, .adv_w = 240, .box_w = 13, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 139871, .adv_w = 240, .box_w = 13, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 140014, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 140245, .adv_w = 336, .box_w = 21, .box_h = 6, .ofs_x = 0, .ofs_y = 6}, + {.bitmap_index = 140308, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 140551, .adv_w = 480, .box_w = 31, .box_h = 24, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 140923, .adv_w = 432, .box_w = 29, .box_h = 24, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 141271, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 141535, .adv_w = 336, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 141682, .adv_w = 336, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 141829, .adv_w = 480, .box_w = 31, .box_h = 19, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 142124, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 142340, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 142628, .adv_w = 384, .box_w = 25, .box_h = 25, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 142941, .adv_w = 336, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 143183, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 143435, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 143666, .adv_w = 336, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 143876, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 144092, .adv_w = 240, .box_w = 17, .box_h = 24, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 144296, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 144548, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 144800, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 145043, .adv_w = 384, .box_w = 26, .box_h = 26, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 145381, .adv_w = 288, .box_w = 18, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 145597, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 145942, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 146182, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 146422, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 146662, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 146902, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 147142, .adv_w = 480, .box_w = 31, .box_h = 20, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 147452, .adv_w = 336, .box_w = 19, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 147680, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 147932, .adv_w = 384, .box_w = 25, .box_h = 25, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 148245, .adv_w = 480, .box_w = 30, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 148515, .adv_w = 288, .box_w = 18, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 148731, .adv_w = 386, .box_w = 25, .box_h = 16, .ofs_x = 0, .ofs_y = 1} }; /*--------------------- @@ -20914,55 +21267,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -20994,7 +21349,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -21099,7 +21454,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -21198,7 +21554,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_26.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_26.c index c6d775eb..232b9d45 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_26.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_26.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 26 px * Bpp: 4 - * Opts: --bpp 4 --size 26 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_26.c + * Opts: --bpp 4 --size 26 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_26.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -7950,6 +7950,46 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0xa, 0x30, 0x0, 0x3, 0x50, 0x0, + /* U+4F53 "体" */ + 0x0, 0x0, 0x5, 0x82, 0x0, 0x0, 0x0, 0x2d, + 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xf6, 0x0, 0x0, + 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0x80, + 0x0, 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0x20, 0xaa, 0xaa, 0xaa, + 0xaf, 0xea, 0xaa, 0xaa, 0xab, 0x20, 0x0, 0x7, + 0xff, 0x10, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x20, 0x0, 0xe, 0xff, 0x10, 0x0, + 0x0, 0x1f, 0xef, 0xef, 0xa0, 0x0, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0x10, 0x0, 0x0, 0x6f, 0xaf, + 0xce, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xef, 0xdf, + 0x10, 0x0, 0x0, 0xbf, 0x6f, 0xc9, 0xf5, 0x0, + 0x0, 0x0, 0xa, 0xf8, 0xcf, 0x10, 0x0, 0x2, + 0xfe, 0x1f, 0xc3, 0xfc, 0x0, 0x0, 0x0, 0xb, + 0xe0, 0xcf, 0x10, 0x0, 0xb, 0xf8, 0x1f, 0xc0, + 0xcf, 0x60, 0x0, 0x0, 0x0, 0x40, 0xcf, 0x10, + 0x0, 0x4f, 0xf1, 0x1f, 0xc0, 0x3f, 0xe1, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0x10, 0x2, 0xef, 0x70, + 0x1f, 0xc0, 0x9, 0xfd, 0x10, 0x0, 0x0, 0x0, + 0xcf, 0x10, 0x1d, 0xfc, 0x0, 0x1f, 0xc0, 0x0, + 0xdf, 0xc1, 0x0, 0x0, 0x0, 0xcf, 0x13, 0xdf, + 0xe2, 0x0, 0x1f, 0xc0, 0x0, 0x2e, 0xfe, 0x50, + 0x0, 0x0, 0xcf, 0x6f, 0xff, 0x33, 0x32, 0x3f, + 0xc2, 0x22, 0x22, 0xef, 0xb0, 0x0, 0x0, 0xcf, + 0x2a, 0xf4, 0xe, 0xff, 0xff, 0xff, 0xff, 0x90, + 0x19, 0x0, 0x0, 0x0, 0xcf, 0x10, 0x20, 0x8, + 0x88, 0x8f, 0xd7, 0x78, 0x50, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0x10, 0x0, 0x0, 0x0, 0x1f, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x10, + 0x0, 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0x10, 0x0, 0x0, 0x0, + 0x2f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbe, 0x20, 0x0, 0x0, 0x0, 0x2f, 0xd0, 0x0, + 0x0, 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbb, @@ -8072,6 +8112,48 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x1f, 0xd0, 0x3c, 0x20, 0x0, 0x0, 0x10, 0x0, 0xc, 0xc7, 0x10, + /* U+4FC4 "俄" */ + 0x0, 0x0, 0x1, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xe2, 0x0, 0x0, 0x0, 0x3, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xfc, 0x0, 0x0, 0x16, + 0xa0, 0x2f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0x51, 0x69, 0xcf, 0xff, 0x60, 0xfc, 0x8, + 0xf2, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x1f, 0xff, + 0xf7, 0x30, 0xf, 0xc0, 0xaf, 0xb0, 0x0, 0x0, + 0xa, 0xf8, 0x0, 0x53, 0xaf, 0x10, 0x0, 0xfc, + 0x1, 0xef, 0x50, 0x0, 0x2, 0xff, 0x30, 0x0, + 0xa, 0xf1, 0x0, 0xf, 0xc0, 0x7, 0xc3, 0x0, + 0x0, 0xaf, 0xf3, 0x0, 0x0, 0xaf, 0x10, 0x0, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x30, + 0x98, 0x8d, 0xf9, 0x88, 0x8f, 0xe8, 0x88, 0x89, + 0x20, 0xd, 0xfe, 0xf3, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf4, 0xa, 0xfc, 0xaf, + 0x30, 0x21, 0x1a, 0xf2, 0x11, 0x1e, 0xd1, 0x11, + 0x12, 0x0, 0x6f, 0x2a, 0xf3, 0x0, 0x0, 0xaf, + 0x10, 0x0, 0xde, 0x0, 0x0, 0x0, 0x0, 0x10, + 0xaf, 0x30, 0x0, 0xa, 0xf1, 0x0, 0xb, 0xf0, + 0x6, 0x40, 0x0, 0x0, 0xa, 0xf3, 0x0, 0x0, + 0xaf, 0x5a, 0xa0, 0x9f, 0x20, 0xef, 0x50, 0x0, + 0x0, 0xaf, 0x30, 0x1, 0x6d, 0xff, 0xfa, 0x6, + 0xf5, 0x7f, 0xb0, 0x0, 0x0, 0xa, 0xf3, 0x7d, + 0xff, 0xff, 0x61, 0x0, 0x3f, 0xbf, 0xe1, 0x0, + 0x0, 0x0, 0xaf, 0x35, 0xfc, 0x6b, 0xf1, 0x0, + 0x0, 0xff, 0xf5, 0x0, 0x0, 0x0, 0xa, 0xf3, + 0x3, 0x0, 0xaf, 0x10, 0x0, 0xe, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0xaf, 0x30, 0x0, 0xa, 0xf1, + 0x0, 0x1c, 0xff, 0x80, 0x0, 0x0, 0x0, 0xa, + 0xf3, 0x0, 0x0, 0xaf, 0x10, 0x3d, 0xfb, 0xff, + 0x10, 0x91, 0x0, 0x0, 0xaf, 0x30, 0x0, 0xb, + 0xf1, 0x7f, 0xfa, 0x7, 0xf9, 0x1f, 0xd0, 0x0, + 0xa, 0xf3, 0x2, 0xab, 0xff, 0x1, 0xd7, 0x0, + 0xd, 0xfc, 0xf9, 0x0, 0x0, 0xbf, 0x40, 0xe, + 0xff, 0xb0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0x20, + 0x0, 0xb, 0xf5, 0x0, 0x78, 0x40, 0x0, 0x0, + 0x0, 0x0, 0x3d, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + /* U+4FDD "保" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9b, @@ -12129,6 +12211,46 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x88, 0x88, 0xcf, 0x30, 0x0, 0xd, 0xf2, 0x4, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x8f, 0x40, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5b, + 0x20, 0x0, 0x0, 0x2, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xf9, 0x0, 0x0, 0x0, + 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xfd, 0x6, 0xdc, 0xcc, 0xcd, 0xfe, 0xaa, 0xaa, + 0xab, 0xb0, 0x0, 0x4, 0xff, 0x20, 0x7e, 0xdd, + 0xdd, 0xef, 0xed, 0xdd, 0xdd, 0xee, 0x0, 0x1, + 0xef, 0x60, 0x0, 0x0, 0x0, 0x9, 0xf5, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xdf, 0x90, 0x22, 0x1, + 0x22, 0x22, 0xcf, 0x52, 0x22, 0x22, 0x20, 0x0, + 0x5f, 0xc0, 0xc, 0xf5, 0xaf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x0, 0x0, 0x71, 0x4, 0xfd, + 0x9, 0xf6, 0x4b, 0xf5, 0x4e, 0xe4, 0x4e, 0xe0, + 0x0, 0x0, 0x0, 0xef, 0x30, 0x9f, 0x20, 0x9f, + 0x20, 0xde, 0x0, 0xed, 0x0, 0x0, 0x0, 0x9f, + 0x80, 0x9, 0xf2, 0x9, 0xf2, 0xd, 0xe0, 0xe, + 0xd0, 0x0, 0x0, 0x5f, 0xf1, 0x0, 0x9f, 0xa9, + 0xdf, 0x99, 0xef, 0x99, 0xfe, 0x0, 0x0, 0x3f, + 0xff, 0x10, 0xa, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe0, 0x0, 0x3e, 0xfe, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xf8, 0xcf, 0x10, 0x11, 0x11, 0x0, 0x0, 0x0, + 0x0, 0x11, 0x12, 0x0, 0x5b, 0xc, 0xf1, 0x7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, + 0x0, 0x0, 0xcf, 0x10, 0x48, 0x88, 0x77, 0x77, + 0x77, 0x77, 0x78, 0x88, 0x0, 0x0, 0xc, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x8b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0x10, 0xd, 0x70, 0xec, + 0xc, 0xf6, 0x0, 0x6, 0xb0, 0x0, 0x0, 0xc, + 0xf1, 0x5, 0xfa, 0xf, 0xd0, 0x2f, 0xe0, 0x0, + 0xcf, 0x80, 0x0, 0x0, 0xcf, 0x10, 0xbf, 0x40, + 0xfc, 0x0, 0x62, 0x5, 0x12, 0xff, 0x40, 0x0, + 0xc, 0xf1, 0x1f, 0xe0, 0xe, 0xd0, 0x0, 0x0, + 0xdf, 0x56, 0xf8, 0x0, 0x0, 0xdf, 0x23, 0xb8, + 0x0, 0xcf, 0xa8, 0x88, 0xaf, 0xf1, 0x5, 0x0, + 0x0, 0xd, 0xf2, 0x0, 0x0, 0x5, 0xef, 0xff, + 0xff, 0xe5, 0x0, 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -15685,6 +15807,43 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x10, 0x0, 0xaf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0x60, 0x0, 0x0, 0x5, 0x50, + /* U+7259 "牙" */ + 0x0, 0x4d, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, + 0xcc, 0xcc, 0xc7, 0x0, 0x0, 0x5f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa5, + 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xff, 0x40, 0x0, 0x0, 0x3f, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xf9, + 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xe0, 0x0, 0x0, 0x0, 0x3f, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xdf, 0x50, + 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xff, 0x99, 0x99, 0x99, 0x99, 0xaf, + 0xe9, 0x99, 0x99, 0x97, 0x0, 0xa, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0x0, 0x2, 0x63, 0x10, 0x0, 0x0, 0xdf, 0xaf, + 0xc0, 0x0, 0x0, 0x11, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xfd, 0x4f, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xf4, 0x3f, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xdf, 0xa0, 0x3f, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xfd, 0x0, 0x3f, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xcf, 0xe1, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4e, 0xfd, 0x10, 0x0, 0x3f, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0xff, + 0xb1, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xef, 0xf7, 0x0, 0x0, 0x0, 0x3f, + 0xc0, 0x0, 0x0, 0x0, 0x8, 0xef, 0xfc, 0x20, + 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0, + 0x6, 0xfe, 0x60, 0x0, 0x0, 0x2, 0xce, 0xff, + 0xb0, 0x0, 0x0, 0x0, 0x0, 0x40, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xfd, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, 0x10, + 0x0, 0x0, 0x0, 0x0, + /* U+72B6 "状" */ 0x0, 0x0, 0x1, 0xaa, 0x0, 0x0, 0x0, 0x5d, 0xd1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, @@ -15838,6 +15997,44 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xd0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xc4, + 0x33, 0x33, 0x33, 0x32, 0xf, 0xff, 0xff, 0xff, + 0x70, 0x0, 0xf, 0xcf, 0xff, 0xff, 0xff, 0xf9, + 0xb, 0xab, 0xfe, 0xab, 0x50, 0x0, 0xf, 0xc6, + 0x65, 0xcf, 0x65, 0x63, 0x0, 0x1, 0xfb, 0x0, + 0x0, 0x0, 0xf, 0xc0, 0x0, 0xbf, 0x20, 0x0, + 0x0, 0x1, 0xfb, 0x0, 0x2, 0x30, 0xf, 0xb0, + 0x0, 0xbf, 0x20, 0x0, 0x0, 0x1, 0xfb, 0x0, + 0xb, 0xf1, 0xf, 0xb0, 0x0, 0xbf, 0x20, 0x0, + 0x0, 0x1, 0xfb, 0x0, 0xb, 0xf1, 0xf, 0xa0, + 0x0, 0xbf, 0x20, 0x0, 0x0, 0x1, 0xfb, 0x0, + 0xb, 0xf0, 0xf, 0xa0, 0x0, 0xbf, 0x20, 0x0, + 0x1, 0x12, 0xfb, 0x11, 0xc, 0xf0, 0x1f, 0x91, + 0x10, 0xbf, 0x21, 0x10, 0xc, 0xff, 0xff, 0xff, + 0x2d, 0xf0, 0x2f, 0x9d, 0xff, 0xff, 0xff, 0xf1, + 0x7, 0xaa, 0xfe, 0x9a, 0x1e, 0xe0, 0x4f, 0x87, + 0x88, 0xdf, 0x88, 0x80, 0x0, 0x1, 0xfb, 0x0, + 0xc, 0xa0, 0x6f, 0x50, 0x0, 0xbf, 0x20, 0x0, + 0x0, 0x1, 0xfb, 0x0, 0x0, 0x0, 0x9f, 0x30, + 0x0, 0xbf, 0x20, 0x0, 0x0, 0x1, 0xfb, 0x0, + 0x0, 0x0, 0xdf, 0x0, 0x0, 0xbf, 0x20, 0x0, + 0x0, 0x1, 0xfb, 0x0, 0x0, 0x2, 0xfb, 0x0, + 0x0, 0xbf, 0x20, 0x0, 0x0, 0x1, 0xfb, 0x1, + 0x40, 0x9, 0xf7, 0x0, 0x0, 0xbf, 0x20, 0x0, + 0x0, 0x1, 0xfd, 0xaf, 0xe0, 0x1f, 0xf1, 0x0, + 0x0, 0xbf, 0x20, 0x0, 0x0, 0x4a, 0xff, 0xfa, + 0x40, 0xbf, 0x90, 0x0, 0x0, 0xbf, 0x20, 0x0, + 0x7f, 0xff, 0xe7, 0x10, 0x8, 0xfe, 0x10, 0xa9, + 0x99, 0xef, 0xa9, 0xaa, 0x2f, 0xc5, 0x0, 0x0, + 0x8f, 0xf4, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x2, 0x0, 0x0, 0x1, 0xaf, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7406 "理" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0xee, 0xee, 0xee, 0xee, 0xee, 0xe4, 0x2, 0xa9, 0x99, 0x99, @@ -16931,6 +17128,47 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xd6, + 0x0, 0x0, 0x0, 0x9, 0xc4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1e, 0xf3, 0x0, 0x0, 0x0, 0xe, + 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xfc, + 0xcc, 0xcd, 0x60, 0x6f, 0xe9, 0x99, 0x99, 0xa4, + 0x0, 0x5, 0xfe, 0xcf, 0xfc, 0xcd, 0x61, 0xef, + 0xff, 0xff, 0xff, 0xf6, 0x0, 0x5f, 0xf3, 0xa, + 0xf3, 0x0, 0xb, 0xf8, 0x1, 0xfc, 0x0, 0x0, + 0x8, 0xff, 0x30, 0x2, 0xfc, 0x0, 0x9f, 0xb0, + 0x0, 0xaf, 0x40, 0x0, 0x6, 0xe3, 0x2, 0x20, + 0x98, 0x2, 0xdd, 0x10, 0x0, 0x5b, 0x40, 0x0, + 0x0, 0x0, 0x1e, 0xd1, 0x0, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xfc, + 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0x75, 0x98, 0x88, 0x88, + 0x88, 0x88, 0xfc, 0x0, 0x0, 0x1e, 0xb0, 0x39, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, + 0x0, 0x1f, 0xc0, 0x1, 0x77, 0x77, 0x77, 0x77, + 0x50, 0x0, 0xfc, 0x0, 0x0, 0xf, 0xb0, 0x1, + 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0xfc, 0x0, + 0x0, 0xf, 0xb0, 0x1, 0xfa, 0x0, 0x0, 0x1f, + 0xa0, 0x0, 0xfc, 0x0, 0x0, 0xf, 0xb0, 0x1, + 0xfa, 0x0, 0x0, 0x1f, 0xa0, 0x0, 0xfc, 0x0, + 0x0, 0xf, 0xb0, 0x1, 0xff, 0xff, 0xff, 0xff, + 0xa0, 0x0, 0xfc, 0x0, 0x0, 0xf, 0xb0, 0x1, + 0xfd, 0x77, 0x77, 0x8f, 0xa0, 0x0, 0xfc, 0x0, + 0x0, 0xf, 0xb0, 0x1, 0xfa, 0x0, 0x0, 0x1f, + 0xa0, 0x0, 0xfc, 0x0, 0x0, 0xf, 0xb0, 0x1, + 0xfd, 0x77, 0x77, 0x8f, 0xa0, 0x0, 0xfc, 0x0, + 0x0, 0xf, 0xb0, 0x2, 0xff, 0xff, 0xff, 0xff, + 0xb0, 0x0, 0xfc, 0x0, 0x0, 0xf, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, + 0x0, 0xf, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0x68, 0xfb, 0x0, 0x0, 0x1f, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, + 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xfd, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x16, 0x61, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -17710,6 +17948,44 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x9a, 0xbb, 0xbb, 0xba, 0xa6, 0x0, 0x0, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x0, 0x26, 0x40, 0x0, 0x0, 0x16, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0xb0, 0x0, 0x0, 0x3f, 0xd0, 0x0, 0x0, 0x0, + 0x2, 0x32, 0x22, 0x6f, 0xb2, 0x22, 0x22, 0x5f, + 0xd2, 0x22, 0x23, 0x30, 0xa, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0x6, 0x99, 0x99, 0xbf, 0xd9, 0x99, 0x99, 0xaf, + 0xe9, 0x99, 0x99, 0xa1, 0x0, 0x0, 0x0, 0x5f, + 0xa0, 0x0, 0x0, 0x2f, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5e, 0x90, 0x3f, 0xd2, 0x2e, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x89, 0x99, 0x99, 0xaf, 0xf9, 0x99, + 0x99, 0x94, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0x31, 0x11, 0x3f, 0xd1, 0x11, + 0x18, 0xf6, 0x0, 0x0, 0x0, 0x0, 0xbf, 0x10, + 0x0, 0x2f, 0xb0, 0x0, 0x8, 0xf6, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0x10, 0x0, 0x2f, 0xb0, 0x0, + 0x8, 0xf6, 0x0, 0x0, 0x0, 0x0, 0xbf, 0x10, + 0x0, 0x3f, 0xa0, 0x0, 0x8, 0xf6, 0x0, 0x0, + 0x7b, 0xbb, 0xef, 0xba, 0xaa, 0xbf, 0xda, 0xaa, + 0xad, 0xfc, 0xab, 0xb0, 0x9f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xdf, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb, 0xf9, 0x2e, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbf, 0xd0, 0x3, 0xff, + 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d, + 0xfd, 0x10, 0x0, 0x3e, 0xfd, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x3a, 0xff, 0xc1, 0x0, 0x0, 0x2, + 0xdf, 0xfb, 0x40, 0x0, 0x5, 0x9d, 0xff, 0xe6, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfe, 0x90, + 0x3, 0xff, 0xd7, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x19, 0xff, 0x30, 0x0, 0x44, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, @@ -18037,6 +18313,43 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x4, 0x9d, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+897F "西" */ + 0x28, 0x87, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, + 0x77, 0x77, 0x78, 0x81, 0x3f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0x2, 0x11, 0x0, 0x0, 0x6f, 0x50, 0x9, 0xf2, + 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0x50, 0x9, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0x50, 0x9, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0x50, 0x9, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9, 0x99, 0x99, 0xcf, 0xb9, 0x9d, 0xfa, + 0x99, 0x99, 0x91, 0x0, 0x0, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, + 0x0, 0xf, 0xe0, 0x0, 0x7f, 0x40, 0x9, 0xf2, + 0x0, 0xb, 0xf1, 0x0, 0x0, 0xf, 0xe0, 0x0, + 0x9f, 0x20, 0x9, 0xf2, 0x0, 0xb, 0xf0, 0x0, + 0x0, 0xf, 0xe0, 0x0, 0xcf, 0x0, 0x9, 0xf2, + 0x0, 0xb, 0xf0, 0x0, 0x0, 0xf, 0xe0, 0x1, + 0xfd, 0x0, 0x9, 0xf2, 0x0, 0xb, 0xf0, 0x0, + 0x0, 0xf, 0xe0, 0x7, 0xf8, 0x0, 0x9, 0xf2, + 0x0, 0xb, 0xf0, 0x0, 0x0, 0xf, 0xe0, 0x1f, + 0xf1, 0x0, 0x9, 0xfb, 0x89, 0x7b, 0xf0, 0x0, + 0x0, 0xf, 0xe1, 0xdf, 0x80, 0x0, 0x6, 0xff, + 0xff, 0x9b, 0xf0, 0x0, 0x0, 0xf, 0xe3, 0xdc, + 0x0, 0x0, 0x0, 0x47, 0x77, 0x3b, 0xf0, 0x0, + 0x0, 0xf, 0xe0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb, 0xf0, 0x0, 0x0, 0xf, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xf0, 0x0, + 0x0, 0xf, 0xf7, 0x77, 0x77, 0x77, 0x77, 0x77, + 0x77, 0x7d, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, + 0x0, 0xf, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb, 0xf1, 0x0, 0x0, 0xf, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xf1, 0x0, + 0x0, 0x1, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + /* U+8981 "要" */ 0x3, 0x98, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x99, 0x10, 0x6f, 0xff, 0xff, @@ -18242,6 +18555,41 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x52, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xbb, + 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, + 0xaa, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd0, 0x0, 0x0, 0x1a, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x9a, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, + 0x2a, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe0, 0x0, 0x0, 0xf, 0xf7, 0x77, 0x77, + 0x77, 0x77, 0x77, 0x9f, 0xe0, 0x0, 0x0, 0xf, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xd0, + 0x0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3f, 0xd0, 0x0, 0x0, 0xe, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xd0, 0x0, 0x0, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd0, 0x0, 0x0, 0xf, 0xfb, 0xbb, 0xbb, 0xbb, + 0xbb, 0xbb, 0xcf, 0xe0, 0x0, 0x0, 0xf, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x2, 0x30, 0x0, 0x32, 0x0, 0x0, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, @@ -18646,6 +18994,48 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x36, 0x0, + /* U+8BED "语" */ + 0x0, 0x1a, 0x10, 0x0, 0x79, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x89, 0x90, 0x0, 0x8, 0xfc, 0x0, + 0xc, 0xfe, 0xee, 0xef, 0xfe, 0xee, 0xee, 0xff, + 0x0, 0x0, 0xc, 0xfa, 0x0, 0x0, 0x0, 0x4, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, + 0xf3, 0x0, 0x0, 0x0, 0x6f, 0x90, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x36, 0x0, 0x5, 0x54, + 0x4a, 0xf8, 0x22, 0x22, 0x21, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, + 0x65, 0x6f, 0xe6, 0x66, 0x6c, 0xf7, 0x0, 0x4, + 0x43, 0x33, 0x20, 0x0, 0x0, 0x5, 0xfb, 0x0, + 0x0, 0xcf, 0x50, 0x0, 0xdf, 0xff, 0xfe, 0x0, + 0x0, 0x0, 0x8f, 0x80, 0x0, 0xe, 0xf3, 0x0, + 0x8, 0x98, 0x9f, 0xe0, 0x0, 0x0, 0xb, 0xf4, + 0x0, 0x1, 0xff, 0x20, 0x0, 0x0, 0x1, 0xfd, + 0x4, 0x99, 0x99, 0xff, 0xa9, 0x99, 0xaf, 0xf9, + 0xaa, 0x0, 0x0, 0x1f, 0xd0, 0x7f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x1, + 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xd0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xfd, 0x0, 0x0, 0xab, 0xbb, 0xbb, 0xbb, + 0xbb, 0xb9, 0x0, 0x0, 0x0, 0x1f, 0xd0, 0x40, + 0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x1, 0xfd, 0x5f, 0x30, 0xdf, 0x10, 0x0, + 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xef, + 0xf7, 0xd, 0xf1, 0x0, 0x0, 0x0, 0x3f, 0xc0, + 0x0, 0x0, 0x2, 0xff, 0xf9, 0x0, 0xdf, 0x10, + 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x4f, + 0xfc, 0x0, 0xd, 0xf1, 0x0, 0x0, 0x0, 0x3f, + 0xc0, 0x0, 0x0, 0xd, 0xfe, 0x10, 0x0, 0xdf, + 0xa9, 0x99, 0x99, 0x9a, 0xfc, 0x0, 0x0, 0x1, + 0xdf, 0x50, 0x0, 0xd, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0x0, 0x1, 0x90, 0x0, 0x0, + 0xef, 0x10, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xf1, 0x0, 0x0, + 0x0, 0x3f, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + /* U+8BF7 "请" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x0, @@ -23507,392 +23897,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 55562, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 55875, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 56163, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 56476, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 56789, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 57089, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 57389, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 57689, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 57989, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 58302, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 58627, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 58903, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 59228, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 59528, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 59841, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 60117, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 60417, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 60705, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 60993, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 61281, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 61569, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 61869, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 62182, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 62482, .adv_w = 416, .box_w = 21, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 62734, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 63022, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 63322, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 63610, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 63898, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 64186, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 64486, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 64774, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 65074, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 65374, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 65687, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 65987, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 66275, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 66600, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 66888, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 67176, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 67476, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 67764, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 68052, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 68340, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 68628, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 68916, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 69192, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 69492, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 69792, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 70080, .adv_w = 416, .box_w = 22, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 70366, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 70666, .adv_w = 416, .box_w = 22, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 70941, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 71241, .adv_w = 416, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 71506, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 71794, .adv_w = 416, .box_w = 22, .box_h = 22, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 72036, .adv_w = 416, .box_w = 22, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 72300, .adv_w = 416, .box_w = 22, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 72564, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 72877, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 73177, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 73465, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 73765, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 74041, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 74341, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 74641, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 74966, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 75266, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 75554, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 75867, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 76179, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 76479, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 76767, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 77067, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 77355, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 77643, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 77955, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 78243, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 78543, .adv_w = 416, .box_w = 22, .box_h = 24, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 78807, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 79095, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 79420, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 79733, .adv_w = 416, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 80071, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 80371, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 80671, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 80971, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 81259, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 81572, .adv_w = 416, .box_w = 22, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 81836, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 82124, .adv_w = 416, .box_w = 23, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 82400, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 82725, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 83013, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 83301, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 83601, .adv_w = 416, .box_w = 23, .box_h = 22, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 83854, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 84154, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 84430, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 84718, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 84994, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 85294, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 85607, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 85907, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 86207, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 86483, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 86783, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 87071, .adv_w = 416, .box_w = 22, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 87335, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 87611, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 87899, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 88212, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 88512, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 88800, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 89088, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 89376, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 89676, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 89989, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 90302, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 90602, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 90890, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 91166, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 91466, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 91754, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 92067, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 92380, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 92668, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 92980, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 93293, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 93606, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 93919, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 94232, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 94545, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 94858, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 95171, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 95471, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 95771, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 96084, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 96397, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 96709, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 97022, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97335, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97648, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97936, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 98224, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 98537, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 98862, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 99150, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 99438, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 99738, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 100050, .adv_w = 416, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 100388, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 100664, .adv_w = 416, .box_w = 18, .box_h = 23, .ofs_x = 5, .ofs_y = -2}, - {.bitmap_index = 100871, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 101184, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 101460, .adv_w = 416, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 101736, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 102012, .adv_w = 416, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 102288, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 102588, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 102876, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 103176, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 103476, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 103776, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 104101, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 104377, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 104677, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 104953, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 105265, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 105590, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 105903, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 106203, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 106503, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 106816, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 107141, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 107454, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 107754, .adv_w = 416, .box_w = 23, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 107996, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 108284, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 108597, .adv_w = 416, .box_w = 23, .box_h = 23, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 108862, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 109150, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 109462, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 109750, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 110038, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 110338, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 110626, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 110939, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 111227, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 111552, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 111864, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 112152, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 112452, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 112777, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 113102, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 113402, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 113690, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 114015, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 114315, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 114603, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 114903, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 115191, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 115479, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 115755, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 116043, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 116331, .adv_w = 416, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 116584, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 116884, .adv_w = 416, .box_w = 22, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 117137, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 117450, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 117738, .adv_w = 416, .box_w = 22, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 118013, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 118325, .adv_w = 416, .box_w = 18, .box_h = 22, .ofs_x = 4, .ofs_y = -2}, - {.bitmap_index = 118523, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 118799, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 119112, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 119412, .adv_w = 416, .box_w = 23, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 119688, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 120013, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 120301, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 120614, .adv_w = 416, .box_w = 23, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 120879, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 121179, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 121491, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 121791, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 122091, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 122404, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 122704, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 123004, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 123317, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 123629, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 123954, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 124254, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 124554, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 124842, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 125142, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 125467, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 125743, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 126055, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 126355, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 126680, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 126993, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 127305, .adv_w = 416, .box_w = 22, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 127558, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 127834, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 128134, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 128410, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 128698, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 129010, .adv_w = 416, .box_w = 18, .box_h = 24, .ofs_x = 4, .ofs_y = -2}, - {.bitmap_index = 129226, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 129526, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 129814, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 130114, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 130414, .adv_w = 416, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 130752, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 131065, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 131378, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 131666, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 131979, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 132267, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 132567, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 132892, .adv_w = 416, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 133230, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 133530, .adv_w = 416, .box_w = 22, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 133805, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 134118, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 134406, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 134706, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 135019, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 135307, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 135620, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 135920, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 136220, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 136533, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 136833, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 137146, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 137434, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 137747, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 138035, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 138335, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 138623, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 138948, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 139261, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 139574, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 139887, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 140187, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 140487, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 140812, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 141112, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 141400, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 141700, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 141988, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 142301, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 142613, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 142938, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 143238, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 143538, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 143826, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 144114, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 144414, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 144739, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 145039, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 145352, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 145640, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 145916, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 146192, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 146480, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 146780, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 147093, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 147418, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 147706, .adv_w = 416, .box_w = 22, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 147981, .adv_w = 416, .box_w = 22, .box_h = 26, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 148267, .adv_w = 416, .box_w = 22, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 148542, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 148854, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 149167, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 149455, .adv_w = 416, .box_w = 24, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 149719, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 150031, .adv_w = 416, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 150296, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 150572, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 150848, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 151124, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 151436, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 151736, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 152048, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 152373, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 152673, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 152986, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 153286, .adv_w = 416, .box_w = 27, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 153664, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 153924, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 154236, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 154496, .adv_w = 286, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 154667, .adv_w = 416, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 155005, .adv_w = 416, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 155356, .adv_w = 468, .box_w = 30, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 155716, .adv_w = 416, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 156067, .adv_w = 468, .box_w = 30, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 156367, .adv_w = 416, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 156718, .adv_w = 208, .box_w = 13, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 156855, .adv_w = 312, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 157065, .adv_w = 468, .box_w = 30, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 157455, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 157715, .adv_w = 286, .box_w = 18, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 157958, .adv_w = 364, .box_w = 17, .box_h = 25, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 158171, .adv_w = 364, .box_w = 23, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 158493, .adv_w = 364, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 158769, .adv_w = 364, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 159045, .adv_w = 364, .box_w = 17, .box_h = 25, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 159258, .adv_w = 364, .box_w = 25, .box_h = 24, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 159558, .adv_w = 260, .box_w = 14, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 159719, .adv_w = 260, .box_w = 14, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 159880, .adv_w = 364, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 160156, .adv_w = 364, .box_w = 23, .box_h = 6, .ofs_x = 0, .ofs_y = 7}, - {.bitmap_index = 160225, .adv_w = 468, .box_w = 30, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 160525, .adv_w = 520, .box_w = 33, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 160971, .adv_w = 468, .box_w = 31, .box_h = 27, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 161390, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 161702, .adv_w = 364, .box_w = 23, .box_h = 14, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 161863, .adv_w = 364, .box_w = 23, .box_h = 14, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 162024, .adv_w = 520, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 162371, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 162631, .adv_w = 416, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 162982, .adv_w = 416, .box_w = 27, .box_h = 27, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 163347, .adv_w = 364, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 163635, .adv_w = 364, .box_w = 23, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 163946, .adv_w = 364, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 164222, .adv_w = 364, .box_w = 23, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 164464, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 164724, .adv_w = 260, .box_w = 18, .box_h = 27, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 164967, .adv_w = 364, .box_w = 23, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 165278, .adv_w = 364, .box_w = 23, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 165589, .adv_w = 468, .box_w = 30, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 165889, .adv_w = 416, .box_w = 28, .box_h = 28, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 166281, .adv_w = 312, .box_w = 20, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 166551, .adv_w = 520, .box_w = 33, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 166947, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 167228, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 167509, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 167790, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 168071, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 168352, .adv_w = 520, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 168699, .adv_w = 364, .box_w = 21, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 168983, .adv_w = 364, .box_w = 23, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 169294, .adv_w = 416, .box_w = 27, .box_h = 27, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 169659, .adv_w = 520, .box_w = 33, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 169989, .adv_w = 312, .box_w = 20, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 170259, .adv_w = 418, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 1} + {.bitmap_index = 56476, .adv_w = 416, .box_w = 26, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 56775, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 57088, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 57388, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 57688, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 58001, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 58301, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 58601, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 58914, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 59239, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 59515, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 59840, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 60140, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 60453, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 60729, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 61029, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 61317, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 61605, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 61893, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 62181, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 62481, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 62794, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 63094, .adv_w = 416, .box_w = 21, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 63346, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 63634, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 63934, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 64222, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 64510, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 64798, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 65098, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 65386, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 65686, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 65986, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 66299, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 66599, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 66887, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 67212, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 67500, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 67788, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 68088, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 68376, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 68664, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 68952, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 69240, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 69528, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 69804, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 70104, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 70404, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 70692, .adv_w = 416, .box_w = 22, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 70978, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 71278, .adv_w = 416, .box_w = 22, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 71553, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 71853, .adv_w = 416, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 72118, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 72406, .adv_w = 416, .box_w = 22, .box_h = 22, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 72648, .adv_w = 416, .box_w = 22, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 72912, .adv_w = 416, .box_w = 22, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 73176, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 73489, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 73789, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 74077, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 74377, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 74653, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 74953, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 75253, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 75578, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 75878, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 76166, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 76479, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 76791, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 77091, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77379, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77679, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77967, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 78255, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 78567, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 78855, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 79155, .adv_w = 416, .box_w = 22, .box_h = 24, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 79419, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 79707, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 80032, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 80345, .adv_w = 416, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 80683, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 80983, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 81283, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 81583, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 81871, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 82184, .adv_w = 416, .box_w = 22, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 82448, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 82736, .adv_w = 416, .box_w = 23, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 83012, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 83337, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 83625, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 83913, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 84213, .adv_w = 416, .box_w = 23, .box_h = 22, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 84466, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 84766, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 85042, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 85330, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 85606, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 85906, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 86219, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 86519, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 86819, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 87095, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 87395, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 87683, .adv_w = 416, .box_w = 22, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 87947, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 88223, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 88511, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 88811, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 89124, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 89424, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 89712, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 90000, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 90288, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 90588, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 90901, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 91214, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 91514, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 91802, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 92078, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 92378, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 92666, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 92979, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 93292, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 93580, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 93892, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 94205, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 94518, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 94831, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 95144, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 95457, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 95770, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 96083, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 96383, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 96683, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 96996, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 97309, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 97621, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 97934, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98247, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98560, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98848, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 99136, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 99449, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 99774, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 100062, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 100350, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 100650, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 100962, .adv_w = 416, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 101300, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 101576, .adv_w = 416, .box_w = 18, .box_h = 23, .ofs_x = 5, .ofs_y = -2}, + {.bitmap_index = 101783, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 102096, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 102372, .adv_w = 416, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 102648, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 102924, .adv_w = 416, .box_w = 23, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 103200, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 103500, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 103788, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 104088, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 104388, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 104688, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 105013, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 105289, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 105589, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 105865, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 106177, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 106502, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 106815, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 107115, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 107415, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 107728, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 108053, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 108366, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 108666, .adv_w = 416, .box_w = 23, .box_h = 21, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 108908, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 109196, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 109509, .adv_w = 416, .box_w = 23, .box_h = 23, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 109774, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 110062, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 110374, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 110662, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 110950, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 111250, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 111538, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 111851, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 112139, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 112464, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 112776, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 113064, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 113364, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 113689, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 114014, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 114314, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 114602, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 114927, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 115227, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 115515, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 115791, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 116091, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 116379, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 116667, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 116943, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 117231, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 117519, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 117807, .adv_w = 416, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 118060, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 118360, .adv_w = 416, .box_w = 22, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 118613, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 118926, .adv_w = 416, .box_w = 23, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 119214, .adv_w = 416, .box_w = 22, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 119489, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 119801, .adv_w = 416, .box_w = 18, .box_h = 22, .ofs_x = 4, .ofs_y = -2}, + {.bitmap_index = 119999, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 120275, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 120588, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 120888, .adv_w = 416, .box_w = 23, .box_h = 24, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 121164, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 121489, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 121777, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 122090, .adv_w = 416, .box_w = 23, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 122355, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 122655, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 122967, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 123267, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 123567, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 123880, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 124180, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 124480, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 124793, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 125105, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 125430, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 125742, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 126042, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 126342, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 126630, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 126930, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 127255, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 127531, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 127843, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 128143, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 128468, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 128781, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 129093, .adv_w = 416, .box_w = 22, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 129346, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 129622, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 129922, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 130198, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 130486, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 130798, .adv_w = 416, .box_w = 18, .box_h = 24, .ofs_x = 4, .ofs_y = -2}, + {.bitmap_index = 131014, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 131314, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 131602, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 131890, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 132190, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 132490, .adv_w = 416, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 132828, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 133141, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 133454, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 133742, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 134055, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 134343, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 134619, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 134919, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 135244, .adv_w = 416, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 135582, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 135882, .adv_w = 416, .box_w = 22, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 136157, .adv_w = 416, .box_w = 22, .box_h = 24, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 136421, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 136734, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 137022, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 137322, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 137635, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 137923, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 138236, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 138536, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 138836, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 139149, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 139449, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 139762, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 140075, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 140363, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 140676, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 140964, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 141264, .adv_w = 416, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 141552, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 141877, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 142190, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 142503, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 142816, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 143116, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 143416, .adv_w = 416, .box_w = 25, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 143741, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 144041, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 144329, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 144629, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 144917, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 145230, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 145542, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 145867, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 146167, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 146467, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 146755, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 147043, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 147343, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 147668, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 147968, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 148281, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 148569, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 148845, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 149121, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 149409, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 149709, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 150022, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 150347, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 150635, .adv_w = 416, .box_w = 22, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 150910, .adv_w = 416, .box_w = 22, .box_h = 26, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 151196, .adv_w = 416, .box_w = 22, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 151471, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 151783, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 152096, .adv_w = 416, .box_w = 24, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 152384, .adv_w = 416, .box_w = 24, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 152648, .adv_w = 416, .box_w = 24, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 152960, .adv_w = 416, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 153225, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 153501, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 153777, .adv_w = 416, .box_w = 24, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 154053, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 154365, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 154665, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 154977, .adv_w = 416, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 155302, .adv_w = 416, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 155602, .adv_w = 416, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 155915, .adv_w = 416, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 156215, .adv_w = 416, .box_w = 27, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 156593, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 156853, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 157165, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 157425, .adv_w = 286, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 157596, .adv_w = 416, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 157934, .adv_w = 416, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 158285, .adv_w = 468, .box_w = 30, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 158645, .adv_w = 416, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 158996, .adv_w = 468, .box_w = 30, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 159296, .adv_w = 416, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 159647, .adv_w = 208, .box_w = 13, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 159784, .adv_w = 312, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 159994, .adv_w = 468, .box_w = 30, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 160384, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 160644, .adv_w = 286, .box_w = 18, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 160887, .adv_w = 364, .box_w = 17, .box_h = 25, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 161100, .adv_w = 364, .box_w = 23, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 161422, .adv_w = 364, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 161698, .adv_w = 364, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 161974, .adv_w = 364, .box_w = 17, .box_h = 25, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 162187, .adv_w = 364, .box_w = 25, .box_h = 24, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 162487, .adv_w = 260, .box_w = 14, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 162648, .adv_w = 260, .box_w = 14, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 162809, .adv_w = 364, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 163085, .adv_w = 364, .box_w = 23, .box_h = 6, .ofs_x = 0, .ofs_y = 7}, + {.bitmap_index = 163154, .adv_w = 468, .box_w = 30, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 163454, .adv_w = 520, .box_w = 33, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 163900, .adv_w = 468, .box_w = 31, .box_h = 27, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 164319, .adv_w = 416, .box_w = 26, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 164631, .adv_w = 364, .box_w = 23, .box_h = 14, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 164792, .adv_w = 364, .box_w = 23, .box_h = 14, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 164953, .adv_w = 520, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 165300, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 165560, .adv_w = 416, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 165911, .adv_w = 416, .box_w = 27, .box_h = 27, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 166276, .adv_w = 364, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 166564, .adv_w = 364, .box_w = 23, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 166875, .adv_w = 364, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 167151, .adv_w = 364, .box_w = 23, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 167393, .adv_w = 416, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 167653, .adv_w = 260, .box_w = 18, .box_h = 27, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 167896, .adv_w = 364, .box_w = 23, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 168207, .adv_w = 364, .box_w = 23, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 168518, .adv_w = 468, .box_w = 30, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 168818, .adv_w = 416, .box_w = 28, .box_h = 28, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 169210, .adv_w = 312, .box_w = 20, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 169480, .adv_w = 520, .box_w = 33, .box_h = 24, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 169876, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 170157, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 170438, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 170719, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 171000, .adv_w = 520, .box_w = 33, .box_h = 17, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 171281, .adv_w = 520, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 171628, .adv_w = 364, .box_w = 21, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 171912, .adv_w = 364, .box_w = 23, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 172223, .adv_w = 416, .box_w = 27, .box_h = 27, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 172588, .adv_w = 520, .box_w = 33, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 172918, .adv_w = 312, .box_w = 20, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 173188, .adv_w = 418, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 1} }; /*--------------------- @@ -23913,55 +24313,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -23993,7 +24395,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -24098,7 +24500,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -24197,7 +24600,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_28.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_28.c index 309af102..604acb04 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_28.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_28.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 28 px * Bpp: 4 - * Opts: --bpp 4 --size 28 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_28.c + * Opts: --bpp 4 --size 28 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_28.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -9106,6 +9106,51 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x2f, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x85, 0x0, 0x0, 0x4, 0x40, 0x0, + /* U+4F53 "体" */ + 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x5, + 0x61, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbe, 0x80, 0x0, 0x0, 0x0, 0xef, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf7, 0x0, + 0x0, 0x0, 0xd, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xff, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xaf, 0x90, 0x0, 0x0, 0x0, 0xd, 0xf2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf3, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xfe, 0x2, 0xdd, 0xcc, 0xcc, + 0xcf, 0xfd, 0xcc, 0xcc, 0xcd, 0xd2, 0x0, 0x0, + 0xdf, 0xe0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x20, 0x0, 0x5f, 0xfe, 0x0, + 0x0, 0x0, 0xe, 0xfe, 0xfe, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xff, 0xe0, 0x0, 0x0, 0x3, + 0xfd, 0xdf, 0xaf, 0x70, 0x0, 0x0, 0x0, 0x6, + 0xfe, 0xfe, 0x0, 0x0, 0x0, 0x9f, 0x8d, 0xf5, + 0xfd, 0x0, 0x0, 0x0, 0x2, 0xff, 0x5f, 0xe0, + 0x0, 0x0, 0xe, 0xf3, 0xdf, 0x2c, 0xf5, 0x0, + 0x0, 0x0, 0x7f, 0xb1, 0xfe, 0x0, 0x0, 0x7, + 0xfd, 0xd, 0xf2, 0x5f, 0xd0, 0x0, 0x0, 0x0, + 0x91, 0x1f, 0xe0, 0x0, 0x1, 0xff, 0x50, 0xdf, + 0x20, 0xdf, 0x80, 0x0, 0x0, 0x0, 0x1, 0xfe, + 0x0, 0x0, 0xcf, 0xc0, 0xd, 0xf2, 0x3, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x9f, + 0xf2, 0x0, 0xdf, 0x20, 0x8, 0xff, 0x40, 0x0, + 0x0, 0x1, 0xfe, 0x0, 0x9f, 0xf6, 0x0, 0xd, + 0xf2, 0x0, 0xb, 0xff, 0x70, 0x0, 0x0, 0x1f, + 0xe1, 0xbf, 0xf9, 0x0, 0x0, 0xdf, 0x20, 0x0, + 0xb, 0xff, 0xd1, 0x0, 0x1, 0xfe, 0x9f, 0xfa, + 0xa, 0xaa, 0xae, 0xfa, 0x9a, 0xa3, 0xa, 0xf4, + 0x0, 0x0, 0x1f, 0xe0, 0x88, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x50, 0x3, 0x0, 0x0, 0x1, + 0xfe, 0x0, 0x0, 0x3, 0x33, 0x2d, 0xf4, 0x22, + 0x31, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xef, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xed, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xf3, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x0, 0x7, 0x10, 0x0, 0x0, 0x0, 0x8, 0xb7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, @@ -9242,6 +9287,52 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xf9, 0x0, 0x0, 0xf, 0xf1, 0xa, 0x50, 0x0, 0x0, 0x0, 0x10, 0x0, 0x2e, 0xa5, 0x0, + /* U+4FC4 "俄" */ + 0x0, 0x0, 0x4, 0x51, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xaf, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xfd, 0x0, + 0x0, 0x3, 0x97, 0x5, 0xfc, 0x0, 0x10, 0x0, + 0x0, 0x0, 0x2, 0xff, 0x50, 0x47, 0xae, 0xff, + 0xf2, 0x4f, 0xb0, 0x7f, 0x40, 0x0, 0x0, 0x0, + 0x8f, 0xd0, 0xc, 0xff, 0xfd, 0x73, 0x4, 0xfb, + 0xa, 0xfd, 0x0, 0x0, 0x0, 0xe, 0xf7, 0x0, + 0x48, 0x6f, 0xb0, 0x0, 0x3f, 0xb0, 0x1e, 0xf7, + 0x0, 0x0, 0x6, 0xff, 0x10, 0x0, 0x2, 0xfb, + 0x0, 0x3, 0xfb, 0x0, 0x7f, 0x90, 0x0, 0x0, + 0xef, 0xe0, 0x0, 0x0, 0x2f, 0xb0, 0x0, 0x3f, + 0xb0, 0x0, 0x30, 0x0, 0x0, 0x8f, 0xfe, 0x0, + 0x22, 0x24, 0xfb, 0x11, 0x14, 0xfb, 0x11, 0x12, + 0x21, 0x0, 0x2f, 0xff, 0xe0, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xc, + 0xfa, 0xfe, 0x0, 0x9a, 0xab, 0xfe, 0xaa, 0xab, + 0xfe, 0xaa, 0xaa, 0xb7, 0x7, 0xfe, 0x2f, 0xe0, + 0x0, 0x0, 0x2f, 0xb0, 0x0, 0x1f, 0xc0, 0x0, + 0x0, 0x0, 0x7, 0x50, 0xfe, 0x0, 0x0, 0x2, + 0xfb, 0x0, 0x0, 0xfe, 0x0, 0x10, 0x0, 0x0, + 0x0, 0xf, 0xe0, 0x0, 0x0, 0x2f, 0xb0, 0x12, + 0xd, 0xf0, 0x8, 0xc3, 0x0, 0x0, 0x0, 0xfe, + 0x0, 0x0, 0x2, 0xfd, 0xcf, 0x60, 0xbf, 0x31, + 0xff, 0x70, 0x0, 0x0, 0xf, 0xe0, 0x1, 0x59, + 0xef, 0xff, 0xb3, 0x8, 0xf6, 0x9f, 0xb0, 0x0, + 0x0, 0x0, 0xfe, 0x9, 0xff, 0xff, 0xfc, 0x0, + 0x0, 0x5f, 0xcf, 0xe1, 0x0, 0x0, 0x0, 0xf, + 0xe0, 0x1f, 0xa5, 0x3f, 0xb0, 0x0, 0x0, 0xff, + 0xf4, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x10, + 0x2, 0xfb, 0x0, 0x0, 0x3f, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0, 0x2f, 0xb0, + 0x0, 0x4f, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, + 0xfe, 0x0, 0x0, 0x2, 0xfb, 0x0, 0x8f, 0xf8, + 0xff, 0x30, 0xa5, 0x0, 0x0, 0xf, 0xe0, 0x0, + 0x0, 0x4f, 0xa0, 0xdf, 0xf6, 0x7, 0xfc, 0xe, + 0xf3, 0x0, 0x1, 0xff, 0x0, 0xa, 0xbe, 0xf9, + 0x3, 0xd3, 0x0, 0xc, 0xfc, 0xfe, 0x0, 0x0, + 0x1f, 0xf0, 0x0, 0x9f, 0xff, 0x40, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0x80, 0x0, 0x2, 0xff, 0x10, + 0x3, 0x96, 0x10, 0x0, 0x0, 0x0, 0x0, 0x3e, + 0xd1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4FDD "保" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -13873,6 +13964,51 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x4, 0xfe, 0x0, 0x50, 0x0, 0xe, 0xf2, 0x0, 0x0, 0x0, 0xcf, 0x20, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xb6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xee, 0x50, 0x0, 0x0, 0x0, 0xcf, 0x70, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xf3, 0x11, + 0x10, 0x0, 0xe, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xf6, 0x9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1e, + 0xf9, 0x0, 0x7c, 0xbb, 0xbb, 0xcf, 0xfb, 0xbb, + 0xbb, 0xbc, 0xc0, 0x0, 0xd, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xfc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xfe, 0x10, 0x84, 0x5, 0x77, 0x77, + 0xbf, 0xd7, 0x77, 0x77, 0x77, 0x0, 0x0, 0xcf, + 0x20, 0x2f, 0xf3, 0xaf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe0, 0x0, 0x1, 0x30, 0xb, 0xf9, + 0xa, 0xf4, 0x5, 0xf8, 0x5, 0xf9, 0x1, 0xfd, + 0x0, 0x0, 0x0, 0x6, 0xfd, 0x0, 0x9f, 0x40, + 0x5f, 0x80, 0x4f, 0x90, 0xf, 0xd0, 0x0, 0x0, + 0x1, 0xff, 0x30, 0xa, 0xf4, 0x5, 0xf8, 0x4, + 0xf9, 0x0, 0xfd, 0x0, 0x0, 0x0, 0xcf, 0xc0, + 0x0, 0xaf, 0xb9, 0xbf, 0xc9, 0xbf, 0xd9, 0x9f, + 0xe0, 0x0, 0x0, 0x9f, 0xfc, 0x0, 0xb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, + 0x8f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf6, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xf6, 0x3f, 0xc0, 0x8, 0xdd, + 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcd, 0xdd, 0x10, + 0x4, 0x3, 0xfc, 0x0, 0x9f, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xf2, 0x0, 0x0, 0x3f, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x4, + 0x0, 0x45, 0x19, 0xf9, 0x0, 0x0, 0x3, 0x0, + 0x0, 0x0, 0x3f, 0xc0, 0x3, 0xfd, 0xd, 0xf2, + 0x2f, 0xf3, 0x0, 0x1d, 0xf2, 0x0, 0x0, 0x3, + 0xfc, 0x0, 0x9f, 0x80, 0xcf, 0x10, 0x7f, 0x70, + 0x0, 0xbf, 0xd0, 0x0, 0x0, 0x3f, 0xc0, 0xe, + 0xf3, 0xc, 0xf1, 0x0, 0x30, 0xa, 0x31, 0xef, + 0x80, 0x0, 0x3, 0xfd, 0x5, 0xfd, 0x0, 0xbf, + 0x30, 0x0, 0x3, 0xff, 0x35, 0xf8, 0x0, 0x0, + 0x4f, 0xd0, 0x3a, 0x70, 0x9, 0xfe, 0xaa, 0xaa, + 0xef, 0xd0, 0x3, 0x0, 0x0, 0x4, 0xfe, 0x0, + 0x0, 0x0, 0x3d, 0xff, 0xff, 0xff, 0xc3, 0x0, + 0x0, 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -17914,6 +18050,49 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x2, 0xc4, 0x0, 0x0, 0x0, 0x2a, 0x0, + /* U+7259 "牙" */ + 0x0, 0x2, 0x21, 0x11, 0x11, 0x11, 0x11, 0x11, + 0x11, 0x11, 0x12, 0x20, 0x0, 0x0, 0x4f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf1, 0x0, 0x0, 0x3c, 0xcc, 0xcc, 0xcc, 0xcc, + 0xcc, 0xcd, 0xff, 0xcc, 0xcc, 0xd0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaa, + 0x40, 0x0, 0x0, 0x4, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xff, 0x90, 0x0, 0x0, + 0x4, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0xfd, 0x0, 0x0, 0x0, 0x4, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xf3, 0x0, + 0x0, 0x0, 0x4, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xdf, 0x90, 0x0, 0x0, 0x0, 0x4, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0xcb, 0xbb, 0xbb, 0xbb, 0xbc, 0xff, 0xbb, 0xbb, + 0xbb, 0xc4, 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, + 0x2, 0x74, 0x21, 0x11, 0x11, 0x2f, 0xfa, 0xfe, + 0x11, 0x11, 0x11, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9f, 0xd4, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0x44, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1e, 0xfa, 0x4, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xdf, 0xd1, 0x4, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1d, 0xfe, 0x20, 0x4, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xef, 0xe3, 0x0, 0x4, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfd, 0x20, + 0x0, 0x4, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4c, 0xff, 0xb1, 0x0, 0x0, 0x4, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, 0xff, 0xf7, + 0x0, 0x0, 0x0, 0x4, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x1c, 0xff, 0xfb, 0x20, 0x0, 0x0, 0x0, + 0x1a, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfd, + 0x40, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xff, 0xc3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+72B6 "状" */ 0x0, 0x0, 0x0, 0x6, 0x73, 0x0, 0x0, 0x0, 0x46, 0x61, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -18095,6 +18274,51 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xa6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaf, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3, 0x22, 0x22, 0x22, 0x30, + 0x0, 0xa, 0xf7, 0x46, 0x65, 0x55, 0x56, 0x64, + 0x2, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xaf, + 0x69, 0xff, 0xff, 0xff, 0xff, 0x90, 0x1b, 0xa9, + 0xff, 0x9a, 0xa0, 0x0, 0x9, 0xf5, 0x35, 0x45, + 0xfe, 0x44, 0x53, 0x0, 0x0, 0xf, 0xf0, 0x0, + 0x0, 0x0, 0x9f, 0x50, 0x0, 0x1f, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0x0, 0x1, 0x86, 0x9, + 0xf4, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xf0, 0x0, 0x2f, 0xc0, 0x9f, 0x30, 0x0, + 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x0, + 0x2, 0xfc, 0x9, 0xf3, 0x0, 0x1, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0, 0x3f, 0xb0, + 0xaf, 0x20, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x1, + 0x11, 0xff, 0x11, 0x14, 0xfb, 0xa, 0xf2, 0x11, + 0x12, 0xfe, 0x1, 0x10, 0x0, 0xdf, 0xff, 0xff, + 0xfa, 0x5f, 0xa0, 0xbf, 0x17, 0xff, 0xff, 0xff, + 0xff, 0x10, 0xa, 0xcb, 0xff, 0xbc, 0x86, 0xf9, + 0xc, 0xf0, 0x5a, 0x9a, 0xff, 0x9a, 0xa0, 0x0, + 0x0, 0xf, 0xf0, 0x0, 0x7f, 0x80, 0xee, 0x0, + 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0x0, 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x1, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0, 0x0, + 0x4, 0xfa, 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x9f, 0x60, + 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xf0, 0x0, 0x0, 0xe, 0xf2, 0x0, 0x0, 0x1f, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x3, 0xa4, + 0x4, 0xfd, 0x0, 0x0, 0x1, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xfd, 0xff, 0x70, 0xcf, 0x70, + 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x2, 0x7c, + 0xff, 0xfa, 0x30, 0x6f, 0xe1, 0x0, 0x0, 0x1, + 0xfe, 0x0, 0x0, 0x9, 0xff, 0xfe, 0x71, 0x0, + 0x3f, 0xf7, 0x0, 0x8b, 0xbb, 0xbf, 0xfb, 0xbc, + 0xc0, 0x3f, 0xc5, 0x0, 0x0, 0x3e, 0xfc, 0x0, + 0xa, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x30, + 0x0, 0x0, 0x6, 0xee, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+7406 "理" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x30, 0x0, 0x0, 0x0, @@ -19337,6 +19561,51 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x0, 0x1, 0xa2, 0x0, 0x0, 0x0, 0x0, + 0x57, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, + 0xd0, 0x0, 0x0, 0x0, 0xc, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0xf6, 0x44, 0x44, 0x51, + 0x3, 0xff, 0x20, 0x0, 0x1, 0x10, 0x0, 0xc, + 0xff, 0xff, 0xff, 0xff, 0x30, 0xbf, 0xff, 0xff, + 0xff, 0xfd, 0x0, 0x9, 0xfd, 0x6c, 0xf8, 0x66, + 0x71, 0x5f, 0xf9, 0x9f, 0xe9, 0xaa, 0x90, 0x9, + 0xfe, 0x20, 0x3f, 0xc0, 0x0, 0x3f, 0xf5, 0x0, + 0xcf, 0x20, 0x0, 0xc, 0xfe, 0x20, 0x0, 0xbf, + 0x60, 0x3e, 0xf8, 0x0, 0x6, 0xf9, 0x0, 0x0, + 0x5d, 0x20, 0x16, 0x4, 0x92, 0x4, 0xea, 0x0, + 0x0, 0x2a, 0x40, 0x0, 0x0, 0x0, 0xd, 0xf5, + 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xf3, 0x2f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x9f, 0xd2, 0xbb, 0xaa, 0xaa, 0xaa, 0xaa, 0xae, + 0xf1, 0x0, 0x0, 0xff, 0x0, 0xa1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0x10, 0x0, 0xf, + 0xf0, 0x0, 0x67, 0x77, 0x77, 0x77, 0x76, 0x0, + 0xc, 0xf1, 0x0, 0x0, 0xfe, 0x0, 0xd, 0xff, + 0xff, 0xff, 0xff, 0xd0, 0x0, 0xcf, 0x10, 0x0, + 0xf, 0xe0, 0x0, 0xcf, 0x10, 0x0, 0x1, 0xfc, + 0x0, 0xc, 0xf1, 0x0, 0x0, 0xfe, 0x0, 0xc, + 0xf1, 0x0, 0x0, 0x1f, 0xc0, 0x0, 0xcf, 0x10, + 0x0, 0xf, 0xe0, 0x0, 0xcf, 0xba, 0xaa, 0xab, + 0xfc, 0x0, 0xc, 0xf1, 0x0, 0x0, 0xfe, 0x0, + 0xc, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xcf, + 0x10, 0x0, 0xf, 0xe0, 0x0, 0xcf, 0x10, 0x0, + 0x1, 0xfc, 0x0, 0xc, 0xf1, 0x0, 0x0, 0xfe, + 0x0, 0xc, 0xf1, 0x0, 0x0, 0x1f, 0xc0, 0x0, + 0xcf, 0x10, 0x0, 0xf, 0xe0, 0x0, 0xdf, 0xa9, + 0x99, 0x9a, 0xfc, 0x0, 0xc, 0xf1, 0x0, 0x0, + 0xfe, 0x0, 0xd, 0xff, 0xff, 0xff, 0xff, 0xd0, + 0x0, 0xcf, 0x10, 0x0, 0xf, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xf1, 0x0, + 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0x67, 0xff, 0x0, 0x0, 0xf, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xc0, + 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xfd, 0x92, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x33, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -20225,6 +20494,51 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x5b, 0xcd, 0xdd, 0xdd, 0xdc, 0xa3, 0x0, 0x0, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x0, 0x2, 0x53, 0x0, 0x0, 0x0, + 0x45, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xfb, 0x0, 0x0, 0x0, 0xdf, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfa, 0x0, + 0x0, 0x0, 0xcf, 0x50, 0x0, 0x0, 0x0, 0x7, + 0xff, 0xee, 0xef, 0xff, 0xee, 0xee, 0xee, 0xff, + 0xfe, 0xee, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x7, 0xfa, 0x0, 0x0, + 0x0, 0xcf, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xfa, 0x0, 0x75, 0x20, 0xcf, 0x60, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x74, + 0x0, 0xff, 0x80, 0x57, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0x22, 0x22, 0x22, 0xff, 0x52, 0x22, 0x22, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xfb, 0xbb, 0xbb, 0xff, 0xcb, 0xbb, + 0xbf, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, + 0x0, 0x0, 0xff, 0x10, 0x0, 0xe, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0xff, + 0x0, 0x0, 0xe, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xe0, 0x0, 0x0, 0xff, 0x0, 0x0, 0xe, + 0xf1, 0x0, 0x0, 0x3, 0x22, 0x3f, 0xe1, 0x11, + 0x12, 0xfe, 0x11, 0x11, 0x1e, 0xf2, 0x12, 0x20, + 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe0, 0x2b, 0xba, 0xaa, + 0xaa, 0xaa, 0xae, 0xff, 0xfd, 0xaa, 0xaa, 0xaa, + 0xaa, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xfa, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xdf, 0xa0, 0x9f, 0xe2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1d, 0xfd, 0x0, 0xb, 0xfe, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xef, 0xd1, 0x0, + 0x0, 0xbf, 0xf9, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xdf, 0xfb, 0x10, 0x0, 0x0, 0x8, 0xff, + 0xf8, 0x10, 0x0, 0x2, 0x6a, 0xff, 0xfe, 0x60, + 0x0, 0x0, 0x0, 0x0, 0x4d, 0xff, 0xfc, 0x70, + 0x2, 0xef, 0xfe, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6e, 0xff, 0x20, 0x0, 0x3a, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x55, 0x0, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x77, 0x10, 0x0, 0x2, 0x88, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -20596,6 +20910,47 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+897F "西" */ + 0x2c, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xc0, 0x3f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0xc, 0xf1, + 0x0, 0xaf, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xf1, 0x0, 0xaf, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xf1, 0x0, 0xaf, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xf1, 0x0, + 0xaf, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xbb, 0xbb, 0xbf, 0xfb, 0xbb, 0xef, 0xcb, 0xbb, + 0xbb, 0x90, 0x0, 0x0, 0xe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, + 0x0, 0xd, 0xf3, 0x0, 0xd, 0xf1, 0x0, 0xaf, + 0x30, 0x0, 0x2f, 0xc0, 0x0, 0x0, 0xd, 0xf2, + 0x0, 0xf, 0xe0, 0x0, 0xaf, 0x30, 0x0, 0x1f, + 0xc0, 0x0, 0x0, 0xd, 0xf2, 0x0, 0x2f, 0xc0, + 0x0, 0xaf, 0x30, 0x0, 0x1f, 0xc0, 0x0, 0x0, + 0xd, 0xf2, 0x0, 0x6f, 0x90, 0x0, 0xaf, 0x30, + 0x0, 0x1f, 0xc0, 0x0, 0x0, 0xd, 0xf2, 0x0, + 0xcf, 0x40, 0x0, 0xaf, 0x30, 0x0, 0x1f, 0xc0, + 0x0, 0x0, 0xd, 0xf2, 0x5, 0xfe, 0x0, 0x0, + 0xaf, 0x61, 0x13, 0x2f, 0xc0, 0x0, 0x0, 0xd, + 0xf2, 0x1e, 0xf6, 0x0, 0x0, 0x9f, 0xff, 0xff, + 0x4f, 0xc0, 0x0, 0x0, 0xd, 0xf3, 0xdf, 0xc0, + 0x0, 0x0, 0x2d, 0xff, 0xff, 0x1f, 0xc0, 0x0, + 0x0, 0xd, 0xf2, 0x4d, 0x20, 0x0, 0x0, 0x0, + 0x1, 0x10, 0x1f, 0xc0, 0x0, 0x0, 0xd, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xc0, 0x0, 0x0, 0xd, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x0, + 0xd, 0xfa, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0xaf, 0xc0, 0x0, 0x0, 0xd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0x0, 0x0, 0xd, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0xd0, 0x0, 0x0, 0xe, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xd0, 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8981 "要" */ 0x3, 0xdd, 0xdc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcd, 0xde, 0x0, 0x3e, 0xee, @@ -20828,6 +21183,46 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x31, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x30, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x36, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x33, 0x22, 0x22, 0x22, + 0x22, 0xbf, 0xd2, 0x22, 0x22, 0x22, 0x22, 0x31, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0xaa, 0xa9, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9a, 0xa5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0xa, 0xba, 0xaa, + 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xbc, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xcb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbb, 0xcc, 0x20, 0x0, 0x0, 0xf, 0xff, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xef, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x30, 0x0, 0x0, 0xb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, + 0x0, 0xb, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xef, 0x50, 0x0, 0x0, 0xa, 0xf7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0x50, 0x0, + 0x0, 0xa, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xef, 0x50, 0x0, 0x0, 0xa, 0xf7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0x50, 0x0, + 0x0, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0xb, 0xfd, 0xcc, + 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xff, 0x60, 0x0, + 0x0, 0xb, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xef, 0x60, 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -21284,6 +21679,54 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x63, 0x0, + /* U+8BED "语" */ + 0x0, 0x0, 0x30, 0x0, 0x0, 0x21, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x11, 0x0, 0x0, 0x5f, + 0x90, 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb0, 0x0, 0x4, 0xff, 0x70, 0x1, + 0x98, 0x88, 0x79, 0xff, 0x77, 0x78, 0x88, 0x86, + 0x0, 0x0, 0x5, 0xff, 0x50, 0x0, 0x0, 0x0, + 0x4f, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xf7, 0x0, 0x0, 0x0, 0x7, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, + 0x3, 0xaa, 0xa9, 0xdf, 0xc7, 0x77, 0x77, 0x71, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x32, 0x14, 0xff, 0x22, + 0x22, 0x5f, 0xf0, 0x0, 0xa, 0xa9, 0x99, 0x91, + 0x0, 0x0, 0x0, 0x6f, 0xc0, 0x0, 0x5, 0xff, + 0x0, 0x0, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, + 0x9, 0xf9, 0x0, 0x0, 0x7f, 0xd0, 0x0, 0x5, + 0x44, 0x3f, 0xf2, 0x0, 0x0, 0x0, 0xdf, 0x50, + 0x0, 0xa, 0xfb, 0x0, 0x0, 0x0, 0x0, 0xff, + 0x20, 0x9a, 0x99, 0x9f, 0xfa, 0x99, 0x99, 0xef, + 0xd9, 0xa9, 0x0, 0x0, 0xf, 0xf1, 0xe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, + 0x0, 0x0, 0xff, 0x10, 0x21, 0x11, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x11, 0x0, 0x0, 0xf, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xf1, 0x0, 0x2, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, + 0xff, 0x15, 0x40, 0x1f, 0xfd, 0xdd, 0xdd, 0xdd, + 0xdf, 0xf6, 0x0, 0x0, 0x0, 0xf, 0xf4, 0xee, + 0x11, 0xff, 0x0, 0x0, 0x0, 0x0, 0xbf, 0x60, + 0x0, 0x0, 0x0, 0xff, 0xef, 0xd1, 0x1f, 0xf0, + 0x0, 0x0, 0x0, 0xb, 0xf6, 0x0, 0x0, 0x0, + 0xf, 0xff, 0xe1, 0x1, 0xff, 0x0, 0x0, 0x0, + 0x0, 0xbf, 0x60, 0x0, 0x0, 0x3, 0xff, 0xf2, + 0x0, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0xb, 0xf6, + 0x0, 0x0, 0x0, 0xdf, 0xf5, 0x0, 0x1, 0xff, + 0xbb, 0xbb, 0xbb, 0xbb, 0xef, 0x60, 0x0, 0x0, + 0x1c, 0xf9, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0xa, 0x0, + 0x0, 0x2, 0xff, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xf0, 0x0, 0x0, 0x0, 0xb, 0xf7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BF7 "请" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdd, 0x30, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, @@ -26757,392 +27200,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 64570, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 64921, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 65272, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 65637, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 65637, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 65975, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 66313, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 66664, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 67015, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 67366, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 67731, .adv_w = 448, .box_w = 26, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 68095, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 68420, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 68785, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 69123, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 69474, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 69799, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 70150, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 70462, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 70813, .adv_w = 448, .box_w = 25, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 71138, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 71476, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 71840, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 72178, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 72516, .adv_w = 448, .box_w = 23, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 72815, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 73140, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 73491, .adv_w = 448, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 73804, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 74142, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 74493, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 74844, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 75182, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 75520, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 75858, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 76223, .adv_w = 448, .box_w = 25, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 76548, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 76899, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 77250, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 77575, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 77900, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 78238, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 78576, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 78901, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 79239, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 79577, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 79915, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 80240, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 80591, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 80929, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 81241, .adv_w = 448, .box_w = 24, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 81577, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 81928, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 82240, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 82605, .adv_w = 448, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 82905, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 83230, .adv_w = 448, .box_w = 22, .box_h = 24, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 83494, .adv_w = 448, .box_w = 24, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 83794, .adv_w = 448, .box_w = 24, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 84094, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 84445, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 84783, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 85108, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 85446, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 85771, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 66313, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 66651, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 67002, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 67353, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 67704, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 68055, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 68420, .adv_w = 448, .box_w = 26, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 68784, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 69109, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 69474, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 69812, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 70163, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 70488, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 70839, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 71151, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 71502, .adv_w = 448, .box_w = 25, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 71827, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 72165, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 72529, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 72867, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 73205, .adv_w = 448, .box_w = 23, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 73504, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 73829, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 74180, .adv_w = 448, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 74493, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 74831, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 75182, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 75533, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 75871, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 76209, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 76547, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 76912, .adv_w = 448, .box_w = 25, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77237, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 77588, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77939, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 78264, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 78589, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 78927, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 79265, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 79590, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 79928, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 80266, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 80604, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 80929, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 81280, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 81618, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 81930, .adv_w = 448, .box_w = 24, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 82266, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 82617, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 82929, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 83294, .adv_w = 448, .box_w = 25, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 83594, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 83919, .adv_w = 448, .box_w = 22, .box_h = 24, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 84183, .adv_w = 448, .box_w = 24, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 84483, .adv_w = 448, .box_w = 24, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 84783, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 85134, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 85472, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 85797, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 86135, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 86460, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 86811, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 87149, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 87461, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 87812, .adv_w = 448, .box_w = 28, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 88162, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 88513, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 88851, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 89202, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 89540, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 89878, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 90229, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 90567, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 90905, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 91217, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 91555, .adv_w = 448, .box_w = 27, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 91933, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 92298, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 92690, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 93055, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 93393, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 86460, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 86824, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 87149, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 87500, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 87838, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 88150, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 88501, .adv_w = 448, .box_w = 28, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 88851, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 89202, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 89540, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 89891, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 90229, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 90567, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 90918, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 91256, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 91594, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 91906, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 92244, .adv_w = 448, .box_w = 27, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 92622, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 92987, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 93379, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 93744, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 94082, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 94433, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 94745, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 95083, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 95395, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 95787, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 96112, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 96437, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 96775, .adv_w = 448, .box_w = 25, .box_h = 23, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 97063, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97414, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 97739, .adv_w = 448, .box_w = 25, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 98064, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 98389, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 98727, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 99078, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 99429, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 99767, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 100079, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 100430, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 100768, .adv_w = 448, .box_w = 23, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 101067, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 101392, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 101717, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 102055, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 102393, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 102718, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 103056, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 103394, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 103732, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 104070, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 104435, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 104786, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 105137, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 105462, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 105800, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 106125, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 106463, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 106801, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 107152, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 107503, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 107867, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 108231, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 108582, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 108933, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 109284, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 109649, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 109987, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 110338, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 110689, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 111054, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 111392, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 111730, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 112081, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 112432, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 112796, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 113121, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 113459, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 113824, .adv_w = 448, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 114202, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 114553, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 114891, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 115229, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 115593, .adv_w = 448, .box_w = 27, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 115971, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 116296, .adv_w = 448, .box_w = 19, .box_h = 24, .ofs_x = 5, .ofs_y = -2}, - {.bitmap_index = 116524, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 116862, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 117174, .adv_w = 448, .box_w = 24, .box_h = 25, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 117474, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 117786, .adv_w = 448, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 118099, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 118437, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 118788, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 94082, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 94433, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 94771, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 95122, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 95434, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 95772, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 96084, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 96476, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 96801, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 97126, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 97464, .adv_w = 448, .box_w = 25, .box_h = 23, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 97752, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98103, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 98428, .adv_w = 448, .box_w = 25, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98753, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 99078, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 99416, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 99767, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 100118, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 100456, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 100768, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 101119, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 101457, .adv_w = 448, .box_w = 23, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 101756, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 102081, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 102406, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 102744, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 103082, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 103420, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 103745, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 104083, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 104421, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 104759, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 105097, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 105462, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 105813, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 106164, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 106489, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 106827, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 107152, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 107490, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 107828, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 108179, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 108530, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 108894, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 109258, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 109609, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 109960, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 110311, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 110676, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 111014, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 111365, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 111716, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 112081, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 112419, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 112757, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 113108, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 113459, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 113823, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 114148, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 114486, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 114851, .adv_w = 448, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 115229, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 115580, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 115918, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 116256, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 116620, .adv_w = 448, .box_w = 27, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 116998, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 117323, .adv_w = 448, .box_w = 19, .box_h = 24, .ofs_x = 5, .ofs_y = -2}, + {.bitmap_index = 117551, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 117889, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 118201, .adv_w = 448, .box_w = 24, .box_h = 25, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 118501, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 118813, .adv_w = 448, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 119126, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 119464, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 119828, .adv_w = 448, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 120206, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 120518, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 120856, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 121181, .adv_w = 448, .box_w = 28, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 121531, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 121895, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 122246, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 122584, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 122922, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 123273, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 123624, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 123989, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 124327, .adv_w = 448, .box_w = 26, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 124626, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 124964, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 125315, .adv_w = 448, .box_w = 25, .box_h = 25, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 125628, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 125966, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 126317, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 119464, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 119815, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 120153, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 120491, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 120855, .adv_w = 448, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 121233, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 121545, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 121883, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 122208, .adv_w = 448, .box_w = 28, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 122558, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 122922, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 123273, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 123611, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 123949, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 124300, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 124651, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 125016, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 125354, .adv_w = 448, .box_w = 26, .box_h = 23, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 125653, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 125991, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 126342, .adv_w = 448, .box_w = 25, .box_h = 25, .ofs_x = 2, .ofs_y = -2}, {.bitmap_index = 126655, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 126993, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 127344, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 127669, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 128034, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 128372, .adv_w = 448, .box_w = 26, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 128736, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 129087, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 129425, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 129790, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 130155, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 130520, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 130858, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 131196, .adv_w = 448, .box_w = 27, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 131574, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 131939, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 132277, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 132628, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 132966, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 133304, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 133642, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 133980, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 134305, .adv_w = 448, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 134605, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 134943, .adv_w = 448, .box_w = 25, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 135256, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 135607, .adv_w = 448, .box_w = 25, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 135932, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 136244, .adv_w = 448, .box_w = 28, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 136594, .adv_w = 448, .box_w = 20, .box_h = 24, .ofs_x = 4, .ofs_y = -2}, - {.bitmap_index = 136834, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 137159, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 137497, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 137835, .adv_w = 448, .box_w = 25, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 138148, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 138499, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 138837, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 139175, .adv_w = 448, .box_w = 25, .box_h = 26, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 139500, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 139838, .adv_w = 448, .box_w = 25, .box_h = 28, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 140188, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 140553, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 140891, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 141256, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 141621, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 141972, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 142310, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 142661, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 143026, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 143377, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 143715, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 144053, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 144391, .adv_w = 448, .box_w = 28, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 144769, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 145081, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 145432, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 145757, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 146121, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 146486, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 146850, .adv_w = 448, .box_w = 24, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 147150, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 147462, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 147800, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 148125, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 148463, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 148814, .adv_w = 448, .box_w = 20, .box_h = 26, .ofs_x = 4, .ofs_y = -2}, - {.bitmap_index = 149074, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 149412, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 149737, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 150075, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 150426, .adv_w = 448, .box_w = 28, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 150804, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 151155, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 151520, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 151858, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 152209, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 152547, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 152885, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 153249, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 153614, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 153979, .adv_w = 448, .box_w = 24, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 154303, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 154668, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 154993, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 155331, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 155682, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 156020, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 156358, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 156709, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 157073, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 157411, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 157749, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 158100, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 158438, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 158803, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 159141, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 159479, .adv_w = 448, .box_w = 27, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 159803, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 160168, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 160533, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 160884, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 161235, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 161573, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 161924, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 162316, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 162667, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 163005, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 163356, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 163681, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 164019, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 164357, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 164708, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 165046, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 165397, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 165735, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 166073, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 166424, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 166788, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 167139, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 167490, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 167841, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 168166, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 168478, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 168816, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 169167, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 169518, .adv_w = 448, .box_w = 28, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 169896, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 170234, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 170572, .adv_w = 448, .box_w = 24, .box_h = 27, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 170896, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 171208, .adv_w = 448, .box_w = 25, .box_h = 28, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 171558, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 171923, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 172261, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 172573, .adv_w = 448, .box_w = 26, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 172937, .adv_w = 448, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 173250, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 173588, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 173913, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 174238, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 174589, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 174927, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 175265, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 175630, .adv_w = 448, .box_w = 25, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 175955, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 176306, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 176657, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 177063, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 177357, .adv_w = 448, .box_w = 28, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 177707, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 178001, .adv_w = 308, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 178211, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 178617, .adv_w = 448, .box_w = 27, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 179009, .adv_w = 504, .box_w = 32, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 179409, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 179815, .adv_w = 504, .box_w = 32, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 180151, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 180557, .adv_w = 224, .box_w = 14, .box_h = 23, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 180718, .adv_w = 336, .box_w = 21, .box_h = 23, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 180960, .adv_w = 504, .box_w = 32, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 181392, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 181686, .adv_w = 308, .box_w = 20, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 181976, .adv_w = 392, .box_w = 18, .box_h = 26, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 182210, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 182573, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 182886, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 183199, .adv_w = 392, .box_w = 18, .box_h = 26, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 183433, .adv_w = 392, .box_w = 26, .box_h = 25, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 183758, .adv_w = 280, .box_w = 16, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 183958, .adv_w = 280, .box_w = 16, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 184158, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 184471, .adv_w = 392, .box_w = 25, .box_h = 7, .ofs_x = 0, .ofs_y = 7}, - {.bitmap_index = 184559, .adv_w = 504, .box_w = 32, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 184895, .adv_w = 560, .box_w = 35, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 185403, .adv_w = 504, .box_w = 33, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 185882, .adv_w = 448, .box_w = 28, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 186232, .adv_w = 392, .box_w = 25, .box_h = 15, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 186420, .adv_w = 392, .box_w = 25, .box_h = 15, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 186608, .adv_w = 560, .box_w = 35, .box_h = 22, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 186993, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 187287, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 187693, .adv_w = 448, .box_w = 29, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 188114, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 188427, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 188790, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 189103, .adv_w = 392, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 189391, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 189685, .adv_w = 280, .box_w = 19, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 189961, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 190324, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 190687, .adv_w = 504, .box_w = 32, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 191023, .adv_w = 448, .box_w = 30, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 191458, .adv_w = 336, .box_w = 21, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 191763, .adv_w = 560, .box_w = 35, .box_h = 26, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 192218, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 192551, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 192884, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 193217, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 193550, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 193883, .adv_w = 560, .box_w = 36, .box_h = 23, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 194297, .adv_w = 392, .box_w = 22, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 194616, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 194979, .adv_w = 448, .box_w = 29, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 195400, .adv_w = 560, .box_w = 35, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 195768, .adv_w = 336, .box_w = 21, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 196073, .adv_w = 451, .box_w = 29, .box_h = 19, .ofs_x = 0, .ofs_y = 1} + {.bitmap_index = 126993, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 127344, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 127682, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 128020, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 128371, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 128696, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 129061, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 129399, .adv_w = 448, .box_w = 26, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 129763, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 130114, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 130452, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 130817, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 131182, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 131547, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 131885, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 132223, .adv_w = 448, .box_w = 27, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 132601, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 132966, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 133304, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 133629, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 133980, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 134318, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 134656, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 134994, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 135332, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 135670, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 135995, .adv_w = 448, .box_w = 24, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 136295, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 136633, .adv_w = 448, .box_w = 25, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 136946, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 137297, .adv_w = 448, .box_w = 25, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 137622, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 137934, .adv_w = 448, .box_w = 28, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 138284, .adv_w = 448, .box_w = 20, .box_h = 24, .ofs_x = 4, .ofs_y = -2}, + {.bitmap_index = 138524, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 138849, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 139187, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 139525, .adv_w = 448, .box_w = 25, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 139838, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 140189, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 140527, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 140865, .adv_w = 448, .box_w = 25, .box_h = 26, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 141190, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 141528, .adv_w = 448, .box_w = 25, .box_h = 28, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 141878, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 142243, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 142581, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 142946, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 143311, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 143662, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 144000, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 144351, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 144716, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 145054, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 145405, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 145743, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 146081, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 146419, .adv_w = 448, .box_w = 28, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 146797, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 147109, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 147460, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 147785, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 148149, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 148514, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 148878, .adv_w = 448, .box_w = 24, .box_h = 25, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 149178, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 149490, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 149828, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 150153, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 150491, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 150842, .adv_w = 448, .box_w = 20, .box_h = 26, .ofs_x = 4, .ofs_y = -2}, + {.bitmap_index = 151102, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 151440, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 151765, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 152103, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 152441, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 152792, .adv_w = 448, .box_w = 28, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 153170, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 153521, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 153886, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 154224, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 154575, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 154913, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 155225, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 155563, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 155927, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 156292, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 156657, .adv_w = 448, .box_w = 24, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 156981, .adv_w = 448, .box_w = 24, .box_h = 25, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 157281, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 157646, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 157971, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 158309, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 158660, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 158998, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 159336, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 159687, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 160051, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 160389, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 160727, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 161092, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 161443, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 161781, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 162146, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 162484, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 162822, .adv_w = 448, .box_w = 27, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 163146, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 163511, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 163876, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 164227, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 164578, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 164916, .adv_w = 448, .box_w = 26, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 165267, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 165659, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 166010, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 166348, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 166699, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 167024, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 167362, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 167700, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 168051, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 168389, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 168740, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 169078, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 169416, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 169767, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 170131, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 170482, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 170833, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 171184, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 171509, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 171821, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 172159, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 172510, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 172861, .adv_w = 448, .box_w = 28, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 173239, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 173577, .adv_w = 448, .box_w = 25, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 173915, .adv_w = 448, .box_w = 24, .box_h = 27, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 174239, .adv_w = 448, .box_w = 24, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 174551, .adv_w = 448, .box_w = 25, .box_h = 28, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 174901, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 175266, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 175604, .adv_w = 448, .box_w = 26, .box_h = 24, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 175916, .adv_w = 448, .box_w = 26, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 176280, .adv_w = 448, .box_w = 25, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 176593, .adv_w = 448, .box_w = 26, .box_h = 26, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 176931, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 177256, .adv_w = 448, .box_w = 26, .box_h = 25, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 177581, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 177932, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 178270, .adv_w = 448, .box_w = 27, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 178608, .adv_w = 448, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 178973, .adv_w = 448, .box_w = 25, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 179298, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 179649, .adv_w = 448, .box_w = 27, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 180000, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 180406, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 180700, .adv_w = 448, .box_w = 28, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 181050, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 181344, .adv_w = 308, .box_w = 20, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 181554, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 181960, .adv_w = 448, .box_w = 27, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 182352, .adv_w = 504, .box_w = 32, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 182752, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 183158, .adv_w = 504, .box_w = 32, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 183494, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 183900, .adv_w = 224, .box_w = 14, .box_h = 23, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 184061, .adv_w = 336, .box_w = 21, .box_h = 23, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 184303, .adv_w = 504, .box_w = 32, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 184735, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 185029, .adv_w = 308, .box_w = 20, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 185319, .adv_w = 392, .box_w = 18, .box_h = 26, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 185553, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 185916, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 186229, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 186542, .adv_w = 392, .box_w = 18, .box_h = 26, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 186776, .adv_w = 392, .box_w = 26, .box_h = 25, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 187101, .adv_w = 280, .box_w = 16, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 187301, .adv_w = 280, .box_w = 16, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 187501, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 187814, .adv_w = 392, .box_w = 25, .box_h = 7, .ofs_x = 0, .ofs_y = 7}, + {.bitmap_index = 187902, .adv_w = 504, .box_w = 32, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 188238, .adv_w = 560, .box_w = 35, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 188746, .adv_w = 504, .box_w = 33, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 189225, .adv_w = 448, .box_w = 28, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 189575, .adv_w = 392, .box_w = 25, .box_h = 15, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 189763, .adv_w = 392, .box_w = 25, .box_h = 15, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 189951, .adv_w = 560, .box_w = 35, .box_h = 22, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 190336, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 190630, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 191036, .adv_w = 448, .box_w = 29, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 191457, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 191770, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 192133, .adv_w = 392, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 192446, .adv_w = 392, .box_w = 25, .box_h = 23, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 192734, .adv_w = 448, .box_w = 28, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 193028, .adv_w = 280, .box_w = 19, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 193304, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 193667, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 194030, .adv_w = 504, .box_w = 32, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 194366, .adv_w = 448, .box_w = 30, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 194801, .adv_w = 336, .box_w = 21, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 195106, .adv_w = 560, .box_w = 35, .box_h = 26, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 195561, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 195894, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 196227, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 196560, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 196893, .adv_w = 560, .box_w = 35, .box_h = 19, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 197226, .adv_w = 560, .box_w = 36, .box_h = 23, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 197640, .adv_w = 392, .box_w = 22, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 197959, .adv_w = 392, .box_w = 25, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 198322, .adv_w = 448, .box_w = 29, .box_h = 29, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 198743, .adv_w = 560, .box_w = 35, .box_h = 21, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 199111, .adv_w = 336, .box_w = 21, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 199416, .adv_w = 451, .box_w = 29, .box_h = 19, .ofs_x = 0, .ofs_y = 1} }; /*--------------------- @@ -27163,55 +27616,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -27243,7 +27698,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -27348,7 +27803,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -27447,7 +27903,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_30.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_30.c index 0c2143fb..4bbb5489 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_30.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_30.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 30 px * Bpp: 4 - * Opts: --bpp 4 --size 30 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_30.c + * Opts: --bpp 4 --size 30 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_30.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -10225,6 +10225,59 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0xef, 0x80, 0x0, 0x0, 0x0, 0x0, 0x95, 0x0, 0x0, 0x5, 0x84, 0x0, + /* U+4F53 "体" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6b, 0x50, 0x0, 0x0, 0x0, 0xf, 0xf5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xff, 0x20, 0x0, 0x0, 0x0, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0x90, + 0x0, 0x0, 0x0, 0xe, 0xf3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0xef, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9, 0xfc, 0x0, 0x0, 0x0, 0x0, + 0xe, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xff, 0x60, 0x11, 0x10, 0x0, 0x0, 0xef, + 0x40, 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, 0x6f, + 0xf2, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0x0, 0x0, 0xd, 0xff, 0x20, + 0xad, 0xdd, 0xdd, 0xff, 0xff, 0xff, 0xdd, 0xdd, + 0xdd, 0xb0, 0x0, 0x5, 0xff, 0xf2, 0x0, 0x0, + 0x0, 0x2f, 0xfe, 0xfd, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xff, 0x20, 0x0, 0x0, 0x7, + 0xfc, 0xef, 0x9f, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0xef, 0xf2, 0x0, 0x0, 0x0, 0xcf, 0x7e, + 0xf5, 0xff, 0x10, 0x0, 0x0, 0x0, 0x1f, 0xf7, + 0xff, 0x20, 0x0, 0x0, 0x2f, 0xf2, 0xef, 0x3b, + 0xf8, 0x0, 0x0, 0x0, 0xb, 0xfd, 0xf, 0xf2, + 0x0, 0x0, 0xa, 0xfb, 0xe, 0xf3, 0x4f, 0xf1, + 0x0, 0x0, 0x0, 0x1e, 0x40, 0xff, 0x20, 0x0, + 0x3, 0xff, 0x40, 0xef, 0x30, 0xdf, 0xa0, 0x0, + 0x0, 0x0, 0x10, 0xf, 0xf2, 0x0, 0x0, 0xdf, + 0xc0, 0xe, 0xf3, 0x4, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0xff, 0x20, 0x0, 0x9f, 0xf3, 0x0, + 0xef, 0x30, 0x9, 0xff, 0x40, 0x0, 0x0, 0x0, + 0xf, 0xf2, 0x0, 0x8f, 0xf8, 0x0, 0xe, 0xf3, + 0x0, 0xd, 0xff, 0x50, 0x0, 0x0, 0x0, 0xff, + 0x20, 0x8f, 0xfb, 0x0, 0x0, 0xef, 0x30, 0x0, + 0x1e, 0xff, 0x90, 0x0, 0x0, 0xf, 0xf3, 0xbf, + 0xfd, 0x10, 0x0, 0xe, 0xf3, 0x0, 0x0, 0x2e, + 0xff, 0xa0, 0x0, 0x0, 0xff, 0x6e, 0xfd, 0x14, + 0xee, 0xdd, 0xff, 0xdd, 0xdd, 0x90, 0x2d, 0xb0, + 0x0, 0x0, 0xf, 0xf2, 0x1a, 0x10, 0x5f, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x0, 0x1, 0x0, 0x0, + 0x0, 0xff, 0x20, 0x0, 0x0, 0x22, 0x11, 0xef, + 0x41, 0x11, 0x10, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0xe, 0xf3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0xef, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xe3, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x0, 0x5, 0x20, 0x0, 0x0, 0x0, 0x0, 0x9a, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -10382,6 +10435,61 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xff, 0xe0, 0x0, 0x0, 0xdf, 0x50, 0x3c, 0x20, 0x0, 0x0, 0x1, 0x0, 0x0, 0xe, 0xb7, 0x10, + /* U+4FC4 "俄" */ + 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3f, 0xb5, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xec, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xff, 0x40, 0x0, 0x0, 0x4, 0x0, 0x5f, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xd0, + 0x0, 0x3, 0x8d, 0xf8, 0x3, 0xff, 0x0, 0x44, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xf7, 0x9, 0xdf, + 0xff, 0xff, 0xd2, 0x3f, 0xe0, 0x8f, 0xe1, 0x0, + 0x0, 0x0, 0x6, 0xff, 0x10, 0x7f, 0xff, 0xf5, + 0x0, 0x2, 0xfe, 0x2, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0xdf, 0xb0, 0x1, 0x51, 0xdf, 0x20, 0x0, + 0x2f, 0xe0, 0x7, 0xff, 0x30, 0x0, 0x0, 0x4f, + 0xf6, 0x0, 0x0, 0xd, 0xf2, 0x0, 0x2, 0xfe, + 0x0, 0xe, 0xc2, 0x0, 0x0, 0xc, 0xff, 0x50, + 0x0, 0x0, 0xdf, 0x20, 0x0, 0x1f, 0xe0, 0x0, + 0x20, 0x0, 0x0, 0x5, 0xff, 0xf5, 0x2, 0x32, + 0x2d, 0xf4, 0x22, 0x23, 0xfe, 0x22, 0x22, 0x23, + 0x0, 0x1, 0xef, 0xff, 0x50, 0xbf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0xaf, 0xed, 0xf5, 0x9, 0xcc, 0xbf, 0xfc, 0xbb, + 0xbc, 0xff, 0xbb, 0xbc, 0xcd, 0x30, 0x7f, 0xf5, + 0xcf, 0x50, 0x0, 0x0, 0xdf, 0x20, 0x0, 0xf, + 0xf0, 0x0, 0x0, 0x0, 0x1, 0xbb, 0xc, 0xf5, + 0x0, 0x0, 0xd, 0xf2, 0x0, 0x0, 0xef, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x10, 0xcf, 0x50, 0x0, + 0x0, 0xdf, 0x20, 0x0, 0xd, 0xf3, 0x0, 0xa1, + 0x0, 0x0, 0x0, 0xc, 0xf5, 0x0, 0x0, 0xd, + 0xf3, 0x5a, 0x40, 0xaf, 0x50, 0x5f, 0xf3, 0x0, + 0x0, 0x0, 0xcf, 0x50, 0x0, 0x1, 0xdf, 0xff, + 0xf5, 0x8, 0xf8, 0xd, 0xfb, 0x0, 0x0, 0x0, + 0xc, 0xf5, 0x4, 0x8c, 0xff, 0xff, 0xa6, 0x10, + 0x5f, 0xb6, 0xfe, 0x10, 0x0, 0x0, 0x0, 0xcf, + 0x56, 0xff, 0xff, 0xff, 0x20, 0x0, 0x2, 0xff, + 0xef, 0x50, 0x0, 0x0, 0x0, 0xc, 0xf5, 0xf, + 0xc6, 0x1d, 0xf2, 0x0, 0x0, 0xd, 0xff, 0xa0, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0x50, 0x20, 0x0, + 0xdf, 0x20, 0x0, 0x1, 0xdf, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xf5, 0x0, 0x0, 0xd, 0xf2, + 0x0, 0x1, 0xcf, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0x50, 0x0, 0x0, 0xdf, 0x20, 0x3, + 0xef, 0xee, 0xf6, 0x2, 0x40, 0x0, 0x0, 0xc, + 0xf5, 0x0, 0x0, 0xd, 0xf2, 0x19, 0xff, 0xe2, + 0x7f, 0xe0, 0x4f, 0xc0, 0x0, 0x0, 0xdf, 0x50, + 0x1, 0x13, 0xff, 0x22, 0xef, 0xc1, 0x0, 0xdf, + 0xa8, 0xfc, 0x0, 0x0, 0xd, 0xf5, 0x0, 0xbf, + 0xff, 0xf0, 0x2, 0x90, 0x0, 0x3, 0xff, 0xff, + 0x70, 0x0, 0x0, 0xdf, 0x60, 0x5, 0xff, 0xf9, + 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xe1, 0x0, + 0x0, 0xe, 0xf7, 0x0, 0x18, 0x62, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xd4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4FDD "保" */ 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -15671,6 +15779,57 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xf7, 0x0, 0x0, 0x2, 0xff, 0x20, 0x2, 0x0, 0x0, 0xff, 0x30, 0x0, 0x0, 0x9, 0xf7, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x1, 0x20, 0x0, 0x0, 0x0, 0x0, + 0xac, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa, 0xf9, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x90, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0x60, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0xe1, 0x1f, 0xfe, + 0xee, 0xee, 0xff, 0xdc, 0xcc, 0xcc, 0xcd, 0xa0, + 0x0, 0x9, 0xff, 0x30, 0x1f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x5f, + 0xf7, 0x0, 0x1, 0x0, 0x0, 0x3, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1e, 0xfd, 0x10, 0x6b, 0x21, 0x99, + 0x99, 0x9c, 0xfe, 0x99, 0x99, 0x99, 0x95, 0x0, + 0xc, 0xf2, 0x0, 0xef, 0xc1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1, 0x40, + 0x8, 0xff, 0x21, 0xff, 0x0, 0x7f, 0x90, 0x2f, + 0xe0, 0x9, 0xf7, 0x0, 0x0, 0x0, 0x2f, 0xf6, + 0x0, 0xff, 0x0, 0x7f, 0x80, 0x1f, 0xe0, 0x8, + 0xf7, 0x0, 0x0, 0x0, 0xcf, 0xc0, 0x0, 0xff, + 0x0, 0x7f, 0x80, 0x1f, 0xe0, 0x8, 0xf7, 0x0, + 0x0, 0x7, 0xff, 0x20, 0x1, 0xff, 0x0, 0x7f, + 0x90, 0x2f, 0xe0, 0x9, 0xf7, 0x0, 0x0, 0x3f, + 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0x0, 0x2, 0xef, 0xff, 0x0, + 0x1, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xb6, 0x0, 0x2e, 0xfd, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0xe2, 0xff, 0x0, 0x3, 0x22, 0x21, 0x11, + 0x11, 0x11, 0x11, 0x22, 0x23, 0x20, 0x1e, 0x31, + 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd0, 0x1, 0x1, 0xff, 0x0, + 0xc, 0xba, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, + 0xab, 0xa0, 0x0, 0x1, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xff, 0x0, 0x7, 0xa3, 0x1c, 0xc1, 0x6f, 0xf4, + 0x0, 0x1, 0xc5, 0x0, 0x0, 0x1, 0xff, 0x0, + 0xd, 0xf7, 0xf, 0xf1, 0xb, 0xfc, 0x0, 0xa, + 0xff, 0x20, 0x0, 0x1, 0xff, 0x0, 0x2f, 0xf1, + 0xf, 0xf0, 0x3, 0xf6, 0x0, 0x1, 0xef, 0xc0, + 0x0, 0x1, 0xff, 0x10, 0x9f, 0xb0, 0xf, 0xf0, + 0x0, 0x10, 0xa, 0xa4, 0x3f, 0xf7, 0x0, 0x1, + 0xff, 0x10, 0xef, 0x60, 0xe, 0xf3, 0x0, 0x0, + 0xe, 0xfb, 0x9, 0xd3, 0x0, 0x2, 0xff, 0x10, + 0x6c, 0x0, 0xc, 0xff, 0xcc, 0xcc, 0xef, 0xf4, + 0x1, 0x0, 0x0, 0x2, 0xff, 0x20, 0x0, 0x0, + 0x4, 0xdf, 0xff, 0xff, 0xfe, 0x70, 0x0, 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -20276,6 +20435,57 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7259 "牙" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x2, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xf5, 0x0, 0x1, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5f, 0xe5, 0x0, 0x0, 0x0, 0x1f, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xf3, 0x0, 0x0, 0x0, 0x1f, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x1f, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9, 0xfd, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xef, 0xd2, + 0x22, 0x22, 0x22, 0x22, 0x3f, 0xf6, 0x22, 0x22, + 0x22, 0x31, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, + 0x0, 0x1, 0xff, 0xdc, 0xbb, 0xbb, 0xbb, 0xff, + 0xff, 0xfc, 0xbb, 0xbb, 0xbc, 0xd3, 0x0, 0x0, + 0x30, 0x0, 0x0, 0x0, 0x3, 0xff, 0x7f, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xfd, 0x1f, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xf4, 0x1f, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xa0, + 0x1f, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3e, 0xfd, 0x0, 0x1f, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xef, 0xe2, 0x0, 0x1f, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xfe, + 0x30, 0x0, 0x1f, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xff, 0xe2, 0x0, 0x0, + 0x1f, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xdf, 0xfc, 0x10, 0x0, 0x0, 0x1f, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xbf, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x1f, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xcf, 0xff, 0xc3, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xff, 0xe6, 0x0, 0x0, 0x0, 0x4, 0x8a, + 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x99, + 0x10, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xd0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xed, 0xa6, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+72B6 "状" */ 0x0, 0x0, 0x0, 0x5, 0x52, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -20480,6 +20690,57 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xa5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xf7, 0x34, 0x33, + 0x33, 0x33, 0x34, 0x0, 0x3f, 0xff, 0xff, 0xff, + 0xf7, 0x0, 0x0, 0xcf, 0x5b, 0xff, 0xff, 0xff, + 0xff, 0xf2, 0x3, 0xff, 0xef, 0xff, 0xff, 0x70, + 0x0, 0xc, 0xf4, 0x7a, 0x99, 0xff, 0xa9, 0x9a, + 0x10, 0x0, 0x0, 0xdf, 0x40, 0x0, 0x0, 0x0, + 0xcf, 0x40, 0x0, 0xf, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xf4, 0x0, 0x0, 0x0, 0xc, 0xf4, + 0x0, 0x0, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0x40, 0x0, 0xad, 0x40, 0xcf, 0x30, 0x0, + 0xf, 0xf2, 0x0, 0x0, 0x0, 0x0, 0xd, 0xf4, + 0x0, 0xc, 0xf5, 0xc, 0xf3, 0x0, 0x0, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x0, 0xdf, 0x40, 0x0, + 0xcf, 0x40, 0xcf, 0x20, 0x0, 0xf, 0xf2, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xf4, 0x0, 0xc, 0xf4, + 0xc, 0xf2, 0x0, 0x0, 0xff, 0x20, 0x0, 0x0, + 0x2, 0x11, 0xdf, 0x51, 0x20, 0xdf, 0x30, 0xdf, + 0x11, 0x11, 0x1f, 0xf3, 0x11, 0x10, 0x0, 0xef, + 0xff, 0xff, 0xff, 0x1e, 0xf2, 0xe, 0xf0, 0x9f, + 0xff, 0xff, 0xff, 0xf9, 0x0, 0xc, 0xdd, 0xff, + 0xed, 0xe1, 0xff, 0x10, 0xff, 0x7, 0xcb, 0xbf, + 0xfc, 0xbc, 0x70, 0x0, 0x0, 0xd, 0xf4, 0x0, + 0xf, 0xf0, 0x1f, 0xe0, 0x0, 0x0, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0x40, 0x0, 0x33, + 0x3, 0xfc, 0x0, 0x0, 0xf, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xf4, 0x0, 0x0, 0x0, 0x7f, + 0x90, 0x0, 0x0, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0xdf, 0x40, 0x0, 0x0, 0xa, 0xf6, 0x0, + 0x0, 0xf, 0xf2, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xf4, 0x0, 0x0, 0x0, 0xff, 0x20, 0x0, 0x0, + 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0xdf, 0x40, + 0x2, 0x0, 0x5f, 0xd0, 0x0, 0x0, 0xf, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xf5, 0x7d, 0xd0, + 0xc, 0xf8, 0x0, 0x0, 0x0, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xff, 0xfb, 0x4, 0xff, + 0x20, 0x0, 0x0, 0xf, 0xf2, 0x0, 0x0, 0x0, + 0x5a, 0xff, 0xfe, 0x92, 0x1, 0xef, 0x90, 0x0, + 0x0, 0x0, 0xff, 0x20, 0x0, 0x0, 0xcf, 0xff, + 0xd6, 0x0, 0x0, 0xbf, 0xe1, 0x0, 0xcd, 0xdd, + 0xdf, 0xfd, 0xdd, 0xe9, 0x4, 0xfc, 0x50, 0x0, + 0x0, 0xaf, 0xf5, 0x0, 0xe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x90, 0x3, 0x0, 0x0, 0x0, 0x2c, + 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7406 "理" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x20, 0x11, 0x0, @@ -21882,6 +22143,57 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x0, 0x0, 0x64, 0x0, 0x0, 0x0, 0x0, + 0x3, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xf9, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0x7, 0xff, 0xbb, 0xbb, 0xbb, 0xca, 0x0, 0x0, + 0xdf, 0xed, 0xff, 0xdd, 0xde, 0x21, 0xef, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0x0, 0xcf, 0xd1, 0xe, + 0xf3, 0x0, 0x0, 0xbf, 0xc0, 0x9, 0xf8, 0x11, + 0x21, 0x2, 0xcf, 0xe2, 0x0, 0x5f, 0xc0, 0x0, + 0x8f, 0xe1, 0x0, 0x3f, 0xe0, 0x0, 0x0, 0xdf, + 0xe2, 0x0, 0x0, 0xdf, 0x50, 0x7f, 0xf4, 0x0, + 0x0, 0xef, 0x60, 0x0, 0x2, 0xc2, 0x0, 0xa2, + 0x5, 0x50, 0x3, 0xc7, 0x0, 0x0, 0x6, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x9f, 0xe1, 0x0, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xef, 0xc0, 0x4f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0x3, + 0xff, 0x83, 0xdc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, + 0xff, 0x0, 0x0, 0xe, 0xf4, 0x8, 0xa0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0, + 0x0, 0xdf, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xfe, 0x0, 0x0, 0xd, 0xf3, + 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, + 0x1f, 0xe0, 0x0, 0x0, 0xcf, 0x30, 0x1, 0xff, + 0x99, 0x99, 0x9a, 0xff, 0x0, 0x1, 0xfe, 0x0, + 0x0, 0xc, 0xf3, 0x0, 0x1f, 0xe0, 0x0, 0x0, + 0x1f, 0xe0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0xcf, + 0x30, 0x1, 0xfe, 0x0, 0x0, 0x1, 0xfe, 0x0, + 0x1, 0xfe, 0x0, 0x0, 0xc, 0xf3, 0x0, 0x1f, + 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xe0, + 0x0, 0x0, 0xcf, 0x30, 0x1, 0xff, 0xbb, 0xbb, + 0xbb, 0xfe, 0x0, 0x1, 0xfe, 0x0, 0x0, 0xc, + 0xf3, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x1f, 0xe0, + 0x0, 0x1f, 0xe0, 0x0, 0x0, 0xcf, 0x30, 0x1, + 0xfe, 0x0, 0x0, 0x1, 0xfe, 0x0, 0x1, 0xfe, + 0x0, 0x0, 0xc, 0xf3, 0x0, 0x2f, 0xfb, 0xbb, + 0xbb, 0xbf, 0xf0, 0x0, 0x1f, 0xe0, 0x0, 0x0, + 0xcf, 0x30, 0x2, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x0, 0x1, 0xfe, 0x0, 0x0, 0xc, 0xf3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xe0, 0x0, 0x0, 0xdf, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x26, 0x6a, 0xfd, 0x0, 0x0, + 0xd, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xff, 0x90, 0x0, 0x0, 0xef, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xfc, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x26, 0x62, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -22884,6 +23196,54 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x2b, 0xef, 0xff, 0xff, 0xff, 0xfd, 0x80, 0x0, 0x0, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x0, 0x2, 0xbb, 0x20, 0x0, 0x0, + 0xa, 0xb6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xf3, 0x0, 0x0, 0x0, 0xdf, 0x80, + 0x0, 0x0, 0x0, 0x1, 0x32, 0x22, 0x23, 0xff, + 0x42, 0x22, 0x22, 0x2d, 0xf9, 0x22, 0x22, 0x33, + 0x10, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x4, 0xed, + 0xdd, 0xdd, 0xff, 0xdd, 0xdd, 0xdd, 0xdf, 0xfe, + 0xdd, 0xdd, 0xee, 0x60, 0x0, 0x0, 0x0, 0x1f, + 0xf2, 0x0, 0x0, 0x0, 0xcf, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0x20, 0x36, + 0x41, 0xc, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x18, 0x81, 0x5, 0xff, 0x60, 0x68, + 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x11, 0x11, 0x11, 0x15, + 0xff, 0x31, 0x11, 0x11, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xee, 0xee, 0xee, 0xff, 0xee, 0xee, 0xef, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xf3, 0x0, 0x0, + 0x4f, 0xe0, 0x0, 0x0, 0xef, 0x30, 0x0, 0x0, + 0x0, 0x0, 0xef, 0x30, 0x0, 0x4, 0xfd, 0x0, + 0x0, 0xe, 0xf3, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xf3, 0x0, 0x0, 0x5f, 0xc0, 0x0, 0x0, 0xef, + 0x30, 0x0, 0x0, 0x0, 0x0, 0xef, 0x30, 0x0, + 0x5, 0xfc, 0x0, 0x0, 0xe, 0xf3, 0x0, 0x0, + 0x5f, 0xee, 0xdf, 0xfe, 0xdd, 0xdd, 0xef, 0xfd, + 0xdd, 0xdd, 0xff, 0xed, 0xee, 0x55, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf5, 0x1, 0x10, 0x0, 0x0, 0x0, + 0x4, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xb3, + 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xe2, 0x5, 0xff, 0x90, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xcf, 0xf4, 0x0, 0x7, 0xff, 0xb1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xf4, 0x0, + 0x0, 0x6, 0xff, 0xe6, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x7e, 0xff, 0xd3, 0x0, 0x0, 0x0, 0x4, + 0xef, 0xfe, 0x71, 0x0, 0x3, 0x9c, 0xff, 0xfe, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x1, 0xaf, 0xff, + 0xfd, 0x10, 0x1c, 0xff, 0xe8, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3b, 0xff, 0x60, 0x0, + 0x1a, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0x60, 0x0, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x4d, 0xd0, 0x0, 0x0, 0x2f, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -23298,6 +23658,54 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x25, 0x0, + /* U+897F "西" */ + 0x11, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x12, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x9c, 0xbb, 0xbb, 0xbb, 0xbe, + 0xfc, 0xbb, 0xbf, 0xfb, 0xbb, 0xbb, 0xbb, 0xbc, + 0x30, 0x0, 0x0, 0x0, 0x0, 0xbf, 0x40, 0x0, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb, 0xf4, 0x0, 0xf, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0x40, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xf4, 0x0, + 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xdd, 0xdd, 0xdd, 0xff, 0xdd, 0xdd, 0xff, 0xdd, + 0xdd, 0xdd, 0xb0, 0x0, 0x0, 0x4f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0x0, 0x0, 0x3, 0xfe, 0x0, 0x0, 0xcf, 0x30, + 0x0, 0xff, 0x0, 0x0, 0x4f, 0xc0, 0x0, 0x0, + 0x3f, 0xe0, 0x0, 0xe, 0xf1, 0x0, 0xf, 0xf0, + 0x0, 0x3, 0xfc, 0x0, 0x0, 0x3, 0xfe, 0x0, + 0x0, 0xff, 0x0, 0x0, 0xff, 0x0, 0x0, 0x3f, + 0xc0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x5f, 0xc0, + 0x0, 0xf, 0xf0, 0x0, 0x3, 0xfc, 0x0, 0x0, + 0x3, 0xfe, 0x0, 0xa, 0xf8, 0x0, 0x0, 0xff, + 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x3f, 0xe0, + 0x2, 0xff, 0x30, 0x0, 0xf, 0xf0, 0x0, 0x3, + 0xfc, 0x0, 0x0, 0x3, 0xfe, 0x0, 0xcf, 0xb0, + 0x0, 0x0, 0xff, 0xca, 0xbc, 0x4f, 0xc0, 0x0, + 0x0, 0x3f, 0xe0, 0xaf, 0xf2, 0x0, 0x0, 0xc, + 0xff, 0xff, 0xf3, 0xfc, 0x0, 0x0, 0x3, 0xfe, + 0x2e, 0xf8, 0x0, 0x0, 0x0, 0x17, 0x9a, 0xa8, + 0x3f, 0xc0, 0x0, 0x0, 0x3f, 0xe0, 0x7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, + 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x3f, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xbb, 0xbb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xcf, 0xc0, + 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xc0, 0x0, 0x0, 0x4f, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfd, + 0x0, 0x0, 0x4, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xd0, 0x0, 0x0, + 0x2, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8981 "要" */ 0x1, 0xcb, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xba, 0x0, 0x2f, @@ -23568,6 +23976,54 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x45, 0x20, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xef, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf3, 0xef, 0xff, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xff, 0xf3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x11, 0x0, 0x0, 0x0, 0x9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0x0, 0x0, 0x0, 0x7, 0xcb, 0xbb, 0xbb, 0xbb, + 0xbb, 0xbb, 0xbb, 0xbc, 0xdb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9, 0xcb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbb, 0xbb, 0xbb, 0xc8, 0x0, 0x0, 0x0, 0xb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0x0, 0x0, 0x0, 0x1, 0x21, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x11, 0x11, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, + 0x7, 0xff, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbd, 0xfe, 0x0, 0x0, 0x0, 0x6, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xfd, 0x0, + 0x0, 0x0, 0x6, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xfd, 0x0, 0x0, 0x0, 0x5, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xfd, 0x0, 0x0, 0x0, 0x5, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xfd, 0x0, 0x0, + 0x0, 0x6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x6, 0xff, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xde, 0xfd, + 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xfe, 0x0, 0x0, 0x0, + 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xfe, 0x0, 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x7, 0x82, 0x0, 0x38, 0x40, 0x0, 0x0, 0x57, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -24092,6 +24548,61 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BED "语" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7c, 0x0, 0x0, 0x3c, 0xcb, 0xbb, 0xbb, 0xbb, + 0xbb, 0xbb, 0xbb, 0xc9, 0x0, 0x0, 0x2f, 0xfb, + 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x4f, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf5, 0x0, 0x0, + 0x0, 0x0, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbc, 0x10, 0x0, 0x0, 0x0, + 0x2f, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x0, 0x0, 0x4d, 0xdc, 0xcd, 0xff, + 0xaa, 0xaa, 0xaa, 0xa2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x13, 0x10, 0xf, 0xf7, 0x22, 0x22, 0x7f, + 0xf0, 0x0, 0x4, 0x54, 0x44, 0x43, 0x0, 0x0, + 0x0, 0x2, 0xff, 0x30, 0x0, 0x8, 0xfe, 0x0, + 0x0, 0xbf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x5f, 0xf0, 0x0, 0x0, 0xbf, 0xc0, 0x0, 0x9, + 0xdc, 0xbd, 0xfe, 0x0, 0x0, 0x0, 0x8, 0xfd, + 0x0, 0x0, 0xd, 0xfa, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0xe0, 0x2, 0x11, 0x0, 0xbf, 0xa0, 0x0, + 0x0, 0xff, 0x91, 0x12, 0x0, 0x0, 0x6, 0xfd, + 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x0, 0x6f, 0xd0, 0xd, + 0xcc, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbc, 0x0, 0x0, 0x6, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xd0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xfd, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x6f, + 0xd0, 0x41, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf6, 0x0, 0x0, 0x0, 0x6, 0xfd, 0x1e, + 0xa0, 0xf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0xef, + 0x60, 0x0, 0x0, 0x0, 0x6f, 0xdc, 0xff, 0x20, + 0xff, 0x30, 0x0, 0x0, 0x0, 0xe, 0xf5, 0x0, + 0x0, 0x0, 0x6, 0xff, 0xff, 0x60, 0xf, 0xf3, + 0x0, 0x0, 0x0, 0x0, 0xef, 0x50, 0x0, 0x0, + 0x0, 0x7f, 0xff, 0x80, 0x0, 0xff, 0x30, 0x0, + 0x0, 0x0, 0xe, 0xf5, 0x0, 0x0, 0x0, 0xb, + 0xff, 0xa0, 0x0, 0xf, 0xf3, 0x0, 0x0, 0x0, + 0x0, 0xef, 0x50, 0x0, 0x0, 0x7, 0xff, 0xd0, + 0x0, 0x0, 0xff, 0xdd, 0xdd, 0xdd, 0xdd, 0xdf, + 0xf5, 0x0, 0x0, 0x0, 0x5f, 0xf3, 0x0, 0x0, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, + 0x0, 0x0, 0x0, 0x47, 0x0, 0x0, 0x1, 0xff, + 0x40, 0x0, 0x0, 0x0, 0xe, 0xf6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf3, 0x0, + 0x0, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x11, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BF7 "请" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x41, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, @@ -30303,392 +30814,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 73583, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 73989, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 74381, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 74787, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 75193, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 75599, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 75991, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 76397, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 76789, .adv_w = 480, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 77224, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 77645, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 78037, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 78443, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 78835, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 79256, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 79620, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 80012, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 80404, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 80796, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 81174, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 81552, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 81958, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 82364, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 82756, .adv_w = 480, .box_w = 25, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 83106, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 83484, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 83890, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 84255, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 84647, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 85039, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 85445, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 85823, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 86215, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 86607, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 86999, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 87391, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 87797, .adv_w = 480, .box_w = 29, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 88232, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 88610, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 88988, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 89380, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 89772, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 90137, .adv_w = 480, .box_w = 29, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 90529, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 90921, .adv_w = 480, .box_w = 29, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 91298, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 91676, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 92068, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 92460, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 92824, .adv_w = 480, .box_w = 25, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 93187, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 93579, .adv_w = 480, .box_w = 25, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 93929, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 94335, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 94700, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 95092, .adv_w = 480, .box_w = 24, .box_h = 25, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 95392, .adv_w = 480, .box_w = 26, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 95743, .adv_w = 480, .box_w = 26, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 96094, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 96500, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 96878, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 97256, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97634, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 97998, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 98419, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 98811, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 99217, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 99609, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 99986, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 100378, .adv_w = 480, .box_w = 29, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 100770, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 101162, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 101568, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 101974, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 102366, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 102744, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 103150, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 103542, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 103934, .adv_w = 480, .box_w = 26, .box_h = 27, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 104285, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 104663, .adv_w = 480, .box_w = 28, .box_h = 30, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 105083, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 105489, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 105910, .adv_w = 480, .box_w = 28, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 106330, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 106722, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 107128, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 107520, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 107941, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 108305, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 108697, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 109061, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 109482, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 109874, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 110252, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 110658, .adv_w = 480, .box_w = 26, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 110996, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 111402, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 111766, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 112144, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 112508, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 112914, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 113320, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 113726, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 114132, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 114510, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 114902, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 115280, .adv_w = 480, .box_w = 24, .box_h = 28, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 115616, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 115994, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 116386, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 116792, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 117198, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 117590, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 117982, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 118374, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 118752, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 119158, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 119564, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 119970, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 120348, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 120726, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 121104, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 121482, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 121874, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 122280, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 122672, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 123078, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 123499, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 123891, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 124297, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 124689, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 125110, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 125502, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 125923, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 126315, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 126707, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 127128, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 127549, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 127955, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 128361, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 128782, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 129188, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 129553, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 129918, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 130339, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 130745, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 131137, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 131515, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 131921, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 132327, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 132733, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 133111, .adv_w = 480, .box_w = 21, .box_h = 27, .ofs_x = 5, .ofs_y = -3}, - {.bitmap_index = 133395, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 133773, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 134137, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 134501, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 134879, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 135257, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 135663, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 136069, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 136475, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 136867, .adv_w = 480, .box_w = 30, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 137287, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 137708, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 138086, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 138478, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 138842, .adv_w = 480, .box_w = 30, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 139262, .adv_w = 480, .box_w = 30, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 139697, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 140103, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 140495, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 140901, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 141307, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 141713, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 142134, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 142540, .adv_w = 480, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 142878, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 143256, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 143648, .adv_w = 480, .box_w = 27, .box_h = 26, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 143999, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 144391, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 144769, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 145161, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 145567, .adv_w = 480, .box_w = 28, .box_h = 30, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 145987, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 146379, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 146800, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 147178, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 147599, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 148005, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 148383, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 148775, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 149181, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 149587, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 149979, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 150357, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 150778, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 151156, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 151562, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 151954, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 152332, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 152710, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 153116, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 153494, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 153872, .adv_w = 480, .box_w = 25, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 154210, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 154574, .adv_w = 480, .box_w = 26, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 154912, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 155304, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 155668, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 156045, .adv_w = 480, .box_w = 30, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 156465, .adv_w = 480, .box_w = 22, .box_h = 26, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 156751, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 157115, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 157507, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 157899, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 158264, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 158670, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 159048, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 159454, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 159819, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 160211, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 160588, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 160980, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 161386, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 161792, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 162198, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 162576, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 162982, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 163388, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 163794, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 164186, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 164578, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 164942, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 165320, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 165741, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 166105, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 166511, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 166917, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 167323, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 167744, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 168136, .adv_w = 480, .box_w = 26, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 168474, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 168838, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 169230, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 169594, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 169972, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 170364, .adv_w = 480, .box_w = 22, .box_h = 28, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 170672, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 171050, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 171428, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 171793, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 172185, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 172606, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 173012, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 173404, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 173810, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 174216, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 174594, .adv_w = 480, .box_w = 29, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 174986, .adv_w = 480, .box_w = 30, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 175421, .adv_w = 480, .box_w = 30, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 175856, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 176277, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 176654, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 177046, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 177424, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 177816, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 178237, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 178615, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 179036, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 179442, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 179848, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 180254, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 180660, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 181066, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 181458, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 181864, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 182256, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 182662, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 183026, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 183432, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 183838, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 184259, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 184651, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 185057, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 185463, .adv_w = 480, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 185898, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 186304, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 186696, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 187102, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 187494, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 187915, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 188307, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 188728, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 189134, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 189540, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 189932, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 190338, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 190759, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 191180, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 191586, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 191978, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 192370, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 192748, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 193112, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 193477, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 193898, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 194319, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 194740, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 195105, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 195482, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 195859, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 196236, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 196628, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 197020, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 197384, .adv_w = 480, .box_w = 26, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 197735, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 198127, .adv_w = 480, .box_w = 26, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 198465, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 198843, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 199221, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 199599, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 200020, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 200426, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 200818, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 201239, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 201603, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 202009, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 202401, .adv_w = 480, .box_w = 31, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 202882, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 203227, .adv_w = 480, .box_w = 30, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 203632, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 203977, .adv_w = 330, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 204208, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 204673, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 205138, .adv_w = 540, .box_w = 34, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 205597, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 206062, .adv_w = 540, .box_w = 34, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 206453, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 206918, .adv_w = 240, .box_w = 15, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 207098, .adv_w = 360, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 207374, .adv_w = 540, .box_w = 34, .box_h = 29, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 207867, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 208212, .adv_w = 330, .box_w = 21, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 208538, .adv_w = 420, .box_w = 20, .box_h = 28, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 208818, .adv_w = 420, .box_w = 27, .box_h = 32, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 209250, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 209615, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 209980, .adv_w = 420, .box_w = 20, .box_h = 28, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 210260, .adv_w = 420, .box_w = 28, .box_h = 27, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 210638, .adv_w = 300, .box_w = 17, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 210868, .adv_w = 300, .box_w = 17, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 211098, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 211463, .adv_w = 420, .box_w = 27, .box_h = 7, .ofs_x = 0, .ofs_y = 8}, - {.bitmap_index = 211558, .adv_w = 540, .box_w = 34, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 211949, .adv_w = 600, .box_w = 38, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 212538, .adv_w = 540, .box_w = 36, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 213096, .adv_w = 480, .box_w = 30, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 213516, .adv_w = 420, .box_w = 26, .box_h = 17, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 213737, .adv_w = 420, .box_w = 26, .box_h = 17, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 213958, .adv_w = 600, .box_w = 38, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 214414, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 214759, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 215224, .adv_w = 480, .box_w = 31, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 215705, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 216070, .adv_w = 420, .box_w = 27, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 216489, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 216854, .adv_w = 420, .box_w = 27, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 217178, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 217523, .adv_w = 300, .box_w = 20, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 217833, .adv_w = 420, .box_w = 27, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 218252, .adv_w = 420, .box_w = 27, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 218671, .adv_w = 540, .box_w = 34, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 219062, .adv_w = 480, .box_w = 32, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 219558, .adv_w = 360, .box_w = 23, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 219915, .adv_w = 600, .box_w = 38, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 220447, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 220827, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 221207, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 221587, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 221967, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 222347, .adv_w = 600, .box_w = 38, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 222803, .adv_w = 420, .box_w = 24, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 223175, .adv_w = 420, .box_w = 27, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 223594, .adv_w = 480, .box_w = 31, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 224075, .adv_w = 600, .box_w = 38, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 224512, .adv_w = 360, .box_w = 23, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 224869, .adv_w = 483, .box_w = 31, .box_h = 20, .ofs_x = 0, .ofs_y = 1} + {.bitmap_index = 74787, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 75193, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 75599, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 76005, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 76397, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 76818, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 77224, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 77616, .adv_w = 480, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 78051, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 78472, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 78864, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 79270, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 79662, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 80083, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 80447, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 80839, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 81231, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 81623, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 82001, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 82379, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 82785, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 83191, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 83583, .adv_w = 480, .box_w = 25, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 83933, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 84311, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 84717, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 85082, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 85474, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 85866, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 86272, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 86650, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 87042, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 87434, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 87826, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 88218, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 88624, .adv_w = 480, .box_w = 29, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 89059, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 89437, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 89815, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 90207, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 90599, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 90964, .adv_w = 480, .box_w = 29, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 91356, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 91748, .adv_w = 480, .box_w = 29, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 92125, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 92503, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 92895, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 93287, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 93651, .adv_w = 480, .box_w = 25, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 94014, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 94406, .adv_w = 480, .box_w = 25, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 94756, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 95162, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 95527, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 95919, .adv_w = 480, .box_w = 24, .box_h = 25, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 96219, .adv_w = 480, .box_w = 26, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 96570, .adv_w = 480, .box_w = 26, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 96921, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 97327, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 97705, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 98083, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98461, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 98825, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 99246, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 99638, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 100044, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 100436, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 100813, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 101205, .adv_w = 480, .box_w = 29, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 101597, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 101989, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 102395, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 102801, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 103193, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 103571, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 103977, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 104369, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 104761, .adv_w = 480, .box_w = 26, .box_h = 27, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 105112, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 105490, .adv_w = 480, .box_w = 28, .box_h = 30, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 105910, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 106316, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 106737, .adv_w = 480, .box_w = 28, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 107157, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 107549, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 107955, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 108347, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 108768, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 109132, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 109524, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 109888, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 110309, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 110701, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 111079, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 111485, .adv_w = 480, .box_w = 26, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 111823, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 112229, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 112593, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 112971, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 113335, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 113741, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 114147, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 114553, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 114959, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 115337, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 115729, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 116107, .adv_w = 480, .box_w = 24, .box_h = 28, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 116443, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 116821, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 117213, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 117605, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 118011, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 118417, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 118809, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 119201, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 119593, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 119971, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 120377, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 120783, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 121189, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 121567, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 121945, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 122323, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 122701, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 123093, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 123499, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 123891, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 124297, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 124718, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 125110, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 125516, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 125908, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 126329, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 126721, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 127142, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 127534, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 127926, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 128347, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 128768, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 129174, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 129580, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 130001, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 130407, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 130772, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 131137, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 131558, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 131964, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 132356, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 132734, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 133140, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 133546, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 133952, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 134330, .adv_w = 480, .box_w = 21, .box_h = 27, .ofs_x = 5, .ofs_y = -3}, + {.bitmap_index = 134614, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 134992, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 135356, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 135720, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 136098, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 136476, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 136882, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 137288, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 137694, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 138086, .adv_w = 480, .box_w = 30, .box_h = 28, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 138506, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 138927, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 139305, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 139697, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 140061, .adv_w = 480, .box_w = 30, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 140481, .adv_w = 480, .box_w = 30, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 140916, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 141322, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 141714, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 142120, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 142526, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 142932, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 143353, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 143759, .adv_w = 480, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 144097, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 144475, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 144867, .adv_w = 480, .box_w = 27, .box_h = 26, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 145218, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 145610, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 145988, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 146380, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 146786, .adv_w = 480, .box_w = 28, .box_h = 30, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 147206, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 147598, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 148019, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 148397, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 148818, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 149224, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 149602, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 149994, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 150400, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 150806, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 151198, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 151576, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 151997, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 152375, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 152781, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 153173, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 153565, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 153943, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 154321, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 154727, .adv_w = 480, .box_w = 29, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 155119, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 155497, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 155875, .adv_w = 480, .box_w = 25, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 156213, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 156577, .adv_w = 480, .box_w = 26, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 156915, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 157307, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 157671, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 158048, .adv_w = 480, .box_w = 30, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 158468, .adv_w = 480, .box_w = 22, .box_h = 26, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 158754, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 159118, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 159510, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 159902, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 160267, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 160673, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 161051, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 161457, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 161822, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 162214, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 162591, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 162983, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 163389, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 163795, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 164201, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 164579, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 164985, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 165391, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 165797, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 166189, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 166581, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 166973, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 167337, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 167715, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 168136, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 168500, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 168906, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 169312, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 169718, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 170139, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 170531, .adv_w = 480, .box_w = 26, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 170869, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 171233, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 171625, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 171989, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 172367, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 172759, .adv_w = 480, .box_w = 22, .box_h = 28, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 173067, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 173445, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 173823, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 174188, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 174553, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 174945, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 175366, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 175772, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 176164, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 176570, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 176976, .adv_w = 480, .box_w = 27, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 177354, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 177719, .adv_w = 480, .box_w = 29, .box_h = 27, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 178111, .adv_w = 480, .box_w = 30, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 178546, .adv_w = 480, .box_w = 30, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 178981, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 179402, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 179779, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 180143, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 180535, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 180913, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 181305, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 181726, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 182104, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 182525, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 182931, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 183337, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 183743, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 184149, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 184570, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 184976, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 185368, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 185774, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 186166, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 186572, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 186936, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 187342, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 187748, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 188169, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 188561, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 188967, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 189373, .adv_w = 480, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 189808, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 190214, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 190606, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 191012, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 191404, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 191825, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 192217, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 192638, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 193044, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 193450, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 193842, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 194248, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 194669, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 195090, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 195496, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 195888, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 196280, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 196658, .adv_w = 480, .box_w = 28, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 197022, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 197387, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 197808, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 198229, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 198650, .adv_w = 480, .box_w = 27, .box_h = 27, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 199015, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 199392, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 199769, .adv_w = 480, .box_w = 26, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 200146, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 200538, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 200930, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 201294, .adv_w = 480, .box_w = 26, .box_h = 27, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 201645, .adv_w = 480, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 202037, .adv_w = 480, .box_w = 26, .box_h = 26, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 202375, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 202753, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 203131, .adv_w = 480, .box_w = 28, .box_h = 27, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 203509, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 203930, .adv_w = 480, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 204336, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 204728, .adv_w = 480, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 205149, .adv_w = 480, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 205513, .adv_w = 480, .box_w = 28, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 205919, .adv_w = 480, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 206311, .adv_w = 480, .box_w = 31, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 206792, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 207137, .adv_w = 480, .box_w = 30, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 207542, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 207887, .adv_w = 330, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 208118, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 208583, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 209048, .adv_w = 540, .box_w = 34, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 209507, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 209972, .adv_w = 540, .box_w = 34, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 210363, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 210828, .adv_w = 240, .box_w = 15, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 211008, .adv_w = 360, .box_w = 23, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 211284, .adv_w = 540, .box_w = 34, .box_h = 29, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 211777, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 212122, .adv_w = 330, .box_w = 21, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 212448, .adv_w = 420, .box_w = 20, .box_h = 28, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 212728, .adv_w = 420, .box_w = 27, .box_h = 32, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 213160, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 213525, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 213890, .adv_w = 420, .box_w = 20, .box_h = 28, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 214170, .adv_w = 420, .box_w = 28, .box_h = 27, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 214548, .adv_w = 300, .box_w = 17, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 214778, .adv_w = 300, .box_w = 17, .box_h = 27, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 215008, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 215373, .adv_w = 420, .box_w = 27, .box_h = 7, .ofs_x = 0, .ofs_y = 8}, + {.bitmap_index = 215468, .adv_w = 540, .box_w = 34, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 215859, .adv_w = 600, .box_w = 38, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 216448, .adv_w = 540, .box_w = 36, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 217006, .adv_w = 480, .box_w = 30, .box_h = 28, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 217426, .adv_w = 420, .box_w = 26, .box_h = 17, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 217647, .adv_w = 420, .box_w = 26, .box_h = 17, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 217868, .adv_w = 600, .box_w = 38, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 218324, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 218669, .adv_w = 480, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 219134, .adv_w = 480, .box_w = 31, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 219615, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 219980, .adv_w = 420, .box_w = 27, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 220399, .adv_w = 420, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 220764, .adv_w = 420, .box_w = 27, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 221088, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 221433, .adv_w = 300, .box_w = 20, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 221743, .adv_w = 420, .box_w = 27, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 222162, .adv_w = 420, .box_w = 27, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 222581, .adv_w = 540, .box_w = 34, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 222972, .adv_w = 480, .box_w = 32, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 223468, .adv_w = 360, .box_w = 23, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 223825, .adv_w = 600, .box_w = 38, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 224357, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 224737, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 225117, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 225497, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 225877, .adv_w = 600, .box_w = 38, .box_h = 20, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 226257, .adv_w = 600, .box_w = 38, .box_h = 24, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 226713, .adv_w = 420, .box_w = 24, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 227085, .adv_w = 420, .box_w = 27, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 227504, .adv_w = 480, .box_w = 31, .box_h = 31, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 227985, .adv_w = 600, .box_w = 38, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 228422, .adv_w = 360, .box_w = 23, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 228779, .adv_w = 483, .box_w = 31, .box_h = 20, .ofs_x = 0, .ofs_y = 1} }; /*--------------------- @@ -30709,55 +31230,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -30789,7 +31312,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -30894,7 +31417,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -30993,7 +31517,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_32.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_32.c index dc6b6385..d6aaa8dc 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_32.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_32.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 32 px * Bpp: 4 - * Opts: --bpp 4 --size 32 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_32.c + * Opts: --bpp 4 --size 32 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_32.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -11421,6 +11421,65 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x2, 0xb1, 0x0, 0x0, 0x5, 0x84, 0x0, + /* U+4F53 "体" */ + 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x66, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xfc, 0x50, 0x0, 0x0, 0x0, + 0xf, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xfd, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xf1, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xfb, 0x0, 0x11, 0x0, 0x0, 0x0, 0xff, 0x50, + 0x0, 0x0, 0x1, 0x11, 0x0, 0x0, 0x5, 0xff, + 0x60, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0xcf, 0xf6, + 0x5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf6, 0x0, 0x0, 0x4f, 0xff, 0x60, + 0x0, 0x0, 0x0, 0x5f, 0xef, 0xfe, 0xf9, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xf6, 0x0, + 0x0, 0x0, 0xa, 0xfb, 0xff, 0xaf, 0xd0, 0x0, + 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0x60, 0x0, + 0x0, 0x0, 0xff, 0x6f, 0xf5, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xbd, 0xf6, 0x0, 0x0, + 0x0, 0x5f, 0xf1, 0xff, 0x4b, 0xfa, 0x0, 0x0, + 0x0, 0x0, 0xaf, 0xf2, 0xdf, 0x60, 0x0, 0x0, + 0xd, 0xfb, 0xf, 0xf4, 0x5f, 0xf2, 0x0, 0x0, + 0x0, 0x7, 0xf8, 0xd, 0xf6, 0x0, 0x0, 0x5, + 0xff, 0x40, 0xff, 0x40, 0xdf, 0xb0, 0x0, 0x0, + 0x0, 0x7, 0x0, 0xdf, 0x60, 0x0, 0x1, 0xef, + 0xc0, 0xf, 0xf4, 0x4, 0xff, 0x60, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xf6, 0x0, 0x0, 0xaf, 0xf3, + 0x0, 0xff, 0x40, 0xb, 0xff, 0x30, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0x60, 0x0, 0x8f, 0xf9, 0x0, + 0xf, 0xf4, 0x0, 0x1e, 0xff, 0x30, 0x0, 0x0, + 0x0, 0xd, 0xf6, 0x0, 0x7f, 0xfd, 0x0, 0x0, + 0xff, 0x40, 0x0, 0x3f, 0xff, 0x60, 0x0, 0x0, + 0x0, 0xdf, 0x60, 0x9f, 0xfe, 0x20, 0x0, 0xf, + 0xf4, 0x0, 0x0, 0x5f, 0xff, 0xb2, 0x0, 0x0, + 0xd, 0xf8, 0xcf, 0xff, 0x32, 0x33, 0x22, 0xff, + 0x52, 0x22, 0x30, 0x4f, 0xfe, 0x30, 0x0, 0x0, + 0xdf, 0x68, 0xfe, 0x30, 0xbf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x3d, 0x20, 0x0, 0x0, 0xd, + 0xf6, 0x6, 0x20, 0xb, 0xff, 0xee, 0xff, 0xee, + 0xee, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, + 0x60, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xf6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0x60, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xf6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0x70, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xf5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xe7, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0x60, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x32, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -11596,6 +11655,65 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xff, 0x0, 0x4c, 0x10, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0xeb, 0x71, 0x0, + /* U+4FC4 "俄" */ + 0x0, 0x0, 0x0, 0x78, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x97, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0xf5, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xd0, 0x0, 0x0, 0x4, 0xa6, 0x0, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0x60, 0x3, 0x7a, 0xef, 0xfe, 0x10, 0xff, + 0x50, 0x5e, 0x40, 0x0, 0x0, 0x0, 0xa, 0xff, + 0x1, 0xef, 0xff, 0xfe, 0xb8, 0x30, 0xef, 0x51, + 0xef, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xf9, 0x0, + 0x7f, 0xce, 0xf5, 0x0, 0x0, 0xef, 0x50, 0x5f, + 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf4, 0x0, 0x0, + 0xc, 0xf5, 0x0, 0x0, 0xef, 0x50, 0xc, 0xff, + 0x10, 0x0, 0x0, 0xef, 0xf0, 0x0, 0x0, 0xc, + 0xf5, 0x0, 0x0, 0xdf, 0x50, 0x4, 0xe6, 0x0, + 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0xc, 0xf5, + 0x0, 0x0, 0xdf, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0xe0, 0x3, 0x32, 0x2d, 0xf6, 0x22, + 0x22, 0xdf, 0x62, 0x22, 0x23, 0x40, 0x0, 0xaf, + 0xff, 0xe0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf1, 0x5, 0xff, 0xbf, + 0xe0, 0xd, 0xed, 0xdf, 0xfe, 0xdd, 0xdd, 0xff, + 0xed, 0xdd, 0xde, 0xf1, 0x3f, 0xfd, 0x5f, 0xe0, + 0x0, 0x0, 0xc, 0xf5, 0x0, 0x0, 0xbf, 0x60, + 0x0, 0x0, 0x0, 0x1b, 0xf4, 0x5f, 0xe0, 0x0, + 0x0, 0xc, 0xf5, 0x0, 0x0, 0xaf, 0x70, 0x0, + 0x0, 0x0, 0x0, 0x40, 0x5f, 0xe0, 0x0, 0x0, + 0xc, 0xf5, 0x0, 0x0, 0x8f, 0x90, 0x3, 0x30, + 0x0, 0x0, 0x0, 0x5f, 0xe0, 0x0, 0x0, 0xc, + 0xf5, 0x4, 0x40, 0x6f, 0xb0, 0xa, 0xf9, 0x10, + 0x0, 0x0, 0x5f, 0xe0, 0x0, 0x0, 0xc, 0xfc, + 0xef, 0x80, 0x4f, 0xe0, 0x2f, 0xfb, 0x0, 0x0, + 0x0, 0x5f, 0xe0, 0x0, 0x16, 0xbf, 0xff, 0xfd, + 0x60, 0x1f, 0xf1, 0xaf, 0xe1, 0x0, 0x0, 0x0, + 0x5f, 0xe0, 0x8e, 0xff, 0xff, 0xf9, 0x20, 0x0, + 0xe, 0xf8, 0xff, 0x40, 0x0, 0x0, 0x0, 0x5f, + 0xe0, 0x7f, 0xfd, 0x8d, 0xf5, 0x0, 0x0, 0xa, + 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xe0, + 0x1b, 0x40, 0xc, 0xf5, 0x0, 0x0, 0x6, 0xff, + 0xe1, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xe0, 0x0, + 0x0, 0xc, 0xf5, 0x0, 0x0, 0x1d, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xe0, 0x0, 0x0, + 0xc, 0xf5, 0x0, 0x2, 0xdf, 0xff, 0x90, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xe0, 0x0, 0x0, 0xc, + 0xf5, 0x0, 0x5e, 0xff, 0xaf, 0xf2, 0x7, 0x70, + 0x0, 0x0, 0x5f, 0xe0, 0x0, 0x0, 0xd, 0xf5, + 0x1b, 0xff, 0xe3, 0xd, 0xfb, 0x9, 0xfd, 0x0, + 0x0, 0x5f, 0xf0, 0x0, 0x34, 0x6f, 0xf4, 0xa, + 0xfd, 0x20, 0x4, 0xff, 0x8d, 0xf9, 0x0, 0x0, + 0x5f, 0xf0, 0x0, 0xdf, 0xff, 0xf2, 0x0, 0x80, + 0x0, 0x0, 0x9f, 0xff, 0xf4, 0x0, 0x0, 0x6f, + 0xf0, 0x0, 0x7f, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xff, 0xc0, 0x0, 0x0, 0x6f, 0xf1, + 0x0, 0x28, 0x51, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xac, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+4FDD "保" */ 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -17547,6 +17665,65 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0xf, 0xf5, 0x0, 0x0, 0x0, 0x9, 0xfa, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa2, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0x40, 0x0, 0x0, 0x0, 0xf, 0xf7, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xfc, 0x2, 0x32, 0x22, 0x22, 0x3f, 0xf5, 0x0, + 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0xcf, 0xf2, + 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x30, 0x0, 0x7, 0xff, 0x50, 0xc, + 0xfe, 0xee, 0xee, 0xef, 0xfe, 0xee, 0xee, 0xee, + 0xef, 0x30, 0x0, 0x4f, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xef, 0xd0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xaf, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1e, 0xff, 0x20, 0x2e, 0x60, 0x8b, 0xbb, 0xbb, + 0xef, 0xeb, 0xbb, 0xbb, 0xbb, 0xa0, 0x0, 0xa, + 0xf4, 0x0, 0xaf, 0xf2, 0xbf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x50, + 0x3, 0xff, 0x70, 0xbf, 0x80, 0xc, 0xf6, 0x2, + 0xff, 0x0, 0x4f, 0xe0, 0x0, 0x0, 0x0, 0xd, + 0xfc, 0x0, 0xaf, 0x70, 0xc, 0xf5, 0x2, 0xff, + 0x0, 0x4f, 0xe0, 0x0, 0x0, 0x0, 0x8f, 0xf3, + 0x0, 0xaf, 0x70, 0xc, 0xf5, 0x2, 0xff, 0x0, + 0x4f, 0xd0, 0x0, 0x0, 0x3, 0xff, 0x90, 0x0, + 0xbf, 0x70, 0xc, 0xf5, 0x2, 0xff, 0x0, 0x4f, + 0xe0, 0x0, 0x0, 0x1e, 0xff, 0x70, 0x0, 0xbf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0x0, 0x0, 0xcf, 0xff, 0x70, 0x0, 0xae, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xd0, 0x0, + 0x1c, 0xff, 0xef, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xf6, 0xcf, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0x90, + 0xcf, 0x70, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x50, 0x5, 0x0, 0xcf, + 0x70, 0xc, 0xff, 0xff, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xef, 0xff, 0x50, 0x0, 0x0, 0xcf, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x70, 0x0, + 0x20, 0x1, 0x32, 0xb, 0xf9, 0x0, 0x0, 0x0, + 0x20, 0x0, 0x0, 0x0, 0xcf, 0x70, 0x4, 0xfd, + 0x17, 0xfd, 0x5, 0xff, 0x40, 0x0, 0x2c, 0xe1, + 0x0, 0x0, 0x0, 0xcf, 0x70, 0x9, 0xfd, 0x7, + 0xfc, 0x0, 0xbf, 0xd0, 0x0, 0x3f, 0xfb, 0x0, + 0x0, 0x0, 0xcf, 0x70, 0xe, 0xf7, 0x6, 0xfb, + 0x0, 0x2c, 0x30, 0x20, 0x6, 0xff, 0x70, 0x0, + 0x0, 0xcf, 0x70, 0x4f, 0xf1, 0x6, 0xfc, 0x0, + 0x0, 0x0, 0x8e, 0x81, 0xbf, 0xf2, 0x0, 0x0, + 0xdf, 0x70, 0xaf, 0xb0, 0x5, 0xfe, 0x10, 0x0, + 0x0, 0xdf, 0xe0, 0x2f, 0x70, 0x0, 0x0, 0xdf, + 0x80, 0x29, 0x50, 0x2, 0xff, 0xfd, 0xdd, 0xdf, + 0xff, 0x80, 0x1, 0x0, 0x0, 0x0, 0xef, 0x80, + 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xf9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0x90, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -22727,6 +22904,63 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x15, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, + /* U+7259 "牙" */ + 0x0, 0x3, 0x33, 0x22, 0x22, 0x22, 0x22, 0x22, + 0x22, 0x22, 0x22, 0x22, 0x33, 0x20, 0x0, 0x0, + 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0xc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0x90, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0x20, 0x0, 0x0, 0x0, 0x0, 0xef, 0x90, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xfc, + 0x20, 0x0, 0x0, 0x0, 0xef, 0x90, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0xef, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbf, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0xef, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xff, 0x70, 0x0, 0x0, 0x0, + 0x0, 0xef, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xef, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xaf, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, + 0x90, 0x0, 0x0, 0x1, 0x20, 0x0, 0x4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0xdf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf1, 0x0, 0x0, 0x46, 0x20, 0x0, + 0x0, 0x0, 0x2f, 0xfa, 0xef, 0x90, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xaf, 0xf2, 0xef, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0xff, 0x90, 0xef, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0xfe, + 0x0, 0xef, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xdf, 0xf4, 0x0, + 0xef, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xff, 0x70, 0x0, 0xef, + 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xcf, 0xf9, 0x0, 0x0, 0xef, 0x90, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3e, 0xff, 0x90, 0x0, 0x0, 0xef, 0x90, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0xef, 0x90, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xdf, 0xff, 0x50, + 0x0, 0x0, 0x0, 0xef, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xbf, 0xff, 0xc2, 0x0, 0x0, + 0x0, 0x0, 0xef, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xcf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x7, + 0xff, 0xfa, 0x10, 0x0, 0x0, 0x0, 0x58, 0xae, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xfd, 0x93, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + /* U+72B6 "状" */ 0x0, 0x0, 0x0, 0x1, 0x22, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -22955,6 +23189,63 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x22, 0x22, + 0x22, 0x23, 0x10, 0x0, 0x2, 0xff, 0x47, 0x66, + 0x66, 0x66, 0x66, 0x71, 0xe, 0xff, 0xff, 0xff, + 0xff, 0x60, 0x0, 0x2, 0xff, 0x5f, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0xd, 0xee, 0xef, 0xfe, 0xef, + 0x50, 0x0, 0x2, 0xff, 0x39, 0x88, 0xaf, 0xf8, + 0x88, 0x92, 0x0, 0x0, 0x4f, 0xf0, 0x0, 0x0, + 0x0, 0x2, 0xff, 0x0, 0x0, 0x4f, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xf0, 0x0, 0x0, 0x0, + 0x2, 0xff, 0x0, 0x0, 0x4f, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xf0, 0x0, 0x8, 0xa5, 0x2, + 0xff, 0x0, 0x0, 0x4f, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xf0, 0x0, 0xb, 0xf7, 0x2, 0xff, + 0x0, 0x0, 0x4f, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xf0, 0x0, 0xc, 0xf7, 0x2, 0xff, 0x0, + 0x0, 0x4f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xf0, 0x0, 0xc, 0xf6, 0x2, 0xfe, 0x0, 0x0, + 0x4f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xf0, + 0x0, 0xd, 0xf6, 0x3, 0xfe, 0x0, 0x0, 0x4f, + 0xf0, 0x0, 0x0, 0x5, 0xa9, 0xaf, 0xf9, 0x9a, + 0xd, 0xf5, 0x3, 0xfd, 0x1a, 0x99, 0xaf, 0xf8, + 0x99, 0x60, 0x8, 0xff, 0xff, 0xff, 0xff, 0xe, + 0xf4, 0x4, 0xfd, 0x2f, 0xff, 0xff, 0xff, 0xff, + 0xa0, 0x4, 0x88, 0x9f, 0xf7, 0x88, 0xf, 0xf3, + 0x6, 0xfb, 0x6, 0x65, 0x8f, 0xf5, 0x56, 0x40, + 0x0, 0x0, 0x4f, 0xf0, 0x0, 0xf, 0xf2, 0x8, + 0xf9, 0x0, 0x0, 0x4f, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xf0, 0x0, 0x0, 0x0, 0xc, 0xf7, + 0x0, 0x0, 0x4f, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xf4, 0x0, + 0x0, 0x4f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xf0, 0x0, 0x0, 0x0, 0x4f, 0xf0, 0x0, 0x0, + 0x4f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xf0, + 0x0, 0x0, 0x0, 0x9f, 0xb0, 0x0, 0x0, 0x4f, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xf0, 0x1, + 0x30, 0x0, 0xff, 0x70, 0x0, 0x0, 0x4f, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xf3, 0xaf, 0xc0, + 0x7, 0xff, 0x10, 0x0, 0x0, 0x4f, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xa0, 0x1f, + 0xf9, 0x0, 0x0, 0x0, 0x4f, 0xf0, 0x0, 0x0, + 0x3, 0x8d, 0xff, 0xfd, 0x71, 0x0, 0xbf, 0xf1, + 0x0, 0x0, 0x0, 0x4f, 0xf0, 0x0, 0x0, 0x7f, + 0xff, 0xfb, 0x40, 0x0, 0x9, 0xff, 0x60, 0x7, + 0xed, 0xdd, 0xef, 0xfd, 0xde, 0xeb, 0xe, 0xfa, + 0x20, 0x0, 0x0, 0x9f, 0xfa, 0x0, 0x8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0x4, 0x10, 0x0, + 0x0, 0x3, 0xef, 0xc0, 0x0, 0x1, 0x11, 0x0, + 0x0, 0x0, 0x1, 0x11, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + /* U+7406 "理" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x70, 0x0, @@ -24538,6 +24829,63 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xfa, 0x30, 0x0, 0x0, 0x0, 0x2, 0xe9, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x7, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xfa, 0x44, 0x44, + 0x45, 0x10, 0xd, 0xfa, 0x0, 0x0, 0x0, 0x11, + 0x0, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0x40, + 0x5f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7, + 0xff, 0xac, 0xff, 0xaa, 0xab, 0x30, 0xef, 0xee, + 0xef, 0xfe, 0xee, 0xfe, 0x0, 0x7f, 0xf8, 0x0, + 0xef, 0x50, 0x0, 0xa, 0xfe, 0x10, 0xe, 0xf6, + 0x0, 0x0, 0x9, 0xff, 0x90, 0x0, 0x6f, 0xe0, + 0x0, 0x8f, 0xf4, 0x0, 0x9, 0xfe, 0x0, 0x0, + 0x7f, 0xfa, 0x0, 0x0, 0xe, 0xf6, 0x6, 0xff, + 0x70, 0x0, 0x3, 0xff, 0x50, 0x0, 0x7, 0x90, + 0x1, 0xb1, 0x5, 0x40, 0x1, 0xaa, 0x0, 0x0, + 0x0, 0x83, 0x0, 0x0, 0x0, 0x0, 0xd, 0xfc, + 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xb0, 0x3f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, + 0x0, 0x2, 0x20, 0x7f, 0xf8, 0x3f, 0xfe, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xff, 0x0, 0x0, 0x4f, + 0xf0, 0xc, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xff, 0x0, 0x0, 0x4f, 0xf0, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xfe, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x3c, 0xcc, + 0xcc, 0xcc, 0xcc, 0xc5, 0x0, 0x3, 0xfe, 0x0, + 0x0, 0x3f, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff, + 0xff, 0xf5, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x3f, + 0xe0, 0x0, 0x3f, 0xe0, 0x0, 0x0, 0xc, 0xf5, + 0x0, 0x3, 0xfe, 0x0, 0x0, 0x3f, 0xe0, 0x0, + 0x3f, 0xe0, 0x0, 0x0, 0xc, 0xf5, 0x0, 0x3, + 0xfe, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x3f, 0xfd, + 0xdd, 0xdd, 0xdf, 0xf5, 0x0, 0x3, 0xfe, 0x0, + 0x0, 0x3f, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff, + 0xff, 0xf5, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x3f, + 0xe0, 0x0, 0x3f, 0xe0, 0x0, 0x0, 0xc, 0xf5, + 0x0, 0x3, 0xfe, 0x0, 0x0, 0x3f, 0xe0, 0x0, + 0x3f, 0xe0, 0x0, 0x0, 0xc, 0xf5, 0x0, 0x3, + 0xfe, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x3f, 0xe0, + 0x0, 0x0, 0xc, 0xf5, 0x0, 0x3, 0xfe, 0x0, + 0x0, 0x3f, 0xe0, 0x0, 0x4f, 0xfe, 0xee, 0xee, + 0xef, 0xf5, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x3f, + 0xe0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x0, 0x3, 0xfe, 0x0, 0x0, 0x3f, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xfe, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x67, 0x7c, 0xfd, 0x0, + 0x0, 0x4f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0xff, 0xf8, 0x0, 0x0, 0x4f, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xea, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x22, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -25665,6 +26013,61 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x5d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0x0, 0x0, 0x0, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x0, 0x0, 0x22, 0x0, 0x0, 0x0, + 0x0, 0x22, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0xff, 0x50, 0x0, 0x0, 0x5, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0x40, 0x0, 0x0, 0x4, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x18, 0x76, 0x66, 0x68, 0xff, 0x86, + 0x66, 0x66, 0x69, 0xff, 0x76, 0x66, 0x67, 0x76, + 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1c, 0xcb, + 0xbb, 0xbc, 0xff, 0xcb, 0xbb, 0xbb, 0xbc, 0xff, + 0xcb, 0xbb, 0xbc, 0xc9, 0x0, 0x0, 0x0, 0x4, + 0xff, 0x30, 0x0, 0x0, 0x4, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0x30, + 0x7, 0x53, 0x4, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3, 0x99, 0x20, 0xf, 0xfd, + 0x2, 0x99, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xfa, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0x22, + 0x22, 0x22, 0x2f, 0xfa, 0x22, 0x22, 0x22, 0x21, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xf0, 0x0, 0x0, 0xf, 0xf6, 0x0, 0x0, + 0xf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xf0, + 0x0, 0x0, 0xf, 0xf5, 0x0, 0x0, 0xf, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xf0, 0x0, 0x0, + 0xf, 0xf4, 0x0, 0x0, 0xf, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xf0, 0x0, 0x0, 0xf, 0xf3, + 0x0, 0x0, 0xf, 0xf4, 0x0, 0x0, 0x43, 0x33, + 0x5f, 0xf2, 0x22, 0x22, 0x3f, 0xf5, 0x22, 0x22, + 0x2f, 0xf5, 0x22, 0x32, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0xfe, 0xed, 0xdd, 0xdd, 0xdd, 0xdd, + 0xff, 0xff, 0xfd, 0xdd, 0xdd, 0xdd, 0xdd, 0xe9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xef, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xff, 0x1a, 0xff, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xaf, 0xf5, 0x0, 0xcf, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, 0xff, + 0x80, 0x0, 0x1d, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xff, 0xf8, 0x0, 0x0, + 0x1, 0xcf, 0xfd, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x16, 0xef, 0xff, 0x60, 0x0, 0x0, 0x0, 0x9, + 0xff, 0xfb, 0x40, 0x0, 0x3, 0x7b, 0xff, 0xff, + 0xa2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5e, 0xff, + 0xfe, 0xa4, 0x1c, 0xff, 0xff, 0xb3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xc0, + 0x0, 0xde, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x7d, 0x20, 0x0, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x9, 0xdb, 0x0, 0x0, 0x0, 0xef, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -26131,6 +26534,57 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x30, + /* U+897F "西" */ + 0xbe, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xde, 0xeb, 0xcf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0x12, 0x11, 0x0, 0x0, + 0x2, 0xff, 0x0, 0x0, 0xff, 0x20, 0x0, 0x0, + 0x1, 0x11, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, + 0x0, 0x0, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0x0, 0x0, + 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xff, 0x0, 0x0, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xff, 0x0, 0x0, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, + 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x1f, + 0xf4, 0x0, 0x3, 0xff, 0x0, 0x0, 0xff, 0x20, + 0x0, 0xf, 0xf2, 0x0, 0x0, 0xf, 0xf4, 0x0, + 0x4, 0xfd, 0x0, 0x0, 0xff, 0x20, 0x0, 0xf, + 0xf2, 0x0, 0x0, 0xf, 0xf4, 0x0, 0x6, 0xfb, + 0x0, 0x0, 0xff, 0x20, 0x0, 0xf, 0xf2, 0x0, + 0x0, 0xf, 0xf4, 0x0, 0xa, 0xf9, 0x0, 0x0, + 0xff, 0x20, 0x0, 0xf, 0xf2, 0x0, 0x0, 0xf, + 0xf4, 0x0, 0xf, 0xf5, 0x0, 0x0, 0xff, 0x10, + 0x0, 0xf, 0xf2, 0x0, 0x0, 0xf, 0xf4, 0x0, + 0x6f, 0xf1, 0x0, 0x0, 0xff, 0x10, 0x0, 0xf, + 0xf2, 0x0, 0x0, 0xf, 0xf4, 0x1, 0xef, 0x90, + 0x0, 0x0, 0xff, 0x73, 0x45, 0x2f, 0xf2, 0x0, + 0x0, 0xf, 0xf4, 0xb, 0xff, 0x10, 0x0, 0x0, + 0xef, 0xff, 0xff, 0x3f, 0xf2, 0x0, 0x0, 0xf, + 0xf4, 0xaf, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xff, + 0xff, 0x1f, 0xf2, 0x0, 0x0, 0xf, 0xf4, 0x4e, + 0xb0, 0x0, 0x0, 0x0, 0x1, 0x33, 0x33, 0xf, + 0xf2, 0x0, 0x0, 0xf, 0xf4, 0x1, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf2, 0x0, + 0x0, 0xf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xf2, 0x0, 0x0, 0xf, + 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xf2, 0x0, 0x0, 0xf, 0xfd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdf, + 0xf2, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, + 0x0, 0xf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xf2, 0x0, 0x0, 0x1f, + 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xf3, 0x0, 0x0, 0x1f, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xf3, 0x0, 0x0, 0x2, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8981 "要" */ 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x10, 0xf, @@ -26426,6 +26880,61 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x16, 0x41, 0x0, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xbb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x23, 0x22, 0x22, 0x22, 0x22, 0x22, 0xff, 0xe2, + 0x22, 0x22, 0x22, 0x22, 0x23, 0x30, 0xaf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf1, 0xaf, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x21, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x11, 0x21, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0x0, 0x0, 0x0, 0x2, 0xee, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xde, 0xf7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x21, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, 0x20, + 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, + 0x0, 0x4, 0xee, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xde, 0xe4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xb6, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0xff, 0x82, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, + 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0xff, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xf7, 0x0, 0x0, + 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xf7, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, + 0x0, 0x0, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xf9, 0x0, 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x0, 0x21, 0x0, 0x1, 0x20, 0x0, 0x0, 0x0, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -27020,6 +27529,65 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BED "语" */ + 0x0, 0x0, 0x40, 0x0, 0x0, 0x12, 0x11, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x12, 0x10, 0x0, + 0xb, 0xf5, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1d, + 0xff, 0x30, 0x0, 0x7c, 0xcb, 0xbb, 0xbe, 0xfe, + 0xbb, 0xbb, 0xbb, 0xcc, 0x70, 0x0, 0x1, 0xef, + 0xe2, 0x0, 0x0, 0x0, 0x0, 0xd, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xf7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xd2, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xff, 0xff, 0xff, 0xfd, 0xcc, 0xcc, 0xcc, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x20, 0x0, + 0xef, 0x91, 0x11, 0x11, 0xef, 0xa0, 0x0, 0x56, + 0x54, 0x44, 0x41, 0x0, 0x0, 0x0, 0x2, 0xff, + 0x60, 0x0, 0x0, 0xff, 0x80, 0x0, 0xef, 0xff, + 0xff, 0xf3, 0x0, 0x0, 0x0, 0x5, 0xff, 0x20, + 0x0, 0x3, 0xff, 0x70, 0x0, 0xde, 0xdd, 0xdf, + 0xf3, 0x0, 0x0, 0x0, 0x8, 0xff, 0x0, 0x0, + 0x5, 0xff, 0x50, 0x0, 0x0, 0x0, 0x4f, 0xf2, + 0x0, 0x10, 0x0, 0xb, 0xfc, 0x0, 0x0, 0x8, + 0xff, 0x30, 0x11, 0x0, 0x0, 0x4f, 0xf2, 0x7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x0, 0x0, 0x4f, 0xf2, 0x7, 0xff, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xee, 0x0, 0x0, 0x4f, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xf2, 0x0, 0x0, 0x2, 0x22, 0x22, + 0x22, 0x22, 0x22, 0x22, 0x20, 0x0, 0x0, 0x0, + 0x4f, 0xf2, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x4f, + 0xf2, 0x8, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x4f, 0xf2, + 0xaf, 0x60, 0x3f, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xf0, 0x0, 0x0, 0x0, 0x4f, 0xfa, 0xff, + 0xc0, 0x3f, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0xf0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xfd, 0x10, + 0x3f, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xf0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0xd1, 0x0, 0x3f, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xf0, 0x0, + 0x0, 0x0, 0xaf, 0xfe, 0x10, 0x0, 0x3f, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xf0, 0x0, 0x0, + 0x7, 0xff, 0xf3, 0x0, 0x0, 0x3f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, + 0xef, 0x70, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x29, + 0x0, 0x0, 0x0, 0x4f, 0xf3, 0x0, 0x0, 0x0, + 0x0, 0x5f, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+8BF7 "请" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaa, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -33852,392 +34420,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 82804, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, {.bitmap_index = 83285, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 83720, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 84170, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 84651, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 85086, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 85507, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 85957, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 86407, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 86872, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 87353, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 87788, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 84170, .adv_w = 512, .box_w = 31, .box_h = 29, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 84620, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 85101, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 85536, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 85957, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 86407, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 86857, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 87307, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 87772, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, {.bitmap_index = 88253, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 88688, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 89169, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 89590, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 90025, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 90445, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 90880, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 91286, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 91736, .adv_w = 512, .box_w = 31, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 92186, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 92651, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 93086, .adv_w = 512, .box_w = 26, .box_h = 29, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 93463, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 93898, .adv_w = 512, .box_w = 29, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 94348, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 94769, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 95204, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 95638, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 96088, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 96523, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 96958, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 97393, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97843, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 98278, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 98728, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 99193, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 99628, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 100063, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 100483, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 100918, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 101368, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 101788, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 102223, .adv_w = 512, .box_w = 31, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 102657, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 103077, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 103498, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 103933, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 104339, .adv_w = 512, .box_w = 27, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 104758, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 105179, .adv_w = 512, .box_w = 27, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 105584, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 106034, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 106440, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 106890, .adv_w = 512, .box_w = 26, .box_h = 27, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 107241, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 107647, .adv_w = 512, .box_w = 27, .box_h = 28, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 108025, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 108475, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 108910, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 109330, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 109765, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 110171, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 110621, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 88688, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 89153, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 89588, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 90069, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 90490, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 90925, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 91345, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 91780, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 92186, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 92636, .adv_w = 512, .box_w = 31, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 93086, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 93551, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 93986, .adv_w = 512, .box_w = 26, .box_h = 29, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 94363, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 94798, .adv_w = 512, .box_w = 29, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 95248, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 95669, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 96104, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 96538, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 96988, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 97423, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 97858, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 98293, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98743, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 99178, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 99628, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 100093, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 100528, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 100963, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 101383, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 101818, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 102268, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 102688, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 103123, .adv_w = 512, .box_w = 31, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 103557, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 103977, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 104398, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 104833, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 105239, .adv_w = 512, .box_w = 27, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 105658, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 106079, .adv_w = 512, .box_w = 27, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 106484, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 106934, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 107340, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 107790, .adv_w = 512, .box_w = 26, .box_h = 27, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 108141, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 108547, .adv_w = 512, .box_w = 27, .box_h = 28, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 108925, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 109375, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 109810, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 110230, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 110665, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 111071, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 111521, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 111971, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 112405, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 112840, .adv_w = 512, .box_w = 31, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 113274, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 113709, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 114144, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 114594, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 115029, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 115464, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 115929, .adv_w = 512, .box_w = 29, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 116379, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 116829, .adv_w = 512, .box_w = 27, .box_h = 29, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 117221, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 117641, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 118106, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 118587, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 119068, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 119533, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 119983, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 120448, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 120898, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 121363, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 121769, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 122204, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 122624, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 123105, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 123540, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 123975, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 124440, .adv_w = 512, .box_w = 27, .box_h = 27, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 124805, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 125255, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 125661, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 126067, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 126473, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 126938, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 127403, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 127868, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 128333, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 128753, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 129203, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 129653, .adv_w = 512, .box_w = 26, .box_h = 29, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 130030, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 130465, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 130915, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 131365, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 111521, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 111971, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 112421, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 112871, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 113305, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 113740, .adv_w = 512, .box_w = 31, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 114174, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 114609, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 115044, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 115494, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 115929, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 116364, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 116829, .adv_w = 512, .box_w = 29, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 117279, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 117729, .adv_w = 512, .box_w = 27, .box_h = 29, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 118121, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 118541, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 119006, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 119487, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 119968, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 120433, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 120883, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 121348, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 121798, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 122263, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 122669, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 123104, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 123524, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 124005, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 124440, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 124875, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 125340, .adv_w = 512, .box_w = 27, .box_h = 27, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 125705, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 126155, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 126561, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 126967, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 127373, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 127838, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 128303, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 128768, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 129233, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 129653, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 130103, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 130553, .adv_w = 512, .box_w = 26, .box_h = 29, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 130930, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 131365, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 131815, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 132265, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 132700, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 133121, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 133571, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 134036, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 134501, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 134951, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 135385, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 135806, .adv_w = 512, .box_w = 29, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 136256, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 136706, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 137171, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 137636, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 138071, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 138506, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 138971, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 139436, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 139901, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 140336, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 140786, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 141251, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 141732, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 142182, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 142632, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 143097, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 143562, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 144027, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 144462, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 144927, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 145362, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 145768, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 146203, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 146668, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 147133, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 147583, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 132265, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 132715, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 133165, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 133615, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 134050, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 134471, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 134921, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 135386, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 135851, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 136301, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 136735, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 137156, .adv_w = 512, .box_w = 29, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 137606, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 138056, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 138521, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 138986, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 139421, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 139856, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 140321, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 140786, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 141251, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 141686, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 142136, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 142601, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 143082, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 143532, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 143982, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 144447, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 144912, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 145377, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 145812, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 146277, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 146712, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 147118, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 147553, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 148018, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 148483, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 148933, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 149398, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 149804, .adv_w = 512, .box_w = 21, .box_h = 28, .ofs_x = 6, .ofs_y = -3}, - {.bitmap_index = 150098, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 150533, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 150939, .adv_w = 512, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 151331, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 151752, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 152158, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 152623, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 153044, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 153494, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 153929, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 154394, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 154859, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 155265, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 155700, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 156135, .adv_w = 512, .box_w = 31, .box_h = 29, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 156585, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 157066, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 157516, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 157966, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 158416, .adv_w = 512, .box_w = 31, .box_h = 29, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 158866, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 159331, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 159796, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 160246, .adv_w = 512, .box_w = 29, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 160623, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 161044, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 161494, .adv_w = 512, .box_w = 28, .box_h = 28, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 161886, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 162321, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 162756, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 163177, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 163627, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 164092, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 164513, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 164978, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 165413, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 165878, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 166328, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 166763, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 167213, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 167678, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 168143, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 168608, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 169058, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 169539, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 169989, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 170439, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 170889, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 171324, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 171744, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 172179, .adv_w = 512, .box_w = 31, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 172629, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 173049, .adv_w = 512, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 173427, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 173847, .adv_w = 512, .box_w = 28, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 174239, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 174689, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 175109, .adv_w = 512, .box_w = 27, .box_h = 30, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 175514, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 175964, .adv_w = 512, .box_w = 22, .box_h = 28, .ofs_x = 5, .ofs_y = -3}, - {.bitmap_index = 176272, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 176692, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 177142, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 177592, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 178013, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 178478, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 178884, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 179349, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 179755, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 180190, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 180624, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 181074, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 181539, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 181989, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 182439, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 182859, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 183324, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 183789, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 184254, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 184704, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 185154, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 185560, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 185995, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 186460, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 186895, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 187360, .adv_w = 512, .box_w = 31, .box_h = 29, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 187810, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 188245, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 188710, .adv_w = 512, .box_w = 31, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 189160, .adv_w = 512, .box_w = 28, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 189552, .adv_w = 512, .box_w = 29, .box_h = 27, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 189944, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 190379, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 190785, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 191220, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 191655, .adv_w = 512, .box_w = 23, .box_h = 30, .ofs_x = 5, .ofs_y = -3}, - {.bitmap_index = 192000, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 192435, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 192856, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 193277, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 193712, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 194177, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 194642, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 195092, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 195542, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 196007, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 196413, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 196863, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 197328, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 197778, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 198243, .adv_w = 512, .box_w = 27, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 198662, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 199112, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 199547, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 199997, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 200462, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 200897, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 201362, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 201827, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 202262, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 202727, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 203192, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 203642, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 204092, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 204542, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 204977, .adv_w = 512, .box_w = 32, .box_h = 29, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 205441, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 205876, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 206326, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 206776, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 207226, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 207691, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 208156, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 208621, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 209102, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 209552, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 209972, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 210422, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 210872, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 211322, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 211772, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 212222, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 212672, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 213137, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 213587, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 214037, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 214487, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 214952, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 215417, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 215852, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 216302, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 216723, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 217129, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 217550, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 218015, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 218480, .adv_w = 512, .box_w = 32, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 218976, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 219397, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 219831, .adv_w = 512, .box_w = 27, .box_h = 30, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 220236, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 220670, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 221135, .adv_w = 512, .box_w = 29, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 221585, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 222005, .adv_w = 512, .box_w = 28, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 222397, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 222831, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 223237, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 223672, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 224093, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 224528, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 224978, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 225413, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 225863, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 226328, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 226763, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 227228, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 227678, .adv_w = 512, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 228206, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 228590, .adv_w = 512, .box_w = 32, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 229038, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 229422, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 229664, .adv_w = 512, .box_w = 31, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 230160, .adv_w = 512, .box_w = 30, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 230640, .adv_w = 576, .box_w = 36, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 231144, .adv_w = 512, .box_w = 32, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 231656, .adv_w = 576, .box_w = 36, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 232088, .adv_w = 512, .box_w = 32, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 232600, .adv_w = 256, .box_w = 16, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 232808, .adv_w = 384, .box_w = 24, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 233120, .adv_w = 576, .box_w = 36, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 233696, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 234080, .adv_w = 352, .box_w = 22, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 234432, .adv_w = 448, .box_w = 20, .box_h = 30, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 234732, .adv_w = 448, .box_w = 28, .box_h = 34, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 235208, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 235614, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 236006, .adv_w = 448, .box_w = 20, .box_h = 30, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 236306, .adv_w = 448, .box_w = 30, .box_h = 28, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 236726, .adv_w = 320, .box_w = 18, .box_h = 28, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 236978, .adv_w = 320, .box_w = 18, .box_h = 28, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 237230, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 237622, .adv_w = 448, .box_w = 28, .box_h = 6, .ofs_x = 0, .ofs_y = 9}, - {.bitmap_index = 237706, .adv_w = 576, .box_w = 36, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 238138, .adv_w = 640, .box_w = 40, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 238778, .adv_w = 576, .box_w = 38, .box_h = 32, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 239386, .adv_w = 512, .box_w = 32, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 239866, .adv_w = 448, .box_w = 28, .box_h = 18, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 240118, .adv_w = 448, .box_w = 28, .box_h = 18, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 240370, .adv_w = 640, .box_w = 40, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 240890, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 241274, .adv_w = 512, .box_w = 32, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 241786, .adv_w = 512, .box_w = 33, .box_h = 33, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 242331, .adv_w = 448, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 242737, .adv_w = 448, .box_w = 28, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 243185, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 243577, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 243941, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 244325, .adv_w = 320, .box_w = 22, .box_h = 32, .ofs_x = -1, .ofs_y = -4}, - {.bitmap_index = 244677, .adv_w = 448, .box_w = 28, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 245125, .adv_w = 448, .box_w = 28, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 245573, .adv_w = 576, .box_w = 36, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 246005, .adv_w = 512, .box_w = 34, .box_h = 34, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 246583, .adv_w = 384, .box_w = 24, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 246967, .adv_w = 640, .box_w = 40, .box_h = 29, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 247547, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 247947, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 248347, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 248747, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 249147, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 249547, .adv_w = 640, .box_w = 41, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 250080, .adv_w = 448, .box_w = 24, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 250464, .adv_w = 448, .box_w = 28, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 250912, .adv_w = 512, .box_w = 33, .box_h = 33, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 251457, .adv_w = 640, .box_w = 40, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 251937, .adv_w = 384, .box_w = 24, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 252321, .adv_w = 515, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = 2} + {.bitmap_index = 148483, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 148933, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 149368, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 149833, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 150283, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 150748, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 151154, .adv_w = 512, .box_w = 21, .box_h = 28, .ofs_x = 6, .ofs_y = -3}, + {.bitmap_index = 151448, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 151883, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 152289, .adv_w = 512, .box_w = 27, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 152681, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 153102, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 153508, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 153973, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 154394, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 154844, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 155279, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 155744, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 156209, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 156615, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 157050, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 157485, .adv_w = 512, .box_w = 31, .box_h = 29, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 157935, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 158416, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 158866, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 159316, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 159766, .adv_w = 512, .box_w = 31, .box_h = 29, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 160216, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 160681, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 161146, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 161596, .adv_w = 512, .box_w = 29, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 161973, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 162394, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 162844, .adv_w = 512, .box_w = 28, .box_h = 28, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 163236, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 163671, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 164106, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 164527, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 164977, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 165442, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 165863, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 166328, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 166763, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 167228, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 167678, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 168113, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 168563, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 169028, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 169493, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 169958, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 170408, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 170889, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 171339, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 171789, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 172224, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 172674, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 173109, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 173529, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 173964, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 174399, .adv_w = 512, .box_w = 31, .box_h = 29, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 174849, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 175269, .adv_w = 512, .box_w = 27, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 175647, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 176067, .adv_w = 512, .box_w = 28, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 176459, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 176909, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 177329, .adv_w = 512, .box_w = 27, .box_h = 30, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 177734, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 178184, .adv_w = 512, .box_w = 22, .box_h = 28, .ofs_x = 5, .ofs_y = -3}, + {.bitmap_index = 178492, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 178912, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 179362, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 179812, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 180233, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 180698, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 181104, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 181569, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 181975, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 182410, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 182844, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 183294, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 183759, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 184209, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 184659, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 185079, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 185544, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 186009, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 186474, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 186908, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 187358, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 187808, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 188214, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 188649, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 189114, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 189549, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 190014, .adv_w = 512, .box_w = 31, .box_h = 29, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 190464, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 190899, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 191364, .adv_w = 512, .box_w = 31, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 191814, .adv_w = 512, .box_w = 28, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 192206, .adv_w = 512, .box_w = 29, .box_h = 27, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 192598, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 193033, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 193439, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 193874, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 194309, .adv_w = 512, .box_w = 23, .box_h = 30, .ofs_x = 5, .ofs_y = -3}, + {.bitmap_index = 194654, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 195089, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 195510, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 195930, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 196351, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 196786, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 197251, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 197716, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 198166, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 198616, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 199081, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 199487, .adv_w = 512, .box_w = 28, .box_h = 28, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 199879, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 200329, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 200794, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 201244, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 201709, .adv_w = 512, .box_w = 27, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 202128, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 202548, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 202998, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 203433, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 203883, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 204348, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 204783, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 205248, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 205713, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 206148, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 206613, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 207078, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 207528, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 207978, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 208428, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 208878, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 209313, .adv_w = 512, .box_w = 32, .box_h = 29, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 209777, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 210212, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 210662, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 211112, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 211562, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 212027, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 212492, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 212957, .adv_w = 512, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 213438, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 213888, .adv_w = 512, .box_w = 30, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 214308, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 214758, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 215208, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 215658, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 216108, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 216558, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 217008, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 217473, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 217923, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 218373, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 218823, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 219288, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 219753, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 220188, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 220638, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 221059, .adv_w = 512, .box_w = 29, .box_h = 28, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 221465, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 221886, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 222351, .adv_w = 512, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 222816, .adv_w = 512, .box_w = 32, .box_h = 31, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 223312, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 223733, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 224167, .adv_w = 512, .box_w = 27, .box_h = 30, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 224572, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 225006, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 225471, .adv_w = 512, .box_w = 29, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 225921, .adv_w = 512, .box_w = 28, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 226341, .adv_w = 512, .box_w = 28, .box_h = 28, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 226733, .adv_w = 512, .box_w = 28, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 227167, .adv_w = 512, .box_w = 28, .box_h = 29, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 227573, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 228008, .adv_w = 512, .box_w = 29, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 228429, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 228864, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 229314, .adv_w = 512, .box_w = 30, .box_h = 29, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 229749, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 230199, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 230664, .adv_w = 512, .box_w = 29, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 231099, .adv_w = 512, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 231564, .adv_w = 512, .box_w = 30, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 232014, .adv_w = 512, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 232542, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 232926, .adv_w = 512, .box_w = 32, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 233374, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 233758, .adv_w = 352, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 234000, .adv_w = 512, .box_w = 31, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 234496, .adv_w = 512, .box_w = 30, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 234976, .adv_w = 576, .box_w = 36, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 235480, .adv_w = 512, .box_w = 32, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 235992, .adv_w = 576, .box_w = 36, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 236424, .adv_w = 512, .box_w = 32, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 236936, .adv_w = 256, .box_w = 16, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 237144, .adv_w = 384, .box_w = 24, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 237456, .adv_w = 576, .box_w = 36, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 238032, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 238416, .adv_w = 352, .box_w = 22, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 238768, .adv_w = 448, .box_w = 20, .box_h = 30, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 239068, .adv_w = 448, .box_w = 28, .box_h = 34, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 239544, .adv_w = 448, .box_w = 28, .box_h = 29, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 239950, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 240342, .adv_w = 448, .box_w = 20, .box_h = 30, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 240642, .adv_w = 448, .box_w = 30, .box_h = 28, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 241062, .adv_w = 320, .box_w = 18, .box_h = 28, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 241314, .adv_w = 320, .box_w = 18, .box_h = 28, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 241566, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 241958, .adv_w = 448, .box_w = 28, .box_h = 6, .ofs_x = 0, .ofs_y = 9}, + {.bitmap_index = 242042, .adv_w = 576, .box_w = 36, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 242474, .adv_w = 640, .box_w = 40, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 243114, .adv_w = 576, .box_w = 38, .box_h = 32, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 243722, .adv_w = 512, .box_w = 32, .box_h = 30, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 244202, .adv_w = 448, .box_w = 28, .box_h = 18, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 244454, .adv_w = 448, .box_w = 28, .box_h = 18, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 244706, .adv_w = 640, .box_w = 40, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 245226, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 245610, .adv_w = 512, .box_w = 32, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 246122, .adv_w = 512, .box_w = 33, .box_h = 33, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 246667, .adv_w = 448, .box_w = 29, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 247073, .adv_w = 448, .box_w = 28, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 247521, .adv_w = 448, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 247913, .adv_w = 448, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 248277, .adv_w = 512, .box_w = 32, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 248661, .adv_w = 320, .box_w = 22, .box_h = 32, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 249013, .adv_w = 448, .box_w = 28, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 249461, .adv_w = 448, .box_w = 28, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 249909, .adv_w = 576, .box_w = 36, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 250341, .adv_w = 512, .box_w = 34, .box_h = 34, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 250919, .adv_w = 384, .box_w = 24, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 251303, .adv_w = 640, .box_w = 40, .box_h = 29, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 251883, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 252283, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 252683, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 253083, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 253483, .adv_w = 640, .box_w = 40, .box_h = 20, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 253883, .adv_w = 640, .box_w = 41, .box_h = 26, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 254416, .adv_w = 448, .box_w = 24, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 254800, .adv_w = 448, .box_w = 28, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 255248, .adv_w = 512, .box_w = 33, .box_h = 33, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 255793, .adv_w = 640, .box_w = 40, .box_h = 24, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 256273, .adv_w = 384, .box_w = 24, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 256657, .adv_w = 515, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = 2} }; /*--------------------- @@ -34258,55 +34836,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -34338,7 +34918,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -34443,7 +35023,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -34542,7 +35123,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_34.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_34.c index 06ea7277..a97b80ce 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_34.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_34.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 34 px * Bpp: 4 - * Opts: --bpp 4 --size 34 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_34.c + * Opts: --bpp 4 --size 34 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_34.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -12829,6 +12829,72 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x1f, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0x30, 0x0, 0x0, 0x17, 0x83, 0x0, + /* U+4F53 "体" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xa4, 0x0, 0x0, 0x0, + 0x0, 0x9, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbf, 0xf8, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x50, + 0x25, 0x43, 0x33, 0x33, 0x39, 0xff, 0x33, 0x33, + 0x33, 0x34, 0x43, 0x0, 0x0, 0x0, 0xdf, 0xf1, + 0x5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x4f, 0xff, + 0x10, 0x5f, 0xee, 0xee, 0xef, 0xff, 0xff, 0xff, + 0xee, 0xee, 0xee, 0xf9, 0x0, 0x0, 0xc, 0xff, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0xff, 0xdf, 0xef, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xff, 0x10, 0x0, 0x0, 0x0, 0x4f, 0xfa, 0xfe, + 0xbf, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, + 0xff, 0xf1, 0x0, 0x0, 0x0, 0x9, 0xfe, 0x7f, + 0xe6, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0xfa, 0xff, 0x10, 0x0, 0x0, 0x0, 0xff, 0x97, + 0xfe, 0x1f, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xfc, 0x4f, 0xf1, 0x0, 0x0, 0x0, 0x7f, 0xf4, + 0x7f, 0xe0, 0xbf, 0xd0, 0x0, 0x0, 0x0, 0x7, + 0xff, 0x34, 0xff, 0x10, 0x0, 0x0, 0xe, 0xfd, + 0x7, 0xfe, 0x4, 0xff, 0x60, 0x0, 0x0, 0x0, + 0x8, 0x90, 0x4f, 0xf1, 0x0, 0x0, 0x8, 0xff, + 0x60, 0x7f, 0xe0, 0xc, 0xff, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xff, 0x10, 0x0, 0x3, 0xff, + 0xd0, 0x7, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xf1, 0x0, 0x1, 0xef, + 0xf4, 0x0, 0x7f, 0xe0, 0x0, 0x8f, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xff, 0x10, 0x0, 0xcf, + 0xf9, 0x0, 0x7, 0xfe, 0x0, 0x0, 0xcf, 0xfa, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xf1, 0x1, 0xcf, + 0xfd, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x1, 0xef, + 0xfc, 0x20, 0x0, 0x0, 0x4, 0xff, 0x12, 0xdf, + 0xfe, 0x20, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x2, + 0xef, 0xff, 0x80, 0x0, 0x0, 0x4f, 0xf7, 0xff, + 0xff, 0x33, 0x55, 0x54, 0x9f, 0xf4, 0x44, 0x45, + 0x2, 0xef, 0xe4, 0x0, 0x0, 0x4, 0xff, 0x28, + 0xfe, 0x30, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x1, 0xc4, 0x0, 0x0, 0x0, 0x4f, 0xf1, + 0x6, 0x20, 0x7, 0xff, 0xee, 0xef, 0xfd, 0xde, + 0xee, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5d, 0xd3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x0, 0x0, 0x61, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6b, 0x94, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -13022,6 +13088,74 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xc8, 0x30, 0x0, + /* U+4FC4 "俄" */ + 0x0, 0x0, 0x0, 0x5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xff, 0xb1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xaf, 0xf5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xfb, 0x0, 0x0, + 0x0, 0x1, 0x30, 0x8, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0x30, 0x0, + 0x1, 0x6b, 0xfe, 0x0, 0x8f, 0xf0, 0x0, 0x60, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xd0, 0x27, + 0xae, 0xff, 0xff, 0xfa, 0x7, 0xff, 0x4, 0xef, + 0x60, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xf7, 0x1, + 0xff, 0xff, 0xfb, 0x63, 0x0, 0x7f, 0xe0, 0x2f, + 0xff, 0x10, 0x0, 0x0, 0x0, 0xc, 0xff, 0x10, + 0x8, 0xb7, 0xef, 0x60, 0x0, 0x7, 0xfe, 0x0, + 0x6f, 0xfa, 0x0, 0x0, 0x0, 0x3, 0xff, 0xb0, + 0x0, 0x0, 0xd, 0xf6, 0x0, 0x0, 0x6f, 0xe0, + 0x0, 0xdf, 0xf1, 0x0, 0x0, 0x0, 0xbf, 0xf7, + 0x0, 0x0, 0x0, 0xdf, 0x60, 0x0, 0x6, 0xfe, + 0x0, 0x6, 0xb3, 0x0, 0x0, 0x0, 0x3f, 0xff, + 0x70, 0x0, 0x0, 0xd, 0xf6, 0x0, 0x0, 0x6f, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0xf7, 0x1, 0x43, 0x33, 0xef, 0x83, 0x33, 0x37, + 0xfe, 0x33, 0x33, 0x33, 0x40, 0x0, 0x6, 0xff, + 0xff, 0x70, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x2, 0xff, + 0xcf, 0xf7, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x1, 0xdf, + 0xf4, 0xff, 0x70, 0x0, 0x0, 0xd, 0xf6, 0x0, + 0x0, 0x4f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1b, + 0xfa, 0xf, 0xf7, 0x0, 0x0, 0x0, 0xdf, 0x60, + 0x0, 0x3, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x8, 0x10, 0xff, 0x70, 0x0, 0x0, 0xd, 0xf6, + 0x0, 0x0, 0x1f, 0xf2, 0x0, 0x20, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xf7, 0x0, 0x0, 0x0, 0xdf, + 0x60, 0x3, 0x0, 0xff, 0x50, 0xb, 0xd4, 0x0, + 0x0, 0x0, 0x0, 0xff, 0x70, 0x0, 0x0, 0xd, + 0xf9, 0x9e, 0xd0, 0xd, 0xf7, 0x3, 0xff, 0xd1, + 0x0, 0x0, 0x0, 0xf, 0xf7, 0x0, 0x0, 0x15, + 0xef, 0xff, 0xfe, 0x0, 0xaf, 0xa0, 0xbf, 0xf3, + 0x0, 0x0, 0x0, 0x0, 0xff, 0x70, 0x48, 0xcf, + 0xff, 0xfe, 0xa5, 0x10, 0x7, 0xfd, 0x4f, 0xf7, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xf7, 0x1f, 0xff, + 0xff, 0xff, 0x60, 0x0, 0x0, 0x4f, 0xfe, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x70, 0x9f, + 0xb5, 0xd, 0xf6, 0x0, 0x0, 0x0, 0xff, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf7, 0x2, + 0x10, 0x0, 0xdf, 0x60, 0x0, 0x0, 0xe, 0xff, + 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x70, + 0x0, 0x0, 0xd, 0xf6, 0x0, 0x0, 0xc, 0xff, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf7, + 0x0, 0x0, 0x0, 0xdf, 0x60, 0x0, 0x2d, 0xff, + 0xff, 0x80, 0x2, 0x0, 0x0, 0x0, 0x0, 0xff, + 0x70, 0x0, 0x0, 0xd, 0xf6, 0x0, 0x6f, 0xff, + 0x7a, 0xff, 0x10, 0x8b, 0x40, 0x0, 0x0, 0xf, + 0xf7, 0x0, 0x0, 0x0, 0xef, 0x60, 0xcf, 0xff, + 0x60, 0x2f, 0xfa, 0xa, 0xfd, 0x0, 0x0, 0x0, + 0xff, 0x70, 0x2, 0x67, 0xaf, 0xf5, 0x4, 0xfe, + 0x40, 0x0, 0x7f, 0xf9, 0xff, 0x90, 0x0, 0x0, + 0xf, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0x20, 0x5, + 0x10, 0x0, 0x0, 0xcf, 0xff, 0xf4, 0x0, 0x0, + 0x0, 0xff, 0x80, 0x0, 0xbf, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xef, 0xfc, 0x0, 0x0, + 0x0, 0xf, 0xfa, 0x0, 0x4, 0x74, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xbc, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4FDD "保" */ 0x0, 0x0, 0x0, 0x7, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -19616,6 +19750,70 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x8f, 0xf1, 0x0, 0x30, 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xf4, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7a, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xad, 0x40, 0x0, 0x0, 0x0, + 0x0, 0xaf, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xff, 0xe1, 0x0, 0x0, 0x0, + 0x0, 0xbf, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xff, 0x50, 0x66, 0x65, 0x55, + 0x55, 0xdf, 0xd3, 0x33, 0x33, 0x33, 0x45, 0x10, + 0x0, 0x0, 0x9f, 0xf8, 0x0, 0xef, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, + 0x0, 0x5, 0xff, 0xc0, 0x0, 0xdd, 0xcc, 0xcc, + 0xcc, 0xff, 0xdc, 0xcc, 0xcc, 0xcc, 0xde, 0x30, + 0x0, 0x2f, 0xfe, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xef, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xff, 0x60, 0x8, 0xe5, 0xa, 0xdd, 0xdd, + 0xde, 0xff, 0xdd, 0xdd, 0xdd, 0xdd, 0xc0, 0x0, + 0x7, 0xf9, 0x0, 0x1f, 0xfd, 0xd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, + 0x0, 0x60, 0x0, 0xaf, 0xf3, 0xc, 0xf8, 0x0, + 0x9f, 0xb0, 0xa, 0xfa, 0x0, 0x7f, 0xd0, 0x0, + 0x0, 0x0, 0x4, 0xff, 0x70, 0xb, 0xf8, 0x0, + 0x8f, 0xb0, 0xa, 0xfa, 0x0, 0x7f, 0xd0, 0x0, + 0x0, 0x0, 0xe, 0xfc, 0x0, 0xb, 0xf8, 0x0, + 0x8f, 0xb0, 0xa, 0xfa, 0x0, 0x7f, 0xd0, 0x0, + 0x0, 0x0, 0xaf, 0xf2, 0x0, 0xc, 0xf8, 0x0, + 0x8f, 0xb0, 0xa, 0xfa, 0x0, 0x7f, 0xd0, 0x0, + 0x0, 0x6, 0xff, 0xf0, 0x0, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, + 0x0, 0x3f, 0xff, 0xf0, 0x0, 0xd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, + 0x3, 0xef, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4e, 0xff, 0x8f, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xf5, 0x6f, 0xf0, 0x0, 0x44, 0x44, 0x33, + 0x33, 0x33, 0x33, 0x33, 0x33, 0x44, 0x45, 0x20, + 0xc, 0x90, 0x6f, 0xf0, 0x0, 0xef, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, + 0x2, 0x0, 0x6f, 0xf0, 0x0, 0xdd, 0xdc, 0xcc, + 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xdd, 0x50, + 0x0, 0x0, 0x6f, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xf0, 0x0, 0x27, 0x20, 0x38, + 0x80, 0x6f, 0xf5, 0x0, 0x0, 0x3, 0x50, 0x0, + 0x0, 0x0, 0x6f, 0xf0, 0x0, 0x7f, 0xf1, 0x5f, + 0xf1, 0xc, 0xfe, 0x10, 0x0, 0x7f, 0xf2, 0x0, + 0x0, 0x0, 0x6f, 0xf0, 0x0, 0xcf, 0xc0, 0x5f, + 0xf0, 0x2, 0xff, 0x70, 0x0, 0x3f, 0xfd, 0x0, + 0x0, 0x0, 0x6f, 0xf0, 0x2, 0xff, 0x60, 0x4f, + 0xf0, 0x0, 0x84, 0x0, 0x50, 0x6, 0xff, 0x90, + 0x0, 0x0, 0x7f, 0xf0, 0x8, 0xff, 0x10, 0x4f, + 0xf0, 0x0, 0x0, 0x0, 0xee, 0x90, 0xcf, 0xf3, + 0x0, 0x0, 0x7f, 0xf0, 0xe, 0xfa, 0x0, 0x3f, + 0xf4, 0x0, 0x0, 0x4, 0xff, 0xc0, 0x2f, 0x60, + 0x0, 0x0, 0x7f, 0xf0, 0x4, 0xa4, 0x0, 0xf, + 0xff, 0xdd, 0xdd, 0xdf, 0xff, 0x40, 0x1, 0x0, + 0x0, 0x0, 0x8f, 0xf0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x22, 0x22, 0x22, 0x0, 0x0, 0x0, 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -25341,6 +25539,69 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x50, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, + /* U+7259 "牙" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, + 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x3, + 0x65, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x5c, + 0xff, 0x55, 0x55, 0x56, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xe8, 0x20, 0x0, 0x0, 0x0, 0xa, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xfd, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xff, 0x30, 0x0, 0x0, 0x0, 0xa, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0xfe, 0x22, 0x22, + 0x22, 0x22, 0x22, 0x2b, 0xff, 0x22, 0x22, 0x22, + 0x23, 0x40, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x0, 0x1, 0x85, 0x20, 0x0, 0x0, 0x0, + 0x1f, 0xfe, 0xbf, 0xf0, 0x0, 0x0, 0x0, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xff, 0x6a, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, + 0xd0, 0xaf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xef, 0xf3, + 0xa, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xf8, 0x0, + 0xaf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaf, 0xfc, 0x0, 0xa, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xaf, 0xfd, 0x10, 0x0, 0xaf, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xcf, 0xfe, 0x20, 0x0, 0xa, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xef, 0xfd, 0x20, 0x0, 0x0, 0xaf, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xff, 0xfc, 0x10, 0x0, 0x0, 0xa, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6e, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xdf, 0xff, 0xe4, + 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6e, 0xff, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xef, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xdf, 0xfb, 0x20, 0x0, 0x0, + 0x0, 0x6, 0xbd, 0xff, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xc4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xef, 0xda, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + /* U+72B6 "状" */ 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -25593,6 +25854,70 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x37, 0x41, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0x65, 0x55, 0x55, 0x55, 0x60, 0x0, 0x0, + 0x4f, 0xf4, 0xaa, 0x99, 0x99, 0x99, 0x9a, 0xa0, + 0xc, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, + 0x4f, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0xb, 0xed, 0xdf, 0xfe, 0xdd, 0xe0, 0x0, 0x0, + 0x4f, 0xf2, 0x87, 0x76, 0xff, 0xb6, 0x77, 0x80, + 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xf1, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xf0, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, 0xdf, 0x70, + 0x4f, 0xf0, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, 0xdf, 0x70, + 0x4f, 0xf0, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, 0xef, 0x70, + 0x4f, 0xf0, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, 0xef, 0x70, + 0x4f, 0xf0, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, 0xff, 0x60, + 0x4f, 0xe0, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, + 0x3, 0x99, 0x8f, 0xfb, 0x89, 0x60, 0xff, 0x50, + 0x5f, 0xe0, 0x99, 0x88, 0xff, 0xb8, 0x89, 0x30, + 0x6, 0xff, 0xff, 0xff, 0xff, 0xa1, 0xff, 0x40, + 0x6f, 0xd0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, + 0x4, 0xba, 0x9f, 0xfc, 0xab, 0x72, 0xff, 0x30, + 0x8f, 0xc0, 0x98, 0x87, 0xff, 0xb8, 0x89, 0x30, + 0x0, 0x0, 0xe, 0xf7, 0x0, 0x3, 0xff, 0x20, + 0xaf, 0x90, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, 0x33, 0x0, + 0xcf, 0x70, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0xff, 0x50, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, 0x0, 0x3, + 0xff, 0x20, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, 0x0, 0x8, + 0xfd, 0x0, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, 0x0, 0xd, + 0xf9, 0x0, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf7, 0x1, 0x85, 0x0, 0x4f, + 0xf5, 0x0, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xfa, 0xbf, 0xfa, 0x0, 0xcf, + 0xe0, 0x0, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xff, 0xff, 0xc5, 0x6, 0xff, + 0x70, 0x0, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, + 0x4, 0x9e, 0xff, 0xff, 0x93, 0x0, 0x2e, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0xef, 0x70, 0x0, 0x0, + 0x7f, 0xff, 0xfd, 0x70, 0x0, 0x1, 0xdf, 0xf5, + 0x0, 0x8f, 0xee, 0xee, 0xff, 0xfe, 0xee, 0xf8, + 0xd, 0xfc, 0x50, 0x0, 0x0, 0x1c, 0xff, 0xa0, + 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0x4, 0x30, 0x0, 0x0, 0x0, 0x9f, 0xfd, 0x0, + 0x0, 0x13, 0x21, 0x11, 0x11, 0x11, 0x12, 0x31, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7406 "理" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0x0, @@ -27343,6 +27668,68 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x0, 0x0, 0x52, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xa0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xfb, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xfd, 0x77, 0x77, 0x88, 0x92, 0x0, 0xaf, 0xf5, + 0x33, 0x33, 0x34, 0x42, 0x0, 0x0, 0xbf, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0x2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0x0, 0x8, 0xff, 0xa8, 0xff, + 0xa8, 0x89, 0x92, 0xc, 0xff, 0xcc, 0xef, 0xec, + 0xcd, 0xd6, 0x0, 0x8f, 0xfa, 0x0, 0x9f, 0xc0, + 0x0, 0x0, 0xaf, 0xf6, 0x0, 0x7f, 0xc0, 0x0, + 0x0, 0x1a, 0xff, 0xb0, 0x0, 0x1f, 0xf6, 0x0, + 0x9, 0xff, 0x90, 0x0, 0x1f, 0xf4, 0x0, 0x0, + 0x7f, 0xfb, 0x0, 0x0, 0x9, 0xfe, 0x0, 0x9f, + 0xfb, 0x0, 0x0, 0xc, 0xfa, 0x0, 0x0, 0x6, + 0xa0, 0x0, 0xb5, 0x1, 0x70, 0x0, 0x1a, 0xc0, + 0x0, 0x0, 0x5, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x9, 0xff, 0x30, 0x1, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xef, 0xe2, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0x0, 0x0, 0x3, 0x30, 0x3f, + 0xfd, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf6, 0x0, 0x0, 0x3f, 0xf4, 0x7, 0xd2, + 0x1, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xf5, 0x0, 0x0, 0x2f, 0xf3, 0x0, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xf5, + 0x0, 0x0, 0x1f, 0xf3, 0x0, 0xc, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xc0, 0x0, 0xe, 0xf5, 0x0, + 0x0, 0x1f, 0xf2, 0x0, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0xe, 0xf5, 0x0, 0x0, + 0x1f, 0xf2, 0x0, 0xe, 0xf5, 0x0, 0x0, 0x0, + 0x5f, 0xe0, 0x0, 0xe, 0xf5, 0x0, 0x0, 0x1f, + 0xf2, 0x0, 0xe, 0xf5, 0x0, 0x0, 0x0, 0x5f, + 0xe0, 0x0, 0xe, 0xf5, 0x0, 0x0, 0x1f, 0xf2, + 0x0, 0xe, 0xf5, 0x0, 0x0, 0x0, 0x5f, 0xe0, + 0x0, 0xe, 0xf5, 0x0, 0x0, 0x1f, 0xf2, 0x0, + 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, + 0xe, 0xf5, 0x0, 0x0, 0x1f, 0xf2, 0x0, 0xe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xe, + 0xf5, 0x0, 0x0, 0x1f, 0xf2, 0x0, 0xe, 0xf5, + 0x0, 0x0, 0x0, 0x5f, 0xe0, 0x0, 0xe, 0xf5, + 0x0, 0x0, 0x1f, 0xf2, 0x0, 0xe, 0xf5, 0x0, + 0x0, 0x0, 0x5f, 0xe0, 0x0, 0xe, 0xf5, 0x0, + 0x0, 0x1f, 0xf2, 0x0, 0xf, 0xf5, 0x0, 0x0, + 0x0, 0x5f, 0xe0, 0x0, 0xe, 0xf5, 0x0, 0x0, + 0x1f, 0xf2, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x0, 0xe, 0xf5, 0x0, 0x0, 0x1f, + 0xf2, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x0, 0xe, 0xf5, 0x0, 0x0, 0x1f, 0xf3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xf5, 0x0, 0x0, 0x2f, 0xf3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x77, + 0xaf, 0xf3, 0x0, 0x0, 0x2f, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xd0, 0x0, 0x0, 0x3f, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xc8, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5e, 0xe9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -28602,6 +28989,67 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x11, 0x11, 0x11, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x0, 0x0, 0xdf, 0xb0, 0x0, 0x0, + 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xb0, 0x0, 0x0, 0x0, + 0x2f, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x2, 0x11, + 0x0, 0x0, 0xcf, 0xb0, 0x0, 0x0, 0x0, 0x2f, + 0xf7, 0x0, 0x0, 0x11, 0x21, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0x4, 0x43, 0x33, 0x33, 0xdf, + 0xb3, 0x33, 0x33, 0x33, 0x4f, 0xf9, 0x33, 0x33, + 0x34, 0x43, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xa0, + 0x0, 0x0, 0x0, 0x1f, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xa0, 0x8, + 0xca, 0x60, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x34, 0x20, 0x8, 0xff, + 0x70, 0x4, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0x33, 0x33, 0x33, 0x39, 0xff, 0x53, 0x33, + 0x33, 0x33, 0x30, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf7, 0x0, + 0x0, 0x8, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, + 0x8, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, 0x8, + 0xff, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, 0x9, 0xfd, + 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xf7, 0x0, 0x0, 0x9, 0xfc, 0x0, + 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf9, 0x44, 0x33, 0x22, 0x22, + 0x22, 0x22, 0x9f, 0xff, 0xff, 0x42, 0x22, 0x22, + 0x22, 0x33, 0x32, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xd6, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, + 0xff, 0x30, 0x8f, 0xfc, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xcf, 0xf7, + 0x0, 0xa, 0xff, 0xd2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3e, 0xff, 0xa0, 0x0, + 0x0, 0x9f, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x19, 0xff, 0xf9, 0x0, 0x0, 0x0, + 0x7, 0xff, 0xfd, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x49, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x4e, 0xff, 0xfd, 0x72, 0x0, 0x17, 0xae, 0xff, + 0xff, 0xa1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xff, 0xff, 0xd4, 0x7, 0xff, 0xff, 0xb3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xaf, 0xff, 0x90, 0x0, 0x9e, 0x81, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x7b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x33, 0x20, 0x0, 0x0, 0x4, 0x55, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -29122,6 +29570,65 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+897F "西" */ + 0x12, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, 0x21, 0x9f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x9f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xe0, 0x0, 0xf, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5f, 0xe0, 0x0, 0xf, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xe0, 0x0, 0xf, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0xe0, 0x0, 0xf, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xe0, + 0x0, 0xf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, + 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xd, + 0xfa, 0x22, 0x22, 0x8f, 0xe2, 0x22, 0x2f, 0xf6, + 0x22, 0x22, 0x7f, 0xf0, 0x0, 0x0, 0xd, 0xf9, + 0x0, 0x0, 0x8f, 0xc0, 0x0, 0xf, 0xf4, 0x0, + 0x0, 0x5f, 0xf0, 0x0, 0x0, 0xd, 0xf9, 0x0, + 0x0, 0xaf, 0xa0, 0x0, 0xf, 0xf4, 0x0, 0x0, + 0x5f, 0xe0, 0x0, 0x0, 0xc, 0xf9, 0x0, 0x0, + 0xdf, 0x70, 0x0, 0xf, 0xf4, 0x0, 0x0, 0x5f, + 0xe0, 0x0, 0x0, 0xc, 0xf9, 0x0, 0x3, 0xff, + 0x40, 0x0, 0xf, 0xf4, 0x0, 0x0, 0x5f, 0xe0, + 0x0, 0x0, 0xc, 0xf9, 0x0, 0x8, 0xff, 0x0, + 0x0, 0xf, 0xf4, 0x0, 0x0, 0x5f, 0xe0, 0x0, + 0x0, 0xc, 0xf9, 0x0, 0x2f, 0xfa, 0x0, 0x0, + 0xf, 0xf5, 0x0, 0x0, 0x5f, 0xe0, 0x0, 0x0, + 0xc, 0xf9, 0x0, 0xbf, 0xf2, 0x0, 0x0, 0xf, + 0xfe, 0xbb, 0xcc, 0x5f, 0xe0, 0x0, 0x0, 0xc, + 0xf9, 0x9, 0xff, 0x90, 0x0, 0x0, 0xc, 0xff, + 0xff, 0xfc, 0x5f, 0xe0, 0x0, 0x0, 0xc, 0xf9, + 0x6f, 0xfe, 0x10, 0x0, 0x0, 0x2, 0xbd, 0xee, + 0xe8, 0x5f, 0xe0, 0x0, 0x0, 0xc, 0xf9, 0x4, + 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xe0, 0x0, 0x0, 0xc, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0xe0, 0x0, 0x0, 0xc, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xe0, + 0x0, 0x0, 0xc, 0xf9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xe0, 0x0, + 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, + 0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xd, + 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xf0, 0x0, 0x0, 0xe, 0xf9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5f, 0xf0, 0x0, 0x0, 0xe, 0xf9, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xf0, 0x0, 0x0, 0x2, 0x21, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+8981 "要" */ 0x6, 0x66, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x66, 0x40, @@ -29446,6 +29953,67 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x66, 0x30, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9f, 0xf8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x26, 0x55, 0x55, 0x55, + 0x55, 0x55, 0x5e, 0xff, 0x75, 0x55, 0x55, 0x55, + 0x55, 0x56, 0x60, 0x5f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf1, 0x5e, 0xed, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xde, + 0xe1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x23, 0x33, 0x22, 0x22, 0x22, 0x22, 0x22, + 0x22, 0x22, 0x33, 0x41, 0x0, 0x0, 0x0, 0x0, + 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x9e, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xef, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x11, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x20, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x6f, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6f, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x5f, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0xf5, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, + 0x33, 0x8f, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xf5, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xf5, 0x0, + 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -30106,6 +30674,72 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x20, 0x0, + /* U+8BED "语" */ + 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, + 0x0, 0xd, 0xff, 0x50, 0x0, 0x1f, 0xff, 0xfe, + 0xee, 0xff, 0xfe, 0xee, 0xef, 0xff, 0xff, 0x30, + 0x0, 0x1, 0xef, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xdf, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0xfe, 0x10, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xfe, 0x30, 0x0, 0x0, 0x0, + 0x1, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa2, 0x0, 0x0, 0x44, 0x43, + 0x36, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xed, + 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xf9, 0x0, 0x0, 0x8, 0xff, 0x20, 0x0, + 0x78, 0x77, 0x77, 0x75, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xf5, 0x0, 0x0, 0xb, 0xff, 0x0, 0x0, + 0xdf, 0xff, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xf2, 0x0, 0x0, 0xd, 0xff, 0x0, 0x0, + 0xce, 0xdd, 0xdf, 0xfb, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0xf0, 0x0, 0x0, 0xf, 0xfd, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xfa, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xb0, 0x0, 0x0, 0x2f, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xfa, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x0, 0x0, 0xe, 0xf9, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x0, 0x0, 0xe, 0xf9, 0x0, 0x22, 0x11, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, + 0x0, 0x0, 0xe, 0xf9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf9, 0x0, 0x0, 0x9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, + 0x0, 0x0, 0xe, 0xf9, 0x3, 0x0, 0x9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, + 0x0, 0x0, 0xe, 0xf9, 0xd, 0x90, 0x9, 0xff, + 0x44, 0x44, 0x44, 0x44, 0x44, 0xff, 0x90, 0x0, + 0x0, 0x0, 0xe, 0xf9, 0xaf, 0xf4, 0x8, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x90, 0x0, + 0x0, 0x0, 0xe, 0xfe, 0xff, 0xe2, 0x8, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x90, 0x0, + 0x0, 0x0, 0xe, 0xff, 0xfe, 0x20, 0x8, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x90, 0x0, + 0x0, 0x0, 0xf, 0xff, 0xf3, 0x0, 0x8, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x90, 0x0, + 0x0, 0x0, 0x6f, 0xff, 0x50, 0x0, 0x8, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x90, 0x0, + 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, + 0x0, 0x2, 0xdf, 0xc0, 0x0, 0x0, 0x9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, + 0x0, 0x0, 0xb, 0x20, 0x0, 0x0, 0xa, 0xff, + 0x22, 0x22, 0x22, 0x22, 0x22, 0xff, 0xa0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x21, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BF7 "请" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xbb, 0x10, 0x0, 0x0, 0x0, 0x0, @@ -37792,392 +38426,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 94025, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 94537, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 95033, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 95545, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 96057, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 96553, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97034, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 97530, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 98026, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 98554, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 99082, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 99578, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 100106, .adv_w = 544, .box_w = 33, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 100618, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 101130, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 101595, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 102107, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 102587, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 103083, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 103563, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 104059, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 104555, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 105083, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 105579, .adv_w = 544, .box_w = 27, .box_h = 31, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 105998, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 106494, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 106990, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 107471, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 107952, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 108432, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 108928, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 109408, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 109888, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 110384, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 110880, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 111376, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 111888, .adv_w = 544, .box_w = 33, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 112400, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 112896, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 113377, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 113857, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 114353, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 114818, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 115298, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 115794, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 116274, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 116754, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 117235, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 117716, .adv_w = 544, .box_w = 28, .box_h = 31, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 118150, .adv_w = 544, .box_w = 29, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 118629, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 119094, .adv_w = 544, .box_w = 29, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 119544, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 120056, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 120521, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 121017, .adv_w = 544, .box_w = 27, .box_h = 28, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 121395, .adv_w = 544, .box_w = 28, .box_h = 30, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 121815, .adv_w = 544, .box_w = 28, .box_h = 30, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 122235, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 122731, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 123211, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 123691, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 124171, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 124636, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 125164, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 125660, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 126172, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 126684, .adv_w = 544, .box_w = 29, .box_h = 32, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 127148, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 127660, .adv_w = 544, .box_w = 33, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 128155, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 128651, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 129147, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 129643, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 130139, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 130620, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 131132, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 131644, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 132156, .adv_w = 544, .box_w = 28, .box_h = 31, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 132590, .adv_w = 544, .box_w = 30, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 133085, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 133613, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 134141, .adv_w = 544, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 134686, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 135198, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 135694, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 136222, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 136734, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 137262, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 137742, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 138254, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 138734, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 139246, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 139727, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 140223, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 140719, .adv_w = 544, .box_w = 29, .box_h = 29, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 141140, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 141652, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 142117, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 142582, .adv_w = 544, .box_w = 31, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 143032, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 143528, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 144040, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 144552, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 145064, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 145529, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 146041, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 146522, .adv_w = 544, .box_w = 28, .box_h = 31, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 146956, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 147452, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 147948, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 148460, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 148972, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 149468, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 149964, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 150429, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 150925, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 151453, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 151965, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 152461, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 152941, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 153422, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 153918, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 154399, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 154911, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 155423, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 155919, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 156415, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 156927, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 157439, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 157935, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 158431, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 158943, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 159455, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 95545, .adv_w = 544, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 96057, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 96569, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 97065, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 97546, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 98074, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 98570, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 99066, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 99594, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 100122, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 100618, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 101146, .adv_w = 544, .box_w = 33, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 101658, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 102170, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 102635, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 103147, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 103627, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 104123, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 104603, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 105099, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 105595, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 106123, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 106619, .adv_w = 544, .box_w = 27, .box_h = 31, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 107038, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 107534, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 108030, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 108511, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 108992, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 109472, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 109968, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 110448, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 110928, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 111424, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 111920, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 112416, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 112928, .adv_w = 544, .box_w = 33, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 113440, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 113936, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 114417, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 114897, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 115393, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 115858, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 116338, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 116834, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 117314, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 117794, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 118275, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 118756, .adv_w = 544, .box_w = 28, .box_h = 31, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 119190, .adv_w = 544, .box_w = 29, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 119669, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 120134, .adv_w = 544, .box_w = 29, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 120584, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 121096, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 121561, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 122057, .adv_w = 544, .box_w = 27, .box_h = 28, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 122435, .adv_w = 544, .box_w = 28, .box_h = 30, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 122855, .adv_w = 544, .box_w = 28, .box_h = 30, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 123275, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 123771, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 124251, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 124731, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 125211, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 125676, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 126204, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 126700, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 127212, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 127724, .adv_w = 544, .box_w = 29, .box_h = 32, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 128188, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 128700, .adv_w = 544, .box_w = 33, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 129195, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 129691, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 130187, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 130683, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 131179, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 131660, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 132172, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 132684, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 133196, .adv_w = 544, .box_w = 28, .box_h = 31, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 133630, .adv_w = 544, .box_w = 30, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 134125, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 134653, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 135181, .adv_w = 544, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 135726, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 136238, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 136734, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 137262, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 137774, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 138302, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 138782, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 139294, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 139774, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 140286, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 140767, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 141263, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 141759, .adv_w = 544, .box_w = 29, .box_h = 29, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 142180, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 142692, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 143157, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 143622, .adv_w = 544, .box_w = 31, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 144072, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 144568, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 145080, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 145592, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 146104, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 146569, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 147081, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 147562, .adv_w = 544, .box_w = 28, .box_h = 31, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 147996, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 148492, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 148988, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 149484, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 149996, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 150508, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 151004, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 151500, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 151965, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 152461, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 152989, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 153501, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 153997, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 154477, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 154958, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 155454, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 155935, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 156447, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 156959, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 157455, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 157951, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 158463, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 158975, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 159471, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 159967, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 160479, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 160975, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 160479, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 160991, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 161503, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 162015, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 162511, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 163007, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 163519, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 164015, .adv_w = 544, .box_w = 30, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 164465, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 164961, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 165489, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 166001, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 166497, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 166993, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 167505, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 168001, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 168529, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 168994, .adv_w = 544, .box_w = 23, .box_h = 30, .ofs_x = 6, .ofs_y = -3}, - {.bitmap_index = 169339, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 169835, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 170315, .adv_w = 544, .box_w = 29, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 170765, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 171230, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 171695, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 172207, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 172703, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 173199, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 173695, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 174191, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 174719, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 175184, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 175680, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 176176, .adv_w = 544, .box_w = 33, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 176688, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 162511, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 163039, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 163551, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 164047, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 164543, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 165055, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 165551, .adv_w = 544, .box_w = 30, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 166001, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 166497, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 167025, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 167537, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 168033, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 168529, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 169041, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 169537, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 170065, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 170530, .adv_w = 544, .box_w = 23, .box_h = 30, .ofs_x = 6, .ofs_y = -3}, + {.bitmap_index = 170875, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 171371, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 171851, .adv_w = 544, .box_w = 29, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 172301, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 172766, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 173231, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 173743, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 174239, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 174735, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 175231, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 175727, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 176255, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 176720, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 177216, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 177712, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 178208, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 178720, .adv_w = 544, .box_w = 33, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 179232, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 179744, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 180272, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 180784, .adv_w = 544, .box_w = 30, .box_h = 27, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 181189, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 181669, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 182181, .adv_w = 544, .box_w = 30, .box_h = 29, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 182616, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 183112, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 183592, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 184073, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 184585, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 185097, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 185578, .adv_w = 544, .box_w = 32, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 186122, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 186603, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 187115, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 187611, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 188091, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 188603, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 189131, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 189643, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 190155, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 190667, .adv_w = 544, .box_w = 33, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 191212, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 191724, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 192220, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 192716, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 193212, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 193692, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 194172, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 194652, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 195117, .adv_w = 544, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 195552, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 196017, .adv_w = 544, .box_w = 30, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 196452, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 196948, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 197413, .adv_w = 544, .box_w = 29, .box_h = 32, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 197877, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 198373, .adv_w = 544, .box_w = 24, .box_h = 30, .ofs_x = 5, .ofs_y = -3}, - {.bitmap_index = 198733, .adv_w = 544, .box_w = 32, .box_h = 29, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 199197, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 199693, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 200189, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 200670, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 201182, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 201663, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 202175, .adv_w = 544, .box_w = 30, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 202625, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 203121, .adv_w = 544, .box_w = 30, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 203616, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 204097, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 204609, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 205105, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 205617, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 206097, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 206625, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 207137, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 207665, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 208161, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 208657, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 209122, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 209618, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 210146, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 210626, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 211138, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 211634, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 212130, .adv_w = 544, .box_w = 33, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 212675, .adv_w = 544, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 213187, .adv_w = 544, .box_w = 29, .box_h = 30, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 213622, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 214087, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 214583, .adv_w = 544, .box_w = 31, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 215033, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 215529, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 216025, .adv_w = 544, .box_w = 24, .box_h = 31, .ofs_x = 5, .ofs_y = -3}, - {.bitmap_index = 216397, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 216893, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 217374, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 217870, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 218366, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 218878, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 219406, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 219918, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 220430, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 220926, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 221406, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 221902, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 222430, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 222942, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 223454, .adv_w = 544, .box_w = 28, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 223916, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 224428, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 224924, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 225436, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 225964, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 226444, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 226956, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 227484, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 227996, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 228524, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 229036, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 229548, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 230029, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 230541, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 231037, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 231533, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 232013, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 232525, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 233021, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 233533, .adv_w = 544, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 234045, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 234557, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 235069, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 235597, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 236109, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 236589, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 237101, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 237597, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 238125, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 238621, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 239149, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 239661, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 240173, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 240669, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 241165, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 241693, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 242205, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 242717, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 243213, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 243725, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 244190, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 244655, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 245136, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 245648, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 246176, .adv_w = 544, .box_w = 33, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 246721, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 247186, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 247666, .adv_w = 544, .box_w = 28, .box_h = 32, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 248114, .adv_w = 544, .box_w = 28, .box_h = 33, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 248576, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 249088, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 249600, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 250080, .adv_w = 544, .box_w = 30, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 250530, .adv_w = 544, .box_w = 30, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 251025, .adv_w = 544, .box_w = 30, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 251475, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 251971, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 252436, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 252916, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 253428, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 253924, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 254420, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 254932, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 255397, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 255925, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 256421, .adv_w = 544, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 257051, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 257493, .adv_w = 544, .box_w = 34, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 258020, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 258462, .adv_w = 374, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 258750, .adv_w = 544, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 259328, .adv_w = 544, .box_w = 32, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 259888, .adv_w = 612, .box_w = 39, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 260493, .adv_w = 544, .box_w = 34, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 261088, .adv_w = 612, .box_w = 39, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 261595, .adv_w = 544, .box_w = 34, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 262190, .adv_w = 272, .box_w = 17, .box_h = 27, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 262420, .adv_w = 408, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 262771, .adv_w = 612, .box_w = 39, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 263415, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 263857, .adv_w = 374, .box_w = 24, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 264277, .adv_w = 476, .box_w = 22, .box_h = 32, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 264629, .adv_w = 476, .box_w = 30, .box_h = 36, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 265169, .adv_w = 476, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 265634, .adv_w = 476, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 266099, .adv_w = 476, .box_w = 22, .box_h = 32, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 266451, .adv_w = 476, .box_w = 32, .box_h = 31, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 266947, .adv_w = 340, .box_w = 19, .box_h = 30, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 267232, .adv_w = 340, .box_w = 19, .box_h = 30, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 267517, .adv_w = 476, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 267982, .adv_w = 476, .box_w = 30, .box_h = 7, .ofs_x = 0, .ofs_y = 9}, - {.bitmap_index = 268087, .adv_w = 612, .box_w = 39, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 268594, .adv_w = 680, .box_w = 43, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 269347, .adv_w = 612, .box_w = 40, .box_h = 35, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 270047, .adv_w = 544, .box_w = 34, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 270574, .adv_w = 476, .box_w = 30, .box_h = 19, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 270859, .adv_w = 476, .box_w = 30, .box_h = 19, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 271144, .adv_w = 680, .box_w = 44, .box_h = 27, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 271738, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 272180, .adv_w = 544, .box_w = 34, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 272775, .adv_w = 544, .box_w = 35, .box_h = 36, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 273405, .adv_w = 476, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 273886, .adv_w = 476, .box_w = 30, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 274411, .adv_w = 476, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 274876, .adv_w = 476, .box_w = 30, .box_h = 27, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 275281, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 275723, .adv_w = 340, .box_w = 23, .box_h = 35, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 276126, .adv_w = 476, .box_w = 30, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 276651, .adv_w = 476, .box_w = 30, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 277176, .adv_w = 612, .box_w = 39, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 277683, .adv_w = 544, .box_w = 36, .box_h = 36, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 278331, .adv_w = 408, .box_w = 26, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 278786, .adv_w = 680, .box_w = 43, .box_h = 32, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 279474, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 279947, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 280420, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 280893, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 281366, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 281839, .adv_w = 680, .box_w = 43, .box_h = 27, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 282420, .adv_w = 476, .box_w = 26, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 282875, .adv_w = 476, .box_w = 30, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 283400, .adv_w = 544, .box_w = 35, .box_h = 35, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 284013, .adv_w = 680, .box_w = 43, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 284572, .adv_w = 408, .box_w = 26, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 285027, .adv_w = 547, .box_w = 35, .box_h = 22, .ofs_x = 0, .ofs_y = 2} + {.bitmap_index = 177712, .adv_w = 544, .box_w = 33, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 178224, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 178752, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 179248, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 179744, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 180256, .adv_w = 544, .box_w = 33, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 180768, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 181280, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 181808, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 182320, .adv_w = 544, .box_w = 30, .box_h = 27, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 182725, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 183205, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 183717, .adv_w = 544, .box_w = 30, .box_h = 29, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 184152, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 184648, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 185128, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 185609, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 186121, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 186633, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 187114, .adv_w = 544, .box_w = 32, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 187658, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 188139, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 188651, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 189147, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 189627, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 190139, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 190667, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 191179, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 191691, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 192203, .adv_w = 544, .box_w = 33, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 192748, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 193260, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 193756, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 194237, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 194733, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 195229, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 195709, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 196189, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 196685, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 197165, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 197630, .adv_w = 544, .box_w = 29, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 198065, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 198530, .adv_w = 544, .box_w = 30, .box_h = 29, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 198965, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 199461, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 199926, .adv_w = 544, .box_w = 29, .box_h = 32, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 200390, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 200886, .adv_w = 544, .box_w = 24, .box_h = 30, .ofs_x = 5, .ofs_y = -3}, + {.bitmap_index = 201246, .adv_w = 544, .box_w = 32, .box_h = 29, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 201710, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 202206, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 202702, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 203183, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 203695, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 204176, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 204688, .adv_w = 544, .box_w = 30, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 205138, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 205634, .adv_w = 544, .box_w = 30, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 206129, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 206610, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 207122, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 207618, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 208130, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 208610, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 209138, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 209650, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 210178, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 210658, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 211154, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 211650, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 212115, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 212611, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 213139, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 213619, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 214131, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 214627, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 215123, .adv_w = 544, .box_w = 33, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 215668, .adv_w = 544, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 216180, .adv_w = 544, .box_w = 29, .box_h = 30, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 216615, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 217080, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 217576, .adv_w = 544, .box_w = 31, .box_h = 29, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 218026, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 218522, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 219018, .adv_w = 544, .box_w = 24, .box_h = 31, .ofs_x = 5, .ofs_y = -3}, + {.bitmap_index = 219390, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 219886, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 220367, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 220832, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 221328, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 221824, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 222336, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 222864, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 223376, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 223888, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 224384, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 224864, .adv_w = 544, .box_w = 30, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 225314, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 225810, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 226338, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 226850, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 227362, .adv_w = 544, .box_w = 28, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 227824, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 228289, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 228801, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 229297, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 229809, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 230337, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 230817, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 231329, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 231857, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 232369, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 232897, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 233409, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 233921, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 234433, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 234914, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 235426, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 235922, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 236418, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 236898, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 237410, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 237906, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 238418, .adv_w = 544, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 238930, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 239442, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 239954, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 240482, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 240994, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 241474, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 241986, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 242482, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 243010, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 243506, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 244034, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 244546, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 245058, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 245554, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 246050, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 246578, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 247090, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 247602, .adv_w = 544, .box_w = 31, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 248098, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 248610, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 249075, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 249540, .adv_w = 544, .box_w = 31, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 250021, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 250533, .adv_w = 544, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 251061, .adv_w = 544, .box_w = 33, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 251606, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 252071, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 252551, .adv_w = 544, .box_w = 28, .box_h = 32, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 252999, .adv_w = 544, .box_w = 28, .box_h = 33, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 253461, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 253973, .adv_w = 544, .box_w = 31, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 254485, .adv_w = 544, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 254965, .adv_w = 544, .box_w = 30, .box_h = 30, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 255415, .adv_w = 544, .box_w = 30, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 255910, .adv_w = 544, .box_w = 30, .box_h = 30, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 256360, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 256856, .adv_w = 544, .box_w = 31, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 257321, .adv_w = 544, .box_w = 32, .box_h = 30, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 257801, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 258313, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 258809, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 259305, .adv_w = 544, .box_w = 32, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 259817, .adv_w = 544, .box_w = 30, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 260282, .adv_w = 544, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 260810, .adv_w = 544, .box_w = 32, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 261306, .adv_w = 544, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 261936, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 262378, .adv_w = 544, .box_w = 34, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 262905, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 263347, .adv_w = 374, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 263635, .adv_w = 544, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 264213, .adv_w = 544, .box_w = 32, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 264773, .adv_w = 612, .box_w = 39, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 265378, .adv_w = 544, .box_w = 34, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 265973, .adv_w = 612, .box_w = 39, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 266480, .adv_w = 544, .box_w = 34, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 267075, .adv_w = 272, .box_w = 17, .box_h = 27, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 267305, .adv_w = 408, .box_w = 26, .box_h = 27, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 267656, .adv_w = 612, .box_w = 39, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 268300, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 268742, .adv_w = 374, .box_w = 24, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 269162, .adv_w = 476, .box_w = 22, .box_h = 32, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 269514, .adv_w = 476, .box_w = 30, .box_h = 36, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 270054, .adv_w = 476, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 270519, .adv_w = 476, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 270984, .adv_w = 476, .box_w = 22, .box_h = 32, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 271336, .adv_w = 476, .box_w = 32, .box_h = 31, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 271832, .adv_w = 340, .box_w = 19, .box_h = 30, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 272117, .adv_w = 340, .box_w = 19, .box_h = 30, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 272402, .adv_w = 476, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 272867, .adv_w = 476, .box_w = 30, .box_h = 7, .ofs_x = 0, .ofs_y = 9}, + {.bitmap_index = 272972, .adv_w = 612, .box_w = 39, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 273479, .adv_w = 680, .box_w = 43, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 274232, .adv_w = 612, .box_w = 40, .box_h = 35, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 274932, .adv_w = 544, .box_w = 34, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 275459, .adv_w = 476, .box_w = 30, .box_h = 19, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 275744, .adv_w = 476, .box_w = 30, .box_h = 19, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 276029, .adv_w = 680, .box_w = 44, .box_h = 27, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 276623, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 277065, .adv_w = 544, .box_w = 34, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 277660, .adv_w = 544, .box_w = 35, .box_h = 36, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 278290, .adv_w = 476, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 278771, .adv_w = 476, .box_w = 30, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 279296, .adv_w = 476, .box_w = 30, .box_h = 31, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 279761, .adv_w = 476, .box_w = 30, .box_h = 27, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 280166, .adv_w = 544, .box_w = 34, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 280608, .adv_w = 340, .box_w = 23, .box_h = 35, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 281011, .adv_w = 476, .box_w = 30, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 281536, .adv_w = 476, .box_w = 30, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 282061, .adv_w = 612, .box_w = 39, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 282568, .adv_w = 544, .box_w = 36, .box_h = 36, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 283216, .adv_w = 408, .box_w = 26, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 283671, .adv_w = 680, .box_w = 43, .box_h = 32, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 284359, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 284832, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 285305, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 285778, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 286251, .adv_w = 680, .box_w = 43, .box_h = 22, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 286724, .adv_w = 680, .box_w = 43, .box_h = 27, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 287305, .adv_w = 476, .box_w = 26, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 287760, .adv_w = 476, .box_w = 30, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 288285, .adv_w = 544, .box_w = 35, .box_h = 35, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 288898, .adv_w = 680, .box_w = 43, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 289457, .adv_w = 408, .box_w = 26, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 289912, .adv_w = 547, .box_w = 35, .box_h = 22, .ofs_x = 0, .ofs_y = 2} }; /*--------------------- @@ -38198,55 +38842,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -38278,7 +38924,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -38383,7 +39029,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -38482,7 +39129,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_36.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_36.c index 695c84a3..2379f864 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_36.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_36.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 36 px * Bpp: 4 - * Opts: --bpp 4 --size 36 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_36.c + * Opts: --bpp 4 --size 36 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_36.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -14152,6 +14152,79 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0xa4, 0x0, 0x0, 0x0, 0x2, 0x20, 0x0, + /* U+4F53 "体" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1d, 0x71, 0x0, 0x0, + 0x0, 0x0, 0x9, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xfe, 0x10, + 0x0, 0x0, 0x0, 0x8, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x7, + 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xfa, 0x0, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xff, 0xee, 0xee, 0xee, 0xee, 0xef, + 0x50, 0x0, 0x0, 0xcf, 0xf9, 0x0, 0xef, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x50, 0x0, 0x4, 0xff, 0xf9, 0x0, 0x66, + 0x66, 0x66, 0x6f, 0xff, 0xff, 0xff, 0xb6, 0x66, + 0x66, 0x67, 0x20, 0x0, 0xb, 0xff, 0xf9, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xfc, 0xff, 0xcf, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xf9, + 0x0, 0x0, 0x0, 0x0, 0x9f, 0xf8, 0xff, 0x8f, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, + 0xf9, 0x0, 0x0, 0x0, 0x0, 0xef, 0xc7, 0xff, + 0x3f, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, + 0x8f, 0xf9, 0x0, 0x0, 0x0, 0x4, 0xff, 0x77, + 0xff, 0x1c, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xfe, 0xf, 0xf9, 0x0, 0x0, 0x0, 0xc, 0xff, + 0x27, 0xff, 0x16, 0xff, 0x50, 0x0, 0x0, 0x0, + 0x5f, 0xf6, 0xf, 0xf9, 0x0, 0x0, 0x0, 0x3f, + 0xfb, 0x7, 0xff, 0x10, 0xef, 0xd0, 0x0, 0x0, + 0x0, 0x5, 0xc0, 0xf, 0xf9, 0x0, 0x0, 0x0, + 0xdf, 0xf3, 0x7, 0xff, 0x10, 0x7f, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x10, 0xf, 0xf9, 0x0, 0x0, + 0x7, 0xff, 0xb0, 0x7, 0xff, 0x10, 0xd, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf9, 0x0, + 0x0, 0x3f, 0xff, 0x20, 0x7, 0xff, 0x10, 0x4, + 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf9, + 0x0, 0x2, 0xef, 0xf7, 0x0, 0x7, 0xff, 0x10, + 0x0, 0x8f, 0xfe, 0x30, 0x0, 0x0, 0x0, 0xf, + 0xf9, 0x0, 0x2e, 0xff, 0xb0, 0x0, 0x7, 0xff, + 0x10, 0x0, 0xb, 0xff, 0xf5, 0x0, 0x0, 0x0, + 0xf, 0xf9, 0x3, 0xef, 0xfe, 0x10, 0x0, 0x7, + 0xff, 0x10, 0x0, 0x0, 0xcf, 0xff, 0xa1, 0x0, + 0x0, 0xf, 0xf9, 0x6f, 0xff, 0xe2, 0x0, 0x0, + 0x7, 0xff, 0x10, 0x0, 0x0, 0x1c, 0xff, 0xf6, + 0x0, 0x0, 0xf, 0xfa, 0xaf, 0xfe, 0x30, 0xcf, + 0xee, 0xde, 0xff, 0xdd, 0xee, 0xe6, 0x0, 0xbf, + 0x40, 0x0, 0x0, 0xf, 0xf9, 0x6, 0xe2, 0x0, + 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, + 0x4, 0x0, 0x0, 0x0, 0xf, 0xf9, 0x0, 0x10, + 0x0, 0x67, 0x76, 0x6a, 0xff, 0x66, 0x66, 0x73, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf9, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xd9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0, + /* U+4F7F "使" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x31, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -14373,6 +14446,83 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xea, 0x61, 0x0, + /* U+4FC4 "俄" */ + 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xae, 0x94, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xdb, 0x90, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, + 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xff, 0xf1, 0x0, 0x0, 0x0, 0x39, 0xd0, 0x2, + 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6f, 0xfa, 0x0, 0x3, 0x6a, 0xef, 0xff, + 0x80, 0x1f, 0xf8, 0x1, 0xad, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xff, 0x30, 0x8f, 0xff, 0xff, + 0xff, 0xc9, 0x11, 0xff, 0x70, 0xcf, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xff, 0xd0, 0x1, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xf7, 0x2, 0xff, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xf7, 0x0, + 0x6, 0x51, 0xef, 0x70, 0x0, 0x0, 0xff, 0x70, + 0x8, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0x10, 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, 0xf, + 0xf7, 0x0, 0x1f, 0xfd, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0xef, 0x70, 0x0, + 0x0, 0xff, 0x70, 0x0, 0x76, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xe, 0xf7, + 0x0, 0x0, 0xf, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xaf, 0xff, 0xe0, 0x3, 0x65, 0x54, + 0xff, 0xa4, 0x44, 0x44, 0xff, 0x94, 0x44, 0x55, + 0x56, 0x0, 0x0, 0x4f, 0xff, 0xfe, 0x0, 0x9f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x1e, 0xff, 0xbf, 0xe0, + 0x9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x0, 0xb, 0xff, 0x99, + 0xfe, 0x0, 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, + 0xe, 0xf8, 0x0, 0x0, 0x0, 0x10, 0x1, 0xcf, + 0xe1, 0x9f, 0xe0, 0x0, 0x0, 0x0, 0xef, 0x70, + 0x0, 0x0, 0xcf, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x85, 0x9, 0xfe, 0x0, 0x0, 0x0, 0xe, + 0xf7, 0x0, 0x0, 0xb, 0xfb, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9f, 0xe0, 0x0, 0x0, + 0x0, 0xef, 0x70, 0x0, 0x0, 0x9f, 0xd0, 0x0, + 0xe8, 0x0, 0x0, 0x0, 0x0, 0x9, 0xfe, 0x0, + 0x0, 0x0, 0xe, 0xf7, 0x49, 0xe2, 0x7, 0xff, + 0x0, 0x5f, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x9f, + 0xe0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x20, + 0x4f, 0xf2, 0xd, 0xff, 0x40, 0x0, 0x0, 0x0, + 0x9, 0xfe, 0x0, 0x3, 0x7c, 0xff, 0xff, 0xfc, + 0x81, 0x1, 0xff, 0x56, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x9f, 0xe0, 0x7f, 0xff, 0xff, 0xff, + 0xa1, 0x0, 0x0, 0xe, 0xfa, 0xef, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xfe, 0x2, 0xff, 0xfc, + 0x6f, 0xf7, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xe0, 0xa, + 0x81, 0x0, 0xef, 0x70, 0x0, 0x0, 0x5, 0xff, + 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xfe, + 0x0, 0x0, 0x0, 0xe, 0xf7, 0x0, 0x0, 0x0, + 0xcf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xe0, 0x0, 0x0, 0x0, 0xef, 0x70, 0x0, + 0x1, 0xcf, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9, 0xfe, 0x0, 0x0, 0x0, 0xe, 0xf7, + 0x0, 0x3, 0xdf, 0xfe, 0xff, 0x60, 0x5, 0x10, + 0x0, 0x0, 0x0, 0x9f, 0xe0, 0x0, 0x0, 0x0, + 0xef, 0x70, 0x19, 0xff, 0xfa, 0xe, 0xfe, 0x0, + 0xbe, 0x90, 0x0, 0x0, 0xa, 0xff, 0x0, 0x0, + 0x0, 0x1f, 0xf7, 0xb, 0xff, 0xf8, 0x0, 0x6f, + 0xf8, 0xe, 0xfc, 0x0, 0x0, 0x0, 0xaf, 0xf0, + 0x0, 0x59, 0xad, 0xff, 0x60, 0xc, 0xf5, 0x0, + 0x0, 0xcf, 0xfb, 0xff, 0x80, 0x0, 0x0, 0xa, + 0xff, 0x0, 0x3, 0xff, 0xff, 0xf2, 0x0, 0x12, + 0x0, 0x0, 0x1, 0xef, 0xff, 0xf2, 0x0, 0x0, + 0x0, 0xbf, 0xf0, 0x0, 0xe, 0xff, 0xf7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfa, 0x0, + 0x0, 0x0, 0xb, 0xff, 0x20, 0x0, 0x56, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xdc, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + /* U+4FDD "保" */ 0x0, 0x0, 0x0, 0x2, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -21783,6 +21933,79 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xe, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf0, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0x97, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xff, 0xb0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0x5, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xf5, + 0x2, 0x10, 0x0, 0x0, 0x6, 0xff, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0x90, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, + 0xee, 0xee, 0xee, 0xef, 0x50, 0x0, 0x0, 0x7f, + 0xfd, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x3, + 0xff, 0xf2, 0x0, 0x5, 0x54, 0x43, 0x33, 0x3d, + 0xfe, 0x33, 0x33, 0x33, 0x44, 0x45, 0x20, 0x0, + 0x1e, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0xf8, 0x0, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa, 0xff, 0xb0, 0x0, 0xed, 0x40, 0xdf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe0, 0x0, 0x2, 0xed, 0x10, 0x8, 0xff, 0xb0, + 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe0, 0x0, 0x0, 0x32, 0x0, 0x2f, 0xfe, + 0x10, 0xdf, 0xa0, 0x4, 0xff, 0x10, 0x1f, 0xf5, + 0x0, 0x9f, 0xd0, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xf3, 0x0, 0xcf, 0xa0, 0x4, 0xff, 0x10, 0x1f, + 0xf5, 0x0, 0x9f, 0xd0, 0x0, 0x0, 0x0, 0x6, + 0xff, 0x80, 0x0, 0xcf, 0xa0, 0x4, 0xff, 0x10, + 0x1f, 0xf5, 0x0, 0x9f, 0xc0, 0x0, 0x0, 0x0, + 0x2f, 0xfd, 0x0, 0x0, 0xdf, 0xa0, 0x4, 0xff, + 0x10, 0x1f, 0xf5, 0x0, 0x9f, 0xd0, 0x0, 0x0, + 0x0, 0xdf, 0xf9, 0x0, 0x0, 0xdf, 0xfd, 0xde, + 0xff, 0xdd, 0xdf, 0xfe, 0xdd, 0xef, 0xe0, 0x0, + 0x0, 0xa, 0xff, 0xf9, 0x0, 0x0, 0xef, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, + 0x0, 0x0, 0x9f, 0xff, 0xf9, 0x0, 0x0, 0x34, + 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x30, 0x0, 0xa, 0xff, 0xbf, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xfe, 0x1f, 0xf9, 0x0, + 0x1, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x11, 0x0, 0xb, 0xf3, 0xf, 0xf9, + 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x70, 0x2, 0x60, 0xf, + 0xf9, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, + 0xf, 0xf9, 0x0, 0x3, 0x32, 0x22, 0x22, 0x22, + 0x24, 0x22, 0x22, 0x22, 0x22, 0x23, 0x10, 0x0, + 0x0, 0xf, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xf9, 0x0, 0x5, 0xc6, 0x13, + 0xdd, 0x50, 0xdf, 0xf2, 0x0, 0x0, 0x9, 0x80, + 0x0, 0x0, 0x0, 0xf, 0xf9, 0x0, 0xa, 0xff, + 0x13, 0xff, 0x50, 0x3f, 0xfc, 0x0, 0x0, 0xbf, + 0xf5, 0x0, 0x0, 0x0, 0xf, 0xf9, 0x0, 0xf, + 0xfb, 0x2, 0xff, 0x50, 0x9, 0xfd, 0x10, 0x0, + 0x3f, 0xff, 0x20, 0x0, 0x0, 0xf, 0xf9, 0x0, + 0x5f, 0xf5, 0x2, 0xff, 0x40, 0x1, 0x80, 0x0, + 0x70, 0x6, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xf9, + 0x0, 0xbf, 0xf0, 0x1, 0xff, 0x50, 0x0, 0x0, + 0x3, 0xfe, 0x90, 0xcf, 0xf5, 0x0, 0x0, 0xf, + 0xf9, 0x3, 0xff, 0xa0, 0x0, 0xff, 0x90, 0x0, + 0x0, 0x9, 0xff, 0x90, 0x2f, 0x60, 0x0, 0x0, + 0xf, 0xfa, 0x0, 0x5c, 0x40, 0x0, 0xef, 0xfe, + 0xdd, 0xdd, 0xef, 0xff, 0x20, 0x1, 0x0, 0x0, + 0x0, 0xf, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x7f, + 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xfb, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x44, 0x44, 0x44, 0x43, 0x10, 0x0, 0x0, + 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -28237,6 +28460,74 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, 0x0, + /* U+7259 "牙" */ + 0x0, 0x3, 0x77, 0x66, 0x66, 0x66, 0x66, 0x66, + 0x66, 0x66, 0x66, 0x66, 0x66, 0x67, 0x76, 0x0, + 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb, 0xff, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbf, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xe8, + 0x20, 0x0, 0x0, 0x0, 0xb, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, + 0xf4, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, + 0xf8, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, + 0xff, 0x20, 0x0, 0x0, 0x1, 0x11, 0x0, 0x0, + 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, + 0x6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0, + 0x0, 0x1d, 0x96, 0x43, 0x33, 0x33, 0x33, 0x5f, + 0xff, 0xcf, 0xf4, 0x33, 0x33, 0x33, 0x34, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xff, 0x8b, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xe0, 0xbf, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xf6, 0xb, 0xff, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0xfb, 0x0, 0xbf, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xfe, 0x10, 0xb, 0xff, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xff, 0x30, 0x0, 0xbf, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xff, 0x50, 0x0, 0xb, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xbf, 0xff, 0x50, 0x0, 0x0, 0xbf, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xef, 0xff, 0x50, 0x0, 0x0, 0xb, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xff, 0xfe, 0x30, 0x0, 0x0, 0x0, 0xbf, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6e, + 0xff, 0xfb, 0x10, 0x0, 0x0, 0x0, 0xb, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xdf, + 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8e, 0xff, + 0xff, 0xa1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, + 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x3, 0xef, + 0xfd, 0x40, 0x0, 0x0, 0x0, 0x0, 0x9b, 0xdf, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xe6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, + 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xff, 0xc7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+72B6 "状" */ 0x0, 0x0, 0x0, 0x0, 0x9c, 0xc3, 0x0, 0x0, 0x0, 0x0, 0x66, 0x64, 0x0, 0x0, 0x0, 0x0, @@ -28523,6 +28814,79 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xff, 0x60, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xff, 0x55, 0x44, 0x43, + 0x33, 0x34, 0x44, 0x40, 0x9, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x4f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd0, 0x9, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x4f, + 0xfe, 0xee, 0xff, 0xee, 0xef, 0xd0, 0x4, 0x65, + 0x5a, 0xff, 0x45, 0x55, 0x0, 0x0, 0x3, 0xff, + 0x30, 0x0, 0x7, 0xff, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xff, 0x30, 0x0, 0x7, 0xff, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xff, 0x30, 0x0, 0x7, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xff, 0x0, 0x0, 0x1f, + 0xf6, 0x3, 0xff, 0x30, 0x0, 0x7, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x0, 0x0, + 0xf, 0xf6, 0x3, 0xff, 0x30, 0x0, 0x7, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x0, + 0x0, 0x1f, 0xf6, 0x3, 0xff, 0x20, 0x0, 0x7, + 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, + 0x0, 0x0, 0x1f, 0xf6, 0x3, 0xff, 0x20, 0x0, + 0x7, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0x0, 0x0, 0x2f, 0xf5, 0x4, 0xff, 0x10, + 0x0, 0x7, 0xff, 0x10, 0x0, 0x0, 0x1, 0x54, + 0x3a, 0xff, 0x33, 0x41, 0x3f, 0xf5, 0x5, 0xff, + 0x4, 0x43, 0x39, 0xff, 0x43, 0x34, 0x0, 0x3, + 0xff, 0xff, 0xff, 0xff, 0xf6, 0x4f, 0xf3, 0x5, + 0xff, 0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, + 0x3, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x5f, 0xf2, + 0x7, 0xff, 0xd, 0xff, 0xef, 0xff, 0xee, 0xff, + 0x20, 0x0, 0x21, 0x18, 0xff, 0x1, 0x21, 0x6f, + 0xf1, 0x9, 0xfd, 0x0, 0x0, 0x7, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x0, 0x0, + 0x5b, 0xb0, 0xb, 0xfb, 0x0, 0x0, 0x7, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xf8, 0x0, 0x0, 0x7, + 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xf6, 0x0, 0x0, + 0x7, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xf2, 0x0, + 0x0, 0x7, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xff, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xe0, + 0x0, 0x0, 0x7, 0xff, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xa0, 0x0, 0x0, 0x7, 0xff, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0x0, 0x6d, 0x30, 0x8, + 0xff, 0x50, 0x0, 0x0, 0x7, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xff, 0x9f, 0xff, 0x70, + 0x1e, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x3c, 0xff, 0xff, 0xf9, + 0x20, 0x9f, 0xf7, 0x0, 0x0, 0x0, 0x7, 0xff, + 0x10, 0x0, 0x0, 0x4, 0x9e, 0xff, 0xff, 0xc6, + 0x0, 0x5, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, + 0xff, 0x10, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xa3, + 0x0, 0x0, 0x3f, 0xff, 0x40, 0x5, 0xff, 0xee, + 0xef, 0xff, 0xee, 0xff, 0xf6, 0xb, 0xff, 0x81, + 0x0, 0x0, 0x3, 0xef, 0xf9, 0x0, 0x5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x4, 0x70, + 0x0, 0x0, 0x0, 0x1d, 0xff, 0xd0, 0x0, 0x1, + 0x44, 0x33, 0x33, 0x33, 0x33, 0x33, 0x42, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8e, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + /* U+7406 "理" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x43, @@ -30511,6 +30875,78 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x0, 0x0, 0x6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xe7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0xb3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xf3, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0xa3, 0x33, 0x34, 0x45, + 0x10, 0x7, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x40, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0x0, 0x0, 0xcf, 0xfe, 0xef, 0xfe, 0xee, 0xff, + 0x40, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0x0, 0xa, 0xff, 0x90, 0x2f, 0xf7, 0x0, 0x0, + 0x3, 0xff, 0xc2, 0x25, 0xff, 0x62, 0x33, 0x42, + 0x0, 0xbf, 0xfb, 0x0, 0x9, 0xff, 0x10, 0x0, + 0x2e, 0xff, 0x20, 0x0, 0xef, 0xb0, 0x0, 0x0, + 0x3d, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xa0, 0x1, + 0xdf, 0xf5, 0x0, 0x0, 0x8f, 0xf2, 0x0, 0x0, + 0x3e, 0xfc, 0x0, 0x1, 0x0, 0x9f, 0xb0, 0xa, + 0xff, 0x80, 0x0, 0x0, 0x3f, 0xf6, 0x0, 0x0, + 0x1, 0x90, 0x0, 0x6e, 0x20, 0x14, 0x0, 0x0, + 0x7a, 0x0, 0x0, 0x0, 0x5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xff, 0xd0, 0x0, 0x11, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9f, 0xfb, 0x0, 0xcf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xff, 0x80, 0xcf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x3, 0x43, 0x2, 0xff, 0x90, 0x33, 0x22, + 0x11, 0x11, 0x11, 0x11, 0x11, 0x4f, 0xf4, 0x0, + 0x0, 0xe, 0xfb, 0x0, 0x86, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xf3, 0x0, + 0x0, 0xd, 0xfa, 0x0, 0x0, 0x22, 0x22, 0x22, + 0x22, 0x22, 0x22, 0x0, 0x0, 0x2f, 0xf3, 0x0, + 0x0, 0xd, 0xfa, 0x0, 0x2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x20, 0x0, 0x2f, 0xf3, 0x0, + 0x0, 0xd, 0xf9, 0x0, 0x1, 0xff, 0xed, 0xdd, + 0xdd, 0xde, 0xff, 0x10, 0x0, 0x2f, 0xf3, 0x0, + 0x0, 0xc, 0xf9, 0x0, 0x0, 0xff, 0x50, 0x0, + 0x0, 0x5, 0xff, 0x0, 0x0, 0x2f, 0xf3, 0x0, + 0x0, 0xc, 0xf9, 0x0, 0x0, 0xff, 0x50, 0x0, + 0x0, 0x5, 0xff, 0x0, 0x0, 0x2f, 0xf3, 0x0, + 0x0, 0xc, 0xf9, 0x0, 0x0, 0xff, 0xdc, 0xcc, + 0xcc, 0xcd, 0xff, 0x0, 0x0, 0x2f, 0xf3, 0x0, + 0x0, 0xc, 0xf9, 0x0, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x0, 0x0, 0x2f, 0xf3, 0x0, + 0x0, 0xc, 0xf9, 0x0, 0x0, 0xff, 0x85, 0x55, + 0x55, 0x58, 0xff, 0x0, 0x0, 0x2f, 0xf3, 0x0, + 0x0, 0xc, 0xf9, 0x0, 0x0, 0xff, 0x50, 0x0, + 0x0, 0x5, 0xff, 0x0, 0x0, 0x2f, 0xf3, 0x0, + 0x0, 0xc, 0xf9, 0x0, 0x0, 0xff, 0x50, 0x0, + 0x0, 0x5, 0xff, 0x0, 0x0, 0x2f, 0xf3, 0x0, + 0x0, 0xc, 0xf9, 0x0, 0x1, 0xff, 0x72, 0x22, + 0x22, 0x27, 0xff, 0x0, 0x0, 0x2f, 0xf3, 0x0, + 0x0, 0xc, 0xf9, 0x0, 0x1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x10, 0x0, 0x2f, 0xf3, 0x0, + 0x0, 0xc, 0xf9, 0x0, 0x2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x20, 0x0, 0x2f, 0xf3, 0x0, + 0x0, 0xc, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf3, 0x0, + 0x0, 0xd, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x11, 0x8f, 0xf2, 0x0, + 0x0, 0xd, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0xff, 0xf1, 0x0, + 0x0, 0xe, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xa0, 0x0, + 0x0, 0xe, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5, 0xfd, 0xa5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x88, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -31926,6 +32362,74 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x33, 0x33, 0x33, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x0, 0x0, 0x19, 0x97, 0x0, 0x0, + 0x0, 0x0, 0x89, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x7, 0x98, 0x77, 0x77, 0x8f, 0xfd, 0x77, 0x77, + 0x77, 0x77, 0xef, 0xe7, 0x77, 0x77, 0x88, 0x95, + 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0xc, 0xff, 0xee, 0xee, 0xef, 0xff, 0xee, 0xee, + 0xee, 0xee, 0xff, 0xfe, 0xee, 0xee, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xd0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xfb, 0x0, 0x3f, + 0xec, 0x10, 0xdf, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x21, 0x0, 0x2f, + 0xff, 0x0, 0x12, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x22, 0x22, 0x22, 0x22, 0x3f, + 0xfc, 0x22, 0x22, 0x22, 0x22, 0x10, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0x43, 0x33, 0x33, 0x4f, + 0xfa, 0x33, 0x33, 0x34, 0xff, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0x10, 0x0, 0x0, 0x1f, + 0xf8, 0x0, 0x0, 0x1, 0xff, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0x10, 0x0, 0x0, 0x2f, + 0xf8, 0x0, 0x0, 0x1, 0xff, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0x10, 0x0, 0x0, 0x2f, + 0xf7, 0x0, 0x0, 0x1, 0xff, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0x10, 0x0, 0x0, 0x3f, + 0xf6, 0x0, 0x0, 0x1, 0xff, 0x70, 0x0, 0x0, + 0x56, 0x55, 0x49, 0xff, 0x54, 0x44, 0x44, 0x7f, + 0xf8, 0x44, 0x44, 0x45, 0xff, 0x94, 0x55, 0x62, + 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, + 0x4b, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xf9, + 0x1, 0xef, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1b, 0xff, 0xc0, + 0x0, 0x2e, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0xef, 0xfd, 0x10, + 0x0, 0x3, 0xef, 0xfc, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x9f, 0xff, 0xc1, 0x0, + 0x0, 0x0, 0x2d, 0xff, 0xf9, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xaf, 0xff, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xbf, 0xff, 0xf9, 0x30, 0x0, + 0x2, 0x69, 0xef, 0xff, 0xfd, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xef, 0xff, 0xfe, 0xa2, + 0x8, 0xff, 0xff, 0xfd, 0x50, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0x90, + 0x0, 0x8f, 0xfa, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0xed, 0x0, + 0x0, 0x5, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x4, 0xdd, 0x70, 0x0, 0x0, 0x7, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, @@ -32514,6 +33018,72 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+897F "西" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x24, 0x33, 0x32, 0x22, 0x22, 0x2c, 0xfb, 0x22, + 0x22, 0xdf, 0xa2, 0x22, 0x22, 0x22, 0x33, 0x41, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xfa, 0x0, + 0x0, 0xdf, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xfa, 0x0, + 0x0, 0xdf, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xfa, 0x0, + 0x0, 0xdf, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xfa, 0x0, + 0x0, 0xdf, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xfa, 0x0, + 0x0, 0xdf, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, + 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, + 0x0, 0x8, 0xff, 0x54, 0x44, 0x4d, 0xfb, 0x44, + 0x44, 0xef, 0xb4, 0x44, 0x44, 0xff, 0x70, 0x0, + 0x0, 0x8, 0xff, 0x10, 0x0, 0xe, 0xf8, 0x0, + 0x0, 0xdf, 0x90, 0x0, 0x0, 0xff, 0x70, 0x0, + 0x0, 0x7, 0xff, 0x10, 0x0, 0xf, 0xf6, 0x0, + 0x0, 0xdf, 0x90, 0x0, 0x0, 0xff, 0x70, 0x0, + 0x0, 0x7, 0xff, 0x10, 0x0, 0x2f, 0xf4, 0x0, + 0x0, 0xdf, 0x90, 0x0, 0x0, 0xff, 0x70, 0x0, + 0x0, 0x7, 0xff, 0x10, 0x0, 0x7f, 0xf1, 0x0, + 0x0, 0xdf, 0x90, 0x0, 0x0, 0xff, 0x70, 0x0, + 0x0, 0x7, 0xff, 0x10, 0x0, 0xdf, 0xd0, 0x0, + 0x0, 0xdf, 0x80, 0x0, 0x0, 0xff, 0x70, 0x0, + 0x0, 0x7, 0xff, 0x10, 0x3, 0xff, 0x80, 0x0, + 0x0, 0xdf, 0x80, 0x0, 0x0, 0xff, 0x70, 0x0, + 0x0, 0x7, 0xff, 0x10, 0xd, 0xff, 0x20, 0x0, + 0x0, 0xdf, 0xc2, 0x23, 0x41, 0xff, 0x70, 0x0, + 0x0, 0x7, 0xff, 0x10, 0x7f, 0xf9, 0x0, 0x0, + 0x0, 0xcf, 0xff, 0xff, 0xf3, 0xff, 0x70, 0x0, + 0x0, 0x7, 0xff, 0x17, 0xff, 0xf1, 0x0, 0x0, + 0x0, 0x7f, 0xff, 0xff, 0xf1, 0xff, 0x70, 0x0, + 0x0, 0x7, 0xff, 0x1b, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x5, 0x89, 0xa9, 0x80, 0xff, 0x70, 0x0, + 0x0, 0x7, 0xff, 0x10, 0x68, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x70, 0x0, + 0x0, 0x7, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x70, 0x0, + 0x0, 0x7, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x70, 0x0, + 0x0, 0x7, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x70, 0x0, + 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, + 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, + 0x0, 0x8, 0xff, 0x32, 0x22, 0x22, 0x22, 0x22, + 0x22, 0x22, 0x22, 0x22, 0x22, 0xff, 0x70, 0x0, + 0x0, 0x8, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, + 0x0, 0x9, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, + 0x0, 0x1, 0x22, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8981 "要" */ 0x3, 0x32, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x23, @@ -32882,6 +33452,72 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x51, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x75, 0x20, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xaf, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x2f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe1, 0x66, 0x55, 0x44, + 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x44, 0x55, 0x66, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x15, 0x54, 0x44, + 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x45, + 0x50, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xed, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xde, 0xef, 0xd0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x14, 0x33, 0x22, 0x22, 0x22, 0x22, 0x22, + 0x22, 0x22, 0x22, 0x33, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, + 0x33, 0x33, 0x33, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xfe, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xef, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfd, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x44, 0x44, + 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0xff, 0xd0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xb0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xfb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x0, 0x46, 0x60, 0x0, 0x16, 0x61, 0x0, 0x0, 0x0, 0x47, 0x0, 0x0, 0x0, 0x0, @@ -33618,6 +34254,81 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x10, 0x0, + /* U+8BED "语" */ + 0x0, 0x0, 0x53, 0x0, 0x0, 0x0, 0x44, 0x33, + 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x44, + 0x10, 0x0, 0x6, 0xfe, 0x20, 0x0, 0x3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x30, 0x0, 0x8, 0xff, 0xe1, 0x0, 0x2, + 0xed, 0xdd, 0xcc, 0xce, 0xff, 0xdc, 0xcc, 0xcc, + 0xdd, 0xde, 0x20, 0x0, 0x0, 0xaf, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xef, 0x90, 0x0, 0x0, 0x0, 0x0, 0xd, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x46, 0x0, 0x0, 0x6, 0x65, 0x55, 0x4f, + 0xfc, 0x22, 0x22, 0x22, 0x22, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, + 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xf0, 0x0, 0x0, 0xc, 0xff, + 0x10, 0x0, 0x8a, 0x99, 0x99, 0x99, 0x10, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0xf, + 0xff, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, 0x30, + 0x0, 0x0, 0x0, 0x3, 0xff, 0x90, 0x0, 0x0, + 0x1f, 0xfd, 0x0, 0x0, 0xce, 0xdd, 0xde, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x7, 0xff, 0x60, 0x0, + 0x0, 0x4f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xff, 0x20, 0x0, 0x0, 0x0, 0xa, 0xff, 0x20, + 0x0, 0x0, 0x6f, 0xfa, 0x0, 0x0, 0x0, 0x0, + 0x9, 0xff, 0x10, 0x18, 0x77, 0x66, 0x6d, 0xff, + 0x66, 0x66, 0x66, 0xbf, 0xfb, 0x67, 0x86, 0x0, + 0x0, 0x9, 0xff, 0x10, 0x2f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0x0, 0x0, 0x9, 0xff, 0x10, 0x2d, 0xcc, 0xbb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xc9, 0x0, 0x0, 0x9, 0xff, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0x10, + 0x0, 0x0, 0x24, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x44, 0x20, 0x0, 0x0, 0x0, 0x9, 0xff, + 0x10, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x9, + 0xff, 0x10, 0x70, 0x0, 0x9f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x9, 0xff, 0x15, 0xf9, 0x0, 0x8f, 0xf3, 0x11, + 0x11, 0x11, 0x11, 0x13, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x9, 0xff, 0x5f, 0xff, 0x40, 0x8f, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x9, 0xff, 0xff, 0xfc, 0x0, 0x8f, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xc0, 0x0, + 0x8f, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, + 0x80, 0x0, 0x0, 0x0, 0xb, 0xff, 0xfd, 0x10, + 0x0, 0x8f, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf2, + 0x0, 0x0, 0x8f, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xff, 0x80, 0x0, 0x0, 0x1, 0xdf, 0xff, + 0x50, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x1, 0xcf, + 0xf8, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, + 0xc, 0xd0, 0x0, 0x0, 0x0, 0x9f, 0xf6, 0x44, + 0x44, 0x44, 0x44, 0x46, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x1, 0x20, 0x0, 0x0, 0x0, 0x9f, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0x90, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xa0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x12, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+8BF7 "请" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x11, 0x0, 0x0, 0x0, 0x0, @@ -42119,392 +42830,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 104268, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 104846, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 105424, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 106002, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 106580, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 106002, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 106563, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 107141, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 107702, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 108263, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 108841, .adv_w = 576, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 109454, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 110049, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 110593, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 111188, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 111749, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 112327, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 112855, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 113416, .adv_w = 576, .box_w = 31, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 113943, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 114487, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 115015, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 115560, .adv_w = 576, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 116138, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 116716, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 117294, .adv_w = 576, .box_w = 29, .box_h = 33, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 117773, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 118317, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 118878, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 119423, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 119968, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 120512, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 121057, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 121585, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 122146, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 122691, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 123269, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 123830, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 124408, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 124986, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 125530, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 126075, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 126619, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 127180, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 127708, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 128252, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 128813, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 129357, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 129885, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 130463, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 130991, .adv_w = 576, .box_w = 30, .box_h = 33, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 131486, .adv_w = 576, .box_w = 30, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 132011, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 132556, .adv_w = 576, .box_w = 30, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 133066, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 133644, .adv_w = 576, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 134156, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 134717, .adv_w = 576, .box_w = 29, .box_h = 31, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 135167, .adv_w = 576, .box_w = 30, .box_h = 33, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 135662, .adv_w = 576, .box_w = 30, .box_h = 32, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 136142, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 136720, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 137281, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 137825, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 138386, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 138914, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 139492, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 140053, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 140631, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 141209, .adv_w = 576, .box_w = 31, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 141736, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 142281, .adv_w = 576, .box_w = 35, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 142841, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 143402, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 143930, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 144491, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 145019, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 145563, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 146158, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 146719, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 147297, .adv_w = 576, .box_w = 30, .box_h = 33, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 147792, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 148336, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 148914, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 149492, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 150087, .adv_w = 576, .box_w = 33, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 150665, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 151243, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 151804, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 152349, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 152944, .adv_w = 576, .box_w = 31, .box_h = 33, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 153456, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 153984, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 154512, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 155090, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 155635, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 156180, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 156725, .adv_w = 576, .box_w = 31, .box_h = 30, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 157190, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 157751, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 158279, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 158823, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 159351, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 159929, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 107702, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 108263, .adv_w = 576, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 108858, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 109419, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 109997, .adv_w = 576, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 110610, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 111205, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 111749, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 112344, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 112905, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 113483, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 114011, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 114572, .adv_w = 576, .box_w = 31, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 115099, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 115643, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 116171, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 116716, .adv_w = 576, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 117294, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 117872, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 118450, .adv_w = 576, .box_w = 29, .box_h = 33, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 118929, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 119473, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 120034, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 120579, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 121124, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 121668, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 122213, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 122741, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 123302, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 123847, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 124425, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 124986, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 125564, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 126142, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 126686, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 127231, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 127775, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 128336, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 128864, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 129408, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 129969, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 130513, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 131041, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 131619, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 132147, .adv_w = 576, .box_w = 30, .box_h = 33, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 132642, .adv_w = 576, .box_w = 30, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 133167, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 133712, .adv_w = 576, .box_w = 30, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 134222, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 134800, .adv_w = 576, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 135312, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 135873, .adv_w = 576, .box_w = 29, .box_h = 31, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 136323, .adv_w = 576, .box_w = 30, .box_h = 33, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 136818, .adv_w = 576, .box_w = 30, .box_h = 32, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 137298, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 137876, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 138437, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 138981, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 139542, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 140070, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 140648, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 141209, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 141787, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 142365, .adv_w = 576, .box_w = 31, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 142892, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 143437, .adv_w = 576, .box_w = 35, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 143997, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 144558, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 145086, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 145647, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 146175, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 146719, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 147314, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 147875, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 148453, .adv_w = 576, .box_w = 30, .box_h = 33, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 148948, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 149492, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 150070, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 150648, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 151243, .adv_w = 576, .box_w = 33, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 151821, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 152399, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 152960, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 153505, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 154100, .adv_w = 576, .box_w = 31, .box_h = 33, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 154612, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 155140, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 155668, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 156246, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 156791, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 157336, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 157881, .adv_w = 576, .box_w = 31, .box_h = 30, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 158346, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 158907, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 159435, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 159979, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 160507, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 161085, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 161663, .adv_w = 576, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 162175, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 162753, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 163298, .adv_w = 576, .box_w = 30, .box_h = 33, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 163793, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 164337, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 164898, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 165459, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 166037, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 166598, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 167159, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 167687, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 168248, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 168826, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 169404, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 169982, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 170526, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 171054, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 171598, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 172126, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 172704, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 173282, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 173827, .adv_w = 576, .box_w = 33, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 174405, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 174983, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 175561, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 176139, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 161663, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 162241, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 162819, .adv_w = 576, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 163331, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 163909, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 164454, .adv_w = 576, .box_w = 30, .box_h = 33, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 164949, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 165493, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 166054, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 166615, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 167176, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 167754, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 168315, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 168876, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 169404, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 169965, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 170543, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 171121, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 171699, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 172243, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 172771, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 173315, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 173843, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 174421, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 174999, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 175544, .adv_w = 576, .box_w = 33, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 176122, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 176700, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 177278, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 177856, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 178434, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 179012, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 179590, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 180168, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 180746, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 177856, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 178417, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 178995, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 179573, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 180151, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 180729, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 181307, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 181885, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 182463, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 183041, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 183569, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 184114, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 184692, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 185287, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 185832, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 186393, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 186971, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 187532, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 188127, .adv_w = 576, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 188639, .adv_w = 576, .box_w = 24, .box_h = 32, .ofs_x = 7, .ofs_y = -3}, - {.bitmap_index = 189023, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 189584, .adv_w = 576, .box_w = 32, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 190080, .adv_w = 576, .box_w = 31, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 190592, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 191104, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 191616, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 192177, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 192722, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 193283, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 193861, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 194422, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 195017, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 195529, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 196090, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 196634, .adv_w = 576, .box_w = 35, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 197212, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 197790, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 198368, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 198929, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 199490, .adv_w = 576, .box_w = 35, .box_h = 34, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 200085, .adv_w = 576, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 200680, .adv_w = 576, .box_w = 35, .box_h = 34, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 201275, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 201853, .adv_w = 576, .box_w = 32, .box_h = 29, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 202317, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 202845, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 203423, .adv_w = 576, .box_w = 31, .box_h = 31, .ofs_x = 3, .ofs_y = -2}, - {.bitmap_index = 203904, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 204465, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 205026, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 205554, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 206115, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 206693, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 207238, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 207833, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 208394, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 208989, .adv_w = 576, .box_w = 32, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 209549, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 210093, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 210671, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 211266, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 211861, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 212422, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 212967, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 213545, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 214106, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 214667, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 215228, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 215789, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 216333, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 216877, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 217421, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 217949, .adv_w = 576, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 218429, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 218973, .adv_w = 576, .box_w = 31, .box_h = 32, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 219469, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 220047, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 220591, .adv_w = 576, .box_w = 30, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 221101, .adv_w = 576, .box_w = 35, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 221679, .adv_w = 576, .box_w = 26, .box_h = 31, .ofs_x = 5, .ofs_y = -3}, - {.bitmap_index = 222082, .adv_w = 576, .box_w = 34, .box_h = 31, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 222609, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 223187, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 223765, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 224310, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 224888, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 225416, .adv_w = 576, .box_w = 33, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 225994, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 226506, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 227084, .adv_w = 576, .box_w = 32, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 227644, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 228205, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 228783, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 229361, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 229922, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 230466, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 231044, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 231639, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 232234, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 232812, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 233373, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 233901, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 234429, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 235007, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 235551, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 236146, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 236707, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 237285, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 237863, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 238424, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 238936, .adv_w = 576, .box_w = 32, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 239432, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 239977, .adv_w = 576, .box_w = 32, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 240473, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 241034, .adv_w = 576, .box_w = 33, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 241612, .adv_w = 576, .box_w = 26, .box_h = 33, .ofs_x = 5, .ofs_y = -3}, - {.bitmap_index = 242041, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 242602, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 243147, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 243675, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 244253, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 244848, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 245426, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 246004, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 246582, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 247160, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 247688, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 248249, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 248827, .adv_w = 576, .box_w = 35, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 249440, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 250018, .adv_w = 576, .box_w = 30, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 250528, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 251106, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 251650, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 252195, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 252773, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 253317, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 253895, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 254473, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 255051, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 255629, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 256207, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 256785, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 257330, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 257908, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 258453, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 259014, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 259558, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 260136, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 260714, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 261292, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 261870, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 262431, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 263009, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 263604, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 264165, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 264709, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 265287, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 265832, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 266410, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 266971, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 267549, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 268110, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 268671, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 269216, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 269794, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 270355, .adv_w = 576, .box_w = 35, .box_h = 34, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 270950, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 271511, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 272072, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 272633, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 273145, .adv_w = 576, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 273657, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 274202, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 274763, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 275341, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 275919, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 276447, .adv_w = 576, .box_w = 30, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 276957, .adv_w = 576, .box_w = 30, .box_h = 35, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 277482, .adv_w = 576, .box_w = 31, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 278009, .adv_w = 576, .box_w = 32, .box_h = 35, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 278569, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 279130, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 279658, .adv_w = 576, .box_w = 32, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 280154, .adv_w = 576, .box_w = 32, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 280714, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 281226, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 281770, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 282298, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 282842, .adv_w = 576, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 283420, .adv_w = 576, .box_w = 35, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 283980, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 284541, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 285119, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 285647, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 286225, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 286786, .adv_w = 576, .box_w = 36, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 287452, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 287938, .adv_w = 576, .box_w = 36, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 288532, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 289018, .adv_w = 396, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 289331, .adv_w = 576, .box_w = 36, .box_h = 36, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 289979, .adv_w = 576, .box_w = 35, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 290627, .adv_w = 648, .box_w = 41, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 291304, .adv_w = 576, .box_w = 36, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 291970, .adv_w = 648, .box_w = 41, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 292524, .adv_w = 576, .box_w = 36, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 293190, .adv_w = 288, .box_w = 18, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 293451, .adv_w = 432, .box_w = 27, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 293843, .adv_w = 648, .box_w = 41, .box_h = 35, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 294561, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 295047, .adv_w = 396, .box_w = 25, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 295510, .adv_w = 504, .box_w = 24, .box_h = 33, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 295906, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 296498, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 297026, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 297554, .adv_w = 504, .box_w = 23, .box_h = 33, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 297934, .adv_w = 504, .box_w = 34, .box_h = 33, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 298495, .adv_w = 360, .box_w = 20, .box_h = 31, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 298805, .adv_w = 360, .box_w = 20, .box_h = 31, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 299115, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 299643, .adv_w = 504, .box_w = 32, .box_h = 7, .ofs_x = 0, .ofs_y = 10}, - {.bitmap_index = 299755, .adv_w = 648, .box_w = 41, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 300309, .adv_w = 720, .box_w = 47, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 301179, .adv_w = 648, .box_w = 42, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 301956, .adv_w = 576, .box_w = 36, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 302550, .adv_w = 504, .box_w = 32, .box_h = 19, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 302854, .adv_w = 504, .box_w = 32, .box_h = 19, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 303158, .adv_w = 720, .box_w = 45, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 303811, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 304297, .adv_w = 576, .box_w = 36, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 304963, .adv_w = 576, .box_w = 37, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 305648, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 306176, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 306768, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 307296, .adv_w = 504, .box_w = 32, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 307760, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 308246, .adv_w = 360, .box_w = 24, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 308690, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 309282, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 309874, .adv_w = 648, .box_w = 41, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 310428, .adv_w = 576, .box_w = 38, .box_h = 38, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 311150, .adv_w = 432, .box_w = 27, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 311650, .adv_w = 720, .box_w = 45, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 312415, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 312933, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 313451, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 313969, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 314487, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 315005, .adv_w = 720, .box_w = 46, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 315672, .adv_w = 504, .box_w = 28, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 316190, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 316782, .adv_w = 576, .box_w = 37, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 317467, .adv_w = 720, .box_w = 45, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 318075, .adv_w = 432, .box_w = 27, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 318575, .adv_w = 579, .box_w = 37, .box_h = 23, .ofs_x = 0, .ofs_y = 2} + {.bitmap_index = 182463, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 183024, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 183602, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 184180, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 184758, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 185286, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 185831, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 186409, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 187004, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 187549, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 188110, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 188688, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 189249, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 189844, .adv_w = 576, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 190356, .adv_w = 576, .box_w = 24, .box_h = 32, .ofs_x = 7, .ofs_y = -3}, + {.bitmap_index = 190740, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 191301, .adv_w = 576, .box_w = 32, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 191797, .adv_w = 576, .box_w = 31, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 192309, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 192821, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 193333, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 193894, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 194439, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 195000, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 195578, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 196139, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 196734, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 197246, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 197807, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 198351, .adv_w = 576, .box_w = 35, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 198929, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 199507, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 200085, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 200646, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 201207, .adv_w = 576, .box_w = 35, .box_h = 34, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 201802, .adv_w = 576, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 202397, .adv_w = 576, .box_w = 35, .box_h = 34, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 202992, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 203570, .adv_w = 576, .box_w = 32, .box_h = 29, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 204034, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 204562, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 205140, .adv_w = 576, .box_w = 31, .box_h = 31, .ofs_x = 3, .ofs_y = -2}, + {.bitmap_index = 205621, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 206182, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 206743, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 207271, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 207832, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 208410, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 208955, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 209550, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 210111, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 210706, .adv_w = 576, .box_w = 32, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 211266, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 211810, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 212388, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 212983, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 213578, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 214139, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 214684, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 215262, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 215823, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 216384, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 216912, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 217473, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 218034, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 218578, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 219122, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 219683, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 220227, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 220755, .adv_w = 576, .box_w = 30, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 221235, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 221779, .adv_w = 576, .box_w = 31, .box_h = 32, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 222275, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 222853, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 223397, .adv_w = 576, .box_w = 30, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 223907, .adv_w = 576, .box_w = 35, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 224485, .adv_w = 576, .box_w = 26, .box_h = 31, .ofs_x = 5, .ofs_y = -3}, + {.bitmap_index = 224888, .adv_w = 576, .box_w = 34, .box_h = 31, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 225415, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 225993, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 226571, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 227116, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 227694, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 228222, .adv_w = 576, .box_w = 33, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 228800, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 229312, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 229890, .adv_w = 576, .box_w = 32, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 230450, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 231011, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 231589, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 232167, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 232728, .adv_w = 576, .box_w = 32, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 233272, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 233850, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 234445, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 235040, .adv_w = 576, .box_w = 32, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 235600, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 236178, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 236739, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 237267, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 237795, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 238373, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 238917, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 239512, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 240073, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 240651, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 241229, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 241790, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 242302, .adv_w = 576, .box_w = 32, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 242798, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 243343, .adv_w = 576, .box_w = 32, .box_h = 31, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 243839, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 244400, .adv_w = 576, .box_w = 33, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 244978, .adv_w = 576, .box_w = 26, .box_h = 33, .ofs_x = 5, .ofs_y = -3}, + {.bitmap_index = 245407, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 245968, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 246513, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 247041, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 247569, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 248147, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 248742, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 249320, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 249898, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 250476, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 251054, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 251582, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 252094, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 252655, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 253233, .adv_w = 576, .box_w = 35, .box_h = 35, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 253846, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 254424, .adv_w = 576, .box_w = 30, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 254934, .adv_w = 576, .box_w = 31, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 255446, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 256024, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 256568, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 257113, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 257691, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 258235, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 258813, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 259391, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 259969, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 260547, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 261125, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 261703, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 262281, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 262826, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 263404, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 263949, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 264510, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 265054, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 265632, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 266210, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 266788, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 267366, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 267927, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 268505, .adv_w = 576, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 269100, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 269661, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 270205, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 270783, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 271328, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 271906, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 272467, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 273045, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 273606, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 274167, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 274712, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 275290, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 275851, .adv_w = 576, .box_w = 35, .box_h = 34, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 276446, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 277007, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 277568, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 278129, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 278641, .adv_w = 576, .box_w = 33, .box_h = 31, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 279153, .adv_w = 576, .box_w = 33, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 279698, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 280259, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 280837, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 281415, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 281943, .adv_w = 576, .box_w = 30, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 282453, .adv_w = 576, .box_w = 30, .box_h = 35, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 282978, .adv_w = 576, .box_w = 31, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 283505, .adv_w = 576, .box_w = 32, .box_h = 35, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 284065, .adv_w = 576, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 284626, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 285154, .adv_w = 576, .box_w = 32, .box_h = 31, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 285650, .adv_w = 576, .box_w = 32, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 286210, .adv_w = 576, .box_w = 32, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 286722, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 287266, .adv_w = 576, .box_w = 33, .box_h = 32, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 287794, .adv_w = 576, .box_w = 34, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 288338, .adv_w = 576, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 288916, .adv_w = 576, .box_w = 35, .box_h = 32, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 289476, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 290037, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 290615, .adv_w = 576, .box_w = 32, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 291143, .adv_w = 576, .box_w = 34, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 291721, .adv_w = 576, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 292282, .adv_w = 576, .box_w = 36, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 292948, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 293434, .adv_w = 576, .box_w = 36, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 294028, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 294514, .adv_w = 396, .box_w = 25, .box_h = 25, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 294827, .adv_w = 576, .box_w = 36, .box_h = 36, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 295475, .adv_w = 576, .box_w = 35, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 296123, .adv_w = 648, .box_w = 41, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 296800, .adv_w = 576, .box_w = 36, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 297466, .adv_w = 648, .box_w = 41, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 298020, .adv_w = 576, .box_w = 36, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 298686, .adv_w = 288, .box_w = 18, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 298947, .adv_w = 432, .box_w = 27, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 299339, .adv_w = 648, .box_w = 41, .box_h = 35, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 300057, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 300543, .adv_w = 396, .box_w = 25, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 301006, .adv_w = 504, .box_w = 24, .box_h = 33, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 301402, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 301994, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 302522, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 303050, .adv_w = 504, .box_w = 23, .box_h = 33, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 303430, .adv_w = 504, .box_w = 34, .box_h = 33, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 303991, .adv_w = 360, .box_w = 20, .box_h = 31, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 304301, .adv_w = 360, .box_w = 20, .box_h = 31, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 304611, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 305139, .adv_w = 504, .box_w = 32, .box_h = 7, .ofs_x = 0, .ofs_y = 10}, + {.bitmap_index = 305251, .adv_w = 648, .box_w = 41, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 305805, .adv_w = 720, .box_w = 47, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 306675, .adv_w = 648, .box_w = 42, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 307452, .adv_w = 576, .box_w = 36, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 308046, .adv_w = 504, .box_w = 32, .box_h = 19, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 308350, .adv_w = 504, .box_w = 32, .box_h = 19, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 308654, .adv_w = 720, .box_w = 45, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 309307, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 309793, .adv_w = 576, .box_w = 36, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 310459, .adv_w = 576, .box_w = 37, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 311144, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 311672, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 312264, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 312792, .adv_w = 504, .box_w = 32, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 313256, .adv_w = 576, .box_w = 36, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 313742, .adv_w = 360, .box_w = 24, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 314186, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 314778, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 315370, .adv_w = 648, .box_w = 41, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 315924, .adv_w = 576, .box_w = 38, .box_h = 38, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 316646, .adv_w = 432, .box_w = 27, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 317146, .adv_w = 720, .box_w = 45, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 317911, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 318429, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 318947, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 319465, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 319983, .adv_w = 720, .box_w = 45, .box_h = 23, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 320501, .adv_w = 720, .box_w = 46, .box_h = 29, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 321168, .adv_w = 504, .box_w = 28, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 321686, .adv_w = 504, .box_w = 32, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 322278, .adv_w = 576, .box_w = 37, .box_h = 37, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 322963, .adv_w = 720, .box_w = 45, .box_h = 27, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 323571, .adv_w = 432, .box_w = 27, .box_h = 37, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 324071, .adv_w = 579, .box_w = 37, .box_h = 23, .ofs_x = 0, .ofs_y = 2} }; /*--------------------- @@ -42525,55 +43246,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -42605,7 +43328,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -42710,7 +43433,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -42809,7 +43533,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_38.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_38.c index 7f7facf3..8ff07271 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_38.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_38.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 38 px * Bpp: 4 - * Opts: --bpp 4 --size 38 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_38.c + * Opts: --bpp 4 --size 38 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_38.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -15470,6 +15470,85 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x3, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x80, 0x0, 0x0, 0x0, 0x3, 0x20, 0x0, + /* U+4F53 "体" */ + 0x0, 0x0, 0x0, 0x4, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x58, 0x82, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xfa, 0x30, + 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xf3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9f, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0x10, 0x7f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x0, 0x0, 0x0, 0x8f, 0xff, 0x10, 0x7f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xef, 0xff, + 0x10, 0x48, 0x77, 0x66, 0x69, 0xff, 0xff, 0xff, + 0xfd, 0x66, 0x66, 0x67, 0x78, 0x0, 0x0, 0x7, + 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x7, 0xff, + 0xcf, 0xfc, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, + 0xc, 0xff, 0x9f, 0xf8, 0xff, 0x40, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x1f, 0xfb, 0x8f, 0xf3, 0xff, 0xa0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xea, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x7f, 0xf6, 0x8f, 0xf2, + 0xcf, 0xf1, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0x69, 0xff, 0x10, 0x0, 0x0, 0x0, 0xdf, 0xf1, + 0x8f, 0xf2, 0x6f, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0xfd, 0x9, 0xff, 0x10, 0x0, 0x0, 0x5, + 0xff, 0xa0, 0x8f, 0xf2, 0xe, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x9, 0xf3, 0x9, 0xff, 0x10, 0x0, + 0x0, 0xd, 0xff, 0x30, 0x8f, 0xf2, 0x7, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0x0, 0x60, 0x9, 0xff, + 0x10, 0x0, 0x0, 0x7f, 0xfb, 0x0, 0x8f, 0xf2, + 0x0, 0xef, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0xff, 0x10, 0x0, 0x3, 0xff, 0xf3, 0x0, + 0x8f, 0xf2, 0x0, 0x5f, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x9, 0xff, 0x10, 0x0, 0x1d, 0xff, + 0x80, 0x0, 0x8f, 0xf2, 0x0, 0xa, 0xff, 0xe2, + 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0x10, 0x0, + 0xcf, 0xfd, 0x0, 0x0, 0x8f, 0xf2, 0x0, 0x0, + 0xdf, 0xfe, 0x30, 0x0, 0x0, 0x0, 0x9, 0xff, + 0x10, 0xb, 0xff, 0xf2, 0x0, 0x0, 0x8f, 0xf2, + 0x0, 0x0, 0x2e, 0xff, 0xf6, 0x0, 0x0, 0x0, + 0x9, 0xff, 0x11, 0xdf, 0xff, 0x50, 0x0, 0x0, + 0x8f, 0xf2, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc2, + 0x0, 0x0, 0x9, 0xff, 0x5e, 0xff, 0xf6, 0x3, + 0x22, 0x11, 0x9f, 0xf3, 0x11, 0x22, 0x20, 0x3e, + 0xff, 0xa0, 0x0, 0x0, 0x9, 0xff, 0x3c, 0xff, + 0x70, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x2, 0xdb, 0x0, 0x0, 0x0, 0x9, 0xff, + 0x10, 0xc6, 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x11, 0x0, 0x0, 0x0, + 0x9, 0xff, 0x10, 0x0, 0x0, 0x16, 0x55, 0x44, + 0xaf, 0xf6, 0x44, 0x55, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9, 0xff, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9f, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9f, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xaf, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa, 0xdd, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -15709,6 +15788,87 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbc, 0x94, 0x0, + /* U+4FC4 "俄" */ + 0x0, 0x0, 0x0, 0x6, 0xb6, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3, 0x97, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xf5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0x70, 0x2, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0x40, 0x0, 0x0, 0x37, 0xcf, + 0xf3, 0x1, 0xff, 0xa0, 0x1, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7f, 0xfd, 0x0, 0x69, 0xcf, + 0xff, 0xff, 0xfd, 0x1, 0xff, 0x90, 0x5e, 0xf9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf6, 0x0, + 0xbf, 0xff, 0xff, 0xd8, 0x52, 0x1, 0xff, 0x90, + 0x4f, 0xff, 0x30, 0x0, 0x0, 0x0, 0x3, 0xff, + 0xf0, 0x0, 0x3f, 0xea, 0xff, 0x70, 0x0, 0x0, + 0xff, 0x90, 0x9, 0xff, 0xd0, 0x0, 0x0, 0x0, + 0xa, 0xff, 0x90, 0x0, 0x2, 0x1, 0xff, 0x70, + 0x0, 0x0, 0xff, 0x90, 0x1, 0xff, 0xf5, 0x0, + 0x0, 0x0, 0x2f, 0xff, 0x30, 0x0, 0x0, 0x1, + 0xff, 0x70, 0x0, 0x0, 0xff, 0x90, 0x0, 0x8f, + 0xc4, 0x0, 0x0, 0x0, 0xaf, 0xff, 0x20, 0x0, + 0x0, 0x1, 0xff, 0x70, 0x0, 0x0, 0xff, 0x90, + 0x0, 0x16, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, + 0x20, 0x0, 0x0, 0x1, 0xff, 0x70, 0x0, 0x0, + 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, + 0xff, 0xff, 0x20, 0x8, 0x77, 0x67, 0xff, 0xa6, + 0x66, 0x66, 0xff, 0xc6, 0x66, 0x67, 0x78, 0x50, + 0x0, 0x6f, 0xff, 0xff, 0x20, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x90, 0x2, 0xff, 0xfa, 0xff, 0x20, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x90, 0xd, 0xff, 0x98, 0xff, + 0x20, 0x1, 0x0, 0x1, 0xff, 0x70, 0x0, 0x0, + 0xef, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0xfe, + 0x18, 0xff, 0x20, 0x0, 0x0, 0x1, 0xff, 0x70, + 0x0, 0x0, 0xcf, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xb5, 0x8, 0xff, 0x20, 0x0, 0x0, 0x1, + 0xff, 0x70, 0x0, 0x0, 0xbf, 0xd0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x20, 0x0, + 0x0, 0x1, 0xff, 0x70, 0x0, 0x0, 0x9f, 0xf0, + 0x0, 0x7a, 0x10, 0x0, 0x0, 0x0, 0x8, 0xff, + 0x20, 0x0, 0x0, 0x1, 0xff, 0x70, 0x5b, 0x10, + 0x7f, 0xf2, 0x0, 0xef, 0xf5, 0x0, 0x0, 0x0, + 0x8, 0xff, 0x20, 0x0, 0x0, 0x1, 0xff, 0xdf, + 0xff, 0x20, 0x4f, 0xf4, 0x6, 0xff, 0xd1, 0x0, + 0x0, 0x0, 0x8, 0xff, 0x20, 0x0, 0x3, 0x8d, + 0xff, 0xff, 0xfd, 0x20, 0x2f, 0xf7, 0xe, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x8, 0xff, 0x21, 0x8b, + 0xff, 0xff, 0xff, 0xd6, 0x20, 0x0, 0xe, 0xfb, + 0x8f, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, + 0x20, 0xdf, 0xff, 0xfd, 0xff, 0x70, 0x0, 0x0, + 0xb, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xff, 0x20, 0x6f, 0xd7, 0x21, 0xff, 0x70, + 0x0, 0x0, 0x6, 0xff, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0x20, 0x5, 0x0, 0x1, + 0xff, 0x70, 0x0, 0x0, 0x5, 0xff, 0xf6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x20, 0x0, + 0x0, 0x1, 0xff, 0x70, 0x0, 0x0, 0x3f, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, + 0x20, 0x0, 0x0, 0x1, 0xff, 0x70, 0x0, 0x4, + 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xff, 0x20, 0x0, 0x0, 0x1, 0xff, 0x70, + 0x0, 0x8f, 0xff, 0xaf, 0xfd, 0x0, 0x3a, 0x10, + 0x0, 0x0, 0x8, 0xff, 0x20, 0x0, 0x0, 0x1, + 0xff, 0x70, 0x4d, 0xff, 0xf7, 0x9, 0xff, 0x70, + 0x4f, 0xf7, 0x0, 0x0, 0x8, 0xff, 0x20, 0x0, + 0x0, 0x5, 0xff, 0x60, 0x9f, 0xff, 0x60, 0x1, + 0xef, 0xf2, 0x7f, 0xf5, 0x0, 0x0, 0x9, 0xff, + 0x30, 0x0, 0xbc, 0xdf, 0xff, 0x50, 0xa, 0xe3, + 0x0, 0x0, 0x6f, 0xfe, 0xff, 0xf1, 0x0, 0x0, + 0x9, 0xff, 0x30, 0x0, 0x8f, 0xff, 0xff, 0x10, + 0x0, 0x10, 0x0, 0x0, 0xa, 0xff, 0xff, 0xa0, + 0x0, 0x0, 0x9, 0xff, 0x40, 0x0, 0x3f, 0xff, + 0xd6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xff, 0x30, 0x0, 0x0, 0xa, 0xff, 0x60, 0x0, + 0x7, 0x52, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4FDD "保" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -23897,6 +24057,87 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x2, 0x10, 0x0, 0x0, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xa0, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x13, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, + 0xfb, 0x20, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xff, 0xf6, 0x5, 0x98, 0x87, + 0x77, 0x77, 0xbf, 0xf9, 0x55, 0x55, 0x55, 0x55, + 0x67, 0x0, 0x0, 0x0, 0xd, 0xff, 0xa0, 0x8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x9f, 0xfd, + 0x0, 0x8, 0xff, 0xee, 0xee, 0xee, 0xff, 0xfe, + 0xee, 0xee, 0xee, 0xef, 0xff, 0x0, 0x0, 0x5, + 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3f, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xef, 0xf9, 0x0, 0x25, 0x0, + 0x2, 0x22, 0x22, 0x24, 0xff, 0xb2, 0x22, 0x22, + 0x22, 0x22, 0x10, 0x0, 0xb, 0xff, 0xc0, 0x0, + 0xaf, 0xb2, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x2, 0xee, + 0x10, 0x3, 0xff, 0xf3, 0x4f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, + 0x0, 0x33, 0x0, 0xc, 0xff, 0x70, 0x4f, 0xf5, + 0x0, 0x6f, 0xf1, 0x0, 0xef, 0x90, 0x2, 0xff, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xfc, 0x0, + 0x3f, 0xf5, 0x0, 0x6f, 0xf1, 0x0, 0xef, 0x90, + 0x2, 0xff, 0x60, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xf2, 0x0, 0x3f, 0xf5, 0x0, 0x6f, 0xf1, 0x0, + 0xef, 0x90, 0x2, 0xff, 0x60, 0x0, 0x0, 0x0, + 0xc, 0xff, 0x70, 0x0, 0x3f, 0xf5, 0x0, 0x6f, + 0xf1, 0x0, 0xef, 0x90, 0x2, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x8f, 0xfe, 0x0, 0x0, 0x4f, 0xf7, + 0x44, 0x9f, 0xf5, 0x44, 0xff, 0xb4, 0x45, 0xff, + 0x70, 0x0, 0x0, 0x5, 0xff, 0xfe, 0x0, 0x0, + 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x70, 0x0, 0x0, 0x3f, 0xff, 0xfe, + 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x3, 0xff, + 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xff, 0x9c, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0xfc, 0xc, 0xfe, 0x0, 0x4, + 0x88, 0x77, 0x76, 0x66, 0x66, 0x66, 0x66, 0x66, + 0x77, 0x78, 0x88, 0x10, 0x7, 0xe1, 0xc, 0xfe, + 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x20, + 0xc, 0xfe, 0x0, 0x8, 0xee, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xee, 0x20, + 0x0, 0x0, 0xc, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9, 0xfa, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xfe, + 0x0, 0x0, 0x97, 0x20, 0x5b, 0xb3, 0x1e, 0xff, + 0x40, 0x0, 0x0, 0x2c, 0x10, 0x0, 0x0, 0x0, + 0xc, 0xfe, 0x0, 0x1, 0xff, 0xd0, 0x7f, 0xf4, + 0x4, 0xff, 0xd0, 0x0, 0x4, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0xc, 0xfe, 0x0, 0x6, 0xff, 0x70, + 0x6f, 0xf3, 0x0, 0xaf, 0xf5, 0x0, 0x0, 0xdf, + 0xf9, 0x0, 0x0, 0x0, 0xc, 0xfe, 0x0, 0xc, + 0xff, 0x10, 0x6f, 0xf3, 0x0, 0x2d, 0x40, 0x3, + 0x0, 0x2f, 0xff, 0x40, 0x0, 0x0, 0xc, 0xfe, + 0x0, 0x2f, 0xfb, 0x0, 0x5f, 0xf2, 0x0, 0x0, + 0x0, 0xd, 0xc6, 0x17, 0xff, 0xe1, 0x0, 0x0, + 0xd, 0xfe, 0x0, 0x9f, 0xf5, 0x0, 0x4f, 0xf4, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x30, 0xcf, 0x90, + 0x0, 0x0, 0xd, 0xff, 0x0, 0xaf, 0xf0, 0x0, + 0x3f, 0xfd, 0x65, 0x55, 0x56, 0xbf, 0xfd, 0x0, + 0x36, 0x0, 0x0, 0x0, 0xe, 0xff, 0x0, 0x1, + 0x50, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xbd, 0xee, 0xee, + 0xee, 0xdb, 0x50, 0x0, 0x0, 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x86, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -31018,6 +31259,81 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7259 "牙" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd0, 0x0, 0x0, 0x8, 0xa9, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x9f, 0xff, 0x99, + 0x99, 0x9a, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x63, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xd5, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xff, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xfd, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x2, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, + 0x0, 0x5f, 0xc9, 0x77, 0x66, 0x66, 0x66, 0x6c, + 0xff, 0xdf, 0xfe, 0x66, 0x66, 0x66, 0x67, 0x78, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xff, 0x4f, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xbf, 0xfb, 0x1f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0xff, 0xf2, 0x1f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xff, 0x80, 0x1f, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xfc, 0x0, 0x1f, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xff, 0xe2, 0x0, 0x1f, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0x30, 0x0, + 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2d, 0xff, 0xf5, 0x0, + 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xef, 0xff, 0x50, + 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xe4, + 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4d, 0xff, 0xfd, + 0x20, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2b, 0xff, 0xff, + 0x90, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a, 0xff, 0xff, + 0xe5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, 0xff, 0xff, + 0xf9, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, + 0xfc, 0x30, 0x0, 0x0, 0x0, 0x0, 0x4a, 0xce, + 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8d, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb, 0xff, 0xfd, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0x63, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+72B6 "状" */ 0x0, 0x0, 0x0, 0x0, 0x9, 0x99, 0x10, 0x0, 0x0, 0x0, 0x0, 0x11, 0x10, 0x0, 0x0, 0x0, @@ -31334,6 +31650,87 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xec, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0x98, 0x87, 0x77, 0x88, 0x89, 0x50, 0x0, + 0x0, 0xf, 0xfb, 0x6e, 0xdd, 0xcc, 0xcc, 0xcc, + 0xdd, 0xe0, 0x6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x90, 0x0, 0x0, 0xf, 0xfa, 0x7f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x6, 0xff, 0xee, 0xff, + 0xfe, 0xff, 0x90, 0x0, 0x0, 0xf, 0xfa, 0x48, + 0x87, 0x7d, 0xff, 0x77, 0x78, 0x90, 0x0, 0x0, + 0x1, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xf9, 0x0, 0x0, 0xb, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xf9, 0x0, 0x0, 0xb, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x90, 0x0, + 0x0, 0x11, 0x0, 0xf, 0xf9, 0x0, 0x0, 0xb, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, + 0x90, 0x0, 0x3, 0xff, 0x70, 0xf, 0xf9, 0x0, + 0x0, 0xb, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0x90, 0x0, 0x2, 0xff, 0x60, 0xf, + 0xf8, 0x0, 0x0, 0xb, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0x90, 0x0, 0x3, 0xff, + 0x60, 0xf, 0xf8, 0x0, 0x0, 0xb, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x90, 0x0, + 0x3, 0xff, 0x60, 0xf, 0xf8, 0x0, 0x0, 0xb, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, + 0x90, 0x0, 0x4, 0xff, 0x50, 0xf, 0xf7, 0x0, + 0x0, 0xb, 0xff, 0x0, 0x0, 0x0, 0x0, 0x11, + 0x1, 0xff, 0x90, 0x1, 0x5, 0xff, 0x50, 0x1f, + 0xf6, 0x1, 0x0, 0xb, 0xff, 0x0, 0x1, 0x0, + 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x26, 0xff, + 0x40, 0x2f, 0xf5, 0x4f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x40, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x27, 0xff, 0x30, 0x3f, 0xf5, 0x4f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x40, 0x0, 0x77, 0x66, 0xff, + 0xb6, 0x67, 0x18, 0xff, 0x20, 0x5f, 0xf3, 0x15, + 0x44, 0x4c, 0xff, 0x34, 0x45, 0x10, 0x0, 0x0, + 0x1, 0xff, 0x90, 0x0, 0x9, 0xff, 0x10, 0x7f, + 0xf2, 0x0, 0x0, 0xb, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0x90, 0x0, 0x1, 0x22, + 0x0, 0xaf, 0xf0, 0x0, 0x0, 0xb, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x90, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xd0, 0x0, 0x0, 0xb, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, + 0x90, 0x0, 0x0, 0x0, 0x1, 0xff, 0x90, 0x0, + 0x0, 0xb, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0x90, 0x0, 0x0, 0x0, 0x6, 0xff, + 0x60, 0x0, 0x0, 0xb, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0x90, 0x0, 0x0, 0x0, + 0xb, 0xff, 0x10, 0x0, 0x0, 0xb, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x90, 0x0, + 0x20, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0xb, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, + 0x90, 0x5c, 0xf1, 0x0, 0x8f, 0xf7, 0x0, 0x0, + 0x0, 0xb, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xde, 0xff, 0xf5, 0x1, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0xb, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x39, 0xff, 0xff, 0xfc, 0x60, 0xb, + 0xff, 0x90, 0x0, 0x0, 0x0, 0xb, 0xff, 0x0, + 0x0, 0x0, 0x3, 0x8e, 0xff, 0xff, 0xf9, 0x30, + 0x0, 0x6f, 0xfe, 0x10, 0x0, 0x0, 0x0, 0xb, + 0xff, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xe7, + 0x0, 0x0, 0x4, 0xff, 0xf6, 0x0, 0xf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x8, 0xff, + 0xc5, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xb0, 0x0, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0x1, 0xa3, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfd, + 0x10, 0x0, 0x6, 0x65, 0x44, 0x44, 0x44, 0x44, + 0x45, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3c, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7406 "理" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, @@ -33524,6 +33921,87 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x2, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa, 0xa3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xc5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf7, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xf9, 0x99, 0x99, 0x9a, 0xa3, 0x0, 0x5f, 0xfc, + 0x44, 0x44, 0x44, 0x45, 0x62, 0x0, 0x0, 0xd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0xdf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, + 0xaf, 0xfd, 0xae, 0xff, 0xaa, 0xbb, 0xc3, 0x8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, + 0x9, 0xff, 0xd0, 0x6, 0xff, 0x40, 0x0, 0x0, + 0x4f, 0xfe, 0x10, 0xb, 0xfe, 0x0, 0x0, 0x10, + 0x0, 0xaf, 0xfd, 0x10, 0x0, 0xdf, 0xd0, 0x0, + 0x3, 0xff, 0xf4, 0x0, 0x5, 0xff, 0x60, 0x0, + 0x0, 0x3d, 0xff, 0xe2, 0x0, 0x0, 0x5f, 0xf7, + 0x0, 0x2e, 0xff, 0x70, 0x0, 0x0, 0xff, 0xd0, + 0x0, 0x0, 0x1b, 0xfe, 0x20, 0x1, 0x0, 0xd, + 0xf8, 0x0, 0xbf, 0xf9, 0x0, 0x0, 0x0, 0xaf, + 0xc1, 0x0, 0x0, 0x0, 0x81, 0x0, 0x1d, 0xa0, + 0x3, 0x10, 0x0, 0x6, 0xb0, 0x0, 0x0, 0x0, + 0x32, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xf8, 0x0, 0x2, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xff, 0x60, 0xf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0x5, 0xff, 0xf4, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, + 0x3, 0x55, 0x0, 0xaf, 0xe4, 0x5, 0x54, 0x43, + 0x33, 0x33, 0x33, 0x33, 0x33, 0xaf, 0xf0, 0x0, + 0x0, 0x9, 0xff, 0x20, 0x1c, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xf0, + 0x0, 0x0, 0x9, 0xff, 0x10, 0x0, 0x11, 0x11, + 0x11, 0x11, 0x11, 0x11, 0x11, 0x0, 0x0, 0x9f, + 0xf0, 0x0, 0x0, 0x8, 0xff, 0x0, 0x0, 0x8f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, + 0x9f, 0xf0, 0x0, 0x0, 0x8, 0xff, 0x0, 0x0, + 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, + 0x0, 0x9f, 0xf0, 0x0, 0x0, 0x8, 0xff, 0x0, + 0x0, 0x7f, 0xf1, 0x0, 0x0, 0x0, 0x1f, 0xf7, + 0x0, 0x0, 0x9f, 0xf0, 0x0, 0x0, 0x8, 0xff, + 0x0, 0x0, 0x7f, 0xf1, 0x0, 0x0, 0x0, 0x1f, + 0xf7, 0x0, 0x0, 0x9f, 0xf0, 0x0, 0x0, 0x8, + 0xff, 0x0, 0x0, 0x7f, 0xf2, 0x11, 0x11, 0x11, + 0x2f, 0xf7, 0x0, 0x0, 0x9f, 0xf0, 0x0, 0x0, + 0x8, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0x0, 0x0, 0x9f, 0xf0, 0x0, + 0x0, 0x8, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x9f, 0xf0, + 0x0, 0x0, 0x8, 0xff, 0x0, 0x0, 0x7f, 0xf3, + 0x22, 0x22, 0x22, 0x3f, 0xf7, 0x0, 0x0, 0x9f, + 0xf0, 0x0, 0x0, 0x8, 0xff, 0x0, 0x0, 0x7f, + 0xf1, 0x0, 0x0, 0x0, 0x1f, 0xf7, 0x0, 0x0, + 0x9f, 0xf0, 0x0, 0x0, 0x8, 0xff, 0x0, 0x0, + 0x7f, 0xf1, 0x0, 0x0, 0x0, 0x1f, 0xf7, 0x0, + 0x0, 0x9f, 0xf0, 0x0, 0x0, 0x8, 0xff, 0x0, + 0x0, 0x7f, 0xf5, 0x44, 0x44, 0x44, 0x5f, 0xf7, + 0x0, 0x0, 0x9f, 0xf0, 0x0, 0x0, 0x8, 0xff, + 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0x0, 0x0, 0x9f, 0xf0, 0x0, 0x0, 0x8, + 0xff, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x9f, 0xf0, 0x0, 0x0, + 0x8, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xf0, 0x0, + 0x0, 0x8, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x11, 0x12, 0xdf, 0xe0, + 0x0, 0x0, 0x9, 0xff, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x9, 0xff, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, + 0xff, 0x40, 0x0, 0x0, 0xa, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xfc, 0x83, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x33, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -35089,6 +35567,83 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x77, 0x77, 0x77, 0x77, 0x76, 0x30, 0x0, 0x0, 0x0, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x0, 0x0, 0x1, 0x33, 0x20, 0x0, + 0x0, 0x0, 0x2, 0x33, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x90, + 0x0, 0x0, 0x0, 0xb, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, + 0x80, 0x0, 0x0, 0x0, 0xa, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x9, 0xff, 0x40, + 0x0, 0x0, 0x0, 0x10, 0x9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf5, 0x9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x6, 0xaa, + 0x99, 0x99, 0x9b, 0xff, 0xc9, 0x99, 0x99, 0x99, + 0x9d, 0xff, 0xa9, 0x99, 0x99, 0xaa, 0xb3, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x9, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x1, + 0x42, 0x0, 0x9, 0xff, 0x50, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x80, + 0x3, 0xff, 0xf4, 0x9, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xd7, 0x77, 0x77, 0x78, 0xff, + 0xd7, 0x77, 0x77, 0x7d, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xb0, 0x0, 0x0, 0x2, + 0xff, 0xa0, 0x0, 0x0, 0xb, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xb0, 0x0, 0x0, + 0x2, 0xff, 0xa0, 0x0, 0x0, 0xb, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xb0, 0x0, + 0x0, 0x2, 0xff, 0x90, 0x0, 0x0, 0xb, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xb0, + 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0xb, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xb0, 0x0, 0x0, 0x3, 0xff, 0x70, 0x0, 0x0, + 0xb, 0xff, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xaf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x58, + 0x87, 0x66, 0x66, 0x66, 0x66, 0x66, 0x8f, 0xff, + 0xff, 0xb6, 0x66, 0x66, 0x66, 0x66, 0x77, 0x81, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, + 0xfb, 0xef, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xff, 0xe1, 0x4f, 0xfe, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xff, 0x50, 0x7, 0xff, 0xe3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0xf8, 0x0, 0x0, 0x9f, 0xff, 0x60, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xbf, 0xff, 0x90, 0x0, 0x0, 0x9, 0xff, + 0xfb, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x8f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xff, 0xf8, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x4, 0x9f, 0xff, 0xfe, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xef, 0xff, 0xf9, 0x30, 0x0, 0x3, + 0x6a, 0xef, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1a, 0xff, 0xff, 0xfe, 0xa1, + 0x5, 0xff, 0xff, 0xff, 0x91, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0xff, 0xff, + 0x40, 0x0, 0x4f, 0xfd, 0x71, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4b, + 0xf9, 0x0, 0x0, 0x5, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x10, 0x0, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, 0x81, 0x0, 0x0, 0x0, 0x6a, 0xa5, 0x0, 0x0, 0x0, 0x0, @@ -35741,6 +36296,79 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+897F "西" */ + 0x15, 0x44, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, + 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x34, + 0x43, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf9, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf9, 0x2, 0x11, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0xc0, 0x0, 0x8, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x11, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xc0, 0x0, 0x8, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xc0, 0x0, 0x8, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0xc0, 0x0, 0x8, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xc0, 0x0, + 0x8, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xc0, + 0x0, 0x8, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xd6, 0x66, + 0x66, 0xef, 0xd6, 0x66, 0x6b, 0xff, 0x76, 0x66, + 0x67, 0xff, 0x70, 0x0, 0x0, 0x0, 0xff, 0xb0, + 0x0, 0x0, 0xdf, 0xa0, 0x0, 0x8, 0xff, 0x0, + 0x0, 0x1, 0xff, 0x70, 0x0, 0x0, 0x0, 0xff, + 0xb0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x8, 0xff, + 0x0, 0x0, 0x1, 0xff, 0x70, 0x0, 0x0, 0x0, + 0xff, 0xb0, 0x0, 0x2, 0xff, 0x60, 0x0, 0x8, + 0xff, 0x0, 0x0, 0x1, 0xff, 0x70, 0x0, 0x0, + 0x0, 0xff, 0xb0, 0x0, 0x6, 0xff, 0x30, 0x0, + 0x8, 0xff, 0x0, 0x0, 0x1, 0xff, 0x70, 0x0, + 0x0, 0x0, 0xff, 0xb0, 0x0, 0xb, 0xff, 0x0, + 0x0, 0x8, 0xff, 0x0, 0x0, 0x1, 0xff, 0x70, + 0x0, 0x0, 0x0, 0xff, 0xb0, 0x0, 0x1f, 0xfb, + 0x0, 0x0, 0x8, 0xff, 0x0, 0x0, 0x1, 0xff, + 0x70, 0x0, 0x0, 0x0, 0xff, 0xb0, 0x0, 0x9f, + 0xf5, 0x0, 0x0, 0x8, 0xff, 0x10, 0x0, 0x1, + 0xff, 0x70, 0x0, 0x0, 0x0, 0xff, 0xb0, 0x3, + 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xc9, 0xab, + 0xc2, 0xff, 0x70, 0x0, 0x0, 0x0, 0xff, 0xb0, + 0x1e, 0xff, 0x60, 0x0, 0x0, 0x5, 0xff, 0xff, + 0xff, 0xf1, 0xff, 0x70, 0x0, 0x0, 0x0, 0xff, + 0xb2, 0xdf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xff, 0xff, 0xd1, 0xff, 0x70, 0x0, 0x0, 0x0, + 0xff, 0xb0, 0x8f, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x45, 0x54, 0x31, 0xff, 0x70, 0x0, 0x0, + 0x0, 0xff, 0xb0, 0x5, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x70, 0x0, + 0x0, 0x0, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x70, + 0x0, 0x0, 0x0, 0xff, 0xb0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, + 0x70, 0x0, 0x0, 0x0, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xff, 0x70, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0xff, + 0xc4, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x44, 0x45, 0xff, 0x80, 0x0, 0x0, 0x0, + 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, + 0x0, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x90, 0x0, + 0x0, 0x0, 0x22, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + /* U+8981 "要" */ 0x6, 0x98, 0x87, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, @@ -36149,6 +36777,81 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x25, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x74, 0x10, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x26, + 0xcd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x98, 0x87, 0x77, 0x77, 0x77, + 0x77, 0x77, 0xff, 0xfb, 0x77, 0x77, 0x77, 0x77, + 0x78, 0x88, 0x97, 0xf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb0, 0xff, 0xfe, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xef, 0xfb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x66, 0x65, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, + 0x55, 0x55, 0x56, 0x73, 0x0, 0x0, 0x0, 0x0, + 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, + 0x0, 0xdf, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xff, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x88, 0x77, 0x66, 0x66, 0x66, + 0x66, 0x66, 0x66, 0x66, 0x67, 0x77, 0x82, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, + 0x0, 0x0, 0x0, 0x0, 0xee, 0xdd, 0xcc, 0xcc, + 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcd, 0xde, 0xe4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xaf, + 0xf7, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x44, 0xaf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x9, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0x70, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x9, 0xff, 0x85, 0x55, 0x55, 0x55, 0x55, + 0x55, 0x55, 0x55, 0x5b, 0xff, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0xaf, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0xb, 0xff, 0x40, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x90, + 0x0, 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, 0x0, 0x0, 0x0, @@ -36967,6 +37670,89 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BED "语" */ + 0x0, 0x0, 0x5, 0x0, 0x0, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x11, 0x0, 0x0, 0x0, 0xbf, 0x70, 0x0, 0x0, + 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x30, 0x0, 0x5, 0xff, 0xf5, + 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, + 0x7f, 0xff, 0x40, 0x0, 0x13, 0x22, 0x21, 0x11, + 0x4f, 0xfc, 0x11, 0x11, 0x11, 0x22, 0x23, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, + 0x60, 0x0, 0x0, 0x11, 0x0, 0x0, 0xaf, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0xff, + 0xff, 0xfd, 0xdd, 0xdd, 0xdd, 0xdd, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x86, 0x54, 0x4a, 0xff, 0xa6, 0x66, 0x66, + 0x6f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0x40, + 0x0, 0x0, 0x2f, 0xfe, 0x0, 0x0, 0x6b, 0xba, + 0xaa, 0xaa, 0x80, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x10, 0x0, 0x0, 0x4f, 0xfc, 0x0, 0x0, + 0x9f, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xfd, 0x0, 0x0, 0x0, 0x7f, 0xfb, + 0x0, 0x0, 0x9f, 0xfe, 0xee, 0xff, 0xd0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xfa, 0x0, 0x0, 0x0, + 0x9f, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf7, 0x0, + 0x0, 0x0, 0xbf, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xc0, 0x3, 0x87, 0x77, 0x66, 0xcf, + 0xf9, 0x66, 0x66, 0x66, 0xef, 0xfa, 0x77, 0x87, + 0x0, 0x0, 0x1, 0xff, 0xc0, 0x5, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfd, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x5, + 0xee, 0xdd, 0xdc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, + 0xcc, 0xcc, 0xcd, 0xdc, 0x0, 0x0, 0x1, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, + 0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xc0, 0x2, 0x0, 0x9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xc0, 0x3f, 0x20, 0x8, 0xff, 0xb9, + 0x99, 0x99, 0x99, 0x99, 0x9b, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xc1, 0xef, 0xc0, 0x8, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, + 0x70, 0x0, 0x0, 0x0, 0x1, 0xff, 0xcc, 0xff, + 0xf3, 0x8, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xff, 0x60, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xff, 0xff, 0x50, 0x8, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xff, 0x60, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xff, 0xf6, 0x0, 0x8, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x4, 0xff, 0xff, 0x80, 0x0, 0x8, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, + 0x60, 0x0, 0x0, 0x0, 0xa, 0xff, 0xfa, 0x0, + 0x0, 0x8, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xff, 0x60, 0x0, 0x0, 0x0, 0x7f, 0xff, + 0xd0, 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, + 0x8f, 0xff, 0x20, 0x0, 0x0, 0x8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x6, 0xf6, 0x0, 0x0, 0x0, 0x8, + 0xff, 0x96, 0x66, 0x66, 0x66, 0x66, 0x6a, 0xff, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x40, 0x0, 0x0, + 0x0, 0x9, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x22, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BF7 "请" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x88, 0x70, 0x0, 0x0, 0x0, @@ -46355,392 +47141,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 114673, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, {.bitmap_index = 115339, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 115969, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 116617, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 117265, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 117878, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 118473, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 119103, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 119733, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 120381, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 121047, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 121659, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 122325, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 122937, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 123567, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 124145, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 124775, .adv_w = 608, .box_w = 33, .box_h = 35, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 125353, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 125965, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 126560, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 127173, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 127803, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 128433, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 129063, .adv_w = 608, .box_w = 30, .box_h = 35, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 129588, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 130200, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 130813, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 131408, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 132021, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 132633, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 133246, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 133858, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 134470, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 135083, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 135731, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 136326, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 136939, .adv_w = 608, .box_w = 37, .box_h = 35, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 137587, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 138199, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 138794, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 139424, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 140054, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 140649, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 141244, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 141874, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 142452, .adv_w = 608, .box_w = 34, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 142996, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 143626, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 144221, .adv_w = 608, .box_w = 32, .box_h = 35, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 144781, .adv_w = 608, .box_w = 32, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 145373, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 145986, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 146562, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 147192, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 147753, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 148365, .adv_w = 608, .box_w = 30, .box_h = 32, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 148845, .adv_w = 608, .box_w = 32, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 149389, .adv_w = 608, .box_w = 32, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 149933, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 150563, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 151193, .adv_w = 608, .box_w = 36, .box_h = 33, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 151787, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 152399, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 152994, .adv_w = 608, .box_w = 37, .box_h = 36, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 153660, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 154272, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 154902, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 155532, .adv_w = 608, .box_w = 33, .box_h = 37, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 156143, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 156756, .adv_w = 608, .box_w = 37, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 157385, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 158015, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 158610, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 159240, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 159852, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 160464, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 161130, .adv_w = 608, .box_w = 35, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 161778, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 162408, .adv_w = 608, .box_w = 32, .box_h = 35, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 162968, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 163580, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 164246, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 164894, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 165560, .adv_w = 608, .box_w = 35, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 166208, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 166838, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 167468, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 168098, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 168764, .adv_w = 608, .box_w = 33, .box_h = 35, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 169342, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 169955, .adv_w = 608, .box_w = 33, .box_h = 35, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 170533, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 171181, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 171776, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 172389, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 172984, .adv_w = 608, .box_w = 33, .box_h = 32, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 173512, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 174142, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 174720, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 175315, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 175876, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 176506, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 177154, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 177784, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 178432, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 179010, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 179623, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 180218, .adv_w = 608, .box_w = 30, .box_h = 35, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 180743, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 181355, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 181985, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 182597, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 183227, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 183840, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 184453, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 185048, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 185678, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 186326, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 186956, .adv_w = 608, .box_w = 35, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 187604, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 188216, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 188811, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 189423, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 190018, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 190648, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 191296, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 191909, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 192539, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 193187, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 193835, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 194483, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 195096, .adv_w = 608, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 195744, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 196392, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 197040, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 197670, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 198300, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 198948, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 199578, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 200208, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 200821, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 201487, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 202117, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 202695, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 203308, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 203956, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 204622, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 205235, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 205847, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 206513, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 207143, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 207809, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 208370, .adv_w = 608, .box_w = 26, .box_h = 33, .ofs_x = 7, .ofs_y = -3}, - {.bitmap_index = 208799, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 209429, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 209990, .adv_w = 608, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 210551, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 211129, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 211707, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 212320, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 212933, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 213545, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 214175, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 214805, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 215471, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 216049, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 216679, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 217291, .adv_w = 608, .box_w = 37, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 217920, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 218568, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 219216, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 219828, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 220458, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 221088, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 221736, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 222366, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 223014, .adv_w = 608, .box_w = 33, .box_h = 30, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 223509, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 224104, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 224752, .adv_w = 608, .box_w = 33, .box_h = 34, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 225313, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 225926, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 226556, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 227151, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 227781, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 228429, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 229007, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 229673, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 230286, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 230952, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 231582, .adv_w = 608, .box_w = 36, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 232176, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 232824, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 233472, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 234102, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 234732, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 235345, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 236011, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 236641, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 237271, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 237901, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 238514, .adv_w = 608, .box_w = 36, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 239108, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 239720, .adv_w = 608, .box_w = 36, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 240314, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 240892, .adv_w = 608, .box_w = 31, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 241419, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 242014, .adv_w = 608, .box_w = 32, .box_h = 33, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 242542, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 243190, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 243802, .adv_w = 608, .box_w = 33, .box_h = 35, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 244380, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 245010, .adv_w = 608, .box_w = 26, .box_h = 33, .ofs_x = 6, .ofs_y = -3}, - {.bitmap_index = 245439, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 246051, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 246699, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 247312, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 247890, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 248520, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 249115, .adv_w = 608, .box_w = 35, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 249763, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 250341, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 250971, .adv_w = 608, .box_w = 34, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 251600, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 252230, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 252878, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 253526, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 254139, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 254751, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 255399, .adv_w = 608, .box_w = 35, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 256047, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 256713, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 257343, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 257956, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 258551, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 259146, .adv_w = 608, .box_w = 37, .box_h = 36, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 259812, .adv_w = 608, .box_w = 36, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 260406, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 261054, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 261666, .adv_w = 608, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 262314, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 262980, .adv_w = 608, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 263628, .adv_w = 608, .box_w = 33, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 264189, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 264750, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 265363, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 265941, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 266571, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 267183, .adv_w = 608, .box_w = 26, .box_h = 34, .ofs_x = 6, .ofs_y = -3}, - {.bitmap_index = 267625, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 268255, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 268833, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 269428, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 270058, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 270724, .adv_w = 608, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 271390, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 272038, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 272651, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 273299, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 273894, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 274506, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 275154, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 275820, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 276486, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 277062, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 277710, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 278305, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 278935, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 279601, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 280213, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 280843, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 281473, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 282103, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 282751, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 283417, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 284047, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 284642, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 285290, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 285903, .adv_w = 608, .box_w = 37, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 286532, .adv_w = 608, .box_w = 36, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 287126, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 287774, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 288422, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 289052, .adv_w = 608, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 289718, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 290348, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 290996, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 291662, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 292292, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 292870, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 293483, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 294096, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 294744, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 295356, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 295986, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 296616, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 297246, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 297841, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 298454, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 299084, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 299732, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 300362, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 300992, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 301622, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 302200, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 302778, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 303391, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 304021, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 304651, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 305299, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 305894, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 306470, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 307046, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 307622, .adv_w = 608, .box_w = 34, .box_h = 37, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 308251, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 308881, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 309476, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 310037, .adv_w = 608, .box_w = 34, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 310666, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 311227, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 311840, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 312435, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 313013, .adv_w = 608, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 313661, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 314273, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 314903, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 315551, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 316129, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 316795, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 317390, .adv_w = 608, .box_w = 39, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 318151, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 318702, .adv_w = 608, .box_w = 38, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 319348, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 319899, .adv_w = 418, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 320264, .adv_w = 608, .box_w = 38, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 321005, .adv_w = 608, .box_w = 36, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 321707, .adv_w = 684, .box_w = 43, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 322438, .adv_w = 608, .box_w = 38, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 323179, .adv_w = 684, .box_w = 43, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 323803, .adv_w = 608, .box_w = 38, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 324544, .adv_w = 304, .box_w = 19, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 324829, .adv_w = 456, .box_w = 29, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 325264, .adv_w = 684, .box_w = 43, .box_h = 37, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 326060, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 326611, .adv_w = 418, .box_w = 27, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 327138, .adv_w = 532, .box_w = 25, .box_h = 35, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 327576, .adv_w = 532, .box_w = 34, .box_h = 40, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 328256, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 328834, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 329412, .adv_w = 532, .box_w = 25, .box_h = 35, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 329850, .adv_w = 532, .box_w = 35, .box_h = 34, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 330445, .adv_w = 380, .box_w = 20, .box_h = 33, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 330775, .adv_w = 380, .box_w = 20, .box_h = 33, .ofs_x = 2, .ofs_y = -2}, - {.bitmap_index = 331105, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 331683, .adv_w = 532, .box_w = 34, .box_h = 8, .ofs_x = 0, .ofs_y = 10}, - {.bitmap_index = 331819, .adv_w = 684, .box_w = 43, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 332443, .adv_w = 760, .box_w = 48, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 333379, .adv_w = 684, .box_w = 45, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 334257, .adv_w = 608, .box_w = 38, .box_h = 35, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 334922, .adv_w = 532, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 335269, .adv_w = 532, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 335616, .adv_w = 760, .box_w = 48, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 336336, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 336887, .adv_w = 608, .box_w = 38, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 337628, .adv_w = 608, .box_w = 39, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 338389, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 338967, .adv_w = 532, .box_w = 34, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 339630, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 340208, .adv_w = 532, .box_w = 34, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 340718, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 341269, .adv_w = 380, .box_w = 26, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 341776, .adv_w = 532, .box_w = 34, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 342439, .adv_w = 532, .box_w = 34, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 343102, .adv_w = 684, .box_w = 43, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 343726, .adv_w = 608, .box_w = 40, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 344506, .adv_w = 456, .box_w = 29, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 345072, .adv_w = 760, .box_w = 48, .box_h = 35, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 345912, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 346512, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 347112, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 347712, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 348312, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 348912, .adv_w = 760, .box_w = 48, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 349632, .adv_w = 532, .box_w = 30, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 350217, .adv_w = 532, .box_w = 34, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 350880, .adv_w = 608, .box_w = 39, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 351641, .adv_w = 760, .box_w = 48, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 352337, .adv_w = 456, .box_w = 29, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 352903, .adv_w = 612, .box_w = 39, .box_h = 25, .ofs_x = 0, .ofs_y = 2} + {.bitmap_index = 116617, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 117229, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 117877, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 118490, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 119085, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 119715, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 120345, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 120975, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 121623, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 122289, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 122901, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 123567, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 124179, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 124809, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 125387, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 126017, .adv_w = 608, .box_w = 33, .box_h = 35, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 126595, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 127207, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 127802, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 128415, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 129045, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 129675, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 130305, .adv_w = 608, .box_w = 30, .box_h = 35, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 130830, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 131442, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 132055, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 132650, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 133263, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 133875, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 134488, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 135100, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 135712, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 136325, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 136973, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 137568, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 138181, .adv_w = 608, .box_w = 37, .box_h = 35, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 138829, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 139441, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 140036, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 140666, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 141296, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 141891, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 142486, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 143116, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 143694, .adv_w = 608, .box_w = 34, .box_h = 32, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 144238, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 144868, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 145463, .adv_w = 608, .box_w = 32, .box_h = 35, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 146023, .adv_w = 608, .box_w = 32, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 146615, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 147228, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 147804, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 148434, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 148995, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 149607, .adv_w = 608, .box_w = 30, .box_h = 32, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 150087, .adv_w = 608, .box_w = 32, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 150631, .adv_w = 608, .box_w = 32, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 151175, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 151805, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 152435, .adv_w = 608, .box_w = 36, .box_h = 33, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 153029, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 153641, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 154236, .adv_w = 608, .box_w = 37, .box_h = 36, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 154902, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 155514, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 156144, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 156774, .adv_w = 608, .box_w = 33, .box_h = 37, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 157385, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 157998, .adv_w = 608, .box_w = 37, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 158627, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 159257, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 159852, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 160482, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 161094, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 161706, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 162372, .adv_w = 608, .box_w = 35, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 163020, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 163650, .adv_w = 608, .box_w = 32, .box_h = 35, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 164210, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 164822, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 165488, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 166136, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 166802, .adv_w = 608, .box_w = 35, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 167450, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 168080, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 168710, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 169340, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 170006, .adv_w = 608, .box_w = 33, .box_h = 35, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 170584, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 171197, .adv_w = 608, .box_w = 33, .box_h = 35, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 171775, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 172423, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 173018, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 173631, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 174226, .adv_w = 608, .box_w = 33, .box_h = 32, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 174754, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 175384, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 175962, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 176557, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 177118, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 177748, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 178396, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 179026, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 179674, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 180252, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 180865, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 181460, .adv_w = 608, .box_w = 30, .box_h = 35, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 181985, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 182597, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 183227, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 183857, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 184469, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 185099, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 185712, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 186325, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 186920, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 187550, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 188198, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 188828, .adv_w = 608, .box_w = 35, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 189476, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 190088, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 190683, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 191295, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 191890, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 192520, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 193168, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 193781, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 194411, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 195059, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 195707, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 196355, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 196968, .adv_w = 608, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 197616, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 198264, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 198912, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 199542, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 200172, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 200820, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 201450, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 202080, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 202693, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 203359, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 203989, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 204567, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 205180, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 205828, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 206494, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 207107, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 207719, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 208385, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 209015, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 209681, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 210242, .adv_w = 608, .box_w = 26, .box_h = 33, .ofs_x = 7, .ofs_y = -3}, + {.bitmap_index = 210671, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 211301, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 211862, .adv_w = 608, .box_w = 33, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 212423, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 213001, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 213579, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 214192, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 214805, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 215417, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 216047, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 216677, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 217343, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 217921, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 218551, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 219163, .adv_w = 608, .box_w = 37, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 219792, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 220440, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 221088, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 221700, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 222330, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 222960, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 223608, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 224238, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 224886, .adv_w = 608, .box_w = 33, .box_h = 30, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 225381, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 225976, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 226624, .adv_w = 608, .box_w = 33, .box_h = 34, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 227185, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 227798, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 228428, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 229023, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 229653, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 230301, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 230879, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 231545, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 232158, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 232824, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 233454, .adv_w = 608, .box_w = 36, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 234048, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 234696, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 235344, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 235974, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 236604, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 237217, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 237883, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 238513, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 239143, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 239721, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 240351, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 240964, .adv_w = 608, .box_w = 36, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 241558, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 242170, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 242800, .adv_w = 608, .box_w = 36, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 243394, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 243972, .adv_w = 608, .box_w = 31, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 244499, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 245094, .adv_w = 608, .box_w = 32, .box_h = 33, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 245622, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 246270, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 246882, .adv_w = 608, .box_w = 33, .box_h = 35, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 247460, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 248090, .adv_w = 608, .box_w = 26, .box_h = 33, .ofs_x = 6, .ofs_y = -3}, + {.bitmap_index = 248519, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 249131, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 249779, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 250392, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 250970, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 251600, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 252195, .adv_w = 608, .box_w = 35, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 252843, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 253421, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 254051, .adv_w = 608, .box_w = 34, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 254680, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 255310, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 255958, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 256606, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 257219, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 257831, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 258479, .adv_w = 608, .box_w = 35, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 259127, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 259793, .adv_w = 608, .box_w = 34, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 260422, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 261052, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 261665, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 262260, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 262855, .adv_w = 608, .box_w = 37, .box_h = 36, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 263521, .adv_w = 608, .box_w = 36, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 264115, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 264763, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 265375, .adv_w = 608, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 266023, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 266689, .adv_w = 608, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 267337, .adv_w = 608, .box_w = 33, .box_h = 34, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 267898, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 268459, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 269072, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 269650, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 270280, .adv_w = 608, .box_w = 34, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 270892, .adv_w = 608, .box_w = 26, .box_h = 34, .ofs_x = 6, .ofs_y = -3}, + {.bitmap_index = 271334, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 271964, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 272542, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 273137, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 273732, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 274362, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 275028, .adv_w = 608, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 275694, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 276342, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 276955, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 277603, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 278198, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 278759, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 279371, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 280019, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 280685, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 281351, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 281927, .adv_w = 608, .box_w = 33, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 282505, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 283153, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 283748, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 284378, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 285044, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 285656, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 286286, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 286916, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 287546, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 288194, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 288860, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 289508, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 290138, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 290733, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 291381, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 291994, .adv_w = 608, .box_w = 37, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 292623, .adv_w = 608, .box_w = 36, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 293217, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 293865, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 294513, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 295143, .adv_w = 608, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 295809, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 296439, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 297087, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 297753, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 298383, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 298961, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 299574, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 300187, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 300835, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 301447, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 302077, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 302707, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 303337, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 303932, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 304545, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 305175, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 305823, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 306453, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 307083, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 307713, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 308291, .adv_w = 608, .box_w = 35, .box_h = 33, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 308869, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 309482, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 310112, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 310742, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 311390, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 311985, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 312561, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 313137, .adv_w = 608, .box_w = 32, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 313713, .adv_w = 608, .box_w = 34, .box_h = 37, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 314342, .adv_w = 608, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 314972, .adv_w = 608, .box_w = 34, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 315567, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 316128, .adv_w = 608, .box_w = 34, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 316757, .adv_w = 608, .box_w = 34, .box_h = 33, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 317318, .adv_w = 608, .box_w = 35, .box_h = 35, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 317931, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 318526, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 319104, .adv_w = 608, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 319752, .adv_w = 608, .box_w = 36, .box_h = 34, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 320364, .adv_w = 608, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 320994, .adv_w = 608, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 321642, .adv_w = 608, .box_w = 34, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 322220, .adv_w = 608, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 322886, .adv_w = 608, .box_w = 35, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 323481, .adv_w = 608, .box_w = 39, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 324242, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 324793, .adv_w = 608, .box_w = 38, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 325439, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 325990, .adv_w = 418, .box_w = 27, .box_h = 27, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 326355, .adv_w = 608, .box_w = 38, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 327096, .adv_w = 608, .box_w = 36, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 327798, .adv_w = 684, .box_w = 43, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 328529, .adv_w = 608, .box_w = 38, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 329270, .adv_w = 684, .box_w = 43, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 329894, .adv_w = 608, .box_w = 38, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 330635, .adv_w = 304, .box_w = 19, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 330920, .adv_w = 456, .box_w = 29, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 331355, .adv_w = 684, .box_w = 43, .box_h = 37, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 332151, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 332702, .adv_w = 418, .box_w = 27, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 333229, .adv_w = 532, .box_w = 25, .box_h = 35, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 333667, .adv_w = 532, .box_w = 34, .box_h = 40, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 334347, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 334925, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 335503, .adv_w = 532, .box_w = 25, .box_h = 35, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 335941, .adv_w = 532, .box_w = 35, .box_h = 34, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 336536, .adv_w = 380, .box_w = 20, .box_h = 33, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 336866, .adv_w = 380, .box_w = 20, .box_h = 33, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 337196, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 337774, .adv_w = 532, .box_w = 34, .box_h = 8, .ofs_x = 0, .ofs_y = 10}, + {.bitmap_index = 337910, .adv_w = 684, .box_w = 43, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 338534, .adv_w = 760, .box_w = 48, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 339470, .adv_w = 684, .box_w = 45, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 340348, .adv_w = 608, .box_w = 38, .box_h = 35, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 341013, .adv_w = 532, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 341360, .adv_w = 532, .box_w = 33, .box_h = 21, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 341707, .adv_w = 760, .box_w = 48, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 342427, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 342978, .adv_w = 608, .box_w = 38, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 343719, .adv_w = 608, .box_w = 39, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 344480, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 345058, .adv_w = 532, .box_w = 34, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 345721, .adv_w = 532, .box_w = 34, .box_h = 34, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 346299, .adv_w = 532, .box_w = 34, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 346809, .adv_w = 608, .box_w = 38, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 347360, .adv_w = 380, .box_w = 26, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 347867, .adv_w = 532, .box_w = 34, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 348530, .adv_w = 532, .box_w = 34, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 349193, .adv_w = 684, .box_w = 43, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 349817, .adv_w = 608, .box_w = 40, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 350597, .adv_w = 456, .box_w = 29, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 351163, .adv_w = 760, .box_w = 48, .box_h = 35, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 352003, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 352603, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 353203, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 353803, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 354403, .adv_w = 760, .box_w = 48, .box_h = 25, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 355003, .adv_w = 760, .box_w = 48, .box_h = 30, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 355723, .adv_w = 532, .box_w = 30, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 356308, .adv_w = 532, .box_w = 34, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 356971, .adv_w = 608, .box_w = 39, .box_h = 39, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 357732, .adv_w = 760, .box_w = 48, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 358428, .adv_w = 456, .box_w = 29, .box_h = 39, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 358994, .adv_w = 612, .box_w = 39, .box_h = 25, .ofs_x = 0, .ofs_y = 2} }; /*--------------------- @@ -46761,55 +47557,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -46841,7 +47639,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -46946,7 +47744,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -47045,7 +47844,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_40.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_40.c index e8ae87e6..8fe741d3 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_40.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_40.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 40 px * Bpp: 4 - * Opts: --bpp 4 --size 40 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_40.c + * Opts: --bpp 4 --size 40 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_40.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -17749,6 +17749,96 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x86, 0x0, 0x0, 0x0, 0x0, 0x34, 0x0, 0x0, + /* U+4F53 "体" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0x71, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xff, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xff, 0x60, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, + 0xf1, 0x1, 0x21, 0x10, 0x0, 0x0, 0x0, 0xef, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x12, 0x0, 0x0, + 0x0, 0x0, 0x9f, 0xfc, 0x0, 0x7f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xb0, + 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0, 0x0, + 0x8, 0xff, 0xfb, 0x0, 0x48, 0x87, 0x77, 0x77, + 0xef, 0xff, 0xff, 0xff, 0xc7, 0x77, 0x77, 0x77, + 0x82, 0x0, 0x0, 0x0, 0xff, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xfd, 0xef, 0xee, 0xfd, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xae, 0xfe, 0xaf, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x0, 0xaf, 0xf6, 0xef, 0xe5, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xbf, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x1e, + 0xfe, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xff, 0xf3, 0xff, 0xb0, 0x0, 0x0, 0x0, + 0x6, 0xff, 0xb0, 0xef, 0xe0, 0xaf, 0xf5, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xef, 0xf7, 0x1f, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0xef, 0xf5, 0xe, 0xfe, + 0x3, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xfd, 0x1, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x6f, + 0xfe, 0x0, 0xef, 0xe0, 0xc, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x0, 0xb, 0x30, 0x1f, 0xfb, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0x60, 0xe, 0xfe, 0x0, + 0x3f, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xb0, 0x0, 0x0, 0xb, 0xff, 0xd0, + 0x0, 0xef, 0xe0, 0x0, 0xaf, 0xfd, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfb, 0x0, 0x0, + 0x7, 0xff, 0xf4, 0x0, 0xe, 0xfe, 0x0, 0x1, + 0xef, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xff, 0xb0, 0x0, 0x5, 0xff, 0xfa, 0x0, 0x0, + 0xef, 0xe0, 0x0, 0x4, 0xff, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xfb, 0x0, 0x4, 0xff, + 0xfd, 0x0, 0x0, 0xe, 0xfe, 0x0, 0x0, 0x8, + 0xff, 0xfc, 0x10, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xb0, 0x6, 0xff, 0xff, 0x20, 0x0, 0x0, 0xef, + 0xe0, 0x0, 0x0, 0xa, 0xff, 0xfe, 0x60, 0x0, + 0x0, 0x0, 0x1f, 0xfb, 0x9, 0xff, 0xff, 0x40, + 0x0, 0x0, 0xe, 0xfe, 0x0, 0x0, 0x0, 0xa, + 0xff, 0xff, 0xa0, 0x0, 0x0, 0x1, 0xff, 0xbb, + 0xff, 0xff, 0x50, 0x78, 0x77, 0x66, 0xff, 0xe6, + 0x66, 0x77, 0x70, 0x9, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0x1f, 0xfb, 0x1a, 0xff, 0x50, 0xe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x0, 0x7, + 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xb0, 0x9, + 0x40, 0x0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xfb, 0x0, 0x0, 0x0, 0x3, 0x32, 0x21, + 0x1e, 0xfe, 0x11, 0x12, 0x22, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2d, 0xdb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -18018,6 +18108,96 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdc, 0x84, 0x0, 0x0, + /* U+4FC4 "俄" */ + 0x0, 0x0, 0x0, 0x0, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xea, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x0, 0xd, 0xff, 0x60, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xf5, 0x0, + 0x0, 0x0, 0x3, 0x9f, 0x30, 0xc, 0xff, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xff, 0xe0, 0x0, 0x3, 0x6a, 0xef, 0xff, 0xc0, + 0xc, 0xff, 0x20, 0x1a, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xff, 0x70, 0x1c, 0xff, 0xff, + 0xff, 0xff, 0xd4, 0xb, 0xff, 0x10, 0xef, 0xf9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0x10, + 0x9, 0xff, 0xff, 0xfc, 0x30, 0x0, 0xb, 0xff, + 0x10, 0x7f, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0xfa, 0x0, 0x2, 0xe9, 0x5f, 0xfa, 0x0, + 0x0, 0xb, 0xff, 0x10, 0xc, 0xff, 0xd0, 0x0, + 0x0, 0x0, 0x2, 0xff, 0xf4, 0x0, 0x0, 0x0, + 0xf, 0xfa, 0x0, 0x0, 0xa, 0xff, 0x10, 0x3, + 0xff, 0xf5, 0x0, 0x0, 0x0, 0xa, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0xf, 0xfa, 0x0, 0x0, 0xa, + 0xff, 0x10, 0x0, 0xbf, 0x80, 0x0, 0x0, 0x0, + 0x2f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfa, + 0x0, 0x0, 0xa, 0xff, 0x10, 0x0, 0x21, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0xf, 0xfa, 0x0, 0x0, 0x9, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, + 0xe0, 0x1, 0x98, 0x77, 0x7f, 0xfd, 0x77, 0x77, + 0x7c, 0xff, 0x87, 0x77, 0x77, 0x89, 0x50, 0x0, + 0xe, 0xff, 0xff, 0xe0, 0x2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x80, 0x0, 0x9f, 0xfc, 0xef, 0xe0, 0x2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x80, 0x6, 0xff, 0xf3, + 0xef, 0xe0, 0x0, 0x21, 0x10, 0xf, 0xfa, 0x0, + 0x0, 0x8, 0xff, 0x20, 0x0, 0x1, 0x12, 0x10, + 0xd, 0xff, 0xa0, 0xef, 0xe0, 0x0, 0x0, 0x0, + 0xf, 0xfa, 0x0, 0x0, 0x7, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9e, 0x10, 0xef, 0xe0, + 0x0, 0x0, 0x0, 0xf, 0xfa, 0x0, 0x0, 0x5, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0x0, 0xef, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfa, + 0x0, 0x0, 0x4, 0xff, 0x70, 0x0, 0x93, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xef, 0xe0, 0x0, 0x0, + 0x0, 0xf, 0xfa, 0x0, 0x54, 0x1, 0xff, 0x90, + 0x2, 0xff, 0xa2, 0x0, 0x0, 0x0, 0x0, 0xef, + 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x9e, 0xf6, + 0x0, 0xff, 0xc0, 0x9, 0xff, 0xe1, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xe0, 0x0, 0x0, 0x2, 0x7f, + 0xff, 0xff, 0xf8, 0x0, 0xcf, 0xf0, 0x2f, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x0, 0xef, 0xe0, 0x2, + 0x59, 0xdf, 0xff, 0xff, 0xe9, 0x50, 0x0, 0x9f, + 0xf2, 0xbf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xe0, 0x4f, 0xff, 0xff, 0xff, 0xfb, 0x0, + 0x0, 0x0, 0x6f, 0xfb, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xe0, 0xc, 0xff, 0xfa, + 0x4f, 0xfa, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xe0, + 0x6, 0xc5, 0x0, 0xf, 0xfa, 0x0, 0x0, 0x0, + 0xd, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xef, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfa, + 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xef, 0xe0, 0x0, 0x0, + 0x0, 0xf, 0xfa, 0x0, 0x0, 0x3, 0xef, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, + 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfa, 0x0, 0x0, + 0x4f, 0xff, 0xff, 0xf2, 0x0, 0x10, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xe0, 0x0, 0x0, 0x0, 0xf, + 0xfa, 0x0, 0x9, 0xff, 0xfa, 0x8f, 0xfb, 0x0, + 0x6d, 0x50, 0x0, 0x0, 0x0, 0xef, 0xe0, 0x0, + 0x0, 0x0, 0xf, 0xfa, 0x5, 0xef, 0xff, 0x90, + 0xe, 0xff, 0x40, 0x8f, 0xf7, 0x0, 0x0, 0x0, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x6f, 0xfa, 0x3, + 0xff, 0xf8, 0x0, 0x5, 0xff, 0xe1, 0xbf, 0xf4, + 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xe, 0xff, + 0xff, 0xf8, 0x0, 0x4f, 0x50, 0x0, 0x0, 0xbf, + 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, + 0x0, 0x9, 0xff, 0xff, 0xf4, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x1e, 0xff, 0xff, 0x90, 0x0, 0x0, + 0x0, 0xff, 0xf0, 0x0, 0x4, 0xff, 0xfd, 0x60, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, + 0x10, 0x0, 0x0, 0x0, 0xff, 0xf2, 0x0, 0x0, + 0x75, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2d, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4FDD "保" */ 0x0, 0x0, 0x0, 0x0, 0x37, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -27025,6 +27205,96 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xf6, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xec, 0xa1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xff, 0x20, 0x10, 0x0, 0x0, 0x0, 0x7, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0xff, 0xf6, 0x1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xec, 0xcc, 0xcc, 0xcc, 0xdd, + 0xea, 0x0, 0x0, 0x0, 0x1e, 0xff, 0xa0, 0x1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, 0xbf, + 0xfd, 0x0, 0x0, 0xaa, 0x99, 0x88, 0x88, 0x8f, + 0xff, 0x98, 0x88, 0x88, 0x89, 0x99, 0xa7, 0x0, + 0x0, 0x8, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xf9, 0x0, 0x9, 0x10, 0x3, 0x33, 0x33, 0x33, + 0x7f, 0xfc, 0x33, 0x33, 0x33, 0x33, 0x33, 0x0, + 0x0, 0xc, 0xff, 0xc0, 0x0, 0x7f, 0xe7, 0xc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x10, 0x0, 0x2, 0xee, 0x10, 0x1, + 0xef, 0xf9, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, + 0x33, 0x0, 0x9, 0xff, 0xc0, 0xb, 0xff, 0x0, + 0x9, 0xff, 0x10, 0xc, 0xfd, 0x0, 0xb, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x20, + 0xb, 0xff, 0x0, 0x9, 0xff, 0x10, 0xc, 0xfd, + 0x0, 0xb, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xf7, 0x0, 0xa, 0xff, 0x0, 0x9, 0xff, + 0x10, 0xc, 0xfd, 0x0, 0xb, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x9, 0xff, 0xc0, 0x0, 0xb, 0xff, + 0x0, 0x9, 0xff, 0x10, 0xc, 0xfd, 0x0, 0xb, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0x30, + 0x0, 0xb, 0xff, 0x44, 0x4a, 0xff, 0x44, 0x4d, + 0xfe, 0x44, 0x4c, 0xff, 0x0, 0x0, 0x0, 0x2, + 0xff, 0xff, 0x20, 0x0, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, + 0x0, 0x0, 0x1e, 0xff, 0xff, 0x20, 0x0, 0xc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x10, 0x0, 0x1, 0xdf, 0xff, 0xff, + 0x20, 0x0, 0x1, 0x11, 0x11, 0x11, 0x11, 0x11, + 0x11, 0x11, 0x11, 0x11, 0x11, 0x0, 0x0, 0x2d, + 0xff, 0xdb, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0xff, 0x2a, 0xff, 0x20, 0x0, + 0x32, 0x21, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x11, 0x22, 0x22, 0x0, 0xd, 0xf4, 0xa, + 0xff, 0x20, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x0, + 0x3, 0x70, 0xa, 0xff, 0x20, 0x1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfd, 0x0, 0x0, 0x0, 0xa, 0xff, 0x20, + 0x0, 0x66, 0x55, 0x55, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x44, 0x45, 0x55, 0x65, 0x0, 0x0, 0x0, + 0xa, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1b, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xff, 0x20, 0x0, 0x1, + 0x0, 0x1, 0x11, 0x2, 0xff, 0xe1, 0x0, 0x0, + 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, + 0x20, 0x0, 0x6f, 0xb4, 0xb, 0xff, 0x20, 0xbf, + 0xfa, 0x0, 0x0, 0x2, 0xcd, 0x0, 0x0, 0x0, + 0x0, 0xa, 0xff, 0x20, 0x0, 0xbf, 0xf5, 0xb, + 0xff, 0x20, 0x1f, 0xff, 0x40, 0x0, 0xe, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0xa, 0xff, 0x20, 0x0, + 0xff, 0xf0, 0xa, 0xff, 0x10, 0x7, 0xff, 0x60, + 0x0, 0x4, 0xff, 0xf6, 0x0, 0x0, 0x0, 0xa, + 0xff, 0x20, 0x6, 0xff, 0x90, 0xa, 0xff, 0x0, + 0x0, 0xb2, 0x0, 0x33, 0x0, 0x7f, 0xff, 0x20, + 0x0, 0x0, 0xa, 0xff, 0x20, 0xc, 0xff, 0x40, + 0x9, 0xff, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xb5, + 0xc, 0xff, 0xc0, 0x0, 0x0, 0xb, 0xff, 0x30, + 0x3f, 0xfe, 0x0, 0x9, 0xff, 0x30, 0x0, 0x0, + 0x0, 0xdf, 0xfa, 0x3, 0xfe, 0x40, 0x0, 0x0, + 0xb, 0xff, 0x30, 0x4d, 0xf8, 0x0, 0x7, 0xff, + 0xd7, 0x66, 0x66, 0x6a, 0xff, 0xf4, 0x0, 0x61, + 0x0, 0x0, 0x0, 0xc, 0xff, 0x40, 0x0, 0x32, + 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x0, 0x6c, 0xef, 0xff, + 0xff, 0xfe, 0xd8, 0x10, 0x0, 0x0, 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -34860,6 +35130,87 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7259 "牙" */ + 0x0, 0x8, 0xaa, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xaa, + 0x40, 0x0, 0x0, 0xb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x60, 0x0, 0x0, 0xb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x1, + 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xff, 0xf1, 0x0, 0x1, 0x12, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8b, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xff, 0x10, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xff, 0x70, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0xaf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, + 0x4f, 0xfc, 0xa9, 0x88, 0x88, 0x88, 0x88, 0xef, + 0xfe, 0xff, 0xf8, 0x88, 0x88, 0x88, 0x89, 0x97, + 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xff, 0xf5, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xff, 0xb1, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x31, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xf9, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, + 0xff, 0xd0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0xff, 0x30, 0x1, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb, 0xff, 0xf5, 0x0, 0x1, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0x80, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2d, 0xff, 0xf8, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, + 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xaf, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6e, 0xff, 0xfe, 0x30, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4d, 0xff, 0xff, 0xb1, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6c, 0xff, 0xff, 0xe6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3e, 0xff, 0xff, 0xfa, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, + 0xfc, 0x30, 0x0, 0x0, 0x0, 0x0, 0x8, 0xce, + 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7e, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xff, 0xd8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x67, 0x41, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+72B6 "状" */ 0x0, 0x0, 0x0, 0x0, 0x2, 0x66, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -35210,6 +35561,94 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x74, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xf0, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x10, 0x4, 0xcb, 0xaa, 0xaa, + 0xaa, 0xbb, 0xc2, 0x0, 0x0, 0x0, 0xff, 0xd1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, + 0x0, 0xff, 0xd1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x5, 0xfe, 0xed, 0xff, 0xfd, 0xee, + 0xf3, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x87, 0x66, + 0x7f, 0xfd, 0x66, 0x67, 0x80, 0x0, 0x0, 0x0, + 0xdf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xc0, 0x0, 0x0, 0x1f, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xb0, 0x0, 0x0, 0x1f, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xb0, 0x0, + 0x0, 0x1f, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xdf, 0xf0, 0x0, 0x0, 0x9f, 0xf3, 0x0, + 0xff, 0xb0, 0x0, 0x0, 0x1f, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf0, 0x0, 0x0, + 0x8f, 0xf3, 0x0, 0xff, 0xb0, 0x0, 0x0, 0x1f, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, + 0xf0, 0x0, 0x0, 0x9f, 0xf2, 0x0, 0xff, 0xa0, + 0x0, 0x0, 0x1f, 0xfb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xf0, 0x0, 0x0, 0x9f, 0xf2, + 0x0, 0xff, 0xa0, 0x0, 0x0, 0x1f, 0xfb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf0, 0x0, + 0x0, 0xaf, 0xf2, 0x0, 0xff, 0x90, 0x0, 0x0, + 0x1f, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xf0, 0x0, 0x0, 0xaf, 0xf1, 0x1, 0xff, + 0x80, 0x0, 0x0, 0x1f, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0xab, 0xba, 0xef, 0xfa, 0xab, 0x90, 0xbf, + 0xf0, 0x1, 0xff, 0x80, 0xbb, 0xaa, 0xaf, 0xfe, + 0xaa, 0xbb, 0x30, 0x0, 0xef, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xcf, 0xf0, 0x2, 0xff, 0x70, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0, 0xdf, + 0xee, 0xff, 0xfd, 0xef, 0xb0, 0xdf, 0xe0, 0x4, + 0xff, 0x60, 0xcc, 0xcb, 0xbf, 0xfe, 0xbb, 0xcd, + 0x30, 0x0, 0x0, 0x0, 0xdf, 0xf0, 0x0, 0x0, + 0xff, 0xd0, 0x6, 0xff, 0x40, 0x0, 0x0, 0x1f, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, + 0xf0, 0x0, 0x0, 0xbb, 0x90, 0x8, 0xff, 0x20, + 0x0, 0x0, 0x1f, 0xfb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xfd, 0x0, 0x0, 0x0, + 0x1f, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf9, + 0x0, 0x0, 0x0, 0x1f, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0xf5, 0x0, 0x0, 0x0, 0x1f, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0xef, 0xf1, 0x0, 0x0, + 0x0, 0x1f, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xdf, 0xf0, 0x0, 0x13, 0x0, 0x5, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf0, 0x4b, 0xfc, + 0x0, 0xc, 0xff, 0x60, 0x0, 0x0, 0x0, 0x1f, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, + 0xfe, 0xff, 0xff, 0x0, 0x5f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xfb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x38, 0xff, 0xff, 0xfe, 0x92, 0x1, 0xef, + 0xf7, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfb, 0x0, + 0x0, 0x0, 0x3, 0x8e, 0xff, 0xff, 0xfc, 0x50, + 0x0, 0xa, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xfb, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, + 0xf9, 0x20, 0x0, 0x0, 0x8f, 0xff, 0x40, 0x0, + 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x9, 0xff, 0xe8, 0x10, 0x0, 0x0, 0x8, 0xff, + 0xf9, 0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfa, 0x1, 0xd6, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0xff, 0xc0, 0x0, 0x0, 0x58, 0x76, + 0x66, 0x66, 0x66, 0x66, 0x67, 0x75, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x19, 0xfd, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x52, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + /* U+7406 "理" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, @@ -37601,6 +38040,96 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7f, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6f, 0xfe, 0x44, 0x44, 0x44, + 0x56, 0x30, 0x0, 0xdf, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x10, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x80, 0x5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0xb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, + 0x9f, 0xfe, 0x21, 0xdf, 0xe2, 0x11, 0x23, 0x10, + 0x9f, 0xfc, 0x66, 0x8f, 0xfc, 0x66, 0x77, 0x83, + 0x0, 0x8, 0xff, 0xf2, 0x0, 0x5f, 0xf8, 0x0, + 0x0, 0x5, 0xff, 0xe1, 0x0, 0xe, 0xfe, 0x0, + 0x0, 0x0, 0x1, 0xaf, 0xff, 0x40, 0x0, 0xc, + 0xff, 0x20, 0x0, 0x4f, 0xff, 0x50, 0x0, 0x8, + 0xff, 0x60, 0x0, 0x0, 0xd, 0xff, 0xf5, 0x0, + 0x0, 0x5, 0xff, 0xb0, 0x3, 0xff, 0xf8, 0x0, + 0x0, 0x3, 0xff, 0xd0, 0x0, 0x0, 0x3, 0xef, + 0x50, 0x0, 0x40, 0x0, 0xdd, 0x50, 0x7, 0xff, + 0xb0, 0x0, 0x0, 0x0, 0xed, 0x80, 0x0, 0x0, + 0x0, 0x34, 0x0, 0x6, 0xf9, 0x0, 0x20, 0x0, + 0x0, 0x2a, 0x10, 0x0, 0x0, 0x0, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0x70, + 0x0, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xff, 0xf5, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9f, 0xff, 0x30, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x66, 0x50, 0xd, 0xfe, 0x30, 0x77, + 0x66, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0xdf, + 0xf0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xc1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xbf, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0xe0, 0x0, 0x0, 0x0, + 0xff, 0xb0, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x0, 0xbf, 0xe0, 0x0, + 0x0, 0x0, 0xff, 0xa0, 0x0, 0xa, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xbf, + 0xe0, 0x0, 0x0, 0x0, 0xff, 0xa0, 0x0, 0x9, + 0xff, 0x43, 0x33, 0x33, 0x33, 0xcf, 0xf0, 0x0, + 0x0, 0xbf, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xa0, + 0x0, 0x9, 0xff, 0x10, 0x0, 0x0, 0x0, 0xbf, + 0xf0, 0x0, 0x0, 0xbf, 0xe0, 0x0, 0x0, 0x0, + 0xff, 0xa0, 0x0, 0x9, 0xff, 0x10, 0x0, 0x0, + 0x0, 0xbf, 0xf0, 0x0, 0x0, 0xbf, 0xe0, 0x0, + 0x0, 0x0, 0xff, 0xa0, 0x0, 0x9, 0xff, 0x76, + 0x66, 0x66, 0x66, 0xdf, 0xf0, 0x0, 0x0, 0xbf, + 0xe0, 0x0, 0x0, 0x0, 0xff, 0xa0, 0x0, 0x9, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, + 0x0, 0xbf, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xa0, + 0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x0, 0x0, 0xbf, 0xe0, 0x0, 0x0, 0x0, + 0xff, 0xa0, 0x0, 0x9, 0xff, 0x10, 0x0, 0x0, + 0x0, 0xbf, 0xf0, 0x0, 0x0, 0xbf, 0xe0, 0x0, + 0x0, 0x0, 0xff, 0xa0, 0x0, 0x9, 0xff, 0x10, + 0x0, 0x0, 0x0, 0xbf, 0xf0, 0x0, 0x0, 0xbf, + 0xe0, 0x0, 0x0, 0x0, 0xff, 0xa0, 0x0, 0x9, + 0xff, 0x10, 0x0, 0x0, 0x0, 0xbf, 0xf0, 0x0, + 0x0, 0xbf, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xa0, + 0x0, 0x9, 0xff, 0x76, 0x66, 0x66, 0x66, 0xdf, + 0xf0, 0x0, 0x0, 0xbf, 0xe0, 0x0, 0x0, 0x0, + 0xff, 0xa0, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x0, 0xbf, 0xe0, 0x0, + 0x0, 0x0, 0xff, 0xa0, 0x0, 0xa, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xbf, + 0xe0, 0x0, 0x0, 0x0, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x11, 0x14, 0xff, 0xd0, 0x0, 0x0, 0x1, + 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xff, 0xff, 0xa0, 0x0, + 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, + 0x30, 0x0, 0x0, 0x2, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xeb, 0x71, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6b, 0xbb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -39314,6 +39843,87 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x99, 0x99, 0x99, 0x99, 0x73, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x0, 0x0, 0x1, 0x88, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x38, 0x86, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x6, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0x11, 0x11, + 0x11, 0x1f, 0xff, 0x11, 0x11, 0x11, 0x11, 0x15, + 0xff, 0xb1, 0x11, 0x11, 0x12, 0x22, 0x9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0x6, 0xba, 0x99, 0x99, 0x99, 0xff, 0xf9, + 0x99, 0x99, 0x99, 0x99, 0xbf, 0xfe, 0x99, 0x99, + 0x9a, 0xab, 0x90, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xf0, 0x0, 0x20, 0x0, 0x0, 0x4f, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0xe, 0xfe, 0xc0, + 0x4, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x33, 0x20, 0x0, 0xdf, + 0xfb, 0x0, 0x3, 0x32, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xf6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xff, 0xa9, 0x99, 0x99, 0x9e, 0xff, + 0xa9, 0x99, 0x99, 0x9d, 0xff, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xf1, 0x0, 0x0, 0x0, + 0xcf, 0xf2, 0x0, 0x0, 0x0, 0xaf, 0xf2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0x10, 0x0, + 0x0, 0xc, 0xff, 0x20, 0x0, 0x0, 0xa, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xf1, + 0x0, 0x0, 0x0, 0xcf, 0xf1, 0x0, 0x0, 0x0, + 0xaf, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, + 0xff, 0x10, 0x0, 0x0, 0xd, 0xff, 0x0, 0x0, + 0x0, 0xa, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xbf, 0xf1, 0x0, 0x0, 0x0, 0xef, 0xf0, + 0x0, 0x0, 0x0, 0xaf, 0xf2, 0x0, 0x0, 0x6, + 0x98, 0x87, 0x7d, 0xff, 0x87, 0x77, 0x77, 0x7f, + 0xff, 0x77, 0x77, 0x77, 0x7c, 0xff, 0x87, 0x78, + 0x86, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xaa, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x12, 0x11, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0xff, 0xfb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x11, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xe5, 0xff, + 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xf4, + 0x8, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xf9, 0x0, 0xb, 0xff, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xff, 0xfb, 0x0, 0x0, 0xb, 0xff, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1a, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xb, 0xff, + 0xfe, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x8f, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, + 0x9, 0xff, 0xff, 0xb3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x39, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xff, 0xff, 0xfc, 0x61, 0x0, + 0x2, 0x69, 0xef, 0xff, 0xff, 0xb2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xaf, 0xff, 0xff, + 0xfc, 0x50, 0x6f, 0xff, 0xff, 0xfc, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, + 0xff, 0xff, 0xb0, 0x0, 0x4f, 0xff, 0xa4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xbf, 0xe1, 0x0, 0x0, 0x76, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x13, 0x0, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x2d, 0xdd, 0x10, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, @@ -40030,6 +40640,87 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, + /* U+897F "西" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0xff, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xff, 0xf3, 0x3f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x19, 0x87, + 0x77, 0x77, 0x77, 0x77, 0x8f, 0xfb, 0x77, 0x77, + 0xcf, 0xf7, 0x77, 0x77, 0x77, 0x77, 0x77, 0x81, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xf8, + 0x0, 0x0, 0x9f, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xf8, 0x0, 0x0, 0x9f, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xf8, 0x0, 0x0, 0x9f, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xf8, 0x0, 0x0, + 0x9f, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xf8, + 0x0, 0x0, 0x9f, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xf8, 0x0, 0x0, 0x9f, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xf9, 0x88, 0x88, 0xaf, 0xfc, + 0x88, 0x88, 0xcf, 0xf9, 0x88, 0x88, 0x8e, 0xff, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf1, 0x0, 0x0, + 0x3f, 0xf6, 0x0, 0x0, 0x9f, 0xf1, 0x0, 0x0, + 0xb, 0xff, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xf1, + 0x0, 0x0, 0x5f, 0xf5, 0x0, 0x0, 0x9f, 0xf1, + 0x0, 0x0, 0xb, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xf1, 0x0, 0x0, 0x7f, 0xf3, 0x0, 0x0, + 0x9f, 0xf1, 0x0, 0x0, 0xb, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xf1, 0x0, 0x0, 0xbf, 0xf0, + 0x0, 0x0, 0x9f, 0xf1, 0x0, 0x0, 0xb, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0xf1, 0x0, 0x0, + 0xff, 0xd0, 0x0, 0x0, 0x9f, 0xf1, 0x0, 0x0, + 0xb, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xf1, + 0x0, 0x5, 0xff, 0x80, 0x0, 0x0, 0x9f, 0xf1, + 0x0, 0x0, 0xb, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xf1, 0x0, 0xc, 0xff, 0x30, 0x0, 0x0, + 0x9f, 0xf1, 0x0, 0x0, 0xb, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xf1, 0x0, 0x5f, 0xfd, 0x0, + 0x0, 0x0, 0x9f, 0xf5, 0x1, 0x23, 0x2b, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0xf1, 0x2, 0xef, + 0xf5, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, + 0x5b, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xf1, + 0x1d, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x4f, 0xff, + 0xff, 0xff, 0x3b, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xf1, 0xcf, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x7, 0xdf, 0xff, 0xff, 0x1b, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xf1, 0x1a, 0xf6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0xf1, 0x0, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xf5, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, + 0x55, 0x55, 0x55, 0x55, 0x5d, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, + 0x0, 0x0, 0x0, 0x0, 0xef, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb, 0xff, 0x0, 0x0, 0x0, 0x0, 0x22, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8981 "要" */ 0x6, 0x88, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, @@ -40482,6 +41173,85 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x48, 0x63, 0x0, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, + 0xdf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0xfd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbb, 0xba, 0xaa, + 0xaa, 0xaa, 0xaa, 0xaa, 0xbf, 0xff, 0xca, 0xaa, + 0xaa, 0xaa, 0xaa, 0xaa, 0xbb, 0xc6, 0xef, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xef, + 0xee, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xee, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, 0x87, 0x77, + 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, + 0x88, 0x90, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0xfe, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xef, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x68, 0x87, 0x77, 0x77, 0x77, + 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x88, 0x70, + 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xfe, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x26, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, + 0x66, 0x66, 0x66, 0x66, 0x66, 0x60, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xfb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xfd, 0x77, 0x77, 0x77, 0x77, 0x77, + 0x77, 0x77, 0x77, 0x78, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xfb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xff, 0xf2, 0x0, 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -41379,6 +42149,99 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BED "语" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, 0x20, 0x0, + 0x0, 0x8, 0x77, 0x66, 0x66, 0x66, 0x66, 0x66, + 0x66, 0x66, 0x66, 0x77, 0x85, 0x0, 0x0, 0x2, + 0xef, 0xe1, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x0, 0x0, 0x2, 0xef, 0xfd, 0x0, 0x0, 0xe, + 0xed, 0xdd, 0xdc, 0xce, 0xff, 0xec, 0xcc, 0xcd, + 0xdd, 0xdd, 0xe9, 0x0, 0x0, 0x0, 0x2e, 0xff, + 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, + 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0x80, 0x0, 0x0, 0x33, 0x33, 0x22, 0x2f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x67, 0x54, 0x44, + 0xef, 0xf8, 0x66, 0x66, 0x66, 0xef, 0xf5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xf1, 0x0, 0x0, 0x0, + 0xff, 0xf3, 0x0, 0x0, 0x9e, 0xdc, 0xcc, 0xcc, + 0xc2, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xd0, + 0x0, 0x0, 0x2, 0xff, 0xf1, 0x0, 0x0, 0xaf, + 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0xa0, 0x0, 0x0, 0x4, 0xff, 0xf0, + 0x0, 0x0, 0xaf, 0xfe, 0xee, 0xff, 0xf2, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xff, 0x70, 0x0, 0x0, + 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xf2, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, + 0x40, 0x0, 0x0, 0x9, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xf2, 0x1, 0x98, 0x77, + 0x77, 0x7f, 0xff, 0x87, 0x77, 0x77, 0x7d, 0xff, + 0xd7, 0x88, 0x93, 0x0, 0x0, 0x0, 0xef, 0xf1, + 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, + 0x0, 0xef, 0xf1, 0x1, 0xff, 0xff, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xf5, 0x0, 0x0, 0x0, 0xef, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf1, 0x0, + 0x0, 0x0, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, + 0x11, 0x11, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xf1, 0x0, 0x0, 0x2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xf1, 0x2, 0x0, 0x1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf1, + 0x1e, 0x60, 0x1, 0xff, 0xf9, 0x99, 0x99, 0x99, + 0x99, 0x99, 0xaf, 0xfc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xef, 0xf1, 0xbf, 0xf2, 0x0, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xef, 0xf9, 0xff, 0xf8, + 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, + 0xff, 0xff, 0xa0, 0x0, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xfb, 0x0, 0x0, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, + 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xfe, 0x10, 0x0, 0x0, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xff, 0xf3, 0x0, 0x0, 0x0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x60, + 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xfb, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, + 0x88, 0x88, 0x88, 0x88, 0x88, 0xaf, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x41, 0x0, 0x0, 0x0, + 0x2, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x22, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+8BF7 "请" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x15, 0x55, 0x0, 0x0, 0x0, @@ -51636,392 +52499,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 132679, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, {.bitmap_index = 133401, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 134104, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 134807, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 135529, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 136214, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 136899, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 137583, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 138268, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 138971, .adv_w = 640, .box_w = 37, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 139693, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 140377, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 141099, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 141783, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 142486, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 143098, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 143801, .adv_w = 640, .box_w = 35, .box_h = 37, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 144449, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 145133, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 145799, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 146502, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 147186, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 147908, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 148593, .adv_w = 640, .box_w = 31, .box_h = 37, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 149167, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 149851, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 150536, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 151184, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 151850, .adv_w = 640, .box_w = 36, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 152534, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 153219, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 153885, .adv_w = 640, .box_w = 35, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 154550, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 155216, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 155938, .adv_w = 640, .box_w = 36, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 156622, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 157325, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 158028, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 158693, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 159341, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 160007, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 160710, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 161376, .adv_w = 640, .box_w = 37, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 162024, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 162709, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 163374, .adv_w = 640, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 164022, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 164707, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 165355, .adv_w = 640, .box_w = 34, .box_h = 36, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 165967, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 166613, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 167279, .adv_w = 640, .box_w = 33, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 167906, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 168628, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 169258, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 169942, .adv_w = 640, .box_w = 32, .box_h = 34, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 170486, .adv_w = 640, .box_w = 34, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 171098, .adv_w = 640, .box_w = 34, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 171710, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 172395, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 173079, .adv_w = 640, .box_w = 38, .box_h = 34, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 173725, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 174409, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 175075, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 175797, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 176463, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 177166, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 177869, .adv_w = 640, .box_w = 35, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 178534, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 179219, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 179884, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 180587, .adv_w = 640, .box_w = 36, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 181271, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 181974, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 182640, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 183306, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 184009, .adv_w = 640, .box_w = 35, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 184674, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 185359, .adv_w = 640, .box_w = 34, .box_h = 37, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 185988, .adv_w = 640, .box_w = 35, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 186653, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 187356, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 188059, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 188781, .adv_w = 640, .box_w = 37, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 189503, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 190206, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 190928, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 191594, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 192316, .adv_w = 640, .box_w = 34, .box_h = 37, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 192945, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 193611, .adv_w = 640, .box_w = 34, .box_h = 37, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 194240, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 194981, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 195647, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 196313, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 196979, .adv_w = 640, .box_w = 34, .box_h = 33, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 197540, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 198243, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 198891, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 199557, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 200187, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 200890, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 201612, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 202315, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 203018, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 203630, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 204315, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 204981, .adv_w = 640, .box_w = 32, .box_h = 36, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 205557, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 206241, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 206907, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 207610, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 208313, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 208997, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 209682, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 210330, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 211014, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 211717, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 212439, .adv_w = 640, .box_w = 36, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 213123, .adv_w = 640, .box_w = 36, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 213807, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 214437, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 215103, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 215769, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 216472, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 217194, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 217879, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 218582, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 219285, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 220007, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 220710, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 221413, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 222135, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 222820, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 223542, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 224245, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 224948, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 225651, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 226354, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 227038, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 227723, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 228445, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 229148, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 229796, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 230481, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 231203, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 231944, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 232629, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 233313, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 234016, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 234719, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 235441, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 236053, .adv_w = 640, .box_w = 27, .box_h = 36, .ofs_x = 7, .ofs_y = -4}, - {.bitmap_index = 236539, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 237224, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 237836, .adv_w = 640, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 238466, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 239078, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 239708, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 240393, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 241078, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 241762, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 242447, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 243131, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 243872, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 244502, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 245205, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 245870, .adv_w = 640, .box_w = 39, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 246572, .adv_w = 640, .box_w = 39, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 247294, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 247979, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 248663, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 249347, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 250050, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 250753, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 251475, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 252178, .adv_w = 640, .box_w = 35, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 252756, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 253404, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 254107, .adv_w = 640, .box_w = 35, .box_h = 36, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 254737, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 255422, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 256106, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 256772, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 257457, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 258160, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 258808, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 259511, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 260177, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 260899, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 261602, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 262286, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 262989, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 263711, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 264414, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 265099, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 265747, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 266469, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 267191, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 267894, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 268597, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 269282, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 269947, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 270612, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 271277, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 271907, .adv_w = 640, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 272502, .adv_w = 640, .box_w = 35, .box_h = 37, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 273150, .adv_w = 640, .box_w = 35, .box_h = 35, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 273763, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 274466, .adv_w = 640, .box_w = 35, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 275114, .adv_w = 640, .box_w = 34, .box_h = 37, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 275743, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 276427, .adv_w = 640, .box_w = 28, .box_h = 34, .ofs_x = 6, .ofs_y = -3}, - {.bitmap_index = 276903, .adv_w = 640, .box_w = 37, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 277551, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 278254, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 278939, .adv_w = 640, .box_w = 35, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 279569, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 280272, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 280938, .adv_w = 640, .box_w = 36, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 281640, .adv_w = 640, .box_w = 35, .box_h = 35, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 282253, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 282938, .adv_w = 640, .box_w = 36, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 283622, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 284307, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 285029, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 285732, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 286398, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 287064, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 287767, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 288470, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 289211, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 289896, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 290581, .adv_w = 640, .box_w = 35, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 291229, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 291895, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 292617, .adv_w = 640, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 293265, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 293968, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 294652, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 295355, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 296096, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 296799, .adv_w = 640, .box_w = 34, .box_h = 35, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 297394, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 298006, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 298691, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 299303, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 299987, .adv_w = 640, .box_w = 36, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 300671, .adv_w = 640, .box_w = 29, .box_h = 36, .ofs_x = 6, .ofs_y = -3}, - {.bitmap_index = 301193, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 301859, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 302525, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 303173, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 303876, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 304598, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 305320, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 306042, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 306727, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 307430, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 308096, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 308799, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 309521, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 310243, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 310965, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 311611, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 312333, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 312998, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 313701, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 314423, .adv_w = 640, .box_w = 37, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 315071, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 315793, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 316459, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 317162, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 317884, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 318587, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 319272, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 319938, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 320660, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 321326, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 322010, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 322675, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 323397, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 324100, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 324785, .adv_w = 640, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 325526, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 326229, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 326951, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 327692, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 328395, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 329061, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 329764, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 330430, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 331133, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 331817, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 332520, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 333223, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 333926, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 334611, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 335314, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 335998, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 336701, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 337404, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 338107, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 338791, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 339421, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 340033, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 340681, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 341403, .adv_w = 640, .box_w = 39, .box_h = 37, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 342125, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 342828, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 343494, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 344140, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 344786, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 345432, .adv_w = 640, .box_w = 36, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 346134, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 346837, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 347485, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 348097, .adv_w = 640, .box_w = 36, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 348799, .adv_w = 640, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 349429, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 350095, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 350761, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 351409, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 352131, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 352815, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 353499, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 354221, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 354887, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 355628, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 356312, .adv_w = 640, .box_w = 40, .box_h = 41, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 357132, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 357732, .adv_w = 640, .box_w = 40, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 358452, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 359052, .adv_w = 440, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 359444, .adv_w = 640, .box_w = 40, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 360244, .adv_w = 640, .box_w = 38, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 361004, .adv_w = 720, .box_w = 45, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 361814, .adv_w = 640, .box_w = 40, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 362614, .adv_w = 720, .box_w = 45, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 363289, .adv_w = 640, .box_w = 40, .box_h = 42, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 364129, .adv_w = 320, .box_w = 20, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 364449, .adv_w = 480, .box_w = 30, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 364929, .adv_w = 720, .box_w = 45, .box_h = 38, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 365784, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 366384, .adv_w = 440, .box_w = 28, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 366944, .adv_w = 560, .box_w = 25, .box_h = 37, .ofs_x = 5, .ofs_y = -4}, - {.bitmap_index = 367407, .adv_w = 560, .box_w = 35, .box_h = 42, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 368142, .adv_w = 560, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 368772, .adv_w = 560, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 369402, .adv_w = 560, .box_w = 25, .box_h = 37, .ofs_x = 5, .ofs_y = -4}, - {.bitmap_index = 369865, .adv_w = 560, .box_w = 37, .box_h = 36, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 370531, .adv_w = 400, .box_w = 21, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 370909, .adv_w = 400, .box_w = 21, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 371287, .adv_w = 560, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 371917, .adv_w = 560, .box_w = 35, .box_h = 8, .ofs_x = 0, .ofs_y = 11}, - {.bitmap_index = 372057, .adv_w = 720, .box_w = 45, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 372732, .adv_w = 800, .box_w = 51, .box_h = 40, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 373752, .adv_w = 720, .box_w = 47, .box_h = 40, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 374692, .adv_w = 640, .box_w = 40, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 375412, .adv_w = 560, .box_w = 35, .box_h = 22, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 375797, .adv_w = 560, .box_w = 35, .box_h = 22, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 376182, .adv_w = 800, .box_w = 50, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 376982, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 377582, .adv_w = 640, .box_w = 40, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 378382, .adv_w = 640, .box_w = 41, .box_h = 41, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 379223, .adv_w = 560, .box_w = 36, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 379871, .adv_w = 560, .box_w = 35, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 380571, .adv_w = 560, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 381201, .adv_w = 560, .box_w = 35, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 381761, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 382361, .adv_w = 400, .box_w = 27, .box_h = 40, .ofs_x = -1, .ofs_y = -5}, - {.bitmap_index = 382901, .adv_w = 560, .box_w = 35, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 383601, .adv_w = 560, .box_w = 35, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 384301, .adv_w = 720, .box_w = 45, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 384976, .adv_w = 640, .box_w = 42, .box_h = 42, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 385858, .adv_w = 480, .box_w = 30, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 386458, .adv_w = 800, .box_w = 50, .box_h = 37, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 387383, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 388033, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 388683, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 389333, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 389983, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 390633, .adv_w = 800, .box_w = 51, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 391449, .adv_w = 560, .box_w = 31, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 392069, .adv_w = 560, .box_w = 35, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 392769, .adv_w = 640, .box_w = 41, .box_h = 41, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 393610, .adv_w = 800, .box_w = 50, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 394360, .adv_w = 480, .box_w = 30, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 394960, .adv_w = 644, .box_w = 41, .box_h = 26, .ofs_x = 0, .ofs_y = 2} + {.bitmap_index = 134807, .adv_w = 640, .box_w = 39, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 135509, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 136231, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 136916, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 137601, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 138304, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 138988, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 139673, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 140376, .adv_w = 640, .box_w = 37, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 141098, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 141782, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 142504, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 143188, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 143891, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 144503, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 145206, .adv_w = 640, .box_w = 35, .box_h = 37, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 145854, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 146538, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 147204, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 147907, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 148591, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 149313, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 149998, .adv_w = 640, .box_w = 31, .box_h = 37, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 150572, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 151256, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 151941, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 152589, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 153255, .adv_w = 640, .box_w = 36, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 153939, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 154624, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 155290, .adv_w = 640, .box_w = 35, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 155955, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 156621, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 157343, .adv_w = 640, .box_w = 36, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 158027, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 158730, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 159433, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 160098, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 160746, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 161412, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 162115, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 162781, .adv_w = 640, .box_w = 37, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 163429, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 164114, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 164779, .adv_w = 640, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 165427, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 166112, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 166760, .adv_w = 640, .box_w = 34, .box_h = 36, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 167372, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 168018, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 168684, .adv_w = 640, .box_w = 33, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 169311, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 170033, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 170663, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 171347, .adv_w = 640, .box_w = 32, .box_h = 34, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 171891, .adv_w = 640, .box_w = 34, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 172503, .adv_w = 640, .box_w = 34, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 173115, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 173800, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 174484, .adv_w = 640, .box_w = 38, .box_h = 34, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 175130, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 175814, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 176480, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 177202, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 177868, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 178571, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 179274, .adv_w = 640, .box_w = 35, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 179939, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 180624, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 181289, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 181992, .adv_w = 640, .box_w = 36, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 182676, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 183379, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 184045, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 184711, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 185414, .adv_w = 640, .box_w = 35, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 186079, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 186764, .adv_w = 640, .box_w = 34, .box_h = 37, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 187393, .adv_w = 640, .box_w = 35, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 188058, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 188761, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 189464, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 190186, .adv_w = 640, .box_w = 37, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 190908, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 191611, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 192333, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 192999, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 193721, .adv_w = 640, .box_w = 34, .box_h = 37, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 194350, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 195016, .adv_w = 640, .box_w = 34, .box_h = 37, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 195645, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 196386, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 197052, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 197718, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 198384, .adv_w = 640, .box_w = 34, .box_h = 33, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 198945, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 199648, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 200296, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 200962, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 201592, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 202295, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 203017, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 203720, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 204423, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 205035, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 205720, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 206386, .adv_w = 640, .box_w = 32, .box_h = 36, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 206962, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 207646, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 208312, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 209015, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 209718, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 210421, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 211105, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 211790, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 212438, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 213122, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 213825, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 214547, .adv_w = 640, .box_w = 36, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 215231, .adv_w = 640, .box_w = 36, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 215915, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 216545, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 217211, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 217877, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 218580, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 219302, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 219987, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 220690, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 221393, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 222115, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 222818, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 223521, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 224243, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 224928, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 225650, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 226353, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 227056, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 227759, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 228462, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 229146, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 229831, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 230553, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 231256, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 231904, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 232589, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 233311, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 234052, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 234737, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 235421, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 236124, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 236827, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 237549, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 238161, .adv_w = 640, .box_w = 27, .box_h = 36, .ofs_x = 7, .ofs_y = -4}, + {.bitmap_index = 238647, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 239332, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 239944, .adv_w = 640, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 240574, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 241186, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 241816, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 242501, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 243186, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 243870, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 244555, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 245239, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 245980, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 246610, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 247313, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 247978, .adv_w = 640, .box_w = 39, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 248680, .adv_w = 640, .box_w = 39, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 249402, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 250087, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 250771, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 251455, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 252158, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 252861, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 253583, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 254286, .adv_w = 640, .box_w = 35, .box_h = 33, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 254864, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 255512, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 256215, .adv_w = 640, .box_w = 35, .box_h = 36, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 256845, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 257530, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 258214, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 258880, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 259565, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 260268, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 260916, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 261619, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 262285, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 263007, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 263710, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 264394, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 265097, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 265819, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 266522, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 267207, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 267855, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 268577, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 269299, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 270002, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 270632, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 271335, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 272020, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 272685, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 273350, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 274034, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 274699, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 275329, .adv_w = 640, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 275924, .adv_w = 640, .box_w = 35, .box_h = 37, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 276572, .adv_w = 640, .box_w = 35, .box_h = 35, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 277185, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 277888, .adv_w = 640, .box_w = 35, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 278536, .adv_w = 640, .box_w = 34, .box_h = 37, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 279165, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 279849, .adv_w = 640, .box_w = 28, .box_h = 34, .ofs_x = 6, .ofs_y = -3}, + {.bitmap_index = 280325, .adv_w = 640, .box_w = 37, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 280973, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 281676, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 282361, .adv_w = 640, .box_w = 35, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 282991, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 283694, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 284360, .adv_w = 640, .box_w = 36, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 285062, .adv_w = 640, .box_w = 35, .box_h = 35, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 285675, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 286360, .adv_w = 640, .box_w = 36, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 287044, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 287729, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 288451, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 289154, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 289820, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 290486, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 291189, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 291892, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 292633, .adv_w = 640, .box_w = 36, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 293335, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 294020, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 294705, .adv_w = 640, .box_w = 35, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 295353, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 296019, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 296741, .adv_w = 640, .box_w = 37, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 297389, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 298092, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 298776, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 299479, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 300220, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 300923, .adv_w = 640, .box_w = 34, .box_h = 35, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 301518, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 302130, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 302815, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 303427, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 304111, .adv_w = 640, .box_w = 36, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 304795, .adv_w = 640, .box_w = 29, .box_h = 36, .ofs_x = 6, .ofs_y = -3}, + {.bitmap_index = 305317, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 305983, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 306649, .adv_w = 640, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 307279, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 307927, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 308630, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 309352, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 310074, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 310796, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 311481, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 312184, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 312850, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 313480, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 314183, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 314905, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 315627, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 316349, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 316995, .adv_w = 640, .box_w = 34, .box_h = 36, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 317607, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 318329, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 318994, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 319697, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 320419, .adv_w = 640, .box_w = 37, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 321067, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 321789, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 322455, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 323158, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 323880, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 324583, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 325305, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 325990, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 326656, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 327378, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 328044, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 328728, .adv_w = 640, .box_w = 38, .box_h = 35, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 329393, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 330115, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 330818, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 331503, .adv_w = 640, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 332244, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 332947, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 333669, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 334410, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 335113, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 335779, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 336482, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 337148, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 337851, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 338535, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 339238, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 339941, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 340644, .adv_w = 640, .box_w = 37, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 341329, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 342032, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 342716, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 343419, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 344122, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 344825, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 345509, .adv_w = 640, .box_w = 36, .box_h = 35, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 346139, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 346751, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 347399, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 348121, .adv_w = 640, .box_w = 39, .box_h = 37, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 348843, .adv_w = 640, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 349546, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 350212, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 350858, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 351504, .adv_w = 640, .box_w = 34, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 352150, .adv_w = 640, .box_w = 36, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 352852, .adv_w = 640, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 353555, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 354203, .adv_w = 640, .box_w = 36, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 354815, .adv_w = 640, .box_w = 36, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 355517, .adv_w = 640, .box_w = 35, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 356147, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 356813, .adv_w = 640, .box_w = 37, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 357479, .adv_w = 640, .box_w = 36, .box_h = 36, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 358127, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 358849, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 359533, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 360217, .adv_w = 640, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 360939, .adv_w = 640, .box_w = 36, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 361605, .adv_w = 640, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 362346, .adv_w = 640, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 363030, .adv_w = 640, .box_w = 40, .box_h = 41, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 363850, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 364450, .adv_w = 640, .box_w = 40, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 365170, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 365770, .adv_w = 440, .box_w = 28, .box_h = 28, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 366162, .adv_w = 640, .box_w = 40, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 366962, .adv_w = 640, .box_w = 38, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 367722, .adv_w = 720, .box_w = 45, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 368532, .adv_w = 640, .box_w = 40, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 369332, .adv_w = 720, .box_w = 45, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 370007, .adv_w = 640, .box_w = 40, .box_h = 42, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 370847, .adv_w = 320, .box_w = 20, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 371167, .adv_w = 480, .box_w = 30, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 371647, .adv_w = 720, .box_w = 45, .box_h = 38, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 372502, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 373102, .adv_w = 440, .box_w = 28, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 373662, .adv_w = 560, .box_w = 25, .box_h = 37, .ofs_x = 5, .ofs_y = -4}, + {.bitmap_index = 374125, .adv_w = 560, .box_w = 35, .box_h = 42, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 374860, .adv_w = 560, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 375490, .adv_w = 560, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 376120, .adv_w = 560, .box_w = 25, .box_h = 37, .ofs_x = 5, .ofs_y = -4}, + {.bitmap_index = 376583, .adv_w = 560, .box_w = 37, .box_h = 36, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 377249, .adv_w = 400, .box_w = 21, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 377627, .adv_w = 400, .box_w = 21, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 378005, .adv_w = 560, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 378635, .adv_w = 560, .box_w = 35, .box_h = 8, .ofs_x = 0, .ofs_y = 11}, + {.bitmap_index = 378775, .adv_w = 720, .box_w = 45, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 379450, .adv_w = 800, .box_w = 51, .box_h = 40, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 380470, .adv_w = 720, .box_w = 47, .box_h = 40, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 381410, .adv_w = 640, .box_w = 40, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 382130, .adv_w = 560, .box_w = 35, .box_h = 22, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 382515, .adv_w = 560, .box_w = 35, .box_h = 22, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 382900, .adv_w = 800, .box_w = 50, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 383700, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 384300, .adv_w = 640, .box_w = 40, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 385100, .adv_w = 640, .box_w = 41, .box_h = 41, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 385941, .adv_w = 560, .box_w = 36, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 386589, .adv_w = 560, .box_w = 35, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 387289, .adv_w = 560, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 387919, .adv_w = 560, .box_w = 35, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 388479, .adv_w = 640, .box_w = 40, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 389079, .adv_w = 400, .box_w = 27, .box_h = 40, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 389619, .adv_w = 560, .box_w = 35, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 390319, .adv_w = 560, .box_w = 35, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 391019, .adv_w = 720, .box_w = 45, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 391694, .adv_w = 640, .box_w = 42, .box_h = 42, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 392576, .adv_w = 480, .box_w = 30, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 393176, .adv_w = 800, .box_w = 50, .box_h = 37, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 394101, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 394751, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 395401, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 396051, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 396701, .adv_w = 800, .box_w = 50, .box_h = 26, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 397351, .adv_w = 800, .box_w = 51, .box_h = 32, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 398167, .adv_w = 560, .box_w = 31, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 398787, .adv_w = 560, .box_w = 35, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 399487, .adv_w = 640, .box_w = 41, .box_h = 41, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 400328, .adv_w = 800, .box_w = 50, .box_h = 30, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 401078, .adv_w = 480, .box_w = 30, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 401678, .adv_w = 644, .box_w = 41, .box_h = 26, .ofs_x = 0, .ofs_y = 2} }; /*--------------------- @@ -52042,55 +52915,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -52122,7 +52997,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -52227,7 +53102,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -52326,7 +53202,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_42.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_42.c index fc734e6e..74c47a84 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_42.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_42.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 42 px * Bpp: 4 - * Opts: --bpp 4 --size 42 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_42.c + * Opts: --bpp 4 --size 42 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_42.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -19250,6 +19250,103 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x1, 0xb1, 0x0, 0x0, 0x0, 0x0, 0x44, 0x10, 0x0, + /* U+4F53 "体" */ + 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x16, 0x66, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xde, 0x93, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xfd, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xff, 0xd0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xf5, 0x0, 0x22, 0x11, + 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x12, 0x0, 0x0, 0x0, 0x8, 0xff, + 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, + 0x0, 0x0, 0xe, 0xff, 0xf0, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x6f, 0xff, + 0xf0, 0x0, 0xba, 0x99, 0x99, 0x99, 0xff, 0xff, + 0xff, 0xff, 0xe9, 0x99, 0x99, 0x99, 0xaa, 0x0, + 0x0, 0x0, 0xef, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xff, 0xcf, 0xfe, 0xef, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x9f, + 0xfe, 0xaf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xff, 0x5f, 0xfe, 0x5f, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xfd, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x1f, + 0xfe, 0xf, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xff, 0xf5, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0xfa, 0xf, 0xfe, 0xa, 0xff, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x1d, 0xff, 0xc0, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf4, 0xf, + 0xfe, 0x4, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x3e, 0xff, 0x20, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x9, 0xff, 0xd0, 0xf, 0xfe, 0x0, 0xcf, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xe8, 0x0, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0x60, 0xf, + 0xfe, 0x0, 0x4f, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x40, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0xcf, 0xfd, 0x0, 0xf, 0xfe, 0x0, 0xb, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf0, 0x0, 0x0, 0x8, 0xff, 0xf5, 0x0, 0xf, + 0xfe, 0x0, 0x2, 0xff, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x5f, + 0xff, 0xa0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x6f, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf0, 0x0, 0x4, 0xff, 0xfe, 0x10, 0x0, 0xf, + 0xfe, 0x0, 0x0, 0xa, 0xff, 0xfa, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x4f, 0xff, + 0xf4, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, + 0xcf, 0xff, 0xd2, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf0, 0x6, 0xff, 0xff, 0x60, 0x0, 0x0, 0xf, + 0xfe, 0x0, 0x0, 0x0, 0x1d, 0xff, 0xff, 0x80, + 0x0, 0x0, 0x0, 0xff, 0xf1, 0xaf, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, + 0x1, 0xdf, 0xff, 0xe4, 0x0, 0x0, 0x0, 0xff, + 0xf6, 0xff, 0xff, 0x90, 0x3d, 0xdc, 0xcc, 0xbf, + 0xff, 0xbb, 0xbc, 0xcd, 0x20, 0x1b, 0xfe, 0x10, + 0x0, 0x0, 0x0, 0xff, 0xf0, 0x2d, 0xf8, 0x0, + 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x20, 0x0, 0x83, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf0, 0x2, 0x60, 0x0, 0x4f, 0xff, 0xee, 0xef, + 0xff, 0xee, 0xee, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xdd, + 0xd2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0x42, 0x0, 0x0, 0x0, @@ -19543,6 +19640,108 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xc9, 0x50, 0x0, + /* U+4FC4 "俄" */ + 0x0, 0x0, 0x0, 0x0, 0x11, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xc7, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7e, 0xca, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xff, 0x20, 0x0, 0x0, 0x0, 0x2, 0x93, + 0x0, 0x4f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xff, 0xfa, 0x0, 0x0, + 0x0, 0x27, 0xcf, 0xfc, 0x0, 0x3f, 0xfd, 0x0, + 0x4, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xf2, 0x1, 0x58, 0xbe, 0xff, 0xff, 0xff, + 0x70, 0x3f, 0xfc, 0x1, 0xaf, 0xf3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xff, 0xb0, 0x3, 0xff, + 0xff, 0xff, 0xfd, 0xa7, 0x40, 0x2f, 0xfc, 0x1, + 0xef, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xff, 0x50, 0x0, 0xbf, 0xff, 0xff, 0xb0, 0x0, + 0x0, 0x2f, 0xfc, 0x0, 0x5f, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0xfe, 0x0, 0x0, 0x37, + 0x31, 0xff, 0xb0, 0x0, 0x0, 0x2f, 0xfc, 0x0, + 0xb, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xb0, 0x0, + 0x0, 0x2f, 0xfc, 0x0, 0x3, 0xff, 0xf6, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xf3, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xb0, 0x0, 0x0, 0x1f, 0xfc, 0x0, + 0x0, 0xbc, 0x40, 0x0, 0x0, 0x0, 0x2f, 0xff, + 0xf3, 0x0, 0x0, 0x0, 0x1, 0xff, 0xb0, 0x0, + 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x10, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0xff, 0xf3, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xb0, 0x0, 0x0, 0xf, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, + 0xf3, 0x0, 0x5a, 0xa9, 0x99, 0xff, 0xd9, 0x99, + 0x99, 0x9f, 0xfe, 0x99, 0x99, 0x99, 0xaa, 0x70, + 0x0, 0xd, 0xff, 0xff, 0xf3, 0x0, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa0, 0x0, 0x9f, 0xfe, 0xcf, + 0xf3, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, + 0x5, 0xff, 0xf6, 0xcf, 0xf3, 0x0, 0x12, 0x11, + 0x1, 0xff, 0xb0, 0x0, 0x0, 0xf, 0xfd, 0x0, + 0x0, 0x11, 0x12, 0x20, 0x1f, 0xff, 0xd0, 0xcf, + 0xf3, 0x0, 0x0, 0x0, 0x1, 0xff, 0xb0, 0x0, + 0x0, 0xe, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xcf, 0x30, 0xcf, 0xf3, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xb0, 0x0, 0x0, 0xd, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0xcf, + 0xf3, 0x0, 0x0, 0x0, 0x1, 0xff, 0xb0, 0x0, + 0x0, 0xb, 0xff, 0x10, 0x0, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xf3, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xb0, 0x0, 0x10, 0x9, 0xff, 0x40, + 0x1, 0xfc, 0x30, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xf3, 0x0, 0x0, 0x0, 0x1, 0xff, 0xb1, 0x6c, + 0xc0, 0x7, 0xff, 0x60, 0x8, 0xff, 0xf5, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xf3, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xff, 0xff, 0xd0, 0x5, 0xff, 0x90, + 0xe, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xf3, 0x0, 0x0, 0x3, 0x8d, 0xff, 0xff, 0xff, + 0xc0, 0x2, 0xff, 0xb0, 0x8f, 0xfe, 0x10, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xf3, 0x4, 0x7b, 0xef, + 0xff, 0xff, 0xfb, 0x62, 0x0, 0x0, 0xff, 0xf2, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xf3, 0xb, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0xbf, 0xfc, 0xff, 0x90, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xf3, 0x2, 0xff, 0xfd, + 0x84, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x7f, 0xff, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xf3, 0x0, 0xca, 0x30, 0x1, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x3f, 0xff, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xf3, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x7f, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xf3, 0x0, 0x0, 0x0, 0x1, 0xff, 0xb0, 0x0, + 0x0, 0x6, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xf3, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xb0, 0x0, 0x0, 0x7f, 0xff, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xf3, 0x0, 0x0, 0x0, 0x1, 0xff, 0xb0, 0x0, + 0xa, 0xff, 0xfb, 0xef, 0xf6, 0x0, 0x57, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xf3, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xb0, 0x5, 0xef, 0xff, 0xb0, 0x7f, + 0xfe, 0x0, 0x7f, 0xe6, 0x0, 0x0, 0x0, 0xcf, + 0xf3, 0x0, 0x0, 0x0, 0x3, 0xff, 0xb0, 0x5f, + 0xff, 0xfa, 0x0, 0xd, 0xff, 0x90, 0xaf, 0xf8, + 0x0, 0x0, 0x0, 0xcf, 0xf3, 0x0, 0x2, 0x55, + 0x6c, 0xff, 0xa0, 0x7, 0xff, 0x80, 0x0, 0x4, + 0xff, 0xf9, 0xef, 0xf3, 0x0, 0x0, 0x0, 0xcf, + 0xf4, 0x0, 0x2, 0xff, 0xff, 0xff, 0x70, 0x0, + 0xa5, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0xdf, 0xf5, 0x0, 0x0, 0xcf, + 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0xdf, + 0xf6, 0x0, 0x0, 0x7f, 0xff, 0xb4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xdf, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xf7, 0x0, 0x0, 0x26, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9, 0xb2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4FDD "保" */ 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -29419,6 +29618,106 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0xef, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0x60, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0x31, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x55, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, + 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xef, 0xc3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x4, 0x33, + 0x22, 0x22, 0x22, 0x2f, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x11, 0x0, 0x0, 0x0, 0x0, 0xdf, + 0xff, 0x20, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x0, + 0x0, 0x0, 0x9, 0xff, 0xf5, 0x0, 0x1f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x5f, 0xff, + 0x90, 0x0, 0xa, 0x98, 0x88, 0x77, 0x77, 0xbf, + 0xfd, 0x77, 0x77, 0x77, 0x88, 0x88, 0x98, 0x0, + 0x0, 0x2, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xff, 0xe1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0xff, 0x30, 0x2, 0xb1, 0x0, 0x45, + 0x55, 0x55, 0x55, 0xef, 0xf8, 0x55, 0x55, 0x55, + 0x55, 0x55, 0x10, 0x0, 0x5, 0xff, 0xf6, 0x0, + 0xa, 0xff, 0x80, 0xbf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, + 0x0, 0x9f, 0x90, 0x0, 0x3f, 0xff, 0x80, 0xbf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x20, 0x0, 0x0, 0x7, 0x0, 0x0, + 0xdf, 0xfc, 0x0, 0xaf, 0xf3, 0x0, 0x3f, 0xf9, + 0x0, 0x2f, 0xfa, 0x0, 0xb, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xff, 0xe1, 0x0, 0xaf, + 0xf3, 0x0, 0x3f, 0xf9, 0x0, 0x2f, 0xfa, 0x0, + 0xb, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xff, 0x50, 0x0, 0x9f, 0xf3, 0x0, 0x3f, 0xf9, + 0x0, 0x2f, 0xfa, 0x0, 0xb, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xfa, 0x0, 0x0, 0xaf, + 0xf3, 0x0, 0x3f, 0xf9, 0x0, 0x2f, 0xfa, 0x0, + 0xb, 0xff, 0x10, 0x0, 0x0, 0x0, 0x9, 0xff, + 0xf1, 0x0, 0x0, 0xaf, 0xf3, 0x11, 0x4f, 0xf9, + 0x11, 0x2f, 0xfa, 0x11, 0x1c, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x6f, 0xff, 0xe0, 0x0, 0x0, 0xbf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x20, 0x0, 0x0, 0x4, 0xff, 0xff, + 0xe0, 0x0, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, + 0x0, 0x3f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x46, + 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, + 0x66, 0x66, 0x10, 0x0, 0x4, 0xff, 0xfc, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xff, 0xe1, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0x30, 0xff, + 0xe0, 0x0, 0x1c, 0xcc, 0xbb, 0xba, 0xaa, 0xaa, + 0xaa, 0xaa, 0xaa, 0xaa, 0xbb, 0xbc, 0xcc, 0x0, + 0x1, 0xf5, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x0, 0x0, 0x20, 0x0, 0xff, + 0xe0, 0x0, 0x1f, 0xee, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xef, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xcf, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x2, 0x83, + 0x0, 0x49, 0x95, 0x9, 0xff, 0xe1, 0x0, 0x0, + 0x0, 0x47, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xe0, 0x0, 0x7, 0xff, 0xa0, 0x7f, 0xf9, 0x0, + 0xef, 0xf9, 0x0, 0x0, 0x8, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0xc, 0xff, + 0x60, 0x6f, 0xf8, 0x0, 0x4f, 0xff, 0x30, 0x0, + 0xc, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xe0, 0x0, 0x2f, 0xff, 0x0, 0x6f, 0xf7, 0x0, + 0xb, 0xfa, 0x10, 0x0, 0x1, 0xef, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x8f, 0xfa, + 0x0, 0x5f, 0xf7, 0x0, 0x3, 0x40, 0x0, 0x76, + 0x0, 0x4f, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, + 0xf0, 0x0, 0xef, 0xf4, 0x0, 0x5f, 0xf7, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xe8, 0x9, 0xff, 0xf1, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x5, 0xff, 0xe0, + 0x0, 0x4f, 0xfa, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xf9, 0x1, 0xee, 0x40, 0x0, 0x0, 0x1, 0xff, + 0xf0, 0x4, 0xbf, 0x90, 0x0, 0x2f, 0xff, 0xb8, + 0x88, 0x88, 0x9d, 0xff, 0xf2, 0x0, 0x41, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x2, 0x20, + 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xbe, 0xff, + 0xff, 0xff, 0xfe, 0xc7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xff, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -38081,6 +38380,96 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x32, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x0, + /* U+7259 "牙" */ + 0x0, 0x1, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x10, 0x0, 0x0, 0x7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, + 0x0, 0x0, 0x6, 0xed, 0xdc, 0xcc, 0xcc, 0xcc, + 0xcc, 0xcc, 0xcc, 0xcc, 0xcf, 0xff, 0xdc, 0xcc, + 0xcd, 0xde, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xb5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, + 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xea, 0xaa, + 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaf, 0xff, 0xca, + 0xaa, 0xaa, 0xaa, 0xbb, 0xc6, 0x0, 0x0, 0x8f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0x0, 0x0, 0x8, 0x84, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x1e, 0xff, 0xae, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, + 0xff, 0x2e, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xff, 0xf9, 0xe, 0xff, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xe1, 0xe, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, + 0xff, 0x60, 0xe, 0xff, 0x50, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xff, 0xfb, 0x0, 0xe, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xd1, 0x0, + 0xe, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xfe, 0x20, 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5f, 0xff, 0xf4, 0x0, 0x0, 0xe, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0x40, 0x0, + 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xbf, 0xff, + 0xf4, 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6e, 0xff, 0xfe, 0x30, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3b, 0xff, 0xff, 0xc1, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1a, 0xff, 0xff, 0xf7, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x29, 0xff, + 0xff, 0xfd, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2c, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xa1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x79, 0xbe, 0xff, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, + 0xc3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xff, 0xff, 0xe4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xca, 0x73, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+72B6 "状" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x33, 0x32, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -38469,6 +38858,103 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xdb, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xff, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x22, 0x11, 0x0, 0x1, 0x11, 0x22, 0x0, + 0x0, 0x0, 0xe, 0xff, 0x28, 0x76, 0x66, 0x66, + 0x66, 0x66, 0x77, 0x50, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0xe, 0xff, + 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, + 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, + 0x0, 0x0, 0xe, 0xff, 0x2f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb0, 0x0, 0xba, 0xa9, 0xaf, + 0xfe, 0x99, 0xab, 0x10, 0x0, 0x0, 0xd, 0xff, + 0x3, 0x22, 0x11, 0xdf, 0xf3, 0x11, 0x23, 0x20, + 0x0, 0x0, 0x0, 0x3f, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xff, 0x0, 0x0, 0x0, 0xdf, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, + 0x0, 0x0, 0x0, 0xdf, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xfb, 0x0, 0x0, 0x3, + 0x44, 0x10, 0xd, 0xff, 0x0, 0x0, 0x0, 0xdf, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xfb, 0x0, 0x0, 0xb, 0xff, 0x30, 0xd, 0xff, + 0x0, 0x0, 0x0, 0xdf, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xfb, 0x0, 0x0, 0xb, + 0xff, 0x30, 0xd, 0xff, 0x0, 0x0, 0x0, 0xdf, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xfb, 0x0, 0x0, 0xb, 0xff, 0x20, 0xd, 0xfe, + 0x0, 0x0, 0x0, 0xdf, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xfb, 0x0, 0x0, 0xb, + 0xff, 0x20, 0xe, 0xfe, 0x0, 0x0, 0x0, 0xdf, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xfb, 0x0, 0x0, 0xc, 0xff, 0x20, 0xe, 0xfd, + 0x0, 0x0, 0x0, 0xdf, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xfb, 0x0, 0x0, 0xc, + 0xff, 0x10, 0xf, 0xfd, 0x0, 0x0, 0x0, 0xdf, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x5b, 0xa9, 0xaf, + 0xfe, 0x99, 0xa7, 0xd, 0xff, 0x0, 0xf, 0xfc, + 0xa, 0xa9, 0x99, 0xef, 0xfa, 0x99, 0xa9, 0x0, + 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xe, + 0xff, 0x0, 0xf, 0xfb, 0xe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x0, 0x0, 0x8f, 0xff, 0xff, + 0xff, 0xff, 0xfa, 0xf, 0xfe, 0x0, 0x2f, 0xfa, + 0xe, 0xff, 0xee, 0xff, 0xfe, 0xef, 0xfe, 0x0, + 0x0, 0x12, 0x11, 0x4f, 0xfb, 0x11, 0x21, 0xf, + 0xfd, 0x0, 0x4f, 0xf9, 0x0, 0x0, 0x0, 0xdf, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xfb, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x6f, 0xf7, + 0x0, 0x0, 0x0, 0xdf, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9f, 0xf5, 0x0, 0x0, 0x0, 0xdf, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xf2, + 0x0, 0x0, 0x0, 0xdf, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xdf, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0xdf, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x9, 0xff, 0x70, 0x0, 0x0, 0x0, 0xdf, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x20, + 0x0, 0x0, 0x0, 0xdf, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xfb, 0x0, 0x17, 0x60, + 0x0, 0x6f, 0xfd, 0x0, 0x0, 0x0, 0x0, 0xdf, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xfb, 0x39, 0xff, 0xb0, 0x0, 0xdf, 0xf7, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xd0, + 0x6, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0xdf, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x27, 0xdf, + 0xff, 0xff, 0xc6, 0x0, 0x1e, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xf2, 0x0, 0x0, 0x0, + 0x2, 0x7c, 0xff, 0xff, 0xff, 0x93, 0x0, 0x0, + 0xbf, 0xfe, 0x0, 0x1, 0x0, 0x0, 0x0, 0xdf, + 0xf2, 0x0, 0x0, 0x10, 0xd, 0xff, 0xff, 0xfe, + 0x70, 0x0, 0x0, 0x9, 0xff, 0xf5, 0x0, 0xb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, + 0x4, 0xff, 0xfd, 0x50, 0x0, 0x0, 0x0, 0x8f, + 0xff, 0x90, 0x0, 0xb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf5, 0x0, 0xcb, 0x40, 0x0, + 0x0, 0x0, 0x9, 0xff, 0xfd, 0x0, 0x0, 0x7, + 0xa9, 0x98, 0x88, 0x88, 0x88, 0x88, 0x89, 0xa3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xdf, + 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7406 "理" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xce, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, @@ -41117,6 +41603,103 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x0, 0x0, 0x0, 0x21, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdd, + 0x72, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xd0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0xff, 0x98, 0x88, 0x88, 0x89, 0xa3, 0x0, 0xf, + 0xff, 0x73, 0x33, 0x33, 0x33, 0x34, 0x51, 0x0, + 0x0, 0x1, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf5, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0x0, 0x0, 0xb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf5, 0x1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0xaf, + 0xff, 0x30, 0x5f, 0xfb, 0x0, 0x0, 0x10, 0xc, + 0xff, 0xb4, 0x44, 0xef, 0xf6, 0x44, 0x55, 0x61, + 0x0, 0xa, 0xff, 0xf4, 0x0, 0xc, 0xff, 0x40, + 0x0, 0x0, 0x9f, 0xfe, 0x10, 0x0, 0x8f, 0xf9, + 0x0, 0x0, 0x0, 0x1, 0xcf, 0xff, 0x50, 0x0, + 0x3, 0xff, 0xd0, 0x0, 0x7, 0xff, 0xf4, 0x0, + 0x0, 0x2f, 0xff, 0x10, 0x0, 0x0, 0x1e, 0xff, + 0xf6, 0x0, 0x0, 0x0, 0xbf, 0xf6, 0x0, 0x7f, + 0xff, 0x70, 0x0, 0x0, 0xc, 0xff, 0x80, 0x0, + 0x0, 0x3, 0xef, 0x60, 0x0, 0x32, 0x0, 0x3f, + 0xa2, 0x0, 0x8f, 0xfa, 0x0, 0x0, 0x0, 0x7, + 0xfa, 0x40, 0x0, 0x0, 0x0, 0x25, 0x0, 0x3, + 0xee, 0x10, 0x2, 0x0, 0x0, 0x2, 0x90, 0x0, + 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xff, 0xc0, 0x0, 0x2, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfb, + 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0x90, 0x3f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x77, 0x70, 0xa, 0xff, 0xd1, 0x19, + 0x98, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, + 0xff, 0xb0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x1, + 0xea, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xff, 0xa0, 0x0, 0x0, 0x0, + 0xff, 0xf0, 0x0, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xa0, + 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1, 0x66, + 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x10, 0x0, + 0x2, 0xff, 0xa0, 0x0, 0x0, 0x0, 0xef, 0xe0, + 0x0, 0x2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x20, 0x0, 0x2, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0xef, 0xe0, 0x0, 0x1, 0xff, 0xfe, 0xee, + 0xee, 0xee, 0xef, 0xff, 0x10, 0x0, 0x2, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0xef, 0xe0, 0x0, 0x0, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0xb, 0xff, 0x10, + 0x0, 0x2, 0xff, 0xa0, 0x0, 0x0, 0x0, 0xef, + 0xe0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0xb, 0xff, 0x10, 0x0, 0x2, 0xff, 0xa0, 0x0, + 0x0, 0x0, 0xef, 0xe0, 0x0, 0x0, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0xb, 0xff, 0x10, 0x0, 0x2, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0xef, 0xe0, 0x0, + 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x10, 0x0, 0x2, 0xff, 0xa0, 0x0, 0x0, 0x0, + 0xef, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x10, 0x0, 0x2, 0xff, 0xa0, + 0x0, 0x0, 0x0, 0xef, 0xe0, 0x0, 0x0, 0xff, + 0xd7, 0x77, 0x77, 0x77, 0x7d, 0xff, 0x10, 0x0, + 0x2, 0xff, 0xa0, 0x0, 0x0, 0x0, 0xef, 0xe0, + 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xb, + 0xff, 0x10, 0x0, 0x2, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0xef, 0xe0, 0x0, 0x0, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0xb, 0xff, 0x10, 0x0, 0x2, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0xef, 0xe0, 0x0, 0x0, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0xb, 0xff, 0x10, + 0x0, 0x2, 0xff, 0xa0, 0x0, 0x0, 0x0, 0xef, + 0xe0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x10, 0x0, 0x2, 0xff, 0xa0, 0x0, + 0x0, 0x0, 0xef, 0xe0, 0x0, 0x2, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x2, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0xef, 0xe0, 0x0, + 0x1, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x10, 0x0, 0x2, 0xff, 0xa0, 0x0, 0x0, 0x0, + 0xef, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xa0, + 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x55, + 0x6c, 0xff, 0x90, 0x0, 0x0, 0x0, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xc9, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x77, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -42997,6 +43580,96 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xcc, 0xcc, 0xcc, 0xcb, 0xa7, 0x10, 0x0, 0x0, 0x0, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0x88, 0x10, + 0x0, 0x0, 0x0, 0x1, 0x88, 0x81, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xff, 0xfe, 0xee, 0xee, 0xef, + 0xff, 0xee, 0xee, 0xee, 0xee, 0xee, 0xff, 0xfe, + 0xee, 0xee, 0xef, 0xff, 0xf0, 0x3f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, + 0xff, 0xee, 0xee, 0xee, 0xef, 0xff, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xff, 0xfe, 0xee, 0xee, 0xef, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x6b, + 0x97, 0x30, 0xf, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2a, 0xaa, + 0x0, 0x7, 0xff, 0xf5, 0x0, 0xaa, 0xa2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0xff, 0xcc, 0xcc, 0xcc, + 0xcd, 0xff, 0xfc, 0xcc, 0xcc, 0xcc, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x5f, 0xfb, 0x0, 0x0, 0x0, + 0xe, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x6, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0xef, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x6f, 0xfa, 0x0, 0x0, 0x0, 0xe, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, + 0x0, 0x0, 0x6, 0xff, 0x90, 0x0, 0x0, 0x0, + 0xef, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, + 0x0, 0x0, 0xe, 0xff, 0x10, 0x0, 0x0, 0x1, + 0x10, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x8, + 0xff, 0x70, 0x0, 0x0, 0x0, 0xef, 0xf1, 0x0, + 0x1, 0x15, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x5f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd3, 0xcb, + 0xba, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xac, 0xff, + 0xff, 0xff, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, + 0xba, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xdf, 0xfe, 0xff, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0xff, 0x38, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0x80, + 0xc, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0xff, 0xb0, 0x0, 0x1d, 0xff, 0xf5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xff, 0xd1, 0x0, 0x0, 0x1e, 0xff, + 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xcf, 0xff, 0xd1, 0x0, 0x0, + 0x0, 0x1d, 0xff, 0xfd, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2a, 0xff, 0xff, 0xc1, + 0x0, 0x0, 0x0, 0x0, 0x1b, 0xff, 0xff, 0xb3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xbf, 0xff, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xff, 0xfc, 0x61, 0x0, 0x0, 0x47, 0xbf, + 0xff, 0xff, 0xfc, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xcf, 0xff, 0xff, 0xfc, 0x70, + 0x2e, 0xff, 0xff, 0xff, 0xc4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6e, 0xff, + 0xff, 0xd1, 0x0, 0x1e, 0xff, 0xfa, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xdf, 0xf3, 0x0, 0x0, 0x3c, 0x71, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x46, 0x0, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xbb, 0xa0, 0x0, 0x0, 0x0, 0xd, 0xdd, 0x50, 0x0, 0x0, @@ -43780,6 +44453,94 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x33, 0x0, + /* U+897F "西" */ + 0x15, 0x43, 0x33, 0x22, 0x22, 0x22, 0x22, 0x22, + 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, + 0x33, 0x34, 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf9, 0x4f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x91, + 0x66, 0x55, 0x44, 0x44, 0x44, 0x44, 0xbf, 0xf6, + 0x44, 0x44, 0xcf, 0xf5, 0x44, 0x44, 0x44, 0x44, + 0x45, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa, 0xff, 0x20, 0x0, 0xb, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xaf, 0xf2, 0x0, 0x0, 0xbf, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0x20, + 0x0, 0xb, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xaf, 0xf2, 0x0, 0x0, 0xbf, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0x20, 0x0, 0xb, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf2, 0x0, + 0x0, 0xbf, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, + 0xcf, 0xfb, 0xaa, 0xaa, 0xad, 0xff, 0xba, 0xaa, + 0xae, 0xff, 0xaa, 0xaa, 0xaa, 0xdf, 0xf3, 0x0, + 0x0, 0x0, 0xb, 0xff, 0x40, 0x0, 0x0, 0xbf, + 0xf1, 0x0, 0x0, 0xbf, 0xf1, 0x0, 0x0, 0xa, + 0xff, 0x30, 0x0, 0x0, 0x0, 0xbf, 0xf4, 0x0, + 0x0, 0xc, 0xff, 0x0, 0x0, 0xb, 0xff, 0x10, + 0x0, 0x0, 0xaf, 0xf2, 0x0, 0x0, 0x0, 0xa, + 0xff, 0x40, 0x0, 0x0, 0xff, 0xd0, 0x0, 0x0, + 0xbf, 0xf1, 0x0, 0x0, 0xa, 0xff, 0x20, 0x0, + 0x0, 0x0, 0xaf, 0xf4, 0x0, 0x0, 0x2f, 0xfb, + 0x0, 0x0, 0xb, 0xff, 0x10, 0x0, 0x0, 0xaf, + 0xf2, 0x0, 0x0, 0x0, 0xa, 0xff, 0x40, 0x0, + 0x6, 0xff, 0x80, 0x0, 0x0, 0xbf, 0xf1, 0x0, + 0x0, 0xa, 0xff, 0x20, 0x0, 0x0, 0x0, 0xaf, + 0xf4, 0x0, 0x0, 0xbf, 0xf4, 0x0, 0x0, 0xb, + 0xff, 0x10, 0x0, 0x0, 0xaf, 0xf2, 0x0, 0x0, + 0x0, 0xa, 0xff, 0x40, 0x0, 0x2f, 0xff, 0x0, + 0x0, 0x0, 0xbf, 0xf0, 0x0, 0x0, 0xa, 0xff, + 0x20, 0x0, 0x0, 0x0, 0xaf, 0xf4, 0x0, 0xa, + 0xff, 0x90, 0x0, 0x0, 0xb, 0xff, 0x10, 0x0, + 0x0, 0xaf, 0xf2, 0x0, 0x0, 0x0, 0xa, 0xff, + 0x40, 0x4, 0xff, 0xf2, 0x0, 0x0, 0x0, 0xbf, + 0xfc, 0x89, 0xab, 0x6a, 0xff, 0x20, 0x0, 0x0, + 0x0, 0xaf, 0xf4, 0x2, 0xef, 0xfa, 0x0, 0x0, + 0x0, 0x9, 0xff, 0xff, 0xff, 0xf6, 0xaf, 0xf2, + 0x0, 0x0, 0x0, 0xa, 0xff, 0x42, 0xdf, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, + 0x3a, 0xff, 0x20, 0x0, 0x0, 0x0, 0xaf, 0xf4, + 0x6f, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x38, + 0xab, 0xba, 0xa1, 0xaf, 0xf2, 0x0, 0x0, 0x0, + 0xa, 0xff, 0x40, 0x1d, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0x20, + 0x0, 0x0, 0x0, 0xaf, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xaf, 0xf2, 0x0, 0x0, 0x0, 0xa, 0xff, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0x20, 0x0, 0x0, 0x0, + 0xaf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf2, 0x0, + 0x0, 0x0, 0xa, 0xff, 0x62, 0x22, 0x22, 0x22, + 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x2a, + 0xff, 0x20, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, 0xb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, + 0x0, 0x0, 0xbf, 0xf8, 0x55, 0x55, 0x55, 0x55, + 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0xbf, + 0xf3, 0x0, 0x0, 0x0, 0xb, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa, 0xff, 0x30, 0x0, 0x0, 0x0, 0xcf, + 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf4, 0x0, 0x0, + 0x0, 0xc, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x22, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8981 "要" */ 0x7, 0xcc, 0xbb, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, @@ -44275,6 +45036,96 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x52, 0x0, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x48, 0xea, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x22, 0x11, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x11, 0x12, 0x20, 0xef, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xef, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, + 0xab, 0xa9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0xaa, 0xb2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3b, 0xa9, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0xab, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xfe, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0x21, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x11, 0x22, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x48, 0x77, 0x76, 0x66, + 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x77, + 0x88, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x98, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x8e, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xff, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0x70, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xa9, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9e, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xff, 0x90, 0x0, 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x0, 0x2, 0x44, 0x30, 0x0, 0x4, 0x44, 0x0, 0x0, 0x0, 0x0, 0x56, 0x0, 0x0, @@ -45262,6 +46113,106 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, 0x0, 0x0, + /* U+8BED "语" */ + 0x0, 0x0, 0x3, 0x70, 0x0, 0x0, 0x0, 0x43, + 0x32, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, + 0x22, 0x33, 0x44, 0x0, 0x0, 0x0, 0x4f, 0xf6, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x0, + 0x0, 0x0, 0xbf, 0xff, 0x40, 0x0, 0x0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0, 0xd, 0xff, + 0xf3, 0x0, 0x0, 0x44, 0x33, 0x32, 0x22, 0x2f, + 0xff, 0x62, 0x22, 0x22, 0x23, 0x33, 0x44, 0x0, + 0x0, 0x0, 0x1, 0xef, 0xfe, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xff, 0x40, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6f, 0xfc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x92, 0x0, 0x0, 0x4, 0x65, 0x55, 0x44, 0xaf, + 0xfa, 0x11, 0x11, 0x11, 0x11, 0x11, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0x65, 0x44, 0x39, 0xff, 0xe6, 0x66, 0x66, 0x66, + 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0xff, 0xf5, 0x0, 0x0, + 0x4f, 0xfe, 0xee, 0xee, 0xee, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xff, 0x70, 0x0, 0x0, 0x3, + 0xff, 0xf3, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x40, 0x0, 0x0, 0x5, 0xff, 0xf1, 0x0, 0x0, + 0x4f, 0xff, 0xee, 0xef, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0xff, 0x10, 0x0, 0x0, 0x8, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xfd, + 0x0, 0x0, 0x0, 0xa, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x3, 0x21, + 0x11, 0x0, 0xaf, 0xfa, 0x0, 0x0, 0x0, 0xd, + 0xff, 0xc1, 0x12, 0x22, 0x0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x1f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0x9, 0x88, 0x77, 0x66, 0x66, 0x66, + 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x67, 0x85, + 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0x0, 0x0, 0xc, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, + 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0xb3, 0x0, 0xd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x6, 0xfd, 0x0, + 0xd, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xfe, 0x3f, 0xff, 0x90, 0xd, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xff, 0xef, 0xff, 0x50, + 0xd, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xff, 0xff, 0xf5, 0x0, 0xd, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0x60, 0x0, + 0xd, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, + 0xff, 0xf8, 0x0, 0x0, 0xd, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xef, 0xff, 0xa0, 0x0, 0x0, + 0xd, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, + 0xfd, 0x0, 0x0, 0x0, 0xd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x1c, 0xff, 0xf2, 0x0, 0x0, 0x0, + 0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, + 0x70, 0x0, 0x0, 0x0, 0xe, 0xff, 0xba, 0xaa, + 0xaa, 0xaa, 0xaa, 0xaa, 0xbf, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, + 0xe, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x22, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + /* U+8BF7 "请" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf5, 0x0, 0x0, @@ -56579,392 +57530,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 144623, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, {.bitmap_index = 145423, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 146183, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 146963, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 147743, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 148504, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 149245, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 150025, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 150766, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 151566, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 152346, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 153087, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 153887, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 154647, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 155427, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 156111, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 156852, .adv_w = 672, .box_w = 36, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 157554, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 158314, .adv_w = 672, .box_w = 37, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 159017, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 159758, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 160518, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 161318, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 162079, .adv_w = 672, .box_w = 33, .box_h = 38, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 162706, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 163466, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 164227, .adv_w = 672, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 164912, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 165653, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 166413, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 167174, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 167915, .adv_w = 672, .box_w = 37, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 168655, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 169396, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 170176, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 170917, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 171678, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 172458, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 173218, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 173959, .adv_w = 672, .box_w = 37, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 174681, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 175422, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 176144, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 176866, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 177627, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 178368, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 179071, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 179812, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 180534, .adv_w = 672, .box_w = 36, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 181218, .adv_w = 672, .box_w = 35, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 181918, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 182659, .adv_w = 672, .box_w = 36, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 183361, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 184122, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 184825, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 185566, .adv_w = 672, .box_w = 34, .box_h = 35, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 186161, .adv_w = 672, .box_w = 36, .box_h = 37, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 186827, .adv_w = 672, .box_w = 35, .box_h = 37, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 187475, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 188236, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 188977, .adv_w = 672, .box_w = 40, .box_h = 36, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 189697, .adv_w = 672, .box_w = 40, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 190437, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 191140, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 191920, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 146963, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 147723, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 148503, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 149264, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 150005, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 150805, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 151585, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 152326, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 153126, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 153906, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 154647, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 155447, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 156207, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 156987, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 157671, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 158412, .adv_w = 672, .box_w = 36, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 159114, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 159874, .adv_w = 672, .box_w = 37, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 160577, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 161318, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 162078, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 162878, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 163639, .adv_w = 672, .box_w = 33, .box_h = 38, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 164266, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 165026, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 165787, .adv_w = 672, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 166472, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 167213, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 167973, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 168734, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 169475, .adv_w = 672, .box_w = 37, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 170215, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 170956, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 171736, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 172477, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 173238, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 174018, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 174778, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 175519, .adv_w = 672, .box_w = 37, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 176241, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 176982, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 177704, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 178426, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 179187, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 179928, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 180631, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 181372, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 182094, .adv_w = 672, .box_w = 36, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 182778, .adv_w = 672, .box_w = 35, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 183478, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 184219, .adv_w = 672, .box_w = 36, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 184921, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 185682, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 186385, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 187126, .adv_w = 672, .box_w = 34, .box_h = 35, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 187721, .adv_w = 672, .box_w = 36, .box_h = 37, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 188387, .adv_w = 672, .box_w = 35, .box_h = 37, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 189035, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 189796, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 190537, .adv_w = 672, .box_w = 40, .box_h = 36, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 191257, .adv_w = 672, .box_w = 40, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 191997, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, {.bitmap_index = 192700, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 193480, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 194241, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 194961, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 195702, .adv_w = 672, .box_w = 40, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 196442, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 197203, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 197944, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 198724, .adv_w = 672, .box_w = 37, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 199446, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 200187, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 200967, .adv_w = 672, .box_w = 37, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 201707, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 202468, .adv_w = 672, .box_w = 35, .box_h = 38, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 203133, .adv_w = 672, .box_w = 37, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 203855, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 204635, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 205396, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 206196, .adv_w = 672, .box_w = 38, .box_h = 41, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 206975, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 207775, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 208555, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 209316, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 210096, .adv_w = 672, .box_w = 36, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 210780, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 211502, .adv_w = 672, .box_w = 37, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 212224, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 213024, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 213746, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 214468, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 215190, .adv_w = 672, .box_w = 36, .box_h = 36, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 215838, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 216599, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 217321, .adv_w = 672, .box_w = 37, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 218043, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 218746, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 219506, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 220306, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 221066, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 221846, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 222549, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 223310, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 224051, .adv_w = 672, .box_w = 34, .box_h = 38, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 224697, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 225438, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 226218, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 226979, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 227779, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 228559, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 229300, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 230022, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 230763, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 231543, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 232343, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 233103, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 233863, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 234585, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 235345, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 236086, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 236866, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 237666, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 238407, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 239167, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 239967, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 240767, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 241547, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 193480, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 194260, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 195040, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 195801, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 196521, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 197262, .adv_w = 672, .box_w = 40, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 198002, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 198763, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 199504, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 200284, .adv_w = 672, .box_w = 37, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 201006, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 201747, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 202527, .adv_w = 672, .box_w = 37, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 203267, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 204028, .adv_w = 672, .box_w = 35, .box_h = 38, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 204693, .adv_w = 672, .box_w = 37, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 205415, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 206195, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 206956, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 207756, .adv_w = 672, .box_w = 38, .box_h = 41, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 208535, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 209335, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 210115, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 210876, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 211656, .adv_w = 672, .box_w = 36, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 212340, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 213062, .adv_w = 672, .box_w = 37, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 213784, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 214584, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 215306, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 216028, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 216750, .adv_w = 672, .box_w = 36, .box_h = 36, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 217398, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 218159, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 218881, .adv_w = 672, .box_w = 37, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 219603, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 220306, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 221066, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 221866, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 222626, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 223406, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 224109, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 224870, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 225611, .adv_w = 672, .box_w = 34, .box_h = 38, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 226257, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 226998, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 227778, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 228558, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 229319, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 230119, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 230899, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 231640, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 232362, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 233103, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 233883, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 234683, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 235443, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 236203, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 236925, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 237685, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 238426, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 239206, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 240006, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 240747, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 241507, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, {.bitmap_index = 242307, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 243107, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 243887, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 244687, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 245467, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 246228, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 247028, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 247789, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 248569, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 249330, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 250130, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 250910, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 251613, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 252374, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 253174, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 253974, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 254715, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 255475, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 256255, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 257035, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 257835, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 258538, .adv_w = 672, .box_w = 28, .box_h = 37, .ofs_x = 8, .ofs_y = -4}, - {.bitmap_index = 259056, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 259797, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 260481, .adv_w = 672, .box_w = 35, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 261164, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 261867, .adv_w = 672, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 262570, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 263350, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 264111, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 264891, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 265652, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 266432, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 267232, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 267935, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 268695, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 269417, .adv_w = 672, .box_w = 41, .box_h = 38, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 270196, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 270996, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 271776, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 272556, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 243107, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 243887, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 244647, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 245447, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 246227, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 247027, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 247807, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 248568, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 249368, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 250129, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 250909, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 251670, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 252470, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 253250, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 253953, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 254714, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 255514, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 256314, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 257055, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 257815, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 258595, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 259375, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 260175, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 260878, .adv_w = 672, .box_w = 28, .box_h = 37, .ofs_x = 8, .ofs_y = -4}, + {.bitmap_index = 261396, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 262137, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 262821, .adv_w = 672, .box_w = 35, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 263504, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 264207, .adv_w = 672, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 264910, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 265690, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 266451, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 267231, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 267992, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 268772, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 269572, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 270275, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 271035, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 271757, .adv_w = 672, .box_w = 41, .box_h = 38, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 272536, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, {.bitmap_index = 273336, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 274116, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 274916, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 275677, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 276477, .adv_w = 672, .box_w = 37, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 277106, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 277828, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 278589, .adv_w = 672, .box_w = 37, .box_h = 37, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 279274, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 280015, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 280775, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 281497, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 282258, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 283038, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 283799, .adv_w = 672, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 284599, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 285321, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 286121, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 286862, .adv_w = 672, .box_w = 40, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 287602, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 288382, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 289182, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 289962, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 290723, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 291464, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 292264, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 293044, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 293824, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 294604, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 295365, .adv_w = 672, .box_w = 40, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 296105, .adv_w = 672, .box_w = 40, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 296845, .adv_w = 672, .box_w = 40, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 297585, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 298269, .adv_w = 672, .box_w = 35, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 298917, .adv_w = 672, .box_w = 37, .box_h = 38, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 299620, .adv_w = 672, .box_w = 36, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 300268, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 301029, .adv_w = 672, .box_w = 37, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 301751, .adv_w = 672, .box_w = 36, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 302453, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 303233, .adv_w = 672, .box_w = 30, .box_h = 37, .ofs_x = 6, .ofs_y = -4}, - {.bitmap_index = 303788, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 304510, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 305290, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 306051, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 306773, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 307553, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 308294, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 309074, .adv_w = 672, .box_w = 37, .box_h = 37, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 309759, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 310500, .adv_w = 672, .box_w = 37, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 311240, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 312020, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 312820, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 313600, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 314361, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 315102, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 315902, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 316682, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 317482, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 318243, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 318984, .adv_w = 672, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 319687, .adv_w = 672, .box_w = 37, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 320409, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 321189, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 321911, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 322672, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 323452, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 324232, .adv_w = 672, .box_w = 40, .box_h = 41, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 325052, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 325812, .adv_w = 672, .box_w = 36, .box_h = 37, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 326478, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 327162, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 327903, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 328587, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 329328, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 330069, .adv_w = 672, .box_w = 30, .box_h = 39, .ofs_x = 6, .ofs_y = -4}, - {.bitmap_index = 330654, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 331395, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 332117, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 332839, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 333599, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 334399, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 335179, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 335959, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 336720, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 337500, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 338222, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 338982, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 339782, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 340582, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 341382, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 342102, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 342882, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 343623, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 344384, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 345164, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 345905, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 346685, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 347445, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 348225, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 349025, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 349805, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 350585, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 351307, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 352087, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 352848, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 353608, .adv_w = 672, .box_w = 40, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 354328, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 355108, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 355888, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 356649, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 357429, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 358209, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 359009, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 359809, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 360589, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 361292, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 362053, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 362794, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 363594, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 364374, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 365154, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 365895, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 366675, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 367397, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 368138, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 368918, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 369718, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 370498, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 371259, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 372019, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 372722, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 373406, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 374128, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 374889, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 375669, .adv_w = 672, .box_w = 41, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 376489, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 377211, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 377931, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 378651, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 379371, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 380151, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 380931, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 381672, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 382356, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 383116, .adv_w = 672, .box_w = 36, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 383800, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 384541, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 385263, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 385985, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 386765, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 387525, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 388285, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 389085, .adv_w = 672, .box_w = 37, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 389788, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 390588, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 391348, .adv_w = 672, .box_w = 43, .box_h = 44, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 392294, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 392966, .adv_w = 672, .box_w = 42, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 393764, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 394436, .adv_w = 462, .box_w = 29, .box_h = 30, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 394871, .adv_w = 672, .box_w = 42, .box_h = 42, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 395753, .adv_w = 672, .box_w = 40, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 396613, .adv_w = 756, .box_w = 48, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 397525, .adv_w = 672, .box_w = 42, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 398428, .adv_w = 756, .box_w = 48, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 399196, .adv_w = 672, .box_w = 42, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 400099, .adv_w = 336, .box_w = 21, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 400446, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 400974, .adv_w = 756, .box_w = 48, .box_h = 41, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 401958, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 402630, .adv_w = 462, .box_w = 29, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 403254, .adv_w = 588, .box_w = 27, .box_h = 39, .ofs_x = 5, .ofs_y = -4}, - {.bitmap_index = 403781, .adv_w = 588, .box_w = 37, .box_h = 44, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 404595, .adv_w = 588, .box_w = 37, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 405298, .adv_w = 588, .box_w = 37, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 406001, .adv_w = 588, .box_w = 27, .box_h = 39, .ofs_x = 5, .ofs_y = -4}, - {.bitmap_index = 406528, .adv_w = 588, .box_w = 39, .box_h = 38, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 407269, .adv_w = 420, .box_w = 23, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 407695, .adv_w = 420, .box_w = 23, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 408121, .adv_w = 588, .box_w = 37, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 408824, .adv_w = 588, .box_w = 37, .box_h = 9, .ofs_x = 0, .ofs_y = 11}, - {.bitmap_index = 408991, .adv_w = 756, .box_w = 48, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 409759, .adv_w = 840, .box_w = 53, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 410899, .adv_w = 756, .box_w = 49, .box_h = 43, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 411953, .adv_w = 672, .box_w = 42, .box_h = 39, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 412772, .adv_w = 588, .box_w = 37, .box_h = 23, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 413198, .adv_w = 588, .box_w = 37, .box_h = 23, .ofs_x = 0, .ofs_y = 4}, - {.bitmap_index = 413624, .adv_w = 840, .box_w = 53, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 414499, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 415171, .adv_w = 672, .box_w = 42, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 416074, .adv_w = 672, .box_w = 43, .box_h = 44, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 417020, .adv_w = 588, .box_w = 38, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 417742, .adv_w = 588, .box_w = 37, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 418538, .adv_w = 588, .box_w = 37, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 419241, .adv_w = 588, .box_w = 37, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 419852, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 420524, .adv_w = 420, .box_w = 28, .box_h = 43, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 421126, .adv_w = 588, .box_w = 37, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 421922, .adv_w = 588, .box_w = 37, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 422718, .adv_w = 756, .box_w = 48, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 423486, .adv_w = 672, .box_w = 44, .box_h = 44, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 424454, .adv_w = 504, .box_w = 32, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 425142, .adv_w = 840, .box_w = 53, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 426176, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 426892, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 427608, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 428324, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 429040, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 429756, .adv_w = 840, .box_w = 53, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 430631, .adv_w = 588, .box_w = 33, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 431341, .adv_w = 588, .box_w = 37, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 432137, .adv_w = 672, .box_w = 43, .box_h = 43, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 433062, .adv_w = 840, .box_w = 53, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 433910, .adv_w = 504, .box_w = 32, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 434598, .adv_w = 676, .box_w = 43, .box_h = 28, .ofs_x = 0, .ofs_y = 2} + {.bitmap_index = 274116, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 274896, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 275676, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 276456, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 277256, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 278017, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 278817, .adv_w = 672, .box_w = 37, .box_h = 34, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 279446, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 280168, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 280929, .adv_w = 672, .box_w = 37, .box_h = 37, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 281614, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 282355, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 283115, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 283837, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 284598, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 285378, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 286139, .adv_w = 672, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 286939, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 287661, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 288461, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 289202, .adv_w = 672, .box_w = 40, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 289942, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 290722, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 291522, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 292302, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 293063, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 293804, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 294604, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 295384, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 296164, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 296867, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 297647, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 298408, .adv_w = 672, .box_w = 40, .box_h = 37, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 299148, .adv_w = 672, .box_w = 40, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 299888, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 300648, .adv_w = 672, .box_w = 40, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 301388, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 302072, .adv_w = 672, .box_w = 35, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 302720, .adv_w = 672, .box_w = 37, .box_h = 38, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 303423, .adv_w = 672, .box_w = 36, .box_h = 36, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 304071, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 304832, .adv_w = 672, .box_w = 37, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 305554, .adv_w = 672, .box_w = 36, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 306256, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 307036, .adv_w = 672, .box_w = 30, .box_h = 37, .ofs_x = 6, .ofs_y = -4}, + {.bitmap_index = 307591, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 308313, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 309093, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 309854, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 310576, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 311356, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 312097, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 312877, .adv_w = 672, .box_w = 37, .box_h = 37, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 313562, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 314303, .adv_w = 672, .box_w = 37, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 315043, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 315823, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 316623, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 317403, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 318164, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 318905, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 319705, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 320485, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 321285, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 322045, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 322806, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 323547, .adv_w = 672, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 324250, .adv_w = 672, .box_w = 37, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 324972, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 325752, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 326474, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 327235, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 328015, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 328795, .adv_w = 672, .box_w = 40, .box_h = 41, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 329615, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 330375, .adv_w = 672, .box_w = 36, .box_h = 37, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 331041, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 331725, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 332466, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 333150, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 333891, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 334632, .adv_w = 672, .box_w = 30, .box_h = 39, .ofs_x = 6, .ofs_y = -4}, + {.bitmap_index = 335217, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 335958, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 336680, .adv_w = 672, .box_w = 37, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 337383, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 338105, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 338865, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 339665, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 340445, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 341225, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 341986, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 342766, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 343488, .adv_w = 672, .box_w = 37, .box_h = 37, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 344173, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 344933, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 345733, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 346533, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 347333, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 348053, .adv_w = 672, .box_w = 36, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 348755, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 349535, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 350276, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 351037, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 351817, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 352558, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 353338, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 354098, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 354878, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 355678, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 356458, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 357238, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 358018, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 358740, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 359520, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 360281, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 361041, .adv_w = 672, .box_w = 40, .box_h = 36, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 361761, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 362541, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 363321, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 364082, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 364862, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 365642, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 366442, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 367242, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 368022, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 368725, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 369486, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 370227, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 371027, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 371807, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 372587, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 373328, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 374108, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 374830, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 375571, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 376351, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 377151, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 377931, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 378692, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 379452, .adv_w = 672, .box_w = 38, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 380155, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 380839, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 381561, .adv_w = 672, .box_w = 39, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 382322, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 383102, .adv_w = 672, .box_w = 41, .box_h = 40, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 383922, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 384644, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 385364, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 386084, .adv_w = 672, .box_w = 36, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 386804, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 387584, .adv_w = 672, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 388364, .adv_w = 672, .box_w = 38, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 389105, .adv_w = 672, .box_w = 38, .box_h = 36, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 389789, .adv_w = 672, .box_w = 38, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 390549, .adv_w = 672, .box_w = 36, .box_h = 38, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 391233, .adv_w = 672, .box_w = 39, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 391974, .adv_w = 672, .box_w = 39, .box_h = 37, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 392696, .adv_w = 672, .box_w = 38, .box_h = 38, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 393418, .adv_w = 672, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 394198, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 394958, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 395718, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 396518, .adv_w = 672, .box_w = 37, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 397221, .adv_w = 672, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 398021, .adv_w = 672, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 398781, .adv_w = 672, .box_w = 43, .box_h = 44, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 399727, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 400399, .adv_w = 672, .box_w = 42, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 401197, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 401869, .adv_w = 462, .box_w = 29, .box_h = 30, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 402304, .adv_w = 672, .box_w = 42, .box_h = 42, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 403186, .adv_w = 672, .box_w = 40, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 404046, .adv_w = 756, .box_w = 48, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 404958, .adv_w = 672, .box_w = 42, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 405861, .adv_w = 756, .box_w = 48, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 406629, .adv_w = 672, .box_w = 42, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 407532, .adv_w = 336, .box_w = 21, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 407879, .adv_w = 504, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 408407, .adv_w = 756, .box_w = 48, .box_h = 41, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 409391, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 410063, .adv_w = 462, .box_w = 29, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 410687, .adv_w = 588, .box_w = 27, .box_h = 39, .ofs_x = 5, .ofs_y = -4}, + {.bitmap_index = 411214, .adv_w = 588, .box_w = 37, .box_h = 44, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 412028, .adv_w = 588, .box_w = 37, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 412731, .adv_w = 588, .box_w = 37, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 413434, .adv_w = 588, .box_w = 27, .box_h = 39, .ofs_x = 5, .ofs_y = -4}, + {.bitmap_index = 413961, .adv_w = 588, .box_w = 39, .box_h = 38, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 414702, .adv_w = 420, .box_w = 23, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 415128, .adv_w = 420, .box_w = 23, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 415554, .adv_w = 588, .box_w = 37, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 416257, .adv_w = 588, .box_w = 37, .box_h = 9, .ofs_x = 0, .ofs_y = 11}, + {.bitmap_index = 416424, .adv_w = 756, .box_w = 48, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 417192, .adv_w = 840, .box_w = 53, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 418332, .adv_w = 756, .box_w = 49, .box_h = 43, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 419386, .adv_w = 672, .box_w = 42, .box_h = 39, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 420205, .adv_w = 588, .box_w = 37, .box_h = 23, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 420631, .adv_w = 588, .box_w = 37, .box_h = 23, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 421057, .adv_w = 840, .box_w = 53, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 421932, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 422604, .adv_w = 672, .box_w = 42, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 423507, .adv_w = 672, .box_w = 43, .box_h = 44, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 424453, .adv_w = 588, .box_w = 38, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 425175, .adv_w = 588, .box_w = 37, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 425971, .adv_w = 588, .box_w = 37, .box_h = 38, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 426674, .adv_w = 588, .box_w = 37, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 427285, .adv_w = 672, .box_w = 42, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 427957, .adv_w = 420, .box_w = 28, .box_h = 43, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 428559, .adv_w = 588, .box_w = 37, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 429355, .adv_w = 588, .box_w = 37, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 430151, .adv_w = 756, .box_w = 48, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 430919, .adv_w = 672, .box_w = 44, .box_h = 44, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 431887, .adv_w = 504, .box_w = 32, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 432575, .adv_w = 840, .box_w = 53, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 433609, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 434325, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 435041, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 435757, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 436473, .adv_w = 840, .box_w = 53, .box_h = 27, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 437189, .adv_w = 840, .box_w = 53, .box_h = 33, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 438064, .adv_w = 588, .box_w = 33, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 438774, .adv_w = 588, .box_w = 37, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 439570, .adv_w = 672, .box_w = 43, .box_h = 43, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 440495, .adv_w = 840, .box_w = 53, .box_h = 32, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 441343, .adv_w = 504, .box_w = 32, .box_h = 43, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 442031, .adv_w = 676, .box_w = 43, .box_h = 28, .ofs_x = 0, .ofs_y = 2} }; /*--------------------- @@ -56985,55 +57946,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -57065,7 +58028,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -57170,7 +58133,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -57269,7 +58233,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_44.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_44.c index 054eb93d..99fd67f3 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_44.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_44.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 44 px * Bpp: 4 - * Opts: --bpp 4 --size 44 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_44.c + * Opts: --bpp 4 --size 44 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_44.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -20893,6 +20893,113 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0xb, 0x20, 0x0, 0x0, 0x0, 0x1, 0x43, 0x0, 0x0, + /* U+4F53 "体" */ + 0x0, 0x0, 0x0, 0x0, 0x21, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x77, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0xb5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xd0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xff, 0xf6, 0x0, 0x7c, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbb, 0xff, 0xfb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xc6, 0x0, 0x0, 0x0, 0xa, 0xff, 0xf4, 0x0, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0xf4, 0x0, 0x9f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x9f, 0xff, + 0xf4, 0x0, 0x12, 0x11, 0x11, 0x11, 0x4f, 0xfe, + 0xff, 0xff, 0xff, 0x11, 0x11, 0x11, 0x11, 0x21, + 0x0, 0x0, 0x1, 0xff, 0xff, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0xfb, 0xff, 0xfb, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xf7, 0xff, 0xf7, 0xff, 0x90, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf3, 0xff, + 0xf3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xaf, 0xfd, 0xdf, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xff, 0xc2, 0xff, 0xf0, 0xdf, 0xf5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xf5, + 0xdf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, + 0x72, 0xff, 0xf0, 0x8f, 0xfc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2e, 0xff, 0xc0, 0xdf, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0x12, 0xff, 0xf0, + 0x1f, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0xff, 0x30, 0xdf, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xfa, 0x2, 0xff, 0xf0, 0xa, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xf9, 0x0, 0xdf, + 0xf4, 0x0, 0x0, 0x0, 0x6, 0xff, 0xf3, 0x2, + 0xff, 0xf0, 0x2, 0xff, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x60, 0x0, 0xdf, 0xf4, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0xb0, 0x2, 0xff, 0xf0, 0x0, + 0x9f, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xdf, 0xf4, 0x0, 0x0, 0x0, 0xbf, 0xff, + 0x30, 0x2, 0xff, 0xf0, 0x0, 0x1e, 0xff, 0xd1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf4, + 0x0, 0x0, 0x8, 0xff, 0xf9, 0x0, 0x2, 0xff, + 0xf0, 0x0, 0x5, 0xff, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xf4, 0x0, 0x0, 0x6f, + 0xff, 0xe0, 0x0, 0x2, 0xff, 0xf0, 0x0, 0x0, + 0xaf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xf4, 0x0, 0x5, 0xff, 0xff, 0x40, 0x0, + 0x2, 0xff, 0xf0, 0x0, 0x0, 0xc, 0xff, 0xfd, + 0x20, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf4, 0x0, + 0x6f, 0xff, 0xf7, 0x0, 0x0, 0x2, 0xff, 0xf0, + 0x0, 0x0, 0x1, 0xef, 0xff, 0xf6, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xf4, 0x8, 0xff, 0xff, 0xa0, + 0x0, 0x0, 0x2, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x2e, 0xff, 0xff, 0xc1, 0x0, 0x0, 0x0, 0xdf, + 0xf6, 0xcf, 0xff, 0xfb, 0x1, 0x22, 0x11, 0x12, + 0xff, 0xf0, 0x0, 0x11, 0x21, 0x2, 0xef, 0xff, + 0x60, 0x0, 0x0, 0x0, 0xdf, 0xf5, 0x9f, 0xff, + 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0x0, 0x1c, 0xf5, 0x0, 0x0, 0x0, + 0x0, 0xdf, 0xf4, 0x5, 0xfb, 0x0, 0x7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, + 0x0, 0x60, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf4, + 0x0, 0x40, 0x0, 0x6, 0xdc, 0xcb, 0xbb, 0xff, + 0xfb, 0xbb, 0xbc, 0xc6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, + 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xef, 0xf5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xef, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -21210,6 +21317,119 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x60, 0x0, 0x97, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xb8, 0x30, 0x0, + /* U+4FC4 "俄" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb, 0xb6, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xa8, 0x63, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, + 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0x2, 0x20, 0x0, 0xff, 0xf7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x4, 0xaf, + 0xc0, 0x0, 0xff, 0xf4, 0x0, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0x20, + 0x0, 0x4, 0x7b, 0xff, 0xff, 0xf5, 0x0, 0xff, + 0xf3, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xff, 0xfb, 0x0, 0x7d, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0x0, 0xef, 0xf2, 0xa, 0xff, + 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, + 0xf4, 0x0, 0x2f, 0xff, 0xff, 0xfe, 0x73, 0x0, + 0x0, 0xef, 0xf2, 0x3, 0xff, 0xfd, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xff, 0xe0, 0x0, 0xa, + 0xfd, 0x9f, 0xfd, 0x0, 0x0, 0x0, 0xef, 0xf2, + 0x0, 0x8f, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xff, 0x80, 0x0, 0x1, 0x10, 0x1f, 0xfd, + 0x0, 0x0, 0x0, 0xef, 0xf2, 0x0, 0xe, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x1f, 0xfd, 0x0, 0x0, 0x0, + 0xdf, 0xf2, 0x0, 0x7, 0xff, 0xd2, 0x0, 0x0, + 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xfd, 0x0, 0x0, 0x0, 0xdf, 0xf2, 0x0, + 0x0, 0xd5, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfd, 0x0, + 0x0, 0x0, 0xcf, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xfd, 0x0, 0x0, 0x0, 0xcf, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xff, 0xfe, 0x0, 0xa, 0xcc, 0xbb, 0xbf, + 0xff, 0xbb, 0xbb, 0xbb, 0xef, 0xfc, 0xbb, 0xbb, + 0xbb, 0xcd, 0x60, 0x0, 0x8, 0xff, 0xff, 0xfe, + 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, + 0x0, 0x3f, 0xff, 0xaf, 0xfe, 0x0, 0xc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x70, 0x1, 0xef, 0xfe, + 0x3f, 0xfe, 0x0, 0x2, 0x21, 0x10, 0x1f, 0xfd, + 0x0, 0x0, 0x0, 0xbf, 0xf4, 0x0, 0x0, 0x11, + 0x12, 0x10, 0xb, 0xff, 0xf6, 0x2f, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xfd, 0x0, 0x0, 0x0, + 0xaf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xaf, 0xc0, 0x2f, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xfd, 0x0, 0x0, 0x0, 0x8f, 0xf6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x20, 0x2f, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfd, 0x0, + 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xfd, 0x0, 0x0, 0x0, 0x5f, + 0xfa, 0x0, 0x6, 0xf6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xfd, 0x1, 0x7d, 0x0, 0x3f, 0xfc, 0x0, 0xc, + 0xff, 0xd2, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0xcf, 0xff, + 0x0, 0xf, 0xff, 0x0, 0x4f, 0xff, 0xa0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0xfe, 0x0, 0x0, 0x0, + 0x3, 0x8f, 0xff, 0xff, 0xff, 0x20, 0xe, 0xff, + 0x20, 0xcf, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xfe, 0x0, 0x1, 0x5a, 0xef, 0xff, 0xff, + 0xfd, 0x83, 0x0, 0xb, 0xff, 0x55, 0xff, 0xf3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xfe, 0x1, + 0xef, 0xff, 0xff, 0xff, 0xfe, 0x20, 0x0, 0x0, + 0x8, 0xff, 0x9e, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xfe, 0x0, 0xaf, 0xff, 0xfe, + 0xaf, 0xfd, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, + 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xfe, 0x0, 0x3f, 0xfa, 0x40, 0x1f, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xf3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xfe, 0x0, 0x7, + 0x10, 0x0, 0x1f, 0xfd, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xfd, 0x0, 0x0, 0x0, 0x8, 0xff, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfd, 0x0, 0x0, + 0x0, 0x7f, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xfd, 0x0, 0x0, 0x9, 0xff, 0xff, + 0xff, 0x90, 0x0, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfd, + 0x0, 0x2, 0xcf, 0xff, 0xc7, 0xff, 0xf2, 0x0, + 0xaa, 0x20, 0x0, 0x0, 0x0, 0x2f, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xfd, 0x0, 0x7f, 0xff, + 0xfc, 0x0, 0xdf, 0xfb, 0x0, 0xcf, 0xf7, 0x0, + 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xfd, 0x2, 0xef, 0xff, 0xb0, 0x0, 0x4f, + 0xff, 0x50, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x3f, + 0xff, 0x0, 0x0, 0x58, 0x8a, 0xef, 0xfc, 0x0, + 0x2f, 0xf9, 0x0, 0x0, 0xa, 0xff, 0xfb, 0xff, + 0xf1, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, + 0x4f, 0xff, 0xff, 0xf9, 0x0, 0x5, 0x60, 0x0, + 0x0, 0x1, 0xef, 0xff, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x4f, 0xff, 0x0, 0x0, 0xe, 0xff, 0xff, + 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x4f, 0xff, + 0x10, 0x0, 0x9, 0xff, 0xfb, 0x40, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xfb, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0x30, 0x0, 0x3, + 0x52, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3b, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+4FDD "保" */ 0x0, 0x0, 0x0, 0x0, 0x3, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -32007,6 +32227,114 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf2, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x42, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xd3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xf5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0xff, 0xfa, 0x0, 0xcf, 0xfe, 0xee, + 0xee, 0xee, 0xef, 0xff, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbc, 0xcd, 0x40, 0x0, 0x0, 0x1, 0xef, 0xfd, + 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, + 0x0, 0x0, 0xaf, 0xff, 0x30, 0x0, 0xcf, 0xfe, + 0xee, 0xee, 0xee, 0xff, 0xff, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xff, 0x50, 0x0, 0x0, 0x7f, 0xff, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0xff, 0xb0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, + 0xe1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1d, 0xff, 0xf3, 0x0, 0xd, 0x60, + 0x2, 0x77, 0x77, 0x77, 0x78, 0xff, 0xf8, 0x77, + 0x77, 0x77, 0x77, 0x77, 0x40, 0x0, 0x5, 0xff, + 0xf7, 0x0, 0x6, 0xff, 0xc1, 0x5f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf9, 0x0, 0x0, 0x7, 0xfa, 0x0, 0x0, 0xef, + 0xfc, 0x5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, + 0x7, 0x0, 0x0, 0x8f, 0xff, 0x20, 0x4f, 0xfb, + 0x0, 0x8, 0xff, 0x60, 0x2, 0xff, 0xc0, 0x0, + 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xff, 0x60, 0x4, 0xff, 0xb0, 0x0, 0x8f, 0xf6, + 0x0, 0x2f, 0xfc, 0x0, 0x7, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xff, 0xb0, 0x0, 0x3f, + 0xfb, 0x0, 0x8, 0xff, 0x60, 0x2, 0xff, 0xc0, + 0x0, 0x7f, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xf2, 0x0, 0x4, 0xff, 0xb0, 0x0, 0x8f, + 0xf6, 0x0, 0x2f, 0xfc, 0x0, 0x7, 0xff, 0x70, + 0x0, 0x0, 0x0, 0x4, 0xff, 0xf7, 0x0, 0x0, + 0x4f, 0xfb, 0x0, 0x8, 0xff, 0x60, 0x2, 0xff, + 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, + 0xef, 0xff, 0x50, 0x0, 0x5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x80, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xf5, 0x0, + 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, + 0xbf, 0xff, 0xff, 0x50, 0x0, 0x3, 0xaa, 0xaa, + 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, + 0xaa, 0x60, 0x0, 0x0, 0xaf, 0xff, 0xef, 0xf5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xcf, 0xff, 0x8c, 0xff, 0x50, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xb0, 0xcf, + 0xf5, 0x0, 0x2, 0x32, 0x21, 0x11, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x12, 0x22, 0x31, + 0x0, 0x6f, 0xe1, 0xc, 0xff, 0x50, 0x0, 0xcf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xc3, 0x0, + 0xcf, 0xf5, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0xc, 0xff, 0x50, 0x0, + 0x8a, 0xa9, 0x98, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x99, 0x9a, 0x50, 0x0, 0x0, + 0x0, 0xcf, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, + 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xf5, 0x0, 0x0, 0xda, 0x50, + 0xd, 0xee, 0x40, 0x9f, 0xff, 0x20, 0x0, 0x0, + 0x5, 0xe3, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0x50, 0x0, 0x3f, 0xff, 0x20, 0xef, 0xf4, 0x0, + 0xdf, 0xfb, 0x0, 0x0, 0x9, 0xff, 0xd0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xf5, 0x0, 0x8, 0xff, + 0xc0, 0xd, 0xff, 0x30, 0x4, 0xff, 0xf5, 0x0, + 0x0, 0x5f, 0xff, 0xb0, 0x0, 0x0, 0x0, 0xc, + 0xff, 0x50, 0x0, 0xef, 0xf6, 0x0, 0xdf, 0xf2, + 0x0, 0xb, 0xf7, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0x60, 0x0, 0x0, 0x0, 0xcf, 0xf5, 0x0, 0x3f, + 0xff, 0x0, 0xc, 0xff, 0x20, 0x0, 0x22, 0x0, + 0x7, 0xa2, 0x0, 0xcf, 0xff, 0x20, 0x0, 0x0, + 0xc, 0xff, 0x50, 0xa, 0xff, 0xa0, 0x0, 0xcf, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xfc, 0x13, + 0xff, 0xfa, 0x0, 0x0, 0x0, 0xdf, 0xf5, 0x1, + 0xff, 0xf4, 0x0, 0xb, 0xff, 0x60, 0x0, 0x0, + 0x0, 0xf, 0xff, 0xd0, 0x8, 0xf8, 0x0, 0x0, + 0x0, 0xd, 0xff, 0x50, 0x29, 0xfe, 0x0, 0x0, + 0x9f, 0xff, 0xa8, 0x88, 0x88, 0x9d, 0xff, 0xf6, + 0x0, 0x5, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf6, + 0x0, 0x0, 0x40, 0x0, 0x5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xff, 0x60, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xea, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -41441,6 +41769,106 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0xa3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0, + /* U+7259 "牙" */ + 0x0, 0x0, 0xdc, 0xcb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbc, 0xcd, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x54, 0x33, + 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, + 0x9f, 0xfe, 0x33, 0x33, 0x33, 0x45, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x71, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xb5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xff, 0xf7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, + 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6f, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0xff, 0xfd, 0xbb, 0xbb, 0xbb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xdf, 0xff, 0xbb, 0xbb, + 0xbb, 0xbb, 0xbc, 0xd8, 0x0, 0x0, 0x1f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0x0, 0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, 0x3, 0xc9, + 0x53, 0x11, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, + 0xaf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x11, 0x21, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xff, 0xf9, 0x8f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xf1, + 0x8f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xff, 0x70, 0x8f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xfd, 0x0, + 0x8f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2e, 0xff, 0xf3, 0x0, 0x8f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xdf, 0xff, 0x70, 0x0, + 0x8f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, + 0xff, 0xfa, 0x0, 0x0, 0x8f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xcf, 0xff, 0xc0, 0x0, 0x0, + 0x8f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2d, 0xff, + 0xfd, 0x10, 0x0, 0x0, 0x8f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0xff, 0xff, 0xc1, 0x0, 0x0, 0x0, + 0x8f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xfc, + 0x10, 0x0, 0x0, 0x0, 0x8f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4d, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2a, 0xff, 0xff, 0xf6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0xff, + 0xff, 0xfc, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3a, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff, 0xff, + 0xb2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xef, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xcf, 0xff, 0xd5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xbc, 0xff, 0xff, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0xf7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xff, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8e, 0xb8, + 0x51, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + /* U+72B6 "状" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -41860,6 +42288,113 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x63, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0x43, 0x33, + 0x33, 0x33, 0x45, 0x30, 0x0, 0x0, 0x0, 0xff, + 0xf3, 0x7a, 0x99, 0x98, 0x88, 0x88, 0x99, 0x9a, + 0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0xff, 0xf2, 0xaf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0xff, 0xf1, 0xaf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0xba, 0x99, 0x9f, 0xff, + 0x89, 0x9a, 0x70, 0x0, 0x0, 0x0, 0xff, 0xf0, + 0x22, 0x11, 0x3, 0xff, 0xe0, 0x0, 0x12, 0x20, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x2, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xf0, 0x0, 0x0, 0x2, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, + 0x0, 0x0, 0x23, 0x30, 0x0, 0xff, 0xf0, 0x0, + 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0xff, + 0xf1, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x2, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0xff, 0xf1, 0x0, 0xff, + 0xf0, 0x0, 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0xff, 0xf0, 0x0, 0xff, 0xf0, 0x0, 0x0, + 0x2, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, + 0x0, 0xff, 0xe0, 0x0, 0x0, 0x2, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xff, 0xe0, + 0x0, 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x1, + 0xff, 0xf0, 0x0, 0xff, 0xd0, 0x0, 0x0, 0x2, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x24, 0x33, + 0x3f, 0xff, 0x22, 0x34, 0x2, 0xff, 0xf0, 0x1, + 0xff, 0xc0, 0x24, 0x32, 0x24, 0xff, 0xe2, 0x22, + 0x34, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x23, 0xff, 0xd0, 0x2, 0xff, 0xb0, 0x8f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x24, 0xff, + 0xc0, 0x3, 0xff, 0xb0, 0x8f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x0, 0x0, 0x6b, 0xaa, 0xaf, + 0xff, 0x9a, 0xab, 0x15, 0xff, 0xb0, 0x5, 0xff, + 0xa0, 0x49, 0x87, 0x78, 0xff, 0xf7, 0x78, 0x88, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x6, 0xff, 0xa0, 0x7, 0xff, 0x80, 0x0, 0x0, + 0x2, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0x0, 0x0, 0x5, 0xaa, 0x60, + 0x9, 0xff, 0x60, 0x0, 0x0, 0x2, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0x30, + 0x0, 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x10, 0x0, 0x0, 0x2, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xfd, 0x0, 0x0, 0x0, 0x2, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0xfa, 0x0, 0x0, + 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xdf, 0xf6, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x4, + 0xb1, 0x0, 0xa, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x2, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0x17, 0xef, 0xf5, 0x0, 0x2f, + 0xff, 0x60, 0x0, 0x0, 0x0, 0x2, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0xff, 0xff, 0xf8, 0x0, 0xaf, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xbf, 0xff, 0xff, 0xfb, 0x40, + 0x5, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x5a, 0xff, + 0xff, 0xff, 0xe8, 0x10, 0x0, 0x1e, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xc4, 0x0, + 0x0, 0x0, 0xdf, 0xff, 0x50, 0x0, 0x5e, 0xdd, + 0xcc, 0xcd, 0xff, 0xfc, 0xcc, 0xdd, 0xe6, 0x7, + 0xff, 0xff, 0xa3, 0x0, 0x0, 0x0, 0xb, 0xff, + 0xf9, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0x0, 0xef, 0x81, 0x0, + 0x0, 0x0, 0x1, 0xcf, 0xff, 0xd0, 0x0, 0x0, + 0x5e, 0xed, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xdd, + 0xe6, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xdf, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7406 "理" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, @@ -44737,6 +45272,111 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x3, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xd5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb8, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, + 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xff, 0xa0, 0x0, 0x0, 0x11, 0x23, + 0x0, 0x0, 0xef, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x0, 0x5f, 0xff, 0xcb, + 0xbb, 0xbb, 0xbb, 0xbc, 0xda, 0x0, 0x0, 0x2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, + 0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x0, 0x1, 0xdf, 0xfe, 0x9b, 0xff, 0xe9, + 0x99, 0xaa, 0xb0, 0x8, 0xff, 0xfe, 0xee, 0xff, + 0xfe, 0xee, 0xff, 0xfc, 0x0, 0x0, 0xcf, 0xff, + 0x30, 0xd, 0xff, 0x30, 0x0, 0x0, 0x4, 0xff, + 0xf6, 0x0, 0xb, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x1, 0xcf, 0xff, 0x50, 0x0, 0x5f, 0xfd, 0x0, + 0x0, 0x3, 0xff, 0xfa, 0x0, 0x0, 0x5f, 0xfe, + 0x0, 0x0, 0x0, 0x4, 0xef, 0xff, 0x60, 0x0, + 0x0, 0xcf, 0xf6, 0x0, 0x2, 0xef, 0xfe, 0x10, + 0x0, 0x0, 0xef, 0xf6, 0x0, 0x0, 0x1, 0xef, + 0xff, 0x60, 0x0, 0x0, 0x5, 0xff, 0xe0, 0x1, + 0xef, 0xff, 0x20, 0x0, 0x0, 0x9, 0xff, 0xe0, + 0x0, 0x0, 0x1, 0xcf, 0x60, 0x0, 0x17, 0x0, + 0xd, 0xa3, 0x0, 0x19, 0xff, 0x40, 0x0, 0x0, + 0x0, 0x4f, 0x94, 0x0, 0x0, 0x0, 0x1, 0x40, + 0x0, 0x1d, 0xf6, 0x0, 0x10, 0x0, 0x0, 0x4, + 0x60, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xf4, 0x0, + 0x2, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xff, 0xf3, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xe2, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x20, 0x0, 0x0, 0x7, 0x88, 0x20, + 0x5f, 0xff, 0x50, 0xbb, 0xaa, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0xff, 0xf1, 0x0, 0x0, + 0x0, 0xef, 0xf4, 0x0, 0xae, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x10, 0x0, 0x0, 0xd, 0xff, 0x40, 0x1, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xf0, 0x0, 0x0, 0x0, + 0xcf, 0xf3, 0x0, 0x0, 0x45, 0x55, 0x55, 0x55, + 0x55, 0x55, 0x55, 0x51, 0x0, 0x0, 0xe, 0xff, + 0x0, 0x0, 0x0, 0xc, 0xff, 0x30, 0x0, 0xd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, + 0x0, 0x0, 0xef, 0xf0, 0x0, 0x0, 0x0, 0xcf, + 0xf2, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf2, 0x0, 0x0, 0xe, 0xff, 0x0, + 0x0, 0x0, 0xc, 0xff, 0x20, 0x0, 0xb, 0xff, + 0x41, 0x11, 0x11, 0x11, 0x1d, 0xff, 0x10, 0x0, + 0x0, 0xef, 0xf0, 0x0, 0x0, 0x0, 0xcf, 0xf2, + 0x0, 0x0, 0xbf, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xf1, 0x0, 0x0, 0xe, 0xff, 0x0, 0x0, + 0x0, 0xc, 0xff, 0x20, 0x0, 0xb, 0xff, 0x30, + 0x0, 0x0, 0x0, 0xd, 0xff, 0x10, 0x0, 0x0, + 0xef, 0xf0, 0x0, 0x0, 0x0, 0xcf, 0xf2, 0x0, + 0x0, 0xbf, 0xfa, 0x88, 0x88, 0x88, 0x88, 0xef, + 0xf1, 0x0, 0x0, 0xe, 0xff, 0x0, 0x0, 0x0, + 0xc, 0xff, 0x20, 0x0, 0xb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x10, 0x0, 0x0, 0xef, + 0xf0, 0x0, 0x0, 0x0, 0xcf, 0xf2, 0x0, 0x0, + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, + 0x0, 0x0, 0xe, 0xff, 0x0, 0x0, 0x0, 0xc, + 0xff, 0x20, 0x0, 0xb, 0xff, 0x30, 0x0, 0x0, + 0x0, 0xd, 0xff, 0x10, 0x0, 0x0, 0xef, 0xf0, + 0x0, 0x0, 0x0, 0xcf, 0xf2, 0x0, 0x0, 0xbf, + 0xf3, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf1, 0x0, + 0x0, 0xe, 0xff, 0x0, 0x0, 0x0, 0xc, 0xff, + 0x20, 0x0, 0xb, 0xff, 0x30, 0x0, 0x0, 0x0, + 0xd, 0xff, 0x10, 0x0, 0x0, 0xef, 0xf0, 0x0, + 0x0, 0x0, 0xcf, 0xf2, 0x0, 0x0, 0xbf, 0xf3, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf1, 0x0, 0x0, + 0xe, 0xff, 0x0, 0x0, 0x0, 0xc, 0xff, 0x20, + 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x10, 0x0, 0x0, 0xef, 0xf0, 0x0, 0x0, + 0x0, 0xcf, 0xf2, 0x0, 0x0, 0xdf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, 0xe, + 0xff, 0x0, 0x0, 0x0, 0xc, 0xff, 0x20, 0x0, + 0x8, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, + 0x20, 0x0, 0x0, 0xef, 0xf0, 0x0, 0x0, 0x0, + 0xcf, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x0, 0x0, 0x0, 0xc, 0xff, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0x44, 0x59, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xdf, + 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xfb, 0x0, + 0x0, 0x0, 0xd, 0xff, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, + 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, 0xef, 0xf5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xfd, 0x96, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, + 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x45, 0x55, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -46789,6 +47429,104 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xee, 0xee, 0xee, 0xee, 0xee, 0xdd, 0xa5, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xee, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x2e, 0xee, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xef, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x40, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x13, 0x32, 0x11, 0x11, 0x11, + 0xdf, 0xf8, 0x11, 0x11, 0x11, 0x11, 0x12, 0xff, + 0xf5, 0x11, 0x11, 0x12, 0x23, 0x32, 0x4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x70, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf7, 0x3, 0xfe, 0xdd, + 0xdd, 0xdd, 0xdf, 0xff, 0xed, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdf, 0xff, 0xdd, 0xdd, 0xdd, 0xde, 0xef, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf7, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf7, 0x0, + 0xa, 0x97, 0x51, 0x0, 0xff, 0xf5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb, 0xcc, 0x50, 0x0, 0xdf, 0xff, 0x20, 0xc, + 0xcc, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf2, 0x0, 0x0, 0x0, 0xc, 0xff, 0x70, 0x0, + 0x0, 0x0, 0xcf, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xff, 0x20, 0x0, 0x0, 0x0, + 0xcf, 0xf7, 0x0, 0x0, 0x0, 0xc, 0xff, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf2, + 0x0, 0x0, 0x0, 0xc, 0xff, 0x70, 0x0, 0x0, + 0x0, 0xcf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0x20, 0x0, 0x0, 0x0, 0xdf, + 0xf6, 0x0, 0x0, 0x0, 0xc, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf2, 0x0, + 0x0, 0x0, 0xd, 0xff, 0x50, 0x0, 0x0, 0x0, + 0xcf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0xff, 0x20, 0x0, 0x0, 0x0, 0xef, 0xf3, + 0x0, 0x0, 0x0, 0xc, 0xff, 0x40, 0x0, 0x0, + 0x6, 0xdd, 0xcc, 0xcb, 0xff, 0xfc, 0xbb, 0xbb, + 0xbb, 0xbf, 0xff, 0xcb, 0xbb, 0xbb, 0xbb, 0xff, + 0xfd, 0xbb, 0xcc, 0xd4, 0x7f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x57, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf5, 0x12, 0x21, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xfe, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, + 0xf6, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xff, 0xf8, 0x6, 0xff, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xfd, 0x0, + 0x9, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xff, 0xfe, 0x20, 0x0, 0xb, 0xff, 0xfc, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xff, 0x30, 0x0, 0x0, + 0xb, 0xff, 0xfe, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5d, 0xff, 0xff, + 0x30, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xb2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0xdf, 0xff, 0xfd, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xff, 0xff, 0xf9, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x3, 0x8e, 0xff, 0xff, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xef, 0xff, 0xff, + 0xc6, 0x10, 0x0, 0x27, 0xae, 0xff, 0xff, 0xff, + 0xc3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0xff, 0xff, 0xff, 0xd2, 0x1, 0xcf, + 0xff, 0xff, 0xfc, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2b, 0xff, 0xff, + 0xf4, 0x0, 0x0, 0xdf, 0xff, 0xa4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xaf, 0xf8, 0x0, 0x0, 0x2, 0xc6, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x16, 0x0, + 0x0, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x22, 0x21, 0x0, 0x0, 0x0, 0x0, 0x45, 0x53, 0x0, 0x0, @@ -47651,6 +48389,96 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+897F "西" */ + 0xcd, 0xcb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbb, 0xbc, 0xd9, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xef, 0xfe, + 0xee, 0xee, 0xee, 0xee, 0xef, 0xff, 0xee, 0xee, + 0xee, 0xff, 0xfe, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xff, 0x40, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0x40, 0x0, 0x0, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0x40, + 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa, 0xff, 0x40, 0x0, 0x0, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xff, 0x40, 0x0, 0x0, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, + 0x40, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa, 0xff, 0x40, 0x0, 0x0, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, + 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x20, 0x0, 0x0, 0x3, 0xff, 0xfb, + 0xbb, 0xbb, 0xbe, 0xff, 0xcb, 0xbb, 0xbb, 0xff, + 0xfb, 0xbb, 0xbb, 0xbf, 0xff, 0x20, 0x0, 0x0, + 0x3, 0xff, 0xf0, 0x0, 0x0, 0xb, 0xff, 0x20, + 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0xd, 0xff, + 0x10, 0x0, 0x0, 0x2, 0xff, 0xf0, 0x0, 0x0, + 0xd, 0xff, 0x10, 0x0, 0x0, 0xff, 0xe0, 0x0, + 0x0, 0xd, 0xff, 0x10, 0x0, 0x0, 0x2, 0xff, + 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, + 0xff, 0xe0, 0x0, 0x0, 0xd, 0xff, 0x10, 0x0, + 0x0, 0x2, 0xff, 0xf0, 0x0, 0x0, 0x2f, 0xfd, + 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0xd, + 0xff, 0x10, 0x0, 0x0, 0x2, 0xff, 0xf0, 0x0, + 0x0, 0x6f, 0xfa, 0x0, 0x0, 0x0, 0xff, 0xe0, + 0x0, 0x0, 0xd, 0xff, 0x10, 0x0, 0x0, 0x2, + 0xff, 0xf0, 0x0, 0x0, 0xbf, 0xf6, 0x0, 0x0, + 0x0, 0xff, 0xe0, 0x0, 0x0, 0xd, 0xff, 0x10, + 0x0, 0x0, 0x2, 0xff, 0xf0, 0x0, 0x1, 0xff, + 0xf2, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, + 0xd, 0xff, 0x10, 0x0, 0x0, 0x2, 0xff, 0xf0, + 0x0, 0x9, 0xff, 0xd0, 0x0, 0x0, 0x0, 0xff, + 0xe0, 0x0, 0x0, 0xd, 0xff, 0x10, 0x0, 0x0, + 0x2, 0xff, 0xf0, 0x0, 0x2f, 0xff, 0x60, 0x0, + 0x0, 0x0, 0xff, 0xf3, 0x1, 0x24, 0x1d, 0xff, + 0x10, 0x0, 0x0, 0x2, 0xff, 0xf0, 0x0, 0xcf, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, + 0xff, 0x3d, 0xff, 0x10, 0x0, 0x0, 0x2, 0xff, + 0xf0, 0xa, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, + 0xdf, 0xff, 0xff, 0xff, 0x1d, 0xff, 0x10, 0x0, + 0x0, 0x2, 0xff, 0xf0, 0xaf, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xd, + 0xff, 0x10, 0x0, 0x0, 0x2, 0xff, 0xf0, 0x4d, + 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x35, + 0x55, 0x54, 0xd, 0xff, 0x10, 0x0, 0x0, 0x2, + 0xff, 0xf0, 0x1, 0xb4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0x10, + 0x0, 0x0, 0x2, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xff, 0x10, 0x0, 0x0, 0x2, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xff, 0x10, 0x0, 0x0, + 0x2, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, + 0x10, 0x0, 0x0, 0x2, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xff, 0x10, 0x0, 0x0, 0x2, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x0, + 0x0, 0x2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x10, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x8e, 0xff, 0x20, 0x0, 0x0, 0x3, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0x20, + 0x0, 0x0, 0x4, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xff, 0x30, 0x0, 0x0, 0x4, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xff, 0x30, 0x0, + /* U+8981 "要" */ 0x5, 0xba, 0xa9, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, @@ -48194,6 +49022,103 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x69, 0x63, 0x0, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1a, 0xef, 0xd0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x45, + 0x43, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x9f, + 0xff, 0x83, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, + 0x45, 0x50, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf1, 0xbf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, + 0x7a, 0xa9, 0x98, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x89, 0x9a, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xcc, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbb, 0xbb, 0xbc, 0xcd, 0x10, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x12, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xed, 0xdd, 0xcc, 0xcc, + 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcd, 0xdd, + 0xee, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xed, 0xdc, 0xcc, 0xcc, 0xcc, 0xcc, + 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xdd, 0xed, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x20, 0x0, 0x0, 0x0, 0x0, + 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, + 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0xa, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xb0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5f, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x9, 0xff, 0xeb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xcf, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0xa, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0x30, + 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0xb, + 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0x40, 0x0, 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, @@ -49274,6 +50199,113 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, + /* U+8BED "语" */ + 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xf2, 0x0, 0x0, 0x0, 0x8b, 0xba, 0xaa, 0xaa, + 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xbb, + 0xc2, 0x0, 0x0, 0x0, 0x9f, 0xfe, 0x10, 0x0, + 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0xc0, 0x0, 0x0, 0xae, 0xdd, + 0xdc, 0xcc, 0xcd, 0xff, 0xfd, 0xcc, 0xcc, 0xcc, + 0xdd, 0xde, 0xe3, 0x0, 0x0, 0x0, 0x7, 0xff, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xd0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xed, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x20, 0x0, 0x0, 0x4, + 0xdd, 0xcc, 0xbb, 0xbf, 0xff, 0xb8, 0x88, 0x88, + 0x88, 0x88, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0xff, 0xff, 0xee, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x21, + 0x0, 0x0, 0xef, 0xf8, 0x0, 0x0, 0x0, 0xe, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xf5, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x0, 0x7f, 0xff, 0xee, 0xee, 0xee, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xff, 0xf2, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0x60, 0x0, 0x0, 0x7f, 0xff, + 0xff, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x4f, 0xff, + 0x50, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x7f, 0xff, 0x30, 0x0, 0x0, + 0x12, 0x10, 0x0, 0x1f, 0xff, 0x40, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x9f, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x60, 0x0, 0x0, 0x0, 0xbf, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x30, + 0xe, 0xed, 0xdd, 0xcc, 0xdf, 0xff, 0xdc, 0xcc, + 0xcc, 0xcc, 0xff, 0xff, 0xdd, 0xee, 0xf1, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0x30, 0xe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x20, 0xd, 0xee, 0xdd, 0xcc, 0xcc, 0xcc, + 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xdd, + 0xe1, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x20, 0x0, 0x0, + 0x1, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, + 0x22, 0x22, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x20, 0x0, 0x0, 0x9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x20, + 0x10, 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0x20, 0xa8, 0x0, 0x7, + 0xff, 0xfc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcd, + 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x25, 0xff, 0x30, 0x7, 0xff, 0xd0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xf2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x5f, 0xff, + 0xd0, 0x7, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0xef, 0xff, 0x70, 0x7, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0xff, 0xf7, 0x0, 0x7, 0xff, 0xd0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xff, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0x90, 0x0, + 0x7, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xff, 0xfb, 0x0, 0x0, 0x7, 0xff, 0xd0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xd0, + 0x0, 0x0, 0x7, 0xff, 0xd0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xff, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0xb, 0xff, 0xff, 0x20, 0x0, 0x0, 0x7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xff, + 0xf5, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9f, 0xa0, 0x0, 0x0, + 0x0, 0x8, 0xff, 0xfb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbb, 0xbc, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0x10, 0x0, 0x0, 0x0, 0x9, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xff, 0xd0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xff, 0xf4, 0x0, 0x0, + /* U+8BF7 "请" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0x99, 0x50, 0x0, @@ -61583,392 +62615,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 157395, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, {.bitmap_index = 158256, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 159076, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 159937, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 160798, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 161618, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 162418, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 163258, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 164078, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 164960, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 165821, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 166641, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 167502, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 168342, .adv_w = 704, .box_w = 41, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 169224, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 170004, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 170865, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 171665, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 172505, .adv_w = 704, .box_w = 39, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 173285, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 174105, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 174945, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 175806, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 176626, .adv_w = 704, .box_w = 35, .box_h = 40, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 177326, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 178166, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 179007, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 179787, .adv_w = 704, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 180567, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 181367, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 182187, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 183007, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 183807, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 184627, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 185488, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 186288, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 187129, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 187990, .adv_w = 704, .box_w = 42, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 188809, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 189609, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 190429, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 191249, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 192049, .adv_w = 704, .box_w = 41, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 192828, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 193628, .adv_w = 704, .box_w = 41, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 194428, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 195188, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 195988, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 196768, .adv_w = 704, .box_w = 37, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 197490, .adv_w = 704, .box_w = 37, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 198249, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 199049, .adv_w = 704, .box_w = 37, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 199808, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 200649, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 201429, .adv_w = 704, .box_w = 41, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 202229, .adv_w = 704, .box_w = 36, .box_h = 37, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 202895, .adv_w = 704, .box_w = 38, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 203636, .adv_w = 704, .box_w = 37, .box_h = 39, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 204358, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 205199, .adv_w = 704, .box_w = 42, .box_h = 39, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 206018, .adv_w = 704, .box_w = 42, .box_h = 38, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 206816, .adv_w = 704, .box_w = 42, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 207635, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 208395, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 209256, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 210076, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 210937, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 211778, .adv_w = 704, .box_w = 38, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 212557, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 213377, .adv_w = 704, .box_w = 42, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 214175, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 214995, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 215815, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 216635, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 217435, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 218255, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 219096, .adv_w = 704, .box_w = 39, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 219915, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 220735, .adv_w = 704, .box_w = 37, .box_h = 40, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 221475, .adv_w = 704, .box_w = 39, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 222294, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 223155, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 223996, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 224857, .adv_w = 704, .box_w = 41, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 225739, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 226580, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 227441, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 228261, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 229122, .adv_w = 704, .box_w = 38, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 229901, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 230701, .adv_w = 704, .box_w = 38, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 231480, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 232362, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 233182, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 233982, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 234802, .adv_w = 704, .box_w = 38, .box_h = 37, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 235505, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 236346, .adv_w = 704, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 237126, .adv_w = 704, .box_w = 38, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 237886, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 238646, .adv_w = 704, .box_w = 40, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 239486, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 240347, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 241187, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 242028, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 242808, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 243649, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 244469, .adv_w = 704, .box_w = 36, .box_h = 40, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 245189, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 245969, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 246789, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 247630, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 248491, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 249311, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 250131, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 250931, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 251751, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 252612, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 253473, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 254314, .adv_w = 704, .box_w = 39, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 255133, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 255933, .adv_w = 704, .box_w = 40, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 256773, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 257593, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 258434, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 259295, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 260115, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 260935, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 261817, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 262678, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 263518, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 264338, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 265199, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 266060, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 266942, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 267783, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 159937, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 160777, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 161638, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 162458, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 163258, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 164140, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 164980, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 165800, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 166682, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 167543, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 168363, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 169224, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 170064, .adv_w = 704, .box_w = 41, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 170946, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 171726, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 172587, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 173387, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 174227, .adv_w = 704, .box_w = 39, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 175007, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 175827, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 176667, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 177528, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 178348, .adv_w = 704, .box_w = 35, .box_h = 40, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 179048, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 179888, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 180729, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 181509, .adv_w = 704, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 182289, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 183089, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 183909, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 184729, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 185529, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 186349, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 187210, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 188010, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 188851, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 189712, .adv_w = 704, .box_w = 42, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 190531, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 191331, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 192151, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 192971, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 193771, .adv_w = 704, .box_w = 41, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 194550, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 195350, .adv_w = 704, .box_w = 41, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 196150, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 196910, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 197710, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 198490, .adv_w = 704, .box_w = 37, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 199212, .adv_w = 704, .box_w = 37, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 199971, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 200771, .adv_w = 704, .box_w = 37, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 201530, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 202371, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 203151, .adv_w = 704, .box_w = 41, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 203951, .adv_w = 704, .box_w = 36, .box_h = 37, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 204617, .adv_w = 704, .box_w = 38, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 205358, .adv_w = 704, .box_w = 37, .box_h = 39, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 206080, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 206921, .adv_w = 704, .box_w = 42, .box_h = 39, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 207740, .adv_w = 704, .box_w = 42, .box_h = 38, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 208538, .adv_w = 704, .box_w = 42, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 209357, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 210117, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 210978, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 211798, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 212659, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 213500, .adv_w = 704, .box_w = 38, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 214279, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 215099, .adv_w = 704, .box_w = 42, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 215897, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 216717, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 217537, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 218357, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 219157, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 219977, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 220818, .adv_w = 704, .box_w = 39, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 221637, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 222457, .adv_w = 704, .box_w = 37, .box_h = 40, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 223197, .adv_w = 704, .box_w = 39, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 224016, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 224877, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 225718, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 226579, .adv_w = 704, .box_w = 41, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 227461, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 228302, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 229163, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 229983, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 230844, .adv_w = 704, .box_w = 38, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 231623, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 232423, .adv_w = 704, .box_w = 38, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 233202, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 234084, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 234904, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 235704, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 236524, .adv_w = 704, .box_w = 38, .box_h = 37, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 237227, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 238068, .adv_w = 704, .box_w = 39, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 238848, .adv_w = 704, .box_w = 38, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 239608, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 240368, .adv_w = 704, .box_w = 40, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 241208, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 242069, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 242909, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 243750, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 244530, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 245371, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 246191, .adv_w = 704, .box_w = 36, .box_h = 40, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 246911, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 247691, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 248511, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 249352, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 250193, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 251054, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 251874, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 252694, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 253494, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 254314, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 255175, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 256036, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 256877, .adv_w = 704, .box_w = 39, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 257696, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 258496, .adv_w = 704, .box_w = 40, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 259336, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 260156, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 260997, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 261858, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 262678, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 263498, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 264380, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 265241, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 266081, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 266901, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 267762, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, {.bitmap_index = 268623, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 269505, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 270366, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 271227, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 272047, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 272908, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 273748, .adv_w = 704, .box_w = 39, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 274509, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 275329, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 276211, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 277093, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 277913, .adv_w = 704, .box_w = 41, .box_h = 39, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 278713, .adv_w = 704, .box_w = 40, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 279553, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 280414, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 281296, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 282056, .adv_w = 704, .box_w = 29, .box_h = 39, .ofs_x = 8, .ofs_y = -4}, - {.bitmap_index = 282622, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 283422, .adv_w = 704, .box_w = 40, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 284162, .adv_w = 704, .box_w = 37, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 284902, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 285682, .adv_w = 704, .box_w = 38, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 286423, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 287264, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 288105, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 288966, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 289786, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 290647, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 291529, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 292309, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 293149, .adv_w = 704, .box_w = 41, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 293949, .adv_w = 704, .box_w = 43, .box_h = 40, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 294809, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 295670, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 296511, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 297331, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 298171, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 299011, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 299872, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 300733, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 301594, .adv_w = 704, .box_w = 39, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 302296, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 303076, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 303937, .adv_w = 704, .box_w = 39, .box_h = 38, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 304678, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 305498, .adv_w = 704, .box_w = 42, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 306317, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 307117, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 307937, .adv_w = 704, .box_w = 40, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 308777, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 309557, .adv_w = 704, .box_w = 41, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 310439, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 311239, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 312100, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 312920, .adv_w = 704, .box_w = 42, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 313739, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 314600, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 315482, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 316323, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 317143, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 317963, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 318845, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 319706, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 320526, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 321387, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 322187, .adv_w = 704, .box_w = 42, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 322985, .adv_w = 704, .box_w = 42, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 323804, .adv_w = 704, .box_w = 42, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 324623, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 325383, .adv_w = 704, .box_w = 36, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 326085, .adv_w = 704, .box_w = 39, .box_h = 40, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 326865, .adv_w = 704, .box_w = 38, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 327587, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 328407, .adv_w = 704, .box_w = 38, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 329167, .adv_w = 704, .box_w = 37, .box_h = 41, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 329926, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 330787, .adv_w = 704, .box_w = 31, .box_h = 38, .ofs_x = 7, .ofs_y = -4}, - {.bitmap_index = 331376, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 332136, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 332976, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 333817, .adv_w = 704, .box_w = 39, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 334597, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 335437, .adv_w = 704, .box_w = 41, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 336237, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 337098, .adv_w = 704, .box_w = 39, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 337859, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 338659, .adv_w = 704, .box_w = 38, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 339457, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 340318, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 341159, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 342020, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 342861, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 343661, .adv_w = 704, .box_w = 42, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 344564, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 345405, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 346287, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 347128, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 347948, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 348748, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 349548, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 350430, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 351190, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 352010, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 352850, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 353711, .adv_w = 704, .box_w = 42, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 354614, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 355454, .adv_w = 704, .box_w = 38, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 356176, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 356936, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 357736, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 358496, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 359316, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 360116, .adv_w = 704, .box_w = 31, .box_h = 40, .ofs_x = 7, .ofs_y = -4}, - {.bitmap_index = 360736, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 361556, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 362336, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 363136, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 363976, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 364858, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 365719, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 366580, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 367421, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 368282, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 369082, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 369922, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 370804, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 371686, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 372547, .adv_w = 704, .box_w = 37, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 373324, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 374185, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 375005, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 375846, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 376728, .adv_w = 704, .box_w = 41, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 377528, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 378389, .adv_w = 704, .box_w = 40, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 379229, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 380069, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 380951, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 381771, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 382632, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 383432, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 384293, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 385093, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 385933, .adv_w = 704, .box_w = 41, .box_h = 38, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 386712, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 387573, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 388434, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 389275, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 390136, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 390977, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 391859, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 392741, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 393602, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 394382, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 395223, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 396023, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 396884, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 397724, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 398564, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 399384, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 400245, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 401045, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 401865, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 402726, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 403608, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 404469, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 405310, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 406130, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 406930, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 407690, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 408490, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 409351, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 410212, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 411094, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 411894, .adv_w = 704, .box_w = 38, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 412692, .adv_w = 704, .box_w = 36, .box_h = 41, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 413430, .adv_w = 704, .box_w = 37, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 414207, .adv_w = 704, .box_w = 40, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 415047, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 415867, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 416667, .adv_w = 704, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 417408, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 418228, .adv_w = 704, .box_w = 38, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 418969, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 419769, .adv_w = 704, .box_w = 41, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 420548, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 421348, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 422209, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 423049, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 423910, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 424771, .adv_w = 704, .box_w = 39, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 425551, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 426433, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 427253, .adv_w = 704, .box_w = 44, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 428243, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 428969, .adv_w = 704, .box_w = 44, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 429827, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 430553, .adv_w = 484, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 431034, .adv_w = 704, .box_w = 44, .box_h = 44, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 432002, .adv_w = 704, .box_w = 42, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 432947, .adv_w = 792, .box_w = 50, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 433922, .adv_w = 704, .box_w = 44, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 434912, .adv_w = 792, .box_w = 50, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 435737, .adv_w = 704, .box_w = 44, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 436727, .adv_w = 352, .box_w = 22, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 437112, .adv_w = 528, .box_w = 33, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 437690, .adv_w = 792, .box_w = 50, .box_h = 43, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 438765, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 439491, .adv_w = 484, .box_w = 31, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 440189, .adv_w = 616, .box_w = 29, .box_h = 41, .ofs_x = 5, .ofs_y = -4}, - {.bitmap_index = 440784, .adv_w = 616, .box_w = 39, .box_h = 47, .ofs_x = 0, .ofs_y = -7}, - {.bitmap_index = 441701, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 442462, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 443223, .adv_w = 616, .box_w = 28, .box_h = 41, .ofs_x = 5, .ofs_y = -4}, - {.bitmap_index = 443797, .adv_w = 616, .box_w = 41, .box_h = 39, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 444597, .adv_w = 440, .box_w = 24, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 445065, .adv_w = 440, .box_w = 24, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 445533, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 446294, .adv_w = 616, .box_w = 39, .box_h = 9, .ofs_x = 0, .ofs_y = 12}, - {.bitmap_index = 446470, .adv_w = 792, .box_w = 50, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 447295, .adv_w = 880, .box_w = 56, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 448555, .adv_w = 792, .box_w = 52, .box_h = 45, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 449725, .adv_w = 704, .box_w = 44, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 450583, .adv_w = 616, .box_w = 38, .box_h = 23, .ofs_x = 0, .ofs_y = 5}, - {.bitmap_index = 451020, .adv_w = 616, .box_w = 38, .box_h = 23, .ofs_x = 0, .ofs_y = 5}, - {.bitmap_index = 451457, .adv_w = 880, .box_w = 55, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 452420, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 453146, .adv_w = 704, .box_w = 44, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 454136, .adv_w = 704, .box_w = 45, .box_h = 45, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 455149, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 455910, .adv_w = 616, .box_w = 39, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 456788, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 457549, .adv_w = 616, .box_w = 39, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 458232, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 458958, .adv_w = 440, .box_w = 29, .box_h = 45, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 459611, .adv_w = 616, .box_w = 39, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 460489, .adv_w = 616, .box_w = 39, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 461367, .adv_w = 792, .box_w = 50, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 462192, .adv_w = 704, .box_w = 46, .box_h = 46, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 463250, .adv_w = 528, .box_w = 33, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 463993, .adv_w = 880, .box_w = 55, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 465121, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 465919, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 466717, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 467515, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 468313, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 469111, .adv_w = 880, .box_w = 56, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 470091, .adv_w = 616, .box_w = 34, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 470856, .adv_w = 616, .box_w = 39, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 471734, .adv_w = 704, .box_w = 45, .box_h = 45, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 472747, .adv_w = 880, .box_w = 55, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 473655, .adv_w = 528, .box_w = 33, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 474398, .adv_w = 708, .box_w = 45, .box_h = 29, .ofs_x = 0, .ofs_y = 2} + {.bitmap_index = 269505, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 270346, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 271186, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 272068, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 272929, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 273790, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 274610, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 275471, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 276311, .adv_w = 704, .box_w = 39, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 277072, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 277892, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 278774, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 279656, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 280476, .adv_w = 704, .box_w = 41, .box_h = 39, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 281276, .adv_w = 704, .box_w = 40, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 282116, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 282977, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 283859, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 284619, .adv_w = 704, .box_w = 29, .box_h = 39, .ofs_x = 8, .ofs_y = -4}, + {.bitmap_index = 285185, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 285985, .adv_w = 704, .box_w = 40, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 286725, .adv_w = 704, .box_w = 37, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 287465, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 288245, .adv_w = 704, .box_w = 38, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 288986, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 289827, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 290668, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 291529, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 292349, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 293210, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 294092, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 294872, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 295712, .adv_w = 704, .box_w = 41, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 296512, .adv_w = 704, .box_w = 43, .box_h = 40, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 297372, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 298233, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 299074, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 299894, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 300734, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 301574, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 302435, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 303296, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 304157, .adv_w = 704, .box_w = 39, .box_h = 36, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 304859, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 305639, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 306500, .adv_w = 704, .box_w = 39, .box_h = 38, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 307241, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 308061, .adv_w = 704, .box_w = 42, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 308880, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 309680, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 310500, .adv_w = 704, .box_w = 40, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 311340, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 312120, .adv_w = 704, .box_w = 41, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 313002, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 313802, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 314663, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 315483, .adv_w = 704, .box_w = 42, .box_h = 39, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 316302, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 317163, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 318045, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 318886, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 319706, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 320526, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 321408, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 322269, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 323089, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 323869, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 324730, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 325530, .adv_w = 704, .box_w = 42, .box_h = 38, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 326328, .adv_w = 704, .box_w = 42, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 327147, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 327987, .adv_w = 704, .box_w = 42, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 328806, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 329566, .adv_w = 704, .box_w = 36, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 330268, .adv_w = 704, .box_w = 39, .box_h = 40, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 331048, .adv_w = 704, .box_w = 38, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 331770, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 332590, .adv_w = 704, .box_w = 38, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 333350, .adv_w = 704, .box_w = 37, .box_h = 41, .ofs_x = 4, .ofs_y = -5}, + {.bitmap_index = 334109, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 334970, .adv_w = 704, .box_w = 31, .box_h = 38, .ofs_x = 7, .ofs_y = -4}, + {.bitmap_index = 335559, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 336319, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 337159, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 338000, .adv_w = 704, .box_w = 39, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 338780, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 339620, .adv_w = 704, .box_w = 41, .box_h = 39, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 340420, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 341281, .adv_w = 704, .box_w = 39, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 342042, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 342842, .adv_w = 704, .box_w = 38, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 343640, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 344501, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 345342, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 346203, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 347044, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 347844, .adv_w = 704, .box_w = 42, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 348747, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 349588, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 350470, .adv_w = 704, .box_w = 39, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 351289, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 352130, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 352950, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 353750, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 354550, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 355432, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 356192, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 357012, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 357852, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 358713, .adv_w = 704, .box_w = 42, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 359616, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 360456, .adv_w = 704, .box_w = 38, .box_h = 38, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 361178, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 361938, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 362738, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 363498, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 364318, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 365118, .adv_w = 704, .box_w = 31, .box_h = 40, .ofs_x = 7, .ofs_y = -4}, + {.bitmap_index = 365738, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 366558, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 367338, .adv_w = 704, .box_w = 39, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 368099, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 368899, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 369739, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 370621, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 371482, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 372343, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 373184, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 374045, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 374845, .adv_w = 704, .box_w = 38, .box_h = 37, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 375548, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 376388, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 377270, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 378152, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 379013, .adv_w = 704, .box_w = 37, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 379790, .adv_w = 704, .box_w = 38, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 380550, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 381411, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 382231, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 383072, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 383954, .adv_w = 704, .box_w = 41, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 384754, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 385615, .adv_w = 704, .box_w = 40, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 386455, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 387295, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 388177, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 388997, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 389837, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 390698, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 391498, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 392359, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 393159, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 393999, .adv_w = 704, .box_w = 41, .box_h = 38, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 394778, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 395639, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 396500, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 397341, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 398202, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 399043, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 399925, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 400807, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 401668, .adv_w = 704, .box_w = 40, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 402448, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 403289, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 404089, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 404950, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 405790, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 406630, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 407450, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 408311, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 409111, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 409931, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 410792, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 411674, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 412535, .adv_w = 704, .box_w = 41, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 413376, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 414196, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 414996, .adv_w = 704, .box_w = 40, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 415756, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 416556, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 417417, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 418278, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 419160, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 419960, .adv_w = 704, .box_w = 38, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 420758, .adv_w = 704, .box_w = 36, .box_h = 41, .ofs_x = 4, .ofs_y = -5}, + {.bitmap_index = 421496, .adv_w = 704, .box_w = 37, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 422273, .adv_w = 704, .box_w = 40, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 423113, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 423933, .adv_w = 704, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 424733, .adv_w = 704, .box_w = 39, .box_h = 38, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 425474, .adv_w = 704, .box_w = 40, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 426294, .adv_w = 704, .box_w = 38, .box_h = 39, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 427035, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 427835, .adv_w = 704, .box_w = 41, .box_h = 38, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 428614, .adv_w = 704, .box_w = 40, .box_h = 40, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 429414, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 430275, .adv_w = 704, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 431115, .adv_w = 704, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 431976, .adv_w = 704, .box_w = 41, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 432837, .adv_w = 704, .box_w = 39, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 433617, .adv_w = 704, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 434499, .adv_w = 704, .box_w = 41, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 435319, .adv_w = 704, .box_w = 44, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 436309, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 437035, .adv_w = 704, .box_w = 44, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 437893, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 438619, .adv_w = 484, .box_w = 31, .box_h = 31, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 439100, .adv_w = 704, .box_w = 44, .box_h = 44, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 440068, .adv_w = 704, .box_w = 42, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 441013, .adv_w = 792, .box_w = 50, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 441988, .adv_w = 704, .box_w = 44, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 442978, .adv_w = 792, .box_w = 50, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 443803, .adv_w = 704, .box_w = 44, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 444793, .adv_w = 352, .box_w = 22, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 445178, .adv_w = 528, .box_w = 33, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 445756, .adv_w = 792, .box_w = 50, .box_h = 43, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 446831, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 447557, .adv_w = 484, .box_w = 31, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 448255, .adv_w = 616, .box_w = 29, .box_h = 41, .ofs_x = 5, .ofs_y = -4}, + {.bitmap_index = 448850, .adv_w = 616, .box_w = 39, .box_h = 47, .ofs_x = 0, .ofs_y = -7}, + {.bitmap_index = 449767, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 450528, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 451289, .adv_w = 616, .box_w = 28, .box_h = 41, .ofs_x = 5, .ofs_y = -4}, + {.bitmap_index = 451863, .adv_w = 616, .box_w = 41, .box_h = 39, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 452663, .adv_w = 440, .box_w = 24, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 453131, .adv_w = 440, .box_w = 24, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 453599, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 454360, .adv_w = 616, .box_w = 39, .box_h = 9, .ofs_x = 0, .ofs_y = 12}, + {.bitmap_index = 454536, .adv_w = 792, .box_w = 50, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 455361, .adv_w = 880, .box_w = 56, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 456621, .adv_w = 792, .box_w = 52, .box_h = 45, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 457791, .adv_w = 704, .box_w = 44, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 458649, .adv_w = 616, .box_w = 38, .box_h = 23, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 459086, .adv_w = 616, .box_w = 38, .box_h = 23, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 459523, .adv_w = 880, .box_w = 55, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 460486, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 461212, .adv_w = 704, .box_w = 44, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 462202, .adv_w = 704, .box_w = 45, .box_h = 45, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 463215, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 463976, .adv_w = 616, .box_w = 39, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 464854, .adv_w = 616, .box_w = 39, .box_h = 39, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 465615, .adv_w = 616, .box_w = 39, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 466298, .adv_w = 704, .box_w = 44, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 467024, .adv_w = 440, .box_w = 29, .box_h = 45, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 467677, .adv_w = 616, .box_w = 39, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 468555, .adv_w = 616, .box_w = 39, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 469433, .adv_w = 792, .box_w = 50, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 470258, .adv_w = 704, .box_w = 46, .box_h = 46, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 471316, .adv_w = 528, .box_w = 33, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 472059, .adv_w = 880, .box_w = 55, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 473187, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 473985, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 474783, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 475581, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 476379, .adv_w = 880, .box_w = 55, .box_h = 29, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 477177, .adv_w = 880, .box_w = 56, .box_h = 35, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 478157, .adv_w = 616, .box_w = 34, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 478922, .adv_w = 616, .box_w = 39, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 479800, .adv_w = 704, .box_w = 45, .box_h = 45, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 480813, .adv_w = 880, .box_w = 55, .box_h = 33, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 481721, .adv_w = 528, .box_w = 33, .box_h = 45, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 482464, .adv_w = 708, .box_w = 45, .box_h = 29, .ofs_x = 0, .ofs_y = 2} }; /*--------------------- @@ -61989,55 +63031,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -62069,7 +63113,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -62174,7 +63218,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -62273,7 +63318,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_46.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_46.c index 034a4de2..88029044 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_46.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_46.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 46 px * Bpp: 4 - * Opts: --bpp 4 --size 46 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_46.c + * Opts: --bpp 4 --size 46 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_46.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -22745,6 +22745,121 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0xb3, 0x0, 0x0, 0x0, 0x0, 0x16, 0x74, 0x0, 0x0, + /* U+4F53 "体" */ + 0x0, 0x0, 0x0, 0x0, 0xb, 0x81, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x90, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0xb1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0xfd, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xff, 0x70, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0x60, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xbf, 0xff, 0x10, 0xc, 0xee, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdf, 0xff, 0xed, 0xdd, 0xdd, 0xdd, + 0xdd, 0xde, 0xe9, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xff, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf9, 0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0x0, + 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x2, 0x21, + 0x11, 0x0, 0x2, 0xff, 0xfe, 0xff, 0xef, 0xfa, + 0x0, 0x0, 0x0, 0x11, 0x21, 0x0, 0x0, 0x0, + 0x8f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xff, 0xec, 0xff, 0xbf, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, + 0xbc, 0xff, 0x7f, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x7c, 0xff, + 0x7b, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xff, 0x2c, 0xff, 0x76, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xff, 0x5f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0xfd, 0xc, 0xff, 0x71, 0xff, 0xf6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf7, 0x4f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xf7, + 0xc, 0xff, 0x70, 0xaf, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xff, 0xd0, 0x4f, 0xff, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xff, 0xf1, 0xc, 0xff, + 0x70, 0x3f, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xff, 0x40, 0x4f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0xa0, 0xc, 0xff, 0x70, 0xc, + 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7a, + 0x0, 0x4f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xff, 0x20, 0xc, 0xff, 0x70, 0x3, 0xff, 0xf9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x4f, + 0xff, 0x0, 0x0, 0x0, 0x6, 0xff, 0xfa, 0x0, + 0xc, 0xff, 0x70, 0x0, 0xaf, 0xff, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0x0, + 0x0, 0x0, 0x2f, 0xff, 0xf2, 0x0, 0xc, 0xff, + 0x70, 0x0, 0x1e, 0xff, 0xf3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0x0, 0x0, 0x0, + 0xdf, 0xff, 0x70, 0x0, 0xc, 0xff, 0x70, 0x0, + 0x5, 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xff, 0x0, 0x0, 0xc, 0xff, 0xfc, + 0x0, 0x0, 0xc, 0xff, 0x70, 0x0, 0x0, 0xaf, + 0xff, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xff, 0x0, 0x0, 0xbf, 0xff, 0xe2, 0x0, 0x0, + 0xc, 0xff, 0x70, 0x0, 0x0, 0xc, 0xff, 0xff, + 0x60, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0x0, + 0x1c, 0xff, 0xff, 0x40, 0x0, 0x0, 0xc, 0xff, + 0x70, 0x0, 0x0, 0x1, 0xdf, 0xff, 0xfa, 0x10, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0x2, 0xdf, 0xff, + 0xf7, 0x0, 0x0, 0x0, 0xc, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x2e, 0xff, 0xff, 0xf3, 0x0, 0x0, + 0x0, 0x4f, 0xff, 0x5f, 0xff, 0xff, 0x80, 0x34, + 0x33, 0x32, 0x2c, 0xff, 0x82, 0x22, 0x33, 0x41, + 0x2, 0xdf, 0xff, 0x50, 0x0, 0x0, 0x0, 0x4f, + 0xff, 0x1a, 0xff, 0xf9, 0x0, 0x9f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x1c, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0x0, + 0x8f, 0x80, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0x0, 0x4, 0x0, + 0x0, 0x8d, 0xdc, 0xcb, 0xbe, 0xff, 0xdb, 0xbb, + 0xcc, 0xd4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xff, 0x70, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, + 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6f, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xa0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x53, 0x10, 0x0, @@ -23089,6 +23204,127 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7d, 0xa6, 0x20, 0x0, + /* U+4FC4 "俄" */ + 0x0, 0x0, 0x0, 0x0, 0x3, 0x83, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x15, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0xea, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, + 0xf7, 0x0, 0x0, 0x0, 0x0, 0x2, 0x99, 0x0, + 0xe, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0x37, 0xcf, 0xff, 0x20, 0xe, 0xff, + 0x70, 0x0, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0xff, 0x80, 0x2, 0x58, 0xbf, + 0xff, 0xff, 0xff, 0xb0, 0xd, 0xff, 0x60, 0x2b, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xff, 0x10, 0xc, 0xff, 0xff, 0xff, 0xff, + 0xda, 0x71, 0xd, 0xff, 0x60, 0x4f, 0xff, 0xe1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xfa, + 0x0, 0x3, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, + 0xd, 0xff, 0x60, 0x9, 0xff, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xff, 0xf3, 0x0, 0x0, + 0xbc, 0x75, 0xff, 0xe0, 0x0, 0x0, 0xd, 0xff, + 0x60, 0x1, 0xef, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x2, + 0xff, 0xe0, 0x0, 0x0, 0xc, 0xff, 0x60, 0x0, + 0x6f, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x9f, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x2, 0xff, 0xe0, + 0x0, 0x0, 0xc, 0xff, 0x60, 0x0, 0xe, 0xfe, + 0x60, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, + 0xb, 0xff, 0x60, 0x0, 0x6, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0xb, 0xff, + 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x2, + 0xff, 0xe0, 0x0, 0x0, 0xb, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, + 0xff, 0x50, 0x0, 0xed, 0xcc, 0xcc, 0xff, 0xfc, + 0xcc, 0xcc, 0xce, 0xff, 0xdc, 0xcc, 0xcc, 0xcd, + 0xde, 0x10, 0x0, 0x6, 0xff, 0xff, 0xff, 0x50, + 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, + 0x0, 0x2f, 0xff, 0xbe, 0xff, 0x50, 0x1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x0, 0xdf, + 0xff, 0x3e, 0xff, 0x50, 0x0, 0x43, 0x22, 0x13, + 0xff, 0xe1, 0x11, 0x11, 0x1a, 0xff, 0x71, 0x11, + 0x12, 0x22, 0x34, 0x0, 0xb, 0xff, 0xfa, 0xe, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x2, 0xff, 0xe0, + 0x0, 0x0, 0x8, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xbf, 0xf1, 0xe, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, + 0x7, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9, 0x60, 0xe, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0x5, 0xff, + 0xb0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, 0x0, 0x2, + 0xff, 0xe0, 0x0, 0x0, 0x4, 0xff, 0xd0, 0x0, + 0xd, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x2, 0xff, 0xe0, + 0x2, 0x91, 0x1, 0xff, 0xf0, 0x0, 0x4f, 0xfd, + 0x50, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x2, 0xff, 0xf6, 0xcf, 0xf1, + 0x0, 0xff, 0xf2, 0x0, 0xbf, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x4, 0xff, 0xff, 0xff, 0xf2, 0x0, 0xdf, + 0xf5, 0x4, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, 0x49, 0xef, + 0xff, 0xff, 0xfe, 0xa1, 0x0, 0xaf, 0xf8, 0xc, + 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x50, 0x49, 0xcf, 0xff, 0xff, 0xff, 0xf9, + 0x40, 0x0, 0x0, 0x7f, 0xfc, 0x5f, 0xff, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, + 0x4f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x3f, 0xff, 0xef, 0xf9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, 0xc, 0xff, + 0xfb, 0x63, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0x50, 0x5, 0xe8, 0x10, 0x2, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x2, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0xc, 0xff, 0xfa, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0xaf, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0xa, 0xff, + 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, 0x0, 0x2, + 0xff, 0xe0, 0x0, 0x1, 0xbf, 0xff, 0xef, 0xff, + 0x20, 0x1, 0x60, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x2, 0xff, 0xe0, + 0x0, 0x4e, 0xff, 0xfb, 0x1e, 0xff, 0xb0, 0x2, + 0xfb, 0x40, 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x2, 0xff, 0xe0, 0x1a, 0xff, + 0xff, 0xb0, 0x7, 0xff, 0xf4, 0x4, 0xff, 0xf3, + 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x7, 0xff, 0xe0, 0xc, 0xff, 0xfa, 0x0, + 0x0, 0xdf, 0xfe, 0x17, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0xf, 0xff, 0x60, 0x0, 0x9, 0xbb, 0xdf, + 0xff, 0xd0, 0x0, 0xdf, 0x80, 0x0, 0x0, 0x3f, + 0xff, 0xef, 0xff, 0xa0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x60, 0x0, 0x7, 0xff, 0xff, 0xff, 0xa0, + 0x0, 0x35, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, + 0xff, 0x50, 0x0, 0x0, 0x0, 0xf, 0xff, 0x70, + 0x0, 0x1, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, + 0xcf, 0xfe, 0x93, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb, 0xff, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0xa0, 0x0, 0x0, 0x44, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8c, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + /* U+4FDD "保" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -34816,6 +35052,124 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xf1, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xa7, 0x51, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9, 0x91, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xfe, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, + 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, + 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xff, 0xfd, 0x0, 0x33, + 0x22, 0x21, 0x11, 0x11, 0x1e, 0xff, 0x90, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0xf2, 0x0, 0xef, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0xee, 0xee, 0xee, + 0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0xdf, + 0xff, 0x50, 0x0, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf6, 0x0, 0x0, 0x0, 0x9, 0xff, 0xf9, 0x0, + 0x0, 0xde, 0xdc, 0xcc, 0xcc, 0xcc, 0xdf, 0xff, + 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xde, 0xe5, 0x0, + 0x0, 0x0, 0x6f, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9f, 0xfd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf4, + 0x0, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xef, 0xff, 0x70, 0x0, 0x6f, + 0xb2, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, + 0x0, 0xbf, 0xfa, 0x0, 0x0, 0xef, 0xfe, 0x16, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xc, + 0xc0, 0x0, 0x8, 0xff, 0xf6, 0x6, 0xff, 0xe9, + 0x99, 0xbf, 0xfe, 0x99, 0x9d, 0xff, 0xb9, 0x99, + 0xdf, 0xf8, 0x0, 0x0, 0x0, 0x1, 0x10, 0x0, + 0x2f, 0xff, 0xb0, 0x5, 0xff, 0xc0, 0x0, 0x4f, + 0xfc, 0x0, 0xa, 0xff, 0x60, 0x0, 0xaf, 0xf7, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, + 0x10, 0x5, 0xff, 0xc0, 0x0, 0x4f, 0xfc, 0x0, + 0xa, 0xff, 0x60, 0x0, 0xaf, 0xf7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xff, 0xf6, 0x0, 0x4, + 0xff, 0xc0, 0x0, 0x4f, 0xfc, 0x0, 0xa, 0xff, + 0x60, 0x0, 0xaf, 0xf6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0xc0, 0x0, 0x5, 0xff, 0xc0, + 0x0, 0x4f, 0xfc, 0x0, 0xa, 0xff, 0x60, 0x0, + 0xaf, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xff, 0x30, 0x0, 0x5, 0xff, 0xc0, 0x0, 0x4f, + 0xfc, 0x0, 0xa, 0xff, 0x60, 0x0, 0xaf, 0xf7, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xfe, 0x0, + 0x0, 0x6, 0xff, 0xeb, 0xbb, 0xcf, 0xfe, 0xbb, + 0xbe, 0xff, 0xdb, 0xbb, 0xef, 0xf8, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xff, 0xfe, 0x0, 0x0, 0x7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf9, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xff, 0xff, 0x8f, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0xff, 0xf6, 0x5f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, + 0x90, 0x5f, 0xfe, 0x0, 0x0, 0xef, 0xfe, 0xee, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xee, 0xef, 0xf9, 0x0, 0x0, 0xac, 0x0, 0x5f, + 0xfe, 0x0, 0x0, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf9, 0x0, 0x0, 0x11, 0x0, 0x5f, 0xfe, 0x0, + 0x0, 0xef, 0xfe, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xef, 0xf9, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0xfe, 0x0, 0x0, 0x6, 0x10, 0x0, 0x46, 0x63, + 0x8, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xfe, 0x0, + 0x0, 0x2f, 0xfc, 0x20, 0xcf, 0xf9, 0x0, 0xdf, + 0xfe, 0x0, 0x0, 0x0, 0x2c, 0xf7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xfe, 0x0, 0x0, 0x7f, + 0xff, 0x10, 0xbf, 0xf8, 0x0, 0x3f, 0xff, 0x80, + 0x0, 0x0, 0xef, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x5f, 0xfe, 0x0, 0x0, 0xcf, 0xfa, 0x0, + 0xbf, 0xf7, 0x0, 0xa, 0xff, 0xd0, 0x0, 0x0, + 0x3f, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0xfe, 0x0, 0x2, 0xff, 0xf4, 0x0, 0xaf, 0xf7, + 0x0, 0x2, 0xf8, 0x0, 0x2, 0x0, 0x7, 0xff, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xfe, 0x0, + 0x8, 0xff, 0xe0, 0x0, 0xaf, 0xf6, 0x0, 0x0, + 0x10, 0x0, 0xd, 0xb4, 0x0, 0xbf, 0xff, 0x60, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0x0, 0xe, 0xff, + 0x80, 0x0, 0x9f, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0xe0, 0x2f, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0x5f, 0xff, 0x0, 0x5f, 0xff, 0x30, 0x0, + 0x8f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, + 0x90, 0x7, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0xff, 0x0, 0x28, 0xed, 0x0, 0x0, 0x6f, 0xff, + 0xeb, 0xaa, 0xaa, 0xac, 0xff, 0xff, 0x30, 0x0, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0x0, + 0x0, 0x3, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xcf, 0xff, 0xff, 0xff, 0xff, + 0xfd, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7f, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -45093,6 +45447,116 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x29, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x40, 0x0, + /* U+7259 "牙" */ + 0x0, 0x0, 0x21, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x21, 0x0, 0x0, 0x0, 0x0, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0xef, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x21, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xff, 0xf1, 0x0, 0x0, 0x1, 0x11, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xff, 0xfa, 0x20, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xff, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xa0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xef, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xfe, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, + 0xff, 0xfb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbc, 0xd4, + 0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0x0, 0x0, 0x2, 0xfc, 0x85, 0x43, + 0x22, 0x22, 0x22, 0x22, 0x2e, 0xff, 0xfa, 0xff, + 0xf3, 0x22, 0x22, 0x22, 0x22, 0x33, 0x41, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0xa8, 0xff, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xef, 0xff, + 0x28, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xf8, 0x8, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0xff, 0xe0, 0x8, 0xff, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, 0x40, 0x8, + 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1d, 0xff, 0xf9, 0x0, 0x8, 0xff, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xc0, + 0x0, 0x8, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xff, 0xfe, 0x10, 0x0, 0x8, 0xff, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xcf, 0xff, + 0xf2, 0x0, 0x0, 0x8, 0xff, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3e, 0xff, 0xfe, 0x30, 0x0, 0x0, + 0x8, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, + 0xff, 0xe3, 0x0, 0x0, 0x0, 0x8, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xbf, 0xff, 0xfd, 0x20, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6e, + 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4d, 0xff, 0xff, 0xf7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, + 0xff, 0xff, 0xfd, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5c, 0xff, 0xff, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, + 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, + 0xff, 0xff, 0xff, 0xc2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x5f, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xcf, 0xff, 0xe5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xad, 0xef, + 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1d, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xa0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0xff, 0xfb, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xec, 0x96, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+72B6 "状" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xee, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -45553,6 +46017,124 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x45, 0x66, 0x55, + 0x55, 0x55, 0x55, 0x55, 0x67, 0x20, 0x2, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, + 0x0, 0xf, 0xff, 0x3c, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x40, 0x2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x2c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x40, 0x2, 0xff, 0xff, 0xef, 0xff, 0xff, + 0xff, 0xf2, 0x0, 0x0, 0x0, 0xf, 0xff, 0x26, + 0x87, 0x66, 0x6f, 0xff, 0x86, 0x66, 0x78, 0x20, + 0x0, 0x10, 0x0, 0xe, 0xff, 0x50, 0x0, 0x10, + 0x0, 0x0, 0x0, 0xf, 0xff, 0x20, 0x0, 0x0, + 0xf, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xff, 0x10, 0x0, 0x0, 0xf, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x10, 0x0, 0x0, 0xf, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, + 0x0, 0x0, 0x27, 0x75, 0x0, 0xf, 0xff, 0x10, + 0x0, 0x0, 0xf, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, + 0x5f, 0xfd, 0x0, 0xf, 0xff, 0x10, 0x0, 0x0, + 0xf, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, 0x5f, 0xfc, + 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x50, 0x0, 0x0, 0x6f, 0xfc, 0x0, 0xf, + 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, + 0x0, 0x0, 0x6f, 0xfc, 0x0, 0xf, 0xff, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, + 0x7f, 0xfb, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, + 0xf, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, 0x7f, 0xfb, + 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x23, 0x22, 0x1e, + 0xff, 0x51, 0x22, 0x20, 0x8f, 0xfa, 0x0, 0x2f, + 0xfe, 0x2, 0x32, 0x11, 0x2f, 0xff, 0x41, 0x12, + 0x21, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa0, 0x9f, 0xf9, 0x0, 0x3f, 0xfd, 0x9, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, + 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, + 0xaf, 0xf8, 0x0, 0x4f, 0xfc, 0x9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x9e, + 0xdd, 0xcf, 0xff, 0xdd, 0xde, 0x90, 0xbf, 0xf7, + 0x0, 0x6f, 0xfb, 0x7, 0xcb, 0xaa, 0xaf, 0xff, + 0xba, 0xab, 0xc5, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x50, 0x0, 0x0, 0xdf, 0xf6, 0x0, 0x8f, + 0xf9, 0x0, 0x0, 0x0, 0xf, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, + 0x0, 0x0, 0xdf, 0xf5, 0x0, 0xaf, 0xf8, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xf5, 0x0, 0x0, 0x0, + 0xf, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xf3, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xff, 0x80, 0x0, 0x0, 0x0, + 0xf, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xff, 0x30, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x50, 0x0, 0x1, 0x0, 0x0, 0x9f, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x50, + 0x17, 0xdb, 0x0, 0x1, 0xff, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0x79, 0xff, 0xff, + 0x0, 0x8, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0xff, 0xff, 0xfd, 0x10, 0x2f, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xdf, + 0xff, 0xff, 0xfa, 0x40, 0x0, 0xcf, 0xff, 0x30, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x3, 0x8d, 0xff, 0xff, 0xff, 0xe7, + 0x10, 0x0, 0x8, 0xff, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x30, 0x0, 0x0, 0x10, + 0x2f, 0xff, 0xff, 0xff, 0xb4, 0x0, 0x0, 0x0, + 0x5f, 0xff, 0xf1, 0x0, 0x9, 0xff, 0xfe, 0xee, + 0xef, 0xff, 0xee, 0xef, 0xff, 0xf0, 0x8, 0xff, + 0xff, 0x92, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, + 0x50, 0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x0, 0xfe, 0x81, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0xfa, 0x0, 0x0, + 0x9, 0xee, 0xdd, 0xcc, 0xcc, 0xcc, 0xcc, 0xcd, + 0xde, 0xf0, 0x0, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xaf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xce, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + /* U+7406 "理" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, @@ -48680,6 +49262,116 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x22, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x0, 0x0, 0x0, 0x17, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xe8, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xff, 0x93, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xf7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xff, 0xd6, 0x66, 0x66, + 0x67, 0x78, 0x60, 0x0, 0x5f, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x11, 0x23, 0x0, 0x0, 0x0, 0xdf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, + 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x0, 0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa0, 0x5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x6f, 0xff, + 0xb4, 0x4f, 0xff, 0x84, 0x45, 0x56, 0x40, 0x1e, + 0xff, 0xda, 0xaa, 0xff, 0xfb, 0xaa, 0xbb, 0xcc, + 0x0, 0x6, 0xff, 0xfd, 0x0, 0x7, 0xff, 0xd0, + 0x0, 0x0, 0x0, 0xcf, 0xfe, 0x10, 0x0, 0xbf, + 0xf8, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xd1, + 0x0, 0x0, 0xdf, 0xf7, 0x0, 0x0, 0xa, 0xff, + 0xf5, 0x0, 0x0, 0x5f, 0xff, 0x0, 0x0, 0x0, + 0x1b, 0xff, 0xfe, 0x10, 0x0, 0x0, 0x5f, 0xff, + 0x10, 0x0, 0x8f, 0xff, 0x90, 0x0, 0x0, 0xf, + 0xff, 0x70, 0x0, 0x0, 0x7f, 0xff, 0xe2, 0x0, + 0x0, 0x0, 0xd, 0xff, 0x90, 0x7, 0xff, 0xfc, + 0x0, 0x0, 0x0, 0xa, 0xff, 0xe0, 0x0, 0x0, + 0x5, 0xfd, 0x10, 0x0, 0x29, 0x0, 0x5, 0xd5, + 0x0, 0x2, 0xcf, 0xd1, 0x0, 0x0, 0x0, 0x5, + 0xe7, 0x20, 0x0, 0x0, 0x0, 0x41, 0x0, 0x3, + 0xef, 0x90, 0x0, 0x0, 0x0, 0x0, 0x7, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xff, 0xf8, 0x0, 0x1, + 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xef, 0xff, 0x60, 0x6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xf5, 0x6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x0, 0x0, 0x3, 0xaa, 0xa0, + 0x5, 0xff, 0xfb, 0x5, 0xdc, 0xcb, 0xbb, 0xbb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xff, 0xf2, 0x0, + 0x0, 0x4, 0xff, 0xf0, 0x0, 0x9f, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xf2, 0x0, 0x0, 0x3, 0xff, 0xf0, + 0x0, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf1, 0x0, + 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xf1, 0x0, 0x0, 0x2, 0xff, 0xf0, + 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x10, 0x0, 0x0, 0xff, 0xf1, 0x0, + 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0x5f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, + 0x0, 0xff, 0xf1, 0x0, 0x0, 0x2, 0xff, 0xe0, + 0x0, 0x0, 0x5f, 0xfe, 0x77, 0x77, 0x77, 0x77, + 0x8f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf1, 0x0, + 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0x4f, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0xff, 0xf1, 0x0, 0x0, 0x2, 0xff, 0xe0, + 0x0, 0x0, 0x4f, 0xfc, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf1, 0x0, + 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0x4f, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0xff, 0xf1, 0x0, 0x0, 0x2, 0xff, 0xe0, + 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf1, 0x0, + 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0x4f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, + 0x0, 0xff, 0xf1, 0x0, 0x0, 0x2, 0xff, 0xe0, + 0x0, 0x0, 0x4f, 0xff, 0xbb, 0xbb, 0xbb, 0xbb, + 0xcf, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf1, 0x0, + 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0x4f, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0xff, 0xf1, 0x0, 0x0, 0x2, 0xff, 0xe0, + 0x0, 0x0, 0x4f, 0xfc, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf1, 0x0, + 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0x4f, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0xff, 0xf1, 0x0, 0x0, 0x2, 0xff, 0xe0, + 0x0, 0x0, 0x4f, 0xfc, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf1, 0x0, + 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0x5f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, + 0x0, 0xff, 0xf1, 0x0, 0x0, 0x2, 0xff, 0xe0, + 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf1, 0x0, + 0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0x4a, 0xaa, + 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x10, 0x0, + 0x0, 0xff, 0xf1, 0x0, 0x0, 0x2, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf1, 0x0, + 0x0, 0x2, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x44, + 0x5a, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0xb0, 0x0, + 0x0, 0x4, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, + 0xff, 0xfe, 0x20, 0x0, 0x0, 0x4, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xd9, 0x51, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, + 0x0, 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x88, 0x81, 0x0, 0x0, 0x0, 0x0, @@ -50916,6 +51608,116 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0x81, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, 0x42, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0x44, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xff, 0x70, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xd0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x66, 0x65, 0x55, 0x55, 0x55, + 0xff, 0xf9, 0x55, 0x55, 0x55, 0x55, 0x55, 0xbf, + 0xfe, 0x55, 0x55, 0x55, 0x56, 0x67, 0x50, 0xd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0x0, 0xdf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xc, 0xdd, 0xcc, 0xcc, 0xcc, 0xcf, 0xff, 0xdb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbe, 0xff, 0xfc, 0xcc, + 0xcc, 0xcc, 0xdd, 0xeb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xf7, 0x0, 0x8, 0x97, + 0x52, 0x0, 0x9f, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, + 0xee, 0x60, 0x0, 0xbf, 0xff, 0x70, 0x8, 0xee, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xf1, 0x11, + 0x11, 0x11, 0x1a, 0xff, 0xc1, 0x11, 0x11, 0x11, + 0x1f, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xaf, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0xa, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0xf, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xff, 0x0, 0x0, 0x0, 0x0, + 0xaf, 0xfb, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xa0, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0xbf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf4, 0x0, 0x0, 0x0, 0x3, 0x21, 0x11, 0x5, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0xc, 0xff, 0x70, + 0x0, 0x0, 0x0, 0xf, 0xff, 0x50, 0x1, 0x12, + 0x22, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf9, 0x2f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x92, 0xff, 0xee, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdf, 0xff, 0xff, 0xff, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xde, 0xe9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xaf, 0xff, 0x5c, 0xff, 0xf5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0xff, 0xa0, 0x1e, 0xff, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0xe1, 0x0, 0x4f, + 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0xff, 0xf3, 0x0, 0x0, 0x5f, 0xff, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xaf, 0xff, 0xf5, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0xfb, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xef, + 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4c, 0xff, 0xff, 0xe4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3e, 0xff, 0xff, 0xe6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x27, 0xdf, 0xff, + 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1a, 0xff, 0xff, 0xff, 0x93, 0x0, 0x0, 0x1, + 0x58, 0xcf, 0xff, 0xff, 0xfe, 0x60, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xef, 0xff, + 0xff, 0xfe, 0xb4, 0x1, 0xcf, 0xff, 0xff, 0xff, + 0xe7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xfc, 0x0, + 0x0, 0xbf, 0xff, 0xfd, 0x70, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x19, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xef, 0xa4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x6c, 0x50, + 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2a, 0xaa, 0x50, 0x0, 0x0, 0x0, 0x8, 0xcc, 0xc1, 0x0, @@ -51847,6 +52649,106 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+897F "西" */ + 0x22, 0x21, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x12, 0x22, 0xcf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0x9c, 0xbb, 0xaa, 0xaa, + 0xaa, 0xaa, 0xaa, 0xff, 0xfb, 0xaa, 0xaa, 0xaf, + 0xff, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xab, 0xb9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, + 0xf2, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xf2, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, + 0xf2, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xf2, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, + 0xf2, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xf2, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, + 0xf2, 0x0, 0x0, 0x2f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0xef, 0xfe, + 0xdd, 0xdd, 0xdd, 0xff, 0xfd, 0xdd, 0xdd, 0xdf, + 0xff, 0xdd, 0xdd, 0xdd, 0xdf, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xf6, 0x0, 0x0, 0x0, 0xff, + 0xf0, 0x0, 0x0, 0x2f, 0xff, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf6, + 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x2f, + 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xf6, 0x0, 0x0, 0x3, 0xff, + 0xd0, 0x0, 0x0, 0x2f, 0xff, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf6, + 0x0, 0x0, 0x5, 0xff, 0xb0, 0x0, 0x0, 0x2f, + 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xf6, 0x0, 0x0, 0x9, 0xff, + 0x80, 0x0, 0x0, 0x2f, 0xff, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf6, + 0x0, 0x0, 0xd, 0xff, 0x50, 0x0, 0x0, 0x2f, + 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xf6, 0x0, 0x0, 0x3f, 0xff, + 0x10, 0x0, 0x0, 0x2f, 0xfe, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf6, + 0x0, 0x0, 0xaf, 0xfc, 0x0, 0x0, 0x0, 0x2f, + 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xf6, 0x0, 0x3, 0xff, 0xf6, + 0x0, 0x0, 0x0, 0x2f, 0xff, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf6, + 0x0, 0xc, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0xb8, 0x89, 0xab, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xf6, 0x0, 0x9f, 0xff, 0x70, + 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfd, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf6, + 0x7, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0xb, + 0xff, 0xff, 0xff, 0xfb, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xf6, 0x5f, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xae, 0xff, 0xff, 0xf8, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf6, + 0x4, 0xef, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xf6, 0x0, 0x18, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xf6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xf7, 0x22, 0x22, 0x22, 0x22, + 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, + 0x2f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xef, 0xfc, + 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, + 0x99, 0x99, 0x99, 0x99, 0x9f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xf6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x10, 0x0, 0x0, 0x0, 0xff, 0xf6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x10, 0x0, + 0x0, 0x0, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x20, 0x0, + /* U+8981 "要" */ 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -52437,6 +53339,113 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xa8, 0x63, 0x0, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x46, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x9e, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xd0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf9, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x10, + 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x6f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0x6f, 0xff, 0xff, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xef, 0xff, 0xf0, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xfe, + 0xed, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xde, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xff, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x12, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xfe, 0xed, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xee, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xee, 0xed, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xee, 0xef, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xbb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xfe, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xff, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xff, 0xf6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0x0, 0x0, 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -53604,6 +54613,121 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x30, 0x0, 0x0, + /* U+8BED "语" */ + 0x0, 0x0, 0x1, 0x80, 0x0, 0x0, 0x0, 0x3, + 0x32, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, + 0x11, 0x11, 0x12, 0x23, 0x30, 0x0, 0x0, 0x0, + 0x1d, 0xfb, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xbf, 0xff, + 0x90, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x1d, 0xff, 0xf7, 0x0, + 0x0, 0x9, 0x88, 0x87, 0x77, 0x77, 0x8f, 0xff, + 0xa7, 0x77, 0x77, 0x77, 0x78, 0x88, 0x90, 0x0, + 0x0, 0x0, 0x2, 0xef, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3f, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0xff, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9e, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, + 0x9f, 0xff, 0xee, 0xdd, 0xff, 0xfd, 0xaa, 0xaa, + 0xaa, 0xaa, 0xaa, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xee, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x12, 0x0, 0x0, 0xe, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0x50, 0x0, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x7f, 0xff, 0x30, 0x0, 0x0, 0x9f, 0xff, + 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xff, 0x50, 0x0, 0x0, 0x0, 0x9f, + 0xff, 0x20, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, + 0xff, 0x20, 0x0, 0x0, 0x0, 0xcf, 0xff, 0x0, + 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0x90, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xfe, 0x0, 0x0, 0x0, + 0x23, 0x32, 0x21, 0x1e, 0xff, 0x90, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xfb, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x80, 0x4, 0xfe, 0xed, 0xdd, 0xdd, 0xff, + 0xfe, 0xdd, 0xdd, 0xdd, 0xde, 0xff, 0xff, 0xde, + 0xef, 0xf0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x80, + 0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0x80, 0x4, 0xff, + 0xff, 0xee, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xef, 0xf0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0x80, 0x0, 0x0, 0x0, 0xbf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x80, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x80, + 0xc, 0x10, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0x80, 0x8f, 0xa0, + 0x0, 0x9f, 0xfd, 0x11, 0x11, 0x11, 0x11, 0x11, + 0x11, 0x19, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0x84, 0xff, 0xf5, 0x0, 0x9f, + 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0xaf, 0xff, 0xf9, 0x0, 0x9f, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xff, + 0xff, 0xa0, 0x0, 0x9f, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xff, 0xff, 0xfb, 0x0, + 0x0, 0x9f, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x9f, + 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xff, 0xfd, 0x10, 0x0, 0x0, 0x9f, 0xfd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xf2, + 0x0, 0x0, 0x0, 0x9f, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x9, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0xb, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0xaf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xde, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x30, 0x0, + 0x0, 0x0, 0x0, 0xbf, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xff, 0xf0, 0x0, 0x0, + /* U+8BF7 "请" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x66, 0x62, 0x0, @@ -66967,392 +68091,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 172071, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, {.bitmap_index = 173017, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, {.bitmap_index = 173920, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 174844, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 175769, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 176651, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 177533, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 178457, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 179360, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 180328, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 181274, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 182198, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 183144, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 184068, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 185014, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 185854, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 186779, .adv_w = 736, .box_w = 40, .box_h = 43, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 187639, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 188541, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 189402, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 190284, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 191186, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 192132, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 193035, .adv_w = 736, .box_w = 37, .box_h = 41, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 193794, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 194696, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 195621, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 196482, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 197364, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 198246, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 199149, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 200031, .adv_w = 736, .box_w = 41, .box_h = 44, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 200933, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 201815, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 202739, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 203621, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 204546, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 205492, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 206394, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 207255, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 208116, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 209019, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 209880, .adv_w = 736, .box_w = 43, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 210740, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 211622, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 212504, .adv_w = 736, .box_w = 42, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 213323, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 214205, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 215066, .adv_w = 736, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 215866, .adv_w = 736, .box_w = 38, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 216664, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 217525, .adv_w = 736, .box_w = 39, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 218364, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 219289, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 220129, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 221011, .adv_w = 736, .box_w = 36, .box_h = 38, .ofs_x = 5, .ofs_y = -3}, - {.bitmap_index = 221695, .adv_w = 736, .box_w = 38, .box_h = 41, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 222474, .adv_w = 736, .box_w = 38, .box_h = 40, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 223234, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 224137, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 225019, .adv_w = 736, .box_w = 43, .box_h = 39, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 225858, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 226760, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 227600, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 228546, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 229449, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 230373, .adv_w = 736, .box_w = 42, .box_h = 44, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 231297, .adv_w = 736, .box_w = 39, .box_h = 43, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 232136, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 233061, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 233963, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 234866, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 235748, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 236651, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -6}, - {.bitmap_index = 237533, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 238415, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 239318, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 240200, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 241082, .adv_w = 736, .box_w = 38, .box_h = 41, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 241861, .adv_w = 736, .box_w = 40, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 242741, .adv_w = 736, .box_w = 42, .box_h = 44, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 243665, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 244611, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 245557, .adv_w = 736, .box_w = 42, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 246502, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 247448, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 248351, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 249233, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 250179, .adv_w = 736, .box_w = 40, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 251039, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 251900, .adv_w = 736, .box_w = 40, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 252740, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 253708, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 254590, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 255451, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 256354, .adv_w = 736, .box_w = 39, .box_h = 39, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 257115, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 258018, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 258879, .adv_w = 736, .box_w = 40, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 259719, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 260559, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 261462, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 262387, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 263311, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 264214, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 265054, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 265979, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 266840, .adv_w = 736, .box_w = 37, .box_h = 41, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 267599, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 268460, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 269342, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 270245, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 271191, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 272073, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 272976, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 273837, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 274740, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 275665, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 276611, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 277514, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 278396, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 279257, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 280160, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 281063, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 281988, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 282934, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 283837, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 284740, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 285686, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 286632, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 287556, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 288438, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 289384, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 290330, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 291276, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 292222, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 293125, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 294071, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 295017, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 295941, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 296844, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 297790, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 298714, .adv_w = 736, .box_w = 41, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 299555, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 3, .ofs_y = -6}, - {.bitmap_index = 300458, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 301404, .adv_w = 736, .box_w = 44, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 302394, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 303297, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 304200, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 305103, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 306027, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 306973, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 307813, .adv_w = 736, .box_w = 31, .box_h = 40, .ofs_x = 8, .ofs_y = -4}, - {.bitmap_index = 308433, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 309336, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 310176, .adv_w = 736, .box_w = 39, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 310995, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 311835, .adv_w = 736, .box_w = 40, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 312655, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 313580, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 314462, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 315386, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 316289, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 317213, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 318181, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 319021, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 319945, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 320827, .adv_w = 736, .box_w = 45, .box_h = 41, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 321750, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 322696, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 323599, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 324502, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 325404, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 326328, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 327274, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 328177, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 329123, .adv_w = 736, .box_w = 41, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 329882, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 330743, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 331667, .adv_w = 736, .box_w = 40, .box_h = 40, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 332467, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 333370, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 334272, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 335154, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 336079, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 336982, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 337843, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 338789, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 339671, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 340617, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 341520, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 342422, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 343368, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 344336, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 345261, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 346164, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 347046, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 348014, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 348938, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 349841, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 350765, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 351668, .adv_w = 736, .box_w = 44, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 352548, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 353450, .adv_w = 736, .box_w = 43, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 354310, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 355150, .adv_w = 736, .box_w = 38, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 355910, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 4, .ofs_y = -4}, - {.bitmap_index = 356771, .adv_w = 736, .box_w = 40, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 357571, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 358474, .adv_w = 736, .box_w = 40, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 359314, .adv_w = 736, .box_w = 39, .box_h = 42, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 360133, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 361057, .adv_w = 736, .box_w = 32, .box_h = 40, .ofs_x = 7, .ofs_y = -4}, - {.bitmap_index = 361697, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 362537, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 363461, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 364386, .adv_w = 736, .box_w = 41, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 365227, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 366151, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 367033, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 367958, .adv_w = 736, .box_w = 41, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 368778, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 369660, .adv_w = 736, .box_w = 40, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 370540, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 371486, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 372411, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 373357, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 374260, .adv_w = 736, .box_w = 40, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 375100, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 376068, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 376993, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 377939, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 378842, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 379745, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 380606, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 381467, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 382413, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 383253, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 384156, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 385080, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 386048, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 387016, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 387940, .adv_w = 736, .box_w = 40, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 388740, .adv_w = 736, .box_w = 42, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 389559, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 390462, .adv_w = 736, .box_w = 42, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 391281, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 392142, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 393024, .adv_w = 736, .box_w = 32, .box_h = 42, .ofs_x = 7, .ofs_y = -4}, - {.bitmap_index = 393696, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 394599, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 395460, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 396321, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 397224, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 398170, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 399116, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 400040, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 400965, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 401868, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 402750, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 403674, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 404642, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 405588, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 406534, .adv_w = 736, .box_w = 38, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 407370, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 408316, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 409198, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 410101, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 411047, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 411929, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 412853, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 413756, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 414658, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 415583, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 416508, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 417433, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 418294, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 419240, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 420122, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 421046, .adv_w = 736, .box_w = 44, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 421926, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 422850, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 423774, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 424699, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 425645, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 426527, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 427452, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 428420, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 429344, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 430205, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 431130, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 432012, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 432958, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 433861, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 434785, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 435688, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 436612, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 437473, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 438334, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 439258, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 440204, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 441128, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 442053, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 442955, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 443816, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 444656, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 445517, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 446420, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 447366, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 448312, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 449173, .adv_w = 736, .box_w = 40, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 450033, .adv_w = 736, .box_w = 38, .box_h = 43, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 450850, .adv_w = 736, .box_w = 39, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 451708, .adv_w = 736, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 452632, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 453535, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 454396, .adv_w = 736, .box_w = 40, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 455196, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 456078, .adv_w = 736, .box_w = 40, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 456878, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 457739, .adv_w = 736, .box_w = 43, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 458599, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 459460, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 460406, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 461330, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 462233, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 463179, .adv_w = 736, .box_w = 41, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 464020, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 464966, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 465869, .adv_w = 736, .box_w = 47, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 466974, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 467779, .adv_w = 736, .box_w = 46, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 468722, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 469527, .adv_w = 506, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 470055, .adv_w = 736, .box_w = 45, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 471113, .adv_w = 736, .box_w = 44, .box_h = 47, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 472147, .adv_w = 828, .box_w = 52, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 473213, .adv_w = 736, .box_w = 46, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 474294, .adv_w = 828, .box_w = 52, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 475204, .adv_w = 736, .box_w = 46, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 476285, .adv_w = 368, .box_w = 23, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 476699, .adv_w = 552, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 477329, .adv_w = 828, .box_w = 52, .box_h = 44, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 478473, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 479278, .adv_w = 506, .box_w = 32, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 480030, .adv_w = 644, .box_w = 30, .box_h = 42, .ofs_x = 5, .ofs_y = -4}, - {.bitmap_index = 480660, .adv_w = 644, .box_w = 41, .box_h = 48, .ofs_x = 0, .ofs_y = -7}, - {.bitmap_index = 481644, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 482485, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 483326, .adv_w = 644, .box_w = 30, .box_h = 42, .ofs_x = 5, .ofs_y = -4}, - {.bitmap_index = 483956, .adv_w = 644, .box_w = 42, .box_h = 41, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 484817, .adv_w = 460, .box_w = 25, .box_h = 40, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 485317, .adv_w = 460, .box_w = 25, .box_h = 40, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 485817, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 486658, .adv_w = 644, .box_w = 41, .box_h = 10, .ofs_x = 0, .ofs_y = 12}, - {.bitmap_index = 486863, .adv_w = 828, .box_w = 52, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 487773, .adv_w = 920, .box_w = 58, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 489136, .adv_w = 828, .box_w = 54, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 490405, .adv_w = 736, .box_w = 46, .box_h = 42, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 491371, .adv_w = 644, .box_w = 40, .box_h = 25, .ofs_x = 0, .ofs_y = 5}, - {.bitmap_index = 491871, .adv_w = 644, .box_w = 40, .box_h = 25, .ofs_x = 0, .ofs_y = 5}, - {.bitmap_index = 492371, .adv_w = 920, .box_w = 58, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 493415, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 494220, .adv_w = 736, .box_w = 46, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 495301, .adv_w = 736, .box_w = 47, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 496406, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 497247, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 498211, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 499052, .adv_w = 644, .box_w = 41, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 499790, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 500595, .adv_w = 460, .box_w = 31, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 501324, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 502288, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 503252, .adv_w = 828, .box_w = 52, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 504162, .adv_w = 736, .box_w = 48, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 505290, .adv_w = 552, .box_w = 35, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 506113, .adv_w = 920, .box_w = 58, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 507331, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 508201, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 509071, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 509941, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 510811, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 511681, .adv_w = 920, .box_w = 58, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 512725, .adv_w = 644, .box_w = 36, .box_h = 47, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 513571, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 514535, .adv_w = 736, .box_w = 47, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 515640, .adv_w = 920, .box_w = 58, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 516655, .adv_w = 552, .box_w = 35, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 517478, .adv_w = 740, .box_w = 47, .box_h = 30, .ofs_x = 0, .ofs_y = 2} + {.bitmap_index = 174844, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 175746, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 176671, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 177553, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 178435, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 179381, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 180305, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 181208, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 182176, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 183122, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 184046, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 184992, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 185916, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 186862, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 187702, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 188627, .adv_w = 736, .box_w = 40, .box_h = 43, .ofs_x = 4, .ofs_y = -5}, + {.bitmap_index = 189487, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 190389, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 191250, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 192132, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 193034, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 193980, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 194883, .adv_w = 736, .box_w = 37, .box_h = 41, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 195642, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 196544, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 197469, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 198330, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 199212, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 200094, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 200997, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 201879, .adv_w = 736, .box_w = 41, .box_h = 44, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 202781, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 203663, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 204587, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 205469, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 206394, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 207340, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 208242, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 209103, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 209964, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 210867, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 211728, .adv_w = 736, .box_w = 43, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 212588, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 213470, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 214352, .adv_w = 736, .box_w = 42, .box_h = 39, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 215171, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 216053, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 216914, .adv_w = 736, .box_w = 39, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 217714, .adv_w = 736, .box_w = 38, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 218512, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 219373, .adv_w = 736, .box_w = 39, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 220212, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 221137, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 221977, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 222859, .adv_w = 736, .box_w = 36, .box_h = 38, .ofs_x = 5, .ofs_y = -3}, + {.bitmap_index = 223543, .adv_w = 736, .box_w = 38, .box_h = 41, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 224322, .adv_w = 736, .box_w = 38, .box_h = 40, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 225082, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 225985, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 226867, .adv_w = 736, .box_w = 43, .box_h = 39, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 227706, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 228608, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 229448, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 230394, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 231297, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 232221, .adv_w = 736, .box_w = 42, .box_h = 44, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 233145, .adv_w = 736, .box_w = 39, .box_h = 43, .ofs_x = 4, .ofs_y = -5}, + {.bitmap_index = 233984, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 234909, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 235811, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 236714, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 237596, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 238499, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -6}, + {.bitmap_index = 239381, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 240263, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 241166, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 242048, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 242930, .adv_w = 736, .box_w = 38, .box_h = 41, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 243709, .adv_w = 736, .box_w = 40, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 244589, .adv_w = 736, .box_w = 42, .box_h = 44, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 245513, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 246459, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 247405, .adv_w = 736, .box_w = 42, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 248350, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 249296, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 250199, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 251081, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 252027, .adv_w = 736, .box_w = 40, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 252887, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 253748, .adv_w = 736, .box_w = 40, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 254588, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 255556, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 256438, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 257299, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 258202, .adv_w = 736, .box_w = 39, .box_h = 39, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 258963, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 259866, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 260727, .adv_w = 736, .box_w = 40, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 261567, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 262407, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 263310, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 264235, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 265159, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 266062, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 266902, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 267827, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 268688, .adv_w = 736, .box_w = 37, .box_h = 41, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 269447, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 270308, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 271190, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 272114, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 273017, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 273963, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 274845, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 275748, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 276609, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 277512, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 278437, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 279383, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 280286, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 281168, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 282029, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 282932, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 283835, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 284760, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 285706, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 286609, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 287512, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 288458, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 289404, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 290328, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 291210, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 292156, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 293102, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 294048, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 294994, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 295897, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 296843, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 297789, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 298713, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 299616, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 300562, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 301486, .adv_w = 736, .box_w = 41, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 302327, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 3, .ofs_y = -6}, + {.bitmap_index = 303230, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 304176, .adv_w = 736, .box_w = 44, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 305166, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 306069, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 306972, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 307875, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 308799, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 309745, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 310585, .adv_w = 736, .box_w = 31, .box_h = 40, .ofs_x = 8, .ofs_y = -4}, + {.bitmap_index = 311205, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 312108, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 312948, .adv_w = 736, .box_w = 39, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 313767, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 314607, .adv_w = 736, .box_w = 40, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 315427, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 316352, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 317234, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 318158, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 319061, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 319985, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 320953, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 321793, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 322717, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 323599, .adv_w = 736, .box_w = 45, .box_h = 41, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 324522, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 325468, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 326371, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 327274, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 328176, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 329100, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 330046, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 330949, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 331895, .adv_w = 736, .box_w = 41, .box_h = 37, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 332654, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 333515, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 334439, .adv_w = 736, .box_w = 40, .box_h = 40, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 335239, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 336142, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 337044, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 337926, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 338851, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 339754, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 340615, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 341561, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 342443, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 343389, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 344292, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 345194, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 346140, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 347108, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 348033, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 348936, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 349818, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 350786, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 351710, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 352613, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 353474, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 354398, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 355301, .adv_w = 736, .box_w = 44, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 356181, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 357083, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 358007, .adv_w = 736, .box_w = 43, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 358867, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 359707, .adv_w = 736, .box_w = 38, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 360467, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 4, .ofs_y = -4}, + {.bitmap_index = 361328, .adv_w = 736, .box_w = 40, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 362128, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 363031, .adv_w = 736, .box_w = 40, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 363871, .adv_w = 736, .box_w = 39, .box_h = 42, .ofs_x = 4, .ofs_y = -5}, + {.bitmap_index = 364690, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 365614, .adv_w = 736, .box_w = 32, .box_h = 40, .ofs_x = 7, .ofs_y = -4}, + {.bitmap_index = 366254, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 367094, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 368018, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 368943, .adv_w = 736, .box_w = 41, .box_h = 41, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 369784, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 370708, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 371590, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 372515, .adv_w = 736, .box_w = 41, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 373335, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 374217, .adv_w = 736, .box_w = 40, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 375097, .adv_w = 736, .box_w = 43, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 376043, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 376968, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 377914, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 378817, .adv_w = 736, .box_w = 40, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 379657, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 380625, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 381550, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 382496, .adv_w = 736, .box_w = 40, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 383356, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 384259, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 385162, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 386023, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 386884, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 387830, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 388670, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 389573, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 390497, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 391465, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 392433, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 393357, .adv_w = 736, .box_w = 40, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 394157, .adv_w = 736, .box_w = 42, .box_h = 39, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 394976, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 395879, .adv_w = 736, .box_w = 42, .box_h = 39, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 396698, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 397559, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 398441, .adv_w = 736, .box_w = 32, .box_h = 42, .ofs_x = 7, .ofs_y = -4}, + {.bitmap_index = 399113, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 400016, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 400877, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 401738, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 402599, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 403502, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 404448, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 405394, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 406318, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 407243, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 408146, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 409028, .adv_w = 736, .box_w = 40, .box_h = 39, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 409808, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 410732, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 411700, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 412646, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 413592, .adv_w = 736, .box_w = 38, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 414428, .adv_w = 736, .box_w = 40, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 415268, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 416214, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 417096, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 417999, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 418945, .adv_w = 736, .box_w = 43, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 419827, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 420751, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 421654, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 422556, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 423481, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 424406, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 425308, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 426233, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 427094, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 428040, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 428922, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 429846, .adv_w = 736, .box_w = 44, .box_h = 40, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 430726, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 431650, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 432574, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 433499, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 434445, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 435327, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 436252, .adv_w = 736, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 437220, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 438144, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 439005, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 439930, .adv_w = 736, .box_w = 42, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 440812, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 441758, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 442661, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 443585, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 444488, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 445412, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 446273, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 447134, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 448058, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 449004, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 449928, .adv_w = 736, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 450853, .adv_w = 736, .box_w = 44, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 451755, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 452616, .adv_w = 736, .box_w = 42, .box_h = 40, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 453456, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 454317, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 455220, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 456166, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 457112, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 457973, .adv_w = 736, .box_w = 40, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 458833, .adv_w = 736, .box_w = 38, .box_h = 43, .ofs_x = 4, .ofs_y = -5}, + {.bitmap_index = 459650, .adv_w = 736, .box_w = 39, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 460508, .adv_w = 736, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 461432, .adv_w = 736, .box_w = 42, .box_h = 43, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 462335, .adv_w = 736, .box_w = 41, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 463196, .adv_w = 736, .box_w = 40, .box_h = 40, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 463996, .adv_w = 736, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 464878, .adv_w = 736, .box_w = 40, .box_h = 40, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 465678, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 466539, .adv_w = 736, .box_w = 43, .box_h = 40, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 467399, .adv_w = 736, .box_w = 42, .box_h = 41, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 468260, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 469206, .adv_w = 736, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 470130, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 471033, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 471979, .adv_w = 736, .box_w = 41, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 472820, .adv_w = 736, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 473766, .adv_w = 736, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 474669, .adv_w = 736, .box_w = 47, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 475774, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 476579, .adv_w = 736, .box_w = 46, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 477522, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 478327, .adv_w = 506, .box_w = 32, .box_h = 33, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 478855, .adv_w = 736, .box_w = 45, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 479913, .adv_w = 736, .box_w = 44, .box_h = 47, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 480947, .adv_w = 828, .box_w = 52, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 482013, .adv_w = 736, .box_w = 46, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 483094, .adv_w = 828, .box_w = 52, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 484004, .adv_w = 736, .box_w = 46, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 485085, .adv_w = 368, .box_w = 23, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 485499, .adv_w = 552, .box_w = 35, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 486129, .adv_w = 828, .box_w = 52, .box_h = 44, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 487273, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 488078, .adv_w = 506, .box_w = 32, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 488830, .adv_w = 644, .box_w = 30, .box_h = 42, .ofs_x = 5, .ofs_y = -4}, + {.bitmap_index = 489460, .adv_w = 644, .box_w = 41, .box_h = 48, .ofs_x = 0, .ofs_y = -7}, + {.bitmap_index = 490444, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 491285, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 492126, .adv_w = 644, .box_w = 30, .box_h = 42, .ofs_x = 5, .ofs_y = -4}, + {.bitmap_index = 492756, .adv_w = 644, .box_w = 42, .box_h = 41, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 493617, .adv_w = 460, .box_w = 25, .box_h = 40, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 494117, .adv_w = 460, .box_w = 25, .box_h = 40, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 494617, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 495458, .adv_w = 644, .box_w = 41, .box_h = 10, .ofs_x = 0, .ofs_y = 12}, + {.bitmap_index = 495663, .adv_w = 828, .box_w = 52, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 496573, .adv_w = 920, .box_w = 58, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 497936, .adv_w = 828, .box_w = 54, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 499205, .adv_w = 736, .box_w = 46, .box_h = 42, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 500171, .adv_w = 644, .box_w = 40, .box_h = 25, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 500671, .adv_w = 644, .box_w = 40, .box_h = 25, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 501171, .adv_w = 920, .box_w = 58, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 502215, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 503020, .adv_w = 736, .box_w = 46, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 504101, .adv_w = 736, .box_w = 47, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 505206, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 506047, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 507011, .adv_w = 644, .box_w = 41, .box_h = 41, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 507852, .adv_w = 644, .box_w = 41, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 508590, .adv_w = 736, .box_w = 46, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 509395, .adv_w = 460, .box_w = 31, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 510124, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 511088, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 512052, .adv_w = 828, .box_w = 52, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 512962, .adv_w = 736, .box_w = 48, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 514090, .adv_w = 552, .box_w = 35, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 514913, .adv_w = 920, .box_w = 58, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 516131, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 517001, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 517871, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 518741, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 519611, .adv_w = 920, .box_w = 58, .box_h = 30, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 520481, .adv_w = 920, .box_w = 58, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 521525, .adv_w = 644, .box_w = 36, .box_h = 47, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 522371, .adv_w = 644, .box_w = 41, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 523335, .adv_w = 736, .box_w = 47, .box_h = 47, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 524440, .adv_w = 920, .box_w = 58, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 525455, .adv_w = 552, .box_w = 35, .box_h = 47, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 526278, .adv_w = 740, .box_w = 47, .box_h = 30, .ofs_x = 0, .ofs_y = 2} }; /*--------------------- @@ -67373,55 +68507,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -67453,7 +68589,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -67558,7 +68694,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -67657,7 +68794,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_48.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_48.c index 701735d2..28b53441 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_48.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_48.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 48 px * Bpp: 4 - * Opts: --bpp 4 --size 48 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_48.c + * Opts: --bpp 4 --size 48 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_48.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -24512,6 +24512,132 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x6, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, + /* U+4F53 "体" */ + 0x0, 0x0, 0x0, 0x0, 0x2, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x86, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xfc, 0x60, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb, 0xff, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xfb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, + 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xfa, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xff, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0xd0, 0x0, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbf, 0xfa, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xff, 0x70, 0x3, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x6, 0xff, + 0xff, 0x70, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf5, 0x0, 0x0, 0x0, 0xd, 0xff, 0xff, + 0x70, 0x0, 0x32, 0x11, 0x0, 0x0, 0x3f, 0xff, + 0xef, 0xfe, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x11, + 0x21, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xbf, + 0xfb, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbf, 0xfb, 0xbf, 0xfa, + 0xcf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xf7, 0xbf, 0xfa, 0x8f, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1e, 0xff, 0xdf, 0xff, 0x70, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xff, 0xf2, 0xbf, 0xfa, 0x2f, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, + 0xff, 0x5f, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xff, 0xd0, 0xbf, 0xfa, 0xd, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xfc, + 0xf, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xff, 0x80, 0xbf, 0xfa, 0x6, 0xff, 0xf3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf3, 0xf, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, + 0x10, 0xbf, 0xfa, 0x0, 0xef, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5, 0xff, 0x90, 0xf, 0xff, + 0x70, 0x0, 0x0, 0x0, 0x4, 0xff, 0xfa, 0x0, + 0xbf, 0xfa, 0x0, 0x8f, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6e, 0x0, 0xf, 0xff, 0x70, + 0x0, 0x0, 0x0, 0xd, 0xff, 0xf2, 0x0, 0xbf, + 0xfa, 0x0, 0x1e, 0xff, 0xe1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0x0, 0xf, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x8f, 0xff, 0xa0, 0x0, 0xbf, 0xfa, + 0x0, 0x6, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xff, 0x70, 0x0, 0x0, + 0x4, 0xff, 0xff, 0x20, 0x0, 0xbf, 0xfa, 0x0, + 0x0, 0xcf, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x70, 0x0, 0x0, 0x1e, + 0xff, 0xf7, 0x0, 0x0, 0xbf, 0xfa, 0x0, 0x0, + 0x2f, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xff, 0x70, 0x0, 0x1, 0xdf, 0xff, + 0xc0, 0x0, 0x0, 0xbf, 0xfa, 0x0, 0x0, 0x6, + 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0x70, 0x0, 0x1d, 0xff, 0xff, 0x20, + 0x0, 0x0, 0xbf, 0xfa, 0x0, 0x0, 0x0, 0x8f, + 0xff, 0xfb, 0x10, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x70, 0x2, 0xdf, 0xff, 0xf4, 0x0, 0x0, + 0x0, 0xbf, 0xfa, 0x0, 0x0, 0x0, 0xa, 0xff, + 0xff, 0xe4, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x70, 0x4e, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, + 0xbf, 0xfa, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, + 0xff, 0xb1, 0x0, 0x0, 0x0, 0xf, 0xff, 0x78, + 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xff, + 0x70, 0x0, 0x0, 0x0, 0xf, 0xff, 0x89, 0xff, + 0xff, 0x90, 0xc, 0xff, 0xff, 0xee, 0xff, 0xff, + 0xee, 0xef, 0xff, 0xc0, 0x0, 0x9f, 0xf5, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xff, 0x70, 0x5f, 0xf8, + 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x6, 0x80, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x70, 0x5, 0x70, 0x0, + 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xff, 0x70, 0x0, 0x0, 0x0, 0x3, + 0x33, 0x22, 0x11, 0xcf, 0xfa, 0x11, 0x12, 0x23, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0xfa, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xfb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4F7F "使" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x26, 0x31, 0x0, @@ -24890,6 +25016,135 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x4, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0x95, 0x0, 0x0, + /* U+4FC4 "俄" */ + 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xa6, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8e, 0xb9, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xff, 0xfe, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xff, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x50, 0x0, 0x4f, 0xff, 0x70, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xff, 0x20, + 0x4, 0xff, 0xf5, 0x0, 0x0, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xf6, 0x0, + 0x0, 0x2, 0x6a, 0xef, 0xff, 0xfb, 0x0, 0x3f, + 0xff, 0x30, 0x2, 0xbe, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xff, 0xfe, 0x0, 0x29, 0xcf, + 0xff, 0xff, 0xff, 0xff, 0xf6, 0x3, 0xff, 0xf2, + 0x6, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xff, 0x80, 0x0, 0xdf, 0xff, 0xff, + 0xff, 0xc8, 0x52, 0x0, 0x3f, 0xff, 0x20, 0x3f, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0xf2, 0x0, 0x5, 0xff, 0xff, 0xff, 0xe0, + 0x0, 0x0, 0x2, 0xff, 0xf2, 0x0, 0x8f, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xfb, + 0x0, 0x0, 0xa, 0x62, 0x4f, 0xfe, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0x20, 0x0, 0xdf, 0xff, 0x70, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0x50, 0x0, + 0x0, 0x0, 0x4, 0xff, 0xe0, 0x0, 0x0, 0x2, + 0xff, 0xf2, 0x0, 0x5, 0xff, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0x20, 0x0, 0xd, 0xfc, 0x40, 0x0, 0x0, 0x0, + 0xc, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xf2, 0x0, + 0x0, 0x45, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xfe, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, + 0x6e, 0xdd, 0xcc, 0xdf, 0xff, 0xcc, 0xcc, 0xcc, + 0xcf, 0xff, 0xdc, 0xcc, 0xcc, 0xdd, 0xee, 0x40, + 0x0, 0x2f, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0xc, + 0xff, 0xfa, 0xff, 0xe0, 0x0, 0x7f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x40, 0x8, 0xff, 0xfb, + 0x7f, 0xfe, 0x0, 0x2, 0x54, 0x43, 0x36, 0xff, + 0xf3, 0x33, 0x33, 0x33, 0xff, 0xf6, 0x33, 0x33, + 0x34, 0x45, 0x51, 0x7, 0xff, 0xff, 0x27, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xfe, 0x0, + 0x0, 0x0, 0xe, 0xff, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2c, 0xff, 0x80, 0x7f, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0xdf, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9, 0xd0, 0x7, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xfe, 0x0, 0x0, 0x0, 0xb, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x9f, 0xfa, + 0x0, 0x0, 0xb4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xfe, 0x0, 0x2, 0x30, 0x7, 0xff, 0xc0, 0x0, + 0x2f, 0xfa, 0x20, 0x0, 0x0, 0x0, 0x0, 0x7f, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xe1, + 0x6c, 0xf8, 0x0, 0x5f, 0xfe, 0x0, 0xa, 0xff, + 0xfd, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, + 0x80, 0x3, 0xff, 0xf1, 0x2, 0xff, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, + 0x0, 0x3, 0x8d, 0xff, 0xff, 0xff, 0xfa, 0x0, + 0xf, 0xff, 0x40, 0xaf, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x36, 0xae, + 0xff, 0xff, 0xff, 0xfb, 0x72, 0x0, 0x0, 0xdf, + 0xf7, 0x3f, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7f, 0xfe, 0x0, 0xef, 0xff, 0xff, 0xff, + 0xff, 0xf1, 0x0, 0x0, 0x0, 0xa, 0xff, 0xbc, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, + 0xff, 0xe0, 0x6, 0xff, 0xff, 0xfd, 0xaf, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, + 0x0, 0xf, 0xfe, 0x82, 0x4, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xff, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, + 0x75, 0x0, 0x0, 0x4f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, + 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xe0, 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xfe, 0x0, + 0x0, 0x1b, 0xff, 0xff, 0xcf, 0xff, 0x40, 0x0, + 0xc2, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xff, 0xe0, 0x0, 0x5e, + 0xff, 0xff, 0x41, 0xff, 0xfc, 0x0, 0xf, 0xfa, + 0x30, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xfe, 0x0, 0xcf, 0xff, 0xfe, + 0x30, 0x8, 0xff, 0xf6, 0x3, 0xff, 0xf6, 0x0, + 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, + 0xb, 0xff, 0xe0, 0x6, 0xff, 0xfd, 0x20, 0x0, + 0xd, 0xff, 0xf3, 0x7f, 0xff, 0x20, 0x0, 0x0, + 0x7, 0xff, 0xf0, 0x0, 0x1, 0xde, 0xef, 0xff, + 0xfc, 0x0, 0x7, 0xfc, 0x10, 0x0, 0x0, 0x4f, + 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x8f, + 0xff, 0x0, 0x0, 0xb, 0xff, 0xff, 0xff, 0x90, + 0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x8, 0xff, 0xf1, + 0x0, 0x0, 0x5f, 0xff, 0xff, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x9f, 0xff, 0x20, 0x0, + 0x1, 0xff, 0xfd, 0x82, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x9, 0xff, 0xf3, 0x0, 0x0, 0x5, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8d, 0x70, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+4FDD "保" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -37668,6 +37923,132 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xb0, 0x0, + /* U+5FB7 "德" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7a, 0x75, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6a, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb, 0xff, 0xf5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1e, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xff, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, + 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xa0, 0x6, + 0xff, 0xff, 0xee, 0xee, 0xee, 0xef, 0xff, 0xeb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xcc, 0xdd, 0x10, 0x0, + 0x0, 0x0, 0x7f, 0xff, 0xd0, 0x0, 0x6f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, + 0x3f, 0xff, 0xf3, 0x0, 0x6, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x10, 0x0, 0x0, 0xd, 0xff, + 0xf7, 0x0, 0x0, 0x13, 0x32, 0x21, 0x11, 0x11, + 0x17, 0xff, 0xf3, 0x11, 0x11, 0x11, 0x11, 0x22, + 0x23, 0x40, 0x0, 0x0, 0xa, 0xff, 0xfb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0xfd, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xd0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xff, 0xff, 0x30, 0x0, 0x71, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0xfb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xff, 0x60, 0x0, 0x3f, 0xe5, 0x0, 0xdf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf2, 0x0, 0x0, 0x1d, 0xff, 0x90, + 0x0, 0xc, 0xff, 0xf7, 0xd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x20, 0x0, 0x0, 0x2e, 0xc0, 0x0, 0x5, + 0xff, 0xfd, 0x0, 0xdf, 0xfd, 0xaa, 0xac, 0xff, + 0xea, 0xaa, 0xdf, 0xfe, 0xaa, 0xab, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0x31, 0x0, 0x0, 0xef, 0xff, + 0x20, 0xc, 0xff, 0x70, 0x0, 0x6f, 0xfc, 0x0, + 0x7, 0xff, 0xb0, 0x0, 0x2f, 0xff, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, 0x60, 0x0, + 0xcf, 0xf7, 0x0, 0x6, 0xff, 0xc0, 0x0, 0x7f, + 0xfb, 0x0, 0x2, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0xff, 0xb0, 0x0, 0xb, 0xff, + 0x70, 0x0, 0x6f, 0xfc, 0x0, 0x7, 0xff, 0xb0, + 0x0, 0x2f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xff, 0xe1, 0x0, 0x0, 0xcf, 0xf7, 0x0, + 0x6, 0xff, 0xc0, 0x0, 0x7f, 0xfb, 0x0, 0x2, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, + 0xf5, 0x0, 0x0, 0xc, 0xff, 0x70, 0x0, 0x6f, + 0xfc, 0x0, 0x7, 0xff, 0xb0, 0x0, 0x2f, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff, 0x10, + 0x0, 0x0, 0xdf, 0xfd, 0xbb, 0xbd, 0xff, 0xeb, + 0xbb, 0xdf, 0xfe, 0xbb, 0xbc, 0xff, 0xf1, 0x0, + 0x0, 0x0, 0x2, 0xff, 0xff, 0xf1, 0x0, 0x0, + 0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, + 0x1, 0xef, 0xff, 0xff, 0x10, 0x0, 0x0, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, 0x1, 0xdf, + 0xff, 0xff, 0xf1, 0x0, 0x0, 0x1, 0x11, 0x11, + 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, + 0x11, 0x11, 0x0, 0x0, 0x1, 0xdf, 0xff, 0xbf, + 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xef, 0xff, 0xb4, 0xff, 0xf1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1e, 0xff, 0xe1, 0x4f, 0xff, 0x10, 0x0, + 0x14, 0x33, 0x32, 0x21, 0x11, 0x11, 0x11, 0x11, + 0x11, 0x11, 0x11, 0x22, 0x23, 0x33, 0x41, 0x0, + 0x4f, 0xf3, 0x4, 0xff, 0xf1, 0x0, 0x6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0, 0xb7, + 0x0, 0x4f, 0xff, 0x10, 0x0, 0x6f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0x0, 0x1, 0x0, 0x4, + 0xff, 0xf1, 0x0, 0x6, 0xed, 0xcc, 0xcb, 0xbb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbc, + 0xcc, 0xdd, 0x30, 0x0, 0x0, 0x0, 0x4f, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x52, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xcf, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0x10, 0x0, 0x5, + 0x94, 0x0, 0xb, 0xbb, 0x50, 0x6f, 0xff, 0x90, + 0x0, 0x0, 0x0, 0x8, 0x70, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xff, 0xf1, 0x0, 0x0, 0xbf, 0xfe, + 0x0, 0xff, 0xf7, 0x0, 0xbf, 0xff, 0x40, 0x0, + 0x0, 0x2c, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xff, 0x10, 0x0, 0x1f, 0xff, 0x90, 0xf, + 0xff, 0x60, 0x1, 0xef, 0xfd, 0x0, 0x0, 0x5, + 0xff, 0xfe, 0x10, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xf1, 0x0, 0x6, 0xff, 0xf3, 0x0, 0xef, 0xf6, + 0x0, 0x7, 0xff, 0xc2, 0x0, 0x0, 0x8, 0xff, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0x10, + 0x0, 0xbf, 0xfd, 0x0, 0xe, 0xff, 0x50, 0x0, + 0xd, 0x70, 0x0, 0x32, 0x0, 0xc, 0xff, 0xf7, + 0x0, 0x0, 0x0, 0x5, 0xff, 0xf1, 0x0, 0x2f, + 0xff, 0x70, 0x0, 0xdf, 0xf5, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xf9, 0x30, 0x2f, 0xff, 0xf3, 0x0, + 0x0, 0x0, 0x5f, 0xff, 0x10, 0x8, 0xff, 0xf2, + 0x0, 0xd, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xff, 0x60, 0x7f, 0xff, 0x60, 0x0, 0x0, + 0x5, 0xff, 0xf1, 0x0, 0xff, 0xfc, 0x0, 0x0, + 0xcf, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, + 0xf1, 0x0, 0xdd, 0x20, 0x0, 0x0, 0x0, 0x5f, + 0xff, 0x20, 0x6, 0xcf, 0x60, 0x0, 0xa, 0xff, + 0xfe, 0xba, 0xaa, 0xaa, 0xbf, 0xff, 0xfa, 0x0, + 0x3, 0x10, 0x0, 0x0, 0x0, 0x6, 0xff, 0xf2, + 0x0, 0x0, 0x31, 0x0, 0x0, 0x6f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0xf3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x22, 0x22, 0x22, 0x22, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -48822,6 +49203,121 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2a, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x61, 0x0, + /* U+7259 "牙" */ + 0x0, 0x3, 0x76, 0x55, 0x55, 0x55, 0x55, 0x55, + 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, + 0x55, 0x55, 0x67, 0x30, 0x0, 0x0, 0x0, 0x6f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x6f, 0xed, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdf, 0xff, 0xfd, + 0xdd, 0xdd, 0xee, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xb5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfa, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6f, 0xfe, 0x91, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xff, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xaf, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xff, 0xfa, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xff, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xa0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xef, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, 0xb2, + 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x3f, + 0xff, 0xb2, 0x22, 0x22, 0x22, 0x22, 0x34, 0x42, + 0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, 0x3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf6, 0x0, 0x0, 0xc, 0xff, 0xff, + 0xee, 0xdd, 0xdd, 0xdd, 0xdd, 0xde, 0xff, 0xff, + 0xff, 0xff, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xef, + 0x60, 0x0, 0x0, 0x59, 0x62, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xff, 0x7f, 0xff, 0xa0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xff, 0xd1, 0xff, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0xf5, + 0x1f, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9, 0xff, 0xfc, 0x1, 0xff, 0xfa, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xff, 0x20, 0x1f, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xef, 0xff, 0x80, + 0x1, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0xff, 0xc0, 0x0, 0x1f, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xff, 0xe1, 0x0, 0x1, 0xff, 0xfa, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xf3, 0x0, + 0x0, 0x1f, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xcf, 0xff, 0xf5, 0x0, 0x0, 0x1, 0xff, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xdf, 0xff, + 0xf6, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xa0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xff, 0xff, 0xf5, 0x0, 0x0, + 0x0, 0x1, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1a, + 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5e, 0xff, 0xff, 0xe2, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xcf, 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0xa0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1a, 0xff, 0xff, + 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xaf, 0xff, 0xff, 0xfc, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xa0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5c, 0xff, + 0xff, 0xff, 0xe6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0xfa, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xdf, 0xff, 0xff, 0x91, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x56, 0x8c, + 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xdf, 0xfc, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xf6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xd5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xef, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, + 0xff, 0xd8, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x59, 0x74, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+72B6 "状" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x2b, 0xbb, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -49315,6 +49811,132 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc8, 0x64, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, 0x43, 0x33, + 0x33, 0x33, 0x34, 0x45, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xf7, 0x4b, 0xaa, 0x99, 0x99, 0x99, 0x99, + 0x9a, 0xab, 0x40, 0x0, 0xdf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0xff, + 0xf6, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x60, 0x0, 0xdf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0xff, 0xf6, + 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x60, 0x0, 0xcf, 0xed, 0xde, 0xff, 0xfd, 0xde, + 0xef, 0x10, 0x0, 0x0, 0x0, 0xff, 0xf5, 0x26, + 0x55, 0x44, 0x8f, 0xff, 0x44, 0x44, 0x56, 0x20, + 0x0, 0x0, 0x0, 0x6, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xf5, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xf5, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x6f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xff, 0xf0, 0x0, 0x0, 0x5, 0xdd, 0xc0, + 0x0, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x6f, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xff, 0xf0, 0x0, 0x0, 0x6, 0xff, 0xe0, 0x0, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x6f, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, + 0xf0, 0x0, 0x0, 0x6, 0xff, 0xe0, 0x0, 0xff, + 0xf4, 0x0, 0x0, 0x0, 0x6f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xf0, + 0x0, 0x0, 0x6, 0xff, 0xd0, 0x0, 0xff, 0xf3, + 0x0, 0x0, 0x0, 0x6f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xf0, 0x0, + 0x0, 0x7, 0xff, 0xd0, 0x0, 0xff, 0xf3, 0x0, + 0x0, 0x0, 0x6f, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xff, 0xf0, 0x0, 0x0, + 0x7, 0xff, 0xd0, 0x0, 0xff, 0xf2, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xff, 0xf0, 0x0, 0x0, 0x8, + 0xff, 0xc0, 0x0, 0xff, 0xf1, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x15, + 0x43, 0x37, 0xff, 0xf2, 0x33, 0x42, 0x9, 0xff, + 0xc0, 0x1, 0xff, 0xf1, 0x14, 0x43, 0x32, 0x7f, + 0xff, 0x22, 0x33, 0x42, 0x0, 0x0, 0x4f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0xa, 0xff, 0xa0, + 0x1, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0x0, 0x0, 0x4f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0xb, 0xff, 0x90, 0x2, + 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf7, 0x0, 0x0, 0x4f, 0xfe, 0xde, 0xff, + 0xfd, 0xee, 0xf8, 0xc, 0xff, 0x80, 0x4, 0xff, + 0xe0, 0x2d, 0xcb, 0xba, 0xcf, 0xff, 0xaa, 0xbc, + 0xc5, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xf0, + 0x0, 0x0, 0xe, 0xff, 0x70, 0x6, 0xff, 0xd0, + 0x0, 0x0, 0x0, 0x6f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xf0, 0x0, + 0x0, 0xf, 0xff, 0x60, 0x8, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x6f, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xff, 0xf0, 0x0, 0x0, + 0x1, 0x11, 0x0, 0xa, 0xff, 0x90, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xff, 0x60, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0x30, 0x0, 0x0, 0x0, 0x6f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x6f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xf0, 0x0, + 0x4, 0x40, 0x0, 0xa, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xff, 0xf0, 0x17, 0xdf, + 0xb0, 0x0, 0x2f, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xff, 0xf9, 0xff, 0xff, 0xf0, + 0x0, 0x9f, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x3, + 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x27, + 0xdf, 0xff, 0xff, 0xfd, 0x71, 0x0, 0xd, 0xff, + 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x7c, 0xff, 0xff, + 0xff, 0xfb, 0x40, 0x0, 0x0, 0x9f, 0xff, 0xa0, + 0x0, 0x1, 0x0, 0x0, 0x0, 0x6f, 0xff, 0x0, + 0x0, 0x0, 0x10, 0xd, 0xff, 0xff, 0xff, 0xe8, + 0x10, 0x0, 0x0, 0x7, 0xff, 0xff, 0x20, 0x0, + 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf2, 0x3, 0xff, 0xff, 0xd6, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xff, 0xf6, 0x0, 0x0, 0x4f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf2, 0x0, 0xbf, 0xc4, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x4f, 0xff, + 0xed, 0xdd, 0xdd, 0xdd, 0xdd, 0xde, 0xef, 0xf2, + 0x0, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, + 0xff, 0xfd, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5e, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7406 "理" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, @@ -52742,6 +53364,129 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1e, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0x61, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xfe, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xea, 0xaa, + 0xaa, 0xaa, 0xbc, 0xc5, 0x0, 0x8, 0xff, 0xf7, + 0x44, 0x44, 0x44, 0x44, 0x55, 0x66, 0x0, 0x0, + 0x0, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf6, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0x0, 0x0, 0xa, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, 0x9f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0x0, 0x0, 0x8f, 0xff, 0xa0, 0xa, 0xff, 0xb1, + 0x11, 0x22, 0x31, 0x5, 0xff, 0xfc, 0x88, 0x8d, + 0xff, 0xe8, 0x89, 0x9a, 0xa9, 0x0, 0x8, 0xff, + 0xfc, 0x0, 0x1, 0xff, 0xf5, 0x0, 0x0, 0x0, + 0x2f, 0xff, 0xe1, 0x0, 0x6, 0xff, 0xf2, 0x0, + 0x0, 0x0, 0x0, 0xaf, 0xff, 0xd1, 0x0, 0x0, + 0x8f, 0xfe, 0x0, 0x0, 0x1, 0xef, 0xff, 0x40, + 0x0, 0x0, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x3d, + 0xff, 0xfd, 0x10, 0x0, 0x0, 0x1f, 0xff, 0x80, + 0x0, 0x1d, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x9f, + 0xff, 0x10, 0x0, 0x0, 0x8f, 0xff, 0xd1, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xf1, 0x1, 0xdf, 0xff, + 0x90, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x90, 0x0, + 0x0, 0x4, 0xfd, 0x10, 0x0, 0x1a, 0x10, 0x1, + 0xe8, 0x10, 0x0, 0x5e, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xa4, 0x0, 0x0, 0x0, 0x0, 0x31, + 0x0, 0x2, 0xdf, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, + 0xfa, 0x0, 0x0, 0x21, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x70, 0x1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0xf5, 0x1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, + 0xff, 0x21, 0xff, 0xee, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xde, 0xff, 0xe0, 0x0, 0x0, + 0x2, 0xbb, 0xb3, 0x0, 0xaf, 0xf6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xf4, + 0x0, 0x1e, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, 0xd0, + 0x0, 0x0, 0x2, 0xff, 0xf3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xff, 0xd0, 0x0, 0x0, 0x2, + 0xff, 0xf3, 0x0, 0x0, 0x2a, 0xaa, 0xaa, 0xaa, + 0xaa, 0xaa, 0xaa, 0xaa, 0xa2, 0x0, 0x0, 0x5, + 0xff, 0xd0, 0x0, 0x0, 0x1, 0xff, 0xf2, 0x0, + 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf2, 0x0, 0x0, 0x5, 0xff, 0xd0, 0x0, + 0x0, 0x1, 0xff, 0xf2, 0x0, 0x0, 0x1f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, + 0x0, 0x5, 0xff, 0xd0, 0x0, 0x0, 0x1, 0xff, + 0xf2, 0x0, 0x0, 0x1f, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x2, 0xff, 0xf1, 0x0, 0x0, 0x5, 0xff, + 0xd0, 0x0, 0x0, 0x1, 0xff, 0xf2, 0x0, 0x0, + 0x1f, 0xff, 0x20, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xf1, 0x0, 0x0, 0x5, 0xff, 0xd0, 0x0, 0x0, + 0x1, 0xff, 0xf2, 0x0, 0x0, 0x1f, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x2, 0xff, 0xf1, 0x0, 0x0, + 0x5, 0xff, 0xd0, 0x0, 0x0, 0x1, 0xff, 0xf2, + 0x0, 0x0, 0x1f, 0xff, 0xba, 0xaa, 0xaa, 0xaa, + 0xab, 0xff, 0xf1, 0x0, 0x0, 0x5, 0xff, 0xd0, + 0x0, 0x0, 0x1, 0xff, 0xf2, 0x0, 0x0, 0x1f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, + 0x0, 0x0, 0x5, 0xff, 0xd0, 0x0, 0x0, 0x1, + 0xff, 0xf2, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x5, + 0xff, 0xd0, 0x0, 0x0, 0x1, 0xff, 0xf2, 0x0, + 0x0, 0x1f, 0xff, 0x42, 0x22, 0x22, 0x22, 0x24, + 0xff, 0xf1, 0x0, 0x0, 0x5, 0xff, 0xd0, 0x0, + 0x0, 0x1, 0xff, 0xf2, 0x0, 0x0, 0x1f, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x2, 0xff, 0xf1, 0x0, + 0x0, 0x5, 0xff, 0xd0, 0x0, 0x0, 0x1, 0xff, + 0xf2, 0x0, 0x0, 0x1f, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x2, 0xff, 0xf1, 0x0, 0x0, 0x5, 0xff, + 0xd0, 0x0, 0x0, 0x1, 0xff, 0xf2, 0x0, 0x0, + 0x1f, 0xff, 0x20, 0x0, 0x0, 0x0, 0x2, 0xff, + 0xf1, 0x0, 0x0, 0x5, 0xff, 0xd0, 0x0, 0x0, + 0x1, 0xff, 0xf2, 0x0, 0x0, 0x1f, 0xff, 0x31, + 0x11, 0x11, 0x11, 0x13, 0xff, 0xf1, 0x0, 0x0, + 0x5, 0xff, 0xd0, 0x0, 0x0, 0x1, 0xff, 0xf2, + 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf1, 0x0, 0x0, 0x5, 0xff, 0xd0, + 0x0, 0x0, 0x1, 0xff, 0xf2, 0x0, 0x0, 0x2f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0x0, 0x0, 0x5, 0xff, 0xd0, 0x0, 0x0, 0x1, + 0xff, 0xf2, 0x0, 0x0, 0x2b, 0xbb, 0xbb, 0xbb, + 0xbb, 0xbb, 0xbb, 0xbb, 0xb2, 0x0, 0x0, 0x5, + 0xff, 0xd0, 0x0, 0x0, 0x1, 0xff, 0xf2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xd0, 0x0, + 0x0, 0x1, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa, 0xff, 0xc0, 0x0, 0x0, 0x2, 0xff, + 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8d, 0xdd, 0xff, 0xff, + 0xa0, 0x0, 0x0, 0x2, 0xff, 0xf3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5f, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x3, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0xff, 0xfa, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xfd, 0xa7, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x33, 0x33, 0x0, 0x0, 0x0, 0x0, @@ -55184,6 +55929,127 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xb5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+82F1 "英" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x11, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xff, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9f, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xff, 0xf2, 0x0, 0x0, + 0x0, 0x0, 0x11, 0x10, 0xb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0xb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x0, 0x45, 0x54, 0x33, + 0x33, 0x33, 0x9f, 0xff, 0x53, 0x33, 0x33, 0x33, + 0x33, 0x38, 0xff, 0xf5, 0x33, 0x33, 0x34, 0x45, + 0x56, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, + 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x20, + 0x0, 0x10, 0x0, 0x0, 0x6, 0xff, 0xf3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xf2, 0x0, 0xe, 0xfd, + 0xb6, 0x0, 0x6f, 0xff, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0x88, 0x10, 0x0, 0xdf, 0xff, 0x70, 0x3, + 0x88, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x93, 0x33, + 0x33, 0x33, 0x3c, 0xff, 0xd3, 0x33, 0x33, 0x33, + 0x39, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xff, 0x70, 0x0, 0x0, 0x0, 0xc, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf7, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xff, 0x70, 0x0, 0x0, 0x0, + 0xc, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x7, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xf7, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf9, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, 0x70, + 0x0, 0x0, 0x0, 0xe, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x8, + 0x76, 0x66, 0x55, 0xff, 0xfa, 0x55, 0x55, 0x55, + 0x55, 0xff, 0xfa, 0x55, 0x55, 0x55, 0x55, 0xaf, + 0xff, 0x55, 0x56, 0x67, 0x40, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf7, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, + 0xdc, 0xcb, 0xba, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, + 0xaa, 0xff, 0xff, 0xff, 0xfb, 0xaa, 0xaa, 0xaa, + 0xaa, 0xaa, 0xaa, 0xbb, 0xc6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1e, 0xff, 0xf4, 0xbf, 0xff, + 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb, 0xff, 0xf9, 0x1, 0xef, 0xff, 0x90, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0xfd, + 0x0, 0x3, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xfe, 0x20, 0x0, 0x4, + 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, + 0xff, 0xff, 0x40, 0x0, 0x0, 0x4, 0xff, 0xff, + 0xe4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x40, + 0x0, 0x0, 0x0, 0x3, 0xef, 0xff, 0xfa, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xdf, 0xff, 0xfe, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xdf, 0xff, 0xff, 0x91, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x8e, 0xff, 0xff, + 0xfb, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xaf, 0xff, 0xff, 0xfa, 0x40, 0x0, 0x0, 0x0, + 0x4, 0x7d, 0xff, 0xff, 0xff, 0xe6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5e, 0xff, + 0xff, 0xff, 0xea, 0x72, 0x0, 0xbf, 0xff, 0xff, + 0xff, 0xff, 0x81, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, + 0xfd, 0x10, 0x1, 0xcf, 0xff, 0xff, 0xe8, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x9f, 0xff, 0xfe, 0x10, 0x0, + 0x1, 0xef, 0xfc, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x18, 0xef, 0x50, 0x0, 0x0, 0x4, 0x82, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x30, 0x0, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x77, 0x72, 0x0, 0x0, 0x0, 0x0, 0x4a, 0xaa, 0x40, @@ -56206,6 +57072,116 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+897F "西" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xfe, 0xed, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xee, 0xfd, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x9f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x11, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0xff, 0x0, 0x0, 0x0, + 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0x0, + 0x0, 0x0, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xff, 0x0, 0x0, 0x0, 0xff, + 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xff, 0x0, 0x0, 0x0, 0xff, 0xf3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0x0, 0x0, + 0x0, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, + 0x10, 0x0, 0x0, 0xff, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, + 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xfe, 0x0, + 0x0, 0x0, 0x2f, 0xff, 0x0, 0x0, 0x0, 0xff, + 0xf3, 0x0, 0x0, 0x0, 0x4f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0xfe, 0x0, 0x0, 0x0, 0x4f, + 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf3, 0x0, 0x0, + 0x0, 0x4f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, + 0xfe, 0x0, 0x0, 0x0, 0x6f, 0xfc, 0x0, 0x0, + 0x0, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x4f, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, + 0x0, 0x8f, 0xfa, 0x0, 0x0, 0x0, 0xff, 0xf3, + 0x0, 0x0, 0x0, 0x4f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0xcf, 0xf7, + 0x0, 0x0, 0x0, 0xff, 0xf3, 0x0, 0x0, 0x0, + 0x4f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, + 0x0, 0x0, 0x0, 0xff, 0xf4, 0x0, 0x0, 0x0, + 0xff, 0xf3, 0x0, 0x0, 0x0, 0x4f, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x6, + 0xff, 0xf1, 0x0, 0x0, 0x0, 0xff, 0xf3, 0x0, + 0x0, 0x0, 0x4f, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xfe, 0x0, 0x0, 0xc, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x4f, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, + 0x0, 0x4f, 0xff, 0x60, 0x0, 0x0, 0x0, 0xff, + 0xf3, 0x0, 0x0, 0x0, 0x4f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0xdf, 0xff, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xf9, 0x21, 0x23, + 0x44, 0x4f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, + 0xfe, 0x0, 0x9, 0xff, 0xf7, 0x0, 0x0, 0x0, + 0x0, 0xef, 0xff, 0xff, 0xff, 0xfa, 0x4f, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x7f, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, + 0xff, 0xff, 0xf7, 0x4f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x7f, 0xfe, 0x7, 0xff, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x3e, 0xff, 0xff, 0xff, 0xf5, + 0x4f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, + 0x6, 0xef, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x57, 0x88, 0x88, 0x71, 0x4f, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x1c, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xaa, 0xaa, + 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, + 0xaa, 0xaa, 0xaa, 0xbf, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0xfe, 0x22, 0x22, 0x22, + 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, + 0x22, 0x22, 0x6f, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xaf, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xff, 0x10, 0x0, + /* U+8981 "要" */ 0x0, 0x76, 0x55, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, @@ -56846,6 +57822,121 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xa7, 0x51, 0x0, 0x0, + /* U+8A00 "言" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x15, 0xcc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3f, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xff, 0xff, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x15, 0x44, 0x33, 0x33, 0x33, + 0x33, 0x33, 0x33, 0x33, 0x9f, 0xff, 0xd3, 0x33, + 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x45, 0x53, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe3, 0xfe, 0xed, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0xde, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xef, 0xff, + 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xff, + 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0x43, 0x32, 0x22, 0x22, 0x22, 0x22, + 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x33, 0x44, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x1, 0xdc, + 0xbb, 0xba, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, + 0xaa, 0xaa, 0xaa, 0xab, 0xbc, 0xd3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, + 0xfc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, + 0xcc, 0xcc, 0xcc, 0xdf, 0xff, 0x90, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xaf, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, + 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, + 0xee, 0xee, 0xee, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb, 0xff, 0xf1, 0x11, 0x11, + 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, + 0x5f, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xff, 0xa0, 0x0, 0x0, + /* U+8B66 "警" */ 0x0, 0x0, 0x0, 0x0, 0x3, 0x33, 0x0, 0x0, 0x1, 0x33, 0x20, 0x0, 0x0, 0x0, 0x0, 0x55, @@ -58117,6 +59208,135 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+8BED "语" */ + 0x0, 0x0, 0x0, 0x42, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xfd, 0x10, 0x0, 0x0, 0x3, 0xff, + 0xee, 0xee, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xee, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x5f, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x2e, + 0xff, 0xfa, 0x0, 0x0, 0x3, 0xee, 0xdd, 0xcc, + 0xcc, 0xcc, 0xff, 0xff, 0xcc, 0xcc, 0xcc, 0xcc, + 0xdd, 0xde, 0xe0, 0x0, 0x0, 0x0, 0x2, 0xef, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, + 0xf5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd, 0x60, 0x0, 0x0, + 0x2, 0x22, 0x11, 0x10, 0x9, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xdd, 0xdd, + 0xdd, 0xdd, 0xdd, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xee, + 0xdd, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, + 0xbf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, + 0x20, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, + 0xfd, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0x0, + 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xf3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfa, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xf7, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xfd, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xff, 0xf4, 0x0, 0x0, + 0x0, 0x4, 0xff, 0xfb, 0x0, 0x0, 0x0, 0x26, + 0x54, 0x43, 0x39, 0xff, 0xf2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb, 0xff, 0xf1, 0x0, 0x0, 0x0, + 0x6, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xff, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0xf2, 0x0, 0x47, 0x65, 0x54, 0x44, + 0x5f, 0xff, 0xc4, 0x44, 0x44, 0x44, 0x4c, 0xff, + 0xf9, 0x55, 0x66, 0x70, 0x0, 0x0, 0x0, 0x7, + 0xff, 0xf1, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, + 0xf1, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf1, + 0x0, 0x6b, 0xaa, 0x99, 0x88, 0x88, 0x88, 0x88, + 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x9a, + 0xb0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xff, 0xf1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x3, + 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, + 0x33, 0x33, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0xf1, 0x0, 0x0, 0x0, 0xd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, + 0xff, 0xf1, 0x0, 0x10, 0x0, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, + 0xf1, 0x5, 0xc0, 0x0, 0xb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf1, + 0x1e, 0xf8, 0x0, 0xb, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf1, 0xcf, + 0xff, 0x30, 0xa, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xff, 0xfa, 0xff, 0xff, + 0x60, 0xa, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd, 0xff, 0xb0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf7, 0x0, + 0xa, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xff, 0xff, 0xff, 0x80, 0x0, 0xa, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0xff, 0xff, 0xf9, 0x0, 0x0, 0xa, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xff, 0xff, 0xb0, 0x0, 0x0, 0xa, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, + 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, + 0xfd, 0x10, 0x0, 0x0, 0xa, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf3, + 0x0, 0x0, 0x0, 0xa, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xff, 0xff, 0x70, 0x0, + 0x0, 0x0, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7f, 0xfb, 0x0, 0x0, 0x0, + 0x0, 0xb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0xc, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xff, 0xd0, 0x0, 0x0, + /* U+8BF7 "请" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0xcc, 0x80, @@ -72443,392 +73663,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 185870, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, {.bitmap_index = 186883, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, {.bitmap_index = 187873, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 188908, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 189921, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 190911, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 191879, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 192891, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 193881, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 194916, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 195951, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 196897, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 197955, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 198944, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 199979, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 200882, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 201872, .adv_w = 768, .box_w = 41, .box_h = 44, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 202774, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 203742, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 204666, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 205634, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 206646, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 207681, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 208671, .adv_w = 768, .box_w = 38, .box_h = 44, .ofs_x = 5, .ofs_y = -5}, - {.bitmap_index = 209507, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 210496, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 211464, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 212410, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 213378, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 214346, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 215314, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 216282, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 217228, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 218196, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 219231, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 220177, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 221167, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 222179, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 223125, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 224071, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 225039, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 226029, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 226975, .adv_w = 768, .box_w = 45, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 227920, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 228888, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 229856, .adv_w = 768, .box_w = 44, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 230758, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 231726, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 232672, .adv_w = 768, .box_w = 41, .box_h = 43, .ofs_x = 4, .ofs_y = -6}, - {.bitmap_index = 233554, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 234454, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 235400, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 236300, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 237290, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 238193, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 239117, .adv_w = 768, .box_w = 38, .box_h = 40, .ofs_x = 5, .ofs_y = -3}, - {.bitmap_index = 239877, .adv_w = 768, .box_w = 40, .box_h = 43, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 240737, .adv_w = 768, .box_w = 40, .box_h = 43, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 241597, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 242610, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 243599, .adv_w = 768, .box_w = 46, .box_h = 42, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 244565, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 245554, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 246457, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 247492, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 248438, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 249450, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 250440, .adv_w = 768, .box_w = 41, .box_h = 46, .ofs_x = 4, .ofs_y = -6}, - {.bitmap_index = 251383, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 252373, .adv_w = 768, .box_w = 46, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 253339, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 254329, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 255275, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 256265, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 3, .ofs_y = -6}, - {.bitmap_index = 257233, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 258201, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 259214, .adv_w = 768, .box_w = 43, .box_h = 46, .ofs_x = 3, .ofs_y = -6}, - {.bitmap_index = 260203, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 261193, .adv_w = 768, .box_w = 40, .box_h = 43, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 262053, .adv_w = 768, .box_w = 42, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 262998, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 264010, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 265023, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 266058, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 267070, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 268082, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 269117, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 270085, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 271120, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 272044, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 273012, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 273936, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 274994, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 275940, .adv_w = 768, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 276865, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 277833, .adv_w = 768, .box_w = 41, .box_h = 40, .ofs_x = 5, .ofs_y = -4}, - {.bitmap_index = 278653, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 279666, .adv_w = 768, .box_w = 42, .box_h = 43, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 280569, .adv_w = 768, .box_w = 42, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 281514, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 282438, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 283428, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 284463, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 285475, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 286488, .adv_w = 768, .box_w = 43, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 287370, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 288360, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 289306, .adv_w = 768, .box_w = 39, .box_h = 44, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 290164, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 291110, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 292100, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 293090, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 294080, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 295048, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 296038, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 296984, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 297974, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 298964, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 299999, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 300989, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 301957, .adv_w = 768, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 302882, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 303894, .adv_w = 768, .box_w = 43, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 304819, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 305809, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 306844, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 307812, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 308780, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 309815, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 310850, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 311863, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 312853, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 313866, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 314879, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 315914, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 316949, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 317962, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 319020, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 320032, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 321044, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 322034, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 323069, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 324081, .adv_w = 768, .box_w = 42, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 324963, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 3, .ofs_y = -6}, - {.bitmap_index = 325953, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 326988, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 328046, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 329036, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 330004, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 331016, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 332028, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 333086, .adv_w = 768, .box_w = 44, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 333988, .adv_w = 768, .box_w = 32, .box_h = 42, .ofs_x = 9, .ofs_y = -4}, - {.bitmap_index = 334660, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 335650, .adv_w = 768, .box_w = 43, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 336532, .adv_w = 768, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 337414, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 338338, .adv_w = 768, .box_w = 42, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 339220, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 340210, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 341178, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 342190, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 343158, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 344170, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 345205, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 346108, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 347098, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 348044, .adv_w = 768, .box_w = 47, .box_h = 43, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 349055, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 350090, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 351125, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 352093, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 353105, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 354117, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 355152, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 356165, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 357200, .adv_w = 768, .box_w = 43, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 358017, .adv_w = 768, .box_w = 43, .box_h = 43, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 358942, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 359955, .adv_w = 768, .box_w = 41, .box_h = 42, .ofs_x = 4, .ofs_y = -3}, - {.bitmap_index = 360816, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 361762, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 362730, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 363676, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 364644, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 365656, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 366559, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 367594, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 368562, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 369620, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 370588, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 371512, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 372547, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 373605, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 374618, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 375608, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 376576, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 377634, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 378647, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 379615, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 380605, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 381573, .adv_w = 768, .box_w = 45, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 382518, .adv_w = 768, .box_w = 46, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 383484, .adv_w = 768, .box_w = 46, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 384450, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -3}, - {.bitmap_index = 385374, .adv_w = 768, .box_w = 40, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 386234, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 387180, .adv_w = 768, .box_w = 41, .box_h = 42, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 388041, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 389031, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 389955, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 390855, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 391867, .adv_w = 768, .box_w = 34, .box_h = 41, .ofs_x = 7, .ofs_y = -4}, - {.bitmap_index = 392564, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 393488, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 394501, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -7}, - {.bitmap_index = 395514, .adv_w = 768, .box_w = 43, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 396439, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 397428, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 398396, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 399408, .adv_w = 768, .box_w = 42, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 400290, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 401258, .adv_w = 768, .box_w = 42, .box_h = 46, .ofs_x = 3, .ofs_y = -6}, - {.bitmap_index = 402224, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 403236, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 404226, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 405261, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 406251, .adv_w = 768, .box_w = 42, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 407196, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 408254, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 409289, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 410347, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 411360, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 412350, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 413274, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 414220, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 415255, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 416179, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 417169, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 418158, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 419193, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 420251, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 421263, .adv_w = 768, .box_w = 42, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 422145, .adv_w = 768, .box_w = 43, .box_h = 41, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 423027, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 423995, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 424898, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 425888, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 3, .ofs_y = -6}, - {.bitmap_index = 426856, .adv_w = 768, .box_w = 34, .box_h = 44, .ofs_x = 7, .ofs_y = -4}, - {.bitmap_index = 427604, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 428572, .adv_w = 768, .box_w = 43, .box_h = 43, .ofs_x = 3, .ofs_y = -3}, - {.bitmap_index = 429497, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 430443, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 431433, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 432491, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 433526, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 434539, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 435552, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 436565, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 437511, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 438500, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 439535, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 440593, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 441628, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 442528, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 443563, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 444509, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 445499, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 446534, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 447458, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 448470, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 449460, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 450449, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 451484, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 452496, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 453464, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 454410, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 455400, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 456390, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 457379, .adv_w = 768, .box_w = 45, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 458324, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 459359, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 460394, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 461384, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 462419, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 463387, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 464422, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 465480, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 466470, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 467394, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 468384, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 469352, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 470387, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 471377, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 472389, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 473357, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 474369, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 475315, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 476283, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 477273, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 478308, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 479298, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 480288, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 481278, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 482224, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, - {.bitmap_index = 483127, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 484095, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 485085, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 486075, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 487110, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 488056, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 4, .ofs_y = -5}, - {.bitmap_index = 488956, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 4, .ofs_y = -6}, - {.bitmap_index = 489856, .adv_w = 768, .box_w = 41, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 490779, .adv_w = 768, .box_w = 43, .box_h = 46, .ofs_x = 4, .ofs_y = -6}, - {.bitmap_index = 491768, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 492736, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 493660, .adv_w = 768, .box_w = 42, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 494521, .adv_w = 768, .box_w = 42, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, - {.bitmap_index = 495466, .adv_w = 768, .box_w = 42, .box_h = 43, .ofs_x = 3, .ofs_y = -6}, - {.bitmap_index = 496369, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 497315, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 498261, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, - {.bitmap_index = 499207, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 500219, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 501231, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, - {.bitmap_index = 502221, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 503256, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -4}, - {.bitmap_index = 504180, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, - {.bitmap_index = 505193, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, - {.bitmap_index = 506183, .adv_w = 768, .box_w = 48, .box_h = 49, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 507359, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 508223, .adv_w = 768, .box_w = 48, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 509231, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 510095, .adv_w = 528, .box_w = 33, .box_h = 34, .ofs_x = 0, .ofs_y = 1}, - {.bitmap_index = 510656, .adv_w = 768, .box_w = 48, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 511808, .adv_w = 768, .box_w = 46, .box_h = 48, .ofs_x = 1, .ofs_y = -6}, - {.bitmap_index = 512912, .adv_w = 864, .box_w = 54, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 514046, .adv_w = 768, .box_w = 48, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 515198, .adv_w = 864, .box_w = 54, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 516170, .adv_w = 768, .box_w = 48, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 517322, .adv_w = 384, .box_w = 24, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 517778, .adv_w = 576, .box_w = 36, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 518462, .adv_w = 864, .box_w = 54, .box_h = 46, .ofs_x = 0, .ofs_y = -5}, - {.bitmap_index = 519704, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 520568, .adv_w = 528, .box_w = 33, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 521360, .adv_w = 672, .box_w = 30, .box_h = 44, .ofs_x = 6, .ofs_y = -4}, - {.bitmap_index = 522020, .adv_w = 672, .box_w = 42, .box_h = 50, .ofs_x = 0, .ofs_y = -7}, - {.bitmap_index = 523070, .adv_w = 672, .box_w = 42, .box_h = 43, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 523973, .adv_w = 672, .box_w = 42, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 524855, .adv_w = 672, .box_w = 30, .box_h = 44, .ofs_x = 6, .ofs_y = -4}, - {.bitmap_index = 525515, .adv_w = 672, .box_w = 44, .box_h = 42, .ofs_x = -1, .ofs_y = -3}, - {.bitmap_index = 526439, .adv_w = 480, .box_w = 26, .box_h = 42, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 526985, .adv_w = 480, .box_w = 26, .box_h = 42, .ofs_x = 2, .ofs_y = -3}, - {.bitmap_index = 527531, .adv_w = 672, .box_w = 42, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 528413, .adv_w = 672, .box_w = 42, .box_h = 10, .ofs_x = 0, .ofs_y = 13}, - {.bitmap_index = 528623, .adv_w = 864, .box_w = 54, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 529595, .adv_w = 960, .box_w = 60, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 531035, .adv_w = 864, .box_w = 56, .box_h = 48, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 532379, .adv_w = 768, .box_w = 48, .box_h = 44, .ofs_x = 0, .ofs_y = -4}, - {.bitmap_index = 533435, .adv_w = 672, .box_w = 42, .box_h = 26, .ofs_x = 0, .ofs_y = 5}, - {.bitmap_index = 533981, .adv_w = 672, .box_w = 42, .box_h = 26, .ofs_x = 0, .ofs_y = 5}, - {.bitmap_index = 534527, .adv_w = 960, .box_w = 60, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 535667, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 536531, .adv_w = 768, .box_w = 48, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 537683, .adv_w = 768, .box_w = 49, .box_h = 49, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 538884, .adv_w = 672, .box_w = 43, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 539787, .adv_w = 672, .box_w = 42, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 540795, .adv_w = 672, .box_w = 42, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 541677, .adv_w = 672, .box_w = 42, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 542475, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 543339, .adv_w = 480, .box_w = 32, .box_h = 48, .ofs_x = -1, .ofs_y = -6}, - {.bitmap_index = 544107, .adv_w = 672, .box_w = 42, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 545115, .adv_w = 672, .box_w = 42, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 546123, .adv_w = 864, .box_w = 54, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 547095, .adv_w = 768, .box_w = 50, .box_h = 50, .ofs_x = -1, .ofs_y = -7}, - {.bitmap_index = 548345, .adv_w = 576, .box_w = 36, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 549209, .adv_w = 960, .box_w = 60, .box_h = 44, .ofs_x = 0, .ofs_y = -3}, - {.bitmap_index = 550529, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 551429, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 552329, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 553229, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 554129, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, - {.bitmap_index = 555029, .adv_w = 960, .box_w = 61, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 556188, .adv_w = 672, .box_w = 36, .box_h = 48, .ofs_x = 3, .ofs_y = -6}, - {.bitmap_index = 557052, .adv_w = 672, .box_w = 42, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 558060, .adv_w = 768, .box_w = 49, .box_h = 49, .ofs_x = -1, .ofs_y = -7}, - {.bitmap_index = 559261, .adv_w = 960, .box_w = 60, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 560341, .adv_w = 576, .box_w = 36, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, - {.bitmap_index = 561205, .adv_w = 773, .box_w = 49, .box_h = 31, .ofs_x = 0, .ofs_y = 3} + {.bitmap_index = 188908, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 189897, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 190910, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 191900, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 192868, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 193881, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 194893, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 195883, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 196918, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 197953, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 198899, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 199957, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 200946, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 201981, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 202884, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 203874, .adv_w = 768, .box_w = 41, .box_h = 44, .ofs_x = 4, .ofs_y = -5}, + {.bitmap_index = 204776, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 205744, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 206668, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 207636, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 208648, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 209683, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 210673, .adv_w = 768, .box_w = 38, .box_h = 44, .ofs_x = 5, .ofs_y = -5}, + {.bitmap_index = 211509, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 212498, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 213466, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 214412, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 215380, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 216348, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 217316, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 218284, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 219230, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 220198, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 221233, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 222179, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 223169, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 224181, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 225127, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 226073, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 227041, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 228031, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 228977, .adv_w = 768, .box_w = 45, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 229922, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 230890, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 231858, .adv_w = 768, .box_w = 44, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 232760, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 233728, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 234674, .adv_w = 768, .box_w = 41, .box_h = 43, .ofs_x = 4, .ofs_y = -6}, + {.bitmap_index = 235556, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 236456, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 237402, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 238302, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 239292, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 240195, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 241119, .adv_w = 768, .box_w = 38, .box_h = 40, .ofs_x = 5, .ofs_y = -3}, + {.bitmap_index = 241879, .adv_w = 768, .box_w = 40, .box_h = 43, .ofs_x = 4, .ofs_y = -5}, + {.bitmap_index = 242739, .adv_w = 768, .box_w = 40, .box_h = 43, .ofs_x = 4, .ofs_y = -5}, + {.bitmap_index = 243599, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 244612, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 245601, .adv_w = 768, .box_w = 46, .box_h = 42, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 246567, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 247556, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 248459, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 249494, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 250440, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 251452, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 252442, .adv_w = 768, .box_w = 41, .box_h = 46, .ofs_x = 4, .ofs_y = -6}, + {.bitmap_index = 253385, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 254375, .adv_w = 768, .box_w = 46, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 255341, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 256331, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 257277, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 258267, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 3, .ofs_y = -6}, + {.bitmap_index = 259235, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 260203, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 261216, .adv_w = 768, .box_w = 43, .box_h = 46, .ofs_x = 3, .ofs_y = -6}, + {.bitmap_index = 262205, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 263195, .adv_w = 768, .box_w = 40, .box_h = 43, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 264055, .adv_w = 768, .box_w = 42, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 265000, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 266012, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 267025, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 268060, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 269072, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 270084, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 271119, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 272087, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 273122, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 274046, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 275014, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 275938, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 276996, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 277942, .adv_w = 768, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 278867, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 279835, .adv_w = 768, .box_w = 41, .box_h = 40, .ofs_x = 5, .ofs_y = -4}, + {.bitmap_index = 280655, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 281668, .adv_w = 768, .box_w = 42, .box_h = 43, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 282571, .adv_w = 768, .box_w = 42, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 283516, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 284440, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 285430, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 286465, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 287477, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 288490, .adv_w = 768, .box_w = 43, .box_h = 41, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 289372, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 290362, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 291308, .adv_w = 768, .box_w = 39, .box_h = 44, .ofs_x = 4, .ofs_y = -5}, + {.bitmap_index = 292166, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 293112, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 294102, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 295092, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 296082, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 297072, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 298040, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 299030, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 299976, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 300966, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 301956, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 302991, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 303981, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 304949, .adv_w = 768, .box_w = 43, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 305874, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 306886, .adv_w = 768, .box_w = 43, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 307811, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 308801, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 309836, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 310804, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 311772, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 312807, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 313842, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 314855, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 315845, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 316858, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 317871, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 318906, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 319941, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 320954, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 322012, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 323024, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 324036, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 325026, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 326061, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 327073, .adv_w = 768, .box_w = 42, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 327955, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 3, .ofs_y = -6}, + {.bitmap_index = 328945, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 329980, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 331038, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 332028, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 332996, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 334008, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 335020, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 336078, .adv_w = 768, .box_w = 44, .box_h = 41, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 336980, .adv_w = 768, .box_w = 32, .box_h = 42, .ofs_x = 9, .ofs_y = -4}, + {.bitmap_index = 337652, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 338642, .adv_w = 768, .box_w = 43, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 339524, .adv_w = 768, .box_w = 41, .box_h = 43, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 340406, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 341330, .adv_w = 768, .box_w = 42, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 342212, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 343202, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 344170, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 345182, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 346150, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 347162, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 348197, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 349100, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 350090, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 351036, .adv_w = 768, .box_w = 47, .box_h = 43, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 352047, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 353082, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 354117, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 355085, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 356097, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 357109, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 358144, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 359157, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 360192, .adv_w = 768, .box_w = 43, .box_h = 38, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 361009, .adv_w = 768, .box_w = 43, .box_h = 43, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 361934, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 362947, .adv_w = 768, .box_w = 41, .box_h = 42, .ofs_x = 4, .ofs_y = -3}, + {.bitmap_index = 363808, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 364754, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 365722, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 366668, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 367636, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 368648, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 369551, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 370586, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 371554, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 372612, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 373580, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 374504, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 375539, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 376597, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 377610, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 378600, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 379568, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 380626, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 381639, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 382607, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 383510, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 384500, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 385468, .adv_w = 768, .box_w = 45, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 386413, .adv_w = 768, .box_w = 46, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 387379, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 388368, .adv_w = 768, .box_w = 46, .box_h = 42, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 389334, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 390258, .adv_w = 768, .box_w = 40, .box_h = 43, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 391118, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 4, .ofs_y = -5}, + {.bitmap_index = 392064, .adv_w = 768, .box_w = 41, .box_h = 42, .ofs_x = 4, .ofs_y = -5}, + {.bitmap_index = 392925, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 393915, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 394839, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 4, .ofs_y = -5}, + {.bitmap_index = 395739, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 396751, .adv_w = 768, .box_w = 34, .box_h = 41, .ofs_x = 7, .ofs_y = -4}, + {.bitmap_index = 397448, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 398372, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 399385, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -7}, + {.bitmap_index = 400398, .adv_w = 768, .box_w = 43, .box_h = 43, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 401323, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 402312, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 403280, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 404292, .adv_w = 768, .box_w = 42, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 405174, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 406142, .adv_w = 768, .box_w = 42, .box_h = 46, .ofs_x = 3, .ofs_y = -6}, + {.bitmap_index = 407108, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 408120, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 409110, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 410145, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 411135, .adv_w = 768, .box_w = 42, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 412080, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 413138, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 414173, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 415231, .adv_w = 768, .box_w = 42, .box_h = 46, .ofs_x = 3, .ofs_y = -6}, + {.bitmap_index = 416197, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 417210, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 418200, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 419124, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 420070, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 421105, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 422029, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 423019, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 424008, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 425043, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 426101, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 427113, .adv_w = 768, .box_w = 42, .box_h = 42, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 427995, .adv_w = 768, .box_w = 43, .box_h = 41, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 428877, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 429845, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 430748, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 431738, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 3, .ofs_y = -6}, + {.bitmap_index = 432706, .adv_w = 768, .box_w = 34, .box_h = 44, .ofs_x = 7, .ofs_y = -4}, + {.bitmap_index = 433454, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 434422, .adv_w = 768, .box_w = 43, .box_h = 43, .ofs_x = 3, .ofs_y = -3}, + {.bitmap_index = 435347, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 436293, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 437239, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 438229, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 439287, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 440322, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 441335, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 442348, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 443361, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 444307, .adv_w = 768, .box_w = 42, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 445168, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 446157, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 447192, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 448250, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 449285, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 450185, .adv_w = 768, .box_w = 41, .box_h = 44, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 451087, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 452122, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 453068, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 454058, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 455093, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 456017, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 457029, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 458019, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 459008, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 460043, .adv_w = 768, .box_w = 44, .box_h = 46, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 461055, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 462067, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 463035, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 463981, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 464971, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 465961, .adv_w = 768, .box_w = 46, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 466950, .adv_w = 768, .box_w = 45, .box_h = 42, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 467895, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 468930, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 469965, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 470955, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 471990, .adv_w = 768, .box_w = 43, .box_h = 45, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 472958, .adv_w = 768, .box_w = 45, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 473993, .adv_w = 768, .box_w = 46, .box_h = 46, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 475051, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 476041, .adv_w = 768, .box_w = 44, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 476965, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 477955, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 478923, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 479958, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 480948, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 481960, .adv_w = 768, .box_w = 45, .box_h = 43, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 482928, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 483940, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 484886, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 485854, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 486844, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 487879, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 488869, .adv_w = 768, .box_w = 44, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 489859, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 490849, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 491795, .adv_w = 768, .box_w = 43, .box_h = 42, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 492698, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 493666, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 494656, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 495646, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 496681, .adv_w = 768, .box_w = 43, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 497627, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 4, .ofs_y = -5}, + {.bitmap_index = 498527, .adv_w = 768, .box_w = 40, .box_h = 45, .ofs_x = 4, .ofs_y = -6}, + {.bitmap_index = 499427, .adv_w = 768, .box_w = 41, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 500350, .adv_w = 768, .box_w = 43, .box_h = 46, .ofs_x = 4, .ofs_y = -6}, + {.bitmap_index = 501339, .adv_w = 768, .box_w = 44, .box_h = 44, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 502307, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 503231, .adv_w = 768, .box_w = 42, .box_h = 41, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 504092, .adv_w = 768, .box_w = 42, .box_h = 45, .ofs_x = 3, .ofs_y = -5}, + {.bitmap_index = 505037, .adv_w = 768, .box_w = 42, .box_h = 43, .ofs_x = 3, .ofs_y = -6}, + {.bitmap_index = 505940, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 506886, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 507832, .adv_w = 768, .box_w = 44, .box_h = 43, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 508778, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 509790, .adv_w = 768, .box_w = 46, .box_h = 44, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 510802, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 511792, .adv_w = 768, .box_w = 46, .box_h = 45, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 512827, .adv_w = 768, .box_w = 42, .box_h = 44, .ofs_x = 3, .ofs_y = -4}, + {.bitmap_index = 513751, .adv_w = 768, .box_w = 45, .box_h = 45, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 514764, .adv_w = 768, .box_w = 45, .box_h = 44, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 515754, .adv_w = 768, .box_w = 48, .box_h = 49, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 516930, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 517794, .adv_w = 768, .box_w = 48, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 518802, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 519666, .adv_w = 528, .box_w = 33, .box_h = 34, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 520227, .adv_w = 768, .box_w = 48, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 521379, .adv_w = 768, .box_w = 46, .box_h = 48, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 522483, .adv_w = 864, .box_w = 54, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 523617, .adv_w = 768, .box_w = 48, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 524769, .adv_w = 864, .box_w = 54, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 525741, .adv_w = 768, .box_w = 48, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 526893, .adv_w = 384, .box_w = 24, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 527349, .adv_w = 576, .box_w = 36, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 528033, .adv_w = 864, .box_w = 54, .box_h = 46, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 529275, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 530139, .adv_w = 528, .box_w = 33, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 530931, .adv_w = 672, .box_w = 30, .box_h = 44, .ofs_x = 6, .ofs_y = -4}, + {.bitmap_index = 531591, .adv_w = 672, .box_w = 42, .box_h = 50, .ofs_x = 0, .ofs_y = -7}, + {.bitmap_index = 532641, .adv_w = 672, .box_w = 42, .box_h = 43, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 533544, .adv_w = 672, .box_w = 42, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 534426, .adv_w = 672, .box_w = 30, .box_h = 44, .ofs_x = 6, .ofs_y = -4}, + {.bitmap_index = 535086, .adv_w = 672, .box_w = 44, .box_h = 42, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 536010, .adv_w = 480, .box_w = 26, .box_h = 42, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 536556, .adv_w = 480, .box_w = 26, .box_h = 42, .ofs_x = 2, .ofs_y = -3}, + {.bitmap_index = 537102, .adv_w = 672, .box_w = 42, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 537984, .adv_w = 672, .box_w = 42, .box_h = 10, .ofs_x = 0, .ofs_y = 13}, + {.bitmap_index = 538194, .adv_w = 864, .box_w = 54, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 539166, .adv_w = 960, .box_w = 60, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 540606, .adv_w = 864, .box_w = 56, .box_h = 48, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 541950, .adv_w = 768, .box_w = 48, .box_h = 44, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 543006, .adv_w = 672, .box_w = 42, .box_h = 26, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 543552, .adv_w = 672, .box_w = 42, .box_h = 26, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 544098, .adv_w = 960, .box_w = 60, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 545238, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 546102, .adv_w = 768, .box_w = 48, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 547254, .adv_w = 768, .box_w = 49, .box_h = 49, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 548455, .adv_w = 672, .box_w = 43, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 549358, .adv_w = 672, .box_w = 42, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 550366, .adv_w = 672, .box_w = 42, .box_h = 42, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 551248, .adv_w = 672, .box_w = 42, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 552046, .adv_w = 768, .box_w = 48, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 552910, .adv_w = 480, .box_w = 32, .box_h = 48, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 553678, .adv_w = 672, .box_w = 42, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 554686, .adv_w = 672, .box_w = 42, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 555694, .adv_w = 864, .box_w = 54, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 556666, .adv_w = 768, .box_w = 50, .box_h = 50, .ofs_x = -1, .ofs_y = -7}, + {.bitmap_index = 557916, .adv_w = 576, .box_w = 36, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 558780, .adv_w = 960, .box_w = 60, .box_h = 44, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 560100, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 561000, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 561900, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 562800, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 563700, .adv_w = 960, .box_w = 60, .box_h = 30, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 564600, .adv_w = 960, .box_w = 61, .box_h = 38, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 565759, .adv_w = 672, .box_w = 36, .box_h = 48, .ofs_x = 3, .ofs_y = -6}, + {.bitmap_index = 566623, .adv_w = 672, .box_w = 42, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 567631, .adv_w = 768, .box_w = 49, .box_h = 49, .ofs_x = -1, .ofs_y = -7}, + {.bitmap_index = 568832, .adv_w = 960, .box_w = 60, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 569912, .adv_w = 576, .box_w = 36, .box_h = 48, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 570776, .adv_w = 773, .box_w = 49, .box_h = 31, .ofs_x = 0, .ofs_y = 3} }; /*--------------------- @@ -72849,55 +74079,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -72929,7 +74161,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -73034,7 +74266,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -73133,7 +74366,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ diff --git a/lib/lvgl/lvgl/src/font/lv_font_montserrat_8.c b/lib/lvgl/lvgl/src/font/lv_font_montserrat_8.c index 61817648..2b8341ff 100644 --- a/lib/lvgl/lvgl/src/font/lv_font_montserrat_8.c +++ b/lib/lvgl/lvgl/src/font/lv_font_montserrat_8.c @@ -1,7 +1,7 @@ /******************************************************************************* * Size: 8 px * Bpp: 4 - * Opts: --bpp 4 --size 8 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20351,20363,20391,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29366,29575,29615,29616,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33719,33756,34255,34562,34892,34920,34987,35013,35201,35268,35270,35272,35282,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_8.c + * Opts: --bpp 4 --size 8 --no-compress --font Montserrat-Medium.ttf --range 32-127,161,176,191,193,201,205,209,211,218,220,225,233,237,241,243,250,252,8226 --font FontAwesome5-Solid+Brands+Regular.woff --range 61441,61448,61451,61452,61452,61453,61457,61459,61461,61465,61468,61473,61478,61479,61480,61502,61507,61512,61515,61516,61517,61521,61522,61523,61524,61543,61544,61550,61552,61553,61556,61559,61560,61561,61563,61587,61589,61636,61637,61639,61641,61664,61671,61674,61683,61724,61732,61787,61931,62016,62017,62018,62019,62020,62087,62099,62212,62189,62810,63426,63650 --font simhei.ttf --range 19968,19978,19979,19981,19982,19987,19994,20004,20010,20013,20018,20026,20027,20043,20108,20110,20123,20142,20165,20174,20195,20197,20208,20214,20219,20241,20250,20301,20302,20307,20351,20363,20391,20420,20445,20449,20462,20463,20540,20542,20648,20687,20803,20809,20811,20837,20851,20854,20877,20915,20934,20986,20987,20998,20999,21015,21017,21024,21035,21040,21046,21069,21151,21160,21253,21270,21320,21333,21345,21387,21452,21457,21462,21487,21491,21495,21516,21517,21518,21551,21629,21644,22120,22238,22266,22270,22312,22320,22336,22351,22352,22359,22522,22788,22797,22810,22823,22825,22826,22833,22836,22841,22914,22987,23383,23384,23427,23433,23436,23450,23458,23485,23494,23545,23548,23558,23567,23569,23581,23601,23631,23637,24038,24050,24067,24102,24120,24179,24182,24230,24310,24314,24320,24335,24378,24403,24405,24490,24503,24515,24535,24577,24615,24635,24687,24847,25104,25110,25143,25152,25159,25163,25171,25193,25195,25214,25253,25311,25321,25345,25346,25353,25439,25442,25481,25509,25511,25513,25554,25628,25773,25903,25913,25918,25928,25968,25972,25991,26012,26032,26080,26085,26102,26174,26242,26356,26368,26377,26399,26410,26412,26426,26465,26524,26576,26597,26631,26657,26679,26681,26684,26816,27169,27178,27425,27491,27492,27573,27604,27714,27744,27809,27861,27880,27963,27969,27979,28040,28165,28201,28304,28378,28385,28857,28872,28966,28982,29256,29273,29366,29575,29615,29616,29677,29702,29983,29992,30005,30011,30028,30041,30340,30424,30446,30452,30475,30496,30524,30701,30721,30830,31034,31105,31163,31181,31227,31243,31354,31364,31454,31471,31526,31616,31859,31995,32032,32034,32447,32463,32465,32467,32476,32479,32490,32593,32622,32773,32819,32972,33021,33258,33268,33455,33521,33719,33756,34255,34562,34892,34920,34987,35013,35199,35201,35268,35270,35272,35282,35328,35686,35745,35748,35758,35760,35774,35775,35777,35782,35797,35821,35831,35843,36133,36136,36229,36317,36394,36712,36716,36718,36724,36733,36755,36807,36816,36820,36825,36827,36830,36857,36861,36864,36865,36873,36890,36895,36947,37096,37117,37325,37327,38047,38145,38190,38236,38271,38381,38382,38388,38500,38544,38656,38754,38899,39029,39030,39033,39044,39057,39118,39281,39564,40483,40614,40664 --font Montserrat-Medium.ttf --range 1024-1279 --format lvgl -o out/lv_font_montserrat_8.c ******************************************************************************/ #ifdef LV_LVGL_H_INCLUDE_SIMPLE @@ -1622,6 +1622,12 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x19, 0x18, 0x9, 0x0, 0x9, 0x18, 0x39, 0x0, 0x9, 0x1d, 0x84, 0x66, 0x9, 0x14, 0x72, 0x85, + /* U+4F53 "体" */ + 0x5, 0x30, 0x90, 0x0, 0x9, 0x10, 0x90, 0x0, + 0xd, 0x58, 0xea, 0x82, 0x7c, 0x6, 0xc9, 0x0, + 0x19, 0x19, 0x93, 0x80, 0x9, 0x97, 0xc8, 0x64, + 0x9, 0x0, 0x90, 0x0, 0x9, 0x0, 0x90, 0x0, + /* U+4F7F "使" */ 0x3, 0x0, 0x50, 0x0, 0x9, 0x68, 0xc8, 0x82, 0x1d, 0x25, 0xb5, 0x50, 0x7a, 0x74, 0xa2, 0xa0, @@ -1641,6 +1647,12 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x8, 0x89, 0x89, 0x63, 0x8, 0x3a, 0x38, 0x63, 0x8, 0x39, 0xa0, 0x63, 0x9, 0x91, 0x52, 0xc1, + /* U+4FC4 "俄" */ + 0x1, 0x20, 0x3, 0x0, 0x6, 0x69, 0x69, 0x60, + 0xc, 0x8, 0x8, 0x31, 0x6d, 0x4c, 0x8c, 0x84, + 0x9, 0x8, 0x68, 0x51, 0x9, 0x7c, 0x16, 0x90, + 0x9, 0x8, 0x3a, 0x84, 0x9, 0x3a, 0x20, 0x76, + /* U+4FDD "保" */ 0x0, 0x20, 0x0, 0x0, 0x5, 0x5a, 0x88, 0xa0, 0xc, 0xa, 0x88, 0xa0, 0x7c, 0x0, 0x54, 0x0, @@ -2291,6 +2303,12 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x9, 0x94, 0xb7, 0xb0, 0x9, 0x51, 0x80, 0x80, 0x0, 0x0, 0x0, 0x0, + /* U+5FB7 "德" */ + 0x2, 0x20, 0x31, 0x0, 0xa, 0x48, 0xb8, 0x73, + 0x55, 0x68, 0xb8, 0x80, 0x9, 0x29, 0x99, 0x90, + 0x5c, 0x6, 0x66, 0x60, 0x19, 0x27, 0x88, 0x73, + 0x9, 0x37, 0x66, 0x53, 0x9, 0x53, 0xa8, 0x73, + /* U+5FC3 "心" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0x10, 0x0, 0x0, 0x3, 0x60, 0x0, 0x13, 0x71, 0x2, 0x30, @@ -2863,6 +2881,12 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x7, 0x83, 0x59, 0x90, 0x26, 0x87, 0x29, 0x60, 0x62, 0x87, 0x78, 0x95, 0x0, 0x0, 0x10, 0x0, + /* U+7259 "牙" */ + 0x0, 0x0, 0x0, 0x0, 0x6, 0x88, 0x8d, 0x80, + 0x0, 0xa0, 0xa, 0x0, 0x7, 0xb8, 0x8d, 0x86, + 0x0, 0x1, 0x9a, 0x0, 0x0, 0x2a, 0x1a, 0x0, + 0x7, 0xa1, 0x9, 0x0, 0x4, 0x0, 0x94, 0x0, + /* U+72B6 "状" */ 0x0, 0xa0, 0x2, 0x0, 0x10, 0xa0, 0xa, 0x70, 0x56, 0xa0, 0xa, 0x13, 0x1, 0xa5, 0x9e, 0x86, @@ -2887,6 +2911,12 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x9, 0x11, 0x6b, 0x10, 0x6b, 0x81, 0xa8, 0x13, 0x10, 0x3a, 0x17, 0xb4, 0x0, 0x0, 0x0, 0x0, + /* U+73ED "班" */ + 0x0, 0x0, 0x0, 0x0, 0x25, 0x40, 0xa6, 0x63, + 0x1a, 0x21, 0x91, 0x91, 0x9, 0x8, 0x80, 0x90, + 0x3c, 0x68, 0x97, 0xc3, 0x9, 0x1, 0x70, 0x90, + 0x1b, 0x88, 0x30, 0x90, 0x43, 0x18, 0x27, 0x75, + /* U+7406 "理" */ 0x69, 0x8a, 0x8c, 0xc1, 0x9, 0xa, 0x7c, 0xc0, 0x5c, 0x69, 0x9, 0x90, 0x9, 0x6, 0x8c, 0x80, @@ -3065,6 +3095,13 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x9, 0x3, 0x19, 0x0, 0x9, 0x0, 0x5b, 0x0, 0x0, 0x0, 0x0, 0x0, + /* U+7B80 "简" */ + 0x1, 0x30, 0x4, 0x0, 0x8, 0xb8, 0x5b, 0x95, + 0x35, 0x53, 0x80, 0x60, 0x3, 0x87, 0x88, 0xa1, + 0x8, 0x58, 0x78, 0x62, 0x8, 0x59, 0x78, 0x62, + 0x8, 0x48, 0x76, 0x62, 0x8, 0x0, 0x2, 0xc0, + 0x0, 0x0, 0x0, 0x0, + /* U+7C73 "米" */ 0x1, 0x11, 0x90, 0x50, 0x3, 0xa1, 0x93, 0xa0, 0x0, 0x71, 0x95, 0x10, 0x38, 0x89, 0xc8, 0x87, @@ -3189,6 +3226,12 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x8, 0x91, 0xb0, 0xa0, 0x38, 0x91, 0x0, 0x66, 0x42, 0x91, 0x5, 0x31, 0x0, 0x38, 0x87, 0x0, + /* U+82F1 "英" */ + 0x0, 0x30, 0x21, 0x0, 0x28, 0xc8, 0xba, 0x81, + 0x0, 0x56, 0x42, 0x0, 0x7, 0x8d, 0x8b, 0x0, + 0x8, 0x9, 0x9, 0x0, 0x58, 0x8e, 0xc8, 0x80, + 0x1, 0x93, 0x77, 0x0, 0x29, 0x20, 0x3, 0x90, + /* U+83B7 "获" */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x90, 0x90, 0x0, 0x48, 0xc8, 0xc8, 0x80, 0x2, 0x70, 0x61, 0x0, @@ -3242,6 +3285,12 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x8, 0x79, 0xa7, 0x74, 0x0, 0x57, 0x82, 0x60, 0x19, 0x97, 0x4c, 0x30, 0x0, 0x43, 0x0, 0x62, + /* U+897F "西" */ + 0x37, 0x7b, 0xb7, 0x73, 0x0, 0x8, 0x70, 0x0, + 0xa, 0x8b, 0xb8, 0xa0, 0x9, 0x35, 0x70, 0x80, + 0x9, 0x90, 0x4a, 0x80, 0xa, 0x77, 0x77, 0xa0, + 0x9, 0x0, 0x0, 0x80, 0x0, 0x0, 0x0, 0x0, + /* U+8981 "要" */ 0x0, 0x0, 0x0, 0x0, 0x37, 0x8b, 0xb8, 0x73, 0xb, 0x9b, 0xb9, 0xb0, 0x9, 0x7a, 0x97, 0x90, @@ -3276,6 +3325,12 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0xb6, 0xa0, 0xa8, 0x8c, 0x8b, 0x9, 0x1, 0x80, 0x97, 0x40, 0x18, 0x6a, 0x0, 0x0, 0x0, 0x0, + /* U+8A00 "言" */ + 0x0, 0x5, 0x0, 0x0, 0x58, 0x8d, 0x88, 0x80, + 0x3, 0x44, 0x44, 0x0, 0x3, 0x33, 0x34, 0x0, + 0x5, 0x77, 0x77, 0x10, 0x9, 0x66, 0x69, 0x20, + 0xa, 0x88, 0x8b, 0x30, 0x9, 0x0, 0x7, 0x30, + /* U+8B66 "警" */ 0x0, 0x0, 0x0, 0x0, 0x5, 0x38, 0xa, 0x0, 0x2a, 0x89, 0xa9, 0xb7, 0x3c, 0xb9, 0x58, 0xa0, @@ -3339,6 +3394,13 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { 0x9, 0x9, 0xa, 0x0, 0x9, 0x69, 0x19, 0x11, 0xb, 0x6a, 0x63, 0xa8, 0x0, 0x0, 0x0, 0x51, + /* U+8BED "语" */ + 0x0, 0x0, 0x0, 0x0, 0xa, 0x27, 0xb7, 0x72, + 0x1, 0x7, 0xc6, 0x90, 0x6c, 0x12, 0xa2, 0xb1, + 0x9, 0x25, 0x55, 0x53, 0x9, 0x59, 0x88, 0xc0, + 0xa, 0x79, 0x0, 0x90, 0x6, 0x9, 0x88, 0xc0, + 0x0, 0x0, 0x0, 0x0, + /* U+8BF7 "请" */ 0x5, 0x2, 0x47, 0x20, 0x9, 0x37, 0x9a, 0x72, 0x0, 0x6, 0x8a, 0x61, 0x5b, 0x27, 0x78, 0x75, @@ -4428,392 +4490,402 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 5758, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 5790, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 5822, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 5854, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 5890, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 5854, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 5886, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 5922, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 5954, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 5986, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 6018, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 6054, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 6090, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 6122, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 6158, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 6190, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 6226, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 6254, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 6286, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 6322, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 6354, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6018, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6050, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6082, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 6118, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 6154, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6186, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 6222, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6254, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 6290, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6318, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6350, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 6386, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 6418, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 6454, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 6486, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6418, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6450, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6482, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 6518, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 6550, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 6582, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 6618, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 6646, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 6674, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 6706, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6582, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6614, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6646, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 6682, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6710, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 6738, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 6770, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 6802, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 6838, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 6870, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6802, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6834, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6866, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 6902, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 6934, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 6970, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 7002, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6934, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6966, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6998, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 7034, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 7066, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 7098, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 7134, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 7162, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 7194, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7098, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7130, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7162, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 7198, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 7226, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 7258, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 7290, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 7322, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 7354, .adv_w = 128, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 7386, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 7422, .adv_w = 128, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 7450, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 7482, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 7514, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 7546, .adv_w = 128, .box_w = 7, .box_h = 7, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 7571, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 7603, .adv_w = 128, .box_w = 7, .box_h = 8, .ofs_x = 1, .ofs_y = -2}, - {.bitmap_index = 7631, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 7663, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7290, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7322, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7354, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 7386, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 7418, .adv_w = 128, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 7450, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 7486, .adv_w = 128, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7514, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7546, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7578, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 7610, .adv_w = 128, .box_w = 7, .box_h = 7, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 7635, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 7667, .adv_w = 128, .box_w = 7, .box_h = 8, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 7695, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 7727, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 7755, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 7787, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7727, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7759, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7791, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 7819, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 7851, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 7891, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 7923, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7851, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7883, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7915, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 7955, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 7987, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 8019, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 8055, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 8087, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8019, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8051, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8083, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 8119, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 8151, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 8183, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 8224, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 8256, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 8288, .adv_w = 128, .box_w = 7, .box_h = 8, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 8316, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 8348, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 8384, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 8420, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 8456, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 8492, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 8524, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8183, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8215, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8247, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 8288, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8320, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8352, .adv_w = 128, .box_w = 7, .box_h = 8, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 8380, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8412, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 8448, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 8484, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 8520, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 8556, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 8588, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 8624, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 8656, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8588, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8620, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8652, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 8688, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 8720, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 8752, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 8784, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 8812, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8752, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8784, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8816, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 8848, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 8876, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 8908, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8876, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8912, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 8940, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 8972, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9004, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9040, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9072, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9108, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9144, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9176, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9212, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9244, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9004, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9036, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9068, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9104, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9136, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9172, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9208, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9240, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 9276, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9308, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9344, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9380, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9416, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9448, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9484, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9520, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9552, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9588, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9620, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9656, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9688, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9724, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9756, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9788, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9820, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 9856, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9892, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9932, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 9968, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10000, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10032, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9308, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9340, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9372, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9408, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9440, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9476, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9512, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9544, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9580, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9616, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9648, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9684, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9716, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9752, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9784, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9820, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9852, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9884, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9916, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9952, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 9988, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10028, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 10064, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10096, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10132, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10164, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10196, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10228, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10264, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10300, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10340, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10380, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10412, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10444, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10472, .adv_w = 128, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10096, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10128, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10160, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10192, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10228, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10260, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10292, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10324, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10360, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10396, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10436, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10476, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 10508, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10540, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10572, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10604, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10640, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10672, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10708, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10744, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10772, .adv_w = 128, .box_w = 6, .box_h = 7, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 10793, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10825, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10853, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10885, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 10913, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10945, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 10981, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11013, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11045, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11077, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11113, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11149, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11177, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11213, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11245, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11277, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11317, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11353, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11385, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11421, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11457, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11493, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11533, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11565, .adv_w = 128, .box_w = 7, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11590, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11622, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11658, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11690, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11722, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11758, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11790, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11822, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11858, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11894, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11930, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 11962, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 11998, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12034, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12070, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12102, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12134, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12170, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12202, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12234, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10540, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10568, .adv_w = 128, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10604, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10636, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10668, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10700, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10736, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10768, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10804, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 10840, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10868, .adv_w = 128, .box_w = 6, .box_h = 7, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 10889, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10921, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10949, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10981, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11009, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11041, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11077, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11109, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11141, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11173, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11209, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11245, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11273, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11309, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11341, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11373, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11413, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11449, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11481, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11517, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11553, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11589, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11629, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11661, .adv_w = 128, .box_w = 7, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11686, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11718, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11754, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11786, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11818, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11854, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11886, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11918, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11954, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 11990, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12026, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12058, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12094, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12130, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12166, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12198, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12230, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 12266, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12298, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12298, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 12330, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 12362, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12394, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12426, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12458, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12394, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12426, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12458, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 12490, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12522, .adv_w = 128, .box_w = 7, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12547, .adv_w = 128, .box_w = 7, .box_h = 8, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 12575, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12607, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12643, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12675, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12707, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12739, .adv_w = 128, .box_w = 6, .box_h = 7, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 12760, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12792, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12824, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12856, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12884, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 12925, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12957, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 12989, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13017, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13053, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13089, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13121, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13157, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13189, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13230, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13262, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13298, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13334, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13370, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13402, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13434, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13466, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13498, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13530, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13562, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13598, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13634, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13670, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13706, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13738, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13766, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13794, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13826, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13858, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13890, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 13930, .adv_w = 128, .box_w = 6, .box_h = 8, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 13954, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 13986, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14018, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14054, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14090, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14130, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14166, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14198, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14230, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14266, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14298, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14330, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14371, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14407, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14447, .adv_w = 128, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14479, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14515, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14547, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14583, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14615, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14647, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14679, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14715, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14747, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14779, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14811, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 14847, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14879, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14911, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14943, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 14975, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12522, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12554, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12586, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12618, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12650, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12682, .adv_w = 128, .box_w = 7, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12707, .adv_w = 128, .box_w = 7, .box_h = 8, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 12735, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12767, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 12803, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12835, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12867, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12899, .adv_w = 128, .box_w = 6, .box_h = 7, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 12920, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12952, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12984, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13016, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13044, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13085, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13117, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13149, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13177, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13213, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13249, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13281, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13317, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13349, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13390, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13422, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13458, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13494, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13530, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13566, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13598, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13630, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13662, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13694, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13726, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13758, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13794, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13830, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13866, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 13902, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13934, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13962, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13990, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14022, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14054, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14086, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14126, .adv_w = 128, .box_w = 6, .box_h = 8, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 14150, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14182, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14214, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14246, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14282, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14318, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14358, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14394, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14426, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14458, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14494, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14526, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14558, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14590, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14631, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14667, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14707, .adv_w = 128, .box_w = 7, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 14739, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14771, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14807, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14839, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14875, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14907, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14939, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14971, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 15007, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 15039, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15071, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15107, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15139, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15179, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15215, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15251, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15287, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15323, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15359, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15391, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15427, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15459, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15495, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15531, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15567, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15603, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15639, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15675, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15711, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15743, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15775, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15811, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15843, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15871, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15903, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 15935, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 15971, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16007, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16039, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16075, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16111, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16147, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16183, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16219, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16255, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16287, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16323, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16355, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16387, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16419, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16455, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16487, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 16519, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16551, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15071, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15103, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15139, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15175, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15207, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15239, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15271, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15303, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15335, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15367, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15399, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15435, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15467, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15507, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15543, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15579, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15615, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15651, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15687, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15719, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15755, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 15787, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15823, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15859, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15895, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15931, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 15967, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16003, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16039, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16071, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16103, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16139, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16171, .adv_w = 128, .box_w = 8, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16199, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16231, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16263, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16299, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16335, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16367, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16403, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16439, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16475, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16511, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16547, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 16583, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16615, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16647, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16679, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16715, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 16739, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16771, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 16795, .adv_w = 88, .box_w = 6, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 16813, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16845, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16877, .adv_w = 144, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16913, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 16945, .adv_w = 144, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 16972, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17012, .adv_w = 64, .box_w = 4, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17026, .adv_w = 96, .box_w = 6, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17047, .adv_w = 144, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17083, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 17107, .adv_w = 88, .box_w = 6, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17131, .adv_w = 112, .box_w = 5, .box_h = 8, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 17151, .adv_w = 112, .box_w = 7, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, - {.bitmap_index = 17186, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17214, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17242, .adv_w = 112, .box_w = 5, .box_h = 8, .ofs_x = 1, .ofs_y = -1}, - {.bitmap_index = 17262, .adv_w = 112, .box_w = 9, .box_h = 8, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 17298, .adv_w = 80, .box_w = 5, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17318, .adv_w = 80, .box_w = 5, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17338, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17366, .adv_w = 112, .box_w = 7, .box_h = 2, .ofs_x = 0, .ofs_y = 2}, - {.bitmap_index = 17373, .adv_w = 144, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 17400, .adv_w = 160, .box_w = 11, .box_h = 8, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 17444, .adv_w = 144, .box_w = 11, .box_h = 8, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 17488, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17520, .adv_w = 112, .box_w = 7, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 17541, .adv_w = 112, .box_w = 7, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 17562, .adv_w = 160, .box_w = 11, .box_h = 7, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 17601, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 17625, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17657, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 17698, .adv_w = 112, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17730, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17758, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17786, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17814, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 17838, .adv_w = 80, .box_w = 7, .box_h = 8, .ofs_x = -1, .ofs_y = -1}, - {.bitmap_index = 17866, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17894, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 17922, .adv_w = 144, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 17949, .adv_w = 128, .box_w = 10, .box_h = 10, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 17999, .adv_w = 96, .box_w = 6, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18023, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18063, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 18093, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 18123, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 18153, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 18183, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 18213, .adv_w = 160, .box_w = 11, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18257, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18285, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18313, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = -1, .ofs_y = -2}, - {.bitmap_index = 18354, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, - {.bitmap_index = 18384, .adv_w = 96, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, - {.bitmap_index = 18412, .adv_w = 129, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 0} + {.bitmap_index = 16615, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16651, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16683, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16715, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16747, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16783, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16815, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 16847, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16879, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16911, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16943, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16975, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17007, .adv_w = 128, .box_w = 8, .box_h = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17043, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 17067, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17099, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 17123, .adv_w = 88, .box_w = 6, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 17141, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17173, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17205, .adv_w = 144, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17241, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17273, .adv_w = 144, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 17300, .adv_w = 128, .box_w = 8, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17340, .adv_w = 64, .box_w = 4, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17354, .adv_w = 96, .box_w = 6, .box_h = 7, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17375, .adv_w = 144, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17411, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 17435, .adv_w = 88, .box_w = 6, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17459, .adv_w = 112, .box_w = 5, .box_h = 8, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 17479, .adv_w = 112, .box_w = 7, .box_h = 10, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 17514, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17542, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17570, .adv_w = 112, .box_w = 5, .box_h = 8, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 17590, .adv_w = 112, .box_w = 9, .box_h = 8, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 17626, .adv_w = 80, .box_w = 5, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17646, .adv_w = 80, .box_w = 5, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17666, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17694, .adv_w = 112, .box_w = 7, .box_h = 2, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 17701, .adv_w = 144, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 17728, .adv_w = 160, .box_w = 11, .box_h = 8, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 17772, .adv_w = 144, .box_w = 11, .box_h = 8, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 17816, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17848, .adv_w = 112, .box_w = 7, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 17869, .adv_w = 112, .box_w = 7, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 17890, .adv_w = 160, .box_w = 11, .box_h = 7, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 17929, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 17953, .adv_w = 128, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 17985, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 18026, .adv_w = 112, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18058, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18086, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18114, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18142, .adv_w = 128, .box_w = 8, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 18166, .adv_w = 80, .box_w = 7, .box_h = 8, .ofs_x = -1, .ofs_y = -1}, + {.bitmap_index = 18194, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18222, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18250, .adv_w = 144, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 18277, .adv_w = 128, .box_w = 10, .box_h = 10, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 18327, .adv_w = 96, .box_w = 6, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18351, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18391, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 18421, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 18451, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 18481, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 18511, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 18541, .adv_w = 160, .box_w = 11, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18585, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18613, .adv_w = 112, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18641, .adv_w = 128, .box_w = 9, .box_h = 9, .ofs_x = -1, .ofs_y = -2}, + {.bitmap_index = 18682, .adv_w = 160, .box_w = 10, .box_h = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 18712, .adv_w = 96, .box_w = 7, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 18740, .adv_w = 129, .box_w = 9, .box_h = 6, .ofs_x = 0, .ofs_y = 0} }; /*--------------------- @@ -4834,55 +4906,57 @@ static const uint16_t unicode_list_6[] = { 0x0, 0x2dde, 0x2de8, 0x2de9, 0x2deb, 0x2dec, 0x2df1, 0x2df8, 0x2e02, 0x2e08, 0x2e0b, 0x2e10, 0x2e18, 0x2e19, 0x2e29, 0x2e6a, 0x2e6c, 0x2e79, 0x2e8c, 0x2ea3, 0x2eac, 0x2ec1, 0x2ec3, 0x2ece, - 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f5d, 0x2f69, - 0x2f85, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, 0x301c, 0x3086, - 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, 0x3154, 0x316b, - 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, 0x31f5, 0x31f7, - 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, 0x3286, 0x32e3, - 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, 0x33af, 0x33b4, - 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, 0x340d, 0x345b, - 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, 0x370e, 0x371e, - 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, 0x38f8, 0x3905, - 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, 0x39a9, 0x3b35, - 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, 0x3b9b, 0x3ba4, - 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, 0x3c0f, 0x3c2d, - 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, 0x3e51, 0x3e54, - 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, 0x3f31, 0x3f33, - 0x3f88, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, 0x4019, 0x404d, 0x40ed, - 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, 0x4229, 0x4231, 0x4247, - 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, 0x42df, 0x42e0, 0x42e7, - 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, 0x4387, 0x43b0, 0x43fa, - 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, 0x454e, 0x4552, 0x4565, - 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, 0x461c, 0x4660, 0x46d2, - 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, 0x4718, 0x473f, 0x477a, - 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, 0x4817, 0x481a, 0x489e, - 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, 0x4b93, 0x4bb2, 0x4c20, - 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, 0x4d1f, 0x4d29, 0x4d66, - 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, 0x5097, 0x50a6, 0x5104, - 0x5114, 0x5226, 0x5294, 0x5365, 0x538d, 0x538e, 0x53e4, 0x54fd, - 0x5506, 0x5513, 0x5519, 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, - 0x56d2, 0x56e9, 0x56fe, 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, - 0x595f, 0x5999, 0x59ab, 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, - 0x5acd, 0x5b04, 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, - 0x5eaf, 0x5eb1, 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, - 0x6011, 0x60aa, 0x60db, 0x61c8, 0x61d2, 0x628d, 0x6395, 0x63ba, - 0x65ad, 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695f, 0x69a2, - 0x69a4, 0x69a6, 0x69b0, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, 0x6b8e, - 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bd5, 0x6be1, 0x6d03, - 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, 0x6f4c, 0x6f52, - 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, 0x6fb9, 0x6fbc, - 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, 0x6ffd, 0x7031, - 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, 0x750c, 0x753a, - 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, 0x76de, 0x7740, - 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, 0x78ac, 0x794f, - 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, 0xcfe9, 0xcfea, - 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, 0xcfff, 0xd004, - 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, 0xd02a, 0xd02b, - 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, 0xd04c, 0xd04e, - 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, 0xd071, 0xd073, - 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, 0xd0c8, 0xd0d1, - 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, 0xd220, 0xd221, - 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, 0xd7a0, 0xd880 + 0x2ed4, 0x2ed9, 0x2eef, 0x2ef8, 0x2f2b, 0x2f2c, 0x2f31, 0x2f5d, + 0x2f69, 0x2f85, 0x2fa2, 0x2fbb, 0x2fbf, 0x2fcc, 0x2fcd, 0x301a, + 0x301c, 0x3086, 0x30ad, 0x3121, 0x3127, 0x3129, 0x3143, 0x3151, + 0x3154, 0x316b, 0x3191, 0x31a4, 0x31d8, 0x31d9, 0x31e4, 0x31e5, + 0x31f5, 0x31f7, 0x31fe, 0x3209, 0x320e, 0x3214, 0x322b, 0x327d, + 0x3286, 0x32e3, 0x32f4, 0x3326, 0x3333, 0x333f, 0x3369, 0x33aa, + 0x33af, 0x33b4, 0x33cd, 0x33d1, 0x33d5, 0x33ea, 0x33eb, 0x33ec, + 0x340d, 0x345b, 0x346a, 0x3646, 0x36bc, 0x36d8, 0x36dc, 0x3706, + 0x370e, 0x371e, 0x372d, 0x372e, 0x3735, 0x37d8, 0x38e2, 0x38eb, + 0x38f8, 0x3905, 0x3907, 0x3908, 0x390f, 0x3912, 0x3917, 0x3960, + 0x39a9, 0x3b35, 0x3b36, 0x3b61, 0x3b67, 0x3b6a, 0x3b78, 0x3b80, + 0x3b9b, 0x3ba4, 0x3bd7, 0x3bda, 0x3be4, 0x3bed, 0x3bef, 0x3bfb, + 0x3c0f, 0x3c2d, 0x3c33, 0x3dc4, 0x3dd0, 0x3de1, 0x3e04, 0x3e16, + 0x3e51, 0x3e54, 0x3e84, 0x3ed4, 0x3ed8, 0x3ede, 0x3eed, 0x3f18, + 0x3f31, 0x3f33, 0x3f88, 0x3f95, 0x3fa1, 0x3fb5, 0x3fdf, 0x4005, + 0x4019, 0x404d, 0x40ed, 0x41ee, 0x41f4, 0x4215, 0x421e, 0x4225, + 0x4229, 0x4231, 0x4247, 0x4249, 0x425c, 0x4283, 0x42bd, 0x42c7, + 0x42df, 0x42e0, 0x42e7, 0x433d, 0x4340, 0x4367, 0x4383, 0x4385, + 0x4387, 0x43b0, 0x43fa, 0x448b, 0x450d, 0x4517, 0x451c, 0x4526, + 0x454e, 0x4552, 0x4565, 0x457a, 0x458e, 0x45be, 0x45c3, 0x45d4, + 0x461c, 0x4660, 0x46d2, 0x46de, 0x46e7, 0x46fd, 0x4708, 0x470a, + 0x4718, 0x473f, 0x477a, 0x47ae, 0x47c3, 0x47e5, 0x47ff, 0x4815, + 0x4817, 0x481a, 0x489e, 0x49ff, 0x4a08, 0x4aff, 0x4b41, 0x4b42, + 0x4b93, 0x4bb2, 0x4c20, 0x4c3e, 0x4c7f, 0x4cb3, 0x4cc6, 0x4d19, + 0x4d1f, 0x4d29, 0x4d66, 0x4de3, 0x4e07, 0x4e6e, 0x4eb8, 0x4ebf, + 0x5097, 0x50a6, 0x5104, 0x5114, 0x5226, 0x5237, 0x5294, 0x5365, + 0x538d, 0x538e, 0x53cb, 0x53e4, 0x54fd, 0x5506, 0x5513, 0x5519, + 0x552a, 0x5537, 0x5662, 0x56b6, 0x56cc, 0x56d2, 0x56e9, 0x56fe, + 0x571a, 0x57cb, 0x57df, 0x584c, 0x5918, 0x595f, 0x5999, 0x59ab, + 0x59d9, 0x59e9, 0x5a58, 0x5a62, 0x5abc, 0x5acd, 0x5b04, 0x5b5e, + 0x5c51, 0x5cd9, 0x5cfe, 0x5d00, 0x5e9d, 0x5ead, 0x5eaf, 0x5eb1, + 0x5eba, 0x5ebd, 0x5ec8, 0x5f2f, 0x5f4c, 0x5fe3, 0x6011, 0x60aa, + 0x60db, 0x61c8, 0x61d2, 0x628d, 0x62cf, 0x6395, 0x63ba, 0x65ad, + 0x66e0, 0x682a, 0x6846, 0x6889, 0x68a3, 0x695d, 0x695f, 0x69a2, + 0x69a4, 0x69a6, 0x69b0, 0x69de, 0x6b44, 0x6b7f, 0x6b82, 0x6b8c, + 0x6b8e, 0x6b9c, 0x6b9d, 0x6b9f, 0x6ba4, 0x6bb3, 0x6bcb, 0x6bd5, + 0x6be1, 0x6d03, 0x6d06, 0x6d63, 0x6dbb, 0x6e08, 0x6f46, 0x6f4a, + 0x6f4c, 0x6f52, 0x6f5b, 0x6f71, 0x6fa5, 0x6fae, 0x6fb2, 0x6fb7, + 0x6fb9, 0x6fbc, 0x6fd7, 0x6fdb, 0x6fde, 0x6fdf, 0x6fe7, 0x6ff8, + 0x6ffd, 0x7031, 0x70c6, 0x70db, 0x71ab, 0x71ad, 0x747d, 0x74df, + 0x750c, 0x753a, 0x755d, 0x75cb, 0x75cc, 0x75d2, 0x7642, 0x766e, + 0x76de, 0x7740, 0x77d1, 0x7853, 0x7854, 0x7857, 0x7862, 0x786f, + 0x78ac, 0x794f, 0x7a6a, 0x7e01, 0x7e84, 0x7eb6, 0xcfdf, 0xcfe6, + 0xcfe9, 0xcfea, 0xcfeb, 0xcfef, 0xcff1, 0xcff3, 0xcff7, 0xcffa, + 0xcfff, 0xd004, 0xd005, 0xd006, 0xd01c, 0xd021, 0xd026, 0xd029, + 0xd02a, 0xd02b, 0xd02f, 0xd030, 0xd031, 0xd032, 0xd045, 0xd046, + 0xd04c, 0xd04e, 0xd04f, 0xd052, 0xd055, 0xd056, 0xd057, 0xd059, + 0xd071, 0xd073, 0xd0a2, 0xd0a3, 0xd0a5, 0xd0a7, 0xd0be, 0xd0c5, + 0xd0c8, 0xd0d1, 0xd0fa, 0xd102, 0xd139, 0xd1c9, 0xd21e, 0xd21f, + 0xd220, 0xd221, 0xd222, 0xd265, 0xd271, 0xd2cb, 0xd2e2, 0xd538, + 0xd7a0, 0xd880 }; /*Collect the unicode lists and glyph_id offsets*/ @@ -4914,7 +4988,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] = }, { .range_start = 8226, .range_length = 55425, .glyph_id_start = 334, - .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 416, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + .unicode_list = unicode_list_6, .glyph_id_ofs_list = NULL, .list_length = 426, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY } }; @@ -5019,7 +5093,8 @@ static const uint8_t kern_left_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Map glyph_ids to kern right classes*/ @@ -5118,7 +5193,8 @@ static const uint8_t kern_right_class_mapping[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0 + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0 }; /*Kern values between classes*/ From f896e3207112e7076dee10f371778751a9d3d9c0 Mon Sep 17 00:00:00 2001 From: Master92 Date: Tue, 4 Mar 2025 10:58:35 +0100 Subject: [PATCH 06/10] Remove language configuration file once applied --- src/lang/language.c | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/src/lang/language.c b/src/lang/language.c index cf698c07..7dc4b276 100644 --- a/src/lang/language.c +++ b/src/lang/language.c @@ -7,6 +7,7 @@ #include "core/common.hh" #include "language.h" #include "ui/page_common.h" +#include "util/system.h" #include #include @@ -131,19 +132,28 @@ bool language_config() { int i = 0; for (i = 0; i < LANG_END; i++) { + bool languageFound = false; + snprintf(buf, sizeof(buf), "/mnt/extsd/%s", language_config_file[i]); if (access(buf, F_OK) == 0) { LOGI("%s found", language_config_file[i]); ini_putl("language", "lang", i, SETTING_INI); g_setting.language.lang = i; - return true; + languageFound = true; + } else { + to_lowercase(buf); + if (access(buf, F_OK) == 0) { + LOGI("%s found", language_config_file[i]); + ini_putl("language", "lang", i, SETTING_INI); + g_setting.language.lang = i; + languageFound = true; + } } - to_lowercase(buf); - if (access(buf, F_OK) == 0) { - LOGI("%s found", language_config_file[i]); - ini_putl("language", "lang", i, SETTING_INI); - g_setting.language.lang = i; + if (languageFound) { + char cmd[259]; + snprintf(cmd, sizeof(cmd), "rm %s", buf); + system_exec(cmd); return true; } } From c7fd09cea1eca7f6a01ae7124f28add4b5ca2638 Mon Sep 17 00:00:00 2001 From: Master92 Date: Mon, 3 Nov 2025 10:46:14 +0100 Subject: [PATCH 07/10] Add missing translations --- mkapp/app/language/de_de.ini | 3 +++ mkapp/app/language/es_es.ini | 3 +++ mkapp/app/language/ru_ru.ini | 3 +++ mkapp/app/language/zh_hans.ini | 6 +++--- src/lang/language.h | 2 +- 5 files changed, 13 insertions(+), 4 deletions(-) diff --git a/mkapp/app/language/de_de.ini b/mkapp/app/language/de_de.ini index 47c280eb..7d54f97b 100644 --- a/mkapp/app/language/de_de.ini +++ b/mkapp/app/language/de_de.ini @@ -247,10 +247,13 @@ Target = "Ziel" Current Version = "Aktuelle Version" Reset all settings = "Alle Einstellungen zuruecksetzen" Update complete = "Update abgeschlossen" +Language = "Sprache" Goggle update completed successfully = "Brillen-Update erfolgreich abgeschlossen" Please repower goggle now = "Bitte starten Sie die Brille neu" Settings reset = "Einstellungen zurueckgesetzt" All settings have been reset = "Alle Einstellungen wurden zurueckgesetzt" +Set Language = "Sprache setzen" +Language has been changed = "Die Sprache wurde geaendert" Empty = "Leer" Goggle = "Brille" diff --git a/mkapp/app/language/es_es.ini b/mkapp/app/language/es_es.ini index 30a106e9..3552f324 100644 --- a/mkapp/app/language/es_es.ini +++ b/mkapp/app/language/es_es.ini @@ -248,10 +248,13 @@ Target = "Objetivo" Current Version = "Versión Actual" Reset all settings = "Restablecer todo" Update complete = "Actualización completa" +Language = "Idioma" Goggle update completed successfully = "Actualización de las gafas completada." Please repower goggle now = "Por favor, reinicie las gafas ahora." Settings reset = "Ajustes restablecidos" All settings have been reset = "Todos los ajustes han sido restablecidos." +Set Language = "Establecer idioma" +Language has been changed = "La lenguaje ha sido cambiado" Empty = "Vacío" Goggle = "Gafas" diff --git a/mkapp/app/language/ru_ru.ini b/mkapp/app/language/ru_ru.ini index b56d81d9..cbcdc383 100644 --- a/mkapp/app/language/ru_ru.ini +++ b/mkapp/app/language/ru_ru.ini @@ -247,10 +247,13 @@ Target = "Цель" Current Version = "Текущая версия" Reset all settings = "Сбросить все настройки" Update complete = "Обновление завершено" +Language = "Язык" Goggle update completed successfully = "Обновление очков завершено." Please repower goggle now = "Пожалуйста, перезагрузите очки." Settings reset = "Сброс настроек" All settings have been reset = "Все настройки сброшены." +Set Language = "Установить язык" +Language has been changed = "Язык был изменен." Empty = "Пусто" Goggle = "Очки" diff --git a/mkapp/app/language/zh_hans.ini b/mkapp/app/language/zh_hans.ini index d470f301..d6872c33 100644 --- a/mkapp/app/language/zh_hans.ini +++ b/mkapp/app/language/zh_hans.ini @@ -247,15 +247,15 @@ Target = "目标" Current Version = "当前版本" Reset all settings = "重置所有设置" Update complete = "更新完成" +Language = "语言" Goggle update completed successfully = "眼镜更新完成" Please repower goggle now = "现在请重启眼镜" Settings reset = "重置设置" All settings have been reset = "所有设置已被重置" -; Set Language = "Set Language" -; Language has been changed = "Language has been changed" +Set Language = "设置语言" +Language has been changed = "语言已更改" Empty = "无" Goggle = "眼镜" -Language = "语言" ; focus chart Focus Chart = "对焦图" diff --git a/src/lang/language.h b/src/lang/language.h index caac6752..af63c6b1 100644 --- a/src/lang/language.h +++ b/src/lang/language.h @@ -3,7 +3,7 @@ #include "core/settings.h" -#define TRANSLATE_STRING_NUM 305 +#define TRANSLATE_STRING_NUM 308 #define LANG_FOLDER "/mnt/app/language" typedef enum { From 90270e33ccdd2fb3e2f4c80652f7849556e56bf2 Mon Sep 17 00:00:00 2001 From: Master92 Date: Mon, 3 Nov 2025 11:39:09 +0100 Subject: [PATCH 08/10] Use common method for creating the dropdown --- src/ui/page_version.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/ui/page_version.c b/src/ui/page_version.c index d49dc285..e051853c 100644 --- a/src/ui/page_version.c +++ b/src/ui/page_version.c @@ -910,12 +910,7 @@ static lv_obj_t *page_version_create(lv_obj_t *parent, panel_arr_t *arr) { sprintf(buf, "%s", _lang("Language")); create_label_item(cont, buf, 1, ROW_LANGUAGE, 1); - dropdown_lang = lv_dropdown_create(cont); - lv_dropdown_set_options(dropdown_lang, languageList(language_options_str, 256)); - lv_obj_set_style_text_font(dropdown_lang, &lv_font_montserrat_26, 0); - lv_obj_set_size(dropdown_lang, 360, 60); - lv_obj_set_grid_cell(dropdown_lang, LV_GRID_ALIGN_START, 3, 2, LV_GRID_ALIGN_CENTER, ROW_LANGUAGE, 1); - + dropdown_lang = create_dropdown_item(cont, languageList(language_options_str, 256), 3, ROW_LANGUAGE, UI_INPUT_DROPDOWN_WIDTH, row_dsc[ROW_LANGUAGE], 2, 10, LV_GRID_ALIGN_START, UI_PAGE_TEXT_FONT); lv_dropdown_set_selected(dropdown_lang, g_setting.language.lang); lv_obj_t *list = lv_dropdown_get_list(dropdown_lang); From 1331e69059836b2ac8f435d8eab4b7fec1d96136 Mon Sep 17 00:00:00 2001 From: Master92 Date: Mon, 3 Nov 2025 11:51:36 +0100 Subject: [PATCH 09/10] Extract dropdown closing to a method --- src/ui/page_version.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/ui/page_version.c b/src/ui/page_version.c index e051853c..f3e56a8a 100644 --- a/src/ui/page_version.c +++ b/src/ui/page_version.c @@ -1048,6 +1048,15 @@ static void reset_all_settings_reset_label_text() { lv_label_set_text(btn_reset_all_settings, _lang("Reset all settings")); } +static void close_language_dropdown() { + if (dropdown_lang_is_opened) { + lv_event_send(dropdown_lang, LV_EVENT_RELEASED, NULL); + lv_obj_remove_style(dropdown_lang, &style_dropdown, LV_PART_MAIN); + dropdown_lang_is_opened = false; + pp_version.p_arr.max = ROW_COUNT; // enable roller operation on input_device.c + } +} + static void page_version_enter() { autoscan_filesystem = false; version_update_title(); @@ -1094,11 +1103,7 @@ static void page_version_on_click(uint8_t key, int sel) { if (sel == ROW_LANGUAGE) { if (dropdown_lang_is_opened) { - lv_event_send(dropdown_lang, LV_EVENT_RELEASED, NULL); - lv_dropdown_close(dropdown_lang); - lv_obj_remove_style(dropdown_lang, &style_dropdown, LV_PART_MAIN); - dropdown_lang_is_opened = false; - pp_version.p_arr.max = ROW_COUNT; // enable roller operation on input_device.c + close_language_dropdown(); uint16_t selected = lv_dropdown_get_selected(dropdown_lang); if (selected != g_setting.language.lang) { ini_putl("language", "lang", selected, SETTING_INI); From 1353c7d1fd8809b5999c54db2e08e7c8331c5caf Mon Sep 17 00:00:00 2001 From: Master92 Date: Mon, 3 Nov 2025 11:51:49 +0100 Subject: [PATCH 10/10] Reset selection and close dropdown on page exit --- src/ui/page_version.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ui/page_version.c b/src/ui/page_version.c index f3e56a8a..f2aab539 100644 --- a/src/ui/page_version.c +++ b/src/ui/page_version.c @@ -1073,6 +1073,11 @@ static void page_version_exit() { lv_obj_add_flag(msgbox_release_notes, LV_OBJ_FLAG_HIDDEN); page_version_fw_select_hide(&fw_select_vtx); page_version_fw_select_hide(&fw_select_goggle); + if (dropdown_lang_is_opened) { + lv_dropdown_set_selected(dropdown_lang, g_setting.language.lang); + close_language_dropdown(); + } + autoscan_filesystem = true; }